/* ============================================================
   AI Ponics — coming-soon landing page
   Light, airy, Scandinavian-minimal hardware-startup feel.
   Tokens up top, layout below.
   ============================================================ */

:root {
  --green-900:   #0F4C3A;
  --green-700:   #1B7A55;
  --green-500:   #34A370;
  --green-50:    #EAF6EE;
  --leaf-300:    #94D3A2;

  --navy-900:    #0E2347;
  --navy-700:    #243C66;

  --bg:          #FBFAF5;
  --bg-alt:      #F4F1E8;
  --surface:     #FFFFFF;
  --line:        #E5DFD0;

  --text:        #14241E;
  --text-body:   #44514B;
  --text-mute:   #79867F;

  --shadow-sm:   0 1px 2px rgba(20, 36, 30, 0.05);
  --shadow:      0 12px 32px -16px rgba(20, 36, 30, 0.18);
  --shadow-lg:   0 28px 60px -24px rgba(20, 36, 30, 0.22);

  --radius:      14px;
  --radius-lg:   22px;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);

  --container:   1180px;
  --container-px: clamp(20px, 4vw, 40px);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text-body);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; color: inherit; }
a { color: var(--green-700); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--green-900); }

h1, h2, h3, h4 {
  font-family: 'Fraunces', 'Inter', Georgia, serif;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 .4em;
  line-height: 1.12;
}
p { margin: 0 0 1em; }
em { font-style: italic; color: var(--green-700); }

.skip-link {
  position: absolute; top: -40px; left: 16px;
  background: var(--green-900); color: #fff;
  padding: 8px 14px; border-radius: 8px;
  z-index: 100; transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-700);
  margin-bottom: 14px;
}

.section__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.section__head h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  margin: 0 0 12px;
}
.section__head p {
  margin: 0;
  font-size: 1.02rem;
  color: var(--text-body);
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 250, 245, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  transition: transform .25s var(--ease-out);
}
.brand img { height: 44px; width: auto; }
.brand:hover { transform: translateY(-1px); }

.nav__contact {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.nav__contact:hover {
  border-color: var(--green-500);
  color: var(--green-900);
  transform: translateY(-1px);
}

@media (max-width: 540px) {
  .nav__contact { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: clamp(70px, 12vh, 140px) 0 clamp(80px, 12vh, 140px);
  overflow: hidden;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}
.hero__blob--a {
  width: 480px; height: 480px;
  top: -160px; right: -120px;
  background: radial-gradient(closest-side, var(--leaf-300), transparent 70%);
  opacity: 0.55;
}
.hero__blob--b {
  width: 600px; height: 600px;
  bottom: -240px; left: -180px;
  background: radial-gradient(closest-side, #DCEBC9, transparent 70%);
  opacity: 0.7;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}

.hero__copy { max-width: 640px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 16px 8px 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-900);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.badge__pulse {
  position: relative;
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-500);
}
.badge__pulse::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: var(--green-500);
  opacity: 0.4;
  animation: pulse 2s var(--ease) infinite;
}
@keyframes pulse {
  0%   { transform: scale(0.6); opacity: 0.55; }
  70%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hero__title {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 500;
  margin: 0 0 24px;
}

/* Word-swap inside the headline. The container reserves space using the
   widest word (`sprouting`) so the period after it doesn't jitter. */
.word-swap {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  min-width: 4.6ch;          /* widest word ~= "sprouting" */
  text-align: left;
}
.word-swap em { display: inline-block; }
.word-swap.is-swapping em {
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.word-swap em {
  transition: opacity .45s var(--ease-out), transform .45s var(--ease-out);
}

/* Drifting decorative leaves in the hero bg. */
.drift {
  position: absolute;
  inset: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: none;
  z-index: 0;
}
.drift__leaf {
  position: absolute;
  width: 14px; height: 18px;
  background: #94D3A2;
  border-radius: 0 100% 0 100%;     /* organic leaf curve */
  opacity: 0;
  filter: blur(0.4px);
  will-change: transform, opacity;
}
/* Each leaf gets its own start position, size, color, and timing so the
   bg doesn't read as a uniform pattern. */
.drift__leaf--1 { left: 8%;  top: 100%; width: 12px; height: 16px; background: #94D3A2; animation: drift 18s linear  -2s infinite; }
.drift__leaf--2 { left: 22%; top: 100%; width: 18px; height: 22px; background: #BFE3C8; animation: drift 22s linear  -7s infinite; }
.drift__leaf--3 { left: 40%; top: 100%; width: 10px; height: 14px; background: #34A370; animation: drift 16s linear -12s infinite; }
.drift__leaf--4 { left: 58%; top: 100%; width: 16px; height: 20px; background: #94D3A2; animation: drift 24s linear  -4s infinite; }
.drift__leaf--5 { left: 76%; top: 100%; width: 12px; height: 18px; background: #BFE3C8; animation: drift 20s linear -10s infinite; }
.drift__leaf--6 { left: 90%; top: 100%; width: 14px; height: 18px; background: #94D3A2; animation: drift 26s linear -16s infinite; }
@keyframes drift {
  0%   { transform: translate(0,    0   ) rotate(  0deg); opacity: 0;   }
  10%  {                                                  opacity: 0.45; }
  90%  {                                                  opacity: 0.35; }
  100% { transform: translate(40px, -120vh) rotate(220deg); opacity: 0;   }
}

.hero__lede {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--text-body);
  max-width: 580px;
  margin: 0 0 40px;
}

/* ---------- hero illustration ---------- */
.hero__art {
  display: flex;
  justify-content: center;
  align-items: center;
}
.seedling { width: 100%; max-width: 360px; }

.seedling__ring {
  transform-origin: 160px 190px;
  animation: spinSlow 32s linear infinite;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

.seedling__stem {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: stemDraw 2.4s var(--ease-out) 0.4s forwards;
}
@keyframes stemDraw { to { stroke-dashoffset: 0; } }

/* Leaves render statically — no entrance animation. The SVG already has
   a moving ring, draw-on stem, blinking LED and falling water drops, so
   we don't need leaf-fade theatrics on top. */
.seedling__leaf { opacity: 1; }

/* Each pair of leaves sways gently out of phase — three pairs gives the
   plant six independent rhythms instead of moving as one rigid object. */
.seedling__leaf--l1 { transform-origin: 160px 250px; animation: swayL 7.0s var(--ease) infinite; }
.seedling__leaf--r1 { transform-origin: 160px 250px; animation: swayR 7.4s var(--ease) infinite; }
.seedling__leaf--l2 { transform-origin: 160px 200px; animation: swayL 6.2s var(--ease) -1.5s infinite; }
.seedling__leaf--r2 { transform-origin: 160px 200px; animation: swayR 6.6s var(--ease) -2.0s infinite; }
.seedling__leaf--l3 { transform-origin: 160px 160px; animation: swayL 5.4s var(--ease) -3.0s infinite; }
.seedling__leaf--r3 { transform-origin: 160px 160px; animation: swayR 5.8s var(--ease) -2.5s infinite; }
.seedling__leaf--top { transform-origin: 160px 130px; animation: swayL 8.0s var(--ease) -1.0s infinite; }
@keyframes swayL {
  0%, 100% { transform: rotate(-1.5deg); }
  50%      { transform: rotate(1.5deg); }
}
@keyframes swayR {
  0%, 100% { transform: rotate(1.5deg); }
  50%      { transform: rotate(-1.5deg); }
}

.seedling__berry {
  animation: berryPop 4s ease-in-out infinite;
}
@keyframes berryPop {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.18); }
}

/* Grow light: LEDs glow softly out of phase, the projected cone
   breathes in opacity to suggest a working full-spectrum fixture. */
.growlight__cone {
  animation: coneBreath 5s ease-in-out infinite;
  transform-origin: 160px 38px;
}
@keyframes coneBreath {
  0%, 100% { opacity: 0.85; }
  50%      { opacity: 1; }
}
.growlight__led {
  animation: ledGlow 2.6s ease-in-out infinite;
}
.growlight__led--1 { animation-delay:    0s; }
.growlight__led--2 { animation-delay: -0.5s; }
.growlight__led--3 { animation-delay: -1.0s; }
.growlight__led--4 { animation-delay: -1.5s; }
.growlight__led--5 { animation-delay: -2.0s; }
@keyframes ledGlow {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}

.seedling__pot {
  transform-origin: 160px 308px;
  animation: potIn .8s var(--ease-out) 0.1s backwards;
}
@keyframes potIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

.seedling__led {
  animation: ledBlink 2.2s ease-in-out infinite;
}
@keyframes ledBlink {
  0%, 100% { opacity: 0.25; }
  50%      { opacity: 1; r: 4; }
}

.drop { opacity: 0; }
.drop--1 { animation: dropFall 2.6s ease-in 0.5s infinite; }
.drop--2 { animation: dropFall 2.6s ease-in 1.2s infinite; }
.drop--3 { animation: dropFall 2.6s ease-in 1.9s infinite; }
@keyframes dropFall {
  0%   { transform: translateY(0); opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(60px); opacity: 0; }
}

@media (max-width: 860px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__art   { display: none; }
}

/* ---------- notify form ---------- */
.notify {
  max-width: 540px;
}
.notify__label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 10px;
}
.notify__row {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 6px 6px 22px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.notify__row:focus-within {
  border-color: var(--green-500);
  box-shadow: 0 0 0 4px rgba(52, 163, 112, 0.15), var(--shadow-sm);
}
.notify__input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 1rem;
  color: var(--text);
  padding: 14px 0;
}
.notify__input::placeholder { color: var(--text-mute); }
.notify__submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-900);
  color: #fff;
  border: 0;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.notify__submit:hover {
  background: var(--green-700);
  transform: translateY(-1px);
}
.notify__submit:active { transform: translateY(0); }
.notify__hint {
  font-size: 0.85rem;
  color: var(--text-mute);
  margin: 14px 4px 0;
}
.notify__status {
  margin: 12px 4px 0;
  font-size: 0.92rem;
  font-weight: 500;
  min-height: 1.2em;
}
.notify__status[data-state="success"] { color: var(--green-700); }
.notify__status[data-state="error"]   { color: #C0392B; }

/* No-script fallback line above the form. */
.notify__noscript { margin-bottom: 14px; }

/* Honeypot field — visually hidden but accessibility-tree-safe. Bots
   that scrape forms autofill every field they see; legitimate users
   never see this one. We *don't* use display:none because some bots
   skip those, and we don't use opacity:0 because tab-order would still
   reach it. The off-screen pattern is the documented anti-spam
   technique recommended by 2026 form-handling guides. */
.honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---- mobile form: drop the single-pill layout ----
   On phones the joined input + button looked off — input had no visible
   field of its own (just placeholder text floating), and the full-width
   button looked oversized hovering below empty space. Treat them as two
   distinct, properly-styled controls stacked with consistent corners
   and visual weight. */
@media (max-width: 540px) {
  .notify {
    max-width: 100%;
  }
  .notify__label {
    margin-bottom: 12px;
  }
  .notify__row {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
  }
  .notify__row:focus-within {
    border-color: transparent;
    box-shadow: none;
  }

  .notify__input {
    display: block;
    width: 100%;
    background: var(--surface);
    color: var(--text);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 16px 18px;
    font-size: 1rem;
    line-height: 1.3;
    box-shadow: 0 1px 2px rgba(20, 36, 30, 0.04);
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
    -webkit-appearance: none;
    appearance: none;
  }
  .notify__input:focus {
    outline: 0;
    border-color: var(--green-500);
    box-shadow: 0 0 0 4px rgba(52, 163, 112, 0.15);
  }

  .notify__submit {
    width: 100%;
    justify-content: center;
    padding: 15px 22px;
    font-size: 1rem;
    border-radius: 14px;
    box-shadow: 0 6px 14px -8px rgba(15, 76, 58, 0.45);
  }
  /* Touch devices have no hover state — disable the lift so the button
     doesn't feel jittery after a tap. */
  .notify__submit:hover {
    transform: none;
  }
  .notify__submit:active {
    transform: scale(0.99);
  }
}

/* Below ~430px the announcement badge and headline both want more
   width than a 360-375px viewport can give. Three things together:
   (1) shrink the headline so longest synonyms fit on one line;
   (2) drop the word-swap min-width so wrap can happen naturally;
   (3) let the badge wrap and shrink its type. We also give the
   hero copy column min-width:0 so flex/grid children of the wider
   hero don't force the whole row past the viewport. */
@media (max-width: 430px) {
  .hero__copy { min-width: 0; }
  .hero__title { font-size: clamp(1.8rem, 9vw, 2.4rem); }
  .badge {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    font-size: 0.72rem;
    padding: 8px 14px 8px 12px;
    line-height: 1.4;
    max-width: 100%;
  }
  .word-swap { min-width: 0; }
}

/* ---------- stats strip ---------- */
.stats {
  background: var(--bg-alt);
  padding: clamp(40px, 8vh, 70px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 40px);
  text-align: center;
}
.stat__num {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 500;
  color: var(--green-900);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  margin-bottom: 10px;
}
.stat__label {
  font-size: 0.92rem;
  color: var(--text-body);
}
@media (max-width: 740px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ---------- features grid ---------- */
.features {
  padding: clamp(80px, 14vh, 140px) 0;
}
.features__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 32px);
}
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.feature:hover {
  transform: translateY(-3px);
  border-color: rgba(52, 163, 112, 0.4);
  box-shadow: var(--shadow);
}
.feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--green-50);
  color: var(--green-700);
  margin-bottom: 16px;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature h3 { font-size: 1.18rem; margin: 0 0 6px; }
.feature p  { margin: 0; font-size: 0.95rem; }

@media (max-width: 860px) { .features__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .features__grid { grid-template-columns: 1fr; } }

/* ---------- founders strip ---------- */
.founders {
  padding: clamp(70px, 12vh, 120px) 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.founders__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.founders__grid li {
  text-align: center;
  padding: 24px 16px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease);
}
.founders__grid li:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.founders__avatar {
  width: 72px; height: 72px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-50), var(--leaf-300));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  box-shadow: inset 0 0 0 2px rgba(15, 76, 58, 0.1);
}
.founders__grid h3 { font-size: 1.05rem; margin: 0 0 4px; font-family: 'Inter', sans-serif; font-weight: 600; }
.founders__role  { font-size: 0.88rem; margin: 0 0 2px; color: var(--green-700); font-weight: 500; }
.founders__field { font-size: 0.85rem; margin: 0; color: var(--text-mute); }
@media (max-width: 860px) { .founders__grid { grid-template-columns: 1fr 1fr; } }

/* ---------- trusted-by marquee ---------- */
.trusted {
  padding: clamp(40px, 6vh, 60px) 0 clamp(60px, 9vh, 80px);
  background: var(--bg);
  overflow: hidden;
}
.trusted__head {
  text-align: center;
  margin-bottom: 28px;
}
.marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  font-family: 'Fraunces', serif;
  font-size: clamp(1.2rem, 2.4vw, 1.8rem);
  font-weight: 500;
  color: var(--text);
  animation: marquee 36s linear infinite;
  padding-left: 36px;
}
.marquee__dot { color: var(--green-500); font-size: 0.6em; transform: translateY(-2px); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation-duration: 120s; }
}

/* ---------- closing CTA ---------- */
.cta {
  padding: clamp(70px, 12vh, 140px) 0;
}
.cta__inner {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}
.cta h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  margin: 0 0 16px;
}
.cta p {
  font-size: 1.05rem;
  margin: 0 0 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s var(--ease), color .2s var(--ease),
              transform .2s var(--ease), box-shadow .2s var(--ease);
}
.btn--primary { background: var(--green-900); color: #fff; }
.btn--primary:hover {
  background: var(--green-700);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn--lg { padding: 16px 28px; font-size: 1.05rem; }

/* ---------- legal pages (privacy, terms, 404) ---------- */
.legal {
  padding: clamp(60px, 10vh, 120px) 0 clamp(60px, 10vh, 120px);
}
.legal__inner {
  max-width: 760px;
  margin: 0 auto;
}
.legal__head {
  margin-bottom: 40px;
}
.legal__head h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 8px 0 12px;
}
.legal__meta {
  color: var(--text-mute);
  font-size: 0.92rem;
  margin: 0;
}
.legal h2 {
  font-size: 1.3rem;
  margin: 36px 0 12px;
}
.legal ul {
  margin: 0 0 1em;
  padding-left: 1.4em;
}
.legal li {
  margin-bottom: 6px;
}
.legal__address {
  font-style: normal;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 12px;
  line-height: 1.7;
}

.notfound {
  padding: clamp(80px, 14vh, 160px) 0;
  text-align: center;
}
.notfound__inner {
  max-width: 560px;
  margin: 0 auto;
}
.notfound__code {
  font-family: 'Fraunces', serif;
  font-size: clamp(4rem, 12vw, 7rem);
  font-weight: 500;
  color: var(--green-700);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 12px;
}
.notfound h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 16px;
}
.notfound p {
  color: var(--text-body);
  margin: 0 0 32px;
}

/* ---------- footer ---------- */
.footer {
  background: var(--bg-alt);
  padding: 64px 0 24px;
  border-top: 1px solid var(--line);
}
.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: start;
  margin-bottom: 36px;
}
.footer__brand img { height: 56px; width: auto; margin-bottom: 14px; }
.footer__brand p { color: var(--text-mute); margin: 0; max-width: 320px; }

.footer__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 0;
}
.footer__meta dt {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 6px;
}
.footer__meta dd {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}
.footer__meta dd a { color: var(--text); border-bottom: 1px solid transparent; }
.footer__meta dd a:hover { color: var(--green-900); border-bottom-color: var(--green-500); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--text-mute);
  font-size: 0.82rem;
}

@media (max-width: 740px) {
  .footer__inner { grid-template-columns: 1fr; }
  .footer__meta { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ---------- reveal-on-scroll ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .badge__pulse::after,
  .seedling__ring,
  .seedling__stem,
  .seedling__leaf,
  .seedling__pot,
  .seedling__led,
  .seedling__berry,
  .growlight__cone,
  .growlight__led,
  .drop,
  .drift__leaf,
  .word-swap em,
  .marquee__track { animation: none !important; }
  .seedling__leaf, .seedling__stem, .seedling__pot { opacity: 1; transform: none; stroke-dashoffset: 0; }
  .drift { display: none; }
}
