:root {
  color-scheme: dark;
  --ink: #f7f8fc;
  --muted: #a8adc0;
  --bg: #090b11;
  --panel: #121620;
  --line: rgba(255,255,255,.11);
  --lime: #c8ff5c;
  --violet: #8d79ff;
  --max: 1120px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 76% 8%, rgba(141,121,255,.16), transparent 27rem),
    radial-gradient(circle at 12% 34%, rgba(200,255,92,.08), transparent 23rem),
    var(--bg);
  color: var(--ink);
  font: 400 1rem/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; }
.shell { width: min(calc(100% - 2.5rem), var(--max)); margin: 0 auto; }
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 5rem; border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: .7rem; text-decoration: none; font-weight: 800; letter-spacing: -.035em; font-size: 1.35rem; }
.mark { display: grid; place-items: center; width: 2rem; height: 2rem; border-radius: .65rem; background: var(--lime); color: #0a0d0e; font-size: .9rem; letter-spacing: -.08em; transform: rotate(-4deg); }
.links { display: flex; gap: 1.4rem; color: var(--muted); font-size: .92rem; }
.links a, .footer a { text-decoration: none; }
.links a:hover, .footer a:hover { color: var(--lime); }
.hero { padding: clamp(5.2rem, 11vw, 9.5rem) 0 5rem; max-width: 920px; }
.eyebrow { color: var(--lime); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1 { margin: 1rem 0 1.35rem; max-width: 900px; font-size: clamp(3.4rem, 8.7vw, 7.6rem); line-height: .9; letter-spacing: -.075em; }
.hero p { max-width: 660px; margin: 0; color: var(--muted); font-size: clamp(1.1rem, 2vw, 1.35rem); }
.hero strong { color: var(--ink); }
.actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.1rem; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 3.25rem; padding: 0 1.25rem; border: 1px solid var(--line); border-radius: 999px; text-decoration: none; font-weight: 750; }
.button.primary { background: var(--lime); border-color: var(--lime); color: #0a0d0e; }
.button.secondary:hover { border-color: var(--violet); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; overflow: hidden; border: 1px solid var(--line); border-radius: 1.4rem; background: var(--line); }
.step { min-height: 260px; padding: 2rem; background: var(--panel); }
.step-number { color: var(--violet); font-weight: 800; font-size: .82rem; letter-spacing: .12em; }
.step h2 { margin: 3rem 0 .55rem; font-size: 1.4rem; letter-spacing: -.035em; }
.step p { margin: 0; color: var(--muted); }
.sms-note { margin: 1.3rem 0 6rem; padding: 1.25rem 1.4rem; border-left: 3px solid var(--lime); color: var(--muted); background: rgba(255,255,255,.025); font-size: .9rem; }
.legal { width: min(calc(100% - 2.5rem), 800px); margin: 0 auto; padding: 4.5rem 0 7rem; }
.legal h1 { font-size: clamp(2.8rem, 7vw, 5.2rem); line-height: 1; }
.updated { color: var(--muted); margin-bottom: 3.5rem; }
.legal h2 { margin: 2.5rem 0 .65rem; font-size: 1.35rem; letter-spacing: -.025em; }
.legal h3 { margin: 1.6rem 0 .4rem; font-size: 1.05rem; }
.legal p, .legal li { color: #c9ccda; }
.legal li + li { margin-top: .45rem; }
.callout { margin: 2rem 0; padding: 1.25rem 1.4rem; border: 1px solid rgba(200,255,92,.35); border-radius: 1rem; background: rgba(200,255,92,.05); }
.callout p { margin: 0; color: var(--ink); }
.footer { display: flex; justify-content: space-between; gap: 1.5rem; padding: 2rem 0 3rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .88rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
@media (max-width: 760px) {
  .links { gap: .85rem; font-size: .82rem; }
  .steps { grid-template-columns: 1fr; }
  .step { min-height: auto; }
  .step h2 { margin-top: 2rem; }
  .footer { flex-direction: column; }
}
@media (max-width: 470px) {
  .nav { align-items: flex-start; padding: 1rem 0; gap: 1rem; }
  .links { flex-direction: column; gap: .25rem; text-align: right; }
  .hero { padding-top: 4rem; }
}

