:root {
  --bg: #0a0c0f;
  --bg-2: #0f1318;
  --panel: #141a21;
  --panel-2: #1a212a;
  --text: #f4f7f9;
  --muted: #9aa5b0;
  --line: rgba(255,255,255,.10);
  --accent: #b9ff4f;
  --accent-soft: rgba(185,255,79,.11);
  --radius: 22px;
  --shadow: 0 30px 80px rgba(0,0,0,.34);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; }
button, input, select, textarea { font: inherit; }
svg, img { max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { padding: 112px 0; position: relative; }
.hidden { display: none !important; }
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.skip-link { position:fixed; top:-80px; left:16px; z-index:9999; padding:10px 15px; background:var(--accent); color:#071000; border-radius:8px; font-weight:900; }
.skip-link:focus { top:16px; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(10,12,15,.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: .25s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(10,12,15,.92); }
.nav-wrap { height:80px; display:flex; align-items:center; justify-content:space-between; }
.brand { display:inline-flex; align-items:center; gap:12px; text-decoration:none; }
.brand-icon { width:43px; height:43px; display:grid; place-items:center; border-radius:13px; background:var(--accent); color:#071000; box-shadow:0 14px 30px rgba(185,255,79,.16); }
.brand-icon svg { width:29px; fill:currentColor; }
.brand-copy strong { display:block; font-size:.98rem; letter-spacing:-.02em; }
.brand-copy small { display:block; color:var(--muted); font-size:.70rem; margin-top:-2px; }
.primary-nav { display:flex; gap:28px; align-items:center; }
.primary-nav a { text-decoration:none; color:#d8dfe4; font-size:.91rem; font-weight:800; }
.primary-nav a:not(.button):hover { color:var(--accent); }
.nav-toggle { display:none; border:0; background:transparent; width:44px; height:44px; padding:10px; }
.nav-toggle i { display:block; height:2px; width:100%; background:#fff; margin:5px 0; border-radius:99px; }

.button {
  display:inline-flex;
  justify-content:center;
  align-items:center;
  min-height:52px;
  padding:0 22px;
  border:0;
  border-radius:12px;
  background:var(--accent);
  color:#071000;
  text-decoration:none;
  font-weight:950;
  cursor:pointer;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
  box-shadow:0 16px 34px rgba(185,255,79,.11);
}
.button:hover { transform:translateY(-2px); background:#c9ff78; box-shadow:0 20px 38px rgba(185,255,79,.17); }
.button.small { min-height:42px; padding:0 16px; font-size:.85rem; }
.button.full { width:100%; }

.hero {
  position:relative;
  min-height:100vh;
  padding:165px 0 55px;
  display:flex;
  align-items:center;
}
.grid-bg {
  position:absolute; inset:0;
  background:
    linear-gradient(rgba(255,255,255,.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.026) 1px, transparent 1px);
  background-size:46px 46px;
  mask-image:linear-gradient(to bottom, #000 70%, transparent);
}
.orb { position:absolute; border-radius:50%; filter:blur(90px); opacity:.23; pointer-events:none; }
.orb-one { width:450px; height:450px; background:var(--accent); left:-230px; top:70px; }
.orb-two { width:400px; height:400px; background:#2d6aff; right:-220px; top:170px; opacity:.14; }
.hero-grid { position:relative; z-index:2; display:grid; grid-template-columns:1.03fr .97fr; gap:68px; align-items:center; }
.eyebrow { display:inline-flex; gap:9px; align-items:center; color:var(--accent); text-transform:uppercase; letter-spacing:.12em; font-size:.76rem; font-weight:950; }
.eyebrow span { width:8px; height:8px; border-radius:50%; background:var(--accent); box-shadow:0 0 0 0 rgba(185,255,79,.5); animation:pulse 2s infinite; }
@keyframes pulse { 70%{box-shadow:0 0 0 10px rgba(185,255,79,0)} 100%{box-shadow:0 0 0 0 rgba(185,255,79,0)} }
.hero h1 { margin:22px 0 25px; font-size:clamp(3.5rem,6.4vw,6.8rem); line-height:.94; letter-spacing:-.068em; }
.hero h1 em { font-style:normal; color:var(--accent); }
.hero-copy > p { color:#b7c0c9; font-size:1.15rem; max-width:690px; }
.hero-actions { display:flex; gap:24px; align-items:center; margin:34px 0 28px; }
.secondary-link { display:inline-flex; gap:8px; align-items:center; font-weight:850; text-decoration:none; }
.secondary-link:hover { color:var(--accent); }
.hero-checks { display:flex; flex-wrap:wrap; gap:12px 22px; color:#c9d0d7; font-size:.90rem; }
.hero-checks span::first-letter { color:var(--accent); }

.dashboard {
  border:1px solid var(--line);
  border-radius:28px;
  padding:22px;
  background:linear-gradient(145deg, rgba(27,34,43,.97), rgba(15,19,24,.98));
  box-shadow:var(--shadow);
  transform:rotate(1.3deg);
}
.dashboard-head { display:flex; justify-content:space-between; align-items:center; gap:20px; padding:3px 2px 18px; }
.dashboard-head small, .metric small, .chart-title small { display:block; color:var(--muted); font-size:.70rem; text-transform:uppercase; letter-spacing:.08em; }
.dashboard-head strong { display:block; margin-top:2px; }
.live { display:inline-flex; align-items:center; gap:7px; color:var(--accent); background:var(--accent-soft); border:1px solid rgba(185,255,79,.20); border-radius:99px; padding:7px 10px; font-size:.70rem; font-weight:950; }
.live i { width:7px; height:7px; border-radius:50%; background:var(--accent); }
.metrics { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; }
.metric { min-height:116px; padding:17px; border:1px solid var(--line); border-radius:16px; background:rgba(255,255,255,.025); }
.metric strong { display:block; font-size:1.55rem; letter-spacing:-.04em; margin:7px 0 3px; }
.metric span { color:var(--muted); font-size:.74rem; }
.metric .up { color:var(--accent); }
.metric.accent { background:var(--accent); color:#071000; }
.metric.accent small, .metric.accent span { color:rgba(7,16,0,.68); }
.chart-panel { margin-top:12px; border:1px solid var(--line); border-radius:16px; padding:17px; background:rgba(0,0,0,.13); }
.chart-title { display:flex; justify-content:space-between; align-items:flex-start; }
.chart-title strong { display:block; margin-top:2px; }
.chart-title > span { color:#87919b; font-size:.70rem; padding:5px 8px; border:1px solid var(--line); border-radius:8px; }
.chart-panel svg { display:block; width:100%; margin-top:8px; }
.chart-grid line { stroke:rgba(255,255,255,.07); stroke-width:1; }
.area { fill:url(#fill); }
.trend { fill:none; stroke:var(--accent); stroke-width:4; stroke-linecap:round; }
.chart-panel circle { fill:var(--accent); stroke:#11161b; stroke-width:4; }
.disclaimer { margin:12px 2px 0; color:#7d8790; font-size:.70rem; }
.outcome-strip { position:relative; z-index:3; margin-top:70px; display:flex; align-items:center; gap:12px; flex-wrap:wrap; color:#95a0aa; font-size:.83rem; }
.outcome-strip b { font-weight:750; color:#dce2e7; border:1px solid var(--line); background:rgba(255,255,255,.025); padding:8px 12px; border-radius:999px; }

.heading { max-width:800px; margin-bottom:52px; }
.heading h2 { margin:14px 0 18px; font-size:clamp(2.3rem,4.2vw,4.4rem); line-height:1.02; letter-spacing:-.056em; }
.heading p { color:var(--muted); font-size:1.04rem; }
.heading p strong { color:#e6edf2; }

.cards { display:grid; gap:18px; }
.cards.three { grid-template-columns:repeat(3,1fr); }
.info-card { min-height:265px; padding:30px; border:1px solid var(--line); border-radius:var(--radius); background:linear-gradient(145deg,rgba(255,255,255,.035),rgba(255,255,255,.012)); transition:.25s ease; }
.info-card:hover { transform:translateY(-5px); border-color:rgba(185,255,79,.28); }
.icon { width:50px; height:50px; display:grid; place-items:center; border-radius:14px; background:var(--accent-soft); border:1px solid rgba(185,255,79,.18); }
.icon svg { width:24px; fill:var(--accent); }
.info-card h3 { margin:24px 0 10px; }
.info-card p { color:var(--muted); margin:0; }

.how { background:var(--bg-2); border-block:1px solid var(--line); }
.steps { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; }
.step { display:grid; grid-template-columns:auto 1fr; gap:22px; padding:28px; border:1px solid var(--line); border-radius:var(--radius); background:rgba(255,255,255,.024); }
.step > span { width:48px; height:48px; display:grid; place-items:center; border-radius:14px; background:var(--accent); color:#071000; font-weight:950; }
.step h3 { margin:0 0 8px; }
.step p { margin:0; color:var(--muted); }

.split { display:grid; grid-template-columns:1fr .86fr; gap:80px; align-items:center; }
.ticks { list-style:none; padding:0; margin:28px 0 0; }
.ticks li { padding:9px 0; display:flex; gap:12px; color:#d3dae0; }
.ticks span { color:var(--accent); font-weight:950; }
.journey { border:1px solid var(--line); border-radius:28px; padding:28px; background:linear-gradient(145deg,#181f26,#10151a); box-shadow:var(--shadow); }
.journey > div { display:flex; justify-content:space-between; gap:20px; padding:14px 16px; border-radius:13px; }
.journey > div span { color:#cad2d9; }
.journey > i { display:block; width:1px; height:18px; margin-left:28px; background:var(--line); }
.journey .highlight { background:var(--accent-soft); border:1px solid rgba(185,255,79,.22); }
.journey .highlight strong { color:var(--accent); }
.journey .final { background:var(--accent); color:#071000; }
.journey .final span { color:#071000; font-weight:850; }
.journey > p { margin:20px 4px 0; color:#7e8891; font-size:.73rem; }

.who { background:#0c1014; }
.tabs { border:1px solid var(--line); border-radius:26px; overflow:hidden; background:var(--panel); }
.tab-buttons { display:grid; grid-template-columns:repeat(3,1fr); border-bottom:1px solid var(--line); }
.tab-buttons button { border:0; border-right:1px solid var(--line); padding:20px; background:transparent; color:#a8b2bc; font-weight:900; cursor:pointer; }
.tab-buttons button:last-child { border-right:0; }
.tab-buttons button[aria-selected="true"] { background:var(--accent); color:#071000; }
.tab-panel { display:grid; grid-template-columns:1.2fr .8fr; gap:58px; padding:46px; align-items:center; }
.tab-panel[hidden] { display:none; }
.tab-panel small { color:var(--accent); font-size:.77rem; text-transform:uppercase; letter-spacing:.10em; font-weight:950; }
.tab-panel h3 { font-size:2rem; letter-spacing:-.04em; margin:10px 0 12px; }
.tab-panel p { margin:0; color:var(--muted); }
.tab-panel ul { list-style:none; padding:0; margin:0; }
.tab-panel li { padding:13px 0; border-bottom:1px solid var(--line); color:#d7dfe5; }
.tab-panel li:last-child { border-bottom:0; }

.ninety-card { padding:54px; border:1px solid rgba(185,255,79,.21); border-radius:30px; background:radial-gradient(circle at 86% 15%,rgba(185,255,79,.14),transparent 35%),linear-gradient(145deg,#171d22,#101419); }
.ninety-card .heading { max-width:900px; }
.months { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.months article { padding:24px; border:1px solid var(--line); border-radius:18px; background:rgba(255,255,255,.025); }
.months strong { color:var(--accent); }
.months h3 { margin:10px 0 8px; }
.months p { color:var(--muted); margin:0; }
.rolling { margin:26px 0 0; font-weight:800; color:#cad2d9; }

.faq-split { align-items:start; grid-template-columns:.78fr 1.22fr; }
.accordion article { border-bottom:1px solid var(--line); }
.accordion button { width:100%; border:0; background:transparent; color:#eef2f5; padding:22px 0; display:flex; justify-content:space-between; gap:20px; text-align:left; font-weight:900; cursor:pointer; }
.accordion button span { color:var(--accent); font-size:1.4rem; transition:transform .25s ease; }
.accordion button[aria-expanded="true"] span { transform:rotate(45deg); }
.answer { display:grid; grid-template-rows:0fr; transition:grid-template-rows .28s ease; }
.answer p { overflow:hidden; color:var(--muted); margin:0; }
.accordion button[aria-expanded="true"] + .answer { grid-template-rows:1fr; }
.accordion button[aria-expanded="true"] + .answer p { padding-bottom:22px; }

.review { background:radial-gradient(circle at 15% 20%,rgba(185,255,79,.12),transparent 25%),var(--bg-2); border-top:1px solid var(--line); }
.review-grid { display:grid; grid-template-columns:.8fr 1.2fr; gap:70px; align-items:start; }
.review-copy { position:sticky; top:120px; }
.review-copy h2 { margin:16px 0 18px; font-size:clamp(2.4rem,4.2vw,4.2rem); line-height:1.02; letter-spacing:-.056em; }
.review-copy p { color:var(--muted); }
.review-points { margin-top:30px; display:grid; gap:12px; }
.review-points div { display:flex; align-items:center; gap:12px; font-weight:850; color:#d7dfe5; }
.review-points b { width:38px; height:38px; display:grid; place-items:center; border-radius:12px; background:var(--accent); color:#071000; font-size:.75rem; }
.review-form { padding:30px; border:1px solid var(--line); border-radius:26px; background:#151a20; box-shadow:var(--shadow); }
.form-row { display:grid; grid-template-columns:repeat(2,1fr); gap:14px; }
.review-form label { display:block; margin-bottom:15px; color:#dfe5ea; font-size:.85rem; font-weight:850; }
.review-form input, .review-form select, .review-form textarea { width:100%; margin-top:7px; padding:13px 14px; border:1px solid var(--line); border-radius:11px; background:#0f1318; color:#f4f7f9; outline:none; transition:.2s ease; }
.review-form input:focus, .review-form select:focus, .review-form textarea:focus { border-color:var(--accent); box-shadow:0 0 0 4px rgba(185,255,79,.08); }
.review-form textarea { resize:vertical; min-height:120px; }
.consent { display:flex !important; align-items:flex-start; gap:10px; color:#aeb7bf !important; font-weight:500 !important; }
.consent input { width:18px; height:18px; margin:3px 0 0; accent-color:var(--accent); }
.form-note { margin:12px 0 0; color:#88939d; font-size:.74rem; text-align:center; }

footer { padding:72px 0 28px; border-top:1px solid var(--line); background:#07090c; }
.footer-grid { display:grid; grid-template-columns:1.6fr repeat(3,1fr); gap:50px; }
.footer-grid > div { display:flex; flex-direction:column; align-items:flex-start; gap:10px; }
.footer-about p { color:var(--muted); max-width:380px; }
.footer-grid > div > strong { margin-bottom:6px; }
.footer-grid a, .footer-grid span { color:#9ca7b1; text-decoration:none; font-size:.87rem; }
.footer-grid a:hover { color:var(--accent); }
.footer-bottom { margin-top:48px; padding-top:22px; border-top:1px solid var(--line); display:flex; justify-content:space-between; gap:20px; color:#6c7781; font-size:.72rem; }
.footer-bottom span:last-child { max-width:560px; text-align:right; }

.reveal { opacity:0; transform:translateY(20px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.delay-1 { transition-delay:.08s; }
.delay-2 { transition-delay:.16s; }
.delay-3 { transition-delay:.24s; }

@media (max-width:980px) {
  .section { padding:88px 0; }
  .hero { padding-top:140px; min-height:auto; }
  .hero-grid, .split, .faq-split, .review-grid { grid-template-columns:1fr; gap:48px; }
  .dashboard { transform:none; max-width:720px; }
  .cards.three { grid-template-columns:1fr; }
  .steps { grid-template-columns:1fr; }
  .review-copy { position:static; }
  .footer-grid { grid-template-columns:1.3fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column:2; }
}

@media (max-width:780px) {
  .nav-wrap { height:72px; }
  .nav-toggle { display:block; }
  .primary-nav { position:fixed; left:20px; right:20px; top:72px; display:none; flex-direction:column; align-items:stretch; gap:0; padding:14px; background:rgba(17,21,27,.98); border:1px solid var(--line); border-radius:18px; box-shadow:var(--shadow); }
  .primary-nav.open { display:flex; }
  .primary-nav a { padding:13px 12px; }
  .primary-nav .button { margin-top:8px; }
  .hero h1 { font-size:clamp(3.1rem,15vw,5.1rem); }
  .hero-actions { flex-direction:column; align-items:flex-start; }
  .hero-checks { display:grid; }
  .outcome-strip { margin-top:48px; }
  .tab-buttons { grid-template-columns:1fr; }
  .tab-buttons button { border-right:0; border-bottom:1px solid var(--line); }
  .tab-buttons button:last-child { border-bottom:0; }
  .tab-panel { grid-template-columns:1fr; gap:28px; padding:30px; }
  .months { grid-template-columns:1fr; }
  .ninety-card { padding:32px; }
  .form-row { grid-template-columns:1fr; gap:0; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-about { grid-column:1 / -1; }
  .footer-grid > div:last-child { grid-column:auto; }
  .footer-bottom { flex-direction:column; }
  .footer-bottom span:last-child { text-align:left; }
}

@media (max-width:520px) {
  .container { width:min(calc(100% - 26px),var(--container)); }
  .section { padding:72px 0; }
  .brand-copy strong { font-size:.88rem; }
  .brand-copy small { font-size:.65rem; }
  .brand-icon { width:38px; height:38px; }
  .metrics { grid-template-columns:1fr; }
  .dashboard-head { align-items:flex-start; flex-direction:column; }
  .review-form { padding:20px; }
  .ninety-card { padding:24px; }
  .footer-grid { grid-template-columns:1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto !important; animation:none !important; transition:none !important; }
  .reveal { opacity:1; transform:none; }
}
