:root {
  --bg: #0D1B2A;
  --bg-2: #0F2137;
  --surface: #152238;
  --border: #1E3352;
  --accent: #F5A623;
  --accent-dim: #C47D0A;
  --text: #F8F4EF;
  --text-muted: #8FA8C0;
  --text-dim: #5C7A9A;
  --red: #E05C5C;
  --red-bg: rgba(224, 92, 92, 0.12);
  --yellow: #E0B84C;
  --yellow-bg: rgba(224, 184, 76, 0.12);
  --green: #4CAF7D;
  --green-bg: rgba(76, 175, 125, 0.12);
  --radius: 12px;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'DM Sans', system-ui, sans-serif;
}

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

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

/* ── Navigation ── */
.nav {
  padding: 24px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--text);
}
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  padding: 80px 48px 96px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-kicker {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 48px;
}
.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--accent);
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  max-width: 280px;
}
.stat-label em { font-style: normal; color: var(--text); }

/* ── Phone Frame ── */
.phone-frame {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 36px;
  padding: 20px;
  max-width: 320px;
  margin-left: auto;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,166,35,0.1);
}
.phone-screen {
  background: #0A1628;
  border-radius: 24px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.screen-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.screen-brand {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--text);
}
.screen-badge {
  background: var(--green-bg);
  color: var(--green);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 20px;
  letter-spacing: 0.05em;
}
.screen-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.screen-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.health-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.health-label { font-size: 13px; color: var(--text); font-weight: 500; }
.health-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.health-dot.red { background: var(--red); box-shadow: 0 0 8px rgba(224,92,92,0.5); }
.health-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
}
.health-fill { height: 100%; border-radius: 2px; }
.health-fill.red { width: 34%; background: var(--red); }
.health-reason { font-size: 11px; color: var(--red); }
.screen-script {
  font-size: 12px;
  color: var(--text);
  background: rgba(245,166,35,0.1);
  border-left: 2px solid var(--accent);
  padding: 8px 10px;
  border-radius: 0 6px 6px 0;
  line-height: 1.5;
}
.screen-why { font-size: 10px; color: var(--text-muted); }
.screen-divider {
  height: 1px;
  background: var(--border);
}
.objection {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--red-bg);
  padding: 6px 10px;
  border-radius: 6px;
}
.obj-icon {
  background: var(--red);
  color: white;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}
.obj-text { font-size: 11px; color: var(--text-muted); }
.screen-footer {
  font-size: 9px;
  color: var(--text-dim);
  text-align: center;
  margin-top: 4px;
}

/* ── Shared section styles ── */
.section-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 56px;
}

/* ── How It Works ── */
.how-it-works {
  padding: 96px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.step-number {
  font-family: var(--font-serif);
  font-size: 56px;
  color: var(--border);
  line-height: 1;
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}
.step p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* ── Features ── */
.features {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: rgba(245,166,35,0.3); }
.feature-icon {
  width: 48px; height: 48px;
  background: rgba(245,166,35,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}
.feature-card p { font-size: 15px; color: var(--text-muted); line-height: 1.65; }

/* ── Deal Health ── */
.deal-health {
  padding: 96px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.deal-health-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.deal-health-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 20px;
}
.deal-health-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.deal-signals {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.signal {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}
.signal-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.signal-dot.red { background: var(--red); }
.signal-dot.yellow { background: var(--yellow); }
.signal-dot.green { background: var(--green); }

/* Signal card */
.signal-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.signal-card.red { border-color: rgba(224,92,92,0.3); }
.signal-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.signal-card-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  background: var(--red-bg);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.signal-card-score {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--red);
}
.signal-card-title { font-size: 16px; font-weight: 600; color: var(--text); }
.signal-card-reason { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.signal-card-action {
  font-size: 13px;
  color: var(--accent);
  background: rgba(245,166,35,0.08);
  padding: 10px 14px;
  border-radius: 8px;
  border-left: 2px solid var(--accent);
}

/* ── Manifesto ── */
.manifesto {
  padding: 96px 48px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.5;
  color: var(--text-muted);
  max-width: 760px;
  margin: 0 auto;
  font-style: normal;
}

/* ── Closing ── */
.closing {
  padding: 96px 48px;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.pricing-note {
  margin-top: 48px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}
.price {
  font-family: var(--font-serif);
  font-size: 56px;
  color: var(--text);
}
.per {
  font-size: 16px;
  color: var(--text-muted);
}
.closing-proof {
  font-size: 14px;
  color: var(--text-dim);
  margin-top: 12px;
}

/* ── Footer ── */
.footer {
  padding: 64px 48px 32px;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 28px;
  display: block;
  margin-bottom: 16px;
}
.footer-desc { font-size: 14px; color: var(--text-dim); line-height: 1.65; max-width: 320px; }
.footer-link-group {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 14px; color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.footer-link:hover { color: var(--text); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 13px;
  color: var(--text-dim);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }
  .hero { padding: 48px 24px 64px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .phone-frame { margin: 0 auto; max-width: 280px; }
  .hero-stats { gap: 16px; }
  .stat-number { font-size: 28px; }
  .how-it-works { padding: 64px 24px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .features { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .deal-health { padding: 64px 24px; }
  .deal-health-inner { grid-template-columns: 1fr; gap: 48px; }
  .manifesto { padding: 64px 24px; }
  .closing { padding: 64px 24px; }
  .footer { padding: 48px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}