:root {
  --bg: #090b10;
  --surface: #11151d;
  --surface-2: #171c26;
  --text: #f7f8fb;
  --muted: #a7afbd;
  --line: rgba(255, 255, 255, 0.11);
  --orange: #f7931a;
  --orange-light: #ffb14d;
  --max: 1160px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 8%, rgba(247, 147, 26, 0.16), transparent 26rem),
    var(--bg);
  line-height: 1.65;
}

a { color: inherit; }

img { display: block; max-width: 100%; }

.site-header,
.site-footer,
main {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand img { border-radius: 10px; }

nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

nav a,
.footer-links a {
  color: var(--muted);
  font-size: 0.94rem;
  text-decoration: none;
}

nav a:hover,
nav a[aria-current="page"],
.footer-links a:hover { color: var(--text); }

.hero {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
  padding: 88px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.lead,
.section-heading > p:last-child,
.page-intro > p:last-of-type {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.12rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.button:hover { transform: translateY(-2px); }

.primary {
  color: #171008;
  background: var(--orange);
}

.primary:hover { background: var(--orange-light); }

.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.secondary:hover { border-color: rgba(255, 255, 255, 0.25); }

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  padding: 0;
  color: var(--muted);
  font-size: 0.92rem;
  list-style: none;
}

.trust-list li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--orange);
}

.hero-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  transform: rotate(1.5deg);
}

.section { padding: 110px 0; }

.section-heading { margin-bottom: 44px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.card,
.legal-card,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.card { padding: 30px; }

.card p,
.split p,
.legal-card p,
.legal-card li,
.faq-list p { color: var(--muted); }

.card-number {
  display: block;
  margin-bottom: 48px;
  color: var(--orange);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.8rem;
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 8vw, 120px);
  border-top: 1px solid var(--line);
}

.text-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--orange-light);
  font-weight: 700;
  text-decoration: none;
}

.cta {
  margin-block: 70px 110px;
  padding: clamp(38px, 7vw, 82px);
  border: 1px solid rgba(247, 147, 26, 0.34);
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(247, 147, 26, 0.16), rgba(247, 147, 26, 0.03));
  text-align: center;
}

.cta h2,
.cta p { max-width: 730px; margin-inline: auto; }

.cta > p:not(.eyebrow) { margin-bottom: 28px; color: var(--muted); }

.site-footer {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.site-footer > p {
  grid-column: 1 / -1;
  margin: 0;
  color: #747d8c;
  font-size: 0.82rem;
}

.legal-page,
.support-page { max-width: 900px; }

.page-intro { padding: 90px 0 48px; }

.page-intro h1 { font-size: clamp(3rem, 8vw, 5.6rem); }

.legal-card {
  margin-bottom: 100px;
  padding: clamp(28px, 6vw, 64px);
}

.legal-card h2 {
  margin-top: 42px;
  font-size: 1.45rem;
  letter-spacing: -0.025em;
}

.legal-card h2:first-child { margin-top: 0; }

.legal-card a { color: var(--orange-light); }

.centered { text-align: center; }

.centered > p,
.centered h1 { margin-inline: auto; }

.centered .button { margin-top: 18px; }

.faq-section { padding: 32px 0 100px; }

.faq-section > h2 { margin-bottom: 32px; }

.faq-list { display: grid; gap: 12px; }

.faq-list details { padding: 0 24px; }

.faq-list summary {
  padding: 22px 0;
  font-weight: 750;
  cursor: pointer;
}

.faq-list p { padding: 0 0 22px; margin: 0; }

.compact-footer { margin-top: 20px; }

@media (max-width: 780px) {
  .site-header { padding: 18px 0; align-items: flex-start; }
  .site-header nav { gap: 14px; }
  .site-header nav a:first-child { display: none; }
  .brand span { max-width: 150px; line-height: 1.15; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 64px 0 80px; }
  .hero-visual { max-width: 580px; transform: none; }
  .feature-grid, .split { grid-template-columns: 1fr; }
  .section { padding: 76px 0; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer > p { grid-column: auto; }
  .footer-links { flex-wrap: wrap; gap: 12px 20px; }
}

@media (max-width: 480px) {
  .site-header, .site-footer, main { width: min(calc(100% - 28px), var(--max)); }
  .site-header nav { font-size: 0.88rem; }
  .site-header nav a { font-size: 0.86rem; }
  h1 { font-size: 3rem; }
  .actions { align-items: stretch; flex-direction: column; }
  .feature-grid { gap: 12px; }
  .card { padding: 24px; }
  .card-number { margin-bottom: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}
