:root {
  --bg: #0a0a0a;
  --panel: #161616;
  --panel-2: #101010;
  --card: #1d1d1d;
  --line: #262626;
  --line-soft: #1e1e1e;
  --ink: #f4f4f0;
  --muted: #9a9a93;
  --faint: #6b6b66;
  --lime: #e3ffcc;
  --lime-dim: #b9d9a3;
  --lime-ghost: rgba(227, 255, 204, 0.07);
  --display: "Space Grotesk", sans-serif;
  --body: "Inter", sans-serif;
  --mono: "IBM Plex Mono", monospace;
  --serif: "Instrument Serif", serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
::selection { background: var(--lime); color: #0a0a0a; }
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 28px; }

header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 70px; gap: 24px; }
.logo { display: inline-flex; align-items: center; height: 30px; }
.logo img { width: 158px; max-width: 38vw; height: auto; display: block; }
.navlinks { display: flex; align-items: center; gap: 30px; font-size: 14px; color: var(--muted); }
.navlinks a { transition: color 0.15s; }
.navlinks a:hover, .navlinks a.active { color: var(--lime); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 500;
  font-size: 15.5px;
  padding: 14px 26px;
  border-radius: 7px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s, color 0.18s;
}
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}
.btn.primary { background: var(--lime); color: #0a0a0a; border-color: var(--lime); }
.btn.primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(227, 255, 204, 0.18); }
.btn.ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn.small { padding: 9px 18px; font-size: 13.5px; }
.arr { font-family: var(--mono); }

section { padding: 110px 0; border-bottom: 1px solid var(--line-soft); position: relative; }
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime-dim);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 1px; background: var(--lime-dim); display: inline-block; }
h1 { font-family: var(--display); font-weight: 700; letter-spacing: -0.035em; line-height: 1.02; font-size: clamp(44px, 6.6vw, 76px); }
h2 { font-family: var(--display); font-weight: 700; letter-spacing: -0.025em; line-height: 1.08; font-size: clamp(30px, 4.2vw, 46px); margin-bottom: 16px; }
h3 { font-family: var(--display); font-weight: 500; font-size: 19.5px; margin-bottom: 9px; line-height: 1.25; }
.serif { font-family: var(--serif); font-style: italic; font-weight: 400; letter-spacing: 0; color: var(--lime); }
.lede { color: var(--muted); font-size: 18px; max-width: 58ch; margin-top: 24px; }
.microrow { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px; font-family: var(--mono); font-size: 12.5px; color: var(--muted); }
.microrow span::before { content: "✓ "; color: var(--lime); }

.hero { padding: 130px 0 100px; overflow: hidden; }
.hero .bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 0%, #000 30%, transparent 75%);
  opacity: 0.5;
}
.hero .glow {
  position: absolute;
  width: 720px;
  height: 520px;
  top: -220px;
  right: -160px;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(closest-side, var(--lime-ghost), transparent 70%);
}
.hero .wrap { position: relative; }
.hero-actions { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }

.strip { border-bottom: 1px solid var(--line-soft); background: var(--panel-2); padding: 0; overflow: hidden; }
.strip .label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); padding: 14px 28px 0; max-width: 1120px; margin: 0 auto; }
.marquee { display: flex; white-space: nowrap; padding: 14px 0 18px; animation: mq 46s linear infinite; width: max-content; }
.strip:hover .marquee { animation-play-state: paused; }
.mq-item { display: inline-flex; align-items: baseline; gap: 10px; padding: 0 34px; border-right: 1px solid var(--line); font-family: var(--mono); font-size: 13px; color: var(--muted); }
.mq-item b { font-family: var(--display); font-size: 15px; color: var(--ink); font-weight: 500; }
.mq-item .amt { color: var(--lime); }
@keyframes mq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.fork { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 64px; }
.door {
  background: linear-gradient(180deg, var(--card), var(--panel));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 42px 38px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.door::after { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--lime), transparent); opacity: 0; transition: opacity 0.25s; }
.door:hover { border-color: var(--lime); transform: translateY(-4px); box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55); }
.door:hover::after { opacity: 0.7; }
.door .glyph { font-family: var(--mono); color: var(--lime); font-size: 13px; letter-spacing: 0.14em; }
.door h3 { font-size: 24px; font-weight: 700; letter-spacing: -0.02em; }
.door p, .door li { color: var(--muted); font-size: 15px; }
.door ul { list-style: none; margin: 2px 0 8px; }
.door li { padding: 3.5px 0; }
.door li::before { content: "— "; color: var(--lime); }
.door .go { font-family: var(--display); color: var(--lime); font-weight: 500; font-size: 15.5px; margin-top: auto; }

.gap-grid, .hero-grid, .faq-grid { display: grid; gap: 70px; align-items: center; }
.gap-grid { grid-template-columns: 1fr 1fr; }
.hero-grid { grid-template-columns: 1.08fr 0.92fr; gap: 64px; }
.faq-grid { grid-template-columns: 0.85fr 1.15fr; align-items: start; }
.dots { display: grid; grid-template-columns: repeat(10, 1fr); gap: 11px; max-width: 420px; }
.dot { aspect-ratio: 1 / 1; border-radius: 50%; background: #242420; }
.dot { transform: scale(0); transition: transform 0.45s cubic-bezier(0.34, 1.4, 0.64, 1); }
.dots.on .dot { transform: scale(1); }
.dot.lit { background: var(--lime); box-shadow: 0 0 14px rgba(227, 255, 204, 0.35); }
.gap-cap { font-family: var(--mono); font-size: 12px; color: var(--faint); margin-top: 18px; letter-spacing: 0.06em; }
.bigstats { display: flex; gap: 56px; margin-top: 38px; flex-wrap: wrap; }
.bigstats b { display: block; font-family: var(--display); font-size: 54px; font-weight: 700; letter-spacing: -0.03em; color: var(--lime); line-height: 1; }
.bigstats span { color: var(--muted); font-size: 14.5px; display: block; margin-top: 10px; max-width: 22ch; }

.spark { position: absolute; left: 0; right: 0; bottom: 0; height: 180px; pointer-events: none; opacity: 0.5; z-index: 0; }
.spark path { fill: none; stroke: var(--lime); stroke-width: 1.5; stroke-dasharray: 2600; stroke-dashoffset: 2600; animation: draw 4.5s ease-out 0.5s forwards; filter: drop-shadow(0 0 7px rgba(227,255,204,.35)); }
.spark path.base { stroke: var(--line); stroke-width: 1; stroke-dasharray: 6 8; stroke-dashoffset: 0; animation: none; filter: none; opacity: 0.7; }
@keyframes draw { to { stroke-dashoffset: 0; } }

.feed { border-bottom: 1px solid var(--line-soft); background: var(--panel-2); }
.feed .inner { max-width: 1120px; margin: 0 auto; padding: 15px 28px; display: flex; align-items: center; gap: 18px; }
.feed .tag { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.14em; color: #0a0a0a; background: var(--lime-dim); border-radius: 4px; padding: 3px 10px; flex: none; }
.feed .line { font-family: var(--mono); font-size: 13px; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-height: 20px; }
.feed .caret { display: inline-block; width: 7px; height: 14px; background: var(--lime); vertical-align: -2px; margin-left: 3px; animation: pulse 1s steps(1) infinite; }

.rev { opacity: 0; transform: translateY(18px); transition: opacity 0.7s cubic-bezier(0.2, 0.6, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.6, 0.2, 1); }
.rev.in { opacity: 1; transform: none; }

.scan { background: var(--card); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: 0 40px 110px rgba(0, 0, 0, 0.65); }
.scan-head { display: flex; justify-content: space-between; align-items: center; padding: 17px 22px; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: 12px; color: var(--muted); }
.dot-live { color: var(--lime); animation: pulse 2.2s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.scan-bar { height: 3px; background: var(--line-soft); position: relative; overflow: hidden; }
.scan-bar i { position: absolute; left: 0; top: 0; bottom: 0; width: 0; background: var(--lime); transition: width 1.4s cubic-bezier(0.4, 0, 0.2, 1); }
.claim { display: flex; justify-content: space-between; gap: 18px; align-items: center; padding: 17px 22px; border-bottom: 1px solid var(--line-soft); opacity: 0; transform: translateY(8px); transition: opacity 0.5s, transform 0.5s; }
.claim.in { opacity: 1; transform: none; }
.claim .t b { display: block; font-family: var(--display); font-weight: 500; font-size: 15.5px; }
.claim .t span { font-family: var(--mono); font-size: 11.5px; color: var(--faint); }
.claim .amt { font-family: var(--mono); font-size: 15.5px; color: var(--lime); }
.scan-foot { padding: 20px 22px; border-top: 1px solid var(--line); background: var(--panel-2); display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.scan-foot .tot span { font-family: var(--mono); font-size: 11px; color: var(--faint); display: block; letter-spacing: 0.12em; text-transform: uppercase; }
.scan-foot .tot b { font-family: var(--display); font-size: 27px; color: var(--lime); letter-spacing: -0.02em; }
.mocktag { font-family: var(--mono); font-size: 11px; color: var(--faint); text-align: center; margin-top: 14px; letter-spacing: 0.06em; }

.steps, .trio, .abc, .pillars, .kpis { display: grid; gap: 20px; margin-top: 48px; }
.steps { grid-template-columns: repeat(4, 1fr); position: relative; }
.steps.three { grid-template-columns: repeat(3, 1fr); }
.steps::before { content: ""; position: absolute; top: 37px; left: 4%; right: 4%; height: 1px; background: linear-gradient(90deg, transparent, var(--line), var(--line), transparent); z-index: 0; }
.step, .cell, .pillar, .kpi {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.step { padding: 30px 24px; position: relative; z-index: 1; transition: border-color 0.2s, transform 0.2s; }
.step:hover { border-color: var(--lime); transform: translateY(-3px); }
.step .n { font-family: var(--mono); font-size: 12px; color: #0a0a0a; background: var(--lime); border-radius: 20px; padding: 4px 12px; letter-spacing: 0.1em; margin-bottom: 18px; display: inline-block; }
.step p, .cell p, .pillar p { color: var(--muted); font-size: 14.5px; }
.step .note { margin-top: 12px; color: var(--faint); }

.browser { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--panel-2); box-shadow: 0 40px 100px rgba(0,0,0,.6); margin-top: 56px; }
.chrome { display: flex; align-items: center; gap: 8px; padding: 13px 18px; border-bottom: 1px solid var(--line); background: var(--card); }
.chrome i { width: 11px; height: 11px; border-radius: 50%; background: #333; display: inline-block; }
.chrome .url { margin-left: 14px; font-family: var(--mono); font-size: 12px; color: var(--faint); background: var(--panel-2); border: 1px solid var(--line-soft); border-radius: 6px; padding: 5px 14px; flex: 1; max-width: 360px; }
.dash { display: grid; grid-template-columns: 200px 1fr; min-height: 380px; }
.side { border-right: 1px solid var(--line); padding: 22px 0; background: var(--panel-2); }
.side a { display: block; font-size: 13.5px; color: var(--faint); padding: 9px 22px; border-left: 2px solid transparent; }
.side a.on { color: var(--lime); border-left-color: var(--lime); background: var(--lime-ghost); }
.main { padding: 26px 28px; background: var(--bg); }
.kpis { grid-template-columns: repeat(3, 1fr); margin-top: 0; margin-bottom: 22px; }
.kpi { padding: 16px 18px; }
.kpi span { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); display: block; }
.kpi b { font-family: var(--display); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; margin-top: 4px; display: block; }
.kpi b.g { color: var(--lime); }
table { width: 100%; border-collapse: collapse; font-size: 13.5px; }
th { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
td { padding: 12px; border-bottom: 1px solid var(--line-soft); color: var(--muted); }
td:first-child { color: var(--ink); font-weight: 500; }
td.amt { font-family: var(--mono); color: var(--ink); }
.pill { font-family: var(--mono); font-size: 11px; padding: 3px 11px; border-radius: 20px; border: 1px solid var(--line); white-space: nowrap; }
.pill.paid { color: #0a0a0a; background: var(--lime); border-color: var(--lime); }
.pill.filed { color: var(--lime); border-color: var(--lime-dim); }
.pill.pend { color: var(--muted); }

.price-band { background: var(--lime); color: #0a0a0a; border-radius: 20px; padding: 64px 56px; display: grid; grid-template-columns: auto 1fr; gap: 56px; align-items: center; position: relative; overflow: hidden; }
.price-band::after { content: "$0"; position: absolute; right: -40px; bottom: -90px; font-family: var(--display); font-weight: 700; font-size: 340px; letter-spacing: -0.06em; color: rgba(10,10,10,.05); line-height: 1; pointer-events: none; }
.price-band .pct { font-family: var(--display); font-weight: 700; font-size: clamp(84px, 11vw, 140px); letter-spacing: -0.05em; line-height: 0.95; }
.price-band .pct small { display: block; font-family: var(--mono); font-size: 12.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 400; margin-top: 12px; }
.price-band h2 { color: #0a0a0a; margin-bottom: 12px; }
.price-band ul { list-style: none; margin-top: 12px; position: relative; z-index: 1; }
.price-band li { font-size: 16px; padding: 6px 0; font-weight: 500; }
.price-band li::before { content: "— "; }
.price-band .fine { font-size: 13px; margin-top: 18px; opacity: 0.65; }

.trio { grid-template-columns: repeat(3, 1fr); }
.cell { padding: 30px 26px; transition: border-color 0.2s; }
.cell:hover { border-color: var(--lime-dim); }
.cell .ic { font-family: var(--mono); color: var(--lime); font-size: 15px; margin-bottom: 14px; display: block; }
details { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 4px; font-family: var(--display); font-weight: 500; font-size: 17.5px; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-family: var(--mono); color: var(--lime); font-size: 22px; flex: none; }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); padding: 0 4px 24px; max-width: 60ch; font-size: 15px; }

.abc { grid-template-columns: repeat(3, 1fr); }
.cell.rec { border-color: var(--lime); position: relative; }
.cell.rec::before { content: "RECOMMENDED"; position: absolute; top: -11px; left: 24px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: #0a0a0a; background: var(--lime); border-radius: 4px; padding: 3px 10px; }
.abc .opt { font-family: var(--mono); font-size: 11.5px; color: var(--lime-dim); letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 14px; }
.pillars { grid-template-columns: 1fr 1fr; }
.pillar { padding: 32px 28px; }
.pillar .rn { font-family: var(--mono); font-size: 12px; color: var(--lime); letter-spacing: 0.14em; display: block; margin-bottom: 14px; }
.chips { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.chip { font-family: var(--mono); font-size: 12.5px; color: var(--muted); border: 1px solid var(--line); border-radius: 30px; padding: 9px 20px; transition: border-color 0.2s, color 0.2s; }
.chip:hover { border-color: var(--lime); color: var(--lime); }

.citation-list { color: var(--faint); font-family: var(--mono); font-size: 11.5px; line-height: 1.75; margin-top: 26px; max-width: 88ch; }
.citation-list a { color: var(--lime-dim); text-decoration: underline; text-underline-offset: 3px; }

.closing { text-align: center; padding: 130px 0; border-bottom: none; }
.closing .lede { margin: 24px auto 40px; }
.formmock { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; padding: 42px; max-width: 620px; margin-top: 48px; }
.formmock label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--faint); display: block; margin: 18px 0 7px; }
.field { width: 100%; background: var(--panel-2); border: 1px solid var(--line); border-radius: 7px; min-height: 46px; color: var(--ink); padding: 12px 14px; font: inherit; }
textarea.field { min-height: 96px; resize: vertical; }
.hp-field { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.walkthrough-status { margin-bottom: 18px; border: 1px solid var(--line); border-radius: 10px; padding: 13px 15px; color: var(--muted); display: none; }
.walkthrough-status.success, .walkthrough-status.error { display: block; }
.walkthrough-status.success { border-color: rgba(227, 255, 204, 0.45); color: var(--lime); }
.walkthrough-status.error { border-color: rgba(255, 150, 150, 0.45); color: #ffb0b0; }
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: start; margin-top: 52px; }
.contact-grid .formmock { margin-top: 0; max-width: none; }
.aside-card { background: var(--panel-2); border: 1px solid var(--line); border-radius: 16px; padding: 34px 30px; }
.aside-card + .aside-card { margin-top: 20px; }
.aside-card .mono-label { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); display: block; margin-bottom: 10px; }
.aside-card p { color: var(--muted); font-size: 14.5px; margin-top: 8px; }
.aside-card .btn { margin-top: 16px; }

footer { padding: 64px 0 48px; color: var(--muted); font-size: 13.5px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 40px; }
.foot-grid h4 { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
.foot-grid a { display: block; padding: 4px 0; }
.foot-grid a:hover { color: var(--lime); }
.footer-logo img { width: 134px; height: auto; }
.legal { max-width: 86ch; font-size: 12.5px; line-height: 1.75; color: var(--faint); border-top: 1px solid var(--line-soft); padding-top: 26px; }

@media (max-width: 880px) {
  .fork, .gap-grid, .steps, .steps.three, .trio, .abc, .pillars, .kpis, .faq-grid, .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 44px; }
  .price-band { grid-template-columns: 1fr; gap: 18px; padding: 46px 32px; }
  .dash { grid-template-columns: 1fr; }
  .side { display: none; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  section { padding: 72px 0; }
  .hero { padding: 90px 0 70px; }
  .steps::before { display: none; }
  .nav { align-items: flex-start; flex-direction: column; padding: 17px 0; }
  .navlinks { width: 100%; justify-content: space-between; gap: 12px; font-size: 13px; }
  .navlinks .btn { padding: 8px 13px; }
  table { min-width: 620px; }
  .main { overflow-x: auto; }
}

@media (max-width: 520px) {
  .wrap { padding: 0 20px; }
  .fork .door, .formmock, .price-band { padding: 30px 22px; }
  .navlinks { flex-wrap: wrap; justify-content: flex-start; }
  .scan-foot { align-items: flex-start; flex-direction: column; }
  .foot-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
  .claim { opacity: 1; transform: none; }
  .scan-bar i { width: 100% !important; }
  .rev { opacity: 1; transform: none; }
  .dot { transform: scale(1); }
  .spark path { stroke-dashoffset: 0; }
}
