/* ─── TOKENS ─────────────────────────────────────────────────────────── */
:root {
  --bg: #FDF8F3;
  --bg-warm: #F7EFE6;
  --accent: #E8833A;
  --accent-dark: #C96A20;
  --text: #1A1A1A;
  --text-mid: #4A3728;
  --text-light: #7A6558;
  --border: #E8DDD3;
  --white: #FFFFFF;
  --shadow: rgba(26, 26, 26, 0.08);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* ─── TYPOGRAPHY ────────────────────────────────────────────────────── */
h1, h2, h3 { font-family: 'DM Serif Display', serif; font-weight: 400; line-height: 1.15; }
.section-label { font-family: 'DM Sans', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); }

/* ─── HEADER ────────────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-mark { font-size: 1.1rem; color: var(--accent); }
.logo-text { font-weight: 600; font-size: 0.95rem; letter-spacing: -0.01em; }

/* ─── HERO ──────────────────────────────────────────────────────────── */
.hero { padding: 5rem 2rem 4rem; }
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow { margin-bottom: 1rem; }
.hero-headline {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--text);
  margin-bottom: 1.25rem;
}
.hero-lede {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 420px;
  line-height: 1.7;
}

/* worksheet mockup */
.worksheet-mockup {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 24px var(--shadow), 0 1px 3px var(--shadow);
  border: 1px solid var(--border);
}
.mockup-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
}
.mockup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.mock-word {
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-family: 'DM Serif Display', serif;
  font-size: 0.95rem;
  color: var(--text);
}
.mockup-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.65rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ─── NICHES ────────────────────────────────────────────────────────── */
.niches { background: var(--bg-warm); padding: 5rem 2rem; }
.niches-inner { max-width: 1100px; margin: 0 auto; }
.niches-inner .section-label { margin-bottom: 0.75rem; }
.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.niche-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.niche-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px var(--shadow); }
.niche-icon { font-size: 1.1rem; color: var(--accent); display: block; margin-bottom: 0.75rem; }
.niche-card h3 { font-size: 1rem; margin-bottom: 0.5rem; color: var(--text); }
.niche-card p { font-size: 0.875rem; color: var(--text-light); line-height: 1.65; }

/* ─── HOW IT WORKS ──────────────────────────────────────────────────── */
.how-it-works { padding: 5rem 2rem; }
.hiw-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.hiw-inner .section-label { margin-bottom: 0.75rem; }
.hiw-headline { font-size: clamp(1.8rem, 3vw, 2.5rem); margin-bottom: 3rem; color: var(--text); }
.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.step { padding: 0 2.5rem; }
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.step h3 { font-size: 1.1rem; margin-bottom: 0.5rem; color: var(--text); }
.step p { font-size: 0.9rem; color: var(--text-light); max-width: 200px; margin: 0 auto; }
.step-connector { width: 60px; height: 1px; background: var(--border); flex-shrink: 0; }

/* ─── SAMPLE / BUNDLE ──────────────────────────────────────────────── */
.sample { background: var(--text); color: var(--white); padding: 5rem 2rem; }
.sample-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sample .section-label { color: var(--accent); }
.sample-headline { font-size: clamp(1.8rem, 2.5vw, 2.4rem); margin-top: 0.75rem; margin-bottom: 1.25rem; color: var(--white); }
.sample-body { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 1.75rem; }
.sample-list { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.sample-list li { font-size: 0.9rem; color: rgba(255,255,255,0.85); display: flex; align-items: center; gap: 0.6rem; }
.sample-list li::before { content: '✓'; color: var(--accent); font-weight: 600; font-size: 0.8rem; }

.bundle-mockup {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 1.75rem;
}
.bundle-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; }
.bundle-files { display: flex; flex-direction: column; gap: 0.6rem; }
.bundle-file { background: rgba(255,255,255,0.08); border-radius: 7px; padding: 0.75rem 1rem; display: flex; align-items: center; gap: 0.75rem; font-size: 0.9rem; color: rgba(255,255,255,0.9); }
.file-icon { color: var(--accent); font-size: 1rem; }
.bundle-tag { margin-top: 1.25rem; font-size: 0.75rem; color: rgba(255,255,255,0.5); font-weight: 500; letter-spacing: 0.04em; }

/* ─── CLOSING ──────────────────────────────────────────────────────── */
.closing { padding: 6rem 2rem; text-align: center; background: var(--bg-warm); }
.closing-inner { max-width: 680px; margin: 0 auto; }
.closing-headline { font-size: clamp(2rem, 4vw, 3rem); color: var(--text); margin-bottom: 1.25rem; }
.closing-body { font-size: 1.05rem; color: var(--text-mid); line-height: 1.75; max-width: 520px; margin: 0 auto; }

/* ─── FOOTER ────────────────────────────────────────────────────────── */
.site-footer { background: var(--text); padding: 2.5rem 2rem; }
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 0.4rem; margin-bottom: 0.6rem; }
.footer-name { font-weight: 600; font-size: 0.9rem; color: var(--white); }
.footer-tagline { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 0.4rem; }
.footer-note { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* ─── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .niches-grid { grid-template-columns: 1fr 1fr; }
  .sample-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps-row { flex-direction: column; gap: 0; }
  .step-connector { width: 1px; height: 40px; }
  .hero { padding: 3rem 1.5rem 3rem; }
}
@media (max-width: 480px) {
  .niches-grid { grid-template-columns: 1fr; }
  .mockup-grid { grid-template-columns: repeat(4, 1fr); }
}