/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #0c0c0e;
  --bg-2: #111115;
  --surface: #16161a;
  --border: #222228;
  --orange: #FF4500;
  --orange-dim: rgba(255,69,0,0.12);
  --text: #f0ece8;
  --text-2: #9e9993;
  --text-3: #6b6762;
  --white: #ffffff;
}
html { font-size: 16px; scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; font-weight: 400; line-height: 1.6; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; }

/* ─── Nav ─── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px;
  background: rgba(12,12,14,0.8);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 1.05rem; font-weight: 600; letter-spacing: -0.02em; color: var(--white); }
.nav-links { display: flex; gap: 36px; font-size: 0.875rem; color: var(--text-2); font-weight: 400; }
.nav-links span { cursor: pointer; transition: color 0.2s; }
.nav-links span:hover { color: var(--text); }

/* ─── Hero ─── */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-glow {
  position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,69,0,0.08) 0%, transparent 65%);
  border-radius: 50%;
}
.hero-content { position: relative; max-width: 820px; }
.hero-eyebrow {
  display: inline-block; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 28px;
  padding: 6px 14px; border: 1px solid rgba(255,69,0,0.3);
  border-radius: 3px;
}
.hero-headline {
  font-size: clamp(3.5rem, 7vw, 6.5rem); font-weight: 900; line-height: 1.0;
  letter-spacing: -0.03em; color: var(--white); margin-bottom: 32px;
}
.hero-headline em { font-style: normal; color: var(--orange); }
.hero-sub {
  font-size: 1.25rem; color: var(--text-2); max-width: 560px; line-height: 1.65;
  font-weight: 300;
}

/* ─── Stats ─── */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
}
.stats-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0; padding: 40px 48px; max-width: 1100px; margin: 0 auto;
}
.stat { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 0 48px; flex: 1; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 700; color: var(--orange); }
.stat-label { font-size: 0.8rem; color: var(--text-2); text-align: center; line-height: 1.4; }
.stat-divider { width: 1px; height: 60px; background: var(--border); }

/* ─── Features ─── */
.features { padding: 120px 48px; display: flex; flex-direction: column; gap: 100px; }
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feature-2 { direction: rtl; }
.feature-2 .feature-text { direction: ltr; }
.feature-2 .feature-visual { direction: ltr; }
.feature-text {}
.feature-icon { margin-bottom: 20px; }
.feature-text h2 { font-size: 2rem; font-weight: 700; color: var(--white); margin-bottom: 16px; line-height: 1.2; letter-spacing: -0.02em; }
.feature-text p { font-size: 1.05rem; color: var(--text-2); line-height: 1.7; font-weight: 300; }

/* Feature Visual Cards */
.feature-visual { display: flex; justify-content: center; }
.fv-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 12px; padding: 24px; width: 100%; max-width: 380px;
}
.fv-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-3); margin-bottom: 16px; }
.fv-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 0.875rem; color: var(--text-2); }
.fv-row:last-of-type { border-bottom: none; }
.fv-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.fv-complete { margin-top: 14px; font-size: 0.8rem; font-weight: 600; color: var(--orange); text-align: center; padding: 8px; border: 1px solid rgba(255,69,0,0.25); border-radius: 6px; }
.fv-email-subject { font-size: 0.8rem; font-weight: 600; color: var(--text-2); margin-bottom: 12px; }
.fv-email { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; border-left: 2px solid var(--orange); padding-left: 16px; }

/* Sequence card */
.seq-row { display: grid; grid-template-columns: 48px 100px 1fr; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 0.85rem; }
.seq-row:last-child { border-bottom: none; }
.seq-step { font-weight: 600; color: var(--text-3); }
.seq-type { color: var(--text-2); }
.seq-status { font-weight: 500; text-align: right; }
.seq-status.sent { color: var(--text-3); }
.seq-status.active { color: var(--orange); }
.seq-status.pending { color: var(--text-3); }

/* ─── How It Works ─── */
.howitworks { padding: 100px 48px; border-top: 1px solid var(--border); }
.section-title { font-size: clamp(1.75rem, 3vw, 2.75rem); font-weight: 700; color: var(--white); margin-bottom: 64px; letter-spacing: -0.025em; line-height: 1.2; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.step {}
.step-num { font-family: 'Playfair Display', serif; font-size: 3.5rem; font-weight: 800; color: var(--orange); opacity: 0.3; line-height: 1; margin-bottom: 20px; }
.step h3 { font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 12px; }
.step p { font-size: 0.95rem; color: var(--text-2); line-height: 1.7; font-weight: 300; }

/* ─── Pricing ─── */
.pricing { padding: 100px 48px; border-top: 1px solid var(--border); background: var(--bg-2); }
.pricing-header { max-width: 600px; margin-bottom: 64px; }
.pricing-header p { font-size: 1.05rem; color: var(--text-2); line-height: 1.7; margin-top: 20px; font-weight: 300; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; }
.price-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 32px; position: relative; }
.price-card-featured { border-color: var(--orange); background: linear-gradient(180deg, rgba(255,69,0,0.06) 0%, var(--surface) 60%); }
.price-badge { position: absolute; top: -12px; left: 32px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--bg); background: var(--orange); padding: 4px 12px; border-radius: 20px; }
.price-tier { font-size: 1rem; font-weight: 600; color: var(--text-2); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.price-amount { font-family: 'Playfair Display', serif; font-size: 3rem; font-weight: 700; color: var(--white); margin-bottom: 24px; }
.price-period { font-size: 1rem; font-weight: 400; color: var(--text-3); }
.price-features { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.price-features li { font-size: 0.9rem; color: var(--text-2); padding-left: 20px; position: relative; }
.price-features li::before { content: '—'; position: absolute; left: 0; color: var(--orange); font-weight: 300; }

/* ─── Closing ─── */
.closing { padding: 120px 48px; border-top: 1px solid var(--border); }
.closing-content { max-width: 760px; }
.closing-quote { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.5vw, 2.2rem); font-weight: 700; color: var(--white); line-height: 1.3; letter-spacing: -0.02em; margin-bottom: 32px; font-style: italic; }
.closing-body { font-size: 1.1rem; color: var(--text-2); line-height: 1.8; font-weight: 300; max-width: 640px; }

/* ─── Footer ─── */
.footer { padding: 40px 48px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.footer-logo { display: flex; align-items: center; gap: 10px; font-size: 1rem; font-weight: 600; color: var(--white); }
.footer-tagline { font-size: 0.8rem; color: var(--text-3); }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 100px 24px 60px; }
  .hero-headline { font-size: 3rem; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-divider { width: 60px; height: 1px; }
  .feature { grid-template-columns: 1fr; gap: 40px; }
  .feature-2 { direction: ltr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .howitworks, .features, .pricing, .closing { padding: 80px 24px; }
  .footer { flex-direction: column; gap: 16px; padding: 32px 24px; }
  .nav-links { display: none; }
}
@media (max-width: 600px) {
  .hero-headline { font-size: 2.5rem; }
  .hero-sub { font-size: 1rem; }
  .stat-number { font-size: 2rem; }
}
