/* ==============================
   TOKENS
   ============================== */
:root {
  --ink: #0d0d0d;
  --paper: #f4f7f0;
  --lime: #c8f135;
  --lime-dim: rgba(200, 241, 53, 0.15);
  --muted: #8a8a7a;
  --rule: rgba(13, 13, 13, 0.1);
  --serif: 'Syne', sans-serif;
  --sans: 'DM Sans', sans-serif;
}

/* ==============================
   RESET & BASE
   ============================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

/* ==============================
   NAV
   ============================== */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.nav-tag {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ==============================
   HERO
   ============================== */
.hero {
  padding: 80px 40px 100px;
  max-width: 1200px;
  margin: 0 auto;
}
.hero-inner { max-width: 880px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--lime-dim);
  border: 1px solid rgba(200, 241, 53, 0.4);
  border-radius: 100px;
  padding: 6px 14px 6px 10px;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 8px rgba(200, 241, 53, 0.8);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-headline em {
  font-style: normal;
  color: #4a7c12;
  position: relative;
}
.hero-headline em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--lime);
  border-radius: 2px;
}

.hero-sub {
  font-size: 1.15rem;
  color: #3d3d3d;
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 56px;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 40px 0 0;
}
.stat:first-child { padding-left: 0; }
.stat-number {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  max-width: 120px;
  line-height: 1.3;
}
.stat-div {
  width: 1px;
  height: 48px;
  background: var(--rule);
  margin-right: 40px;
  flex-shrink: 0;
}

/* ==============================
   WHAT (Who this is for)
   ============================== */
.what {
  background: var(--ink);
  padding: 90px 40px;
}
.what-inner { max-width: 1200px; margin: 0 auto; }
.what-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(200, 241, 53, 0.6);
  margin-bottom: 24px;
  font-weight: 500;
}
.what-headline {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: #f4f7f0;
  margin-bottom: 32px;
  max-width: 720px;
}
.underline {
  background: linear-gradient(180deg, transparent 60%, rgba(200, 241, 53, 0.3) 60%);
  padding: 0 2px;
}
.what-body {
  font-size: 1.05rem;
  color: #a0a0a0;
  max-width: 680px;
  line-height: 1.7;
  font-weight: 300;
  margin-bottom: 16px;
}
.what-body:last-child { margin-bottom: 0; }

/* ==============================
   SHARED SECTION LABEL
   ============================== */
.section-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 40px;
  font-weight: 500;
}

/* ==============================
   OUTCOMES
   ============================== */
.outcomes {
  padding: 90px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.outcome {
  padding: 36px 32px;
  border: 1px solid var(--rule);
  background: white;
  transition: border-color 0.2s;
}
.outcome:hover { border-color: #c8f135; }
.outcome-icon {
  width: 52px;
  height: 52px;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  margin-bottom: 20px;
}
.outcome-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}
.outcome-desc {
  font-size: 0.9rem;
  color: #6a6a6a;
  line-height: 1.6;
  font-weight: 300;
}

/* ==============================
   MANIFESTO
   ============================== */
.manifesto {
  background: var(--ink);
  padding: 90px 40px;
}
.manifesto-inner { max-width: 1200px; margin: 0 auto; }
.manifesto-quote {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: #f4f7f0;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
  max-width: 820px;
}
.manifesto-quote em {
  font-style: normal;
  color: var(--lime);
}
.manifesto-body {
  font-size: 1.05rem;
  color: #a0a0a0;
  max-width: 680px;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 16px;
}
.manifesto-body:last-child { margin-bottom: 0; }

/* ==============================
   CLOSING
   ============================== */
.closing {
  padding: 100px 40px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.closing-headline {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
  font-weight: 300;
}

/* ==============================
   FOOTER
   ============================== */
.footer {
  border-top: 1px solid var(--rule);
  padding: 48px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 40px;
}
.footer-logo {
  font-family: var(--serif);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.footer-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 320px;
  text-align: right;
}
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.03em;
}

/* ==============================
   RESPONSIVE
   ============================== */
@media (max-width: 900px) {
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stat-div { display: none; }
  .stat { padding: 0; }
}
@media (max-width: 600px) {
  .nav, .hero, .outcomes, .what, .manifesto, .closing, .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .outcomes-grid { grid-template-columns: 1fr; }
  .what-headline { font-size: 1.7rem; }
  .hero-headline { font-size: 2rem; }
  .footer-top { flex-direction: column; }
  .footer-desc { text-align: left; }
}