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

:root {
  --bg: #faf8f3;
  --bg-alt: #f0ede4;
  --fg: #0f1f0f;
  --green-deep: #0f2e1e;
  --green-dark: #1a3d1a;
  --green-mid: #2a5c2a;
  --green-light: #3d8b3d;
  --green-bright: #5cb85c;
  --amber: #e8a84c;
  --amber-light: #f0c070;
  --amber-dim: rgba(232, 168, 76, 0.15);
  --green-glow: rgba(92, 184, 92, 0.12);
  --text-muted: rgba(15, 31, 15, 0.55);
  --text-faint: rgba(15, 31, 15, 0.3);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--green-mid); border-radius: 4px; }

/* ===== NAV ===== */
.nav {
  padding: 20px 40px;
  border-bottom: 1px solid rgba(15, 31, 15, 0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: -0.02em;
}
.nav-dot { color: var(--amber); }
.nav-tagline {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ===== HERO ===== */
.hero {
  padding: 80px 40px 0;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
  max-width: 480px;
}
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.glow-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 168, 76, 0.18) 0%, rgba(92, 184, 92, 0.08) 50%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  border-radius: 50%;
}
.hero-illustration {
  width: 100%;
  max-width: 400px;
  filter: drop-shadow(0 20px 60px rgba(15, 46, 30, 0.25));
}
.status-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.badge-green {
  background: rgba(42, 92, 42, 0.12);
  color: var(--green-mid);
  border: 1px solid rgba(42, 92, 42, 0.2);
}
.badge-amber {
  background: rgba(232, 168, 76, 0.15);
  color: #b87530;
  border: 1px solid rgba(232, 168, 76, 0.3);
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  animation: pulse 2s ease-in-out infinite;
}
.badge-amber .badge-dot {
  background: var(--amber);
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-ticker {
  margin-top: 60px;
  border-top: 1px solid rgba(15, 31, 15, 0.08);
  border-bottom: 1px solid rgba(15, 31, 15, 0.08);
  padding: 16px 0;
  overflow: hidden;
  background: var(--bg-alt);
}
.ticker-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: scroll-left 30s linear infinite;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}
.ticker-track span { display: inline-block; }
.ticker-track .sep { color: var(--amber); font-weight: 700; }
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== HOW IT WORKS ===== */
.how {
  padding: 100px 40px;
  background: var(--bg-alt);
}
.how-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 16px;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 60px;
}
.step {
  flex: 1;
  padding: 0 40px 0 0;
}
.step:first-child { padding-left: 0; }
.step-number {
  font-family: 'Fraunces', serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.2;
}
.step-title {
  font-family: 'Fraunces', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 12px;
}
.step-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.step-connector {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--green-mid), transparent);
  margin-top: 40px;
  flex-shrink: 0;
}

/* ===== FEATURES ===== */
.features {
  padding: 100px 40px;
}
.features-inner { max-width: 1200px; margin: 0 auto; }
.features-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
  max-width: 600px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(15, 31, 15, 0.08);
  border: 1px solid rgba(15, 31, 15, 0.08);
  border-radius: 16px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg);
  padding: 36px 32px;
  transition: background 0.2s;
}
.feature-card:hover { background: #f5f2e8; }
.feature-icon {
  margin-bottom: 20px;
}
.feature-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 100px 40px;
  background: var(--green-deep);
  color: #e8f0e8;
}
.manifesto-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.manifesto-overline {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 20px;
}
.manifesto-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #faf8f3;
}
.manifesto-body {
  font-size: 0.95rem;
  line-height: 1.75;
  color: rgba(250, 248, 243, 0.6);
  margin-bottom: 20px;
}
.manifesto-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.stat-value {
  font-family: 'Fraunces', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(250, 248, 243, 0.45);
  line-height: 1.4;
}

/* ===== CLOSING ===== */
.closing {
  padding: 100px 40px 120px;
  text-align: center;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(92, 184, 92, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.closing-inner { max-width: 700px; margin: 0 auto; }
.closing-heading {
  font-family: 'Fraunces', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}
.closing-visual {
  margin: 0 auto 40px;
  max-width: 600px;
  opacity: 0.7;
}
.closing-tagline {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--green-mid);
  opacity: 0.7;
}

/* ===== FOOTER ===== */
.footer {
  padding: 40px;
  border-top: 1px solid rgba(15, 31, 15, 0.08);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--green-deep);
}
.footer-dot { color: var(--amber); }
.footer-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
  max-width: 300px;
}
.footer-meta {
  font-size: 0.78rem;
  color: var(--text-faint);
}
.footer-meta a {
  color: var(--text-muted);
  text-decoration: none;
}
.footer-meta a:hover { text-decoration: underline; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-illustration { max-width: 320px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 48px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .steps { flex-direction: column; gap: 40px; }
  .step-connector { width: 40px; height: 1px; margin: 0; }
}
@media (max-width: 640px) {
  .hero { padding: 60px 24px 0; }
  .how, .features, .manifesto, .closing { padding: 72px 24px; }
  .nav { padding: 16px 24px; }
  .feature-grid { grid-template-columns: 1fr; }
  .manifesto-stat-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .nav-tagline { display: none; }
}