/* ── Variables ── */
:root {
  --bg: #F7F6F3;
  --bg-alt: #EFEFEC;
  --fg: #1A1A1A;
  --fg-muted: #5A5A5A;
  --fg-dim: #9A9A9A;
  --accent: #00D4B4;
  --accent-dark: #00A889;
  --nav-height: 64px;
  --max-w: 1100px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 246, 243, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26,26,26,0.08);
  height: var(--nav-height);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tagline {
  font-size: 12px;
  color: var(--fg-muted);
  font-family: 'DM Mono', monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Section commons ── */
.section-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
}

/* ── Hero ── */
.hero {
  padding: 80px 32px 72px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hero-inner {
  max-width: 780px;
}
.hero-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  border-top: 1px solid rgba(26,26,26,0.12);
  padding-top: 32px;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-right: 48px;
}
.hero-stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.hero-stat-unit {
  font-size: 16px;
  font-weight: 400;
  color: var(--fg-muted);
}
.hero-stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-family: 'DM Mono', monospace;
  line-height: 1.4;
}
.hero-stat-sep {
  width: 1px;
  height: 48px;
  background: rgba(26,26,26,0.12);
  margin-right: 48px;
  flex-shrink: 0;
}

/* ── The Problem ── */
.the-problem {
  background: var(--fg);
  color: #fff;
  padding: 96px 32px;
}
.the-problem-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-col-left .section-label { color: var(--accent); }
.problem-col-left .section-heading { color: #fff; }
.problem-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 36px;
}
.problem-item:last-child { margin-bottom: 0; }
.problem-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(0, 212, 180, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.problem-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  margin-bottom: 6px;
}
.problem-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

/* ── How It Works ── */
.how-it-works {
  padding: 96px 32px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.hiw-heading {
  margin-bottom: 64px;
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.hiw-step-num {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hiw-step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.hiw-step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ── What You Get ── */
.what-you-get {
  background: var(--bg-alt);
  padding: 96px 32px;
}
.wyg-inner { max-width: var(--max-w); margin: 0 auto; }
.wyg-header { margin-bottom: 64px; }
.wyg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
.wyg-card {
  background: var(--bg);
  border: 1px solid rgba(26,26,26,0.08);
  border-radius: 16px;
  padding: 32px;
}
.wyg-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(0,212,180,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.wyg-card-title {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--fg);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.wyg-card-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ── Pricing band ── */
.wyg-pricing {
  background: var(--fg);
  border-radius: 20px;
  padding: 48px;
}
.wyg-pricing-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: center;
}
.wyg-pricing-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.wyg-pricing-amount {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.wyg-dollar {
  font-size: 32px;
  vertical-align: super;
}
.wyg-per {
  font-size: 20px;
  font-weight: 400;
  color: rgba(255,255,255,0.4);
}
.wyg-pricing-note {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.wyg-pricing-item {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wyg-pricing-item:first-child { padding-top: 0; }
.wyg-pricing-item::before {
  content: '✓ ';
  color: var(--accent);
  margin-right: 8px;
}

/* ── Manifesto ── */
.manifesto {
  background: var(--accent);
  padding: 96px 32px;
}
.manifesto-inner { max-width: 780px; margin: 0 auto; }
.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 600;
  color: var(--fg);
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.manifesto-sub {
  font-size: 15px;
  color: rgba(26,26,26,0.65);
  line-height: 1.7;
  max-width: 600px;
}

/* ── Footer ── */
.footer {
  background: var(--fg);
  color: rgba(255,255,255,0.4);
  padding: 48px 32px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
}
.footer-tagline { font-size: 12px; font-family: 'DM Mono', monospace; }
.footer-links {
  font-size: 13px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}
.footer-sep { color: rgba(255,255,255,0.2); }
.footer-bottom { font-size: 12px; font-family: 'DM Mono', monospace; color: rgba(255,255,255,0.2); }

/* ── Responsive ── */
@media (max-width: 768px) {
  .the-problem-inner { grid-template-columns: 1fr; gap: 48px; }
  .hiw-steps { grid-template-columns: 1fr; gap: 40px; }
  .wyg-grid { grid-template-columns: 1fr; }
  .wyg-pricing-inner { grid-template-columns: 1fr; gap: 32px; }
  .wyg-pricing { padding: 32px; }
  .hero-stats { gap: 24px; }
  .hero-stat-sep { display: none; }
  .hero-stat { padding-right: 0; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .wyg-pricing-amount { font-size: 40px; }
}