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

:root {
  --bg: #f8f5f0;
  --bg-alt: #f0ebe0;
  --fg: #1a1a1a;
  --fg-muted: #6b6560;
  --green: #1a3a2a;
  --green-mid: #2d5440;
  --lime: #b8ff3a;
  --lime-dim: #9acc2e;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

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

/* === NAV === */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 245, 240, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(26, 58, 42, 0.1);
}
.nav-inner {
  max-width: 1100px;
  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: 1.4rem;
  color: var(--green);
  letter-spacing: -0.5px;
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--fg-muted);
  font-weight: 400;
}

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-bg-shapes .shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.s1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,255,58,0.15) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.s2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(26,58,42,0.08) 0%, transparent 70%);
  bottom: -50px; left: -80px;
}
.s3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(184,255,58,0.1) 0%, transparent 70%);
  top: 40%; left: 20%;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
  font-family: 'Syne', sans-serif;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.15;
  color: var(--green);
  margin-bottom: 20px;
  letter-spacing: -1px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 440px;
}
.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.pill {
  background: var(--green);
  color: var(--lime);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
}

/* === PHONE MOCKUP === */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-mockup {
  position: relative;
  width: 220px;
}
.phone-bezel {
  background: #111;
  border-radius: 36px;
  padding: 12px;
  box-shadow: 0 32px 80px rgba(26,58,42,0.3), 0 0 0 1px rgba(255,255,255,0.1) inset;
}
.phone-screen {
  background: #1a1a1a;
  border-radius: 28px;
  overflow: hidden;
  padding: 16px 12px;
}
.screen-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green) 0%, var(--lime-dim) 100%);
  flex-shrink: 0;
}
.handle-text {
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0.8;
}
.video-placeholder {
  background: linear-gradient(145deg, #1e3a28 0%, #0f2018 100%);
  border-radius: 16px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.play-icon {
  font-size: 2rem;
  color: var(--lime);
  opacity: 0.6;
  z-index: 2;
  position: relative;
}
.scrolling-feed {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 16px;
  opacity: 0.4;
}
.feed-post {
  border-radius: 8px;
  height: 28px;
}
.p1 { background: var(--green-mid); }
.p2 { background: rgba(184,255,58,0.2); }
.p3 { background: rgba(184,255,58,0.08); }
.screen-stats {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}
.stat {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.6);
}
.badge-reel {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  font-family: 'Syne', sans-serif;
}

/* === PROOF === */
.proof {
  background: var(--green);
  color: #fff;
  padding: 64px 0;
}
.proof-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.proof-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proof-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--lime);
  line-height: 1;
}
.proof-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

/* === SECTIONS SHARED === */
.section-eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  font-weight: 600;
  font-family: 'Syne', sans-serif;
  margin-bottom: 12px;
}
.section-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: var(--green);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
}

/* === HOW === */
.how {
  padding: 80px 0;
}
.how-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid rgba(26,58,42,0.1);
}
.step:last-child { border-bottom: none; }
.step-num {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.5rem;
  color: rgba(26,58,42,0.15);
  line-height: 1;
  padding-top: 4px;
}
.step-body h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--green);
  margin-bottom: 8px;
}
.step-body p {
  color: var(--fg-muted);
  font-size: 0.97rem;
  line-height: 1.65;
}

/* === NICHES === */
.niches {
  background: var(--bg-alt);
  padding: 80px 0;
}
.niches-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}
.niche-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.niche {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid rgba(26,58,42,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.niche:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(26,58,42,0.1);
}
.niche-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.niche h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green);
  margin-bottom: 10px;
}
.niche p {
  color: var(--fg-muted);
  font-size: 0.92rem;
  line-height: 1.65;
}

/* === MANIFESTO === */
.manifesto {
  background: var(--green);
  padding: 80px 0;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.manifesto-quote {}
.manifesto-text {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  color: #fff;
  line-height: 1.4;
  margin-bottom: 20px;
}
.manifesto-attr {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
}

/* === CLOSING === */
.closing {
  padding: 100px 0;
  text-align: center;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--green);
  line-height: 1.2;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.closing-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.closing-detail {
  color: var(--fg-muted);
  font-size: 0.92rem;
}
.closing-detail strong {
  color: var(--green);
  font-weight: 700;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid rgba(26,58,42,0.1);
  padding: 40px 0;
  background: var(--bg);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--green);
  display: block;
}
.footer-tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
  margin-top: 2px;
  display: block;
}
.footer-links {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero-sub { max-width: 100%; margin: 0 auto 28px; }
  .hero-pills { justify-content: center; }
  .hero-right { display: none; }
  .proof-grid { grid-template-columns: 1fr; gap: 32px; }
  .niche-grid { grid-template-columns: 1fr; }
  .step { grid-template-columns: 60px 1fr; gap: 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero { padding: 60px 0 40px; }
  .section-headline { font-size: 1.6rem; }
  .proof { padding: 48px 0; }
}