:root {
  --forest: #0c5d00;
  --forest-light: #0e7a00; /* hover variant — not a theme token */
  --gold: #eda600;
  --gold-light: #f5bc2e; /* hover variant — not a theme token */
  --windsor: #0A1824;
  --cocoa: #4B3621;
  --cream: #F5F5F0;
  --cream-dark: #E8E8E0;
  --white: #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--cocoa);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

/* ========================= ANIMATIONS ========================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 0 0 rgba(237, 166, 0, 0.3); }
  50% { box-shadow: 0 0 0 12px rgba(237, 166, 0, 0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.animate-fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease-out forwards;
}
.animate-fade-in {
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}
.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }
.delay-6 { animation-delay: 0.9s; }

/* ========================= NAV ========================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 245, 240, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(75, 54, 33, 0.06);
  animation: fadeIn 0.5s ease-out;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo-img { height: 26px; width: auto; max-width: 220px; }
.nav-cta {
  background: var(--forest);
  color: var(--cream);
  border: none;
  padding: 10px 24px;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}
.nav-cta:hover { background: var(--forest-light); transform: translateY(-1px); }

/* ========================= HERO ========================= */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 93, 0, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(237, 166, 0, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-logo {
  max-width: 380px;
  width: 100%;
  height: auto;
  margin-bottom: 40px;
  animation: scaleIn 0.8s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--cream-dark);
  border-radius: 9999px;
  padding: 8px 20px 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--cocoa);
  margin-bottom: 32px;
  box-shadow: 0 2px 12px rgba(75, 54, 33, 0.06);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-gold 2s ease-in-out infinite;
}

.hero h1 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.1;
  color: var(--forest);
  max-width: 780px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.hero h1 .gold { color: var(--gold); }

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--cocoa);
  opacity: 0.75;
  max-width: 560px;
  line-height: 1.65;
  margin-bottom: 44px;
  font-weight: 400;
}

/* Email CTA in hero */
.hero-email-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  width: 100%;
  margin-bottom: 16px;
}
.hero-email-form input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  background: var(--white);
  color: var(--cocoa);
  outline: none;
  transition: border-color 0.25s ease;
}
.hero-email-form input::placeholder { color: var(--cocoa); opacity: 0.4; }
.hero-email-form input:focus { border-color: var(--forest); }
.hero-email-form button {
  padding: 16px 32px;
  background: var(--forest);
  color: var(--cream);
  border: none;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.hero-email-form button:hover { background: var(--forest-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(12, 93, 0, 0.2); }
.hero-disclaimer {
  font-size: 13px;
  color: var(--cocoa);
  opacity: 0.45;
  font-weight: 400;
}

/* Success state */
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(12, 93, 0, 0.08);
  border-radius: 10px;
  padding: 16px 24px;
  margin-bottom: 16px;
}
.form-success.show { display: flex; }
.form-success svg { flex-shrink: 0; }
.form-success span {
  font-weight: 500;
  font-size: 15px;
  color: var(--forest);
}
.form-error {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(179, 58, 58, 0.08);
  border-radius: 10px;
  padding: 14px 18px;
  margin-top: 14px;
}
.form-error.show { display: flex; }
.form-error svg { flex-shrink: 0; }
.form-error span {
  font-weight: 500;
  font-size: 15px;
  color: #b33a3a;
}

/* ========================= SECTION SHARED ========================= */
section {
  padding: 100px 24px;
}
.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}
.section-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.15;
  color: var(--forest);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}
.section-desc {
  font-size: 17px;
  color: var(--cocoa);
  opacity: 0.7;
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ========================= THE PROBLEM ========================= */
.problem-section {
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.problem-text-block h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 16px;
  line-height: 1.3;
}
.problem-text-block p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--cocoa);
  opacity: 0.75;
}
.problem-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.stats-column-label {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding-bottom: 12px;
  margin-bottom: 0;
  text-align: center;
}
.stats-column-label.before {
  color: var(--cocoa);
  opacity: 0.4;
}
.stats-column-label.after {
  color: var(--forest);
}
.stats-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
}
.stat-card.after {
  background: rgba(12, 93, 0, 0.04);
  border: 1px solid rgba(12, 93, 0, 0.1);
}
.stat-card .stat-number {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 26px;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-card .stat-number.gold { color: var(--gold); }
.stat-card .stat-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--cocoa);
  opacity: 0.6;
  line-height: 1.4;
}

/* ========================= FEATURES ========================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px 32px;
  box-shadow: 0 2px 24px rgba(75, 54, 33, 0.05);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(75, 54, 33, 0.1);
  border-color: rgba(12, 93, 0, 0.08);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.feature-icon.green { background: rgba(12, 93, 0, 0.08); }
.feature-icon.gold { background: rgba(237, 166, 0, 0.1); }
.feature-icon.blue { background: rgba(10, 24, 36, 0.06); }
.feature-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--forest);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--cocoa);
  opacity: 0.7;
}

/* ========================= HOW IT WORKS ========================= */
.how-section {
  background: var(--windsor);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.how-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 93, 0, 0.15) 0%, transparent 70%);
  pointer-events: none;
}
.how-section .section-label { color: var(--gold); }
.how-section .section-title { color: var(--cream); }
.how-section .section-desc { color: var(--cream); opacity: 0.6; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.how-step {
  position: relative;
  padding: 32px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.3s ease;
}
.how-step:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(237, 166, 0, 0.2);
}
.step-num {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 40px;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 16px;
}
.how-step h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--cream);
  margin-bottom: 10px;
}
.how-step p {
  font-size: 13px;
  line-height: 1.65;
  color: var(--cream);
  opacity: 0.5;
}

/* ========================= TIMELINE / STATUS ========================= */
.timeline-section {
  background: var(--white);
  border-top: 1px solid var(--cream-dark);
  border-bottom: 1px solid var(--cream-dark);
}
.timeline-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding-top: 32px;
}
.timeline-track::before {
  content: '';
  position: absolute;
  top: 56px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: var(--cream-dark);
  border-radius: 2px;
}
.timeline-track::after {
  content: '';
  position: absolute;
  top: 56px;
  left: 40px;
  width: 38%;
  height: 3px;
  background: linear-gradient(90deg, var(--forest), var(--gold));
  border-radius: 2px;
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}
.timeline-phase {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}
.timeline-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 0 auto 16px;
  border: 3px solid var(--cream-dark);
  background: var(--white);
  transition: all 0.3s ease;
}
.timeline-dot.complete {
  background: var(--forest);
  border-color: var(--forest);
}
.timeline-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  animation: pulse-gold 2s ease-in-out infinite;
}
.timeline-dot.future {
  background: var(--white);
  border-color: var(--cream-dark);
}
.timeline-phase h4 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--forest);
  margin-bottom: 4px;
}
.timeline-phase .phase-date {
  font-size: 12px;
  font-weight: 500;
  color: var(--cocoa);
  opacity: 0.5;
  margin-bottom: 8px;
}
.timeline-phase .phase-desc {
  font-size: 13px;
  color: var(--cocoa);
  opacity: 0.6;
  line-height: 1.5;
  max-width: 180px;
  margin: 0 auto;
}
.timeline-current-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(237, 166, 0, 0.12);
  color: var(--cocoa);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 9999px;
  margin-bottom: 6px;
}

/* ========================= HORIZONS / ROADMAP ========================= */
.horizons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.horizon-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 28px 24px;
  position: relative;
}
.horizon-card.launching {
  background: var(--white);
  border: 2px solid var(--forest);
}
.horizon-label {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: var(--cocoa);
  opacity: 0.45;
}
.horizon-card.launching .horizon-label {
  color: var(--forest);
  opacity: 1;
}
.horizon-card h4 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.3;
}
.horizon-card p {
  font-size: 13px;
  color: var(--cocoa);
  opacity: 0.6;
  line-height: 1.6;
}
.horizon-card.launching p {
  opacity: 0.75;
}
.horizon-launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(12, 93, 0, 0.08);
  color: var(--forest);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 9999px;
  margin-bottom: 12px;
}
@media (max-width: 900px) {
  .horizons-grid { grid-template-columns: 1fr; }
}

/* ========================= BETA CTA SECTION ========================= */
.beta-section {
  background: var(--forest);
  position: relative;
  overflow: hidden;
}
.beta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse 500px 400px at 20% 80%, rgba(237, 166, 0, 0.08) 0%, transparent 100%),
    radial-gradient(ellipse 400px 400px at 80% 20%, rgba(245, 245, 240, 0.04) 0%, transparent 100%);
  pointer-events: none;
}
.beta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.beta-section .section-label { color: var(--gold); }
.beta-section .section-title { color: var(--cream); font-size: clamp(28px, 4vw, 38px); margin-bottom: 20px; }
.beta-section .section-desc {
  color: var(--cream);
  opacity: 0.7;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 16px;
}
.beta-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto 14px;
}
.beta-form input {
  flex: 1;
  padding: 16px 20px;
  border: 2px solid rgba(245, 245, 240, 0.15);
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  background: rgba(245, 245, 240, 0.08);
  color: var(--cream);
  outline: none;
  transition: border-color 0.25s ease;
}
.beta-form input::placeholder { color: var(--cream); opacity: 0.4; }
.beta-form input:focus { border-color: var(--gold); background: rgba(245, 245, 240, 0.12); }
.beta-form button {
  padding: 16px 32px;
  background: var(--gold);
  color: var(--windsor);
  border: none;
  border-radius: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
}
.beta-form button:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(237, 166, 0, 0.3); }
.beta-disclaimer {
  font-size: 13px;
  color: var(--cream);
  opacity: 0.4;
  text-align: center;
}
.beta-perks {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.beta-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.7;
}
.beta-perk svg { opacity: 0.9; }

/* ========================= VALUES ========================= */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.value-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 2px 20px rgba(75, 54, 33, 0.04);
  border: 1px solid rgba(75, 54, 33, 0.04);
  transition: all 0.3s ease;
}
.value-card:hover { border-color: rgba(12, 93, 0, 0.1); }
.value-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 17px;
  color: var(--forest);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--cocoa);
  opacity: 0.65;
}

/* ========================= FOOTER ========================= */
footer {
  background: var(--windsor);
  color: var(--cream);
  padding: 56px 24px 40px;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-logo-img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 260px;
  padding: 10px 15px 10px 10px;
  background: rgba(245, 245, 240, 0.5); /* --cream at 50% — subtle contrast, not opaque */
  border-radius: 12px;
  box-sizing: content-box;
}
.footer-tagline {
  font-size: 15px;
  opacity: 0.5;
  margin-bottom: 32px;
  font-style: italic;
}
.footer-links {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer-links a:hover { opacity: 0.9; }
.footer-copy {
  font-size: 12px;
  opacity: 0.3;
}

/* ========================= RESPONSIVE ========================= */
@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .how-steps { grid-template-columns: 1fr 1fr; }
  .timeline-track { flex-direction: column; align-items: stretch; gap: 24px; padding-top: 0; }
  .timeline-track::before, .timeline-track::after { display: none; }
  .timeline-phase { text-align: left; display: flex; align-items: flex-start; gap: 16px; }
  .timeline-dot { margin: 4px 0 0 0; flex-shrink: 0; }
  .timeline-phase .phase-desc { max-width: none; }
  .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  nav { padding: 12px 16px; }
  .nav-cta { padding: 8px 16px; font-size: 13px; }
  .hero { padding: 100px 20px 60px; }
  .hero-email-form { flex-direction: column; }
  .hero-email-form button { width: 100%; }
  .features-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .beta-form { flex-direction: column; }
  .beta-form button { width: 100%; }
  .beta-perks { flex-direction: column; align-items: center; gap: 16px; }
  section { padding: 64px 20px; }
}
