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

:root {
  --bg: #faf8f5;
  --fg: #1a1a2e;
  --accent: #e85d4c;
  --accent-light: #fdf0ee;
  --gold: #d4a843;
  --gold-light: #faf6eb;
  --muted: #7a7a8c;
  --border: #e8e4de;
  --card-bg: #ffffff;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Outfit', system-ui, sans-serif;
}

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

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.3rem; }
p { color: var(--muted); max-width: 52ch; }
em { font-style: italic; font-weight: 400; }
strong { color: var(--fg); }

/* === NAV === */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: rgba(250, 248, 245, 0.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 1rem 2rem; display: flex; align-items: center; gap: 1.5rem; }
.nav-logo { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--fg); text-decoration: none; letter-spacing: -0.02em; }
.nav-tagline { font-size: 0.85rem; color: var(--muted); }

/* === SECTION SHARED === */
.section-inner { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; }
.section-label { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); display: block; margin-bottom: 1.2rem; }

/* === HERO === */
.hero { padding: 9rem 2rem 5rem; max-width: 1200px; margin: 0 auto; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.hero-eyebrow { margin-bottom: 1.5rem; }
.pill { display: inline-block; background: var(--accent-light); color: var(--accent); font-size: 0.8rem; font-weight: 600; padding: 0.4rem 0.9rem; border-radius: 100px; letter-spacing: 0.03em; }

.hero-headline { margin-bottom: 1.2rem; color: var(--fg); }
.hero-headline em { color: var(--accent); }
.hero-sub { font-size: 1.1rem; line-height: 1.7; margin-bottom: 2.5rem; max-width: 46ch; }

.hero-proof { display: flex; align-items: center; gap: 1.5rem; }
.proof-stat { display: flex; flex-direction: column; }
.proof-number { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--accent); line-height: 1; }
.proof-label { font-size: 0.75rem; color: var(--muted); margin-top: 0.2rem; }
.proof-divider { width: 1px; height: 2.5rem; background: var(--border); flex-shrink: 0; }

/* Hero card stack */
.hero-card-stack { display: flex; flex-direction: column; gap: 0.5rem; position: relative; }
.card { background: var(--card-bg); border: 1.5px solid var(--border); border-radius: 14px; padding: 1.2rem 1.5rem; box-shadow: 0 2px 20px rgba(26,26,46,0.06); }
.card-q .card-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; }
.card-q p { color: var(--fg); font-size: 0.95rem; font-weight: 500; max-width: none; }
.card-arrow { display: flex; justify-content: center; padding: 0.3rem 0; }
.card-result { background: var(--accent); border-color: var(--accent); }
.card-result .card-label { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 0.4rem; }
.card-result p { color: white; font-weight: 600; font-size: 0.95rem; max-width: none; margin-bottom: 0.8rem; }
.card-tags { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.tag { background: rgba(255,255,255,0.2); color: white; font-size: 0.7rem; font-weight: 600; padding: 0.25rem 0.6rem; border-radius: 100px; }

/* === THE PLAN / STEPS === */
.the-plan { background: var(--fg); }
.the-plan .section-label { color: var(--gold); }
.the-plan h2 { color: white; }
.the-plan h2 em { color: var(--accent); }
.section-header { margin-bottom: 3.5rem; }

.steps { display: flex; align-items: flex-start; gap: 2rem; }
.step { flex: 1; }
.step-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 700; color: var(--accent); line-height: 1; margin-bottom: 1rem; opacity: 0.9; }
.step h3 { color: white; font-size: 1.15rem; margin-bottom: 0.6rem; }
.step p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.65; max-width: none; }
.step-connector { width: 40px; flex-shrink: 0; height: 2px; background: rgba(255,255,255,0.15); align-self: 3rem; margin-top: 1.8rem; }

/* === WHO === */
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.who-left h2 { color: var(--fg); }
.who-left h2 em { color: var(--accent); }

.persona { display: flex; gap: 1.2rem; align-items: flex-start; padding: 1.5rem; border: 1.5px solid var(--border); border-radius: 14px; background: white; margin-bottom: 1rem; }
.persona-icon { width: 44px; height: 44px; background: var(--accent-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.persona-desc { font-family: var(--font-display); font-style: italic; color: var(--fg); font-size: 1rem; line-height: 1.5; margin-bottom: 0.5rem; max-width: none; }
.persona-tag { font-size: 0.8rem; color: var(--muted); }

/* === ROADMAP PREVIEW === */
.roadmap-preview { background: #f5f0ea; }
.roadmap-mock { background: white; border: 1.5px solid var(--border); border-radius: 18px; overflow: hidden; margin-top: 2rem; }
.rm-header { background: var(--fg); padding: 2rem 2.5rem; }
.rm-tag { display: inline-block; background: var(--accent); color: white; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: 100px; margin-bottom: 0.8rem; }
.rm-header h3 { color: white; font-size: 1.2rem; margin-bottom: 0.4rem; }
.rm-diff { color: rgba(255,255,255,0.6); font-size: 0.82rem; max-width: none; }
.rm-body { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.rm-col { padding: 1.8rem 2rem; border-right: 1px solid var(--border); }
.rm-col:last-child { border-right: none; }
.rm-col h4 { font-family: var(--font-body); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.rm-col ul { list-style: none; }
.rm-col li { font-size: 0.88rem; color: var(--fg); padding: 0.4rem 0; border-bottom: 1px solid var(--border); line-height: 1.4; }
.rm-col li:last-child { border-bottom: none; }
.roadmap-note { text-align: center; font-size: 0.85rem; color: var(--muted); margin-top: 2rem; font-style: italic; }

/* === CLOSING === */
.closing { text-align: center; }
.closing h2 { margin-bottom: 1.5rem; }
.closing p { max-width: 60ch; margin: 0 auto 1rem; font-size: 1.05rem; }
.closing-sub { font-family: var(--font-display); font-style: italic; font-size: 1.1rem !important; color: var(--fg) !important; }

/* === FOOTER === */
.footer { border-top: 1px solid var(--border); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 2.5rem 2rem; display: flex; justify-content: space-between; align-items: center; }
.footer-logo { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; display: block; margin-bottom: 0.4rem; }
.footer-brand p { font-size: 0.85rem; max-width: none; }
.footer-meta { font-size: 0.8rem; color: var(--muted); }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hero-card-stack { display: none; }
  .who-grid { grid-template-columns: 1fr; gap: 3rem; }
  .steps { flex-direction: column; }
  .step-connector { display: none; }
  .rm-body { grid-template-columns: 1fr; }
  .rm-col { border-right: none; border-bottom: 1px solid var(--border); }
  .rm-col:last-child { border-bottom: none; }
  .hero { padding: 7rem 1.5rem 4rem; }
  .section-inner { padding: 3.5rem 1.5rem; }
  .nav-inner { padding: 0.9rem 1.5rem; }
  .footer-inner { flex-direction: column; gap: 1.5rem; text-align: center; }
}

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--muted); }