:root {
  color-scheme: dark;
  --navy: #070d27;
  --navy-soft: #0e1738;
  --ink: #f7f5ed;
  --muted: #aab6d8;
  --line: rgba(170, 190, 237, .18);
  --yellow: #ffd22e;
  --pink: #d93671;
  --logo-gold: #f2ad14;
  --shadow: 0 24px 70px rgba(0, 0, 0, .32);
}

* { box-sizing: border-box; }
html, body, button, a, input, textarea, select { font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", sans-serif; }
html { min-width: 320px; scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 8%, rgba(38, 192, 232, .15), transparent 28rem),
    radial-gradient(circle at 18% 30%, rgba(217, 54, 113, .12), transparent 26rem),
    var(--navy);
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  opacity: .16;
  background-image: repeating-linear-gradient(-8deg, transparent 0 72px, rgba(255, 210, 46, .12) 73px 74px, transparent 75px 140px);
}

a { color: var(--yellow); text-decoration: none; }
a:hover { text-decoration: underline; }
.site-shell { position: relative; z-index: 1; width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.topbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 11px; color: var(--ink); font-size: 13px; font-weight: 800; letter-spacing: .16em; }
.brand:hover { text-decoration: none; }
.brand-mark { display: inline-grid; width: 34px; height: 34px; color: var(--logo-gold); place-items: center; filter: drop-shadow(0 0 12px rgba(242, 173, 20, .42)); }
.brand-mark svg, .hero-card-mark svg { width: 100%; height: 100%; }
nav { display: flex; flex-wrap: wrap; gap: 22px; font-size: 14px; font-weight: 650; }
nav a { color: var(--muted); }
nav a:hover, nav a[aria-current="page"] { color: var(--ink); text-decoration: none; }

.hero { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(40px, 8vw, 110px); min-height: 650px; padding: 76px 0 90px; }
.eyebrow { margin: 0 0 18px; color: var(--yellow); font-size: 12px; font-weight: 800; letter-spacing: .18em; }
h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 24px; font-size: clamp(48px, 7vw, 84px); line-height: .98; letter-spacing: -.055em; }
h1 span { color: var(--yellow); }
.lede { max-width: 610px; color: var(--muted); font-size: 19px; line-height: 1.6; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 21px; border-radius: 14px; font-size: 14px; font-weight: 800; letter-spacing: .04em; }
.button:hover { text-decoration: none; transform: translateY(-1px); }
.button-primary { color: var(--navy); background: var(--yellow); box-shadow: 0 12px 28px rgba(255, 210, 46, .22); }
.button-quiet { color: var(--ink); border: 1px solid var(--line); background: rgba(255, 255, 255, .04); }

.hero-card { position: relative; overflow: hidden; padding: 42px; border: 1px solid rgba(255, 210, 46, .38); border-radius: 28px; background: linear-gradient(145deg, rgba(20, 31, 75, .9), rgba(9, 14, 39, .92)); box-shadow: var(--shadow); }
.hero-card::after { position: absolute; right: -60px; bottom: -90px; width: 230px; height: 230px; border-radius: 50%; content: ""; background: rgba(217, 54, 113, .18); filter: blur(4px); }
.hero-card-mark { width: 94px; height: 94px; color: var(--logo-gold); filter: drop-shadow(0 0 18px rgba(255, 210, 46, .28)); }
.card-label { margin: 48px 0 12px; color: var(--yellow); font-size: 12px; font-weight: 800; letter-spacing: .18em; }
.card-quote { max-width: 390px; margin-bottom: 48px; font-size: clamp(25px, 3vw, 35px); font-weight: 750; line-height: 1.13; letter-spacing: -.03em; }
.card-stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; padding-top: 22px; border-top: 1px solid var(--line); }
.card-stat-row strong { display: block; color: var(--yellow); font-size: 24px; }
.card-stat-row small { display: block; color: var(--muted); font-size: 11px; letter-spacing: .04em; }

.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; padding-bottom: 90px; }
.feature-card { min-height: 220px; padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: rgba(18, 28, 65, .7); box-shadow: 0 14px 38px rgba(0, 0, 0, .16); }
.feature-number { color: var(--pink); font-size: 12px; font-weight: 850; letter-spacing: .14em; }
.feature-card h2 { margin: 42px 0 10px; font-size: 21px; letter-spacing: -.02em; }
.feature-card p { margin-bottom: 0; color: var(--muted); font-size: 14px; }

.document { width: min(760px, 100%); padding: 78px 0 100px; }
.document h1 { margin-bottom: 12px; font-size: clamp(43px, 7vw, 66px); }
.document-meta { margin-bottom: 50px; color: var(--muted); font-size: 14px; }
.document p { color: var(--muted); font-size: 17px; }
.document h2 { margin: 42px 0 10px; color: var(--ink); font-size: 24px; letter-spacing: -.025em; }
.document strong { color: var(--ink); }
.faq-list { margin-top: 44px; }
.faq-item { padding: 27px 0; border-top: 1px solid var(--line); }
.faq-item h2 { margin: 0 0 8px; font-size: 20px; }
.faq-item p { margin-bottom: 0; }
.footer { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0 30px; border-top: 1px solid var(--line); color: var(--muted); font-size: 13px; }

@media (max-width: 760px) {
  .site-shell { width: min(100% - 28px, 600px); }
  .topbar { align-items: flex-start; flex-direction: column; padding: 20px 0; }
  nav { gap: 16px; }
  .hero { grid-template-columns: 1fr; min-height: 0; padding: 62px 0 70px; }
  .hero-card { padding: 30px; }
  .feature-grid { grid-template-columns: 1fr; padding-bottom: 60px; }
  .document { padding: 56px 0 70px; }
  .document p { font-size: 16px; }
  .footer { flex-direction: column; }
}
