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

/* ===== DESIGN TOKENS ===== */
:root {
  --bg: #0a0f0a;
  --bg-2: #0f1a0f;
  --surface: #141f14;
  --surface-2: #1a2a1a;
  --border: #253525;
  --fg: #d8f0d8;
  --fg-muted: #7a9e7a;
  --accent: #5cb85c;
  --accent-dim: #3d7a3d;
  --accent-glow: rgba(92, 184, 92, 0.15);
  --danger: #e05252;
  --warning: #e0a852;
  --white: #f4fbf4;
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===== NAV ===== */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-brand { display: flex; align-items: center; gap: 10px; }
.nav-logo {
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding: 4px 8px;
  border-radius: 4px;
}
.nav-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* ===== HERO ===== */
.hero {
  padding: 96px 48px 80px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  max-width: 460px;
  line-height: 1.65;
  margin-bottom: 40px;
}
.hero-pricing {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hero-price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-price {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
}
.hero-price-label {
  font-size: 13px;
  color: var(--fg-muted);
}
.hero-price-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}
.hero-visual { }
.hero-img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  object-fit: cover;
}

/* ===== SHARED SECTION STYLES ===== */
.section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 32px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 96px 48px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.hiw-inner { max-width: 1200px; margin: 0 auto; }
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.hiw-step {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
  position: relative;
}
.hiw-step:last-child { border-right: none; }
.hiw-step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: var(--surface-2);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  line-height: 1;
  -webkit-text-stroke: 1px var(--border);
}
.hiw-step-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.hiw-step-body {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== REPORT PREVIEW ===== */
.report-preview {
  padding: 96px 48px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.rp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.rp-img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid var(--border);
  object-fit: cover;
}
.rp-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
}
.rp-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.rp-check {
  color: var(--accent);
  font-weight: 700;
  margin-right: 10px;
}

/* ===== PRICING ===== */
.pricing {
  padding: 96px 48px;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border);
}
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
}
.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px;
  position: relative;
}
.pricing-card-featured {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
}
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}
.pricing-tier {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.pricing-amount {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.pricing-per {
  font-size: 14px;
  color: var(--fg-muted);
  margin-bottom: 32px;
}
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li {
  font-size: 14px;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.pricing-card-featured .pricing-features li::before { background: var(--accent); }
.pricing-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--fg-muted);
  max-width: 400px;
}

/* ===== CLOSING ===== */
.closing {
  padding: 96px 48px;
  background: var(--bg);
  text-align: center;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px 48px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.footer-logo {
  background: var(--accent);
  color: var(--bg);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.05em;
  padding: 3px 7px;
  border-radius: 3px;
}
.footer-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.footer-copy {
  font-size: 12px;
  color: var(--fg-muted);
  opacity: 0.5;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav { padding: 16px 24px; }
  .nav-tagline { display: none; }
  .hero { padding: 64px 24px 48px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-img { display: none; }
  .hiw-steps { grid-template-columns: 1fr; }
  .hiw-step { border-right: none; border-bottom: 1px solid var(--border); padding: 32px 0; }
  .hiw-step:last-child { border-bottom: none; }
  .rp-inner { grid-template-columns: 1fr; gap: 40px; }
  .rp-img { order: 2; }
  .pricing-cards { grid-template-columns: 1fr; }
  .how-it-works, .report-preview, .pricing, .closing { padding: 64px 24px; }
  .footer { padding: 32px 24px; }
}
@media (max-width: 480px) {
  .hero-pricing { gap: 20px; }
  .hero-price { font-size: 32px; }
}