/* ===== BASE ===== */
:root {
  --navy: #0f172a;
  --navy-mid: #1e293b;
  --amber: #f59e0b;
  --amber-light: #fcd34d;
  --cream: #faf6f0;
  --warm-white: #fdfcfa;
  --text-dark: #0f172a;
  --text-mid: #475569;
  --text-light: #94a3b8;
  --border: #e2e0dc;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 252, 250, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  height: 60px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-tagline {
  font-size: 12px;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 3px 10px;
  border: 1px solid var(--border);
  border-radius: 100px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 100px 40px 0;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(250, 246, 240, 0) 0%, rgba(250, 246, 240, 1) 60%),
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(15, 23, 42, 0.03) 59px, rgba(15, 23, 42, 0.03) 60px),
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(15, 23, 42, 0.03) 59px, rgba(15, 23, 42, 0.03) 60px);
  background-size: 100% 100%, 60px 60px, 60px 60px;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.hero-eyebrow {
  margin-bottom: 28px;
}

.eyebrow-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 5px 14px;
  border-radius: 100px;
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(52px, 7vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 32px;
  max-width: 800px;
}

.hero-sub {
  font-size: 20px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-meta-row {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  padding-top: 40px;
  max-width: 560px;
}

.meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px 0 0;
}

.meta-item:first-child { padding-left: 0; }

.meta-num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.03em;
}

.meta-label {
  font-size: 11px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.meta-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
  margin: 0 32px 0 0;
  flex-shrink: 0;
}

/* TICKER */
.hero-ticker {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--cream);
  padding: 14px 40px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
}

.ticker-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-scroll {
  display: flex;
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
}

.ticker-scroll span {
  font-size: 12px;
  color: var(--text-mid);
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  display: inline-block;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== HOW ===== */
.how {
  padding: 100px 40px;
  background: var(--cream);
}

.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}

.section-headline {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin-bottom: 64px;
  max-width: 640px;
}

.how-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0;
}

.step {
  padding: 40px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.step-num {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--navy);
  opacity: 0.15;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1;
}

.step-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.step-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.65;
}

.step-connector {
  display: flex;
  align-items: center;
  padding: 0 24px;
  padding-top: 60px;
  color: var(--amber);
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 40px;
  background: var(--navy);
  color: white;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.features .section-label { color: var(--amber-light); }

.features .section-headline {
  color: white;
  max-width: 560px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
}

.feature-card {
  padding: 48px;
  background: var(--navy);
  transition: background 0.2s;
}

.feature-card:hover { background: var(--navy-mid); }

.feature-icon {
  color: var(--amber);
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--serif);
  font-size: 22px;
  color: white;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.feature-card p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

/* ===== OUTCOMES ===== */
.outcomes {
  padding: 100px 40px;
  background: var(--warm-white);
}

.outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.outcomes-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.7;
  margin: 32px 0 48px;
}

.stat-row {
  display: flex;
  gap: 40px;
}

.stat-val {
  display: block;
  font-family: var(--serif);
  font-size: 40px;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}

.stat-desc {
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
  max-width: 140px;
}

.outcomes-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 80px;
}

.comparison-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.comp-header {
  padding: 14px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.comparison-card:first-child .comp-header { background: #fef2f2; color: #b91c1c; }
.comparison-card:last-child .comp-header { background: #f0fdf4; color: #15803d; }

.comp-list {
  list-style: none;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comp-list li {
  font-size: 14px;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.comp-list--fail li::before { content: '✗'; position: absolute; left: 0; color: #dc2626; font-size: 12px; top: 2px; }
.comp-list--win li::before { content: '✓'; position: absolute; left: 0; color: #16a34a; font-size: 12px; top: 2px; }

/* ===== CLOSING ===== */
.closing {
  padding: 120px 40px;
  background: var(--cream);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.closing-bg {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at 70% 50%, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.closing-content {
  position: relative;
  text-align: center;
  padding: 80px 0;
}

.closing-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 32px;
}

.closing-sub {
  font-size: 18px;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 40px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

.footer-desc {
  font-size: 13px;
  color: var(--text-light);
}

.footer-note {
  font-size: 13px;
  color: var(--text-light);
  max-width: 280px;
  text-align: right;
  line-height: 1.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 0 20px; }
  .hero { padding: 64px 20px 0; }
  .hero-headline { font-size: 44px; }
  .hero-sub { font-size: 17px; }
  .hero-meta-row { flex-direction: column; gap: 20px; }
  .meta-divider { display: none; }
  .meta-item { padding: 0; }
  .how { padding: 64px 20px; }
  .how-steps { grid-template-columns: 1fr; gap: 16px; }
  .step-connector { display: none; }
  .features { padding: 64px 20px; }
  .feature-grid { grid-template-columns: 1fr; }
  .outcomes { padding: 64px 20px; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 48px; }
  .outcomes-right { padding-top: 0; }
  .closing { padding: 80px 20px; }
  .footer { padding: 32px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-note { text-align: left; max-width: none; }
  .stat-row { flex-direction: column; gap: 24px; }
}