/* ============================================================ tokens */
:root {
  --paper: #f7f1e3;
  --paper-deep: #efe6d2;
  --ink: #1d2a1f;
  --ink-soft: #47543f;
  --green-800: #1e4b33;
  --green-600: #3c7d4e;
  --leaf: #4e9a51;
  --amber: #e8a13c;
  --amber-ink: #7a4b12;
  --tomato: #c2483b;
  --cream-card: #fdfaf2;

  --display: "Fraunces", Georgia, serif;
  --body: "Manrope", system-ui, -apple-system, sans-serif;

  --border: 2px solid var(--ink);
  --shadow: 6px 6px 0 rgba(29, 42, 31, 0.16);
  --shadow-lift: 10px 10px 0 rgba(29, 42, 31, 0.18);
  --radius: 18px;

  --step: clamp(4.5rem, 8vw, 8rem);
  --pad: clamp(1.1rem, 4vw, 3rem);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================================ base */
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
  /* paper grain */
  background-image:
    radial-gradient(rgba(29, 42, 31, 0.045) 1px, transparent 1.4px);
  background-size: 26px 26px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
em { font-style: italic; }

.skip {
  position: absolute; left: -999px; top: 8px; z-index: 99;
  background: var(--ink); color: var(--paper); padding: 8px 14px; border-radius: 8px;
}
.skip:focus { left: 8px; }

/* ============================================================ type */
h1, h2, h3 { font-family: var(--display); font-weight: 600; line-height: 1.04; letter-spacing: -0.015em; }
h1 { font-size: clamp(2.6rem, 7.2vw, 5.4rem); }
h2 { font-size: clamp(1.9rem, 4.6vw, 3.4rem); }
h1 em, h2 em { color: var(--green-600); }
.eyebrow {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green-600); margin-bottom: 0.9rem;
}
.lede { font-size: clamp(1rem, 1.7vw, 1.2rem); color: var(--ink-soft); max-width: 34rem; margin-top: 1.3rem; }
.sec-head { max-width: 46rem; margin: 0 auto; text-align: center; padding: 0 var(--pad); }
.sec-sub { color: var(--ink-soft); margin-top: 1rem; }

/* ============================================================ buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-weight: 800; font-size: 0.95rem; text-decoration: none;
  padding: 0.8rem 1.35rem; border-radius: 999px; border: var(--border);
  transition: transform 0.18s var(--ease), box-shadow 0.18s var(--ease), background 0.18s;
}
.btn-big { padding: 1rem 1.7rem; font-size: 1.02rem; }
.btn-solid { background: var(--green-800); color: var(--paper); border-color: var(--green-800); box-shadow: var(--shadow); }
.btn-solid:hover { transform: translate(-2px, -2px); box-shadow: var(--shadow-lift); background: #16402a; }
.btn-solid:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 rgba(29,42,31,.2); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { background: var(--cream-card); transform: translate(-1px, -1px); box-shadow: var(--shadow); }

/* ============================================================ header */
.site-head {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0.7rem var(--pad);
  background: color-mix(in srgb, var(--paper) 86%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(29, 42, 31, 0.14);
}
.brand { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.brand-mark { width: 34px; height: 34px; }
.brand-word { font-family: var(--display); font-weight: 700; font-size: 1.15rem; line-height: 1; display: grid; }
.brand-word em { font-family: var(--body); font-style: normal; font-size: 0.56rem; font-weight: 800; letter-spacing: 0.32em; text-transform: uppercase; color: var(--green-600); }
.brand-word.big { font-size: clamp(2rem, 5vw, 3rem); }
.site-nav { display: flex; gap: 1.4rem; margin-left: auto; }
.site-nav a { text-decoration: none; font-weight: 700; font-size: 0.9rem; color: var(--ink-soft); position: relative; }
.site-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -4px; height: 2px;
  background: var(--green-600); transition: right 0.25s var(--ease);
}
.site-nav a:hover { color: var(--ink); }
.site-nav a:hover::after { right: 0; }
.head-cta { margin-left: 0.4rem; }

/* ============================================================ hero */
.hero {
  display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center; gap: 2rem;
  padding: clamp(2.5rem, 6vw, 5.5rem) var(--pad) clamp(2rem, 5vw, 4rem);
  max-width: 1240px; margin: 0 auto;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
.hero-proof { display: flex; flex-wrap: wrap; gap: 0.5rem 1.4rem; list-style: none; padding: 0; margin-top: 1.6rem; }
.hero-proof li { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); display: flex; align-items: center; gap: 0.45rem; }
.hero-proof li::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--leaf); border: 2px solid var(--green-800); }

.hero-stage { position: relative; min-height: 540px; display: grid; place-items: center; }
.veg { width: clamp(64px, 7vw, 104px); position: absolute; filter: drop-shadow(3px 4px 0 rgba(29,42,31,0.12)); }
.veg-onion  { top: 4%;  left: 4%; }
.veg-tomato { bottom: 10%; left: 0; }
.veg-okra   { top: 0;  right: 10%; rotate: 14deg; }
.veg-keerai { bottom: 2%; right: 4%; }
.veg-carrot { top: 44%; right: -2%; rotate: -10deg; }

/* rubber stamp */
.stamp {
  position: absolute; z-index: 3;
  width: 108px; height: 108px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  font-weight: 800; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--tomato); border: 3px dashed var(--tomato);
  rotate: -12deg; background: color-mix(in srgb, var(--paper) 65%, transparent);
}
.stamp-hero { top: 1%; right: 6%; z-index: 4; }
.stamp-card { position: absolute; right: 1.4rem; bottom: 1.2rem; width: 92px; height: 92px; font-size: 0.64rem; rotate: 9deg; }

/* ============================================================ phone mock */
.phone {
  width: min(300px, 78vw); background: var(--ink); border-radius: 34px; padding: 10px;
  box-shadow: 14px 16px 0 rgba(29, 42, 31, 0.18);
  position: relative; z-index: 2;
}
.tilt { rotate: -2.5deg; }
.phone-top { position: absolute; inset: 10px 10px auto; display: grid; place-items: center; z-index: 3; }
.phone-top i { width: 84px; height: 18px; background: var(--ink); border-radius: 0 0 12px 12px; }
.app, .screen {
  background: #f6f3ea; border-radius: 26px; overflow: hidden;
  font-size: 12.5px; line-height: 1.45; min-height: 500px; padding: 30px 12px 14px;
}
.app-head { display: flex; align-items: center; gap: 7px; padding: 4px 4px 10px; }
.app-logo { width: 22px; height: 22px; border-radius: 7px; background: var(--green-800);
  clip-path: none; position: relative; }
.app-logo::after { content: "🌿"; font-size: 11px; position: absolute; inset: 0; display: grid; place-items: center; }
.app-title { font-weight: 800; }
.app-wallet { margin-left: auto; background: #e7efe2; border: 1.5px solid var(--green-600); color: var(--green-800); font-weight: 800; border-radius: 999px; padding: 2px 9px; font-size: 11px; }
.app-banner { background: #fbeed3; border: 1.5px solid #e0b45e; color: var(--amber-ink); border-radius: 12px; padding: 8px 10px; font-size: 11.5px; margin-bottom: 9px; }
.app-banner b { display: block; }
.app-card { background: #fff; border: 1.5px solid #d8d2c2; border-radius: 14px; padding: 10px 11px; }
.app-card-head { display: flex; justify-content: space-between; align-items: center; }
.app-eyebrow { font-size: 9px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: #8a8672; }
.app-pill { background: #e7efe2; color: var(--green-800); font-weight: 800; font-size: 9px; text-transform: uppercase; letter-spacing: 0.08em; padding: 2px 8px; border-radius: 999px; }
.app-h { font-weight: 800; font-size: 14.5px; margin: 3px 0 6px; }
.app-row { display: flex; align-items: center; gap: 7px; padding: 5px 0; border-bottom: 1px dashed #e3ddcb; }
.app-row b { margin-left: auto; }
.app-row-muted { color: #7c785f; }
.dot { width: 13px; height: 13px; border-radius: 50%; }
.dot-onion { background: #c98da4; } .dot-tomato { background: #d95d4a; }
.dot-potato { background: #cfa76b; } .dot-leaf { background: #5c9b45; }
.app-total { padding-top: 8px; font-size: 11.5px; color: #7c785f; }
.app-total span { font-family: var(--display); font-weight: 700; font-size: 19px; color: var(--ink); margin-right: 5px; }
.app-cta { margin-top: 10px; background: var(--green-800); color: #fff; text-align: center; font-weight: 800; padding: 10px; border-radius: 999px; }

/* ============================================================ ticker */
.ticker { border-block: var(--border); background: var(--green-800); color: var(--paper); overflow: hidden; padding: 0.55rem 0; }
.ticker-track { display: flex; gap: 2.2rem; width: max-content; white-space: nowrap;
  font-family: var(--display); font-size: 1.05rem; font-weight: 500; font-style: italic;
  animation: ticker 36s linear infinite; }
.ticker-track i { font-style: normal; color: var(--amber); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================ why / bento */
.why { padding: var(--step) 0 0; }
.bento {
  max-width: 1240px; margin: 2.6rem auto 0; padding: 0 var(--pad);
  display: grid; gap: 1.1rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.card {
  position: relative; background: var(--cream-card);
  border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 1.6rem 1.5rem 1.5rem;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.card:hover { transform: translate(-3px, -3px); box-shadow: var(--shadow-lift); }
.card h3 { font-size: 1.35rem; margin-bottom: 0.55rem; }
.card p { color: var(--ink-soft); font-size: 0.95rem; }
.card-wide {
  grid-column: span 3; display: grid; column-gap: 2.4rem; row-gap: 1rem;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  grid-template-areas: "title rail" "intro rail";
  align-items: start; background: var(--green-800); color: var(--paper); border-color: var(--green-800);
  padding: 2rem 1.9rem;
}
.card-wide h3 { grid-area: title; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--paper); }
.card-wide > p { grid-area: intro; color: #cfe0c8; max-width: 30rem; }
.card-wide .timeline { grid-area: rail; align-self: center; }
.big-num { font-family: var(--display); font-weight: 700; font-size: 2rem; color: var(--green-600); display: block; margin-bottom: 0.4rem; }

.timeline { list-style: none; padding: 0; display: grid; gap: 0.85rem; position: relative; }
.timeline::before { content: ""; position: absolute; left: 5px; top: 10px; bottom: 10px; border-left: 2px dashed rgba(247,241,227,0.4); }
.timeline li { display: grid; grid-template-columns: auto 1fr; gap: 0.8rem; align-items: baseline; position: relative; padding-left: 1.4rem; }
.timeline li::before { content: ""; position: absolute; left: 0; top: 0.36em; width: 12px; height: 12px; border-radius: 50%; background: var(--amber); border: 2px solid var(--paper); }
.timeline b { font-family: var(--display); font-size: 1.02rem; white-space: nowrap; }
.timeline span { color: #cfe0c8; font-size: 0.9rem; }

/* ============================================================ the sack */
.sack { padding: var(--step) 0 0; }
.mix {
  display: flex; flex-wrap: wrap; justify-content: center; gap: clamp(0.8rem, 3vw, 2.4rem);
  max-width: 1000px; margin: 2.4rem auto 0; padding: 0 var(--pad);
}
.mix-item { text-align: center; }
.mix-item svg { width: clamp(64px, 9vw, 96px); margin: 0 auto; transition: transform 0.25s var(--ease); }
.mix-item:hover svg { transform: translateY(-6px) rotate(-4deg); }
.mix-item figcaption { font-size: 0.82rem; font-weight: 700; color: var(--ink-soft); display: grid; margin-top: 0.35rem; }
.mix-item b { font-family: var(--display); font-size: 1.05rem; color: var(--ink); }

.tags {
  max-width: 1100px; margin: 3rem auto 0; padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.2rem; align-items: stretch;
}
.tag {
  position: relative; background: var(--cream-card); border: var(--border);
  border-radius: 14px 14px var(--radius) var(--radius);
  box-shadow: var(--shadow); padding: 2.2rem 1.5rem 1.6rem; text-align: center;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}
.tag:hover { transform: translate(-3px, -4px) rotate(-0.4deg); box-shadow: var(--shadow-lift); }
.tag-hole { position: absolute; top: 0.8rem; left: 50%; translate: -50% 0; width: 16px; height: 16px; border-radius: 50%; background: var(--paper); border: var(--border); }
.tag h3 { font-size: 1.15rem; }
.tag-kg { font-family: var(--display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3rem); line-height: 1; margin-top: 0.5rem; }
.tag-kg span { font-size: 1rem; color: var(--ink-soft); font-family: var(--body); font-weight: 600; }
.tag-serves { color: var(--ink-soft); font-size: 0.85rem; margin: 0.5rem 0 1rem; }
.tag dl { display: grid; gap: 0.4rem; margin: 0 auto 1.1rem; max-width: 220px; }
.tag dl div { display: flex; justify-content: space-between; border-bottom: 1px dashed rgba(29,42,31,0.25); padding-bottom: 0.3rem; font-size: 0.9rem; }
.tag dt { color: var(--ink-soft); }
.tag dd { font-weight: 800; }
.tag-price { font-family: var(--display); font-weight: 700; font-size: 1.7rem; color: var(--green-800); }
.tag-price span { font-family: var(--body); font-weight: 600; font-size: 0.85rem; color: var(--ink-soft); }
.tag-hero { background: var(--green-800); color: var(--paper); border-color: var(--green-800); scale: 1.03; }
.tag-hero .tag-serves, .tag-hero dt, .tag-hero .tag-kg span { color: #cfe0c8; }
.tag-hero dl div { border-color: rgba(247,241,227,0.3); }
.tag-hero .tag-price { color: var(--amber); }
.tag-flag { position: absolute; top: -0.85rem; left: 50%; translate: -50% 0; background: var(--amber); color: var(--ink); border: var(--border); border-radius: 999px; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.9rem; white-space: nowrap; }
.sack-note { max-width: 44rem; margin: 2.2rem auto 0; padding: 0 var(--pad); text-align: center; color: var(--ink-soft); font-size: 0.95rem; }

/* ============================================================ how */
.how { padding: var(--step) 0 0; }

/* The pinned story: the wrapper is tall, the pin holds the viewport, and the
   scroll position through the wrapper decides which of the four moves is on
   stage — one at a time, like pages of a flipbook. */
.scrolly { height: 420vh; }
.scrolly-pin {
  position: sticky; top: 62px; height: calc(100vh - 62px);
  display: grid; align-items: center; overflow: hidden;
}
.how-grid {
  max-width: 1140px; width: 100%; margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr); gap: clamp(1.5rem, 5vw, 4.5rem);
  align-items: center;
}

.step-stage { display: grid; grid-template-columns: auto 1fr; gap: clamp(1.2rem, 3vw, 2.2rem); align-items: center; }
.dots { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.7rem; position: relative; }
.pip {
  font-family: var(--display); font-weight: 700; font-size: 1rem;
  width: 46px; height: 46px; border-radius: 50%;
  border: 2px solid rgba(29, 42, 31, 0.25); background: transparent; color: var(--ink-soft);
  cursor: pointer; transition: all 0.25s var(--ease); position: relative; z-index: 1;
}
.pip.is-active { background: var(--green-800); border-color: var(--green-800); color: var(--paper); box-shadow: var(--shadow); scale: 1.08; }
.pip.is-done { border-color: var(--green-600); color: var(--green-600); }
.dot-rail { position: absolute; left: 22px; top: 10px; bottom: 10px; width: 2px; background: rgba(29,42,31,0.14); z-index: 0; }
.dot-rail i { display: block; width: 100%; height: var(--progress, 0%); background: var(--green-600); transition: height 0.2s linear; }

.panels { position: relative; min-height: 260px; }
.step-panel {
  position: absolute; inset: 0; display: grid; align-content: center; gap: 0.5rem;
  opacity: 0; transform: translateY(26px); pointer-events: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.step-panel.is-on { opacity: 1; transform: none; pointer-events: auto; }
.step-panel.is-past { transform: translateY(-26px); }
.step-num { font-family: var(--display); font-weight: 700; font-size: 2.6rem; color: var(--green-600); line-height: 1; }
.step-panel h3 { font-size: clamp(1.5rem, 2.6vw, 2rem); }
.step-panel p { color: var(--ink-soft); font-size: 1rem; max-width: 26rem; }

.scrolly-hint { grid-column: 1 / -1; margin-top: 1rem; font-size: 0.78rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); opacity: 0.8; }
.scrolly-hint span { display: inline-block; animation: hintBob 1.6s ease-in-out infinite; }
@keyframes hintBob { 50% { transform: translateY(4px); } }
.scrolly.is-finished .scrolly-hint { visibility: hidden; }

.how-stage { display: grid; place-items: center; }
.phone-how { rotate: 0deg; }
.phone-how .screen { display: none; }
.phone-how .screen.is-on { display: block; animation: screenIn 0.45s var(--ease); }
@keyframes screenIn { from { opacity: 0; transform: translateY(14px); } }

.mini-tag { background: #fff; border: 1.5px solid #d8d2c2; border-radius: 13px; padding: 10px 12px; margin-bottom: 8px; position: relative; }
.mini-tag b { display: block; font-size: 13px; padding-right: 64px; }
.mini-tag span { color: #7c785f; font-size: 11px; }
.mini-tag em { position: absolute; right: 12px; top: 12px; font-style: normal; font-weight: 800; font-family: var(--display); }
.mini-tag-pick { border: 2px solid var(--green-600); background: #eef5ea; }
.mini-check { position: absolute; right: -7px; top: -7px; width: 22px; height: 22px; border-radius: 50%; background: var(--green-600); color: #fff; display: grid; place-items: center; font-size: 12px; font-style: normal; }
.mini-zone { margin-top: 12px; background: var(--green-800); color: #fff; border-radius: 13px; padding: 10px 12px; }
.mini-zone b { display: block; font-size: 13px; }
.mini-zone span { font-size: 11px; color: #cfe0c8; }

.mini-meter { background: var(--green-800); color: #fff; border-radius: 13px; padding: 10px 12px 12px; margin-bottom: 10px; }
.mini-meter b { font-family: var(--display); font-size: 16px; }
.mini-meter i { display: block; height: 7px; border-radius: 99px; background: rgba(255,255,255,0.2); margin: 7px 0 4px; position: relative; overflow: hidden; }
.mini-meter i::after { content: ""; position: absolute; inset: 0; right: calc(100% - var(--fill, 60%)); background: var(--amber); border-radius: 99px; transition: right 0.8s var(--ease); }
.mini-meter span { font-size: 10px; color: #cfe0c8; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 800; }
.mini-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.mini-cell { background: #fff; border: 1.5px solid #d8d2c2; border-radius: 13px; padding: 9px; font-size: 11.5px; font-weight: 700; }
.mini-cell svg { width: 34px; margin-bottom: 3px; }
.mini-cell b { display: block; font-weight: 800; color: var(--green-800); }
.mini-cell.is-picked { border: 2px solid var(--green-600); background: #eef5ea; }

.mini-bill { background: #fff; border: 1.5px solid #d8d2c2; border-radius: 13px; padding: 11px 12px; }
.bill-row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px dashed #e3ddcb; font-size: 12px; }
.bill-extra b { color: var(--amber-ink); }
.bill-less b { color: var(--green-600); }
.bill-total { display: flex; justify-content: space-between; padding-top: 8px; font-weight: 800; }
.bill-total b { font-family: var(--display); font-size: 17px; }
.mini-pay { margin-top: 10px; background: var(--green-800); color: #fff; text-align: center; font-weight: 800; padding: 11px; border-radius: 999px; }
.mini-note { font-size: 10.5px; color: #7c785f; text-align: center; margin-top: 7px; }

.mini-track { list-style: none; padding: 4px; display: grid; gap: 2px; }
.mini-track li { position: relative; padding: 7px 0 7px 26px; }
.mini-track li::before { content: ""; position: absolute; left: 6px; top: 12px; width: 10px; height: 10px; border-radius: 50%; background: #d8d2c2; }
.mini-track li:not(:last-child)::after { content: ""; position: absolute; left: 10px; top: 24px; height: calc(100% - 14px); border-left: 2px dashed #d8d2c2; }
.mini-track li.done::before { background: var(--green-600); }
.mini-track li.now::before { background: var(--amber); box-shadow: 0 0 0 4px rgba(232,161,60,0.25); }
.mini-track b { display: block; font-size: 12.5px; }
.mini-track span { font-size: 10.5px; color: #7c785f; }
.mini-banner { margin: 8px 4px 0; background: #fbeed3; border: 1.5px solid #e0b45e; color: var(--amber-ink); border-radius: 11px; padding: 8px 10px; font-size: 11.5px; font-weight: 700; text-align: center; }

/* ============================================================ zone */
.zone { padding: var(--step) var(--pad) 0; }
.zone-card {
  max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: minmax(0,0.9fr) minmax(0,1.1fr);
  gap: 2rem; align-items: center; background: var(--cream-card);
  border: var(--border); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: clamp(1.4rem, 4vw, 2.6rem);
}
.zone-card h2 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); }
.zone-list { margin-top: 0.7rem; font-weight: 700; }
.zone-soon { margin-top: 0.7rem; color: var(--ink-soft); font-size: 0.92rem; }
.route { width: 100%; }

/* ============================================================ faq */
.faq { padding: var(--step) 0 0; }
.faq-list { max-width: 760px; margin: 2.4rem auto 0; padding: 0 var(--pad); }
.faq-list details { border-bottom: 2px solid rgba(29,42,31,0.18); }
.faq-list summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  font-family: var(--display); font-weight: 600; font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  padding: 1.15rem 0.2rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary i { position: relative; width: 22px; height: 22px; flex: none; }
.faq-list summary i::before, .faq-list summary i::after {
  content: ""; position: absolute; inset: 0; margin: auto; background: var(--green-600); border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.faq-list summary i::before { width: 16px; height: 3px; }
.faq-list summary i::after { width: 3px; height: 16px; }
.faq-list details[open] summary i::after { transform: rotate(90deg); }
.faq-list details p { color: var(--ink-soft); padding: 0 2.4rem 1.2rem 0.2rem; max-width: 40rem; }
.faq-list details[open] p { animation: faqIn 0.35s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } }

/* ============================================================ closer */
.closer { padding: var(--step) var(--pad); }
.closer-inner {
  position: relative; max-width: 900px; margin: 0 auto; text-align: center;
  background: var(--green-800); color: var(--paper);
  border-radius: 26px; border: var(--border); box-shadow: var(--shadow-lift);
  padding: clamp(2.4rem, 6vw, 4.2rem) var(--pad);
}
.closer h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.closer h2 em { color: var(--amber); }
.closer p { margin: 0.9rem 0 1.7rem; color: #cfe0c8; }
.closer .btn-solid { background: var(--amber); border-color: var(--ink); color: var(--ink); }
.closer .btn-solid:hover { background: #f0b055; }
.closer-veg-l, .closer-veg-r { position: absolute; width: 84px; }
.closer-veg-l { left: -26px; top: -30px; rotate: -14deg; }
.closer-veg-r { right: -22px; bottom: -26px; rotate: 12deg; }

/* ============================================================ footer */
.site-foot {
  border-top: var(--border); background: var(--paper-deep);
  padding: 2.6rem var(--pad) 2rem; display: grid; gap: 1.4rem;
  grid-template-columns: 1fr auto; align-items: start;
  max-width: 100%;
}
.foot-brand p { color: var(--ink-soft); font-size: 0.92rem; max-width: 26rem; }
.foot-nav { display: grid; gap: 0.4rem; text-align: right; }
.foot-nav a { text-decoration: none; font-weight: 700; font-size: 0.92rem; color: var(--ink-soft); }
.foot-nav a:hover { color: var(--green-800); text-decoration: underline; }
.foot-line { grid-column: 1 / -1; border-top: 1px dashed rgba(29,42,31,0.3); padding-top: 1.1rem; font-size: 0.8rem; color: var(--ink-soft); }

/* ============================================================ motion */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: 0.08s; } .d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; } .d4 { transition-delay: 0.32s; }

@keyframes floatA { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-13px) rotate(-3deg); } }
@keyframes floatB { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-9px) rotate(4deg); } }
@keyframes floatC { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-16px); } }
.float-a { animation: floatA 7s ease-in-out infinite; }
.float-b { animation: floatB 8.5s ease-in-out infinite; }
.float-c { animation: floatC 6s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .float-a, .float-b, .float-c, .ticker-track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition-duration: 0.01ms !important; }
}

/* ============================================================ responsive */
@media (max-width: 1020px) {
  .bento { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .card-wide {
    grid-column: span 2;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas: "title" "intro" "rail";
  }
  .stamp-hero { right: 8%; }
}
@media (max-width: 860px) {
  .site-nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 3rem; }
  .hero-stage { min-height: 0; padding: 1rem 0 2rem; }
  .veg-carrot { display: none; }
  .how-grid { grid-template-columns: 1fr; gap: 1rem; align-content: center; }
  .how-stage { order: -1; }
  .phone-how { width: min(230px, 62vw); }
  .phone-how .app, .phone-how .screen { min-height: 380px; font-size: 11px; }
  .scrolly-pin { top: 56px; height: calc(100vh - 56px); }
  .step-stage { grid-template-columns: 1fr; gap: 0.8rem; }
  .dots { grid-auto-flow: column; justify-content: start; gap: 0.55rem; }
  .pip { width: 38px; height: 38px; font-size: 0.85rem; }
  .dot-rail { display: none; }
  .panels { min-height: 190px; }
  .step-panel { align-content: start; }
  .step-num { display: none; }
  .scrolly-hint { margin-top: 0.4rem; }
  .tags { grid-template-columns: 1fr; max-width: 460px; }
  .tag-hero { scale: 1; }
  .zone-card { grid-template-columns: 1fr; }
  .site-foot { grid-template-columns: 1fr; }
  .foot-nav { text-align: left; }
}
@media (max-width: 480px) {
  .head-cta { padding: 0.62rem 1rem; font-size: 0.85rem; }
  .hero { padding-top: 2rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stamp-hero { display: none; }
  .stamp-card { display: none; }
  .bento { grid-template-columns: minmax(0, 1fr); }
  .card-wide { grid-column: span 1; padding: 1.6rem 1.4rem; }
  .timeline b { white-space: normal; }
}
