:root {
  --bg: #F5F1EB;
  --bg-alt: #EDEAE3;
  --fg: #0B1628;
  --fg-muted: #5A6478;
  --accent: #FF8C42;
  --accent-dark: #E06B1A;
  --navy: #0B1628;
  --navy-mid: #162035;
  --cream: #F5F1EB;
  --border: #D4CFC6;
  --mono: 'Space Mono', monospace;
  --sans: 'DM Sans', sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.nav-tagline {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--fg-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-cta {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  padding: 0.5rem 1.1rem;
  border-radius: 5px;
  transition: background 0.15s;
}
.nav-cta:hover { background: var(--accent-dark); }

/* Section label */
.section-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

/* Hero */
.hero {
  background: var(--navy);
  color: #fff;
  padding: 5rem 2rem 0;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 4rem;
}
.hero-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 1.75rem;
  max-width: 16ch;
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.7);
  max-width: 58ch;
}
.hero-stats {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.stat {
  padding: 2rem 0 2rem 0;
  grid-column: span 1;
}
.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.stat-label {
  font-size: 0.72rem;
  line-height: 1.4;
  color: rgba(255,255,255,0.45);
  font-family: var(--sans);
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.08);
  margin: 2rem 0;
}

/* Problem */
.problem {
  padding: 6rem 2rem;
  background: var(--cream);
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.problem-headline {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.025em;
  max-width: 24ch;
  margin-bottom: 1.25rem;
}
.problem-body {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 56ch;
  margin-bottom: 3.5rem;
}
.gap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.gap-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.5rem 2rem 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.gap-item:nth-child(n+4) { border-bottom: none; }
.gap-icon {
  font-size: 0.85rem;
  color: #C0392B;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
  width: 1.2rem;
}
.gap-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--fg);
}

/* How */
.how {
  padding: 6rem 2rem;
  background: #fff;
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how-headline {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 4rem;
  max-width: 20ch;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}
.step-number {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}
.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.step-body {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--fg-muted);
}

/* Pricing */
.pricing {
  padding: 6rem 2rem;
  background: var(--cream);
}
.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-headline {
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: 3rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 2.5rem;
}
.pricing-card.featured {
  border: 2px solid var(--accent);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most popular';
  position: absolute;
  top: -0.75rem;
  left: 2rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
}
.card-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 0.75rem;
}
.card-price {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--fg);
  margin-bottom: 0.35rem;
}
.card-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--fg-muted);
}
.card-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 1.75rem;
  line-height: 1.5;
}
.card-features {
  list-style: none;
}
.card-features li {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--fg);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  padding-left: 1.25rem;
  position: relative;
}
.card-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.75rem;
}
.card-features li:last-child { border-bottom: none; }
.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 2rem;
  font-family: var(--mono);
}

/* Manifesto */
.manifesto {
  padding: 6rem 2rem;
  background: var(--navy);
  color: #fff;
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.manifesto-quote {
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin-bottom: 2rem;
  max-width: 34ch;
  border-left: 3px solid var(--accent);
  padding-left: 1.75rem;
}
.manifesto-body {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  max-width: 62ch;
}

/* Closing */
.closing {
  padding: 7rem 2rem;
  background: var(--bg-alt);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.closing-headline {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1.75rem;
  max-width: 20ch;
}
.closing-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 54ch;
}

/* Footer */
.footer {
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.footer-meta {
  font-size: 0.85rem;
  color: var(--fg-muted);
}
.footer-location {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--fg-muted);
  letter-spacing: 0.03em;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .gap-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .stat-divider { display: none; }
  .gap-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .hero { padding-top: 3rem; }
  .hero-headline { font-size: 2rem; }
}