/* ─── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:          #0D0B18;
  --bg-card:     #13111F;
  --bg-card-alt: #1A1730;
  --accent:      #F5B800;
  --danger:      #C41230;
  --text:        #F0EEF8;
  --text-muted:  #7A7690;
  --text-dim:    #4A4660;
  --border:      #2A2840;
  --radius:      12px;
  --radius-lg:   20px;

  --font-sans: 'DM Sans', system-ui, sans-serif;
  --font-mono: 'DM Mono', 'Courier New', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.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;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input { font-family: inherit; }

/* ─── Typography ───────────────────────────────────────────────────────────── */
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
h3 { font-size: 1.1rem; font-weight: 600; line-height: 1.3; }
p  { color: var(--text-muted); line-height: 1.7; }

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* ─── Layout Helpers ───────────────────────────────────────────────────────── */
.section-inner, .hero-inner, .nav-inner, .proof-inner,
.story-inner, .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

/* ─── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.15s;
  border: none;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary  { background: var(--accent); color: #0A0810; }
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); opacity: 1; }
.btn-nav {
  background: var(--accent);
  color: #0A0810;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.6rem 1.25rem;
  white-space: nowrap;
}

/* ─── Nav ──────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,11,24,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}
.logo-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
}
.logo-accent { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 1.75rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.15s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-links a.active {
  color: var(--accent);
}

@media (max-width: 1200px) {
  .nav-links { gap: 1.1rem; }
  .nav-links a { font-size: 0.82rem; }
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  margin-left: auto;
  color: var(--text);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 4px 0;
  border-radius: 2px;
  transition: 0.2s;
}

/* ─── Page Hero (sub-pages) ────────────────────────────────────────────────── */
.page-hero {
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2rem, 5vw, 4rem);
  border-bottom: 1px solid var(--border);
}
.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}
.page-hero p {
  font-size: 1.1rem;
  max-width: 560px;
}

/* ─── Hero (home) ──────────────────────────────────────────────────────────── */
.hero {
  padding: clamp(2rem, 5vw, 4rem) 0 clamp(2rem, 5vw, 4rem);
}
.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 780px;
}
.pill {
  display: inline-flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--text-muted);
}
.pill::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-right: 0.5rem;
}
.hero-accent { color: var(--accent); }
.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.65;
}
.hero-form {
  display: flex;
  gap: 0.75rem;
  width: 100%;
  max-width: 480px;
  flex-wrap: wrap;
}
.hero-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  transition: border-color 0.15s;
}
.hero-form input:focus { outline: none; border-color: var(--accent); }
.hero-disclaimer { font-size: 0.8rem; color: var(--text-dim); }

/* Score Card */
.hero-score-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1.25rem;
  align-items: start;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  width: 100%;
  max-width: 520px;
  margin-top: 0.5rem;
}
.score-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}
.score-ring-wrap {
  position: relative;
  width: 86px;
  height: 86px;
  flex-shrink: 0;
}
.score-ring {
  width: 86px;
  height: 86px;
}
.score-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.score-num { font-size: 1.7rem; font-weight: 700; color: var(--text); line-height: 1; }
.score-denom { font-size: 0.6rem; color: var(--text-muted); font-family: var(--font-mono); }
.score-label { font-size: 0.78rem; font-weight: 600; color: var(--accent); }
.score-location { font-size: 0.73rem; color: var(--text-muted); }
.score-updated { font-size: 0.68rem; color: var(--text-dim); font-family: var(--font-mono); line-height: 1.3; }
.score-cats {
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
  justify-content: center;
  padding-top: 0.15rem;
}
.cat-row {
  display: grid;
  grid-template-columns: 78px 1fr 24px;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.cat-name { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.bar-wrap {
  height: 4px;
  background: var(--bg);
  border-radius: 2px;
  overflow: hidden;
}
.bar { height: 100%; background: var(--accent); border-radius: 2px; }
.bar-mod { background: #E8A020; }
.bar-warn { background: var(--danger); }
.cat-val { font-family: var(--font-mono); font-size: 0.68rem; color: var(--text); text-align: right; }

/* ─── Proof Bar ────────────────────────────────────────────────────────────── */
.proof-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}
.proof-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.proof-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.proof-item strong {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
}
.proof-item span { font-size: 0.8rem; color: var(--text-muted); }
.proof-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ─── Story ────────────────────────────────────────────────────────────────── */
.story { padding: clamp(4rem, 10vw, 8rem) 0; }
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.story-text h2 { margin-bottom: 1.5rem; }
.story-text p { margin-bottom: 1rem; }
.story-text blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
  margin-top: 1.5rem;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
}
.story-stat-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.stat-card-offset { margin-left: 0; }
.stat-num {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-unit { font-size: 1.5rem; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); }

/* ─── How It Works ──────────────────────────────────────────────────────────── */
.how { padding: clamp(4rem, 10vw, 8rem) 0; background: var(--bg-card-alt); }
.how h2 { margin-bottom: 3rem; }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.step {
  position: relative;
  padding-left: 1rem;
  border-left: 2px solid var(--border);
}
.step-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
  letter-spacing: 0.05em;
}
.step h3 { color: var(--text); margin-bottom: 0.5rem; }
.step p { font-size: 0.9rem; }

/* ─── Categories ────────────────────────────────────────────────────────────── */
.categories { padding: clamp(4rem, 10vw, 8rem) 0; }
.categories h2 { margin-bottom: 2rem; }

/* Scenario card — Fix #9 */
.scenario-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--crimson, #C41230);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  max-width: 820px;
}
.scenario-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #C41230;
  margin-bottom: 0.75rem;
}
.scenario-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 0.75rem;
}
.scenario-source {
  font-size: 0.75rem;
  color: var(--text-dim, #555);
  font-family: var(--font-mono);
}

/* B2B price line — Fix #10 */
.b2b-price-line { margin-bottom: 0.5rem; }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.cat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.cat-card:hover { border-color: var(--accent); }
.cat-icon {
  width: 80px; height: 80px;
  color: var(--accent);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border-radius: 16px;
  flex-shrink: 0;
  overflow: hidden;
}
.cat-icon svg { width: 36px; height: 36px; }
.cat-icon img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}
.cat-card h3 { color: var(--text); margin-bottom: 0.5rem; }
.cat-card p { font-size: 0.85rem; margin-bottom: 0.75rem; }
.cat-weight {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--accent);
  font-weight: 500;
}
.cat-weight-premium { color: var(--text-muted); }
.cat-card-cta {
  background: linear-gradient(135deg, #13111F, #1A1730);
  border-color: var(--accent);
}

/* ─── Stat Strip ────────────────────────────────────────────────────────────── */
.stat-strip {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg-card-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.stat-strip-header {
  margin-bottom: 2.5rem;
}
.stat-strip-header p {
  font-size: 1rem;
  max-width: 560px;
  margin-top: 0.5rem;
}
.stat-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
@media (max-width: 900px) {
  .stat-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .stat-strip-grid {
    grid-template-columns: 1fr;
  }
}
.strip-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  border-left: 3px solid var(--danger);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.strip-card-location {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.strip-card-stat {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 0.4rem;
}
.strip-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ─── Data Sources ──────────────────────────────────────────────────────────── */
/* ── Scoring Engine ── */
.engine { padding: clamp(4rem, 10vw, 8rem) 0; background: var(--bg-deep); }
.engine-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 3rem;
}
.engine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.engine-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  position: relative;
  transition: border-color 0.2s;
}
.engine-step:hover { border-color: rgba(245,184,0,0.35); }
.engine-step-num {
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 0.9rem;
  opacity: 0.8;
}
.engine-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}
.engine-step p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}
.engine-callout {
  background: rgba(245,184,0,0.06);
  border: 1px solid rgba(245,184,0,0.2);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  max-width: 680px;
}
.engine-callout p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
  font-style: italic;
}
/* Features page engine layout */
.engine-feat-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  max-width: 720px;
}
.engine-feat-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
}
.engine-feat-row:last-child { border-bottom: none; }
.engine-feat-label {
  padding: 1.25rem 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245,184,0,0.04);
  border-right: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  padding-top: 1.35rem;
}
.engine-feat-desc {
  padding: 1.25rem 1.5rem;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
}
.tier-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.tier-row:last-child { margin-bottom: 0; }
.tier-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  min-width: 52px;
  text-align: center;
}
@media (max-width: 600px) {
  .engine-feat-row { grid-template-columns: 1fr; }
  .engine-feat-label { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 0.5rem; }
}

.sources { padding: clamp(4rem, 10vw, 8rem) 0; background: var(--bg-card-alt); }
.sources h2 { margin-bottom: 1rem; }
.sources-sub { font-size: 1rem; max-width: 540px; margin-bottom: 2rem; }
.sources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.source-chip {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  transition: border-color 0.2s, color 0.2s;
}
.source-chip:hover { border-color: var(--accent); color: var(--text); }
.sources-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  max-width: 560px;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Endorsement slot — Fix #11 */
.endorsement-slot { margin-top: 2.5rem; }
.endorsement-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  max-width: 680px;
}
.endorsement-quote {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 0.75rem;
}
.endorsement-attr {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.endorsement-status {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-left: 0.4rem;
}

/* Unlock teaser — Fix #3 */
.src-unlock-teaser {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  text-align: center;
  padding: 0 1rem;
}

/* ─── Pricing ───────────────────────────────────────────────────────────────── */
.pricing { padding: clamp(4rem, 10vw, 8rem) 0; }
.pricing h2 { margin-bottom: 2.5rem; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
}
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card-featured {
  border-color: var(--accent);
  padding-top: 2.75rem;
}
.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0A0810;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
}
.price-card h3 { color: var(--text); margin-bottom: 0.5rem; }
.price-amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.price-amount span { font-size: 1rem; color: var(--text-muted); font-weight: 400; }
.price-alt { font-size: 0.8rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.price-card ul { margin-bottom: 1.5rem; flex: 1; }
.price-card li {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.price-card li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.price-card .btn { width: 100%; }

/* ─── FAQ ───────────────────────────────────────────────────────────────────── */
.faq { padding: clamp(4rem, 10vw, 8rem) 0; background: var(--bg-card-alt); }
.faq h2 { margin-bottom: 2rem; }
.faq-list { max-width: 680px; display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform 0.2s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

/* ─── Final CTA ─────────────────────────────────────────────────────────────── */
.final-cta {
  padding: clamp(5rem, 12vw, 10rem) 0;
  text-align: center;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(245,184,0,0.08) 0%, transparent 70%);
}
.final-cta h2 { margin-bottom: 1rem; }
.final-cta p { font-size: 1.05rem; margin-bottom: 2rem; }
.cta-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.cta-form input[type="email"] {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  font-size: 0.95rem;
  width: 280px;
  transition: border-color 0.15s;
}
.cta-form input:focus { outline: none; border-color: var(--accent); }
.cta-disclaimer { font-size: 0.78rem; color: var(--text-dim); }

/* ─── Features Page ─────────────────────────────────────────────────────────── */
.feature-block {
  padding: clamp(4rem, 8vw, 6rem) 0;
  border-bottom: 1px solid var(--border);
}
.feature-block:last-of-type { border-bottom: none; }
.feature-block-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.feature-block-inner.reverse { direction: rtl; }
.feature-block-inner.reverse > * { direction: ltr; }
.feature-text .section-eyebrow { margin-bottom: 0.5rem; }
.feature-text h2 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 1rem;
}
.feature-text p { margin-bottom: 1rem; }
.feature-text ul {
  list-style: none;
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.feature-text ul li {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.feature-text ul li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  margin-top: 0.45rem;
}
.feature-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.feature-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(245,184,0,0.06) 0%, transparent 70%);
}

/* Mock score card in feature visual */
.mock-card {
  width: 100%;
  max-width: 320px;
}
.mock-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.mock-score-big {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.mock-score-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}
.mock-tier {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.mock-bars {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.mock-bar-row {
  display: grid;
  grid-template-columns: 20px 70px 1fr 28px;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-muted);
}
.mock-bar-track {
  height: 5px;
  background: var(--bg);
  border-radius: 3px;
  overflow: hidden;
}
.mock-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: var(--accent);
}
.mock-bar-fill.warn { background: var(--danger); }
.mock-bar-fill.mod  { background: #E8A020; }
.mock-bar-val {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text);
  text-align: right;
}

/* Heat map mock */
.heatmap-mock {
  width: 100%;
  max-width: 320px;
  border-radius: var(--radius);
  overflow: hidden;
}
.heatmap-top {
  background: var(--bg);
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  font-family: var(--font-mono);
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 1rem;
}
.heatmap-tab { cursor: pointer; }
.heatmap-tab.active { color: var(--accent); }
.heatmap-body {
  height: 180px;
  background:
    radial-gradient(circle at 30% 40%, rgba(196,18,48,0.55) 0%, transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(196,18,48,0.35) 0%, transparent 35%),
    radial-gradient(circle at 50% 80%, rgba(245,184,0,0.25) 0%, transparent 30%),
    radial-gradient(circle at 20% 70%, rgba(245,184,0,0.2) 0%, transparent 25%),
    #0E0C1A;
  position: relative;
}
.heatmap-pin {
  position: absolute;
  top: 42%; left: 30%;
  transform: translate(-50%, -50%);
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245,184,0,0.25);
}
.heatmap-legend {
  display: flex;
  gap: 0.75rem;
  padding: 0.6rem 1rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.legend-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
}
.legend-item {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

/* Alert mock */
.alert-mock {
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.alert-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.alert-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}
.alert-dot.critical { background: var(--danger); box-shadow: 0 0 6px var(--danger); }
.alert-dot.warning  { background: #E8A020; }
.alert-dot.info     { background: var(--accent); }
.alert-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}
.alert-body {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─── Sit Rep Page ──────────────────────────────────────────────────────────── */
.sitrep-hero {
  padding: clamp(4rem, 10vw, 8rem) 0 clamp(3rem, 7vw, 5rem);
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(196,18,48,0.08) 0%, transparent 60%);
  border-bottom: 1px solid var(--border);
}
.sitrep-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.sitrep-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--danger);
  border: 1px solid rgba(196,18,48,0.4);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1.5rem;
}
.sitrep-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--danger);
  box-shadow: 0 0 6px var(--danger);
}
.sitrep-hero h1 { margin-bottom: 1rem; max-width: 700px; }
.sitrep-hero p { font-size: 1.1rem; max-width: 560px; margin-bottom: 2rem; }

.sitrep-report-mock {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 620px;
  margin-top: 3rem;
}
.sitrep-report-header {
  background: var(--bg);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}
.sitrep-report-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--danger);
}
.sitrep-report-meta {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--text-dim);
}
.sitrep-report-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.sitrep-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.sitrep-row:last-child { border-bottom: none; padding-bottom: 0; }
.sitrep-label {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding-top: 0.1rem;
}
.sitrep-value {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.sitrep-value strong { color: var(--text); font-weight: 600; }
.sitrep-value .danger { color: var(--danger); font-weight: 600; }
.sitrep-value .warn   { color: #E8A020; font-weight: 600; }
.sitrep-value .safe   { color: var(--accent); font-weight: 600; }

.sitrep-what {
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.sitrep-what-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.sitrep-what h2 { margin-bottom: 2.5rem; }
.sitrep-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.sitrep-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: border-color 0.2s;
}
.sitrep-card:hover { border-color: var(--accent); }
.sitrep-card-num {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.sitrep-card h3 { color: var(--text); margin-bottom: 0.5rem; }
.sitrep-card p { font-size: 0.85rem; }

.sitrep-cta {
  padding: clamp(4rem, 8vw, 6rem) 0;
  background: var(--bg-card-alt);
  border-top: 1px solid var(--border);
}
.sitrep-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}
.sitrep-cta h2 { margin-bottom: 0.75rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.sitrep-cta p { font-size: 1rem; max-width: 480px; }
.sitrep-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}
.sitrep-price-tag {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
}

/* ─── About Page ────────────────────────────────────────────────────────────── */
.about-mission {
  padding: clamp(4rem, 8vw, 6rem) 0;
}
.about-mission-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.about-mission h2 { margin-bottom: 1.5rem; }
.about-mission p { margin-bottom: 1rem; }
.principle-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}
.principle-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  border-left: 3px solid var(--accent);
}
.principle-item h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.principle-item p { font-size: 0.85rem; }

.about-company {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--bg-card-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-company-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
.about-company h2 { margin-bottom: 2rem; }
.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.company-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
}
.company-stat-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.company-stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.demographic-note {
  margin-top: 2rem;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 680px;
}
.demographic-note strong { color: var(--text); }

/* ─── Contact Page ──────────────────────────────────────────────────────────── */
.contact-grid {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.contact-grid-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
.contact-info h2 { margin-bottom: 1.5rem; font-size: clamp(1.5rem, 3vw, 2rem); }
.contact-info p { margin-bottom: 1.5rem; }
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.contact-item-label {
  font-size: 0.72rem;
  font-family: var(--font-mono);
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-item-val {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.contact-item-val a { color: var(--accent); }

.contact-form-wrap {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-form-wrap h3 { color: var(--text); margin-bottom: 1.5rem; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg);
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-family: var(--font-sans);
  transition: border-color 0.15s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--bg-card); }

/* ─── Footer ────────────────────────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 3rem;
  align-items: start;
}
.footer-brand p { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.5rem; max-width: 220px; }
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.15s;
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding: 1.5rem clamp(1.25rem, 5vw, 3rem) 0;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal { font-size: 0.75rem; color: var(--text-dim); }
.footer-legal a { color: var(--text-muted); }
.footer-legal a:hover { color: var(--accent); }
.footer-tagline {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  color: var(--text-dim);
}

/* ─── Responsive ────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .feature-block-inner { grid-template-columns: 1fr; gap: 2rem; }
  .feature-block-inner.reverse { direction: ltr; }
  .about-mission-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid-inner { grid-template-columns: 1fr; gap: 2rem; }
  .sitrep-cta-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(13,11,24,0.98); padding: 1rem clamp(1.25rem,5vw,3rem); border-bottom: 1px solid var(--border); z-index: 99; }
  .nav-toggle { display: block; }
  .story-inner { grid-template-columns: 1fr; gap: 2rem; }
  .stat-card-offset { margin-left: 0; }
  .steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .proof-divider { display: none; }
  .proof-inner { justify-content: flex-start; gap: 2rem; }
  .hero-score-card { grid-template-columns: 1fr; justify-items: center; }
  .score-left { flex-direction: row; gap: 1rem; text-align: left; align-items: flex-start; }
  .score-cats { width: 100%; }
  .cat-row { grid-template-columns: 70px 1fr 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .sitrep-row { grid-template-columns: 1fr; gap: 0.3rem; }
}

@media (max-width: 480px) {
  .hero-form { flex-direction: column; }
  .hero-form input { width: 100%; }
  .cta-form { flex-direction: column; align-items: center; }
  .cta-form input { width: 100%; max-width: 320px; }
}

/* ─── Animations ────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .cat-card, .faq-item, .step, .stat-card, .price-card,
  .feature-block, .sitrep-card, .strip-card, .principle-item,
  .company-stat, .alert-item {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.5s ease, transform 0.5s ease;
  }
  .cat-card.visible, .faq-item.visible, .step.visible,
  .stat-card.visible, .price-card.visible, .feature-block.visible,
  .sitrep-card.visible, .strip-card.visible, .principle-item.visible,
  .company-stat.visible, .alert-item.visible {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── CRIMINAL JUSTICE SECTION ──────────────────────────────── */
.justice {
  padding: clamp(4rem, 10vw, 8rem) 0;
  background: var(--bg-card-alt);
}
.justice-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 3rem;
}
.justice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.justice-stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem 1.5rem;
  transition: border-color 0.2s;
}
.justice-stat:hover { border-color: rgba(196,18,48,0.4); }
.justice-num {
  display: block;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-variant-numeric: tabular-nums;
}
.justice-stat-label {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}
.justice-callout {
  background: rgba(196,18,48,0.06);
  border: 1px solid rgba(196,18,48,0.2);
  border-radius: 10px;
  padding: 1.75rem 2rem;
  max-width: 760px;
}
.justice-callout-hed {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--crimson, #C41230);
  margin: 0 0 0.65rem;
}
.justice-callout-body {
  font-size: 0.925rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}
@media (max-width: 600px) {
  .justice-grid { grid-template-columns: 1fr; }
  .justice-num { font-size: 2.25rem; }
}

/* ── B2B SECTION ──────────────────────────────────────────── */
.b2b {
  padding: var(--space-section) 0;
  background: var(--bg);
}
.b2b-sub {
  max-width: 600px;
  color: var(--text-muted);
  margin: 1rem 0 3rem;
  line-height: 1.7;
}
.b2b-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .b2b-grid { grid-template-columns: 1fr; }
}
.b2b-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 0.2s;
}
.b2b-card:hover {
  border-color: rgba(245, 184, 0, 0.3);
}
.b2b-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.b2b-icon svg {
  width: 100%;
  height: 100%;
}
.b2b-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin: 0;
}
.b2b-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
.b2b-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.b2b-list li {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  padding-left: 1rem;
  position: relative;
}
.b2b-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
.b2b-cta {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.b2b-cta p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ── HERO SPLIT LAYOUT ───────────────────────────────────────── */
.hero-inner--split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
}
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-right {
  display: flex;
  justify-content: flex-end;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.hero-trust-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}
.hero-trust-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}
.hero-trust-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
}

/* ── SCORE CARD V2 ───────────────────────────────────────────── */
.hero-score-card-v2 {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.35);
}
.sc2-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sc2-location {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}
.sc2-live {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #22C55E;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 100px;
  padding: 0.2rem 0.6rem;
}
.sc2-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22C55E;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.sc2-alert {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: rgba(196,18,48,0.08);
  border: 1px solid rgba(196,18,48,0.25);
  border-radius: 8px;
  padding: 0.65rem 0.85rem;
}
.sc2-alert-tier {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #C41230;
  background: rgba(196,18,48,0.15);
  border-radius: 4px;
  padding: 0.15rem 0.4rem;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 1px;
}
.sc2-alert-text {
  font-size: 0.75rem;
  color: rgba(240,238,248,0.7);
  line-height: 1.45;
}
.sc2-score-row {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.sc2-dial-wrap {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}
.sc2-dial {
  width: 120px;
  height: 120px;
}
.sc2-dial-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.sc2-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.sc2-denom {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  margin-top: 0.15rem;
}
.sc2-score-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}
.sc2-tier-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent);
  background: rgba(245,184,0,0.1);
  border: 1px solid rgba(245,184,0,0.2);
  border-radius: 6px;
  padding: 0.2rem 0.55rem;
  width: fit-content;
}
.sc2-tier-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin: 0;
}
.sc2-updated {
  font-size: 0.65rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}
.sc2-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}
.sc2-cat-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 6px;
  padding: 0.5rem 0.7rem;
}
.sc2-cat-row[data-tier="low"]      { border-left-color: #22C55E; }
.sc2-cat-row[data-tier="moderate"] { border-left-color: #F5B800; }
.sc2-cat-row[data-tier="elevated"] { border-left-color: #F97316; }
.sc2-cat-row[data-tier="high"]     { border-left-color: #C41230; }
.sc2-cat-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sc2-bar-wrap { display: none; }
.sc2-bar { display: none; }
.sc2-cat-val {
  font-size: 1.05rem;
  font-weight: 800;
  font-family: var(--font-mono);
  text-align: right;
  line-height: 1;
}
.sc2-rankings {
  border-top: 1px solid var(--border);
  padding-top: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.28rem;
}
.sc2-rank-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 0.1rem;
}
.sc2-rank-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
}
.sc2-rank-val {
  font-weight: 700;
  font-family: var(--font-mono);
}
.sc2-rank-val.danger { color: #C41230; }
.sc2-rank-val.warn { color: #F5B800; }
.sc2-source {
  font-size: 0.58rem;
  color: rgba(255,255,255,0.18);
  margin-top: 0.15rem;
}

/* ── HERO SPLIT RESPONSIVE ───────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner--split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-right {
    justify-content: flex-start;
  }
  .hero-score-card-v2 {
    max-width: 100%;
  }
}

/* ── STAT SOURCE LABEL ───────────────────────────────────────── */
.stat-source {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-top: 0.35rem;
  font-family: var(--font-mono);
}

/* ── WAITLIST CONFIRM STATE ──────────────────────────────────── */
.waitlist-confirm {
  padding: 1.25rem 0;
}
.waitlist-confirm-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #F5B800;
  margin: 0 0 0.4rem;
  letter-spacing: -0.01em;
}
.waitlist-confirm-sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  margin: 0;
}

/* cat-icon img sizing defined above at line ~473 — do not redefine here */
