/* ============================================================
   PLANT & GRASS — DESIGN TOKENS
   Palette per brand brief: forest / leaf / fresh / lime / cream
   Type: Fraunces (display, botanical serif) + Manrope (body)
         + JetBrains Mono (diagnostic data / stats)
   ============================================================ */
:root{
  /* --- brand colors (fixed, both themes reference these) --- */
  --forest:#123B2A;
  --leaf:#2E7D4F;
  --fresh:#65B85A;
  --lime:#A8D66D;
  --cream:#F7F8F1;
  --brand-white:#FFFFFF;
  --ink:#10251B;
  --muted-gg:#5C7267; /* muted green-gray, secondary text */

  /* --- semantic tokens: light (default) --- */
  --bg:#F7F8F1;
  --surface:#FFFFFF;
  --surface-2:#EEF2E6;
  --surface-sunken:#E7EEE0;
  --text:#10251B;
  --text-muted:#5C7267;
  --text-on-dark:#F3F6EE;
  --text-on-dark-muted:#AFC4B4;
  --border:#DEE6D5;
  --border-strong:#C9D6BE;
  --accent:#2E7D4F;
  --accent-strong:#123B2A;
  --accent-soft:#A8D66D;
  --accent-pop:#65B85A;
  --dark-surface:#123B2A;
  --dark-surface-2:#0D2C1F;
  --shadow-tint:140 32% 14%;
  --focus-ring:#2E7D4F;

  /* --- scale --- */
  --radius-sm:12px;
  --radius-md:20px;
  --radius-lg:32px;
  --radius-pill:999px;
  --container-w:1240px;
  --font-display:'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body:'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  --font-mono:'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --ease:cubic-bezier(.22,.9,.3,1);
}

@media (prefers-color-scheme: dark){
  :root:not([data-theme="light"]){
    --bg:#0B2318;
    --surface:#0F2E20;
    --surface-2:#123526;
    --surface-sunken:#0A1F15;
    --text:#EEF3E7;
    --text-muted:#9FB8A8;
    --text-on-dark:#F3F6EE;
    --text-on-dark-muted:#AFC4B4;
    --border:#1D4531;
    --border-strong:#275A3E;
    --accent:#7BC968;
    --accent-strong:#A8D66D;
    --accent-soft:#A8D66D;
    --accent-pop:#65B85A;
    --dark-surface:#081C13;
    --dark-surface-2:#061711;
    --shadow-tint:140 60% 2%;
  }
}
:root[data-theme="dark"]{
  --bg:#0B2318;
  --surface:#0F2E20;
  --surface-2:#123526;
  --surface-sunken:#0A1F15;
  --text:#EEF3E7;
  --text-muted:#9FB8A8;
  --text-on-dark:#F3F6EE;
  --text-on-dark-muted:#AFC4B4;
  --border:#1D4531;
  --border-strong:#275A3E;
  --accent:#7BC968;
  --accent-strong:#A8D66D;
  --accent-soft:#A8D66D;
  --accent-pop:#65B85A;
  --dark-surface:#081C13;
  --dark-surface-2:#061711;
  --shadow-tint:140 60% 2%;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; overflow-x:hidden; max-width:100%; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }
body{
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  max-width:100%;
}
img,svg{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ list-style:none; margin:0; padding:0; }
button{ font:inherit; color:inherit; background:none; border:0; cursor:pointer; }
h1,h2,h3,h4,p{ margin:0; }
h1,h2,h3,h4{ font-family:var(--font-display); text-wrap:balance; color:var(--text); }
:focus-visible{ outline:2.5px solid var(--focus-ring); outline-offset:3px; border-radius:4px; }

.container{ max-width:var(--container-w); margin-inline:auto; padding-inline:clamp(1.25rem,4vw,2.75rem); }
.section{ padding-block:clamp(4rem,8vw,7.5rem); position:relative; }
.section-tight{ padding-block:clamp(2.5rem,5vw,4rem); }

.eyebrow{
  display:inline-flex; align-items:center; gap:.5rem;
  font-family:var(--font-mono); font-size:.75rem; letter-spacing:.09em; text-transform:uppercase;
  color:var(--accent); font-weight:600;
  padding:.4rem .9rem; border:1px solid var(--border-strong); border-radius:var(--radius-pill);
  background:var(--surface);
}
.eyebrow .icon{ width:14px; height:14px; }

.section-head{ max-width:640px; margin-bottom:clamp(2.5rem,5vw,3.5rem); }
.section-head.center{ margin-inline:auto; text-align:center; }
.section-head h2{ font-size:clamp(2rem,3.4vw + .8rem,3.1rem); font-weight:600; line-height:1.08; letter-spacing:-.01em; margin-top:.85rem; }
.section-head p{ color:var(--text-muted); font-size:1.08rem; margin-top:1rem; max-width:46ch; }
.section-head.center p{ margin-inline:auto; }

/* headings on dark surfaces */
.on-dark, .on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4{ color:var(--text-on-dark); }
.on-dark p, .on-dark .text-muted{ color:var(--text-on-dark-muted); }

.text-muted{ color:var(--text-muted); }
.mono{ font-family:var(--font-mono); }

/* ============================================================
   ICON SYSTEM (inline sprite, currentColor strokes)
   ============================================================ */
.icon{ width:20px; height:20px; flex-shrink:0; fill:none; stroke:currentColor; stroke-width:1.75; stroke-linecap:round; stroke-linejoin:round; }
.icon-fill{ fill:currentColor; stroke:none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.55rem;
  padding:.9rem 1.6rem; border-radius:var(--radius-pill);
  font-weight:700; font-size:.98rem; letter-spacing:-.005em;
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease);
  white-space:nowrap; border:1px solid transparent;
}
.btn .icon{ width:18px; height:18px; }
.btn-primary{
  background:linear-gradient(155deg,var(--fresh),var(--leaf) 78%);
  color:#fff;
  box-shadow:0 1px 2px hsl(var(--shadow-tint) / .18), 0 14px 30px -12px hsl(var(--shadow-tint) / .55);
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 2px 4px hsl(var(--shadow-tint) / .2), 0 20px 36px -14px hsl(var(--shadow-tint) / .6); }
.btn-secondary{
  background:transparent; color:var(--text); border-color:var(--border-strong);
}
.btn-secondary:hover{ border-color:var(--accent); color:var(--accent); transform:translateY(-1px); }
.btn-ghost-dark{ background:rgba(255,255,255,.08); color:var(--text-on-dark); border-color:rgba(255,255,255,.22); }
.btn-ghost-dark:hover{ background:rgba(255,255,255,.16); transform:translateY(-1px); }
.btn-block{ width:100%; }
.btn-sm{ padding:.6rem 1.1rem; font-size:.85rem; }

/* store badges */
.store-badges{ display:flex; gap:.75rem; flex-wrap:wrap; }
.store-badge{
  display:inline-flex; align-items:center; gap:.65rem;
  background:#0A0F0C; color:#fff; border:1px solid rgba(255,255,255,.12);
  padding:.62rem 1.15rem; border-radius:14px;
  transition:transform .3s var(--ease), background-color .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow:0 10px 24px -14px hsl(var(--shadow-tint) / .7);
}
.store-badge:hover{ transform:translateY(-3px); background:#161d18; }
.store-badge .icon{ width:24px; height:24px; color:#fff; }
.store-badge .store-text{ display:flex; flex-direction:column; line-height:1.15; }
.store-badge .store-text small{ font-size:.62rem; letter-spacing:.06em; text-transform:uppercase; opacity:.75; font-weight:500; }
.store-badge .store-text strong{ font-size:1.02rem; font-weight:700; font-family:var(--font-body); }

/* generic card */
.card{
  background:var(--surface); border:1px solid var(--border); border-radius:var(--radius-md);
  transition:transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.card:hover{ transform:translateY(-4px); box-shadow:0 24px 48px -28px hsl(var(--shadow-tint) / .45); border-color:var(--border-strong); }

/* ============================================================
   REVEAL ANIMATION (progressive enhancement)
   Elements are fully visible by default; JS + IO only adds
   motion for elements that are off-screen at load time.
   ============================================================ */
/* Content stays fully visible/legible at all times (opacity never drops to
   0) so the page reads correctly even if JS never runs, an observer never
   fires, or a tool captures the page without scrolling. Motion is limited
   to a gentle position settle. */
[data-reveal]{ opacity:1; transform:none; }
.js-reveal-ready [data-reveal]{ transform:translateY(18px); transition:transform .7s var(--ease); }
.js-reveal-ready [data-reveal].in-view{ transform:none; }
@media (prefers-reduced-motion: reduce){
  .js-reveal-ready [data-reveal]{ transform:none; transition:none; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar{
  position:sticky; top:0; z-index:100;
  padding-block:1.1rem;
  transition:background-color .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom:1px solid transparent;
}
.navbar.scrolled{
  background:color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter:blur(14px) saturate(140%);
  -webkit-backdrop-filter:blur(14px) saturate(140%);
  border-color:var(--border);
  padding-block:.7rem;
  box-shadow:0 8px 30px -20px hsl(var(--shadow-tint) / .5);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; gap:1rem; min-width:0; }
.brand{ display:flex; align-items:center; gap:.5rem; font-family:var(--font-display); font-weight:600; font-size:1.28rem; color: #10251B !important; white-space:nowrap; flex-shrink:0; }
.brand .brand-mark{
  width:34px; height:34px; border-radius:10px; display:grid; place-items:center;
  background:linear-gradient(155deg,var(--fresh),var(--leaf));
  color:#fff; box-shadow:0 6px 16px -8px hsl(var(--shadow-tint) / .6);
}
.brand .brand-mark .icon{ width:19px; height:19px; stroke-width:2; }

.nav-links{ display:flex; align-items:center; gap:2.1rem; }
.nav-links a{ font-size:.94rem; font-weight:600; color:var(--text-muted); position:relative; padding-block:.3rem; transition:color .25s var(--ease); }
.nav-links a::after{ content:""; position:absolute; left:0; right:0; bottom:0; height:2px; background:var(--accent); transform:scaleX(0); transform-origin:left; transition:transform .3s var(--ease); border-radius:2px; }
.nav-links a:hover{ color:var(--text); }
.nav-links a:hover::after{ transform:scaleX(1); }

.nav-right{ display:flex; align-items:center; gap:1.25rem; flex-shrink:0; }
.scan-link{ display:flex; align-items:center; gap:.4rem; font-weight:700; font-size:.9rem; color:var(--accent); }
.scan-link .icon{ width:16px; height:16px; }
.nav-toggle{ display:none; width:42px; height:42px; border-radius:11px; align-items:center; justify-content:center; border:1px solid var(--border-strong); }
.nav-toggle .icon{ width:20px; height:20px; }

.mobile-menu{
  display:none; position:fixed; inset:0; z-index:99; background:var(--bg);
  padding:6rem 1.5rem 2rem; overflow-y:auto;
}
.mobile-menu.open{ display:block; }
.mobile-menu a{ display:block; font-size:1.4rem; font-family:var(--font-display); padding:.85rem 0; border-bottom:1px solid var(--border); }
.mobile-menu .store-badges{ margin-top:2rem; flex-direction:column; }

/* ============================================================
   HERO
   ============================================================ */
.hero{ padding-top:clamp(2.5rem,6vw,4rem); padding-bottom:clamp(3rem,6vw,4.5rem); overflow:hidden; }
.hero-grid{ display:grid; grid-template-columns:1.05fr .95fr; gap:clamp(2.5rem,5vw,4rem); align-items:center; }
.hero-copy h1{
  font-size:clamp(2.6rem,4vw + 1.2rem,4.4rem); font-weight:600; line-height:1.03; letter-spacing:-.015em; margin-top:1.1rem;
}
.hero-copy h1 em{ font-style:italic; color:var(--accent); }
.hero-support{ font-size:1.2rem; font-weight:700; color:var(--text); margin-top:1.15rem; letter-spacing:-.005em; }
.hero-copy > p.hero-desc{ color:var(--text-muted); font-size:1.05rem; margin-top:.9rem; max-width:52ch; }
.hero-ctas{ display:flex; gap:1rem; flex-wrap:wrap; margin-top:2rem; }
.hero-tags{ margin-top:1.1rem; font-family:var(--font-mono); font-size:.78rem; letter-spacing:.04em; color:var(--text-muted); }
.hero-store{ margin-top:1.6rem; }

.phone-stage{ position:relative; display:grid; place-items:center; padding:2rem; }
.phone{
  position:relative; width:min(300px,78vw); aspect-ratio:300/612;
  background:linear-gradient(160deg,#1a4a34,var(--forest) 55%);
  border-radius:46px; padding:14px; box-shadow:
    0 2px 0 rgba(255,255,255,.08) inset,
    0 40px 70px -30px hsl(var(--shadow-tint) / .75),
    0 10px 22px -12px hsl(var(--shadow-tint) / .6);
  animation:phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat{ 0%,100%{ transform:translateY(0) rotate(-.4deg);} 50%{ transform:translateY(-14px) rotate(.4deg);} }
.phone-notch{ position:absolute; top:14px; left:50%; translate:-50% 0; width:84px; height:22px; background:var(--forest); border-radius:0 0 16px 16px; z-index:3; }
.phone-screen{
  width:100%; height:100%; background:var(--cream); border-radius:34px; overflow:hidden; position:relative;
  display:flex; flex-direction:column; font-family:var(--font-body); color:var(--ink);
}
.phone-topbar{ padding:1.6rem .9rem .6rem; display:flex; align-items:center; justify-content:space-between; }
.phone-topbar strong{ font-family:var(--font-display); font-size:1.02rem; }
.phone-topbar .icon{ width:16px; height:16px; color:var(--muted-gg); }
.phone-scan-area{ margin:.3rem .9rem 0; border-radius:20px; overflow:hidden; position:relative; aspect-ratio:1/.82; background:linear-gradient(150deg,#dcecc9,#bcdba0 60%,#9cc885); }
.phone-scan-area::before{ /* leaf silhouette */
  content:""; position:absolute; inset:14% 18%; background:radial-gradient(120% 120% at 20% 15%, rgba(255,255,255,.55), transparent 55%),
  linear-gradient(155deg,var(--fresh),var(--leaf) 70%);
  clip-path:path('M2 84C2 40 40 2 84 2c0 44-38 82-82 82Z');
}
.scan-frame{ position:absolute; inset:9%; border:2px solid rgba(255,255,255,.85); border-radius:14px; }
.scan-frame::before,.scan-frame::after{ content:""; position:absolute; width:16px; height:16px; border-color:#fff; }
.scan-line{ position:absolute; left:6%; right:6%; height:2px; background:linear-gradient(90deg,transparent,var(--lime),transparent); box-shadow:0 0 14px 2px var(--lime); animation:scanMove 2.6s ease-in-out infinite; }
@keyframes scanMove{ 0%,100%{ top:8%; opacity:.2;} 50%{ top:88%; opacity:1;} }
.phone-analyzing{ position:absolute; left:0; right:0; bottom:8px; text-align:center; font-family:var(--font-mono); font-size:.62rem; letter-spacing:.08em; text-transform:uppercase; color:#fff; text-shadow:0 1px 4px rgba(0,0,0,.4); }
.phone-analyzing .dot{ display:inline-block; width:5px; height:5px; border-radius:50%; background:var(--lime); margin-right:5px; animation:pulseDot 1.4s ease-in-out infinite; }
@keyframes pulseDot{ 0%,100%{ opacity:.3;} 50%{ opacity:1;} }

.phone-result{ margin:.8rem .9rem 0; background:#fff; border-radius:16px; padding:.85rem .9rem; box-shadow:0 10px 20px -14px rgba(18,59,42,.4); }
.result-head{ display:flex; align-items:center; justify-content:space-between; }
.result-head .tag-bad{ font-family:var(--font-mono); font-size:.6rem; letter-spacing:.05em; text-transform:uppercase; color:#B5482B; background:#FBE7DE; padding:.2rem .5rem; border-radius:6px; font-weight:600; }
.result-head .match{ font-family:var(--font-mono); font-size:.72rem; font-weight:700; color:var(--leaf); }
.result-head strong{ display:block; font-family:var(--font-display); font-size:1.05rem; margin-top:.25rem; }
.result-sub{ font-size:.68rem; color:var(--muted-gg); text-transform:uppercase; letter-spacing:.05em; font-family:var(--font-mono); }
.phone-treatment{ margin:.6rem .9rem 0; font-size:.74rem; }
.phone-treatment p{ font-weight:700; margin-bottom:.35rem; }
.phone-treatment ul{ display:flex; flex-direction:column; gap:.3rem; }
.phone-treatment li{ display:flex; gap:.4rem; align-items:flex-start; color:var(--muted-gg); }
.phone-treatment .icon{ width:13px; height:13px; color:var(--leaf); margin-top:.15rem; }
.phone-cta{ margin:.7rem .9rem .9rem; background:var(--forest); color:#fff; text-align:center; padding:.6rem; border-radius:10px; font-size:.72rem; font-weight:700; }

.floating-card{
  position:absolute; background:var(--surface); border:1px solid var(--border); border-radius:14px;
  padding:.6rem .85rem; display:flex; align-items:center; gap:.55rem; box-shadow:0 18px 34px -18px hsl(var(--shadow-tint) / .5);
  font-size:.78rem; font-weight:700; color:var(--text); animation:cardFloat 5s ease-in-out infinite;
}
.floating-card .icon{ width:16px; height:16px; color:var(--accent); }
.floating-card .fc-icon{ width:28px; height:28px; border-radius:8px; background:var(--surface-2); display:grid; place-items:center; }
.floating-card .fc-sub{ display:block; font-weight:500; color:var(--text-muted); font-size:.68rem; }
.fc-1{ top:6%; left:-4%; animation-delay:.2s; }
.fc-2{ top:20%; right:-8%; animation-delay:1.1s; }
.fc-3{ bottom:22%; left:-9%; animation-delay:.6s; }
.fc-4{ bottom:4%; right:-5%; animation-delay:1.6s; }
@keyframes cardFloat{ 0%,100%{ transform:translateY(0);} 50%{ transform:translateY(-10px);} }
@media (prefers-reduced-motion: reduce){ .phone,.floating-card,.scan-line,.phone-analyzing .dot{ animation:none; } }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip{ background:var(--surface); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; padding-block:clamp(2.2rem,4vw,3rem); }
.stat{ text-align:center; border-left:1px solid var(--border); }
.stat:first-child{ border-left:none; }
.stat .num{ font-family:var(--font-mono); font-size:clamp(1.9rem,2.4vw + 1rem,2.7rem); font-weight:600; color:var(--accent-strong); font-variant-numeric:tabular-nums; }
.stat .label{ font-size:.88rem; color:var(--text-muted); margin-top:.3rem; font-weight:600; }
.stats-disclaimer{ text-align:center; font-size:.78rem; color:var(--text-muted); padding-bottom:1.4rem; }

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.4rem; }
.problem-card{ padding:1.6rem; }
.problem-visual{ height:132px; border-radius:16px; position:relative; overflow:hidden; margin-bottom:1.2rem; }
.problem-visual .icon{ width:30px; height:30px; color:#fff; position:absolute; bottom:14px; left:14px; z-index:2; }
.pv-yellow{ background:radial-gradient(120% 120% at 20% 15%, rgba(255,255,255,.35), transparent 55%), linear-gradient(150deg,#E7C948,#B99A24 75%); }
.pv-brown{ background:radial-gradient(120% 120% at 20% 15%, rgba(255,255,255,.3), transparent 55%), linear-gradient(150deg,#B5824A,#7C5730 75%); }
.pv-wilt{ background:radial-gradient(120% 120% at 20% 15%, rgba(255,255,255,.3), transparent 55%), linear-gradient(150deg,#8FA06B,#5C6B3F 75%); }
.pv-pest{ background:radial-gradient(120% 120% at 20% 15%, rgba(255,255,255,.3), transparent 55%), linear-gradient(150deg,#C0684A,#8A3F2A 75%); }
.problem-card h3{ font-size:1.12rem; font-weight:600; }
.problem-card p{ color:var(--text-muted); font-size:.9rem; margin-top:.4rem; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps-wrap{ position:relative; }
.steps-line{ position:absolute; top:34px; left:8%; right:8%; height:2px; background:repeating-linear-gradient(90deg,var(--border-strong) 0 10px,transparent 10px 18px); z-index:0; }
.steps-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.6rem; position:relative; z-index:1; }
.step{ text-align:left; }
.step-num{
  width:68px; height:68px; border-radius:20px; display:grid; place-items:center;
  background:var(--surface); border:1px solid var(--border);
  font-family:var(--font-mono); font-weight:600; font-size:1.1rem; color:var(--accent);
  margin-bottom:1.1rem; position:relative;
}
.step-num .icon{ width:26px; height:26px; color:var(--accent); }
.step h3{ font-size:1.15rem; font-weight:600; }
.step p{ color:var(--text-muted); font-size:.92rem; margin-top:.4rem; }

/* ============================================================
   FEATURES BENTO
   ============================================================ */
.bento{ display:grid; grid-template-columns:repeat(6,1fr); grid-auto-rows:minmax(210px,auto); gap:1.25rem; }
.bento-item{ padding:1.8rem; display:flex; flex-direction:column; justify-content:space-between; }
.bento-item:nth-child(1){ grid-column:span 3; }
.bento-item:nth-child(2){ grid-column:span 3; }
.bento-item:nth-child(3){ grid-column:span 2; }
.bento-item:nth-child(4){ grid-column:span 2; }
.bento-item:nth-child(5){ grid-column:span 2; }
.bento-item:nth-child(6){ grid-column:span 6; flex-direction:row; align-items:center; gap:2rem; }
.bento-icon{ width:52px; height:52px; border-radius:15px; background:linear-gradient(155deg,var(--fresh),var(--leaf)); display:grid; place-items:center; color:#fff; box-shadow:0 10px 22px -12px hsl(var(--shadow-tint) / .6); }
.bento-icon .icon{ width:24px; height:24px; stroke-width:1.9; }
.bento-item h3{ font-size:1.2rem; font-weight:600; margin-top:1.1rem; }
.bento-item p{ color:var(--text-muted); font-size:.92rem; margin-top:.4rem; max-width:38ch; }
.bento-item:nth-child(6) .bento-text{ flex:1; }

/* ============================================================
   SCAN DEMO SPLIT
   ============================================================ */
.scan-demo{ display:grid; grid-template-columns:1fr 1fr; gap:clamp(2rem,4vw,3.5rem); align-items:center; }
.scan-visual{
  position:relative; aspect-ratio:4/4.6; border-radius:var(--radius-lg); overflow:hidden;
  background:linear-gradient(155deg,#C9E2AE,#8FC26E 55%,#5C9E52 100%);
}
.scan-visual::before{ content:""; position:absolute; inset:10%; border-radius:50% 50% 46% 54%/58% 44% 56% 42%; background:linear-gradient(155deg,rgba(255,255,255,.5),transparent 55%), linear-gradient(160deg,var(--fresh),var(--forest) 120%); }
.scan-visual .scan-frame{ position:absolute; inset:12%; border:2px dashed rgba(255,255,255,.7); border-radius:24px; }
.scan-visual .scan-line{ left:14%; right:14%; animation-duration:3.2s; }
.diag-card{ padding:1.9rem; }
.diag-row{ display:flex; justify-content:space-between; align-items:baseline; padding-block:.75rem; border-bottom:1px solid var(--border); }
.diag-row:last-of-type{ border-bottom:none; }
.diag-row .k{ font-size:.85rem; color:var(--text-muted); font-weight:600; }
.diag-row .v{ font-weight:700; font-family:var(--font-display); font-size:1.05rem; }
.diag-row .v.bad{ color:#B5482B; }
.diag-row .v.mono{ font-family:var(--font-mono); color:var(--accent); }
.diag-symptom{ font-size:.92rem; color:var(--text-muted); margin-top:.9rem; font-style:italic; }
.diag-actions{ margin-top:1rem; display:flex; flex-direction:column; gap:.55rem; counter-reset:act; }
.diag-actions li{ display:flex; gap:.7rem; font-size:.9rem; align-items:flex-start; }
.diag-actions li::before{ counter-increment:act; content:counter(act); flex-shrink:0; width:22px; height:22px; border-radius:50%; background:var(--surface-2); display:grid; place-items:center; font-family:var(--font-mono); font-size:.7rem; font-weight:700; color:var(--accent); }
.diag-card .btn{ margin-top:1.3rem; }

/* ============================================================
   MEDICINE + MAP
   ============================================================ */
.med-map-grid{ display:grid; grid-template-columns:.85fr 1.15fr; gap:clamp(2rem,4vw,3rem); align-items:start; }
.treatment-card{ padding:2rem; }
.treatment-card .cat{ display:inline-block; font-family:var(--font-mono); font-size:.7rem; letter-spacing:.06em; text-transform:uppercase; background:var(--surface-2); color:var(--accent); padding:.3rem .65rem; border-radius:8px; font-weight:700; }
.treatment-card h3{ font-size:1.4rem; font-weight:600; margin-top:.9rem; }
.tr-line{ display:flex; justify-content:space-between; padding-block:.6rem; border-top:1px solid var(--border); font-size:.9rem; }
.tr-line .k{ color:var(--text-muted); font-weight:600; }
.tr-line .v{ font-weight:700; text-align:right; max-width:60%; }
.treatment-card .note{ font-size:.82rem; color:var(--text-muted); margin-top:.9rem; }
.treatment-card .btn{ margin-top:1.4rem; }

.map-card{ border-radius:var(--radius-lg); overflow:hidden; border:1px solid var(--border); background:var(--surface); }
.map-view{
  position:relative; height:280px; background:#DCE7C9; overflow:hidden;
}
:root[data-theme="dark"] .map-view, @media (prefers-color-scheme:dark){ .map-view{ background:#173324; } }
.map-view .road{ position:absolute; background:#F3F5EC; }
.map-view .road-h1{ top:28%; left:0; right:0; height:14px; }
.map-view .road-h2{ top:68%; left:0; right:0; height:10px; }
.map-view .road-v1{ left:22%; top:0; bottom:0; width:12px; }
.map-view .road-v2{ left:68%; top:0; bottom:0; width:10px; }
.map-view .block{ position:absolute; border-radius:10px; background:rgba(255,255,255,.35); }
.map-pin{ position:absolute; width:34px; height:34px; border-radius:50% 50% 50% 0; background:var(--leaf); transform:rotate(-45deg); display:grid; place-items:center; box-shadow:0 8px 16px -6px rgba(18,59,42,.55); }
.map-pin .icon{ transform:rotate(45deg); width:16px; height:16px; color:#fff; }
.map-pin.you{ background:var(--forest); }
.pin-1{ top:32%; left:30%; } .pin-2{ top:52%; left:58%; } .pin-3{ top:70%; left:40%; }
.map-you{ position:absolute; top:46%; left:47%; width:14px; height:14px; border-radius:50%; background:var(--accent-pop); box-shadow:0 0 0 6px rgba(101,184,90,.3); }
.map-you::after{ content:""; position:absolute; inset:-10px; border-radius:50%; border:2px solid var(--accent-pop); animation:mapPulse 2.2s ease-out infinite; }
@keyframes mapPulse{ 0%{ transform:scale(.4); opacity:.9;} 100%{ transform:scale(1.9); opacity:0;} }
@media (prefers-reduced-motion: reduce){ .map-you::after{ animation:none; } }

.nursery-list{ padding:1.2rem; display:flex; flex-direction:column; gap:.8rem; }
.nursery-row{ display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1rem; border:1px solid var(--border); border-radius:16px; }
.nursery-info strong{ display:block; font-family:var(--font-display); font-size:1.05rem; font-weight:600; }
.nursery-info .dist{ font-size:.82rem; color:var(--text-muted); margin-top:.15rem; }
.nursery-info .avail{ display:inline-flex; align-items:center; gap:.3rem; font-size:.78rem; color:var(--leaf); font-weight:700; margin-top:.35rem; }
.nursery-info .avail .icon{ width:13px; height:13px; }

/* ============================================================
   PLANT CARE
   ============================================================ */
.care-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.3rem; }
.care-card{ padding:1.6rem; }
.care-emoji{ font-size:1.7rem; width:52px; height:52px; border-radius:14px; background:var(--surface-2); display:grid; place-items:center; }
.care-card h3{ font-size:1.05rem; font-weight:600; margin-top:1rem; }
.care-card p{ font-size:.88rem; color:var(--text-muted); margin-top:.35rem; }

/* ============================================================
   AUDIENCE
   ============================================================ */
.audience-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:1.3rem; }
.audience-card{ padding:1.7rem; }
.audience-card .icon-wrap{ width:46px; height:46px; border-radius:13px; background:var(--surface-2); display:grid; place-items:center; color:var(--accent); }
.audience-card h3{ font-size:1.08rem; font-weight:600; margin-top:1rem; }
.audience-card p{ font-size:.88rem; color:var(--text-muted); margin-top:.4rem; }

/* ============================================================
   APP SHOWCASE
   ============================================================ */
.showcase-phones{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.6rem; align-items:end; margin-bottom:clamp(2.5rem,5vw,3.5rem); }
.mini-phone{ background:linear-gradient(160deg,#1a4a34,var(--forest) 55%); border-radius:34px; padding:10px; box-shadow:0 30px 50px -26px hsl(var(--shadow-tint) / .7); }
.mini-phone .phone-screen{ border-radius:24px; }
.mini-phone .screen-body{ padding:1.2rem .8rem; font-size:.72rem; }
.showcase-phones .mini-phone:nth-child(2){ transform:translateY(-18px); }
.mini-label{ text-align:center; font-size:.78rem; color:var(--text-muted); margin-top:.8rem; font-weight:600; }
.showcase-download{ text-align:center; }
.showcase-download h3{ font-size:1.5rem; font-weight:600; }
.showcase-download .store-badges{ justify-content:center; margin-top:1.3rem; }
.mp-header{ display:flex; align-items:center; justify-content:space-between; font-weight:700; margin-bottom:.6rem; }
.mp-list-row{ display:flex; justify-content:space-between; align-items:center; background:#fff; border-radius:9px; padding:.4rem .55rem; margin-bottom:.4rem; box-shadow:0 4px 10px -6px rgba(18,59,42,.3); }
.mp-list-row span:first-child{ font-weight:700; }
.mp-list-row .mp-badge{ font-family:var(--font-mono); font-size:.58rem; background:#E9F4E2; color:var(--leaf); padding:.12rem .4rem; border-radius:5px; font-weight:700; }
.mp-pill{ background:#fff; border-radius:8px; padding:.4rem .55rem; margin-bottom:.4rem; font-size:.68rem; box-shadow:0 4px 10px -6px rgba(18,59,42,.3); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testi-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:1.4rem; }
.testi-card{ padding:1.8rem; }
.stars{ display:flex; gap:.2rem; color:var(--accent-soft); }
.stars .icon{ width:16px; height:16px; }
.testi-card p{ font-family:var(--font-display); font-size:1.12rem; font-weight:500; margin-top:1rem; line-height:1.45; }
.testi-foot{ display:flex; align-items:center; gap:.6rem; margin-top:1.2rem; }
.testi-avatar{ width:34px; height:34px; border-radius:50%; background:linear-gradient(155deg,var(--fresh),var(--leaf)); }
.testi-foot .who{ font-size:.85rem; font-weight:700; }
.testi-foot .tag{ font-size:.72rem; color:var(--text-muted); }
.testi-sample-note{ text-align:center; font-size:.8rem; color:var(--text-muted); margin-top:2rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list{ max-width:760px; margin-inline:auto; display:flex; flex-direction:column; gap:.75rem; }
.faq-item{ border:1px solid var(--border); border-radius:18px; background:var(--surface); overflow:hidden; }
.faq-q{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:1rem; padding:1.2rem 1.4rem; text-align:left; font-weight:700; font-size:1rem; }
.faq-q .icon{ width:19px; height:19px; color:var(--accent); transition:transform .35s var(--ease); flex-shrink:0; }
.faq-item[aria-expanded="true"] .faq-q .icon{ transform:rotate(180deg); }
.faq-a{ display:grid; grid-template-rows:0fr; transition:grid-template-rows .38s var(--ease); }
.faq-a-inner{ overflow:hidden; }
.faq-a-inner p{ padding:0 1.4rem 1.3rem; color:var(--text-muted); font-size:.94rem; max-width:64ch; }
.faq-item[aria-expanded="true"] .faq-a{ grid-template-rows:1fr; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta{
  background:radial-gradient(120% 160% at 15% -10%, #1c5a3f, transparent 55%), linear-gradient(155deg,var(--forest),#0B2318 85%);
  border-radius:var(--radius-lg); position:relative; overflow:hidden; text-align:center;
  padding:clamp(3.5rem,7vw,6rem) clamp(1.5rem,5vw,3rem);
}
.final-cta .cta-leaf{ position:absolute; border-radius:50%; filter:blur(2px); opacity:.5; }
.final-cta .leaf-a{ width:260px; height:260px; background:radial-gradient(circle,var(--fresh),transparent 70%); top:-90px; left:-70px; }
.final-cta .leaf-b{ width:320px; height:320px; background:radial-gradient(circle,var(--lime),transparent 70%); bottom:-140px; right:-90px; opacity:.28; }
.final-cta-inner{ position:relative; z-index:1; max-width:640px; margin-inline:auto; }
.final-cta h2{ font-size:clamp(2.1rem,3.4vw + .8rem,3.2rem); font-weight:600; }
.final-cta p{ margin-top:1rem; font-size:1.1rem; }
.final-cta .hero-ctas{ justify-content:center; }
.final-cta .divider-word{ margin:2rem 0 1rem; font-family:var(--font-mono); font-size:.78rem; letter-spacing:.08em; text-transform:uppercase; color:var(--text-on-dark-muted); }
.final-cta .store-badges{ justify-content:center; }

/* ============================================================
   FOOTER
   ============================================================ */
footer{ background:var(--dark-surface-2); color:var(--text-on-dark); padding-block:clamp(3rem,6vw,4.5rem) 2rem; margin-top:clamp(3rem,6vw,4rem); }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:2.5rem; padding-bottom:2.5rem; border-bottom:1px solid rgba(255,255,255,.1); }
.footer-brand .brand{ color:var(--text-on-dark); }
.footer-brand p{ color:var(--text-on-dark-muted); font-size:.92rem; margin-top:1rem; max-width:30ch; }
.footer-social{ display:flex; gap:.6rem; margin-top:1.3rem; }
.footer-social a{ width:36px; height:36px; border-radius:10px; background:rgba(255,255,255,.08); display:grid; place-items:center; transition:background .25s var(--ease); }
.footer-social a:hover{ background:rgba(255,255,255,.18); }
.footer-social .icon{ width:16px; height:16px; }
.footer-col h4{ font-family:var(--font-body); font-size:.85rem; text-transform:uppercase; letter-spacing:.06em; color:var(--text-on-dark-muted); font-weight:700; }
.footer-col ul{ margin-top:1rem; display:flex; flex-direction:column; gap:.7rem; }
.footer-col a{ font-size:.92rem; color:var(--text-on-dark); opacity:.85; transition:opacity .2s; }
.footer-col a:hover{ opacity:1; }
.footer-bottom{ display:flex; justify-content:space-between; align-items:center; padding-top:1.6rem; font-size:.82rem; color:var(--text-on-dark-muted); flex-wrap:wrap; gap:.8rem; }

/* Grid-blowout guard: a 1fr track's default minimum is the min-content of
   its items, so any long unbreakable content can force a grid wider than
   its container. min-width:0 lets tracks shrink to the container instead. */
.hero-grid > *, .scan-demo > *, .med-map-grid > *, .steps-grid > *,
.bento > *, .problem-grid > *, .care-grid > *, .audience-grid > *,
.testi-grid > *, .stats-grid > *, .footer-grid > *, .showcase-phones > *{ min-width:0; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1024px){
  .hero-grid{ grid-template-columns:1fr; }
  .phone-stage{ padding-top:1rem; }
  .fc-1{ left:-2%; } .fc-2{ right:-2%; } .fc-3{ left:-3%; } .fc-4{ right:-3%; }
  .problem-grid{ grid-template-columns:repeat(2,1fr); }
  .steps-grid{ grid-template-columns:repeat(2,1fr); row-gap:2.5rem; }
  .steps-line{ display:none; }
  .bento{ grid-template-columns:repeat(2,1fr); }
  .bento-item{ grid-column:span 1 !important; }
  .bento-item:nth-child(6){ flex-direction:column; align-items:flex-start; }
  .scan-demo{ grid-template-columns:1fr; }
  .med-map-grid{ grid-template-columns:1fr; }
  .care-grid{ grid-template-columns:repeat(2,1fr); }
  .audience-grid{ grid-template-columns:repeat(2,1fr); }
  .showcase-phones{ grid-template-columns:repeat(3,1fr); }
  .testi-grid{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; row-gap:2.2rem; }
}
@media (max-width:840px){
  .nav-links{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .nav-right{ gap:.5rem; }
  .scan-link{ display:none; }
  .stats-grid{ grid-template-columns:repeat(2,1fr); row-gap:1.6rem; }
  .stat:nth-child(3){ border-left:none; }
}
@media (max-width:480px){
  .brand{ font-size:1.05rem; }
  .brand .brand-mark{ width:29px; height:29px; border-radius:9px; }
  .nav-toggle{ width:38px; height:38px; border-radius:10px; }
  .nav-download{ padding:.65rem .8rem; }
}
@media (max-width:400px){
  .nav-download .btn-label{ display:none; }
  .nav-download{ padding:.65rem; }
  .nav-download .icon{ width:19px; height:19px; }
}
@media (max-width:640px){
  .container{ overflow-x:hidden; }
  .problem-grid{ grid-template-columns:1fr; }
  .bento{ grid-template-columns:1fr; }
  .steps-grid{ grid-template-columns:1fr; }
  .care-grid{ grid-template-columns:1fr; }
  .audience-grid{ grid-template-columns:1fr; }
  .showcase-phones{ grid-template-columns:1fr; }
  .showcase-phones .mini-phone{ max-width:220px; margin-inline:auto; transform:none !important; }
  .footer-grid{ grid-template-columns:1fr; }
  .med-map-grid, .scan-demo{ gap:1.6rem; }
  .hero-ctas .btn{ width:100%; }
  .phone-stage{ padding:1.5rem .5rem; }
  .floating-card{ font-size:.7rem; padding:.5rem .7rem; }
  .floating-card .fc-icon{ width:24px; height:24px; }
  .fc-1{ left:-2%; }
  .fc-2{ right:-2%; }
  .fc-3{ left:-2%; }
  .fc-4{ right:-2%; }
  .store-badges{ width:100%; }
  .store-badge{ flex:1; justify-content:center; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .nursery-row{ flex-direction:column; align-items:flex-start; }
  .nursery-row .btn{ width:100%; }
}

ul#menu-primary-menu {
    display: flex;
    align-items: center;
    gap: 2.1rem;
}
body {
    background: #F7F8F1 !important;
}
.btn-primary {
    color: #fff !important;
}
a.store-badge {
    color: #fff !important;
}
.faq-item button.faq-q {
    background: #fff;
    color: #10251b;
}
.footer-social a {
    color: #fff;
}
.footer-brand a.brand {
    color: #fff !important;
}