/* ============================================
   RELIAIFY — styles.css
   Dark theme, gold accents, Inter + Instrument Serif
   ============================================ */

:root {
  --bg-primary: #0A0A0F;
  --bg-secondary: #14141C;
  --bg-tertiary: #1E1E2A;
  --gold-primary: #D4AF37;
  --gold-bright: #E8C766;
  --gold-deep: #B8941F;
  --gold-glow: rgba(212,175,55,0.15);
  --success: #047857;
  --warning: #B45309;
  --danger: #991B1B;
  --text-primary: #F5F5F0;
  --text-secondary: #9B9B99;
  --text-muted: #888886;
  --text-gold: #D4AF37;
  --border-subtle: rgba(212,175,55,0.08);
  --border-default: rgba(212,175,55,0.15);
  --border-strong: rgba(212,175,55,0.35);
  --shadow-soft: 0 4px 24px rgba(0,0,0,0.2);
  --shadow-medium: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-strong: 0 16px 48px rgba(0,0,0,0.4);
  --shadow-gold: 0 8px 32px rgba(212,175,55,0.15);
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-mono: 'JetBrains Mono', monospace;
  --text-hero: clamp(3rem, 8vw, 6.5rem);
  --text-h1: clamp(2.5rem, 5vw, 4rem);
  --text-h2: clamp(2rem, 4vw, 3rem);
  --text-h3: clamp(1.5rem, 3vw, 2rem);
  --text-body: 1.0625rem;
  --text-small: 0.9375rem;
  --space-xs: .5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
  --space-2xl: 12rem;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-xl: 48px;
  --ease-out: cubic-bezier(0.16,1,0.3,1);
  --ease-smooth: cubic-bezier(0.65,0,0.35,1);
  --transition-fast: 200ms var(--ease-out);
  --transition-default: 400ms var(--ease-out);
  --transition-slow: 800ms var(--ease-out);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, blockquote { margin: 0; padding: 0; }
ul { list-style: none; }
a { color: inherit; text-decoration: none; }
img, svg, video { display: block; max-width: 100%; }
button { font: inherit; background: none; border: 0; color: inherit; cursor: pointer; }
input { font: inherit; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ---------- Utilities ---------- */
.serif-italic { font-family: var(--font-serif); font-style: italic; font-weight: 400; }
.gold { color: var(--gold-primary); }
.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-md); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: var(--text-small);
  letter-spacing: 0.01em;
  transition: all var(--transition-default);
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary { background: var(--gold-primary); color: #000; box-shadow: var(--shadow-gold); }
.btn-primary:hover { background: var(--gold-bright); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(212,175,55,0.3); }
.btn-outline { border: 1px solid var(--gold-primary); color: var(--gold-primary); background: transparent; }
.btn-outline:hover { background: var(--gold-glow); color: var(--gold-bright); border-color: var(--gold-bright); }
.btn-block { width: 100%; }

.section-label {
  display: inline-block;
  color: var(--gold-primary);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}
.section-headline {
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  max-width: 900px;
}
.section-subhead {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}
section { padding: var(--space-xl) 0; }

/* ---------- NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 80px;
  background: rgba(10,10,15,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: height var(--transition-default), background var(--transition-default), border-color var(--transition-default);
}
.nav.scrolled {
  height: 64px;
  background: rgba(10,10,15,0.9);
  border-bottom-color: var(--border-default);
}
.nav-inner {
  max-width: 1280px; height: 100%;
  margin: 0 auto; padding: 0 var(--space-md);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { font-weight: 800; font-size: 1.25rem; letter-spacing: 0.05em; color: var(--text-primary); }
.nav-logo .logo-r { color: var(--gold-primary); }
.nav-links { display: flex; align-items: center; gap: var(--space-md); }
.nav-link { font-size: var(--text-small); color: var(--text-secondary); transition: color var(--transition-fast); font-weight: 500; }
.nav-link:hover { color: var(--gold-primary); }
.nav-link.active { color: var(--gold-primary); font-weight: 600; text-shadow: 0 0 12px rgba(212, 175, 55, 0.5); position: relative; }
.nav-link.active::after { content: ''; position: absolute; bottom: -4px; left: 0; right: 0; height: 2px; background: var(--gold-primary); box-shadow: 0 0 8px rgba(212, 175, 55, 0.6); }

/* ---------- BILL C-12 PAGE ---------- */
.c12-section { padding: var(--space-xl) 0; }
.c12-section .container { max-width: 980px; margin: 0 auto; padding: 0 var(--space-md); }
.c12-eyebrow { display: inline-block; color: var(--gold-primary); font-size: .75rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: var(--space-sm); }
.c12-h2 { font-size: var(--text-h2); line-height: 1.15; margin-bottom: var(--space-md); }
.c12-lead { color: var(--text-secondary); font-size: 1.125rem; line-height: 1.7; margin-bottom: var(--space-md); }
.c12-body p { color: var(--text-secondary); font-size: var(--text-body); line-height: 1.75; margin-bottom: var(--space-sm); }
.c12-compare { display: grid; grid-template-columns: 1fr auto 1fr; gap: var(--space-md); align-items: stretch; margin: var(--space-lg) 0; }
.c12-compare-card { background: var(--bg-secondary); border: 1px solid var(--border-default); border-radius: var(--radius-md); padding: var(--space-md); }
.c12-compare-card.before { border-color: rgba(153, 27, 27, 0.35); }
.c12-compare-card.after { border-color: var(--border-strong); box-shadow: var(--shadow-gold); }
.c12-compare-label { font-size: .7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-muted); margin-bottom: var(--space-xs); }
.c12-compare-card.before .c12-compare-label { color: var(--danger); }
.c12-compare-card.after .c12-compare-label { color: var(--gold-primary); }
.c12-compare-amount { font-family: var(--font-serif); font-style: italic; font-size: clamp(2rem, 5vw, 3.5rem); color: var(--text-primary); line-height: 1.1; margin-bottom: var(--space-xs); }
.c12-compare-card.after .c12-compare-amount { color: var(--gold-primary); }
.c12-compare-sub { color: var(--text-secondary); font-size: var(--text-small); }
.c12-compare-arrow { display: flex; align-items: center; justify-content: center; color: var(--gold-primary); font-size: 2rem; }
.c12-delta { text-align: center; font-family: var(--font-serif); font-style: italic; font-size: 1.5rem; color: var(--gold-primary); margin-top: var(--space-sm); }
.c12-list { list-style: none; padding: 0; margin: var(--space-md) 0; }
.c12-list li { position: relative; padding: var(--space-sm) 0 var(--space-sm) 2rem; border-bottom: 1px solid var(--border-subtle); color: var(--text-secondary); line-height: 1.7; }
.c12-list li:before { content: "✓"; position: absolute; left: 0; top: var(--space-sm); color: var(--gold-primary); font-weight: 700; }
.c12-callout { background: linear-gradient(180deg, var(--bg-secondary), var(--bg-tertiary)); border: 1px solid var(--border-default); border-left: 3px solid var(--gold-primary); border-radius: var(--radius-md); padding: var(--space-md); margin: var(--space-md) 0; }
.c12-callout p { color: var(--text-primary); font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; line-height: 1.5; margin: 0; }
@media (max-width: 768px) {
  .c12-compare { grid-template-columns: 1fr; }
  .c12-compare-arrow { transform: rotate(90deg); }
}
.c12-table { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); margin: var(--space-lg) 0; }
.c12-table-col { background: var(--bg-secondary); border: 1px solid var(--border-default); border-radius: var(--radius-md); padding: var(--space-md); }
.c12-table-col.new { border-color: var(--border-strong); box-shadow: var(--shadow-gold); }
.c12-table-col h3 { font-size: 1rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: var(--space-md); color: var(--text-muted); }
.c12-table-col.new h3 { color: var(--gold-primary); }
.c12-row { padding: var(--space-sm) 0; border-bottom: 1px solid var(--border-subtle); }
.c12-row:last-child { border-bottom: none; }
.c12-row-label { font-size: .7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 4px; }
.c12-row-value { color: var(--text-primary); font-size: var(--text-body); line-height: 1.5; }
.c12-table-col.new .c12-row-value strong { color: var(--gold-primary); }
@media (max-width: 768px) { .c12-table { grid-template-columns: 1fr; } }

/* ---------- GOLD BACKGROUND UTILITY (black text for max contrast) ---------- */
.gold-bg { background: var(--gold-primary); color: #0A0A0F; padding: var(--space-xl) 0; }
.gold-bg h1, .gold-bg h2, .gold-bg h3, .gold-bg h4, .gold-bg p, .gold-bg a, .gold-bg cite, .gold-bg em, .gold-bg li { color: #0A0A0F !important; }
.gold-bg a { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.gold-bg .btn-outline { border-color: #0A0A0F; color: #0A0A0F; }
.gold-bg .btn-outline:hover { background: #0A0A0F; color: var(--gold-primary); }
.gold-bg .btn-primary { background: #0A0A0F; color: var(--gold-primary); box-shadow: none; }
.gold-bg .btn-primary:hover { background: #1E1E2A; }

/* ---------- AUDIT + THANK-YOU SUPPORTING LAYOUT ---------- */
.audit-what { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-md); margin-top: var(--space-lg); }
.audit-what-card { background: var(--bg-secondary); border: 1px solid var(--border-default); border-radius: var(--radius-md); padding: var(--space-md); }
.audit-what-card h3 { color: var(--gold-primary); font-size: 1.125rem; margin-bottom: var(--space-xs); }
.audit-what-card p { color: var(--text-secondary); line-height: 1.6; }
@media (max-width: 768px) { .audit-what { grid-template-columns: 1fr; } }
.form-wrap { background: var(--bg-secondary); border: 1px solid var(--border-default); border-radius: var(--radius-md); padding: var(--space-md); margin-top: var(--space-md); }
.form-wrap iframe { display: block; width: 100%; border: 0; background: transparent; }
.form-fallback { margin-top: var(--space-sm); color: var(--text-secondary); font-size: var(--text-small); }
.founder-promise { max-width: 720px; margin: 0 auto; text-align: center; }
.founder-promise p { font-size: 1.1875rem; line-height: 1.7; margin-bottom: var(--space-sm); }
.founder-promise .sig { font-family: var(--font-serif); font-style: italic; font-size: 1.25rem; margin-top: var(--space-md); }
.founder-promise .phone { font-size: 1.75rem; font-weight: 700; display: inline-block; margin-top: var(--space-sm); }
.ty-check { width: 96px; height: 96px; margin: 0 auto var(--space-md); display: block; }
.ty-wait { text-align: center; }
.ty-wait .wait-ctas { display: flex; gap: var(--space-sm); justify-content: center; flex-wrap: wrap; margin-top: var(--space-md); }
.ty-wait .wait-email { margin-top: var(--space-md); font-size: 1.0625rem; }
.nav-cta {
  background: var(--gold-primary);
  color: #000;
  padding: .625rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 600; font-size: var(--text-small);
  transition: all var(--transition-fast);
}
.nav-cta:hover { background: var(--gold-bright); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 4px; padding: 8px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--gold-primary); transition: all var(--transition-fast); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 80px;
  background: radial-gradient(ellipse at center, #14141C 0%, #0A0A0F 70%);
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero.video-failed .hero-video { display: none; }
.hero.video-failed {
  animation: heroPulse 8s var(--ease-smooth) infinite alternate;
}
@keyframes heroPulse {
  from { transform: scale(1); }
  to { transform: scale(1.03); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(rgba(10,10,15,0.85), rgba(10,10,15,0.65));
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 980px;
  padding: 0 var(--space-md);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem 1rem;
  border: 1px solid var(--border-default);
  border-radius: 999px;
  background: rgba(20,20,28,0.6);
  color: var(--gold-primary);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold-primary);
  box-shadow: 0 0 10px var(--gold-primary);
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100% { opacity: 1; } 50% { opacity: .4; } }
.hero-headline {
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-md);
}
.hero-headline em { font-weight: 400; font-size: 1.05em; }
.hero-subhead {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 780px;
  margin: 0 auto var(--space-md);
  line-height: 1.5;
}
.hero-trust {
  font-size: .8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}
.hero-ctas {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
  margin-bottom: var(--space-md);
}
.hero-founder { font-size: .8rem; color: var(--text-muted); }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 40px;
  border: 2px solid var(--gold-primary);
  border-radius: 12px;
  z-index: 3;
}
.scroll-indicator span {
  display: block;
  width: 3px; height: 8px;
  background: var(--gold-primary);
  border-radius: 2px;
  margin: 6px auto 0;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(16px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  padding: var(--space-lg) 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.trust-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
}
.trust-stat { text-align: center; padding: var(--space-sm); }
.stat-number {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--gold-primary);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: .5rem;
}
.stat-label {
  color: var(--text-secondary);
  font-size: .9375rem;
  line-height: 1.4;
}
.stat-label em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--text-primary);
}
.trust-divider { width: 1px; height: 80px; background: rgba(212,175,55,0.2); }

/* ---------- PROBLEM ---------- */
.problem { background: var(--bg-primary); }
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.scenario-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  transition: all var(--transition-default);
}
.scenario-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}
.scenario-time {
  color: var(--gold-primary);
  font-size: .75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.scenario-body {
  color: var(--text-primary);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.scenario-without, .scenario-with {
  padding: 1rem 1rem 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  border-left: 3px solid;
  background: rgba(0,0,0,0.3);
}
.scenario-without { border-left-color: var(--danger); }
.scenario-with { border-left-color: var(--success); }
.sub-label {
  font-size: .7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: .5rem;
}
.scenario-without .sub-label { color: #EF4444; }
.scenario-with .sub-label { color: #10B981; }
.scenario-without p, .scenario-with p { font-size: .9375rem; color: var(--text-secondary); }

/* ---------- GLOBE ---------- */
.globe-section {
  background: var(--bg-primary);
  padding: var(--space-xl) 0;
  min-height: 80vh;
}
.globe-grid {
  max-width: 1400px; margin: 0 auto;
  padding: 0 var(--space-md);
  display: grid;
  grid-template-columns: 40% 60%;
  gap: var(--space-md);
  align-items: center;
}
.globe-text .section-headline { margin-bottom: var(--space-md); }
.globe-footnote { color: var(--text-muted); font-size: 1rem; margin-top: var(--space-sm); }
.globe-wrap { position: relative; min-height: 560px; }
#globe-viz { width: 100%; height: 600px; }
.globe-mobile-fallback {
  display: none;
  text-align: center;
  padding: var(--space-lg);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--bg-secondary);
}
.globe-mobile-fallback svg { width: 200px; height: 160px; margin: 0 auto 1rem; }
.globe-mobile-fallback p { color: var(--gold-primary); font-weight: 600; }

/* ---------- HOW IT WORKS ---------- */
.how { background: var(--bg-secondary); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.how-step {
  padding: var(--space-md);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  transition: all var(--transition-default);
}
.how-step:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.how-num {
  font-size: clamp(5rem, 8vw, 8rem);
  line-height: 1;
  margin-bottom: var(--space-sm);
  opacity: 0.9;
}
.how-step h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: .75rem;
  letter-spacing: -0.01em;
}
.how-step p { color: var(--text-secondary); line-height: 1.6; }

/* ---------- AI + HUMAN ---------- */
.aihuman { background: var(--bg-primary); }
.aihuman-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.aihuman-card {
  padding: var(--space-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-default);
}
.aihuman-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-gold); }
.aihuman-icon { width: 48px; height: 48px; margin-bottom: var(--space-sm); }
.aihuman-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: .75rem; }
.aihuman-card p { color: var(--text-secondary); }

/* ---------- PRICING ---------- */
.pricing { background: var(--bg-secondary); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
  align-items: stretch;
}
.pricing-card {
  position: relative;
  padding: var(--space-md);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex; flex-direction: column;
  transition: transform var(--transition-default);
}
.pricing-card:hover { transform: translateY(-6px); }
.pricing-featured {
  background: var(--bg-tertiary);
  transform: scale(1.02);
  box-shadow: var(--shadow-gold);
  z-index: 1;
}
.pricing-featured::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold-deep), var(--gold-primary));
  z-index: -1;
}
.featured-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold-primary);
  color: #000;
  padding: .375rem 1rem;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.tier-name { font-size: 1.375rem; font-weight: 700; margin-bottom: .5rem; letter-spacing: -0.01em; }
.tier-tagline { color: var(--gold-primary); font-size: 1rem; margin-bottom: 1.25rem; }
.tier-price { display: flex; align-items: baseline; gap: .5rem; margin-bottom: .5rem; }
.price-num { font-size: 3rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.03em; }
.price-per { color: var(--text-secondary); font-size: 1rem; }
.price-note { color: var(--text-muted); font-size: .8125rem; margin-bottom: 1rem; }
.tier-best {
  color: var(--text-secondary);
  font-size: .875rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.25rem;
}
.tier-features { flex: 1; margin-bottom: var(--space-md); }
.tier-features li {
  padding: .5rem 0 .5rem 1.5rem;
  position: relative;
  font-size: .9375rem;
  color: var(--text-secondary);
  line-height: 1.4;
}
.tier-features li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold-primary);
  font-weight: 700;
}
.tier-features li strong { color: var(--gold-primary); font-weight: 600; }
.tier-features li:has(strong)::before { content: ''; }
.guarantee-bar {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(212,175,55,0.02));
  display: flex; gap: 1rem; align-items: center;
}
.guarantee-icon { flex-shrink: 0; width: 48px; height: 48px; }
.guarantee-bar strong { color: var(--gold-primary); }

/* ---------- ROI ---------- */
.roi { background: var(--bg-primary); }
.roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  align-items: start;
}
.roi-sliders {
  padding: var(--space-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}
.roi-slider { margin-bottom: var(--space-md); }
.roi-slider:last-child { margin-bottom: 0; }
.roi-slider label {
  display: block;
  color: var(--text-secondary);
  margin-bottom: .75rem;
  font-size: .9375rem;
  font-weight: 500;
}
.roi-slider label span { color: var(--gold-primary); font-weight: 700; margin-left: .5rem; }
.roi-slider input[type=range] {
  width: 100%;
  height: 4px;
  background: var(--bg-tertiary);
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
  outline: none;
}
.roi-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold-primary);
  cursor: pointer;
  box-shadow: 0 0 12px rgba(212,175,55,0.5);
  border: 2px solid var(--bg-primary);
}
.roi-slider input[type=range]::-moz-range-thumb {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold-primary);
  cursor: pointer;
  border: 2px solid var(--bg-primary);
}
.roi-results { display: grid; gap: var(--space-sm); }
.roi-card { padding: var(--space-md); border-radius: var(--radius-md); border: 1px solid var(--border-subtle); }
.roi-exposure { background: linear-gradient(135deg, rgba(153,27,27,0.15), rgba(180,83,9,0.1)); border-color: rgba(239,68,68,0.3); }
.roi-eo { background: linear-gradient(135deg, rgba(4,120,87,0.15), rgba(16,185,129,0.05)); border-color: rgba(16,185,129,0.3); }
.roi-return { background: linear-gradient(135deg, rgba(212,175,55,0.2), rgba(212,175,55,0.05)); border-color: var(--border-strong); }
.roi-card-label {
  color: var(--text-secondary);
  font-size: .8125rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: .5rem;
}
.roi-card-val { font-size: 2rem; font-weight: 800; letter-spacing: -0.02em; }
.roi-exposure .roi-card-val { color: #F87171; }
.roi-eo .roi-card-val { color: #10B981; }
.roi-return .roi-card-val { color: var(--gold-primary); }
.roi-cta { text-align: center; margin-top: var(--space-lg); }

/* ---------- ROADMAP ---------- */
.roadmap { background: var(--bg-secondary); }
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}
.roadmap-card {
  padding: var(--space-md);
  background: var(--bg-tertiary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-default);
}
.roadmap-card:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.roadmap-badge {
  display: inline-block;
  padding: .25rem .75rem;
  background: var(--gold-glow);
  border: 1px solid var(--border-default);
  border-radius: 999px;
  color: var(--gold-primary);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.roadmap-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: .75rem; }
.roadmap-card p { font-size: .9375rem; color: var(--text-secondary); line-height: 1.5; }
.roadmap-foot { text-align: center; margin-top: var(--space-lg); font-size: 1.25rem; }

/* ---------- WHY ---------- */
.why { background: var(--bg-primary); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-lg);
}
.why-card {
  padding: var(--space-md);
  background: var(--bg-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all var(--transition-default);
}
.why-card:hover { border-color: var(--border-strong); transform: translateY(-4px); box-shadow: var(--shadow-medium); }
.why-icon { font-size: 2.5rem; margin-bottom: 1rem; filter: drop-shadow(0 4px 12px rgba(212,175,55,0.2)); }
.why-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: .75rem; line-height: 1.3; }
.why-card p { color: var(--text-secondary); font-size: .9375rem; line-height: 1.6; }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-secondary); }
.faq-list { max-width: 880px; margin: var(--space-lg) auto 0; }
.faq-item { border-bottom: 1px solid var(--border-subtle); }
.faq-q {
  width: 100%;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
  transition: color var(--transition-fast);
}
.faq-q:hover { color: var(--gold-primary); }
.faq-chev {
  flex-shrink: 0;
  color: var(--gold-primary);
  font-size: 1.75rem;
  font-weight: 400;
  transition: transform var(--transition-default);
  line-height: 1;
}
.faq-item.open .faq-chev { transform: rotate(90deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-default) var(--ease-smooth), padding var(--transition-default);
}
.faq-item.open .faq-a { max-height: 600px; padding-bottom: 1.5rem; }
.faq-a p { color: var(--text-secondary); line-height: 1.7; }

/* ---------- FINAL CTA ---------- */
.final-cta {
  text-align: center;
  padding: var(--space-2xl) 0;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.12) 0%, var(--bg-primary) 70%);
  position: relative;
  overflow: hidden;
}
.final-headline {
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 1;
  margin-bottom: var(--space-md);
  letter-spacing: -0.03em;
}
.final-subhead {
  font-size: 1.25rem;
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto var(--space-lg);
}
.founder-quote {
  max-width: 720px;
  margin: var(--space-xl) auto var(--space-md);
  padding: var(--space-md);
  border-left: 3px solid var(--gold-primary);
  text-align: left;
}
.founder-quote em {
  font-size: 1.25rem;
  color: var(--text-primary);
  line-height: 1.5;
  display: block;
  margin-bottom: 1rem;
}
.founder-quote cite { color: var(--gold-primary); font-style: normal; font-size: .9375rem; font-weight: 600; }
.final-foot { color: var(--text-muted); font-size: .875rem; margin-top: var(--space-md); }

/* ---------- FOOTER ---------- */
.footer {
  background: #06060A;
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-lg) 0 var(--space-md);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.footer-brand p { color: var(--text-secondary); font-size: .9375rem; margin-top: 1rem; max-width: 280px; }
.footer-col h4 {
  font-size: .8125rem;
  color: var(--gold-primary);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  color: var(--text-secondary);
  padding: .375rem 0;
  font-size: .9375rem;
  transition: color var(--transition-fast);
}
.footer-col a:hover { color: var(--gold-primary); }
.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
  text-align: center;
  color: var(--text-muted);
  font-size: .8125rem;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .scenario-grid, .how-grid, .aihuman-grid, .pricing-grid { grid-template-columns: 1fr 1fr; }
  .roadmap-grid { grid-template-columns: 1fr 1fr; }
  .pricing-featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .globe-grid { grid-template-columns: 1fr; }
  .roi-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .trust-divider { display: none; }
}

@media (max-width: 768px) {
  section { padding: var(--space-lg) 0; }
  .nav-hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(10,10,15,0.98);
    backdrop-filter: blur(20px);
    padding: var(--space-md);
    gap: var(--space-sm);
    transform: translateY(-120%);
    transition: transform var(--transition-default);
    border-bottom: 1px solid var(--border-default);
  }
  .nav-links.open { transform: translateY(0); }
  .scenario-grid, .how-grid, .aihuman-grid, .pricing-grid, .roadmap-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; }
  #globe-viz { display: none; }
  .globe-wrap { min-height: auto; }
  .globe-mobile-fallback { display: block; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .btn { width: 100%; }
  .founder-quote { margin-left: 1rem; margin-right: 1rem; }
  .pricing-featured { transform: none; }
  .hero-subhead { font-size: 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .price-num { font-size: 2.25rem; }
  .section-headline { font-size: 1.75rem; }
}

/* ============================================
   FIX 1: WHITE FORM CARD (Tally embed)
   ============================================ */
.form-card-white {
  background: #FFFFFF;
  color: #0A0A0F;
  border-radius: 16px;
  padding: 48px 40px;
  max-width: 720px;
  margin: 48px auto 0;
  box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15), 0 0 0 1px rgba(212, 175, 55, 0.2);
}
.form-card-white iframe {
  background: #FFFFFF !important;
  border: none;
  width: 100%;
  min-height: 600px;
}
@media (max-width: 640px) {
  .form-card-white { padding: 32px 24px; }
}

/* ============================================
   FIX 2: NAV-CTA ACTIVE STATE (inverted: black bg, gold text)
   ============================================ */
.nav-cta.active {
  background: #0A0A0F;
  color: var(--gold-primary);
  border: 1px solid var(--gold-primary);
  box-shadow: 0 0 0 1px var(--gold-primary), 0 0 16px rgba(212, 175, 55, 0.4);
}
.nav-cta.active:hover {
  background: var(--gold-primary);
  color: #0A0A0F;
}

/* ============================================
   UPGRADE A: Aurora glow behind hero
   ============================================ */
.hero { position: relative; }
.hero::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.18) 0%, rgba(212, 175, 55, 0.08) 30%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  filter: blur(40px);
  animation: aurora-drift 12s ease-in-out infinite;
}
@keyframes aurora-drift {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.7; }
  50%     { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}
.hero-content { position: relative; z-index: 2; }
.hero-video, .hero-overlay { z-index: 0; }

/* ============================================
   UPGRADE B: Generous section spacing (Linear-style breathing room)
   ============================================ */
.trust-bar { padding: 80px 0; }
.problem,
.globe-section,
.how,
.aihuman,
.pricing,
.roi,
.roadmap,
.why,
.faq,
.final-cta { padding: 160px 0; }
.c12-section { padding: 140px 0; }
@media (max-width: 768px) {
  .problem,
  .globe-section,
  .how,
  .aihuman,
  .pricing,
  .roi,
  .roadmap,
  .why,
  .faq,
  .final-cta { padding: 80px 0; }
  .c12-section { padding: 72px 0; }
}

/* ============================================
   UPGRADE C: Card hover lift (Linear-style 3D feel)
   ============================================ */
.pricing-card {
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.4s ease;
  transform-style: preserve-3d;
  will-change: transform;
}
.pricing-card:hover {
  transform: translateY(-8px) rotateX(2deg);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(212, 175, 55, 0.4), 0 0 60px rgba(212, 175, 55, 0.15);
}
.pricing-card.pricing-featured { transform: translateY(-12px); }
.pricing-card.pricing-featured:hover { transform: translateY(-20px) rotateX(2deg); }

.why-card,
.how-step,
.scenario-card,
.aihuman-card,
.roadmap-card {
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.why-card:hover,
.how-step:hover,
.scenario-card:hover,
.aihuman-card:hover,
.roadmap-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.08);
}

/* ============================================
   UPGRADE D: Refined button hover states
   ============================================ */
.btn-primary {
  transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.35), 0 0 0 1px rgba(212, 175, 55, 0.6);
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  transition: transform 0.25s cubic-bezier(0.2, 0.9, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn-outline:hover {
  transform: translateY(-2px);
  background: rgba(212, 175, 55, 0.08);
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.15);
}

/* ============================================
   APRIL 16 NIGHT BUILD — Roadmap v2, scenario stat, gov video section
   ============================================ */

/* 4th scenario card — stat-only variant */
.scenario-stat {
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  font-size: var(--text-small);
  line-height: 1.6;
}
.scenario-stat em { font-size: 1.5rem; margin-right: .4rem; }

/* Roadmap v2 cards */
.roadmap-year {
  display: inline-block;
  font-size: .75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-primary);
  padding: .35rem .75rem;
  border: 1px solid var(--border-default);
  border-radius: 999px;
  margin-bottom: var(--space-sm);
}
.roadmap-status {
  display: inline-block;
  margin-top: var(--space-sm);
  font-size: .8125rem;
  color: var(--text-muted);
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}
.roadmap-status.active {
  color: var(--success);
  background: rgba(4, 120, 87, 0.12);
  border: 1px solid rgba(4, 120, 87, 0.35);
}
.roadmap-card.featured {
  border-color: var(--gold-primary);
  box-shadow: 0 0 0 1px var(--gold-primary), 0 0 80px rgba(212, 175, 55, 0.18), 0 24px 60px rgba(0,0,0,0.4);
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(212,175,55,0.04), rgba(20,20,28,1));
}
.roadmap-card.featured:hover {
  transform: translateY(-14px);
}
.roadmap-card.featured .roadmap-year {
  background: var(--gold-primary);
  color: #0A0A0F;
  border-color: var(--gold-primary);
}
.roadmap-footer {
  text-align: center;
  margin-top: var(--space-lg);
  font-size: 1.0625rem;
  color: var(--text-secondary);
}

/* Bill C-12 Government Authority section with video bg */
.c12-gov {
  position: relative;
  padding: var(--space-xl) 0;
  overflow: hidden;
  isolation: isolate;
}
.c12-gov-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  opacity: 0.35;
}
.c12-gov-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,15,0.75) 0%, rgba(10,10,15,0.88) 50%, rgba(10,10,15,0.75) 100%);
  z-index: -1;
}
.c12-gov-content { position: relative; z-index: 1; }
.c12-gov-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}
.c12-gov-stat {
  text-align: center;
  padding: var(--space-md);
  background: rgba(20,20,28,0.7);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  backdrop-filter: blur(6px);
}
.c12-gov-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  color: var(--gold-primary);
  line-height: 1;
  margin-bottom: .5rem;
}
.c12-gov-lbl {
  color: var(--text-secondary);
  font-size: var(--text-small);
  line-height: 1.4;
}
.c12-gov-recent {
  background: rgba(20,20,28,0.85);
  border: 1px solid var(--border-default);
  border-left: 3px solid var(--gold-primary);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  backdrop-filter: blur(6px);
}
.c12-gov-recent-label {
  font-size: .75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: var(--space-sm);
}
.c12-gov-recent ul { list-style: none; padding: 0; margin: 0; }
.c12-gov-recent li {
  padding: .5rem 0;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-primary);
}
.c12-gov-recent li:last-child { border-bottom: none; }
.c12-gov-recent li strong { color: var(--gold-primary); }
.c12-gov-recent-note {
  margin-top: var(--space-sm);
  color: var(--text-secondary);
  font-size: var(--text-small);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .c12-gov-stats { grid-template-columns: 1fr; gap: var(--space-sm); }
}
