:root {
  --navy: #0D1B2A;
  --navy-mid: #152235;
  --navy-light: #1E3348;
  --amber: #E8A838;
  --amber-dim: #C48A1E;
  --cream: #F5F0E8;
  --slate: #8899AA;
  --white: #FFFFFF;
  --font-head: 'Crimson Pro', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAVBAR ── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 168, 56, 0.12);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--amber);
  letter-spacing: -0.5px;
}
.tagline {
  font-size: 12px;
  color: var(--slate);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ── HERO ── */
.hero {
  padding: 80px 40px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-lede {
  font-size: 17px;
  color: var(--slate);
  max-width: 480px;
  line-height: 1.7;
}

/* Transcript Widget */
.transcript-widget {
  background: var(--navy-mid);
  border: 1px solid rgba(232, 168, 56, 0.15);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,168,56,0.05);
}
.widget-header {
  background: var(--navy-light);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.widget-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.widget-dot.red { background: #FF5F57; }
.widget-dot.yellow { background: #FEBC2E; }
.widget-dot.green { background: #28C840; }
.widget-title {
  font-size: 11px;
  color: var(--slate);
  font-family: monospace;
  margin-left: 8px;
}
.widget-body { padding: 20px; }
.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 40px;
  margin-bottom: 20px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wave-bar {
  display: block;
  width: 3px;
  background: var(--amber);
  border-radius: 2px;
  opacity: 0.7;
}
.wave-bar:nth-child(odd)  { height: 60%; }
.wave-bar:nth-child(3n)   { height: 100%; }
.wave-bar:nth-child(4n)   { height: 40%; }
.wave-bar:nth-child(5n)   { height: 75%; }
.wave-bar:nth-child(7n)   { height: 50%; }

.transcript-lines { display: flex; flex-direction: column; gap: 10px; }
.t-line { display: flex; align-items: baseline; gap: 10px; }
.t-speaker {
  font-size: 10px;
  font-weight: 600;
  color: var(--amber);
  letter-spacing: 0.5px;
  white-space: nowrap;
  min-width: 100px;
}
.t-time {
  font-size: 10px;
  color: var(--slate);
  font-family: monospace;
}
.t-text {
  font-size: 13px;
  color: var(--cream);
  line-height: 1.5;
  font-style: italic;
  padding-left: 0;
}
.t-status {
  margin-top: 12px;
  font-size: 11px;
  color: #28C840;
  font-family: monospace;
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 700;
  color: var(--amber);
}
.stat-label {
  font-size: 12px;
  color: var(--slate);
  max-width: 180px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
  margin: 0 48px;
}

/* ── PROOF ── */
.proof {
  background: var(--navy-mid);
  border-top: 1px solid rgba(232,168,56,0.1);
  border-bottom: 1px solid rgba(232,168,56,0.1);
  padding: 64px 40px;
}
.proof-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.proof-headline {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}
.proof-body {
  font-size: 16px;
  color: var(--slate);
  line-height: 1.8;
  margin-bottom: 16px;
}
.proof-sources {
  font-size: 11px;
  color: rgba(136,153,170,0.5);
  font-style: italic;
}

/* ── FEATURES ── */
.features {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.features-header { margin-bottom: 56px; }
.section-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--amber);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.feature-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 32px;
  transition: border-color 0.2s;
}
.feature-card:hover {
  border-color: rgba(232, 168, 56, 0.25);
}
.feature-icon {
  margin-bottom: 20px;
}
.feature-title {
  font-family: var(--font-head);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.feature-desc {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.7;
}

/* ── PROCESS ── */
.process {
  padding: 80px 40px;
  background: var(--navy-mid);
  border-top: 1px solid rgba(232,168,56,0.1);
  border-bottom: 1px solid rgba(232,168,56,0.1);
}
.process-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.process-headline {
  font-family: var(--font-head);
  font-size: clamp(26px, 2.5vw, 36px);
  font-weight: 600;
  color: var(--white);
  text-align: center;
  margin-bottom: 56px;
  line-height: 1.2;
}
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.step {
  flex: 1;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 28px;
}
.step-number {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 300;
  color: var(--amber);
  opacity: 0.4;
  margin-bottom: 16px;
  line-height: 1;
}
.step-content h4 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.step-content p {
  font-size: 13px;
  color: var(--slate);
  line-height: 1.7;
}
.step-arrow {
  display: flex;
  align-items: center;
  padding-top: 40px;
  flex-shrink: 0;
}

/* ── CLOSING ── */
.closing {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-quote {
  font-family: var(--font-head);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.3;
  max-width: 900px;
  margin: 0 auto 32px;
}
.closing-sub {
  font-size: 15px;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ── FOOTER ── */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--amber);
}
.footer-tagline { font-size: 12px; color: var(--slate); }
.footer-legal { font-size: 12px; color: rgba(136,153,170,0.4); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-headline { font-size: 38px; }
  .features-grid { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); padding: 0; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 24px; }
  .stat-divider { width: 40px; height: 1px; margin: 0; }
  .navbar-inner { padding: 14px 20px; }
  .hero, .features, .closing { padding: 48px 20px; }
  .proof, .process { padding: 48px 20px; }
  .footer { padding: 24px 20px; }
  .footer-inner { flex-direction: column; gap: 12px; text-align: center; }
}