/* ─── Tokens ─────────────────────────────────────────── */
:root {
  --bg: #f4f7f0;
  --bg-alt: #e8ede3;
  --fg: #0a1a0d;
  --fg-muted: #3d5c3a;
  --accent: #c8f530;
  --accent-dark: #a8d428;
  --surface: #ffffff;
  --border: #c8d8bc;
  --radius: 12px;
  --font-display: 'Bricolage Grotesque', system-ui, sans-serif;
  --font-body: 'Figtree', system-ui, sans-serif;
}

/* ─── Reset & Base ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; -webkit-font-smoothing: antialiased; }
body { background: var(--bg); color: var(--fg); font-family: var(--font-body); line-height: 1.6; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
a { color: inherit; text-decoration: none; }

/* ─── Navigation ─────────────────────────────────────── */
.nav { padding: 24px 0; }
.nav-inner { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.nav-logo { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: -0.02em; color: var(--fg); }

/* ─── Hero ───────────────────────────────────────────── */
.hero { position: relative; overflow: hidden; padding: 80px 0 96px; }
.hero-bg-shape {
  position: absolute; right: -160px; top: -80px;
  width: 600px; height: 600px;
  background: radial-gradient(circle at center, #c8f530 0%, transparent 70%);
  opacity: 0.12;
  pointer-events: none;
}
.hero-inner { max-width: 1140px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }
.hero-label {
  display: inline-block; font-family: var(--font-display); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--fg-muted);
  border: 1px solid var(--border); border-radius: 100px; padding: 6px 16px; margin-bottom: 28px;
}
.hero-headline {
  font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 800; letter-spacing: -0.03em;
  line-height: 1.05; max-width: 700px; color: var(--fg); margin-bottom: 28px;
}
.hero-sub { font-size: 1.125rem; color: var(--fg-muted); max-width: 540px; margin-bottom: 56px; line-height: 1.7; }
.hero-stats { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat-value { font-family: var(--font-display); font-size: 1.75rem; font-weight: 800; color: var(--fg); }
.stat-label { font-size: 0.8125rem; color: var(--fg-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

/* ─── What ───────────────────────────────────────────── */
.what { background: var(--bg-alt); padding: 96px 0; }
.what-inner { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 56px; }
.what-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.what-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.what-card:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(10,26,13,0.08); }
.what-icon { width: 48px; height: 48px; background: var(--bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.what-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--fg); }
.what-card p { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.65; }

/* ─── How ────────────────────────────────────────────── */
.how { padding: 96px 0; }
.how-inner { max-width: 1140px; margin: 0 auto; padding: 0 32px; display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: start; }
.how-intro { font-size: 1.125rem; color: var(--fg-muted); margin: 20px 0 40px; }
.how-steps { display: flex; flex-direction: column; gap: 32px; }
.step { display: flex; gap: 24px; align-items: flex-start; }
.step-num { font-family: var(--font-display); font-size: 0.875rem; font-weight: 800; color: var(--accent-dark); min-width: 32px; margin-top: 2px; }
.step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 0.9375rem; color: var(--fg-muted); line-height: 1.65; }

/* ─── Pricing Card ───────────────────────────────────── */
.pricing-card {
  background: var(--fg); color: var(--bg); border-radius: 16px; padding: 36px;
  position: sticky; top: 32px;
}
.pricing-header { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.pricing-tier { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; border-bottom: 1px solid rgba(200,245,48,0.15); }
.tier-name { font-size: 0.9375rem; color: rgba(244,247,240,0.7); }
.tier-price { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; color: var(--bg); }
.pricing-divider { height: 1px; background: rgba(200,245,48,0.15); margin: 20px 0; }
.pricing-note { margin-top: 20px; font-size: 0.8125rem; color: var(--accent); font-weight: 600; }

/* ─── Manifesto ─────────────────────────────────────── */
.manifesto { background: var(--fg); padding: 80px 0; }
.manifesto-inner { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.manifesto-quote {
  font-family: var(--font-display); font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700; color: var(--accent); letter-spacing: -0.025em; line-height: 1.2;
  margin-bottom: 40px;
}
.manifesto-body { max-width: 680px; }
.manifesto-body p { font-size: 1.0625rem; color: rgba(244,247,240,0.75); line-height: 1.8; margin-bottom: 20px; }
.manifesto-body p:last-child { margin-bottom: 0; }

/* ─── Closing ────────────────────────────────────────── */
.closing { padding: 96px 0; border-top: 1px solid var(--border); }
.closing-inner { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.closing h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.025em; margin-bottom: 20px; }
.closing p { font-size: 1.125rem; color: var(--fg-muted); max-width: 600px; line-height: 1.7; margin-bottom: 48px; }
.closing-tools { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.closing-tools span:first-child { font-size: 0.875rem; color: var(--fg-muted); font-weight: 500; }
.tool-tag { font-family: var(--font-display); font-size: 0.8125rem; font-weight: 600; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 100px; padding: 5px 14px; color: var(--fg); }

/* ─── Footer ─────────────────────────────────────────── */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 32px 0; }
.footer-inner { max-width: 1140px; margin: 0 auto; padding: 0 32px; display: flex; align-items: center; justify-content: space-between; }
.footer-logo { font-family: var(--font-display); font-weight: 800; font-size: 1rem; color: var(--fg); }
.footer-tagline { font-size: 0.875rem; color: var(--fg-muted); }

/* ─── Responsive ─────────────────────────────────────── */
@media (max-width: 900px) {
  .how-inner { grid-template-columns: 1fr; }
  .what-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card { position: static; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
}
@media (max-width: 600px) {
  .what-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 72px; }
  .what, .how, .closing { padding: 64px 0; }
  .manifesto { padding: 64px 0; }
  .footer-inner { flex-direction: column; gap: 8px; }
}