/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --bg:       #0B0820;
  --bg-2:     #0F0C28;
  --bg-card:  rgba(255,255,255,0.04);
  --purple:   #7C3AED;
  --purple-2: #6D28D9;
  --maple:    #C8102E;
  --gold:     #E6A72F;
  --white:    #FFFFFF;
  --muted:    rgba(255,255,255,0.52);
  --border:   rgba(255,255,255,0.09);
  --ink:      #FFFFFF;
  --max:      1120px;
  --radius:   12px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--white);
  background: var(--bg);
  font-family: Inter, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.55;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--white); line-height: 1.08; }
h2 { margin-bottom: 18px; font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 800; letter-spacing: -0.04em; }
h3 { margin-bottom: 10px; font-size: 1.2rem; font-weight: 800; letter-spacing: -0.02em; }
p  { color: var(--muted); margin-bottom: 0; }
ul { margin: 0; padding-left: 20px; }
li + li { margin-top: 7px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }

/* ── Layout ─────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 36px; }
.eyebrow {
  display: inline-block;
  font-size: 11px; font-weight: 800; letter-spacing: 1.2px;
  text-transform: uppercase; color: #A78BFA; margin-bottom: 12px;
}
.eyebrow.maple { color: #FF8099; }
.eyebrow.gold  { color: var(--gold); }

/* ── Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,8,32,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; height: 62px; gap: 0;
}
.brand {
  display: flex; align-items: center; gap: 9px;
  text-decoration: none; flex-shrink: 0; margin-right: auto;
}
.brand-mark {
  width: 32px; height: 32px; background: var(--maple);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 900; color: white; flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; gap: 1px; }
.brand-text strong { font-size: 14px; font-weight: 900; color: white; letter-spacing: -0.2px; line-height: 1; }
.brand-text small  { font-size: 10px; font-weight: 600; color: var(--muted); letter-spacing: 0.2px; line-height: 1; }

/* Desktop nav */
.site-menu {
  display: flex; align-items: center; gap: 2px;
}
.site-menu a {
  font-size: 13.5px; font-weight: 500; color: var(--muted);
  padding: 6px 12px; border-radius: 8px;
  text-decoration: none; transition: color 0.12s;
  white-space: nowrap;
}
.site-menu a:hover { color: white; }
.site-menu a.nav-cta {
  background: var(--purple); color: white !important;
  font-weight: 700; padding: 8px 18px;
  border-radius: 9px; margin-left: 8px;
  transition: background 0.15s;
}
.site-menu a.nav-cta:hover { background: var(--purple-2); }

/* Mobile toggle */
.menu-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none; border: none;
  cursor: pointer; padding: 6px; border-radius: 8px;
  transition: background 0.15s;
}
.menu-toggle:hover { background: rgba(255,255,255,0.07); }
.menu-toggle span {
  display: block; height: 2px; background: white;
  border-radius: 2px; transition: all 0.2s;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: 90px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute; top: -140px; left: 50%; transform: translateX(-50%);
  width: 900px; height: 640px;
  background: radial-gradient(ellipse, rgba(124,58,237,0.20) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.032) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none; z-index: 0;
}
.hero-inner { position: relative; z-index: 2; }

/* Pill */
.hero-pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(124,58,237,0.40);
  background: rgba(124,58,237,0.10);
  border-radius: 50px; padding: 6px 16px 6px 8px;
  margin-bottom: 32px;
}
.pill-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--maple);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
}
.hero-pill span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.72); }

/* Headline */
.hero-headline {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 700;
  line-height: 1.02; letter-spacing: -0.03em;
  color: white;
  max-width: 820px; margin: 0 auto 22px;
  text-wrap: balance;
}
.hero-headline em {
  font-style: normal;
  background: linear-gradient(135deg, #C084FC 0%, #A855F7 45%, #7C3AED 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 17px; color: var(--muted);
  max-width: 560px; margin: 0 auto 38px;
  line-height: 1.65;
}

/* CTAs */
.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 68px;
}
.btn-primary {
  background: var(--purple); color: white;
  font-size: 15px; font-weight: 700;
  padding: 13px 28px; border-radius: 10px;
  border: none; cursor: pointer; font-family: inherit;
  box-shadow: 0 0 0 1px rgba(124,58,237,0.5), 0 8px 24px rgba(124,58,237,0.35);
  transition: all 0.15s; display: inline-block;
}
.btn-primary:hover { background: var(--purple-2); transform: translateY(-1px); box-shadow: 0 0 0 1px rgba(124,58,237,0.6), 0 12px 32px rgba(124,58,237,0.50); }
.btn-outline {
  background: transparent; color: rgba(255,255,255,0.80);
  font-size: 15px; font-weight: 600;
  padding: 13px 28px; border-radius: 10px;
  border: 1px solid var(--border);
  cursor: pointer; font-family: inherit; display: inline-block;
  transition: all 0.15s;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.25); color: white; }

/* Hero metrics */
.hero-metrics {
  display: flex; justify-content: center; gap: 40px;
  margin-bottom: 56px; flex-wrap: wrap;
}
.hero-metric strong { display: block; font-size: 28px; font-weight: 900; color: white; letter-spacing: -0.5px; line-height: 1; }
.hero-metric span   { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 4px; display: block; }

/* App preview */
.preview-wrap {
  position: relative; z-index: 2;
  padding: 0 24px; max-width: 1020px; margin: 0 auto;
}
.preview-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 130px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none; z-index: 3;
}
.preview-frame {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px 16px 0 0; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(124,58,237,0.18), 0 32px 80px rgba(0,0,0,0.60);
}
.browser-bar {
  background: rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 10px 14px;
  display: flex; align-items: center; gap: 10px;
}
.browser-dots { display: flex; gap: 5px; }
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-r { background: #FF5F57; } .dot-y { background: #FEBC2E; } .dot-g { background: #28C840; }
.browser-url {
  flex: 1; background: rgba(255,255,255,0.07); border-radius: 6px;
  padding: 4px 12px; font-size: 12px; color: rgba(255,255,255,0.30);
  font-family: monospace; max-width: 340px; margin: 0 auto;
}
/* Dashboard inside preview */
.dash { display: flex; height: 420px; }
.dash-sidebar {
  width: 192px; flex-shrink: 0; background: #1B2059;
  padding: 14px 10px; display: flex; flex-direction: column; gap: 2px;
}
.dash-logo { display: flex; align-items: center; gap: 7px; padding: 6px 10px; margin-bottom: 10px; }
.dash-logo-mark { width: 26px; height: 26px; border-radius: 7px; background: var(--maple); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900; color: white; }
.dash-logo span { font-size: 12px; font-weight: 800; color: white; }
.dash-nav { display: flex; align-items: center; gap: 7px; padding: 8px 10px; border-radius: 8px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.45); }
.dash-nav.active { background: rgba(255,255,255,0.12); color: white; }
.dash-main { flex: 1; background: #EEF2F8; padding: 18px 20px; overflow: hidden; }
.dash-topbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.dash-topbar h2 { font-size: 16px; font-weight: 900; color: #0B1F3A; margin: 0; letter-spacing: -0.3px; }
.dash-badge { background: #1B2059; color: white; font-size: 11px; font-weight: 700; padding: 4px 11px; border-radius: 20px; }
.dash-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; margin-bottom: 14px; }
.dash-stat { background: white; border-radius: 9px; padding: 12px 14px; box-shadow: 0 1px 6px rgba(0,0,0,0.06); }
.dash-stat .n { font-size: 20px; font-weight: 900; color: #0B1F3A; line-height: 1; }
.dash-stat .l { font-size: 9px; color: #94A3B8; font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; margin-top: 2px; }
.dash-stat .d { display: inline-block; font-size: 9px; font-weight: 700; padding: 2px 5px; border-radius: 4px; margin-top: 4px; }
.d-g { background: #DCFCE7; color: #16A34A; } .d-r { background: #FEE2E2; color: #DC2626; }
.d-b { background: #DBEAFE; color: #2563EB; } .d-a { background: #FEF3C7; color: #D97706; }
.dash-table { background: white; border-radius: 9px; overflow: hidden; box-shadow: 0 1px 6px rgba(0,0,0,0.06); }
.tbl-head { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; padding: 8px 14px; border-bottom: 1px solid #F1F5F9; font-size: 9px; font-weight: 800; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.4px; }
.tbl-row  { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; padding: 8px 14px; align-items: center; border-bottom: 1px solid #F8FAFC; font-size: 11px; color: #334155; }
.tbl-row:last-child { border-bottom: none; }
.s-name { display: flex; align-items: center; gap: 7px; font-weight: 700; color: #0B1F3A; }
.av { width: 22px; height: 22px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 800; color: white; flex-shrink: 0; }
.band { display: inline-flex; font-size: 9px; font-weight: 700; padding: 2px 7px; border-radius: 4px; }
.b-adv { background: #DCFCE7; color: #15803D; } .b-on  { background: #DBEAFE; color: #1D4ED8; }
.b-at  { background: #FEF3C7; color: #B45309; } .b-int { background: #FEE2E2; color: #B91C1C; }

/* ── Trust strip ─────────────────────────────────────────── */
.trust-strip { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 18px 0; }
.trust-inner { display: flex; justify-content: center; align-items: center; gap: 10px; flex-wrap: wrap; }
.trust-badge {
  display: flex; align-items: center; gap: 7px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 50px; padding: 7px 16px;
}
.trust-badge span { font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.62); }

/* ── Sections ────────────────────────────────────────────── */
.section { padding: 96px 0; }
.section.alt { background: var(--bg-2); }

.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.feature-media {
  margin: 0; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
.feature-media img { width: 100%; }

/* Stat grid */
.stat-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 28px; }
.stat {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px;
}
.stat strong { display: block; font-size: 26px; font-weight: 900; color: white; letter-spacing: -0.5px; }
.stat span   { font-size: 12px; color: var(--muted); margin-top: 3px; display: block; font-weight: 500; }

/* Section head centered */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-head p { margin-top: 12px; }

/* ── Tier cards ──────────────────────────────────────────── */
.tier-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.tier-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: border-color 0.2s;
}
.tier-card:hover { border-color: rgba(124,58,237,0.40); }
.tier-card img { width: 100%; display: block; }
.tier-body { padding: 22px 22px 26px; }
.tier-label {
  display: inline-block; font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1px;
  padding: 4px 10px; border-radius: 6px; margin-bottom: 10px;
}
.tier-label.blue   { background: rgba(59,130,246,0.15); color: #93C5FD; }
.tier-label.violet { background: rgba(139,92,246,0.15); color: #C4B5FD; }
.tier-label.amber  { background: rgba(245,158,11,0.15); color: #FCD34D; }
.tier-body h3 { font-size: 18px; font-weight: 800; margin-bottom: 8px; }
.tier-body p  { font-size: 13px; line-height: 1.6; margin-bottom: 14px; }
.tier-body ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.tier-body li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 500; }
.tier-body li::before { content: '→'; color: var(--purple); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.tier-time { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); font-size: 12px; color: var(--muted); font-weight: 600; }

/* ── Reporting / scoring sections ────────────────────────── */
.scoring-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-top: 80px; }

.benchmark-list { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.benchmark-row {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 10px; padding: 12px 16px;
}
.benchmark-row strong { font-size: 13px; font-weight: 800; color: white; min-width: 82px; }
.benchmark-row span   { font-size: 13px; color: var(--muted); }
.bench-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }

/* ── Trust section ───────────────────────────────────────── */
.trust-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

.feature-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.feature-list > div { display: flex; flex-direction: column; gap: 4px; }
.feature-list > div strong { font-size: 14px; font-weight: 800; color: white; }
.feature-list > div span   { font-size: 13px; color: var(--muted); line-height: 1.6; }

.media-stack { display: flex; flex-direction: column; gap: 16px; }
.media-stack figure { margin: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,0.35); }

/* ── Roadmap ─────────────────────────────────────────────── */
.roadmap-layout { display: flex; flex-direction: column; gap: 40px; }
.roadmap-layout .section-head.left { text-align: left; max-width: 560px; margin: 0; }
.wide-media { margin: 0; border-radius: 14px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 8px 32px rgba(0,0,0,0.35); }
.wide-media img { width: 100%; }

/* ── Interest section ────────────────────────────────────── */
.interest-section { background: var(--bg-2); padding: 96px 0; }
.interest-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }

.interest-copy h2 { color: white; }
.interest-copy > p { color: var(--muted); margin-top: 14px; }

.check-list { list-style: none; padding: 0; margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.check-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.60); font-weight: 500; }
.check-list li::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  background: rgba(124,58,237,0.20); border: 1px solid rgba(124,58,237,0.40);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; color: #A78BFA; flex-shrink: 0;
}

.mascot { width: 140px; margin-top: 36px; filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3)); }

.interest-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border); border-radius: 20px; padding: 36px;
}
.interest-form h3 { font-size: 20px; font-weight: 800; color: white; margin-bottom: 4px; }
.interest-form > p { font-size: 14px; color: var(--muted); margin-bottom: 22px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.interest-form label {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.40);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.interest-form input,
.interest-form select,
.interest-form textarea {
  padding: 11px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border); border-radius: 10px;
  font-size: 14px; color: white; font-family: inherit; outline: none;
  transition: border-color 0.12s, box-shadow 0.12s;
}
.interest-form input::placeholder,
.interest-form textarea::placeholder { color: rgba(255,255,255,0.18); }
.interest-form select { color: rgba(255,255,255,0.65); }
.interest-form input:focus,
.interest-form select:focus,
.interest-form textarea:focus {
  border-color: rgba(124,58,237,0.60);
  box-shadow: 0 0 0 3px rgba(124,58,237,0.14);
}
.interest-form select option { background: #1B1040; color: white; }
.interest-form textarea { resize: vertical; }

.button.form-button {
  width: 100%; padding: 13px; border: none; border-radius: 10px;
  background: var(--purple); color: white;
  font-size: 15px; font-weight: 700; cursor: pointer; font-family: inherit;
  box-shadow: 0 8px 24px rgba(124,58,237,0.30); transition: all 0.15s; margin-top: 4px;
  display: block; text-align: center;
}
.button.form-button:hover { background: var(--purple-2); transform: translateY(-1px); }
.form-message { font-size: 13px; color: #A78BFA; margin-top: 12px; font-weight: 600; }

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
  background: #06051A; padding: 52px 0 28px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 36px; border-bottom: 1px solid var(--border); margin-bottom: 24px;
}
.footer-grid > div strong { font-size: 15px; font-weight: 900; color: white; display: block; margin-bottom: 10px; }
.footer-grid > div p      { font-size: 13px; color: var(--muted); line-height: 1.65; }
.footer-grid > div span   { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.22); display: block; margin-bottom: 14px; }
.footer-grid > div a      { display: block; font-size: 13px; color: var(--muted); margin-bottom: 10px; transition: color 0.12s; }
.footer-grid > div a:hover { color: white; }
.footer-bottom { font-size: 12px; color: rgba(255,255,255,0.22); }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .menu-toggle { display: flex; }
  .site-menu {
    display: none; position: fixed; inset: 62px 0 0 0;
    background: #0B0820; flex-direction: column; gap: 4px;
    padding: 20px 20px; overflow-y: auto; z-index: 99;
    border-top: 1px solid var(--border);
  }
  .site-menu.open { display: flex; }
  .site-menu a { font-size: 15px; padding: 12px 16px; border-radius: 10px; }
  .site-menu a.nav-cta { margin-left: 0; margin-top: 8px; text-align: center; }

  .hero { padding: 60px 0 0; }
  .hero-headline { font-size: clamp(38px, 9vw, 64px); }
  .hero-sub { font-size: 15px; }
  .preview-wrap { padding: 0 12px; }
  .dash-sidebar { display: none; }
  .dash-stats { grid-template-columns: repeat(2,1fr); }

  .two-column,
  .tier-grid,
  .scoring-layout,
  .trust-layout,
  .interest-layout { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .section { padding: 64px 0; }
  .stat-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-metrics { gap: 24px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .tier-grid { grid-template-columns: 1fr; }
  .trust-inner { gap: 7px; }
  .dash-stats { grid-template-columns: repeat(2,1fr); }
}
