/* ============================================================
   Pingy — marketing site
   Palette mirrors the app: cream bg, forest green, lime accent.
   ============================================================ */
:root {
  --bg: #F6F6F4;
  --cream: #F1F0E8;
  --surface: #FFFFFF;
  --forest: #0F3D2E;
  --forest-deep: #0A2A1D;
  --lime: #B6E62E;
  --lime-soft: #D9F29A;
  --green: #27A567;
  --green-text: #1E7A4D;
  --text: #15241D;
  --text-2: #54655C;
  --text-3: #6E7B72;
  --hairline: #E6E6DE;
  --radius: 22px;
  --radius-lg: 30px;
  --shadow: 0 18px 50px rgba(10, 42, 29, .10);
  --shadow-soft: 0 8px 26px rgba(10, 42, 29, .07);
  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body: 'Manrope', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.container--narrow { width: min(880px, calc(100% - 48px)); }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.02em; color: var(--forest); }
h2 { font-size: clamp(30px, 4.6vw, 52px); font-weight: 700; }
h3 { font-size: 19px; font-weight: 600; }
.accent { color: var(--green); }

/* ---------- kicker / labels ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-2); margin-bottom: 14px;
}
.kicker__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(182,230,46,.25); }
.kicker--light { color: rgba(255,255,255,.75); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  padding: 14px 26px; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, translate .25s ease;
  cursor: pointer; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--lime { background: var(--lime); color: var(--forest); box-shadow: 0 10px 26px rgba(155, 219, 28, .35); }
.btn--lime:hover { box-shadow: 0 14px 32px rgba(155, 219, 28, .5); }
.btn--forest { background: var(--forest); color: #fff; box-shadow: var(--shadow-soft); }
.btn--ghost { border-color: var(--hairline); background: var(--surface); color: var(--forest); }
.btn--sm { padding: 10px 18px; font-size: 14px; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(246, 246, 244, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(230, 230, 222, .7);
}
.topbar__inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark { border-radius: 11px; }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 21px; color: var(--forest); }
.brand__name--light { color: #fff; }
.nav { display: flex; gap: 26px; margin-inline: auto; }
.nav a { font-weight: 600; font-size: 14.5px; color: var(--text-2); transition: color .2s; }
.nav a:hover { color: var(--forest); }
.topbar__actions { display: flex; gap: 10px; }
.burger { display: none; }

.mobilemenu {
  display: none; flex-direction: column; gap: 4px;
  padding: 12px 24px 22px; border-top: 1px solid var(--hairline);
  background: var(--bg);
}
.mobilemenu a { padding: 12px 4px; font-weight: 600; color: var(--forest); border-bottom: 1px solid var(--hairline); }
.mobilemenu a:last-child { border: 0; margin-top: 10px; text-align: center; }
.mobilemenu.open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; isolation: isolate; padding: clamp(60px, 9vw, 120px) 0 26px; min-height: 86vh; display: flex; flex-direction: column; justify-content: center; }
.hero__media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero__video { width: 100%; height: 100%; object-fit: cover; }
.hero__veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(246,246,244,.96) 0%, rgba(246,246,244,.82) 34%, rgba(246,246,244,.25) 62%, rgba(246,246,244,.05) 100%),
    linear-gradient(0deg, rgba(246,246,244,1) 0%, rgba(246,246,244,0) 22%);
}
.hero__inner { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: 40px; align-items: center; }
.hero__title { font-size: clamp(44px, 7.4vw, 92px); font-weight: 800; }
.hero__sub { max-width: 520px; font-size: clamp(16px, 1.6vw, 19px); color: var(--text-2); margin-top: 22px; font-weight: 500; }

.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.storebtn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--forest); color: #fff; border-radius: 16px;
  padding: 12px 22px; transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: var(--shadow-soft);
}
.storebtn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.storebtn small { display: block; font-size: 11px; opacity: .75; line-height: 1.2; }
.storebtn strong { font-family: var(--font-display); font-size: 16.5px; font-weight: 600; line-height: 1.25; }
.hero__beta { margin-top: 16px; font-size: 13.5px; color: var(--text-2); }
.hero__beta a { color: var(--green-text); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }

.hero__meta {
  display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: clamp(40px, 6vw, 84px);
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em; color: var(--text-2); text-transform: uppercase;
}

/* glass */
.glass {
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, .65);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}

/* order card */
.ordercard { padding: 22px; max-width: 360px; justify-self: end; transform: rotate(1.5deg); }
.ordercard__row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.ordercard__status { display: inline-flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px; color: var(--forest); }
.pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--green); animation: pulse 1.8s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(39,165,103,.5)} 70%{box-shadow:0 0 0 9px rgba(39,165,103,0)} 100%{box-shadow:0 0 0 0 rgba(39,165,103,0)} }
.ordercard__time { font-size: 13px; font-weight: 700; color: var(--text-2); }
.ordercard__master { display: flex; gap: 12px; align-items: center; margin-bottom: 16px; }
.ordercard__ava {
  width: 46px; height: 46px; border-radius: 50%; background: var(--forest); color: var(--lime);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 19px;
}
.ordercard__master strong { display: block; font-size: 15.5px; color: var(--forest); }
.ordercard__master span { font-size: 12.5px; color: var(--text-2); font-weight: 600; }
.ordercard__bar { height: 7px; background: rgba(15,61,46,.12); border-radius: 99px; overflow: hidden; }
.ordercard__bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--green), var(--lime)); border-radius: 99px; animation: fill 3.2s ease-out; }
@keyframes fill { from { width: 8% } }
.ordercard__steps { display: flex; justify-content: space-between; margin-top: 10px; font-size: 11px; font-weight: 700; color: var(--text-3); }
.ordercard__steps .done { color: var(--green-text); }
.ordercard__steps .active { color: var(--forest); }

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee { background: var(--lime); overflow: hidden; padding: 14px 0; transform: rotate(-1.2deg) scale(1.02); margin-block: 8px 30px; }
.marquee__track { display: flex; white-space: nowrap; animation: marquee 36s linear infinite; }
.marquee__track span { font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--forest); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--cream { background: var(--cream); }
.section--forest { background: var(--forest); }
.section--forest h2, .section--forest h3 { color: #fff; }
.section--forest .accent { color: var(--lime); }
.section__head { max-width: 640px; margin-bottom: clamp(34px, 5vw, 58px); }
.section__sub { color: var(--text-2); margin-top: 14px; font-size: 16.5px; }

/* ---------- services grid ---------- */
.grid { display: grid; gap: 22px; }
.services { grid-template-columns: repeat(4, 1fr); }
.card {
  background: var(--surface); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); transition: transform .35s ease, box-shadow .35s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover .card__media img { transform: scale(1.05); }
.card__soon {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: rgba(15, 61, 46, .85); color: var(--lime);
  font-size: 11.5px; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  padding: 6px 12px; border-radius: 99px; backdrop-filter: blur(4px);
}
.card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card__body p { font-size: 13.5px; color: var(--text-2); flex: 1; }
.price { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--green-text); }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; list-style: none; counter-reset: step; }
.step {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius); padding: 26px 24px 30px; transition: background .3s ease, transform .3s ease;
}
.step:hover { background: rgba(255,255,255,.1); transform: translateY(-4px); }
.step__num { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--lime); letter-spacing: .08em; }
.step h3 { margin: 14px 0 10px; }
.step p { font-size: 14px; color: rgba(255,255,255,.72); }

/* ---------- trust tiles ---------- */
.trust { grid-template-columns: repeat(4, 1fr); }
.tile { background: var(--surface); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-soft); transition: transform .3s ease; }
.tile:hover { transform: translateY(-4px); }
.tile__icon {
  width: 52px; height: 52px; border-radius: 16px; background: var(--lime-soft);
  display: grid; place-items: center; font-size: 24px; margin-bottom: 18px;
}
.tile h3 { margin-bottom: 10px; }
.tile p { font-size: 14px; color: var(--text-2); }

/* ---------- app showcase ---------- */
.app { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
.checklist { list-style: none; margin: 26px 0 32px; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; font-weight: 600; font-size: 15.5px; color: var(--text); }
.checklist li::before {
  content: "✓"; flex: 0 0 24px; height: 24px; border-radius: 50%;
  background: var(--lime); color: var(--forest); font-weight: 800; font-size: 13px;
  display: grid; place-items: center; margin-top: 1px;
}
.checklist--light li { color: rgba(255,255,255,.92); }

.phone {
  width: min(320px, 80vw); aspect-ratio: 9 / 19; margin-inline: auto;
  background: var(--forest-deep); border-radius: 46px; padding: 12px;
  box-shadow: 0 40px 80px rgba(10,42,29,.35), inset 0 0 0 2px rgba(255,255,255,.08);
  position: relative; transform: rotate(2deg);
}
.phone__notch { position: absolute; top: 22px; left: 50%; transform: translateX(-50%); width: 96px; height: 24px; background: var(--forest-deep); border-radius: 99px; z-index: 2; }
.phone__screen { background: var(--bg); border-radius: 36px; height: 100%; overflow: hidden; padding: 56px 16px 16px; }
.mini { display: flex; flex-direction: column; gap: 12px; height: 100%; }
.mini__greet { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--forest); }
.mini__card { background: var(--surface); border-radius: 18px; padding: 14px; box-shadow: var(--shadow-soft); }
.mini__card--hero { background: var(--forest); color: #fff; }
.mini__card--hero strong { font-family: var(--font-display); font-size: 14.5px; }
.mini__card--hero span { display: block; font-size: 11.5px; opacity: .75; margin-top: 2px; }
.mini__bar { height: 5px; background: rgba(255,255,255,.2); border-radius: 99px; margin-top: 10px; overflow: hidden; }
.mini__bar i { display: block; width: 62%; height: 100%; background: var(--lime); border-radius: 99px; }
.mini__card--hero em { font-style: normal; font-size: 11px; color: var(--lime); font-weight: 700; display: block; margin-top: 8px; }
.mini__row { display: flex; gap: 8px; }
.mini__chip { background: var(--surface); border-radius: 12px; padding: 9px 11px; font-size: 11.5px; font-weight: 700; color: var(--forest); box-shadow: var(--shadow-soft); }
.mini__master { display: flex; align-items: center; gap: 10px; background: var(--surface); border-radius: 18px; padding: 12px; box-shadow: var(--shadow-soft); }
.mini__ava { width: 36px; height: 36px; border-radius: 50%; background: var(--forest); color: var(--lime); display: grid; place-items: center; font-weight: 700; font-family: var(--font-display); }
.mini__master strong { display: block; font-size: 13px; color: var(--forest); }
.mini__master span { font-size: 10.5px; color: var(--text-2); font-weight: 600; }
.mini__call { margin-left: auto; width: 34px; height: 34px; border-radius: 50%; background: var(--lime); display: grid; place-items: center; color: var(--forest); font-weight: 700; }
.mini__tabs { margin-top: auto; display: flex; justify-content: center; gap: 18px; padding: 10px 0 2px; }
.mini__tabs span { width: 8px; height: 8px; border-radius: 50%; background: var(--hairline); }
.mini__tabs .on { background: var(--lime); box-shadow: 0 0 0 4px rgba(182,230,46,.25); }

/* ---------- masters ---------- */
.masters { display: grid; grid-template-columns: minmax(280px, 400px) 1fr; gap: clamp(36px, 4vw, 64px); align-items: center; }
.masters__photo { position: relative; max-width: 400px; width: 100%; }
.masters__photo img { width: 100%; aspect-ratio: 3 / 4; max-height: 520px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 30px 70px rgba(0,0,0,.35); }
.masters__badge {
  position: absolute; bottom: 22px; left: -26px; padding: 16px 20px;
  background: rgba(255,255,255,.82);
}
.masters__badge strong { display: block; font-family: var(--font-display); font-size: 19px; color: var(--forest); }
.masters__badge span { font-size: 12px; color: var(--text-2); font-weight: 600; }
.masters__note { font-size: 13.5px; color: rgba(255,255,255,.65); margin-bottom: 28px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 12px; }
.faq details {
  background: var(--surface); border-radius: 18px; padding: 4px 24px;
  box-shadow: var(--shadow-soft); border: 1px solid transparent; transition: border-color .25s ease;
}
.faq details[open] { border-color: var(--lime); }
.faq summary {
  font-family: var(--font-display); font-weight: 600; font-size: 16.5px; color: var(--forest);
  padding: 18px 36px 18px 0; cursor: pointer; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; border-radius: 50%; background: var(--lime-soft); color: var(--forest);
  display: grid; place-items: center; font-weight: 700; transition: transform .25s ease;
}
.faq details[open] summary::after { content: "–"; transform: translateY(-50%) rotate(180deg); }
.faq details p { padding: 0 0 20px; color: var(--text-2); font-size: 15px; }

/* ---------- support ---------- */
.support { padding: clamp(36px, 5vw, 56px); text-align: center; background: rgba(255,255,255,.7); }
.support p { color: var(--text-2); margin: 14px auto 28px; max-width: 460px; }
.support__row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.support__hours { font-size: 13px !important; margin-top: 22px !important; color: var(--text-2) !important; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--forest-deep); color: rgba(255,255,255,.8); padding: 60px 0 30px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer__brand p { margin-top: 16px; font-size: 14px; color: rgba(255,255,255,.55); }
.footer__nav { display: grid; gap: 12px; align-content: start; }
.footer__nav a { font-size: 14.5px; font-weight: 600; color: rgba(255,255,255,.75); transition: color .2s; }
.footer__nav a:hover { color: var(--lime); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding-top: 26px; font-size: 12.5px; color: rgba(255,255,255,.55); }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal { padding: 130px 0 90px; } /* clears the fixed pill topbar */
.legal h1 { font-size: clamp(30px, 4.6vw, 46px); margin-bottom: 8px; }
.legal .updated { color: var(--text-2); font-size: 13.5px; margin-bottom: 36px; }
.legal h2 { font-size: 21px; margin: 36px 0 12px; }
.legal p, .legal li { color: var(--text-2); font-size: 15.5px; }
.legal ul { padding-left: 22px; margin: 10px 0; }
.legal .intro { background: var(--lime-soft); border-radius: var(--radius); padding: 20px 24px; color: var(--forest); font-weight: 600; }
.legal .backlink { display: inline-block; margin-bottom: 28px; font-weight: 700; color: var(--green-text); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; translate: 0 26px; transition: opacity .8s cubic-bezier(.2,.6,.2,1), translate .8s cubic-bezier(.2,.6,.2,1); }
.reveal.in { opacity: 1; translate: 0 0; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; translate: none; transition: none; } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services { grid-template-columns: repeat(2, 1fr); }
  .trust { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .ordercard { justify-self: start; transform: rotate(0); margin-top: 8px; }
  .app { grid-template-columns: 1fr; gap: 44px; }
  .masters { grid-template-columns: 1fr; gap: 44px; }
  .masters__photo { margin-inline: auto; max-width: 360px; }
  .masters__badge { left: 12px; }
}
/* Pill topbar runs out of room below ~920px — collapse to burger early. */
@media (max-width: 920px) {
  .nav, .topbar__actions { display: none; }
  .burger {
    display: grid; gap: 6px; margin-left: auto; background: none; border: 0; padding: 10px; cursor: pointer;
  }
  .burger span { width: 24px; height: 2.5px; background: var(--forest); border-radius: 2px; transition: transform .25s ease, opacity .25s ease; }
  .burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
}
@media (max-width: 760px) {
  .hero { min-height: auto; }
  .hero__veil {
    background:
      linear-gradient(0deg, rgba(246,246,244,1) 6%, rgba(246,246,244,.78) 55%, rgba(246,246,244,.45) 100%);
  }
  .services { grid-template-columns: 1fr; }
  .trust { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .hero__meta { gap: 8px 18px; font-size: 11px; }
  .marquee { transform: none; }
}

/* ============================================================
   MOTION LAYER — ambient orbs, grain, ghosts, split headlines,
   stats counters, step progress, tilt, floating phone
   ============================================================ */

/* ---------- ambient scroll-reactive background ---------- */
.ambient { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.orb {
  position: absolute; display: block; border-radius: 50%;
  filter: blur(70px); will-change: transform; opacity: .55;
}
.orb--1 { width: 560px; height: 560px; left: -160px; top: 12vh;
  background: radial-gradient(circle at 35% 35%, rgba(182,230,46,.50), rgba(182,230,46,0) 70%); }
.orb--2 { width: 680px; height: 680px; right: -220px; top: 48vh;
  background: radial-gradient(circle at 60% 40%, rgba(39,165,103,.32), rgba(39,165,103,0) 70%); }
.orb--3 { width: 420px; height: 420px; left: 38vw; top: 86vh;
  background: radial-gradient(circle at 50% 50%, rgba(217,242,154,.55), rgba(217,242,154,0) 70%); }

/* film grain — kills the "flat AI gradient" feel */
body::after {
  content: ""; position: fixed; inset: -50%; z-index: 2147483646; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .05; mix-blend-mode: multiply;
}

/* ---------- giant ghost titles (scroll-scrubbed) ---------- */
.section { position: relative; overflow-x: clip; }
.section > .container { position: relative; z-index: 1; }
.ghost {
  position: absolute; top: clamp(8px, 2.4vw, 30px); left: 0; z-index: 0;
  font-family: var(--font-display); font-weight: 800; text-transform: uppercase;
  font-size: clamp(88px, 17vw, 240px); line-height: 1; letter-spacing: .01em;
  color: transparent; -webkit-text-stroke: 1.5px rgba(15, 61, 46, .09);
  white-space: nowrap; user-select: none; will-change: transform;
}
.section--forest .ghost { -webkit-text-stroke: 1.5px rgba(255, 255, 255, .07); }
.section--cream .ghost { -webkit-text-stroke: 1.5px rgba(15, 61, 46, .08); }

/* ---------- split-word headline reveal ---------- */
.split .w { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .14em; margin-bottom: -.14em; }
.split .wi { display: inline-block; transform: translateY(115%); transition: transform .9s cubic-bezier(.19,.74,.22,1); transition-delay: var(--d, 0s); }
.split.in .wi { transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .split .wi { transform: none !important; transition: none !important; } }

/* bigger editorial headlines */
h2 { font-size: clamp(34px, 5.4vw, 64px); letter-spacing: -0.03em; }
.hero__title { font-size: clamp(48px, 8vw, 104px); letter-spacing: -0.035em; }

/* ---------- stats band ---------- */
.stats { background: var(--forest); padding: clamp(46px, 6vw, 76px) 0; position: relative; overflow: hidden; }
.stats::before {
  content: ""; position: absolute; right: -120px; top: -120px; width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(182,230,46,.18), rgba(182,230,46,0) 70%);
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; position: relative; }
.stat { text-align: left; }
.stat__num {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 4.6vw, 58px); line-height: 1.05; color: var(--lime);
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.stat__label { display: block; margin-top: 8px; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.65); max-width: 200px; }

/* ---------- how-it-works progress line ---------- */
.steps__line { height: 4px; border-radius: 4px; background: rgba(255,255,255,.13); margin-bottom: 26px; overflow: hidden; }
.steps__line i { display: block; height: 100%; width: calc(var(--p, 0) * 100%); border-radius: 4px;
  background: linear-gradient(90deg, var(--green), var(--lime)); transition: width .2s linear; }
.step { position: relative; }
.step.lit .step__num::after { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--lime); margin-left: 8px; box-shadow: 0 0 12px rgba(182,230,46,.8); }

/* ---------- floating phone ---------- */
@keyframes phonefloat { 0%,100% { transform: rotate(2deg) translateY(0); } 50% { transform: rotate(2deg) translateY(-14px); } }
.phone { animation: phonefloat 7s ease-in-out infinite; will-change: transform; }
@media (prefers-reduced-motion: reduce) { .phone { animation: none; } }

/* ---------- masters photo inner parallax ---------- */
.masters__photo { overflow: visible; }
.masters__photo img { will-change: transform; }

/* hero media parallax target */
.hero__video { will-change: transform; transform: scale(1.12); }

/* marquee gets a hair faster on hover for play */
/* (hover speed-up removed — duration change mid-animation jumps; v4 pauses instead) */

@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .ghost { font-size: clamp(64px, 22vw, 120px); -webkit-text-stroke-width: 1px; }
  .orb { filter: blur(50px); opacity: .4; }
  .stats__grid { gap: 20px; }
}

/* ============================================================
   INTERACTIVE LAYER v3 — modal, chat widget, progress, marquees
   ============================================================ */

/* ---------- scroll progress ---------- */
.scrollprog { position: fixed; top: 0; left: 0; right: 0; height: 3px; background: transparent; z-index: 60; }
.scrollprog i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--green), var(--lime)); border-radius: 0 3px 3px 0; }

/* ---------- dual marquee ---------- */
.marqueewrap { margin-block: 8px 30px; }
.marqueewrap .marquee { margin-block: 0; }
.marquee--rev { background: var(--lime-soft); transform: rotate(1deg) scale(1.02); margin-top: -6px; }
.marquee--rev .marquee__track { animation-direction: reverse; animation-duration: 44s; }
.marquee--rev .marquee__track span { color: var(--forest); opacity: .85; }

/* ---------- service card hover arrow ---------- */
.card__media::after {
  content: "→"; position: absolute; right: 14px; bottom: 14px; z-index: 1;
  width: 40px; height: 40px; border-radius: 50%; background: var(--lime); color: var(--forest);
  display: grid; place-items: center; font-weight: 800; font-size: 18px;
  opacity: 0; transform: translateY(8px) rotate(-45deg); transition: opacity .3s ease, transform .3s ease;
}
.card:hover .card__media::after { opacity: 1; transform: translateY(0) rotate(-45deg); }

/* ---------- FAQ open animation ---------- */
/* (faqin keyframe removed — superseded by the ::details-content transition in v4) */

/* ---------- button sheen ---------- */
.btn--lime, .storebtn { position: relative; overflow: hidden; }
.btn--lime::after, .storebtn::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 40%; left: -60%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-20deg); transition: left .6s ease; pointer-events: none;
}
.btn--lime:hover::after, .storebtn:hover::after { left: 130%; }

/* ---------- download modal ---------- */
.modal { position: fixed; inset: 0; z-index: 1000; display: grid; place-items: center; padding: 20px; }
.modal[hidden] { display: none; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(10, 42, 29, .55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.modal__panel {
  position: relative; width: min(440px, 100%); background: var(--bg); border-radius: 28px;
  padding: 34px 30px 28px; text-align: center; box-shadow: 0 40px 90px rgba(0,0,0,.35);
  animation: modalin .35s cubic-bezier(.2,.9,.3,1.2);
}
@keyframes modalin { from { opacity: 0; transform: translateY(26px) scale(.96); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .modal__panel { animation: none; } }
.modal__close {
  position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%;
  border: 0; background: var(--cream); color: var(--forest); font-size: 15px; cursor: pointer;
  transition: background .2s ease;
}
.modal__close:hover { background: var(--lime-soft); }
.modal__icon { margin: 0 auto 14px; border-radius: 18px; box-shadow: var(--shadow-soft); }
.modal__panel h3 { font-size: clamp(20px, 5.5vw, 24px); overflow-wrap: break-word; }
.modal__sub { color: var(--text-2); font-size: 14.5px; margin: 10px 0 22px; overflow-wrap: break-word; }
.modal__stores { display: grid; gap: 12px; }
.storebtn--wide { width: 100%; justify-content: flex-start; border-radius: 18px; padding: 14px 18px; }
.storebtn--wide span { text-align: left; flex: 1; }
.storebtn--wide em { font-style: normal; font-size: 12.5px; font-weight: 700; color: var(--lime); white-space: nowrap; }
.modal__hint { margin-top: 18px; font-size: 13px; color: var(--text-2); }
.modal__hint a { color: var(--green-text); font-weight: 700; }

/* ---------- chat widget ---------- */
.chatfab {
  position: fixed; right: 22px; bottom: max(22px, env(safe-area-inset-bottom, 0px)); z-index: 900;
  width: 62px; height: 62px; border-radius: 50%; border: 0; cursor: pointer;
  background: var(--forest); color: var(--lime);
  display: grid; place-items: center;
  box-shadow: 0 16px 40px rgba(10,42,29,.4);
  transition: transform .25s ease, box-shadow .25s ease, translate .25s ease;
}
.chatfab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 22px 50px rgba(10,42,29,.5); }
.chatfab__dot {
  position: absolute; top: 4px; right: 4px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--lime); border: 2.5px solid var(--bg); animation: pulse 2s infinite;
}
.chatpanel {
  position: fixed; right: 22px; bottom: max(96px, calc(74px + env(safe-area-inset-bottom, 0px))); z-index: 901;
  width: min(380px, calc(100vw - 32px)); height: min(560px, calc(100vh - 130px));
  background: var(--bg); border-radius: 24px; overflow: hidden;
  box-shadow: 0 40px 90px rgba(10,42,29,.4);
  display: flex; flex-direction: column;
  animation: modalin .3s cubic-bezier(.2,.9,.3,1.15);
}
.chatpanel[hidden] { display: none; }
.chatpanel__head {
  display: flex; align-items: center; gap: 12px;
  background: var(--forest); color: #fff; padding: 16px 18px;
}
.chatpanel__ava {
  width: 40px; height: 40px; border-radius: 50%; background: var(--lime); color: var(--forest);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 18px;
}
.chatpanel__who { flex: 1; }
.chatpanel__who strong { display: block; font-family: var(--font-display); font-size: 15px; }
.chatpanel__who span { font-size: 12px; opacity: .75; display: inline-flex; align-items: center; gap: 6px; }
.chatpanel__online { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); display: inline-block; }
.chatpanel__close { border: 0; background: rgba(255,255,255,.12); color: #fff; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; }
.chatpanel__body { flex: 1; overflow-y: auto; padding: 16px 14px 6px; display: flex; flex-direction: column; gap: 10px; }
.chatmsg { max-width: 84%; padding: 11px 14px; border-radius: 16px; font-size: 14px; line-height: 1.45; overflow-wrap: break-word; }
.chatmsg--bot { background: var(--surface); color: var(--text); border-bottom-left-radius: 6px; box-shadow: var(--shadow-soft); align-self: flex-start; }
.chatmsg--user { background: var(--forest); color: #fff; border-bottom-right-radius: 6px; align-self: flex-end; }
.chatmsg--typing { display: inline-flex; gap: 5px; align-items: center; }
.chatmsg--typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--text-3); animation: typebounce 1.2s infinite; }
.chatmsg--typing i:nth-child(2) { animation-delay: .15s; }
.chatmsg--typing i:nth-child(3) { animation-delay: .3s; }
@keyframes typebounce { 0%,60%,100% { transform: none; opacity: .5; } 30% { transform: translateY(-5px); opacity: 1; } }
.chatact {
  align-self: flex-start; display: inline-flex; align-items: center; gap: 7px;
  background: var(--lime); color: var(--forest); border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 700; font-size: 13.5px;
  padding: 10px 16px; border-radius: 999px; box-shadow: var(--shadow-soft);
}
.chatpanel__quick { display: flex; flex-wrap: wrap; gap: 7px; padding: 8px 14px; }
.chatquick {
  border: 1.5px solid var(--hairline); background: var(--surface); color: var(--forest);
  font-size: 12.5px; font-weight: 700; padding: 8px 12px; border-radius: 999px; cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}
.chatquick:hover { border-color: var(--lime); background: var(--lime-soft); }
.chatpanel__form { display: flex; gap: 8px; padding: 10px 14px 14px; }
.chatpanel__form input {
  flex: 1; border: 1.5px solid var(--hairline); border-radius: 999px; padding: 12px 16px;
  font-family: var(--font-body); font-size: 14px; background: var(--surface); color: var(--text);
}
.chatpanel__form input:focus { outline: 2px solid var(--lime); border-color: transparent; }
.chatpanel__form button {
  width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--lime); color: var(--forest);
  font-size: 16px; cursor: pointer; transition: transform .2s ease;
}
.chatpanel__form button:hover { transform: scale(1.06); }

/* Keyboard focus for the new interactive controls (modal + chat). */
.modal__close:focus-visible, .chatpanel__close:focus-visible, .chatfab:focus-visible,
.chatquick:focus-visible, .chatact:focus-visible, .chatpanel__form button:focus-visible,
.storebtn--wide:focus-visible {
  outline: 3px solid var(--lime); outline-offset: 2px;
}

@media (max-width: 760px) {
  .chatpanel { right: 16px; bottom: max(88px, calc(66px + env(safe-area-inset-bottom, 0px))); }
  .chatfab { right: 16px; bottom: max(16px, env(safe-area-inset-bottom, 0px)); }
  .marquee--rev { transform: none; }
}

@media (max-width: 480px) {
  .modal { padding: 14px; }
  .modal__panel { padding: 26px 18px 22px; }
  .storebtn--wide { padding: 12px 14px; }
  .storebtn--wide em { font-size: 11px; }
}

/* ============================================================
   SMOOTHNESS PASS v4 — unified motion language.
   One soft ease everywhere, gentle press feedback on every
   control, comfortable hovers, modern <details> height easing.
   Reduced-motion users are covered by the global media query.
   ============================================================ */
:root {
  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.3, .5, 1);
  interpolate-size: allow-keywords; /* enables smooth height: auto in details */
}

body { -moz-osx-font-smoothing: grayscale; text-rendering: optimizeLegibility; }
::selection { background: var(--lime); color: var(--forest); }
button, a { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

/* Subtle branded scrollbar (WebKit) */
::-webkit-scrollbar { width: 11px; height: 11px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: rgba(15,61,46,.35); border-radius: 99px;
  border: 3px solid transparent; background-clip: padding-box;
}
::-webkit-scrollbar-thumb:hover { background: rgba(15,61,46,.55); background-clip: padding-box; }
.chatpanel__body { scrollbar-gutter: stable; scrollbar-width: thin; }
.chatpanel__body::-webkit-scrollbar { width: 7px; }

/* --- buttons: one soft curve + press feedback --- */
.btn, .storebtn, .chatfab, .chatact, .chatquick, .chatpanel__form button,
.modal__close, .chatpanel__close, .mini__call, .burger {
  transition: transform .35s var(--ease-out), translate .35s var(--ease-out),
              scale .18s var(--ease-out), box-shadow .35s var(--ease-out),
              background .3s var(--ease-out), border-color .3s var(--ease-out),
              color .3s var(--ease-out), opacity .3s var(--ease-out);
}
.btn:active, .storebtn:active, .chatact:active, .chatquick:active,
.chatpanel__form button:active, .modal__close:active, .chatpanel__close:active,
.chatfab:active { scale: .96; }
.btn--ghost:hover { border-color: var(--lime); background: var(--lime-soft); }
.btn--forest:hover { box-shadow: 0 16px 36px rgba(10,42,29,.28); }
.chatact:hover { box-shadow: 0 10px 26px rgba(155,219,28,.45); transform: translateY(-1px); }

/* --- nav: animated underline + smooth color --- */
.nav a {
  position: relative; padding-bottom: 3px;
  background: linear-gradient(var(--lime), var(--lime)) left bottom / 0% 2px no-repeat;
  transition: color .3s var(--ease-out), background-size .35s var(--ease-out);
}
.nav a:hover { background-size: 100% 2px; }
.footer__nav a, .footer a, .mobilemenu a, .hero__beta a, .modal__hint a, .backlink {
  transition: color .3s var(--ease-out), opacity .3s var(--ease-out);
}

/* --- cards / tiles / steps: longer, softer travel --- */
.card { transition: transform .55s var(--ease-out), box-shadow .55s var(--ease-out); }
.card__media img { transition: transform .9s var(--ease-out); backface-visibility: hidden; }
.tile, .step { transition: transform .45s var(--ease-out), background .45s var(--ease-out), box-shadow .45s var(--ease-out); }
.tile:hover { box-shadow: var(--shadow); }
.masters__photo img { backface-visibility: hidden; }

/* --- FAQ: modern smooth open/close + softer marker --- */
.faq details { transition: border-color .35s var(--ease-out), background .35s var(--ease-out), box-shadow .35s var(--ease-out); }
.faq details:hover { box-shadow: var(--shadow); }
.faq details::details-content {
  opacity: 0; block-size: 0; overflow: hidden;
  transition: opacity .4s var(--ease-out), block-size .45s var(--ease-out), content-visibility .45s allow-discrete;
}
.faq details[open]::details-content { opacity: 1; block-size: auto; }
.faq summary { transition: color .3s var(--ease-out); }
.faq summary:hover { color: var(--green-text); }
.faq summary::after { transition: transform .32s var(--ease-spring), background .3s var(--ease-out); }
.faq summary:hover::after { background: var(--lime); }

/* --- inputs: smooth focus ring (box-shadow transitions, outline can't) --- */
.chatpanel__form input { transition: border-color .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s var(--ease-out); }
/* Transparent outline stays visible in forced-colors mode; the ring is the visual. */
.chatpanel__form input:focus { outline: 2px solid transparent; outline-offset: 1px; border-color: var(--lime); box-shadow: 0 0 0 3px rgba(182,230,46,.35); }

/* --- marquee: pause on hover so it is readable, resume smoothly --- */
.marquee:hover .marquee__track { animation-play-state: paused; }

/* --- chat & modal micro-comfort --- */
.chatmsg { animation: msgin .35s var(--ease-out); }
@keyframes msgin { from { opacity: 0; translate: 0 8px; } to { opacity: 1; translate: 0 0; } }
.chatquick:hover { transform: translateY(-1px); }
.storebtn--wide:hover { transform: translateY(-2px); }
.modal__icon { transition: transform .5s var(--ease-spring); }
.modal__panel:hover .modal__icon { transform: scale(1.05) rotate(-2deg); }

/* --- entrances that were instant before --- */
.mobilemenu.open { animation: menuin .35s var(--ease-out); }
@keyframes menuin { from { opacity: 0; translate: 0 -10px; } to { opacity: 1; translate: 0 0; } }
.modal__backdrop { animation: fadein .35s ease both; }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }
.chatpanel__quick:empty { display: none; }

/* ============================================================
   ECOSYSTEM HERO v5 — floating pill nav, centered brand hero,
   ecosystem product cards. Layout refs: Haven / AGNOE.
   ============================================================ */

/* --- floating pill topbar --- */
.topbar {
  position: fixed; top: 14px; left: 0; right: 0; z-index: 50;
  background: none; border: 0; backdrop-filter: none; -webkit-backdrop-filter: none;
  pointer-events: none;
}
.topbar__pill {
  pointer-events: auto;
  width: min(960px, calc(100% - 32px)); margin-inline: auto;
  display: flex; align-items: center; gap: 22px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px; height: 60px; padding: 0 10px 0 18px;
  box-shadow: 0 12px 40px rgba(10,42,29,.12);
}
.topbar .brand__mark { width: 32px; height: 32px; border-radius: 9px; }
.topbar .brand__name { font-size: 19px; }
.topbar .nav { gap: 22px; }
.topbar .btn--sm { padding: 9px 18px; }
.mobilemenu {
  pointer-events: auto;
  width: min(960px, calc(100% - 32px)); margin: 8px auto 0;
  padding: 14px 24px 20px;
  border: 1px solid rgba(255,255,255,.7); border-radius: 24px;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 12px 40px rgba(10,42,29,.12);
}

/* --- centered hero --- */
.hero { min-height: 100svh; padding: clamp(96px, 12vh, 150px) 0 90px; }
.hero__inner--center { display: flex; justify-content: center; text-align: center; }
.hero__copy--center { max-width: 760px; display: flex; flex-direction: column; align-items: center; }
.herobadge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.75);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-radius: 999px; padding: 8px 16px;
  font-size: 13px; font-weight: 700; color: var(--forest);
  box-shadow: var(--shadow-soft); margin-bottom: 22px;
}
.hero__title--brand { font-size: clamp(72px, 14vw, 168px); line-height: 1; letter-spacing: -0.03em; }
.hero__tagline {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(19px, 2.6vw, 28px); color: var(--forest); margin-top: 18px;
}
.hero__sub--center { margin-inline: auto; margin-top: 14px; max-width: 600px; }
.hero__sub--center strong { color: var(--green-text); }
.hero__cta--center { justify-content: center; }

/* veil for the centered layout: light top for the pill nav + soft center glow */
.hero__veil {
  background:
    linear-gradient(180deg, rgba(246,246,244,.92) 0%, rgba(246,246,244,.55) 26%, rgba(246,246,244,.18) 48%, rgba(246,246,244,0) 72%),
    radial-gradient(ellipse 62% 46% at 50% 38%, rgba(246,246,244,.56) 0%, rgba(246,246,244,.24) 55%, rgba(246,246,244,0) 100%),
    linear-gradient(0deg, rgba(246,246,244,1) 0%, rgba(246,246,244,0) 18%);
}

/* scroll hint */
.hero__scroll {
  position: absolute; left: 50%; bottom: 26px; translate: -50% 0;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--forest); opacity: .75;
  transition: opacity .3s var(--ease-out), translate .3s var(--ease-out);
}
.hero__scroll:hover { opacity: 1; translate: -50% -3px; }
.hero__scroll i { font-style: normal; animation: scrollnudge 2.2s var(--ease-out) infinite; }
@keyframes scrollnudge { 0%, 100% { translate: 0 0; } 50% { translate: 0 5px; } }

/* --- ecosystem cards --- */
.section__head--center { margin-inline: auto; text-align: center; }
.section__head--center .kicker { justify-content: center; }
.eco { grid-template-columns: repeat(4, 1fr); }
.ecocard {
  position: relative; background: var(--surface); border-radius: var(--radius);
  padding: 26px 24px 28px; box-shadow: var(--shadow-soft);
  border: 1.5px solid transparent;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out), border-color .45s var(--ease-out);
}
.ecocard:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.ecocard--live { border-color: var(--lime); background: linear-gradient(180deg, rgba(217,242,154,.28), rgba(255,255,255,0) 55%) , var(--surface); }
.ecocard__status {
  align-self: flex-start; font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  color: var(--text-3); background: var(--cream); border-radius: 99px; padding: 5px 11px;
}
.ecocard__status--live { color: var(--forest); background: var(--lime); }
.ecocard__name { font-size: 21px; color: var(--forest); }
.ecocard__name em { font-style: normal; color: var(--green-text); }
.ecocard p { font-size: 14px; color: var(--text-2); flex: 1; }
.ecocard__link {
  font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--green-text);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .3s var(--ease-out), color .3s var(--ease-out);
}
.ecocard__link:hover { gap: 10px; color: var(--forest); }

@media (max-width: 1020px) { .eco { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .eco { grid-template-columns: 1fr; } }
@media (max-width: 760px) {
  .topbar { top: 10px; }
  .topbar__pill { height: 56px; }
  .hero { min-height: 92svh; }
  .hero__scroll { display: none; }
}
.section, .support { scroll-margin-top: 84px; } /* fixed pill = 14px inset + 60px tall */

/* ============ ecosystem v5.1: dots removed, Coming soon card ============ */
.eco { grid-template-columns: repeat(3, 1fr); }
.ecocard--soon {
  grid-column: span 2;
  background: var(--forest); border-color: transparent;
  justify-content: center; overflow: hidden;
}
.ecocard--soon::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(182,230,46,.22), transparent 70%);
  pointer-events: none;
}
.ecocard--soon .ecocard__status { background: rgba(255,255,255,.12); color: var(--lime); }
.ecocard--soon p { color: rgba(255,255,255,.6); flex: 0; max-width: 460px; }
.ecocard__soonword {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -0.02em;
  font-size: clamp(34px, 4.6vw, 56px); line-height: 1.05;
  background: linear-gradient(100deg, #fff 38%, var(--lime) 50%, #fff 62%);
  background-size: 240% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: soonshine 3.6s linear infinite;
}
@keyframes soonshine { to { background-position: -240% 0; } }
@media (max-width: 1020px) { .eco { grid-template-columns: 1fr; } .ecocard--soon { grid-column: auto; } }
/* tile svg icons */
.tile__icon { color: var(--forest); }
.tile__icon svg { display: block; }

/* ============ MOBILE COMFORT: no accidental zoom ============ */
/* Double-tap zoom off everywhere (pinch-zoom stays available). */
body { touch-action: manipulation; }
/* iOS Safari auto-zooms any focused field with font-size < 16px. */
.chatpanel__form input { font-size: 16px; }
/* Keyboard-aware height on mobile browsers that support dvh. */
.chatpanel { height: min(560px, calc(100dvh - 130px)); }


