/* ============ RESET / TOKENS ============ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

:root {
  --green: #A0D468;
  --green-deep: #8CC152;
  --green-glow: rgba(160, 212, 104, 0.35);

  --bg: #0a0a0a;
  --bg-mid: #1a1a2e;
  --bg-2: #0f0f17;
  --ink: #ffffff;
  --ink-dim: rgba(255, 255, 255, 0.55);
  --ink-muted: rgba(255, 255, 255, 0.35);
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);

  --display: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Roboto", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --pad: clamp(20px, 4vw, 56px);
  --pad-y: clamp(80px, 14vh, 180px);

  --ease-out: cubic-bezier(.22,.61,.36,1);
  --ease-in-out: cubic-bezier(.65,.05,.36,1);
}

html, body { background: var(--bg); color: var(--ink); }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(26,26,46,0.9), transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #0c0c14 50%, #0a0a0a 100%);
  background-attachment: fixed;
}
body.is-loading { overflow: hidden; height: 100vh; }
@media (hover: none) { body { cursor: auto; } .cursor { display: none; } }

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }
em { font-style: italic; font-family: var(--serif); font-weight: 400; }
::selection { background: var(--green); color: #0a0a0a; }

/* ============ CANVAS BACKDROP + GRAIN + AURORA ============ */
#bg-canvas {
  position: fixed; inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}
.aurora {
  position: fixed; inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.45;
  background:
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(160,212,104,0.18), transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 70%, rgba(140,193,82,0.14), transparent 60%),
    radial-gradient(ellipse 40% 30% at 50% 100%, rgba(160,212,104,0.12), transparent 70%);
  filter: blur(40px);
  animation: drift 22s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translate(0,0) scale(1); }
  100% { transform: translate(-3%, 2%) scale(1.06); }
}
.grain {
  position: fixed; inset: -100%;
  width: 300%; height: 300%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 1 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  animation: grain 1.6s steps(6) infinite;
}
@keyframes grain {
  0%   { transform: translate(0,0); }
  20%  { transform: translate(-3%,2%); }
  40%  { transform: translate(2%,-3%); }
  60%  { transform: translate(-2%,1%); }
  80%  { transform: translate(3%,-2%); }
  100% { transform: translate(0,0); }
}

.loader, .cursor, header, main, footer { position: relative; z-index: 2; }

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0;
  background: linear-gradient(160deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
  z-index: 1000;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--pad);
  gap: 24px;
  overflow: hidden;
}
.loader__bar { height: 1px; background: var(--line); width: 100%; }
.loader__fill {
  height: 100%; width: 0%;
  background: var(--green);
  box-shadow: 0 0 24px var(--green);
}
.loader__count {
  font-family: var(--display);
  font-size: clamp(40px, 8vw, 120px);
  letter-spacing: -0.04em;
  display: flex; align-items: baseline; gap: 4px;
  font-weight: 300;
}
.loader__count span:last-child { font-size: 0.4em; opacity: 0.5; margin-left: 4px; }
.loader__center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  text-align: center;
}
.loader__logo {
  width: 96px; height: 96px;
  border-radius: 22px;
  filter: drop-shadow(0 0 30px var(--green-glow));
  opacity: 0;
  animation: logo-pop 1s var(--ease-out) 0.2s forwards;
}
@keyframes logo-pop {
  0% { opacity: 0; transform: scale(0.4) rotate(-8deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.loader__word {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, var(--green) 50%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: shimmer 2s var(--ease-out) 0.6s infinite, fade-in 0.6s var(--ease-out) 0.6s forwards;
}
@keyframes shimmer { 0% { background-position: 200% center; } 100% { background-position: -200% center; } }
@keyframes fade-in { to { opacity: 1; } }
.loader__sub {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-dim);
  opacity: 0;
  animation: fade-in 0.6s var(--ease-out) 1s forwards;
}
.loader.is-out {
  transform: translateY(-100%);
  transition: transform 1.4s var(--ease-in-out);
}

/* ============ CURSOR ============ */
.cursor { position: fixed; top: 0; left: 0; pointer-events: none; z-index: 1200; mix-blend-mode: difference; }
.cursor__dot, .cursor__ring {
  position: absolute; top: 0; left: 0;
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.cursor__dot { width: 6px; height: 6px; background: var(--ink); }
.cursor__ring {
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  transition: width .3s var(--ease-out), height .3s var(--ease-out), border-color .3s;
}
.cursor.is-hover .cursor__ring { width: 64px; height: 64px; border-color: var(--green); }
.cursor.is-hover .cursor__dot  { background: var(--green); }

/* ============ SCROLL TO TOP ============ */
.scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  background: rgba(10, 10, 10, 0.65);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    opacity .35s var(--ease-out),
    transform .35s var(--ease-out),
    border-color .25s,
    color .25s,
    background .25s;
  z-index: 40;
}
.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.scroll-top:hover {
  border-color: var(--green);
  color: var(--green);
  background: rgba(10, 10, 10, 0.85);
}
@media (max-width: 720px) {
  .scroll-top { right: 16px; bottom: 16px; width: 36px; height: 36px; }
}

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px var(--pad);
  z-index: 50;
  pointer-events: none;
}
.nav > * { pointer-events: auto; }
.nav::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.85), rgba(10,10,10,0));
  z-index: -1;
  opacity: 0;
  transition: opacity .4s var(--ease-out);
}
.nav.is-scrolled::before { opacity: 1; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }

.nav__brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-size: 16px; font-weight: 600;
}
.nav__logo {
  width: 32px; height: 32px;
  border-radius: 8px;
  filter: drop-shadow(0 0 8px var(--green-glow));
}

.nav__links {
  display: flex; gap: 28px;
  font-family: var(--display);
  font-size: 13px; font-weight: 500;
  color: var(--ink-dim);
}
.nav__links a { position: relative; padding: 6px 2px; transition: color .3s; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--green); transform-origin: left;
  transform: scaleX(0); transition: transform .4s var(--ease-out);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }
@media (max-width: 720px) {
  .nav__links { display: none; }
  .nav__name { display: none; }
}

.nav__cta {
  justify-self: end;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 13px; font-weight: 500;
  transition: border-color .3s, color .3s, background .3s;
}
.nav__cta:hover { border-color: var(--green); color: var(--green); }
.nav__cta--shop {
  background: var(--green);
  color: #0a0a0a;
  border-color: var(--green);
  font-weight: 600;
}
.nav__cta--shop:hover { background: #b6e082; color: #0a0a0a; border-color: #b6e082; }
.nav__cta--shop svg { stroke-width: 1.8; }

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  padding: 130px var(--pad) var(--pad);
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative;
  gap: 40px;
}
.hero__meta {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-size: 11px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim);
  align-self: flex-start;
}
.meta-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 12px var(--green);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50%     { opacity: 0.4; transform: scale(0.7); }
}
.meta-time { margin-left: auto; padding-left: 12px; border-left: 1px solid var(--line); font-variant-numeric: tabular-nums; }

.hero__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(72px, 16vw, 240px);
  line-height: 0.86;
  letter-spacing: -0.05em;
  margin: auto 0;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line--italic { padding-left: clamp(40px, 12vw, 220px); }
.hero__title em {
  font-weight: 300;
  background: linear-gradient(120deg, var(--green) 0%, var(--green-deep) 50%, #d4ff7b 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}
.hero__title [data-split-char] {
  display: inline-block;
  will-change: transform;
}

.hero__sub {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
}
@media (min-width: 980px) {
  .hero__sub { grid-template-columns: 1.1fr 1fr; }
}
.hero__sub p {
  max-width: 50ch;
  font-family: var(--sans);
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 300;
  line-height: 1.55;
  color: rgba(255,255,255,0.75);
}

.hero__cta {
  display: flex; flex-direction: column; align-items: stretch; gap: 16px;
  justify-self: end;
  width: 100%; max-width: 420px;
}
@media (max-width: 980px) { .hero__cta { justify-self: start; } }

.hero__cta-label {
  font-family: var(--display);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-dim);
  margin-top: 4px;
}

.hero__badges { display: flex; gap: 12px; flex-wrap: wrap; }

/* primary "Shop the lights" hero button */
.shop-btn {
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  color: #0a0a0a;
  font-family: var(--display);
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08) inset,
    0 14px 40px rgba(160,212,104,0.28),
    0 0 0 0 var(--green);
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.shop-btn::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.4) 50%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .8s var(--ease-out);
}
.shop-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.12) inset,
    0 18px 50px rgba(160,212,104,0.35),
    0 0 30px rgba(160,212,104,0.4);
}
.shop-btn:hover::before { transform: translateX(120%); }
.shop-btn__txt { display: flex; flex-direction: column; line-height: 1; }
.shop-btn__txt small {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  opacity: 0.7;
}
.shop-btn__txt strong {
  font-size: 26px; font-weight: 700;
  letter-spacing: -0.02em;
  margin-top: 6px;
}
.shop-btn__glyph { width: 28px; height: 28px; flex-shrink: 0; }

.hero__corner {
  position: absolute;
  font-family: var(--display);
  font-size: 11px; font-weight: 400; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-muted);
  display: none;
}
@media (min-width: 1100px) {
  .hero__corner--tl { top: 90px; left: var(--pad); display: block; }
  .hero__corner--tr { top: 90px; right: var(--pad); display: block; }
}

/* ============ STORE BADGES ============ */
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  transition: border-color .3s, background .3s;
  font-family: var(--display);
  text-align: left;
  min-width: 180px;
}
.store-badge:hover {
  border-color: var(--green);
  background: rgba(160,212,104,0.06);
}
.store-badge__glyph {
  width: 30px; height: 30px;
  flex-shrink: 0;
  color: var(--ink);
}
.store-badge__txt { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge__txt small {
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
  font-weight: 400;
}
.store-badge__txt strong {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.store-badge--lg { padding: 18px 28px; }
.store-badge--lg .store-badge__glyph { width: 36px; height: 36px; }
.store-badge--lg .store-badge__txt strong { font-size: 20px; }

/* ============ EYEBROW + REVEAL ============ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--display);
  font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: clamp(28px, 5vw, 64px);
}
.eyebrow__num {
  display: inline-block;
  font-family: var(--display);
  font-size: 13px; font-weight: 600;
  color: var(--green);
}
.eyebrow::after {
  content: ""; width: 60px; height: 1px; background: var(--line);
}

[data-reveal] { display: block; }
[data-reveal] > span { display: block; overflow: hidden; }

/* ============ MARQUEE ============ */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  overflow: hidden;
  white-space: nowrap;
  background: rgba(0,0,0,0.3);
}
.marquee__track {
  display: inline-flex; gap: 48px;
  align-items: center;
  font-family: var(--display);
  font-size: clamp(28px, 5vw, 72px);
  font-weight: 700;
  letter-spacing: -0.03em;
  white-space: nowrap;
  padding-left: 48px;
  color: var(--ink);
  text-transform: uppercase;
  line-height: 1;
}
.marquee__track span { display: inline-flex; align-items: center; }
.marquee__track em {
  background: linear-gradient(120deg, var(--green), var(--green-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-family: var(--display);
}
.marquee__dot {
  color: var(--green);
  font-size: 0.32em;
  line-height: 1;
}

/* ============ MANIFESTO ============ */
.manifesto {
  padding: var(--pad-y) var(--pad);
  max-width: 1400px;
  margin: 0 auto;
}
.manifesto__text {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 64px);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 22ch;
}
.manifesto__text span { display: block; }
.manifesto__text em {
  background: linear-gradient(120deg, var(--green), var(--green-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: var(--display);
}

/* ============ SYSTEM (PINNED) ============ */
.system {
  position: relative;
  padding: var(--pad-y) 0;
}
.system__sticky {
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 96px);
  max-width: 1500px;
  margin: 0 auto;
}
@media (min-width: 980px) {
  .system__sticky {
    grid-template-columns: 1fr 1.4fr;
    align-items: start;
  }
}
.system__heading h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(40px, 5.6vw, 88px);
  line-height: 1;
  letter-spacing: -0.04em;
}
.system__heading h2 em {
  background: linear-gradient(120deg, var(--green), var(--green-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.system__lede {
  margin-top: 24px;
  color: var(--ink-dim);
  font-size: 16px;
  max-width: 36ch;
}
.system__lede span { display: block; }

.system__panels {
  position: relative;
  min-height: clamp(440px, 60vh, 660px);
}
.panel {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.4));
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  opacity: 0; transform: translateY(40px) scale(0.98);
  pointer-events: none;
  transition: opacity .8s var(--ease-out), transform .8s var(--ease-out);
}
.panel.is-active { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
@media (min-width: 720px) {
  .panel {
    grid-template-columns: 1fr 1fr;
    padding: clamp(28px, 4vw, 56px);
    gap: clamp(28px, 4vw, 64px);
  }
}
.panel__index {
  position: absolute; top: 24px; right: 24px;
  font-family: var(--display);
  font-size: 13px; color: var(--green);
  font-weight: 600;
}
.panel__visual {
  position: relative;
  min-height: 260px;
  border-radius: 14px;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 30%, rgba(160,212,104,0.18), transparent 60%), #0a0a0a;
  border: 1px solid var(--line);
}

/* ---- panel: spectrum chart ---- */
.panel__visual--spectrum {
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  max-height: 440px;
  align-self: center;
}
.spectrum-chart { width: 100%; height: 100%; }
.spectrum-chart .spectrum-axis {
  font-family: var(--display); font-size: 9px; font-weight: 500;
  fill: rgba(255,255,255,0.45);
  letter-spacing: 0.1em; text-transform: uppercase;
}
.spectrum-chart .spectrum-skip {
  font-family: var(--display); font-size: 11px; font-weight: 600;
  fill: rgba(255,255,255,0.85);
  letter-spacing: 0.16em; text-transform: uppercase;
}
.spectrum-chart .spectrum-tick {
  font-family: var(--display); font-size: 9px; font-weight: 600;
  fill: var(--green);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
}
.spectrum-chart .spectrum-emit rect { animation: spectrum-glow 3s var(--ease-in-out) infinite; }
.spectrum-chart .spectrum-emit rect:nth-child(2) { animation-delay: 0.4s; }
.spectrum-chart .spectrum-emit rect:nth-child(3) { animation-delay: 0.8s; }
@keyframes spectrum-glow {
  0%,100% { opacity: 0.6; filter: drop-shadow(0 0 4px rgba(160,212,104,0.5)); }
  50%     { opacity: 1;   filter: drop-shadow(0 0 12px rgba(160,212,104,0.9)); }
}

/* ---- panel: BLE rings ---- */
.panel__visual--b { display: flex; align-items: center; justify-content: center; }
.ble-rings { width: 70%; height: 70%; max-width: 280px; }
.ble-rings circle { transform-origin: 100px 100px; animation: ring-pulse 3.6s var(--ease-in-out) infinite; }
.ble-rings circle:nth-child(2) { animation-delay: 0.2s; }
.ble-rings circle:nth-child(3) { animation-delay: 0.4s; }
.ble-rings circle:nth-child(4) { animation-delay: 0.6s; }
.ble-rings circle:nth-child(5) { animation-delay: 0.8s; }
@keyframes ring-pulse {
  0%,100% { transform: scale(1); opacity: 0.85; }
  50%     { transform: scale(1.05); opacity: 1; }
}

/* ---- panel: dashboard grid ---- */
.panel__visual--c { position: relative; }
.panel__visual--c .grid-glow {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(160,212,104,0.12) 0 1px, transparent 1px 28px),
    repeating-linear-gradient(90deg, rgba(160,212,104,0.12) 0 1px, transparent 1px 28px);
  mask-image: radial-gradient(circle at 50% 50%, black, transparent 70%);
  animation: gridmove 12s linear infinite;
}
@keyframes gridmove { to { background-position: 0 56px, 56px 0; } }
.panel__visual--c .grid-pulse {
  position: absolute; left: 50%; top: 50%;
  width: 80px; height: 80px;
  margin: -40px 0 0 -40px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--green), transparent 70%);
  filter: blur(8px);
  animation: ring-pulse 2.4s var(--ease-in-out) infinite;
}

/* ---- panel: OTA ---- */
.panel__visual--d { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 24px; }
.ota-bars { display: flex; gap: 8px; align-items: end; height: 120px; }
.ota-bars i {
  width: 14px;
  background: linear-gradient(180deg, var(--green), var(--green-deep));
  border-radius: 4px;
  animation: bar 1.6s var(--ease-in-out) infinite;
}
.ota-bars i:nth-child(1) { height: 30%; animation-delay: 0.0s; }
.ota-bars i:nth-child(2) { height: 50%; animation-delay: 0.1s; }
.ota-bars i:nth-child(3) { height: 70%; animation-delay: 0.2s; }
.ota-bars i:nth-child(4) { height: 90%; animation-delay: 0.3s; }
.ota-bars i:nth-child(5) { height: 75%; animation-delay: 0.4s; }
.ota-bars i:nth-child(6) { height: 55%; animation-delay: 0.5s; }
.ota-bars i:nth-child(7) { height: 40%; animation-delay: 0.6s; }
.ota-bars i:nth-child(8) { height: 25%; animation-delay: 0.7s; }
@keyframes bar { 0%,100% { transform: scaleY(0.5); } 50% { transform: scaleY(1.15); } }
.ota-tag {
  font-family: var(--display);
  font-size: 12px; font-weight: 600; letter-spacing: 0.16em;
  color: var(--green);
  padding: 6px 14px;
  border: 1px solid var(--green);
  border-radius: 999px;
  text-transform: uppercase;
}

.panel__copy h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.panel__copy p {
  color: var(--ink-dim);
  margin-bottom: 28px;
  max-width: 38ch;
  font-size: 15px;
}
.panel__copy p em {
  color: var(--green);
  font-style: normal;
  font-family: var(--display);
  font-weight: 500;
}
.panel__specs {
  list-style: none;
  border-top: 1px solid var(--line);
}
.panel__specs li {
  display: flex; justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 14px;
}
.panel__specs li span:first-child { color: var(--ink-dim); letter-spacing: 0.1em; text-transform: uppercase; font-size: 11px; font-weight: 500; align-self: center; }
.panel__specs li span:last-child { font-weight: 600; font-size: 16px; }

/* ============ APP SHOWCASE ============ */
.app {
  padding: var(--pad-y) var(--pad);
  max-width: 1500px;
  margin: 0 auto;
}
.app__intro h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.app__intro h2 em {
  background: linear-gradient(120deg, var(--green), var(--green-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.app__lede {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.4;
  color: var(--ink-dim);
  max-width: 50ch;
  margin-bottom: clamp(60px, 8vw, 120px);
}
.app__lede span { display: block; }

/* ===== zigzag rows ===== */
.app-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  padding: clamp(40px, 6vw, 80px) 0;
  border-top: 1px solid var(--line);
}
.app-row:first-of-type { border-top: 0; }
@media (min-width: 980px) {
  .app-row { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .app-row--reverse > .app-row__phone { order: 2; }
}
.app-row__phone { display: flex; justify-content: center; }
.app-row__text { max-width: 46ch; }
.row-num {
  font-family: var(--display);
  font-size: 13px; font-weight: 600;
  color: var(--green);
  letter-spacing: 0.05em;
  display: inline-block;
  margin-bottom: 18px;
}
.app-row__text h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.app-row__text p {
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.row-bullets {
  list-style: none;
  border-top: 1px solid var(--line);
}
.row-bullets li {
  position: relative;
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 14px;
  color: var(--ink);
}
.row-bullets li::before {
  content: ""; position: absolute; left: 0; top: 22px;
  width: 14px; height: 1px; background: var(--green);
}

/* ===== Web dashboard row ===== */
.webrow {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
  padding: clamp(40px, 6vw, 80px) 0;
  border-top: 1px solid var(--line);
}
@media (min-width: 980px) {
  .webrow { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }
}
.webrow__text { max-width: 46ch; }
.webrow__text h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.webrow__text p {
  color: var(--ink-dim);
  font-size: 16px;
  line-height: 1.6;
}
.webrow__text a {
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid color-mix(in oklab, var(--green) 50%, transparent);
}
.webrow__text a:hover { border-bottom-color: var(--green); }
.webrow__shots {
  position: relative;
  display: grid;
  gap: clamp(16px, 2vw, 28px);
}
@media (min-width: 720px) {
  .webrow__shots { grid-template-columns: 1fr 1fr; }
}
.webshot {
  margin: 0;
  position: relative;
}
.webshot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04),
    0 30px 80px rgba(0,0,0,0.5),
    0 0 60px var(--green-glow);
}
.webshot figcaption {
  margin-top: 10px;
  font-family: var(--display);
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.02em;
}
@media (min-width: 720px) {
  .webshot--offset { transform: translateY(28px); }
}

/* ============ PHONE MOCKUPS ============ */
.phone {
  position: relative;
  width: 280px;
  aspect-ratio: 9/19;
  margin: 0 auto;
  perspective: 1000px;
}
.phone__frame {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 44px;
  background: linear-gradient(160deg, #1a1a2e, #0a0a0a);
  padding: 8px;
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,0.08),
    0 30px 80px rgba(0,0,0,0.5),
    0 0 80px var(--green-glow);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.8s var(--ease-out);
}
.app-row--reverse .phone__frame { transform: rotateY(8deg) rotateX(4deg); }
.phone:hover .phone__frame { transform: rotateY(0) rotateX(0); }
.phone__notch {
  position: absolute; top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 84px; height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 5;
}
.phone__screen {
  width: 100%; height: 100%;
  border-radius: 36px;
  overflow: hidden;
  background: linear-gradient(180deg, #121218 0%, #0a0a12 100%);
  padding: 44px 14px 14px;
  display: flex; flex-direction: column; gap: 10px;
  font-family: var(--display);
  position: relative;
}
.phone__screen::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(160,212,104,0.15), transparent 60%);
  pointer-events: none;
}
.phone__status {
  display: flex; justify-content: space-between;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 0 8px;
}
.phone__signal { width: 38px; height: 10px; background: rgba(255,255,255,0.18); border-radius: 4px; }

.phone__hero {
  display: flex; align-items: center; gap: 10px;
  padding: 6px;
}
.phone__hero img { width: 38px; height: 38px; border-radius: 10px; }
.phone__hello { font-size: 13px; font-weight: 600; }
.phone__device { font-size: 10px; color: rgba(255,255,255,0.55); margin-top: 2px; }

.phone__bigtitle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 4px 8px;
}
.phone__bigtitle h4 {
  font-size: 22px; font-weight: 700; letter-spacing: -0.02em;
}
.phone__icon {
  width: 32px; height: 32px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
}

.phone__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 6px;
}
.phone__card--row {
  flex-direction: row; align-items: center; justify-content: space-between;
  gap: 10px;
}
.phone__card-row { display: flex; justify-content: space-between; align-items: center; font-size: 11px; margin-top: 2px; }
.phone__chip {
  display: inline-block;
  font-size: 9px; font-weight: 600;
  padding: 3px 7px; border-radius: 999px;
  background: color-mix(in oklab, var(--c) 22%, transparent);
  color: var(--c);
}
.phone__val { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.8); font-variant-numeric: tabular-nums; }
.phone__bar {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}
.phone__bar i {
  display: block;
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--c), color-mix(in oklab, var(--c) 50%, white));
  box-shadow: 0 0 8px var(--c);
  border-radius: 999px;
  animation: bar-fill 1.6s var(--ease-out) both;
}
@keyframes bar-fill { from { width: 0; } }
.phone__sub { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.phone__title { font-size: 13px; font-weight: 600; margin-top: 2px; }
.phone__title-sm { font-size: 12px; font-weight: 600; margin-top: 2px; }
.phone__pill {
  font-size: 10px; font-weight: 600;
  padding: 4px 10px;
  background: var(--green);
  color: #0a0a0a;
  border-radius: 999px;
}
.phone__cta {
  font-family: var(--display);
  font-size: 12px; font-weight: 600;
  padding: 10px;
  border: 1px dashed rgba(160,212,104,0.4);
  color: var(--green);
  border-radius: 12px;
  background: rgba(160,212,104,0.04);
  cursor: default;
}
.phone__tabs {
  margin-top: auto;
  display: flex; justify-content: space-around;
  padding: 10px 4px 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 10px;
  color: rgba(255,255,255,0.45);
}
.phone__tabs .is-active { color: var(--green); font-weight: 600; }

.phone__halo {
  position: absolute; inset: -10%;
  background: radial-gradient(ellipse at center, var(--green-glow), transparent 60%);
  filter: blur(40px);
  z-index: -1;
  animation: drift 8s var(--ease-in-out) infinite alternate;
}

/* ===== Phone with real screenshot ===== */
.phone--shot { aspect-ratio: 9 / 19.5; }
.phone--shot .phone__screen {
  padding: 0;
  background: #000;
}
.phone--shot .phone__screen::before { display: none; }
.phone--shot .phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* ===== Recipes-feed phone ===== */
.chips { display: flex; gap: 6px; padding: 0 6px; flex-wrap: wrap; }
.chip {
  font-family: var(--display);
  font-size: 10px; font-weight: 500;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.65);
}
.chip.is-active { background: var(--green); color: #0a0a0a; border-color: var(--green); font-weight: 600; }

.recipe-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 10px;
  display: flex; flex-direction: column; gap: 6px;
}
.recipe-card__hd { display: flex; align-items: center; gap: 8px; }
.avatar {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--c);
  color: #0a0a0a;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}
.recipe-card__author { font-size: 10px; color: rgba(255,255,255,0.55); }
.recipe-card__name { font-size: 12px; font-weight: 600; line-height: 1.2; }
.recipe-card__pill {
  margin-left: auto;
  font-size: 10px; font-weight: 600;
  padding: 4px 10px;
  background: var(--green);
  color: #0a0a0a;
  border-radius: 999px;
}
.recipe-card__pill--ghost {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
}
.recipe-card__meta {
  display: flex; gap: 4px; align-items: center;
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  padding-left: 36px;
}
.stars { color: #FFD23B; letter-spacing: 1px; }
.stars .dim { color: rgba(255,255,255,0.18); }
.verified {
  display: inline-flex; align-items: center; justify-content: center;
  width: 12px; height: 12px;
  background: var(--green);
  color: #0a0a0a;
  border-radius: 50%;
  font-size: 8px; font-weight: 700;
  margin-left: 4px;
  vertical-align: middle;
}

/* ===== Growers map phone ===== */
.map {
  position: relative;
  height: 180px;
  margin: 0 6px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #0a1812 0%, #051008 100%);
  border: 1px solid rgba(255,255,255,0.08);
}
.map__grid {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, rgba(160,212,104,0.08) 0 1px, transparent 1px 20px),
    repeating-linear-gradient(90deg, rgba(160,212,104,0.08) 0 1px, transparent 1px 20px);
}
.map__ring {
  position: absolute; left: 50%; top: 50%;
  border-radius: 50%;
  border: 1px solid rgba(160,212,104,0.18);
  transform: translate(-50%,-50%);
}
.map__ring--1 { width: 50px; height: 50px; }
.map__ring--2 { width: 100px; height: 100px; }
.map__ring--3 { width: 160px; height: 160px; }
.map__pin {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--green);
  transform: translate(-50%,-50%);
  box-shadow: 0 0 12px var(--green);
  animation: pin-pulse 2.4s var(--ease-in-out) infinite;
  animation-delay: calc(var(--d, 0) * 1s);
}
.map__pin--me {
  width: 14px; height: 14px;
  background: #fff;
  box-shadow: 0 0 16px #fff, 0 0 30px var(--green);
}
.map__pin--me i {
  position: absolute; inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.4);
  animation: pin-ripple 2s ease-out infinite;
}
@keyframes pin-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes pin-ripple { 0% { transform: scale(0.6); opacity: 1; } 100% { transform: scale(2); opacity: 0; } }

.grower-list { display: flex; flex-direction: column; gap: 6px; padding: 0 4px; }
.grower {
  display: flex; align-items: center; gap: 8px;
  padding: 6px 8px;
  border-radius: 10px;
  background: rgba(255,255,255,0.03);
}
.grower > div { flex: 1; min-width: 0; }
.grower__name { font-size: 11px; font-weight: 600; }
.grower__crops { font-size: 10px; color: rgba(255,255,255,0.55); }

/* ===== Schedule phone ===== */
.group-pill {
  font-family: var(--display);
  font-size: 10px; font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(160,212,104,0.12);
  color: var(--green);
  border: 1px solid rgba(160,212,104,0.3);
}
.group-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 0 6px;
}
.fixture {
  font-family: var(--display);
  font-size: 9px; font-weight: 600;
  text-align: center;
  padding: 8px 0;
  border-radius: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.5);
  position: relative;
}
.fixture.is-on {
  color: var(--green);
  border-color: rgba(160,212,104,0.4);
  background: rgba(160,212,104,0.08);
}
.fixture.is-on::after {
  content: "";
  position: absolute; top: 4px; right: 4px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
}
.phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin: 4px 0;
}
.phase {
  display: flex; flex-direction: column; gap: 4px; align-items: center;
}
.phase span {
  width: 100%; height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
}
.phase.is-done span { background: var(--green-deep); }
.phase.is-active span {
  background: linear-gradient(90deg, var(--green) 50%, rgba(255,255,255,0.08) 50%);
  box-shadow: 0 0 8px var(--green);
}
.phase small {
  font-size: 8px; font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}
.phase.is-active small { color: var(--green); }
.cal-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  padding: 0 6px;
  font-size: 10px; font-weight: 600;
}
.cal-strip span {
  text-align: center;
  padding: 8px 0;
  border-radius: 6px;
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.55);
}
.cal-strip .is-active {
  background: var(--green);
  color: #0a0a0a;
  box-shadow: 0 0 12px var(--green-glow);
}

/* ===== Quick-fire feature grid ===== */
.app__features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-top: clamp(40px, 6vw, 80px);
}
@media (min-width: 980px) { .app__features { grid-template-columns: repeat(4, 1fr); } }
.app__features li {
  background: var(--bg);
  padding: clamp(28px, 3vw, 48px);
  display: flex; flex-direction: column; gap: 14px;
}
.app__icon {
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--green);
  background: rgba(160,212,104,0.06);
}
.app__icon svg { width: 22px; height: 22px; }
.app__features h4 {
  font-family: var(--display);
  font-size: 18px; font-weight: 600; letter-spacing: -0.01em;
}
.app__features p {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.5;
}

/* ============ COMMUNITY ============ */
.community {
  padding: var(--pad-y) var(--pad);
  position: relative;
  border-top: 1px solid var(--line);
}
.community::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(160,212,104,0.06), transparent 60%);
  pointer-events: none;
}
.community__inner {
  max-width: 1300px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
.community__inner h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.community__inner h2 em {
  background: linear-gradient(120deg, var(--green), var(--green-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.community__lede {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.4;
  color: var(--ink-dim);
  max-width: 56ch;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.community__lede span { display: block; }

.leaderboard {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
  margin-bottom: clamp(48px, 6vw, 80px);
}
.leaderboard__row {
  display: grid;
  grid-template-columns: 40px 1.6fr 1.4fr 0.7fr 0.7fr;
  gap: 16px;
  align-items: center;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 14px;
}
@media (max-width: 720px) {
  .leaderboard__row { grid-template-columns: 30px 1fr 0.7fr; gap: 10px; font-size: 12px; }
  .leaderboard__row > .lb__rate, .leaderboard__row > .lb__uses { display: none; }
  .leaderboard__row--head > span:nth-child(4),
  .leaderboard__row--head > span:nth-child(5) { display: none; }
}
.leaderboard__row--head {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-dim);
}
.leaderboard__row .rank {
  font-family: var(--display);
  font-size: 18px; font-weight: 700;
  color: var(--green);
}
.lb__name { font-weight: 600; letter-spacing: -0.01em; }
.lb__author {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-dim);
  font-size: 13px;
}
.lb__author i {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 6px;
  background: var(--c);
  color: #0a0a0a;
  font-style: normal;
  font-size: 9px; font-weight: 700;
}
.lb__author .verified {
  width: 14px; height: 14px;
  font-size: 9px;
}
.lb__rate { color: #FFD23B; font-weight: 600; font-variant-numeric: tabular-nums; }
.lb__uses { color: var(--ink-dim); font-variant-numeric: tabular-nums; }

.community__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 720px) { .community__cards { grid-template-columns: repeat(3, 1fr); } }
.ccard {
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(0,0,0,0.2));
  display: flex; flex-direction: column; gap: 14px;
  transition: border-color .3s, transform .5s var(--ease-out);
}
.ccard:hover { border-color: var(--green); transform: translateY(-4px); }
.ccard__icon {
  width: 44px; height: 44px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--green);
  background: rgba(160,212,104,0.06);
}
.ccard__icon svg { width: 22px; height: 22px; }
.ccard h4 {
  font-family: var(--display);
  font-size: 22px; font-weight: 600; letter-spacing: -0.02em;
}
.ccard p { color: var(--ink-dim); font-size: 14px; line-height: 1.55; }

/* ============ STATS ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (min-width: 980px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--bg);
  padding: clamp(40px, 6vw, 80px) clamp(20px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
}
.stat__num {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(64px, 9vw, 140px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  font-variant-numeric: tabular-nums;
}
.stat--big .stat__num {
  background: linear-gradient(120deg, var(--green), var(--green-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__suffix {
  position: absolute; top: clamp(40px, 6vw, 80px); right: clamp(20px, 3vw, 40px);
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(20px, 1.6vw, 28px);
  color: var(--ink-dim);
}
.stat--big .stat__suffix {
  background: linear-gradient(120deg, var(--green), var(--green-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat__label {
  margin-top: auto;
  color: var(--ink-dim);
  font-size: 12px;
  font-family: var(--display);
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ============ STORIES (RECIPES) ============ */
.stories {
  padding: var(--pad-y) 0 0;
  position: relative;
}
.stories__intro {
  padding: 0 var(--pad);
  max-width: 1500px; margin: 0 auto;
  margin-bottom: clamp(48px, 6vw, 96px);
}
.stories__intro h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.stories__intro h2 em {
  background: linear-gradient(120deg, var(--green), var(--green-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stories__lede {
  font-family: var(--display);
  font-weight: 300;
  color: var(--ink-dim);
  font-size: clamp(15px, 1.2vw, 19px);
  max-width: 50ch;
}
.stories__lede span { display: block; }

.stories__rail {
  display: flex; gap: 24px;
  padding: 0 var(--pad);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: var(--pad-y);
}
.stories__rail::-webkit-scrollbar { display: none; }

.story {
  flex: 0 0 clamp(280px, 32vw, 460px);
  scroll-snap-align: start;
  display: flex; flex-direction: column; gap: 20px;
}
.story__img {
  aspect-ratio: 4/5;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #0d1714;
  border: 1px solid var(--line);
}
.story__icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.story:hover .story__icon { transform: scale(1.06); }

.story__img--grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}
.story__img--grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.story:hover .story__img--grid img { transform: scale(1.04); }
.story__more {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(56px, 7vw, 96px);
  letter-spacing: -0.04em;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0,0,0,0.8), 0 0 40px var(--accent);
  pointer-events: none;
}

.story__meta {
  display: flex; gap: 16px;
  font-family: var(--display);
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-dim);
}
.story__meta span:first-child { color: var(--accent); font-weight: 600; }

.story h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.story p { color: var(--ink-dim); font-size: 14px; max-width: 32ch; }

/* ============ DOWNLOAD ============ */
.download {
  padding: var(--pad-y) var(--pad);
  position: relative;
  border-top: 1px solid var(--line);
}
.download::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(160,212,104,0.08), transparent 60%);
  pointer-events: none;
}
.download__inner {
  max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
  text-align: center;
}
.download__inner .eyebrow { justify-content: center; }
.download__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 32px;
}
.download__title em {
  background: linear-gradient(120deg, var(--green), var(--green-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.download__lede {
  font-family: var(--display);
  font-weight: 300;
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--ink-dim);
  max-width: 56ch;
  margin: 0 auto clamp(40px, 6vw, 72px);
}
.download__lede span { display: block; }
.download__cta {
  display: flex; gap: 16px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: clamp(60px, 8vw, 120px);
}
.download__notes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: left;
  border-top: 1px solid var(--line);
  padding-top: 40px;
  max-width: 920px;
  margin: 0 auto;
}
@media (min-width: 980px) { .download__notes { grid-template-columns: repeat(4, 1fr); } }
.download__notes h5 {
  font-family: var(--display);
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.download__notes p {
  color: var(--ink-dim);
  font-size: 13px;
  line-height: 1.5;
}
.download__notes em { color: var(--ink); font-style: normal; font-family: var(--display); }

/* ============ FOOTER ============ */
.foot {
  position: relative;
  padding: var(--pad-y) var(--pad) 0;
  border-top: 1px solid var(--line);
}
.foot__cta { max-width: 1400px; margin: 0 auto; }
.foot__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: clamp(40px, 6vw, 80px);
}
.foot__title em {
  background: linear-gradient(120deg, var(--green), var(--green-deep));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.foot__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  max-width: 880px;
}
@media (max-width: 720px) {
  .foot__form { grid-template-columns: 1fr; }
}
.foot__form label {
  display: flex; flex-direction: column; gap: 12px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.foot__form label:first-child { padding-right: 24px; border-right: 1px solid var(--line); }
.foot__form-wide { grid-column: 1 / -1; }
.foot__form span {
  font-family: var(--display);
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-dim);
}
.foot__form input {
  background: none; border: 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 400;
  letter-spacing: -0.01em;
  outline: none;
  padding: 0;
}
.foot__form input::placeholder { color: var(--ink-muted); }

.foot__form button {
  grid-column: 1 / -1;
  position: relative;
  margin-top: 32px;
  padding: 22px 36px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-family: var(--display);
  font-size: 16px; font-weight: 600;
  align-self: start; justify-self: start;
  transition: background .4s var(--ease-out), color .4s var(--ease-out);
  overflow: hidden;
}
.foot__form button:hover { background: var(--green); color: #0a0a0a; }
.foot__form button .foot__sent {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--green); color: #0a0a0a;
  transform: translateY(100%);
  transition: transform .5s var(--ease-out);
  font-size: 15px;
}
.foot__form.is-sent button .foot__sent { transform: translateY(0); }

.foot__giant {
  margin-top: clamp(80px, 12vw, 200px);
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(80px, 22vw, 360px);
  letter-spacing: -0.06em;
  line-height: 0.85;
  text-align: center;
  white-space: nowrap;
  background: linear-gradient(180deg, var(--ink) 30%, transparent 95%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  user-select: none;
  overflow: hidden;
}
.foot__giant span { display: inline-block; }

.foot__pride {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px 18px;
  padding: clamp(28px, 4vw, 44px) 0;
  margin-top: clamp(20px, 4vw, 40px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(160,212,104,0.06), transparent 70%);
  font-family: var(--display);
  text-align: center;
}
.foot__pride-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.foot__pride-flag {
  font-family: var(--display);
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.foot__pride-and {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 1.6vw, 22px);
  font-weight: 300;
  color: var(--green);
}

.foot__bottom {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  border-top: 1px solid var(--line);
  padding: 40px 0;
  margin-top: 40px;
}
@media (min-width: 720px) { .foot__bottom { grid-template-columns: repeat(4, 1fr); } }
.foot__col h4 {
  font-family: var(--display);
  font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 16px;
}
.foot__col p {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink-dim);
}
.foot__col a { transition: color .25s; }
.foot__col a:hover { color: var(--ink); }

.foot__legalbar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 12px;
  color: var(--ink-muted);
  letter-spacing: 0.04em;
}
.foot__legalbar-links { display: flex; gap: 22px; }
.foot__legalbar a { transition: color .25s; }
.foot__legalbar a:hover { color: var(--green); }

/* ============ COMING SOON MODAL ============ */
.modal {
  position: fixed; inset: 0;
  z-index: 1100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease-out), visibility 0s linear .5s;
}
.modal.is-open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity .5s var(--ease-out), visibility 0s linear 0s;
}
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(5, 8, 6, 0.7);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
}

.modal__card {
  position: relative;
  width: min(560px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE/Edge */
  padding: clamp(28px, 4vw, 48px);
  border-radius: 28px;
  background:
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(160,212,104,0.18), transparent 70%),
    linear-gradient(180deg, #14181a 0%, #0a0a0a 100%);
  border: 1px solid var(--line-strong);
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.04) inset,
    0 40px 100px rgba(0,0,0,0.6),
    0 0 80px rgba(160,212,104,0.18);
  font-family: var(--display);
  text-align: center;
  transform: translateY(40px) scale(0.96);
  opacity: 0;
  transition: transform .7s var(--ease-out), opacity .5s var(--ease-out);
}
.modal.is-open .modal__card {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal__card::-webkit-scrollbar { display: none; } /* Chrome/Safari */

/* Modal context toggle: app vs shop */
.modal[data-context="shop"] .for-app { display: none; }
.modal:not([data-context="shop"]) .for-shop { display: none; }

.modal__card::before {
  content: ""; position: absolute; inset: -1px;
  border-radius: 28px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(160,212,104,0.6), transparent 50%, rgba(160,212,104,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity .8s var(--ease-out) .2s;
}
.modal.is-open .modal__card::before { opacity: 1; }

.modal__close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  color: var(--ink-dim);
  display: inline-flex; align-items: center; justify-content: center;
  transition: color .25s, border-color .25s, background .25s, transform .25s var(--ease-out);
  z-index: 2;
}
.modal__close:hover {
  color: var(--green);
  border-color: var(--green);
  background: rgba(160,212,104,0.06);
  transform: rotate(90deg);
}

.modal__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: clamp(20px, 3vw, 32px);
  width: 100%;
  justify-content: center;
}
.modal__eyebrow > span:nth-child(2) { color: var(--green); font-weight: 600; }
.modal__eyebrow-spacer {
  flex: 1; max-width: 60px; height: 1px;
  background: var(--line);
  display: inline-block;
  margin: 0 4px;
}
.modal__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s ease-in-out infinite;
}

.modal__logo {
  position: relative;
  width: 88px; height: 88px;
  margin: 0 auto clamp(20px, 3vw, 32px);
}
.modal__logo img {
  width: 100%; height: 100%;
  border-radius: 22px;
  filter: drop-shadow(0 0 24px var(--green-glow));
  position: relative; z-index: 1;
}
.modal__logo-halo {
  position: absolute; inset: -30%;
  background: radial-gradient(circle, var(--green-glow), transparent 60%);
  filter: blur(20px);
  animation: drift 6s ease-in-out infinite alternate;
}

.modal__title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}
.modal__title .modal__line {
  display: block;
  overflow: hidden;
}
.modal__title .modal__line > * {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .9s var(--ease-out);
}
.modal__title .modal__line:nth-child(1) > * { transition-delay: .25s; }
.modal__title .modal__line:nth-child(2) > * { transition-delay: .35s; }
.modal__title .modal__line:nth-child(3) > * { transition-delay: .45s; }
.modal.is-open .modal__title .modal__line > * { transform: translateY(0); }
.modal__title em {
  font-style: normal;
  font-family: var(--display);
  background: linear-gradient(120deg, var(--green) 0%, var(--green-deep) 50%, #d4ff7b 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 4s linear infinite;
}

.modal__text {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.55;
  max-width: 44ch;
  margin: 0 auto clamp(24px, 3vw, 32px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s var(--ease-out) .55s, transform .6s var(--ease-out) .55s;
}
.modal.is-open .modal__text { opacity: 1; transform: translateY(0); }

.modal__form {
  position: relative;
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  margin: 0 auto clamp(24px, 3vw, 32px);
  max-width: 420px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s var(--ease-out) .65s, transform .6s var(--ease-out) .65s, border-color .25s;
  overflow: hidden;
}
.modal.is-open .modal__form { opacity: 1; transform: translateY(0); }
.modal__form:focus-within { border-color: var(--green); }
.modal__form input {
  flex: 1; min-width: 0;
  background: none; border: 0;
  padding: 0 18px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 15px;
  outline: none;
}
.modal__form input::placeholder { color: var(--ink-muted); }
.modal__form button {
  position: relative;
  padding: 12px 22px;
  background: var(--green);
  color: #0a0a0a;
  border-radius: 999px;
  font-family: var(--display);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.01em;
  display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap;
  transition: background .25s;
  overflow: hidden;
}
.modal__form button:hover { background: #b6e082; }
.modal__btn-default { display: inline-flex; align-items: center; gap: 8px; transition: transform .4s var(--ease-out); }
.modal__btn-sent {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  transform: translateY(110%);
  transition: transform .5s var(--ease-out);
  background: var(--green); color: #0a0a0a;
  font-weight: 600;
}
.modal__form.is-sent .modal__btn-default { transform: translateY(-150%); }
.modal__form.is-sent .modal__btn-sent { transform: translateY(0); }
.modal__form.is-sent { border-color: var(--green); background: rgba(160,212,104,0.08); }
.modal__form.is-sent input { color: var(--green); }

.modal__divider {
  position: relative;
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-muted);
  margin: 0 auto clamp(16px, 2vw, 24px);
  max-width: 320px;
}
.modal__divider::before, .modal__divider::after {
  content: ""; flex: 1; height: 1px; background: var(--line);
}

.modal__stores {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  margin-bottom: clamp(20px, 3vw, 28px);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .6s var(--ease-out) .75s, transform .6s var(--ease-out) .75s;
}
.modal.is-open .modal__stores { opacity: 1; transform: translateY(0); }
.modal__store {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px dashed rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.02);
  color: var(--ink-muted);
  font-family: var(--display);
  text-align: left;
  filter: grayscale(0.4);
}
.modal__store-glyph { width: 22px; height: 22px; flex-shrink: 0; opacity: 0.7; }
.modal__store-txt { display: flex; flex-direction: column; line-height: 1.1; }
.modal__store-txt small { font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); }
.modal__store-txt strong {
  font-size: 13px; font-weight: 600;
  color: var(--green);
  margin-top: 3px;
}

.modal__corner {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}

@media (max-width: 480px) {
  .modal__form { flex-direction: column; border-radius: 18px; }
  .modal__form input { padding: 10px 14px; }
  .modal__form button { width: 100%; justify-content: center; }
}

/* ============ MOTION REDUCE ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .hero__title [data-split-char] { transform: none; }
  [data-reveal] > span > * { transform: none !important; opacity: 1 !important; }
  .phone__frame { transform: none; }
}
