:root {
  --bg: #ffffff;
  --bg-alt: #f8f9fb;
  --bg-dark: #0b1225;
  --fg: #111827;
  --fg-muted: #6b7280;
  --fg-light: #9ca3af;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --border: #e5e7eb;
  --border-dark: #1e2a45;
  --card-bg: #ffffff;
}

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

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
}

/* NAVBAR */
.navbar {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.3px;
}

/* HERO */
.hero {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 100px 32px 80px;
  text-align: left;
  max-width: 1100px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
}
.hero-headline {
  font-size: clamp(44px, 7vw, 80px);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 28px;
  letter-spacing: -1px;
}
.hero-headline em {
  color: var(--accent);
  font-style: italic;
}
.hero-sub {
  font-size: 18px;
  color: #94a3b8;
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 48px;
}
.hero-ticker {
  border-top: 1px solid var(--border-dark);
  padding-top: 28px;
}
.ticker-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 14px;
  font-weight: 600;
}
.ticker-items {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.ticker-item {
  background: rgba(245,158,11,0.12);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid rgba(245,158,11,0.2);
}
.ticker-sep {
  color: #334155;
  font-size: 13px;
}

/* WHAT YOU MISS */
.miss-section {
  background: var(--bg-alt);
  padding: 100px 32px;
}
.miss-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.miss-stat {
  padding: 40px;
  background: var(--bg-dark);
  color: #ffffff;
  border-radius: 16px;
  text-align: center;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 16px;
}
.stat-desc {
  font-size: 16px;
  color: #94a3b8;
  line-height: 1.6;
}
.miss-headline {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--fg);
}
.miss-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.miss-cta {
  color: var(--fg);
  font-weight: 600;
  font-size: 18px;
  margin-top: 24px;
}

/* FEATURES */
.features {
  padding: 100px 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.features-header {
  text-align: center;
  margin-bottom: 64px;
}
.features-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--fg);
  max-width: 640px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.feature-card {
  background: var(--bg-alt);
  padding: 36px 32px;
  border-radius: 0;
}
.feature-icon {
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* HOW IT WORKS */
.howitworks {
  background: var(--bg-alt);
  padding: 100px 32px;
}
.hiw-header {
  max-width: 1100px;
  margin: 0 auto 64px;
  text-align: center;
}
.hiw-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 16px;
}
.hiw-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--fg);
}
.steps {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step {}
.step-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.25;
  margin-bottom: 20px;
}
.step-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.step-desc {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* SAMPLE REPORT */
.sample-report {
  padding: 100px 32px;
  background: var(--bg);
  text-align: center;
}
.report-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: #0f1a2e;
  border-radius: 16px;
  overflow: hidden;
  text-align: left;
  border: 1px solid #1e3050;
  box-shadow: 0 40px 80px rgba(0,0,0,0.15);
}
.report-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  background: #162032;
  border-bottom: 1px solid #1e3050;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}
.report-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.report-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  border-bottom: 1px solid #1e3050;
}
.report-from {
  font-size: 13px;
  color: #94a3b8;
}
.report-date {
  font-size: 12px;
  color: #4a6080;
}
.report-subject {
  padding: 16px 28px;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  border-bottom: 1px solid #1e3050;
  font-family: 'DM Sans', sans-serif;
}
.report-body {
  padding: 24px 28px;
}
.report-section {
  margin-bottom: 24px;
}
.report-section:last-child { margin-bottom: 0; }
.report-section-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #4a6080;
  margin-bottom: 12px;
}
.alert-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}
.price-dot { background: #f87171; }
.product-dot { background: #34d399; }
.promo-dot { background: var(--accent); }
.report-row {
  display: grid;
  grid-template-columns: 140px 1fr 160px;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #1e3050;
}
.report-row:last-child { border-bottom: none; }
.competitor {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
}
.change {
  font-size: 13px;
  color: #e2e8f0;
  font-weight: 500;
}
.price-drop { color: #f87171; }
.price-up { color: #34d399; }
.new-arrival { color: #60a5fa; }
.promo-change { color: var(--accent); }
.product {
  font-size: 12px;
  color: #4a6080;
  text-align: right;
}
.report-caption {
  margin-top: 36px;
  font-size: 16px;
  color: var(--fg-muted);
  font-style: italic;
  font-family: 'Playfair Display', serif;
}

/* CLOSING */
.closing {
  background: var(--bg-dark);
  color: #ffffff;
  padding: 100px 32px;
  text-align: center;
}
.closing-headline {
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto 28px;
}
.closing-body {
  font-size: 18px;
  color: #94a3b8;
  max-width: 520px;
  margin: 0 auto;
}

/* FOOTER */
footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  display: block;
  margin-bottom: 4px;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-links {
  font-size: 14px;
  color: var(--fg-muted);
  font-weight: 500;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero, .miss-section, .features, .howitworks, .sample-report, .closing {
    padding-left: 24px;
    padding-right: 24px;
  }
  .hero-headline { font-size: 40px; }
  .miss-inner { grid-template-columns: 1fr; gap: 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .report-row { grid-template-columns: 1fr; gap: 4px; }
  .product { text-align: left; }
}