:root {
  --bg: #F6F1EA;
  --bg-alt: #EDE8DF;
  --fg: #111827;
  --fg-muted: #6B7280;
  --accent: #0A6E6E;
  --accent-light: #E0F2F2;
  --gold: #C9A84C;
  --white: #FFFFFF;
}

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

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 241, 234, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  letter-spacing: 0.02em;
}

/* HERO */
.hero {
  padding: 80px 32px 64px;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.6;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.hero-stat {
  padding-right: 32px;
}
.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  line-height: 1.4;
}
.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(17, 24, 39, 0.12);
  margin-right: 32px;
  flex-shrink: 0;
}
.hero-image-wrap {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(17, 24, 39, 0.12);
}
.hero-image {
  width: 100%;
  height: auto;
  display: block;
}

/* PROOF */
.proof {
  background: var(--bg-alt);
  padding: 32px 32px;
  border-top: 1px solid rgba(17, 24, 39, 0.06);
  border-bottom: 1px solid rgba(17, 24, 39, 0.06);
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.proof-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  white-space: nowrap;
}
.proof-types {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.proof-tag {
  background: var(--white);
  border: 1px solid rgba(17, 24, 39, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  color: var(--fg-muted);
}

/* FEATURES */
.features {
  padding: 96px 32px;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-header {
  margin-bottom: 72px;
}
.features-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--fg);
}
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 80px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row--image-left .feature-image-wrap { order: -1; }
.feature-icon-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.feature-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--fg);
}
.feature-desc {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
}
.feature-image-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(17, 24, 39, 0.08);
}
.feature-image {
  width: 100%;
  height: auto;
  display: block;
}

/* HOW */
.how {
  background: var(--accent);
  padding: 80px 32px;
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.how-title {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 48px;
  text-align: center;
}
.how-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.how-step {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 28px 32px;
  max-width: 260px;
  text-align: center;
}
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 40px;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 12px;
}
.step-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.how-step-arrow {
  padding: 0 24px;
}

/* MANIFESTO */
.manifesto {
  padding: 96px 32px;
  background: var(--bg);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3.5vw, 40px);
  letter-spacing: -1px;
  line-height: 1.2;
  color: var(--fg);
  margin-bottom: 32px;
  font-style: normal;
  border-left: 4px solid var(--gold);
  padding-left: 28px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* CLOSING */
.closing {
  background: var(--fg);
  padding: 96px 32px;
}
.closing-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -2px;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 40px;
}
.closing-vision {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 24px 32px;
}
.closing-vision p {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  line-height: 1.6;
}

/* FOOTER */
.footer {
  background: #0A0F14;
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 4px;
  display: block;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner,
  .feature-row {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-row--image-left .feature-image-wrap { order: 0; }
  .hero-headline { letter-spacing: -1px; }
  .hero-stat-row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-stat-divider { display: none; }
  .hero-stat { padding-right: 0; }
  .proof-inner { flex-direction: column; align-items: flex-start; }
  .how-steps { flex-direction: column; gap: 16px; }
  .how-step-arrow { display: none; }
  .nav-inner { padding: 14px 20px; }
  .hero { padding: 56px 20px 48px; }
  .features { padding: 64px 20px; }
  .how { padding: 56px 20px; }
  .manifesto { padding: 64px 20px; }
  .closing { padding: 64px 20px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
  .features-title { letter-spacing: -0.5px; }
}