:root {
  --cream: #f4f0e6;
  --cream-2: #ebe6d7;
  --paper: #fbf8f0;
  --ink: #1a2b21;
  --ink-soft: #3a4a3f;
  --moss: #2f5d3f;
  --moss-deep: #1e3f2a;
  --leaf: #6ba368;
  --leaf-bright: #8fc98a;
  --gold: #b8955c;
  --hairline: rgba(26, 43, 33, 0.14);
  --hairline-strong: rgba(26, 43, 33, 0.28);
  --shadow: 0 30px 60px -30px rgba(26, 43, 33, 0.35);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 200; opacity: 0.35; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.16 0 0 0 0 0.12 0 0 0 0.06 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

/* --- Nav --- */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px clamp(20px, 5vw, 64px);
  backdrop-filter: blur(10px);
  background: rgba(244, 240, 230, 0.75);
  border-bottom: 1px solid var(--hairline);
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 22px; letter-spacing: -0.01em;
  color: var(--moss-deep);
}
.leaf {
  width: 20px; height: 20px; display: inline-block; position: relative;
  background: radial-gradient(circle at 30% 30%, var(--leaf-bright), var(--moss) 70%);
  border-radius: 0 100% 0 100%;
  transform: rotate(-15deg);
}
.leaf::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.35) 41%, transparent 43%);
  border-radius: inherit;
}
.nav-links { display: flex; align-items: center; gap: clamp(14px, 3vw, 30px); font-size: 14px; }
.nav-links a { color: var(--ink-soft); transition: color .2s; }
.nav-links a:hover { color: var(--moss); }
.nav-cta {
  background: var(--moss-deep); color: var(--paper) !important;
  padding: 9px 16px; border-radius: 999px; font-weight: 500;
}
.nav-cta:hover { background: var(--moss); }
@media (max-width: 640px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* --- Type --- */
.display {
  font-family: 'Fraunces', serif;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 108px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--moss-deep);
  font-variation-settings: "opsz" 144;
}
.display em { font-style: italic; color: var(--moss); font-weight: 400; }
.display.sm { font-size: clamp(36px, 5.5vw, 68px); line-height: 1.02; }
.display.light { color: var(--paper); }
.display.light em { color: var(--leaf-bright); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-soft); font-weight: 500;
  padding: 8px 14px; border-radius: 999px;
  background: rgba(107, 163, 104, 0.14);
  border: 1px solid rgba(107, 163, 104, 0.3);
  margin-bottom: 28px;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--leaf); box-shadow: 0 0 0 3px rgba(107, 163, 104, 0.25);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .45; } }

/* --- Hero --- */
.hero {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  padding: clamp(48px, 8vw, 120px) clamp(20px, 5vw, 64px) clamp(60px, 8vw, 100px);
  max-width: 1360px; margin: 0 auto;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
}
.lede {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.55; color: var(--ink-soft);
  max-width: 52ch; margin: 28px 0 36px;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 15px 26px; border-radius: 999px; font-weight: 500; font-size: 15px;
  border: 1px solid transparent; transition: transform .2s, background .2s, color .2s, box-shadow .2s;
  cursor: pointer;
}
.btn-primary { background: var(--moss-deep); color: var(--paper); box-shadow: 0 10px 30px -10px rgba(30, 63, 42, 0.5); }
.btn-primary:hover { background: var(--moss); transform: translateY(-1px); box-shadow: 0 14px 32px -10px rgba(30, 63, 42, 0.6); }
.btn-ghost { background: transparent; color: var(--moss-deep); border-color: var(--hairline-strong); }
.btn-ghost:hover { background: rgba(30, 63, 42, 0.06); }

.proof {
  margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  padding-top: 28px; border-top: 1px solid var(--hairline);
  max-width: 520px;
}
.proof div { display: flex; flex-direction: column; gap: 4px; }
.proof strong {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 34px; color: var(--moss-deep); letter-spacing: -0.02em;
}
.proof span { font-size: 12px; color: var(--ink-soft); letter-spacing: 0.02em; }

/* --- Hero visual --- */
.hero-visual {
  position: relative; display: flex; align-items: center; justify-content: center;
  min-height: 480px;
}
.vessel {
  position: relative; width: min(360px, 90%); aspect-ratio: 3 / 4;
}
.vessel-glow {
  position: absolute; inset: -30% -20% -10% -20%;
  background: radial-gradient(ellipse at 50% 40%, rgba(143, 201, 138, 0.35), transparent 60%);
  filter: blur(20px);
  z-index: 0;
}
.vessel-body {
  position: absolute; inset: 0;
  border-radius: 46% 46% 12% 12% / 22% 22% 8% 8%;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.55), transparent 55%),
    linear-gradient(180deg, #efe8d3, #d9cfb5 55%, #b8ac8c);
  box-shadow:
    inset 0 -12px 30px rgba(0,0,0,0.15),
    inset 0 6px 12px rgba(255,255,255,0.5),
    var(--shadow);
  overflow: hidden;
  z-index: 1;
}
.water {
  position: absolute; left: 8%; right: 8%; bottom: 14%; height: 28%;
  background: linear-gradient(180deg, rgba(107, 163, 104, 0.35), rgba(47, 93, 63, 0.55));
  border-radius: 50% 50% 12% 12% / 20% 20% 8% 8%;
  box-shadow: inset 0 6px 14px rgba(255,255,255,0.35), inset 0 -6px 20px rgba(30,63,42,0.4);
}
.stem {
  position: absolute; bottom: 40%; width: 3px;
  background: linear-gradient(180deg, var(--leaf) 0%, var(--moss) 100%);
  border-radius: 3px;
  transform-origin: bottom center;
  animation: sway 6s ease-in-out infinite;
}
.stem-1 { left: 32%; height: 44%; animation-delay: -0.4s; }
.stem-2 { left: 44%; height: 52%; animation-delay: -1.2s; }
.stem-3 { left: 52%; height: 38%; animation-delay: -2.1s; }
.stem-4 { left: 60%; height: 48%; animation-delay: -0.8s; }
.stem-5 { left: 40%; height: 30%; animation-delay: -1.7s; }
@keyframes sway {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2.5deg); }
}
.stem span {
  position: absolute; width: 22px; height: 14px;
  background: radial-gradient(ellipse at 30% 30%, var(--leaf-bright), var(--moss) 80%);
  border-radius: 0 100% 0 100%;
  box-shadow: inset -2px -2px 4px rgba(30,63,42,0.4);
}
.leaf-a { top: 10%; left: 100%; transform: rotate(20deg); }
.leaf-b { top: 40%; right: 100%; transform: rotate(200deg); }
.leaf-c { top: 70%; left: 100%; transform: rotate(30deg); width: 26px; height: 16px; }

.vessel-base {
  position: absolute; left: 5%; right: 5%; bottom: -6%; height: 14%;
  background: linear-gradient(180deg, #2a3a2f, #1a2b21);
  border-radius: 8px 8px 14px 14px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.5);
  z-index: 2;
}
.readout {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--leaf-bright); font-family: 'Inter', sans-serif; font-size: 11px;
  letter-spacing: 0.12em; text-transform: uppercase;
}
.readout-label { opacity: 0.9; }
.pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--leaf-bright);
  box-shadow: 0 0 8px var(--leaf-bright);
  animation: pulse 1.6s ease-in-out infinite;
}

/* --- Marquee --- */
.marquee-wrap {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 22px 0;
  overflow: hidden;
  background: var(--paper);
}
.marquee {
  display: flex; gap: 28px; white-space: nowrap;
  animation: scroll 45s linear infinite;
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
  font-size: clamp(20px, 2.4vw, 30px); color: var(--moss-deep);
}
.marquee span { flex-shrink: 0; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* --- Sections --- */
.section-head {
  max-width: 1360px; margin: 0 auto;
  padding: clamp(60px, 8vw, 110px) clamp(20px, 5vw, 64px) clamp(30px, 4vw, 50px);
  display: flex; align-items: flex-start; gap: clamp(20px, 4vw, 40px);
}
@media (max-width: 700px) { .section-head { flex-direction: column; gap: 14px; } }
.section-num {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 300;
  font-size: 20px; color: var(--gold); flex-shrink: 0;
  padding-top: 12px; letter-spacing: 0.05em;
}
.section-num.light { color: var(--leaf-bright); }

/* Steps */
.steps {
  max-width: 1360px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px) clamp(60px, 8vw, 100px);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px);
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step {
  padding-top: 32px; border-top: 1px solid var(--hairline-strong);
}
.step-num {
  font-family: 'Fraunces', serif; font-style: italic; font-size: 22px;
  color: var(--gold); margin-bottom: 20px;
}
.step h3 {
  font-family: 'Fraunces', serif; font-weight: 400; font-size: 28px;
  color: var(--moss-deep); margin: 0 0 14px; line-height: 1.15; letter-spacing: -0.01em;
}
.step p { color: var(--ink-soft); margin: 0; max-width: 38ch; }

/* Garden features */
.garden { background: var(--paper); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.garden-grid {
  max-width: 1360px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px) clamp(60px, 8vw, 100px);
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 24px);
}
.feature {
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 32px;
  min-height: 240px;
  transition: transform .3s, box-shadow .3s;
}
.feature:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.feature-lg { grid-column: span 2; grid-row: span 2;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(107, 163, 104, 0.2), transparent 55%),
    linear-gradient(180deg, var(--moss-deep), #143020);
  color: var(--paper); border-color: transparent;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 44px; min-height: 100%;
}
.feature-lg .feature-tag { color: var(--leaf-bright); border-color: rgba(143, 201, 138, 0.3); background: rgba(143, 201, 138, 0.08); }
.feature-lg h3 { color: var(--paper); }
.feature-lg p { color: rgba(251, 248, 240, 0.75); }
.feature-tag {
  display: inline-block; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--moss); padding: 5px 12px; border-radius: 999px;
  border: 1px solid rgba(47, 93, 63, 0.3); background: rgba(107, 163, 104, 0.08);
  margin-bottom: 20px; font-weight: 500;
}
.feature h3 {
  font-family: 'Fraunces', serif; font-weight: 400; font-size: clamp(22px, 2vw, 28px);
  color: var(--moss-deep); margin: 0 0 12px; letter-spacing: -0.01em; line-height: 1.15;
}
.feature p { color: var(--ink-soft); margin: 0; font-size: 15px; }
@media (max-width: 1000px) {
  .garden-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-lg { grid-column: span 2; grid-row: auto; min-height: 320px; }
}
@media (max-width: 600px) {
  .garden-grid { grid-template-columns: 1fr; }
  .feature-lg { grid-column: span 1; }
}

/* Science */
.science-body {
  max-width: 1360px; margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px) clamp(60px, 8vw, 100px);
}
.pull {
  font-family: 'Fraunces', serif; font-weight: 300;
  font-size: clamp(22px, 2.4vw, 32px); line-height: 1.35; color: var(--ink);
  max-width: 32ch; margin: 0 0 60px;
  padding-left: clamp(0px, 4vw, 60px);
  border-left: 1px solid var(--hairline-strong);
  padding-left: 24px;
}
.science-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(30px, 4vw, 60px) clamp(30px, 5vw, 80px);
}
@media (max-width: 700px) { .science-grid { grid-template-columns: 1fr; } }
.science-grid > div {
  padding-top: 22px; border-top: 1px solid var(--hairline);
}
.science-grid h4 {
  font-family: 'Fraunces', serif; font-weight: 500; font-size: 20px;
  color: var(--moss-deep); margin: 0 0 10px; letter-spacing: -0.005em;
}
.science-grid p { color: var(--ink-soft); margin: 0; }

/* Waitlist */
.waitlist {
  background:
    radial-gradient(ellipse at 20% 10%, rgba(107, 163, 104, 0.25), transparent 50%),
    radial-gradient(ellipse at 90% 90%, rgba(184, 149, 92, 0.15), transparent 50%),
    linear-gradient(180deg, var(--moss-deep), #0f2418);
  color: var(--paper);
  padding: clamp(80px, 12vw, 160px) clamp(20px, 5vw, 64px);
}
.waitlist-inner {
  max-width: 760px; margin: 0 auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 22px;
}
.light-lede { color: rgba(251, 248, 240, 0.75); max-width: 52ch; margin: 0; font-size: clamp(16px, 1.3vw, 18px); }
.waitlist-form {
  display: flex; gap: 8px; width: 100%; max-width: 460px;
  background: rgba(251, 248, 240, 0.08);
  border: 1px solid rgba(251, 248, 240, 0.2);
  padding: 6px; border-radius: 999px; margin-top: 16px;
  backdrop-filter: blur(6px);
}
.waitlist-form input {
  flex: 1; background: transparent; border: 0; outline: 0;
  color: var(--paper); font: inherit; padding: 12px 20px; font-size: 15px;
}
.waitlist-form input::placeholder { color: rgba(251, 248, 240, 0.45); }
.waitlist-form button {
  background: var(--paper); color: var(--moss-deep);
  border: 0; padding: 12px 24px; border-radius: 999px; font: inherit; font-weight: 500; font-size: 15px;
  cursor: pointer; transition: transform .2s, background .2s;
}
.waitlist-form button:hover { background: var(--leaf-bright); transform: translateY(-1px); }
.tiny { font-size: 13px !important; }
@media (max-width: 500px) {
  .waitlist-form { flex-direction: column; border-radius: 20px; padding: 10px; }
  .waitlist-form button { padding: 14px; }
}

/* Footer */
.foot {
  padding: 40px clamp(20px, 5vw, 64px);
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; flex-wrap: wrap;
  border-top: 1px solid var(--hairline);
  color: var(--ink-soft); font-size: 13px;
}
.foot-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Fraunces', serif; font-size: 20px; color: var(--moss-deep);
}
.foot-meta { display: flex; flex-direction: column; gap: 4px; text-align: right; }
.foot-meta a { border-bottom: 1px solid var(--hairline); }
@media (max-width: 600px) { .foot-meta { text-align: left; } }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
