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

:root {
  --g: #5D9858;
  --g2: #7ec278;
  --g3: #3d6639;
  --black: #080808;
  --white: #ede9e2;
  --muted: #4a4a4a;
  --border: rgba(255,255,255,0.06);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Geist', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ── CURSOR ── */
#cur { 
  width: 7px; height: 7px; 
  background: var(--g); 
  border-radius: 50%; 
  position: fixed; 
  z-index: 9999; 
  pointer-events: none; 
  transform: translate(-50%,-50%);
  transition: transform 0.1s ease;
}
#cur-ring { 
  width: 34px; height: 34px; 
  border: 1px solid rgba(93,152,88,0.35); 
  border-radius: 50%; 
  position: fixed; 
  z-index: 9998; 
  pointer-events: none; 
  transform: translate(-50%,-50%);
}

/* ── GLOBAL CANVAS ── */
#bg-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0; /* hidden on entry, revealed after transition */
  transition: opacity 1.4s ease;
}
#bg-canvas.revealed { opacity: 1; }

/* ── GRAIN OVERLAY ── */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 256px;
}

/* ═══════════════════════════════════
   ENTRY SCREEN
═══════════════════════════════════ */
#entry {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #080808; /* pure black — canvas hidden beneath */
  display: flex;
  flex-direction: column;
  pointer-events: all;
  transition: opacity 1.3s cubic-bezier(0.76,0,0.24,1), transform 1.3s cubic-bezier(0.76,0,0.24,1);
}
#entry.leaving {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
}

/* Logo top-left */
.entry-logo {
  position: absolute;
  top: 32px; left: 48px;
  display: flex; align-items: center; gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 300; letter-spacing: 0.02em;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.7s 0.3s forwards;
}

/* Centered content */
.entry-center {
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center; padding: 0 24px;
  position: relative; z-index: 2;
}

.entry-video {
  width: 100px;
  height: 100px;
  object-fit: contain;
  margin-top: 0;
  margin-bottom: 60px; /* More space below logo */
  opacity: 0;
  animation: fadeUp 0.8s 0.2s forwards;
  pointer-events: none;
  mix-blend-mode: screen;
}

.entry-eyebrow {
  font-family: 'Geist', sans-serif;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.8s 0.5s forwards;
}

.entry-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(60px, 11vw, 140px);
  font-weight: 300;
  letter-spacing: -0.03em;
  line-height: 0.95;
  text-align: center;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeUp 0.9s 0.7s forwards;
}
.entry-title em {
  font-style: italic;
  color: var(--g2);
}

.entry-sub {
  font-size: 14px;
  color: rgba(237,233,226,0.35);
  letter-spacing: 0.06em;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.9s 0.95s forwards;
}

.entry-btn {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 100px;
  overflow: hidden;
  cursor: none;
  opacity: 0;
  animation: fadeUp 0.9s 1.2s forwards;
  transition: border-color 0.3s ease;
}
.entry-btn:hover { border-color: rgba(93,152,88,0.4); }
.entry-btn-text {
  padding: 14px 28px 14px 32px;
  font-family: 'Geist', sans-serif;
  font-size: 14px; font-weight: 400;
  color: var(--white); letter-spacing: 0.05em; white-space: nowrap;
}
.entry-btn-icon {
  width: 44px; height: 44px;
  background: var(--g);
  display: flex; align-items: center; justify-content: center;
  margin: 4px 4px 4px 0;
  border-radius: 100px;
  transition: background 0.2s ease; flex-shrink: 0;
}
.entry-btn:hover .entry-btn-icon { background: var(--g2); }

/* Scroll zone — bottom strip, triggers transition on scroll */
.entry-scroll-zone {
  height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 36px;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 0.9s 1.8s forwards;
  flex-shrink: 0;
  position: relative; z-index: 2;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, transparent, rgba(93,152,88,0.7));
  animation: scrollPulse 2.2s 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}
.scroll-label {
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════
   MAIN CONTENT
═══════════════════════════════════ */
#main {
  position: relative;
  z-index: 2;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
#main.visible {
  opacity: 1;
  pointer-events: all;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 52px;
  opacity: 0;
  transition: opacity 0.6s ease, backdrop-filter 0.4s ease, background 0.4s ease, padding 0.4s ease;
}
nav.visible { opacity: 1; }
nav.scrolled {
  padding: 16px 52px;
  backdrop-filter: blur(24px);
  background: rgba(8,8,8,0.65);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.logo-svg { width: 26px; height: 26px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--white); }

.nav-cta {
  border: 1px solid rgba(93,152,88,0.4) !important;
  color: var(--g2) !important;
  padding: 9px 20px;
  border-radius: 100px;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
  text-transform: uppercase !important;
}
.nav-cta:hover {
  background: var(--g) !important;
  color: var(--black) !important;
  border-color: var(--g) !important;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 52px;
  position: relative;
}

.hero-inner {
  max-width: 620px;
  padding-top: 80px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 36px;
}
.tag-dot {
  width: 5px; height: 5px;
  background: var(--g);
  border-radius: 50%;
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(50px, 6.5vw, 84px);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.hero-h1 em {
  font-style: italic;
  color: var(--g2);
}

.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(237,233,226,0.45);
  max-width: 400px;
  margin-bottom: 44px;
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--g);
  color: var(--black);
  border: none;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-primary:hover { background: var(--g2); }
.btn-primary:active { transform: scale(0.97); }

.btn-ghost {
  background: transparent;
  border: none;
  color: rgba(237,233,226,0.4);
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  cursor: none;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 14px 0;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}
.btn-ghost:hover { color: var(--white); }
.btn-ghost svg { transition: transform 0.2s ease; }
.btn-ghost:hover svg { transform: translateX(4px); }

.hero-proof {
  margin-top: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.avatars { display: flex; }
.av {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--g3);
  border: 1.5px solid var(--black);
  margin-left: -7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px;
  color: rgba(255,255,255,0.7);
}
.av:first-child { margin-left: 0; }
.proof-txt {
  font-size: 12px;
  color: var(--muted);
}
.proof-txt strong { color: var(--white); font-weight: 400; }

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 52px;
}

/* ── HOW IT WORKS ── */
.section {
  padding: 120px 52px;
  max-width: 1240px;
  margin: 0 auto;
}

.s-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 18px;
  width: 100%;
}
.s-label::before, .s-label::after {
  content: '';
  width: 22px; height: 1px;
  background: var(--g);
}

.s-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 58px);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 auto 72px auto;
  text-align: center;
  max-width: 480px;
  width: 100%;
  display: block;
}
.s-h2 em {
  font-style: italic;
  color: rgba(237,233,226,0.3);
}

/* Steps */
.steps-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.step {
  padding: 52px 44px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.4s ease;
}
.step:last-child { border-right: none; }
.step::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--g), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.step:hover::after { transform: scaleX(1); }
.step:hover { background: rgba(93,152,88,0.025); }

.step-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 12px;
  font-style: italic;
  color: var(--g3);
  letter-spacing: 0.06em;
  margin-bottom: 36px;
}

.step-ico {
  width: 36px; height: 36px;
  color: var(--g);
  margin-bottom: 24px;
}

.step-title {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--white);
}

.step-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(237,233,226,0.38);
}

/* Numbers */
.nums-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 120px;
}

.num-item {
  padding: 40px 36px;
  border-right: 1px solid var(--border);
}
.num-item:last-child { border-right: none; }

.num-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 4.5vw, 58px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.num-val em {
  font-style: italic;
  color: var(--g);
}

.num-label {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
  max-width: 140px;
}

/* Why cards */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.why-card {
  background: var(--black);
  padding: 56px 52px;
  transition: background 0.3s ease;
  position: relative;
}
.why-card:hover { background: rgba(93,152,88,0.02); }

.why-ico {
  width: 28px; height: 28px;
  color: var(--g);
  opacity: 0.65;
  margin-bottom: 26px;
}

.why-title {
  font-size: 17px;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.why-desc {
  font-size: 13.5px;
  line-height: 1.8;
  color: rgba(237,233,226,0.38);
  margin-bottom: 22px;
}

.why-pill {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--g);
  border: 1px solid var(--g3);
  padding: 5px 12px;
  border-radius: 100px;
}

/* CTA */
.cta-wrap {
  text-align: center;
  padding: 120px 52px;
  position: relative;
}

.cta-glow {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  width: 500px; height: 160px;
  background: radial-gradient(ellipse, rgba(93,152,88,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--g);
  margin-bottom: 20px;
}
.cta-label::before, .cta-label::after {
  content: '';
  width: 22px; height: 1px;
  background: var(--g);
}

.cta-h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.cta-h2 em { font-style: italic; color: var(--g2); }

.cta-sub {
  font-size: 15px;
  color: rgba(237,233,226,0.4);
  margin-bottom: 44px;
  line-height: 1.6;
}

.waitlist-form {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 440px;
  margin: 0 auto 14px;
}

.w-input {
  flex: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--white);
  padding: 13px 20px;
  border-radius: 100px;
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease;
}
.w-input::placeholder { color: var(--muted); }
.w-input:focus { border-color: rgba(93,152,88,0.4); }

.cta-note { font-size: 11px; color: var(--muted); letter-spacing: 0.04em; }
.cta-success {
  display: none;
  font-size: 14px;
  color: var(--g2);
  letter-spacing: 0.03em;
}

/* Footer */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.f-brand {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 300;
}

.f-links {
  display: flex;
  gap: 28px;
}
.f-links a {
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s ease;
}
.f-links a:hover { color: var(--white); }

.f-copy {
  flex: 1;
  text-align: right;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.05em;
}

/* ── REVEAL ── */
.r {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.r.on { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  nav { padding: 18px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .hero { padding: 0 24px; }
  .section { padding: 80px 24px; }
  .steps-wrap { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border); }
  .step:last-child { border-bottom: none; }
  .nums-grid { grid-template-columns: 1fr 1fr; }
  .num-item:nth-child(2) { border-right: none; }
  .num-item:nth-child(3), .num-item:nth-child(4) { border-top: 1px solid var(--border); }
  .num-item:nth-child(4) { border-right: none; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-wrap { padding: 80px 24px; }
  footer { flex-direction: column; gap: 20px; padding: 28px 24px; text-align: center; }
  .f-copy { text-align: center; }
  .f-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .divider { margin: 0 24px; }
}