/* ===== TOKENS ===== */
:root {
  --bg: #faf9f7;
  --bg-alt: #f2f0ec;
  --fg: #1e293b;
  --fg-muted: #64748b;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --accent-light: #fef3c7;
  --teal: #0d9488;
  --teal-light: #ccfbf1;
  --white: #ffffff;
  --border: #e2e0db;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 700; line-height: 1.15; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 249, 247, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.nav-tag {
  font-size: 0.875rem;
  color: var(--fg-muted);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 80px 24px 100px;
  overflow: hidden;
  background: var(--fg);
  color: var(--white);
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}
.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: var(--accent);
  top: -150px;
  right: -100px;
}
.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: var(--teal);
  bottom: -120px;
  left: -80px;
}
.hero-content {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 28px;
}
.label-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== STATS ===== */
.stats {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 48px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat {
  text-align: center;
  padding: 0 48px;
  flex: 1;
}
.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--accent-dark);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.4;
}
.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 24px;
  background: var(--bg);
}
.how-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.025em;
}
.how-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.how-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}
.how-card-accent {
  background: var(--fg);
  color: var(--white);
  border-color: var(--fg);
}
.how-card-accent .how-title,
.how-card-accent .how-desc { color: var(--white); }
.how-card-accent .how-desc { color: rgba(255,255,255,0.65); }
.how-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-dark);
  margin-bottom: 20px;
}
.how-card-accent .how-icon {
  background: rgba(245, 158, 11, 0.2);
  color: var(--accent);
}
.how-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--fg);
}
.how-desc {
  font-size: 0.925rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== OUTCOMES ===== */
.outcomes {
  padding: 80px 24px;
  background: var(--fg-alt);
}
.outcomes-inner { max-width: 1100px; margin: 0 auto; }
.outcomes-header { text-align: center; margin-bottom: 56px; }
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.outcome {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}
.outcome-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.outcome-text {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.55;
}
.outcome-text strong { color: var(--fg); }

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 24px;
  background: var(--fg);
  color: var(--white);
}
.manifesto-inner { max-width: 860px; margin: 0 auto; }
.manifesto-quote { position: relative; padding-left: 40px; }
.manifesto-quote::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 4px;
  height: calc(100% - 16px);
  background: var(--accent);
  border-radius: 2px;
}
.manifesto-text {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  line-height: 1.65;
  color: rgba(255,255,255,0.88);
  margin-bottom: 28px;
}
.manifesto-attr {
  display: flex;
  align-items: center;
  gap: 16px;
}
.attr-line {
  width: 40px;
  height: 1px;
  background: var(--accent);
}
.manifesto-attr span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 24px;
  background: var(--white);
}
.closing-inner { max-width: 1100px; margin: 0 auto; }
.closing-statement { text-align: center; margin-bottom: 72px; }
.closing-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 20px;
  line-height: 1.15;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.closing-path {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.path-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.path-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-dark);
  letter-spacing: -0.02em;
}
.path-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--fg);
}
.path-arrow {
  color: var(--fg-muted);
  padding: 0 16px;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 24px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-logo {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--fg);
}
.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  text-align: center;
}
.footer-bottom {
  font-size: 0.75rem;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero { padding: 60px 24px 80px; }
  .stats-inner { flex-direction: column; gap: 32px; }
  .stat-divider { display: none; }
  .how-cards { grid-template-columns: 1fr; gap: 16px; }
  .outcomes-grid { grid-template-columns: 1fr; }
  .closing-path { flex-direction: column; gap: 12px; }
  .path-arrow { transform: rotate(90deg); padding: 8px 0; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .how-card { padding: 24px 20px; }
  .manifesto-quote { padding-left: 28px; }
}