/* ── Tokens ── */
:root {
  --bg: #16161e;
  --bg-2: #1c1c27;
  --bg-3: #22222e;
  --fg: #f0ede6;
  --fg-muted: #8a8a9a;
  --accent: #c9a84c;
  --accent-dim: #a8873c;
  --red-high: #e05c5c;
  --amber-med: #e0a84c;
  --green-low: #6ab87a;
  --border: #2a2a38;
  --font-mono: 'IBM Plex Mono', monospace;
  --font-sans: 'IBM Plex Sans', sans-serif;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
.section-title {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

/* ── Nav ── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(22, 22, 30, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wordmark {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.topbar-links {
  display: flex;
  gap: 2rem;
}
.topbar-links a {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-decoration: none;
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.topbar-links a:hover { color: var(--fg); }
.topbar-auth { display: flex; gap: 0.75rem; align-items: center; }
.topbar-signin { font-size: 0.82rem; color: var(--fg-muted); text-decoration: none; font-family: var(--font-mono); transition: color 0.2s; }
.topbar-signin:hover { color: var(--fg); }
.topbar-register { font-size: 0.82rem; color: #16161e; background: var(--accent); padding: 0.4rem 0.9rem; border-radius: 5px; text-decoration: none; font-family: var(--font-mono); font-weight: 600; transition: background 0.2s; }
.topbar-register:hover { background: var(--accent-dim); }

/* Mobile nav toggle */
.nav-toggle { display: none; }
.nav-toggle-label {
  display: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle-label span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fg-muted);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

/* ── Hero ── */
.hero { padding: 5rem 2rem 4rem; }
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.hero-headline {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 480px;
}

/* Dashboard mockup */
.hero-dashboard {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
.dashboard-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
}
/* live-dot removed — no live scan data yet */
.dashboard-table {
  padding: 0.5rem 0;
}
.dt-row {
  display: grid;
  grid-template-columns: 60px 1fr 150px 72px;
  padding: 0.75rem 1.25rem;
  gap: 1rem;
  align-items: center;
  border-bottom: 1px solid rgba(42,42,56,0.6);
}
.dt-row:last-child { border-bottom: none; }
.dt-header {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0.25rem;
}
.dt-agency {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
}
.dt-program {
  font-size: 0.82rem;
  color: var(--fg);
}
.dt-amount {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--fg-muted);
}
.dt-risk {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
}
.dt-high { background: rgba(224,92,92,0.15); color: var(--red-high); }
.dt-med  { background: rgba(224,168,76,0.15);  color: var(--amber-med); }
.dt-low  { background: rgba(106,184,122,0.15); color: var(--green-low); }
.dashboard-footnote {
  padding: 0.75rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  letter-spacing: 0.02em;
}

/* ── Section shared ── */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

/* ── How It Works ── */
.how-it-works { background: var(--bg-2); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.step-card { padding: 2rem 0; }
.step-number {
  font-family: var(--font-mono);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}
.step-title {
  font-family: var(--font-mono);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.step-body {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── Data Sources ── */
.ds-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 4rem; align-items: start; }
.ds-sub { font-size: 1rem; color: var(--fg-muted); line-height: 1.75; max-width: 400px; }
.ds-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.ds-source {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.ds-source:hover { border-color: var(--accent-dim); }
.ds-source-icon {
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.ds-source-name {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.5rem;
}
.ds-source-desc {
  font-size: 0.8rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ── Case Formats ── */
.case-formats { background: var(--bg-2); }
.cf-layout { display: grid; grid-template-columns: 1fr 320px; gap: 4rem; align-items: start; }
.cf-stages { display: flex; flex-direction: column; gap: 0; }
.cf-stage {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.cf-stage:last-child { border-bottom: none; }
.cf-stage-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.35rem;
  opacity: 0.7;
}
.cf-stage-body { flex: 1; }
.cf-stage-title {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.4rem;
}
.cf-stage-desc {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.65;
}
/* Sample case card */
.cf-sample {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  position: sticky;
  top: 80px;
}
.cf-sample-header {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--bg-3);
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.cf-sample-body { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.cf-field { display: flex; flex-direction: column; gap: 0.2rem; }
.cf-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--fg-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.cf-value {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--fg);
}
.cf-disclaimer {
  font-size: 0.72rem;
  color: var(--fg-muted);
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* ── Closing CTA ── */
.closing-cta-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 1.5rem 0 1rem;
  flex-wrap: wrap;
}
.closing-disclaimer {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 600px;
  font-family: var(--font-mono);
}
.closing { background: var(--bg-3); }
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.closing-stripe {
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 100%);
  border-radius: 2px;
  width: 160px;
}
.closing-headline {
  font-family: var(--font-mono);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--fg);
  max-width: 760px;
}
.closing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 640px;
}

/* ── Footer ── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
.footer-wordmark {
  font-family: var(--font-mono);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.footer-tagline {
  font-size: 0.8rem;
  color: var(--fg-muted);
}
.footer-legal {
  font-size: 0.78rem;
  color: var(--fg-muted);
  line-height: 1.6;
  text-align: right;
}

/* ── Hero CTA ── */
.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 2rem 0 0.75rem;
  flex-wrap: wrap;
}
.hero-trial-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.6rem;
  background: var(--accent);
  color: #16161e;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.15s;
}
.cta-primary:hover { background: var(--accent-dim); transform: translateY(-1px); }
.cta-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.25rem;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-decoration: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: border-color 0.2s, color 0.2s;
}
.cta-ghost:hover { border-color: var(--accent-dim); color: var(--fg); }

/* ── Hero proof strip ── */
.hero-proof {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.proof-item { display: flex; flex-direction: column; gap: 0.2rem; }
.proof-val {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
}
.proof-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}
.proof-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* ── Hero program badges ── */
.hero-programs {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}
.prog-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 0.85rem;
  border-radius: 5px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  transition: transform 0.15s, filter 0.2s;
  line-height: 1.3;
}
.prog-badge:hover { transform: translateY(-2px); filter: brightness(1.15); }
.prog-badge-sub { font-weight: 400; font-size: 0.65rem; opacity: 0.8; margin-top: 0.15rem; }
.prog-badge--fca  { background: rgba(201,168,76,0.15); color: var(--accent); border: 1px solid rgba(201,168,76,0.3); }
.prog-badge--sec { background: rgba(224,92,92,0.15);  color: var(--red-high);  border: 1px solid rgba(224,92,92,0.3); }
.prog-badge--irs { background: rgba(106,184,122,0.15); color: var(--green-low); border: 1px solid rgba(106,184,122,0.3); }
.prog-badge--cftc { background: rgba(144,101,176,0.15); color: #c49bdb; border: 1px solid rgba(144,101,176,0.3); }
.prog-badge--fincen { background: rgba(224,168,76,0.1); color: var(--amber-med); border: 1px solid rgba(224,168,76,0.25); }

/* ── Testimonials ── */
.testimonials {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem;
}
.testimonials-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: var(--accent-dim); }
.testimonial-quote {
  font-size: 0.92rem;
  color: var(--fg);
  line-height: 1.7;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: auto;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.testimonial-meta { display: flex; flex-direction: column; gap: 0.15rem; }
.testimonial-name {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--fg);
}
.testimonial-role {
  font-size: 0.72rem;
  color: var(--fg-muted);
}

/* ── Sticky Mobile CTA ── */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(22, 22, 30, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border);
  padding: 0.85rem 1.25rem;
}
.mobile-sticky-cta .sticky-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}
.mobile-sticky-cta .cta-primary {
  width: 100%;
  justify-content: center;
  text-align: center;
  font-size: 0.9rem;
  padding: 0.85rem 1.5rem;
}
.mobile-sticky-cta .sticky-note {
  font-size: 0.7rem;
  color: var(--fg-muted);
  font-family: var(--font-mono);
}

/* ── Social Proof ── */
.social-proof { border-top: 1px solid var(--border); }
.sp-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}
.sp-card { display: flex; flex-direction: column; gap: 1.25rem; }
.sp-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.sp-headline {
  font-family: var(--font-mono);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--fg);
}
.sp-programs { display: flex; flex-direction: column; gap: 0; }
.sp-program {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem 2rem;
  align-items: start;
}
.sp-program:last-child { border-bottom: none; }
.sp-program-name {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 0.35rem;
}
.sp-program-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.6;
  grid-column: 1;
}
.sp-program-stat {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px;
  padding: 0.3rem 0.6rem;
  white-space: nowrap;
  align-self: center;
}
.sp-checklist { display: flex; flex-direction: column; gap: 0.9rem; }
.sp-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--fg);
}
.sp-check-icon { color: var(--accent); font-family: var(--font-mono); font-weight: 700; flex-shrink: 0; }
.sp-cta-wrap { display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-start; }
.cta-block { width: 100%; justify-content: center; text-align: center; }
.sp-no-card { font-size: 0.78rem; color: var(--fg-muted); font-family: var(--font-mono); }

/* ── Hero Stats Band ── */
.hero-stats {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.hero-stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
.hstat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
  text-align: center;
}
.hstat-val {
  font-family: var(--font-mono);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1;
}
.hstat-label {
  font-size: 0.72rem;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.hstat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  flex-shrink: 0;
}

/* ── Trust Strip ── */
.trust-strip {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.trust-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.trust-stat-group {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
}
.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
  text-align: center;
}
.trust-stat-val {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}
.trust-stat-label {
  font-size: 0.68rem;
  color: var(--fg-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.03em;
  line-height: 1.4;
}
.trust-div {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 0.5rem;
}
.trust-badges {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-shrink: 0;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}
.trust-badge svg { color: var(--accent); flex-shrink: 0; }

/* ── Logo Strip ── */
.logos-strip {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}
.logos-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
}
.logos-label {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--fg-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.logos-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.logo-item {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.logo-item:hover { opacity: 1; }

@media (max-width: 900px) {
  .trust-strip-inner { flex-direction: column; gap: 1.25rem; }
  .trust-stat-group { flex-wrap: wrap; }
  .trust-stat { flex: 0 0 calc(50% - 0.5rem); text-align: left; }
  .trust-div { display: none; }
  .trust-badges { flex-wrap: wrap; gap: 0.75rem; }
  .logos-inner { flex-direction: column; gap: 1rem; align-items: flex-start; }
  .logos-row { gap: 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 100px; }
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-dashboard { display: none; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .ds-layout { grid-template-columns: 1fr; gap: 2rem; }
  .cf-layout { grid-template-columns: 1fr; }
  .cf-sample { position: static; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-legal { text-align: left; }
  .nav-toggle-label { display: flex; }
  .topbar-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(22,22,30,0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem 1.5rem;
    gap: 1.25rem;
    transform: translateY(-110%);
    transition: transform 0.25s ease;
    pointer-events: none;
  }
  .topbar-links a { color: var(--fg-muted); font-size: 1rem; }
  .nav-toggle:checked ~ .topbar-links { transform: translateY(0); pointer-events: all; }
  .sp-grid { grid-template-columns: 1fr; }
  .hero-proof { flex-wrap: wrap; gap: 1rem; }
  .sp-program { grid-template-columns: 1fr; }
  .sp-program-stat { grid-column: 1; }
}
@media (max-width: 600px) {
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .section-inner { padding: 3.5rem 1.25rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .ds-grid { grid-template-columns: 1fr; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }
  .cta-primary, .cta-ghost { width: 100%; justify-content: center; text-align: center; }
  .closing-cta-row { flex-direction: column; align-items: flex-start; }
  .closing-cta-row .cta-primary,
  .closing-cta-row .cta-ghost { width: 100%; justify-content: center; text-align: center; }
  .hero-stats-inner {
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: flex-start;
  }
  .hstat {
    flex: 0 0 calc(50% - 0.75rem);
    text-align: left;
  }
  .hstat-divider { display: none; }
}
