/* ============================================================
   AI Ponics — homepage
   Modern Dark Glow: near-black base, electric-lime accent,
   image-forward smart-garden site with glowing detail.
   ============================================================ */

:root {
  /* ---- modern dark-glow palette ---- */
  --ground:        #0A0E0C;  /* near-black base */
  --ground-2:      #0E1411;  /* slightly lifted band */
  --ink:           #F2F6F3;  /* off-white text/headings */
  --brand:         #0E3A2C;  /* AI Ponics deep forest green (bands) */
  --brand-700:     #0A2A20;  /* darker green */
  --bright:        #7BF24B;  /* electric lime — CTAs/accents/glow */
  --bright-600:    #8DEB60;  /* readable lime on dark (links/eyebrows) */
  --marble:        #12211B;  /* dark green-charcoal band */
  --canopy:        #0C2018;  /* deep green tint (glow bands) */
  --line:          rgba(255, 255, 255, 0.10);  /* hairline borders */
  --surface:       #131A16;  /* card surface */

  --ink-soft:      #AFBDB4;
  --ink-mute:      #76847B;

  --glow:        0 0 0 1px rgba(123, 242, 75, 0.5), 0 16px 48px -16px rgba(123, 242, 75, 0.30);
  --shadow-sm:   0 1px 2px rgba(0, 0, 0, 0.40);
  --shadow:      0 18px 40px -20px rgba(0, 0, 0, 0.62);
  --shadow-lg:   0 40px 80px -30px rgba(0, 0, 0, 0.72);

  --radius:      16px;
  --radius-lg:   24px;
  --radius-xl:   30px;

  --ease:        cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);

  --container:   min(1440px, 93vw); /* wider + a consistent ~3.5% side gap on every screen */
  --container-px: clamp(20px, 4vw, 44px);

  --font-display: 'General Sans', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input { font: inherit; color: inherit; }
a { color: var(--bright-600); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: #B6F593; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin: 0 0 .4em;
  line-height: 1.12;
}
p { margin: 0 0 1em; }
em { font-style: normal; color: var(--bright); }

:focus-visible { outline: 3px solid var(--bright); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; top: -48px; left: 16px;
  background: var(--brand); color: #fff;
  padding: 10px 16px; border-radius: 8px;
  z-index: 200; transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

.container {
  width: 100%; max-width: var(--container); margin: 0 auto;
  padding-left: var(--container-px); padding-right: var(--container-px);
}

/* ---------- shared bits ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bright-600);
  margin-bottom: 16px;
}
.section__head { max-width: 780px; margin: 0 auto 56px; text-align: center; }
.section__head h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin: 0 0 14px; }
.section__head p { margin: 0; font-size: 1.08rem; color: var(--ink-soft); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; line-height: 1;
  border: 1.5px solid transparent; cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease),
              box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.btn svg { width: 16px; height: 16px; }
.btn--bright { background: var(--bright); color: #04140C; box-shadow: 0 0 26px -4px rgba(123,242,75,0.55), 0 12px 26px -12px rgba(123,242,75,0.55); }
.btn--bright:hover { background: #93F564; color: #04140C; transform: translateY(-2px); box-shadow: 0 0 34px -2px rgba(123,242,75,0.7), 0 18px 32px -14px rgba(123,242,75,0.6); }
.btn--primary { background: var(--brand); color: #fff; }
.btn--primary:hover { background: var(--brand-700); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--ghost { background: rgba(255,255,255,0.08); color: #fff; border-color: rgba(255,255,255,0.5); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.btn--ghost:hover { background: rgba(255,255,255,0.2); color: #fff; border-color: #fff; transform: translateY(-2px); }
.btn--lg { padding: 17px 30px; font-size: 1.05rem; }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 14, 12, 0.72);
  -webkit-backdrop-filter: saturate(150%) blur(12px); backdrop-filter: saturate(150%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-top: 14px; padding-bottom: 14px; }
.brand { display: inline-flex; align-items: center; transition: transform .25s var(--ease-out), filter .3s var(--ease); }
.brand img { height: 40px; width: auto; filter: brightness(0) invert(1); }
.brand:hover { transform: translateY(-1px); }
.nav__links { display: flex; align-items: center; gap: 30px; margin: 0 auto 0 40px; list-style: none; padding: 0; }
.nav__link { font-size: 0.95rem; font-weight: 500; color: var(--ink-soft); transition: color .2s var(--ease); }
.nav__link:hover { color: var(--bright-600); }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__cta { padding: 11px 22px; font-size: 0.95rem; }
.nav__contact {
  font-size: 0.92rem; font-weight: 500; color: var(--ink);
  padding: 10px 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--surface);
  transition: border-color .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
}
.nav__contact:hover { border-color: var(--bright); color: var(--brand); transform: translateY(-1px); }
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.nav--hero { background: transparent; border-bottom-color: transparent; }
.nav--hero::before {
  content: ""; position: absolute; inset: 0; bottom: auto; height: 160px;
  background: linear-gradient(to bottom, rgba(6, 20, 14, 0.6), rgba(6, 20, 14, 0));
  pointer-events: none; z-index: -1; transition: opacity .3s var(--ease);
}
.nav--hero:not(.is-scrolled) .brand img { filter: brightness(0) invert(1); }
.nav--hero:not(.is-scrolled) .nav__link { color: rgba(255,255,255,0.92); }
.nav--hero:not(.is-scrolled) .nav__link:hover { color: #fff; }
.nav--hero.is-scrolled::before { opacity: 0; }
@media (max-width: 880px) { .nav__links { display: none; } }

/* ---------- hero (modern split) ---------- */
.hero {
  position: relative; background: var(--ground); color: var(--ink);
  margin-top: -72px; padding: clamp(118px, 17vh, 184px) 0 clamp(64px, 9vh, 112px);
  overflow: hidden;
}
.hero__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(46% 52% at 84% 28%, rgba(123,242,75,0.16), transparent 70%),
    radial-gradient(42% 50% at 6% 6%, rgba(14,58,44,0.55), transparent 72%);
}
.hero__inner {
  position: relative; z-index: 1;
  /* image wall (right column) gets a bit more width so the cards read wider */
  display: grid; grid-template-columns: 1fr 1.1fr; align-items: center;
  gap: clamp(28px, 4vw, 64px);
}
.hero__copy { max-width: 600px; }
.hero__title {
  font-size: clamp(2.55rem, 5.4vw, 4.5rem); font-weight: 600;
  line-height: 1.05; letter-spacing: -0.015em; color: var(--ink);
  margin: 0 0 22px; text-wrap: balance;
}
.hero__lede { font-size: clamp(1.08rem, 1.4vw, 1.26rem); line-height: 1.6; color: var(--ink-soft); max-width: 560px; margin: 0 0 32px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 22px; }
.hero__reassure { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 16px; font-size: 0.9rem; color: var(--ink-mute); margin: 0; }
.hero__reassure .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--bright); }

.hero__wall {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px;
  height: min(82vh, 660px); overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 11%, #000 89%, transparent);
  mask-image: linear-gradient(to bottom, transparent, #000 11%, #000 89%, transparent);
}
.hero__col { overflow: hidden; }
.hero__col--down { margin-top: -34px; }
.hero__col-track { display: flex; flex-direction: column; will-change: transform; }
.hero__col-track img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  border-radius: 16px; margin-bottom: 14px;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.hero__col--up .hero__col-track { animation: heroScrollUp 70s linear infinite; }
.hero__col--down .hero__col-track { animation: heroScrollDown 70s linear infinite; animation-delay: -22s; }
.hero__col--slow .hero__col-track { animation-duration: 95s; }
@keyframes heroScrollUp { from { transform: translateY(0); } to { transform: translateY(-50%); } }
@keyframes heroScrollDown { from { transform: translateY(-50%); } to { transform: translateY(0); } }

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line);
  border-radius: 999px; padding: 8px 16px 8px 12px;
  font-family: var(--font-body); font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink);
  margin-bottom: 22px;
}
.badge__pulse { position: relative; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--bright); }
.badge__pulse::after { content: ""; position: absolute; inset: -4px; border-radius: 50%; background: var(--bright); opacity: 0.5; animation: pulse 2s var(--ease) infinite; }
@keyframes pulse { 0% { transform: scale(0.6); opacity: 0.6; } 70%,100% { transform: scale(1.7); opacity: 0; } }

@media (max-width: 880px) {
  .hero { padding-top: clamp(104px, 14vh, 150px); }
  .hero__inner { grid-template-columns: 1fr; gap: 36px; }
  .hero__copy { order: 1; max-width: 640px; }
  .hero__wall { order: 2; height: 380px; }
  .hero__col--down { margin-top: 0; }
}
@media (max-width: 540px) {
  .hero__cta .btn { flex: 1 1 100%; }
  .hero__wall { grid-template-columns: repeat(2, 1fr); height: 330px; }
  .hero__wall .hero__col--slow { display: none; }
}

/* ---------- credibility strip ---------- */
.credibility { padding: clamp(36px, 5vh, 52px) 0; background: var(--surface); border-bottom: 1px solid var(--line); overflow: hidden; }
.credibility__head { text-align: center; margin-bottom: 22px; }
.credibility__head .eyebrow { margin: 0; color: var(--ink-mute); }
.marquee { position: relative; overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track {
  display: inline-flex; align-items: center; gap: 40px; white-space: nowrap;
  font-family: var(--font-display); font-size: clamp(1.15rem, 2.2vw, 1.7rem); font-weight: 500;
  color: var(--ink); opacity: 0.8; animation: marquee 38s linear infinite; padding-left: 40px;
}
.marquee__dot { color: var(--bright); font-size: 0.5em; transform: translateY(-3px); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- lifestyle cards (auk-style) ---------- */
.life { padding: clamp(72px, 11vh, 120px) 0; background: var(--ground); }
.life__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.life__card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 4 / 5; box-shadow: var(--shadow);
  display: block; isolation: isolate;
}
.life__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.life__card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,20,14,0.8) 0%, rgba(6,20,14,0.15) 45%, rgba(6,20,14,0) 70%); z-index: 1; }
.life__card:hover img { transform: scale(1.06); }
.life__cap { position: absolute; left: 22px; right: 22px; bottom: 22px; z-index: 2; color: #fff; }
.life__cap h3 { color: #fff; font-size: clamp(1.2rem, 1.8vw, 1.5rem); margin: 0; line-height: 1.1; text-shadow: 0 2px 12px rgba(0,0,0,0.35); }
.life__cap p { margin: 6px 0 0; font-size: 0.92rem; color: rgba(255,255,255,0.9); }
@media (max-width: 820px) { .life__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .life__grid { grid-template-columns: 1fr; } .life__card { aspect-ratio: 4 / 5; } }

/* ---------- founding batch / scarcity ---------- */
.batch { padding: clamp(72px, 12vh, 130px) 0; background: radial-gradient(120% 90% at 50% 0%, rgba(123,242,75,0.12), transparent 56%), var(--canopy); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.batch__inner { max-width: 780px; margin: 0 auto; text-align: center; }
.batch h2 { font-size: clamp(2rem, 4.4vw, 3rem); margin: 0 0 14px; }
.batch p { font-size: 1.08rem; margin: 0 auto 36px; max-width: 600px; }
.tiers { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin: 0 0 34px; }
.tier {
  position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; text-align: left;
  min-width: 200px; flex: 1 1 200px; max-width: 260px; padding: 18px 22px;
  background: var(--surface); border: 1.5px solid var(--line); border-radius: var(--radius);
  cursor: pointer; font: inherit; color: var(--ink);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), transform .2s var(--ease), background .2s var(--ease);
}
.tier:hover:not([disabled]) { transform: translateY(-2px); box-shadow: var(--shadow); }
.tier__name { font-weight: 600; font-size: 1.02rem; }
.tier__meta { font-size: 0.85rem; color: var(--ink-mute); }
.tier[aria-pressed="true"] { border-color: var(--bright); background: #16221B; box-shadow: 0 0 0 3px rgba(123,242,75,0.22), 0 0 30px -8px rgba(123,242,75,0.4); }
.tier[data-state="sold"] { cursor: not-allowed; opacity: 0.62; }
.tier[data-state="sold"] .tier__name { text-decoration: line-through; text-decoration-color: var(--ink-mute); }
.tier__flag { position: absolute; top: -10px; right: 14px; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 4px 9px; border-radius: 999px; }
.tier[data-state="sold"] .tier__flag { background: var(--marble); color: var(--ink-mute); }
.tier[data-state="open"] .tier__flag { background: var(--bright); color: #04140C; }
.tier[data-state="soon"] .tier__flag { background: var(--brand); color: #fff; }
@media (max-width: 600px) { .tiers { flex-direction: column; align-items: stretch; } .tier { min-width: 0; max-width: none; flex: 1 1 auto; width: 100%; } }

/* ---------- features (bento grid, glowing dark cards) ---------- */
.features { padding: clamp(80px, 14vh, 140px) 0; background: var(--ground); }
.features__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(16px, 2vw, 26px); }
.feature {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: transform .28s var(--ease-out), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 0 0 1px rgba(123,242,75,0.5), 0 22px 50px -24px rgba(123,242,75,0.35), var(--shadow); border-color: rgba(123,242,75,0.5); }
.feature__img { aspect-ratio: 16 / 11; overflow: hidden; background: var(--ground-2); }
.feature__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.feature:hover .feature__img img { transform: scale(1.05); }
.feature__body { padding: 24px 26px 28px; }
.feature h3 { font-size: 1.3rem; margin: 0 0 8px; display: flex; align-items: center; gap: 10px; }
.feature h3 .num { font-size: 0.72rem; font-weight: 700; color: var(--bright-600); background: rgba(123,242,75,0.12); border-radius: 999px; padding: 3px 9px; letter-spacing: 0.04em; }
.feature p { margin: 0; font-size: 0.97rem; color: var(--ink-soft); }

/* bento spans: 2 wide rows + a wide banner */
.feature:nth-child(1) { grid-column: span 4; }
.feature:nth-child(2) { grid-column: span 2; }
.feature:nth-child(3) { grid-column: span 2; }
.feature:nth-child(4) { grid-column: span 2; }
.feature:nth-child(5) { grid-column: span 2; }
.feature:nth-child(6) { grid-column: span 6; }
/* the two wide cards lay out image + text side by side */
.feature:nth-child(1), .feature:nth-child(6) { display: grid; grid-template-columns: 1.1fr 1fr; }
.feature:nth-child(1) .feature__img, .feature:nth-child(6) .feature__img { aspect-ratio: auto; height: 100%; min-height: 250px; }
.feature:nth-child(1) .feature__body, .feature:nth-child(6) .feature__body { align-self: center; padding: clamp(24px, 3vw, 40px); }
.feature:nth-child(1) h3, .feature:nth-child(6) h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }

@media (max-width: 880px) {
  .features__grid { grid-template-columns: 1fr 1fr; }
  .feature:nth-child(n) { grid-column: auto; }
  .feature:nth-child(1), .feature:nth-child(6) { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .features__grid { grid-template-columns: 1fr; }
  .feature:nth-child(1), .feature:nth-child(6) { display: block; }
  .feature:nth-child(1) .feature__img, .feature:nth-child(6) .feature__img { aspect-ratio: 16 / 11; height: auto; min-height: 0; }
}

/* ---------- hardware strip (inside the end-to-end system) ---------- */
.hardware {
  margin-top: clamp(34px, 5vw, 60px);
  background: linear-gradient(180deg, #F5F8F4 0%, #E7ECE4 100%);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 48px);
}
.hardware__head { text-align: center; max-width: 640px; margin: 0 auto clamp(26px, 3vw, 40px); }
.hardware__head .eyebrow { color: #2F7A52; margin-bottom: 10px; }
.hardware__head h3 { color: #10231B; font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0; }
.hardware__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 26px); }
.hw { margin: 0; background: #fff; border: 1px solid rgba(0,0,0,0.07); border-radius: var(--radius); overflow: hidden; box-shadow: 0 14px 32px -20px rgba(0,0,0,0.28); transition: transform .28s var(--ease-out), box-shadow .28s var(--ease); }
.hw:hover { transform: translateY(-5px); box-shadow: 0 26px 50px -24px rgba(0,0,0,0.34); }
.hw__img { aspect-ratio: 4 / 3; background: #E9EAE6; }
.hw__img img { width: 100%; height: 100%; object-fit: contain; }
.hw__cap { padding: 16px 20px 22px; }
.hw__cap h4 { font-size: 1.12rem; margin: 0 0 6px; color: #10231B; }
.hw__cap p { margin: 0; font-size: 0.93rem; color: #4A564E; line-height: 1.5; }
@media (max-width: 820px) { .hardware__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

/* ---------- fits-anywhere horizontal scroller ---------- */
.spots { padding: clamp(72px, 12vh, 120px) 0; background: var(--marble); overflow: hidden; }
.spots__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.spots__head .section__head { text-align: left; margin: 0; max-width: 640px; }
.spots__nav { display: flex; gap: 10px; }
.spots__btn {
  width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--line); background: var(--surface);
  color: var(--ink); cursor: pointer; display: grid; place-items: center; transition: all .2s var(--ease); flex: none;
}
.spots__btn:hover { background: var(--brand); color: #fff; border-color: var(--brand); transform: translateY(-2px); }
.spots__btn svg { width: 20px; height: 20px; }
.spots__track {
  display: flex; gap: clamp(16px, 2vw, 22px); overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 4px 4px 18px; margin: 0 calc(-1 * var(--container-px)); padding-left: var(--container-px); padding-right: var(--container-px);
  scrollbar-width: none;
}
.spots__track::-webkit-scrollbar { display: none; }
.spot {
  position: relative; flex: 0 0 auto; width: clamp(240px, 30vw, 320px); scroll-snap-align: start;
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow); background: var(--ground-2);
}
.spot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.spot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,20,14,0.7), rgba(6,20,14,0) 55%); }
.spot:hover img { transform: scale(1.05); }
.spot__cap { position: absolute; left: 18px; bottom: 16px; z-index: 2; color: #fff; font-weight: 600; font-size: 1.02rem; text-shadow: 0 2px 10px rgba(0,0,0,0.4); }
@media (max-width: 640px) { .spots__head { flex-direction: column; align-items: flex-start; } .spots__nav { display: none; } .spot { width: 74vw; } }

/* ---------- how it works (3 steps) ---------- */
.howto { padding: clamp(72px, 12vh, 120px) 0; background: var(--canopy); }
.howto__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 2.5vw, 30px); counter-reset: step; }
.howto__step { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .28s var(--ease-out); }
.howto__step:hover { transform: translateY(-4px); }
.howto__img { aspect-ratio: 1 / 1; overflow: hidden; background: var(--ground-2); }
.howto__img img { width: 100%; height: 100%; object-fit: cover; }
.howto__body { padding: 22px 24px 26px; }
.howto__num { display: inline-flex; align-items: center; justify-content: center; width: 30px; height: 30px; border-radius: 50%; background: rgba(123,242,75,0.14); color: var(--bright-600); font-weight: 700; font-size: 0.92rem; margin-bottom: 12px; }
.howto__body h3 { font-size: 1.2rem; margin: 0 0 8px; color: var(--ink); }
.howto__body p { margin: 0; font-size: 0.96rem; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 820px) { .howto__grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ---------- faq ---------- */
.faq { padding: clamp(72px, 12vh, 120px) 0; background: var(--marble); }
.faq__list { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__item summary { list-style: none; cursor: pointer; padding: 22px 46px 22px 6px; position: relative; font-weight: 600; font-size: 1.06rem; color: var(--ink); }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; position: absolute; right: 10px; top: 18px; font-size: 1.5rem; font-weight: 300; line-height: 1; color: var(--bright-600); transition: transform .25s var(--ease); }
.faq__item[open] summary::after { content: "\2212"; }
.faq__a { padding: 0 46px 24px 6px; }
.faq__a p { margin: 0; color: var(--ink-soft); line-height: 1.62; font-size: 0.99rem; }

/* ---------- demo video block ---------- */
.demo { padding: clamp(80px, 13vh, 130px) 0; background: var(--ground); }
.demo__frame { max-width: 980px; margin: 0 auto; position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); background: #0b1a13; border: 1px solid rgba(20,36,30,0.12); }
.demo__frame video { width: 100%; display: block; aspect-ratio: 660 / 478; object-fit: cover; }
.demo__tag { position: absolute; left: 16px; bottom: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; background: rgba(6,20,14,0.6); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); color: #fff; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; padding: 7px 14px; border-radius: 999px; }
.demo__tag .live { width: 8px; height: 8px; border-radius: 50%; background: #ff5a5a; animation: livePulse 2s var(--ease) infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(255,90,90,0.6);} 70%,100% { box-shadow: 0 0 0 7px rgba(255,90,90,0);} }

/* ---------- from garden to plate (food band) ---------- */
.food { padding: clamp(72px, 12vh, 120px) 0; background: var(--ground-2); }
.food__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2vw, 26px); }
.food__item { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 16 / 10; box-shadow: var(--shadow); }
.food__item img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-out); }
.food__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,20,14,0.72), rgba(6,20,14,0) 62%); }
.food__item:hover img { transform: scale(1.06); }
.food__cap { position: absolute; left: 22px; bottom: 18px; z-index: 2; color: #fff; font-weight: 600; font-size: 1.18rem; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
@media (max-width: 520px) { .food__grid { grid-template-columns: 1fr; } .food__item { aspect-ratio: 16 / 10; } }

/* ---------- stats band ---------- */
.stats { background: radial-gradient(100% 130% at 50% 120%, rgba(123,242,75,0.14), transparent 60%), var(--brand); color: rgba(255,255,255,0.86); padding: clamp(56px, 9vh, 96px) 0; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 3vw, 44px); text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.4rem, 4.6vw, 3.7rem); font-weight: 600; color: #fff; line-height: 1; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; margin-bottom: 12px; }
.stat__num em { color: var(--bright); }
.stat__label { font-size: 0.95rem; color: rgba(255,255,255,0.82); }
.stat--triple .stat__num { font-size: clamp(1.5rem, 2.6vw, 2.1rem); }
@media (max-width: 740px) { .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; } }

/* ---------- app showcase ---------- */
.app { padding: clamp(80px, 13vh, 130px) 0; background: var(--ground); }
.app__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.app__copy { max-width: 480px; }
.app__copy h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 0 0 16px; }
.app__copy p { font-size: 1.06rem; }
.app__list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.app__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.98rem; color: var(--ink-soft); }
.app__list svg { flex: none; width: 20px; height: 20px; color: var(--bright); margin-top: 2px; }
.app__stage { display: flex; flex-direction: column; align-items: center; }
.phone { position: relative; width: 280px; max-width: 78vw; aspect-ratio: 280 / 580; background: #0b1a13; border-radius: 42px; padding: 12px; box-shadow: var(--shadow-lg), inset 0 0 0 2px rgba(255,255,255,0.06); }
.phone::before { content: ""; position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 92px; height: 22px; background: #0b1a13; border-radius: 0 0 14px 14px; z-index: 3; }
.phone__screen { width: 100%; height: 100%; background: linear-gradient(170deg, var(--brand) 0%, #0a3a2c 60%, #082b21 100%); border-radius: 32px; overflow: hidden; color: #fff; display: flex; flex-direction: column; padding: 38px 16px 18px; }
.phone__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.phone__top h4 { font-size: 0.95rem; margin: 0; color: #fff; }
.phone__top span { font-size: 0.7rem; color: rgba(255,255,255,0.6); }
.phone__hero { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 14px; margin-bottom: 12px; }
.phone__hero .lbl { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.phone__hero .val { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: #fff; }
.phone__bars { display: flex; align-items: flex-end; gap: 4px; height: 38px; margin-top: 10px; }
.phone__bars i { flex: 1; background: var(--bright); border-radius: 3px 3px 0 0; opacity: 0.9; }
.phone__plant { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.06); border-radius: 12px; padding: 10px 12px; margin-bottom: 8px; }
.phone__dot { width: 26px; height: 26px; border-radius: 8px; background: rgba(18,196,110,0.25); display: grid; place-items: center; flex: none; }
.phone__dot svg { width: 15px; height: 15px; color: var(--bright); }
.phone__plant .name { font-size: 0.8rem; font-weight: 600; color: #fff; }
.phone__plant .sub { font-size: 0.68rem; color: rgba(255,255,255,0.6); }
.phone__pill { margin-left: auto; font-size: 0.6rem; font-weight: 700; padding: 3px 8px; border-radius: 999px; background: rgba(18,196,110,0.25); color: #7be3b3; letter-spacing: 0.04em; }
.phone__pill--warn { background: rgba(244,162,97,0.22); color: #ffc98a; }
.phone__note { margin-top: auto; font-size: 0.66rem; color: rgba(255,255,255,0.5); text-align: center; }
.app__note-line { margin: 18px 0 0; font-size: 0.84rem; color: var(--ink-mute); }
@media (max-width: 820px) { .app__inner { grid-template-columns: 1fr; text-align: center; } .app__copy { max-width: 560px; margin: 0 auto; } .app__list { text-align: left; max-width: 360px; margin: 22px auto 0; } }

/* app: floating live cards layered over the phone */
.app__float {
  position: absolute; z-index: 4; width: 198px;
  background: rgba(13, 22, 18, 0.82); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.14); border-radius: 16px;
  padding: 13px 15px; box-shadow: var(--shadow-lg);
  display: flex; flex-direction: column; gap: 10px;
}
.app__float-head { display: flex; align-items: center; gap: 7px; font-family: var(--font-body); font-size: 0.74rem; font-weight: 600; color: #fff; }
.app__float-head svg { width: 14px; height: 14px; color: var(--bright); flex: none; }
.app__live { width: 7px; height: 7px; border-radius: 50%; background: var(--bright); flex: none; animation: livePulse 2s var(--ease) infinite; }
.app__float--sensors { top: 50px; right: -38px; }
.app__metrics { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 6px; }
.app__metrics > div { display: flex; flex-direction: column; }
.app__metrics .m-val { font-family: var(--font-display); font-size: 1.02rem; font-weight: 600; color: #fff; line-height: 1.05; }
.app__metrics .m-lbl { font-size: 0.6rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-top: 1px; }
.app__float-foot { font-size: 0.66rem; color: var(--bright-600); font-weight: 600; }
.app__float--task { bottom: 38px; left: -38px; }
.app__task { display: flex; align-items: center; gap: 8px; font-size: 0.72rem; color: rgba(255,255,255,0.92); }
.app__task-prio { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.app__task-prio--high { background: #ff8a5a; box-shadow: 0 0 0 3px rgba(255,138,90,0.18); }
.app__task-prio--low { background: var(--bright); box-shadow: 0 0 0 3px rgba(123,242,75,0.16); }
@media (max-width: 600px) { .app__float { display: none; } }

/* ---------- gallery wall (in real spaces) ---------- */
.gallery { padding: clamp(80px, 13vh, 130px) 0; background: var(--ground-2); }
.gallery__grid { column-count: 4; column-gap: clamp(12px, 1.5vw, 18px); }
.gallery__item { position: relative; break-inside: avoid; margin-bottom: clamp(12px, 1.5vw, 18px); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; display: block; transition: transform .5s var(--ease-out); }
.gallery__item::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(6,20,14,0.55), rgba(6,20,14,0) 50%); opacity: 0; transition: opacity .3s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item:hover::after { opacity: 1; }
.gallery__cap { position: absolute; left: 14px; bottom: 12px; z-index: 2; color: #fff; font-size: 0.82rem; font-weight: 600; opacity: 0; transform: translateY(6px); transition: opacity .3s var(--ease), transform .3s var(--ease); text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
.gallery__item:hover .gallery__cap { opacity: 1; transform: none; }
@media (max-width: 1000px) { .gallery__grid { column-count: 3; } }
@media (max-width: 680px) { .gallery__grid { column-count: 2; } }

/* ---------- founder story (dark) ---------- */
.founders { padding: clamp(80px, 13vh, 130px) 0; background: var(--brand); color: rgba(255,255,255,0.86); }
.founders .eyebrow { color: var(--bright); }
.founders .section__head h2 { color: #fff; }
.founders .section__head p { color: rgba(255,255,255,0.84); }
.founders__grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 3vw, 28px); max-width: 940px; margin-inline: auto; }
.founders__grid li { text-align: center; padding: 28px 18px; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-lg); transition: transform .25s var(--ease-out), background .25s var(--ease); }
.founders__grid li:hover { transform: translateY(-3px); background: rgba(255,255,255,0.1); }
.founders__avatar { width: 76px; height: 76px; margin: 0 auto 16px; border-radius: 50%; background: linear-gradient(150deg, var(--bright), #0a6b48); display: flex; align-items: center; justify-content: center; color: #04140C; font-family: var(--font-display); font-weight: 600; font-size: 1.2rem; }
.founders__grid h3 { font-size: 1.05rem; margin: 0 0 4px; color: #fff; font-family: var(--font-body); font-weight: 600; }
.founders__role { font-size: 0.88rem; margin: 0 0 2px; color: var(--bright); font-weight: 500; }
.founders__field { font-size: 0.84rem; margin: 0; color: rgba(255,255,255,0.6); }
@media (max-width: 860px) { .founders__grid { grid-template-columns: 1fr 1fr; } }

/* ---------- final CTA + reservation form ---------- */
.reserve { padding: clamp(80px, 13vh, 140px) 0; background: radial-gradient(90% 80% at 50% 0%, rgba(123,242,75,0.10), transparent 55%), var(--ground); }
.reserve__inner { max-width: 620px; margin: 0 auto; text-align: center; }
.reserve h2 { font-size: clamp(2.1rem, 4.4vw, 3rem); margin: 0 0 14px; }
.reserve p { font-size: 1.08rem; margin: 0 auto 34px; max-width: 520px; }
.notify { max-width: 540px; margin: 0 auto; text-align: left; }
.notify__label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 10px; text-align: center; }
.notify__row { display: flex; align-items: center; gap: 8px; background: var(--surface); border: 1px solid var(--line); border-radius: 999px; padding: 6px 6px 6px 22px; box-shadow: var(--shadow-sm); transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
.notify__row:focus-within { border-color: var(--bright); box-shadow: 0 0 0 4px rgba(123,242,75,0.20), var(--shadow-sm); }
.notify__input { flex: 1; background: transparent; border: 0; outline: 0; font-size: 1rem; color: var(--ink); padding: 14px 0; }
.notify__input::placeholder { color: var(--ink-mute); }
.notify__submit { display: inline-flex; align-items: center; gap: 8px; background: var(--bright); color: #04140C; border: 0; padding: 13px 22px; border-radius: 999px; font-weight: 700; cursor: pointer; white-space: nowrap; box-shadow: 0 0 22px -6px rgba(123,242,75,0.6); transition: background .2s var(--ease), transform .2s var(--ease); }
.notify__submit:hover { background: #93F564; transform: translateY(-1px); }
.notify__submit:active { transform: translateY(0); }
.notify__hint { font-size: 0.85rem; color: var(--ink-mute); margin: 14px 4px 0; text-align: center; }
.notify__status { margin: 12px 4px 0; font-size: 0.92rem; font-weight: 500; min-height: 1.2em; text-align: center; }
.notify__status[data-state="success"] { color: var(--bright-600); }
.notify__status[data-state="error"] { color: #C0392B; }
.notify__noscript { margin-bottom: 14px; text-align: center; }
.honeypot { position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 540px) {
  .notify { max-width: 100%; }
  .notify__row { flex-direction: column; align-items: stretch; gap: 12px; background: transparent; border: 0; border-radius: 0; box-shadow: none; padding: 0; }
  .notify__row:focus-within { border-color: transparent; box-shadow: none; }
  .notify__input { display: block; width: 100%; background: var(--surface); color: var(--ink); border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; font-size: 1rem; line-height: 1.3; -webkit-appearance: none; appearance: none; transition: border-color .2s var(--ease), box-shadow .2s var(--ease); }
  .notify__input:focus { outline: 0; border-color: var(--bright); box-shadow: 0 0 0 4px rgba(123,242,75,0.20); }
  .notify__submit { width: 100%; justify-content: center; padding: 15px 22px; font-size: 1rem; border-radius: 14px; box-shadow: 0 6px 18px -8px rgba(123,242,75,0.6); }
  .notify__submit:hover { transform: none; }
}

/* ---------- legal / 404 ---------- */
.legal { padding: clamp(60px, 10vh, 120px) 0; }
.legal__inner { max-width: 760px; margin: 0 auto; }
.legal__head { margin-bottom: 40px; }
.legal__head h1 { font-size: clamp(2rem, 4vw, 3rem); margin: 8px 0 12px; }
.legal__meta { color: var(--ink-mute); font-size: 0.92rem; margin: 0; }
.legal h2 { font-size: 1.3rem; margin: 36px 0 12px; }
.legal ul { margin: 0 0 1em; padding-left: 1.4em; }
.legal li { margin-bottom: 6px; }
.legal__address { font-style: normal; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 24px; margin-top: 12px; line-height: 1.7; }
.notfound { padding: clamp(80px, 14vh, 160px) 0; text-align: center; }
.notfound__inner { max-width: 560px; margin: 0 auto; }
.notfound__code { font-family: var(--font-display); font-size: clamp(4rem, 12vw, 7rem); font-weight: 600; color: var(--bright-600); line-height: 1; letter-spacing: -0.04em; margin-bottom: 12px; }
.notfound h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 0 0 16px; }
.notfound p { color: var(--ink-soft); margin: 0 0 32px; }

/* ---------- footer ---------- */
.footer { background: var(--ground-2); padding: 64px 0 24px; border-top: 1px solid var(--line); }
.footer__inner { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(24px, 4vw, 60px); align-items: start; margin-bottom: 36px; }
.footer__brand img { height: 52px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer__brand p { color: var(--ink-mute); margin: 0; max-width: 320px; }
.footer__social { list-style: none; padding: 0; margin: 18px 0 0; display: flex; gap: 10px; }
.footer__social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; background: var(--surface); border: 1px solid var(--line); color: var(--ink-mute); transition: color .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease); }
.footer__social a:hover, .footer__social a:focus-visible { color: var(--bright); border-color: var(--bright); background: rgba(123,242,75,0.12); transform: translateY(-2px); }
.footer__social svg { display: block; }
.footer__meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 0; }
.footer__meta dt { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 6px; }
.footer__meta dd { margin: 0; font-size: 0.95rem; color: var(--ink); }
.footer__meta dd a { color: var(--ink); border-bottom: 1px solid transparent; }
.footer__meta dd a:hover { color: var(--bright-600); border-bottom-color: var(--bright); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--line); color: var(--ink-mute); font-size: 0.82rem; }
@media (max-width: 740px) { .footer__inner { grid-template-columns: 1fr; } .footer__meta { grid-template-columns: 1fr 1fr; } .footer__bottom { flex-direction: column; gap: 8px; text-align: center; } }

/* ---------- reveal-on-scroll (gated behind .js) ---------- */
.js [data-reveal] { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js [data-reveal][data-reveal-delay="1"] { transition-delay: .08s; }
.js [data-reveal][data-reveal-delay="2"] { transition-delay: .16s; }
.js [data-reveal][data-reveal-delay="3"] { transition-delay: .24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js [data-reveal], [data-reveal] { opacity: 1; transform: none; transition: none; }
  .hero__col-track { animation: none; }
  .marquee__track { animation-duration: 140s; }
  .badge__pulse::after, .demo__tag .live { animation: none; }
  .life__card img, .spot img, .gallery__item img, .feature__img img, .food__item img { transition: none; }
}

/* ============================================================
   Reservation / launch page (reserve.html)
   ============================================================ */

/* ---------- launch hero ---------- */
.lhero {
  position: relative; overflow: hidden; background: var(--ground); color: var(--ink);
  margin-top: -72px; padding: clamp(120px, 18vh, 200px) 0 clamp(56px, 8vh, 96px);
  text-align: center;
}
.lhero__glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(50% 55% at 50% 0%, rgba(123,242,75,0.16), transparent 70%),
    radial-gradient(60% 60% at 80% 18%, rgba(14,58,44,0.5), transparent 75%);
}
.lhero__inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }
.lhero__title { font-size: clamp(2.3rem, 5vw, 4rem); line-height: 1.06; letter-spacing: -0.015em; margin: 0 0 20px; text-wrap: balance; }
.lhero__lede { font-size: clamp(1.05rem, 1.4vw, 1.22rem); color: var(--ink-soft); max-width: 600px; margin: 0 auto 30px; }
.lhero__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-bottom: 26px; }
.chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; list-style: none; margin: 0; padding: 0; }
.chip { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; color: var(--ink); background: rgba(255,255,255,0.06); border: 1px solid var(--line); border-radius: 999px; padding: 8px 16px; }
@media (max-width: 540px) { .lhero__cta .btn { flex: 1 1 100%; } }

/* ---------- two models ---------- */
.models-sec { padding: clamp(72px, 12vh, 130px) 0; background: var(--ground-2); border-top: 1px solid var(--line); }
.models { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.4vw, 28px); align-items: stretch; }
.model {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 38px); box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease-out), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.model:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.model--auto { border-color: rgba(123,242,75,0.5); box-shadow: 0 0 0 1px rgba(123,242,75,0.3), 0 22px 50px -28px rgba(123,242,75,0.4); }
.model__flag { position: absolute; top: 18px; right: 18px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: var(--bright); color: #04140C; border-radius: 999px; padding: 5px 11px; }
.model__tag { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bright-600); }
.model__name { font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 10px 0 12px; }
.model__desc { color: var(--ink-soft); margin: 0 0 22px; }
.model__list { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 12px; }
.model__list li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink); font-size: 0.98rem; }
.model__list svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--bright); margin-top: 1px; }
.model__choose { margin-top: auto; align-self: flex-start; }
@media (max-width: 760px) { .models { grid-template-columns: 1fr; } .model__choose { align-self: stretch; } }

/* ---------- what's included ---------- */
.incl-sec { padding: clamp(72px, 12vh, 130px) 0; background: var(--ground); }
.incl { list-style: none; margin: 0 auto; padding: 0; max-width: 820px; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; }
.incl__item { display: flex; align-items: center; gap: 12px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 20px; color: var(--ink); font-size: 0.98rem; }
.incl__item::before { content: ""; flex: 0 0 auto; width: 9px; height: 9px; border-radius: 50%; background: var(--bright); box-shadow: 0 0 10px -1px rgba(123,242,75,0.7); }
.incl__item--auto { border-style: dashed; }
.incl__item--auto::before { background: var(--brand); box-shadow: none; }
@media (max-width: 600px) { .incl { grid-template-columns: 1fr; } }

/* ---------- lead form (multi-field) ---------- */
#form .reserve__inner { max-width: 720px; }
.lead { width: 100%; max-width: 660px; margin: 0 auto; text-align: left; }
.lead__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.field { display: flex; flex-direction: column; gap: 7px; min-width: 0; margin: 0; border: 0; padding: 0; }
.field--full { grid-column: 1 / -1; }
.field label, .field legend { font-size: 0.84rem; font-weight: 600; letter-spacing: 0.02em; color: var(--ink-soft); padding: 0; }
.field .req { color: var(--bright); }
.field__opt { color: var(--ink-mute); font-weight: 400; letter-spacing: 0; }
.field input, .field select, .field textarea {
  width: 100%; background: var(--surface); border: 1px solid var(--line); border-radius: 14px;
  padding: 14px 16px; color: var(--ink); font-size: 1rem; line-height: 1.4; font-family: var(--font-body);
  -webkit-appearance: none; appearance: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 88px; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-mute); }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--bright); box-shadow: 0 0 0 4px rgba(123,242,75,0.18); }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: #C0392B; box-shadow: 0 0 0 4px rgba(192,57,43,0.16); }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23AFBDB4' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center; padding-right: 42px;
}
.field select option { color: #111; }
.field__err { font-size: 0.82rem; color: #E0796B; min-height: 1em; }
.choices-wrap { gap: 10px; }
.choices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.choice { position: relative; display: block; cursor: pointer; }
.choice input { position: absolute; opacity: 0; width: 0; height: 0; }
.choice__box { display: flex; flex-direction: column; gap: 3px; height: 100%; background: var(--surface); border: 1.5px solid var(--line); border-radius: 14px; padding: 14px 16px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease); }
.choice__name { font-weight: 600; color: var(--ink); font-size: 0.98rem; }
.choice__sub { font-size: 0.82rem; color: var(--ink-mute); }
.choice:hover .choice__box { border-color: rgba(123,242,75,0.45); }
.choice input:checked + .choice__box { border-color: var(--bright); background: #16221B; box-shadow: 0 0 0 3px rgba(123,242,75,0.22); }
.choice input:focus-visible + .choice__box { outline: 3px solid var(--bright); outline-offset: 2px; }
.lead__submit { width: 100%; margin-top: 26px; }
.lead__submit[disabled] { opacity: 0.6; cursor: progress; }
.lead__done { max-width: 560px; margin: 0 auto; text-align: center; background: var(--surface); border: 1px solid rgba(123,242,75,0.4); border-radius: var(--radius-lg); padding: clamp(32px, 5vw, 52px); box-shadow: 0 0 0 1px rgba(123,242,75,0.25), var(--shadow); }
.lead__done-icon { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 50%; background: rgba(123,242,75,0.14); color: var(--bright); margin-bottom: 16px; }
.lead__done-icon svg { width: 28px; height: 28px; }
.lead__done h3 { font-size: 1.5rem; margin: 0 0 10px; }
.lead__done p { color: var(--ink-soft); margin: 0; }
@media (max-width: 560px) {
  .lead__grid { grid-template-columns: 1fr; }
  .choices { grid-template-columns: 1fr; }
}

/* ---------- reservation-page media (device-focused) ---------- */
.lhero__media {
  position: relative; z-index: 1; max-width: 940px;
  margin: clamp(36px, 5vw, 56px) auto 0;
  border-radius: var(--radius-xl); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
}
.lhero__media img { width: 100%; display: block; aspect-ratio: 92 / 64; object-fit: cover; }

.device-sec { padding: clamp(72px, 12vh, 130px) 0; background: var(--ground-2); border-top: 1px solid var(--line); }

.model__img { aspect-ratio: 4 / 3; border-radius: var(--radius); overflow: hidden; margin-bottom: 22px; background: var(--ground); border: 1px solid var(--line); }
.model__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease-out); }
.model:hover .model__img img { transform: scale(1.04); }

.incl__layout { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; max-width: 1040px; margin: 0 auto; }
.incl__media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.incl__media img { width: 100%; display: block; aspect-ratio: 16 / 9; object-fit: cover; }
.incl--list { max-width: none; margin: 0; grid-template-columns: 1fr; }
@media (max-width: 760px) { .incl__layout { grid-template-columns: 1fr; } }
@media (prefers-reduced-motion: reduce) { .model__img img { transition: none; } }

/* ============================================================
   App showcase (embedded companion app) for reserve.html
   ============================================================ */
.appdemo { padding: clamp(72px,12vh,130px) 0; background: var(--ground); border-top: 1px solid var(--line); }
.appdemo__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px,5vw,72px); align-items: center; }
.appdemo__copy { max-width: 520px; }
.appdemo__copy h2 { font-size: clamp(1.9rem,3.6vw,2.8rem); margin: 0 0 14px; }
.appdemo__copy > p { color: var(--ink-soft); margin: 0 0 24px; }
.appdemo__list { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 12px; }
.appdemo__list li { display: flex; align-items: flex-start; gap: 11px; color: var(--ink); font-size: .96rem; }
.appdemo__list svg { width: 20px; height: 20px; flex: 0 0 auto; color: var(--bright); margin-top: 1px; }
.appdemo__hint { font-size: .86rem; color: var(--ink-mute); margin: 0; }
.appdemo__try { display: inline-flex; align-items: center; gap: 9px; margin: 0 0 16px; padding: 9px 16px; border-radius: 999px; background: rgba(123,242,75,0.10); border: 1px solid rgba(123,242,75,0.40); color: var(--bright-600); font-size: .82rem; font-weight: 700; letter-spacing: .02em; }
.appdemo__try-pulse { position: relative; width: 9px; height: 9px; border-radius: 50%; background: var(--bright); flex: 0 0 auto; }
.appdemo__try-pulse::after { content: ""; position: absolute; inset: -5px; border-radius: 50%; background: var(--bright); opacity: .5; animation: pulse 2s var(--ease) infinite; }
.appdemo__auto { background: var(--surface); border: 1px solid var(--line); border-left: 3px solid var(--bright); border-radius: 14px; padding: 14px 16px; margin: 0 0 16px; }
.appdemo__auto-tag { display: block; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--bright-600); margin-bottom: 6px; }
.appdemo__auto p { margin: 0; font-size: .92rem; color: var(--ink-soft); line-height: 1.5; }
.appdemo__auto b { color: var(--ink); }
.appdemo__stage { display: flex; flex-direction: column; align-items: center; min-width: 0; }
.uj-embed { display: flex; justify-content: center; align-items: flex-start; width: 100%; height: min(760px, 90vh); }
@media (max-width: 1024px) { .appdemo__inner { grid-template-columns: 1fr; } .appdemo__copy { max-width: 640px; margin: 0 auto; } }
@media (max-width: 460px) { .appdemo__stage { overflow: hidden; } .uj-embed { transform: scale(.75); transform-origin: top center; height: calc(min(760px, 90vh) * 0.75); } }
