/* ===== 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: 40px;
  font-weight: 300;
}

.hero-image-wrap {
  max-width: 760px;
  margin-bottom: 48px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

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

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

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

.problem-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}

.problem-body strong { color: var(--navy); font-weight: 600; }

.problem-right {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 60px;
}

.problem-stat-card {
  padding: 32px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.problem-stat-card + .problem-stat-card { margin-top: 16px; }

.problem-stat-num {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--amber);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  line-height: 1;
}

.problem-stat-label {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.5;
}

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

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

.pricing-header {
  max-width: 600px;
  margin-bottom: 64px;
}

.pricing-sub {
  font-size: 18px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-top: 24px;
  margin-bottom: 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 40px;
  position: relative;
}

.pricing-card--featured {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.pricing-price {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--navy);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-per {
  font-size: 18px;
  color: var(--text-light);
  font-family: var(--sans);
  font-weight: 400;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  margin: 16px 0 28px;
}

.pricing-features {
  list-style: none;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-features li {
  font-size: 14px;
  color: var(--text-mid);
  padding-left: 20px;
  position: relative;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-size: 12px;
  top: 1px;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  background: var(--cream);
  color: var(--navy);
  border: 1px solid var(--border);
  transition: all 0.2s;
}

.pricing-cta:hover { background: var(--border); }

.pricing-cta--primary {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

.pricing-cta--primary:hover { background: #1e293b; }

.pricing-footnote {
  text-align: center;
  font-size: 14px;
  color: var(--text-light);
  margin-top: 32px;
}

/* ===== CTA FORM ===== */
.cta-form {
  max-width: 500px;
  margin: 48px auto 0;
}

.cta-form-row {
  display: flex;
  gap: 12px;
}

.cta-input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
  font-family: var(--sans);
  color: var(--text-dark);
  background: white;
  outline: none;
  transition: border-color 0.2s;
}

.cta-input:focus { border-color: var(--amber); }

.cta-input::placeholder { color: var(--text-light); }

.cta-button {
  padding: 14px 28px;
  background: var(--navy);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--sans);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.cta-button:hover { background: #1e293b; }
.cta-button:disabled { opacity: 0.6; cursor: not-allowed; }

.cta-msg {
  font-size: 13px;
  margin-top: 12px;
  text-align: center;
  min-height: 18px;
}

.cta-msg.success { color: #16a34a; }
.cta-msg.error { color: #dc2626; }

/* ===== 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; }
  .problem { padding: 64px 20px; }
  .problem-inner { grid-template-columns: 1fr; gap: 48px; }
  .problem-right { padding-top: 0; }
  .pricing { padding: 64px 20px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card--featured { margin-top: 24px; }
  .cta-form-row { flex-direction: column; }
  .cta-button { width: 100%; }
}