/* ============================================================
   Navigation · the scroll experience · sections · footer
   ============================================================ */

/* ══════════ NAV ══════════ */
.nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 14px 0;
  transition: padding .5s var(--e-out), background-color .5s var(--e-out),
              box-shadow .5s var(--e-out);
}
.nav__inner {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav.is-stuck {
  padding: 8px 0;
  background: rgba(231,229,223,.78);
  backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(13,24,41,.07), 0 12px 40px -28px rgba(13,24,41,.5);
}

.brand { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); }
.brand__mark { display: block; width: 34px; height: 34px; color: var(--ink); }
.brand__mark svg { width: 100%; height: 100%; }
.brand__word { font-size: 1.125rem; font-weight: 800; letter-spacing: -0.03em; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-inline: auto;
  padding: 4px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  transition: background-color .5s var(--e-out), border-color .5s var(--e-out);
}
.nav.is-stuck .nav__links { background: rgba(255,255,255,.55); border-color: rgba(214,211,203,.9); }
.nav__links a {
  padding: 9px 16px;
  border-radius: var(--r-pill);
  font-size: var(--t-body-sm);
  font-weight: 700;
  color: var(--text-3);
  transition: color .25s, background-color .25s;
}
.nav__links a:hover { color: var(--ink); background: rgba(255,255,255,.9); }

.nav__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

/* ── language switch ─────────────────────────────────────── */
.langtoggle {
  display: flex;
  padding: 3px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.55);
}
.langtoggle button {
  padding: 6px 11px;
  border-radius: var(--r-pill);
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .06em;
  color: var(--text-3);
  transition: color .25s, background-color .25s;
}
.langtoggle button:hover { color: var(--ink); }
.langtoggle button.is-on { background: var(--ink); color: #fff; }
.langtoggle--menu { margin-top: 10px; align-self: flex-start; }
@media (max-width: 560px) { .nav .langtoggle { display: none; } }

.nav__burger {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  place-items: center;
  align-content: center;
  justify-items: center;
  gap: 5px;
  background: rgba(255,255,255,.6);
}
.nav__burger span {
  display: block; width: 16px; height: 1.8px; border-radius: 2px; background: var(--ink);
  transition: transform .35s var(--e-out);
}
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(3.4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-3.4px) rotate(-45deg); }

.mobilemenu {
  position: fixed;
  inset: 68px 12px auto;
  z-index: 99;
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px;
  border-radius: var(--r-xl);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--line);
  box-shadow: var(--sh-float);
  animation: menuin .4s var(--e-out);
}
@keyframes menuin { from { opacity: 0; transform: translateY(-10px); } }
.mobilemenu[hidden] { display: none; }
.mobilemenu a { padding: 14px 16px; border-radius: var(--r-md); font-weight: 700; }
.mobilemenu a:not(.btn):hover { background: var(--mist); }
.mobilemenu .btn { justify-content: center; margin-top: 8px; }

/* ══════════ THE EXPERIENCE ══════════ */
.experience { position: relative; height: 620vh; }

.experience__bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.aurora { position: absolute; border-radius: 50%; filter: blur(90px); opacity: .5; }
.aurora--a {
  top: -14%; right: -6%; width: 46vw; height: 46vw;
  background: radial-gradient(circle, rgba(34,197,94,.40), transparent 68%);
  animation: drift 26s ease-in-out infinite alternate;
}
.aurora--b {
  top: 34%; left: -12%; width: 42vw; height: 42vw;
  background: radial-gradient(circle, rgba(13,24,41,.18), transparent 68%);
  animation: drift 32s ease-in-out infinite alternate-reverse;
}
.aurora--c {
  top: 8%; left: 50%; width: 70vw; height: 70vw;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(34,197,94,.28), transparent 66%);
  animation: drift 30s ease-in-out infinite alternate;
}
@keyframes drift {
  from { transform: translate3d(0,0,0) scale(1); }
  to   { transform: translate3d(4vw, 5vh, 0) scale(1.14); }
}
.aurora--d {
  bottom: -30%; right: -10%; width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(34,197,94,.26), transparent 66%);
  animation: drift 34s ease-in-out infinite alternate;
}
.grid {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(13,24,41,.05) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(to bottom, rgba(13,24,41,.05) 1px, transparent 1px) 0 0 / 84px 84px;
  mask-image: radial-gradient(90% 70% at 50% 40%, #000 15%, transparent 82%);
}
.grid--dark {
  background:
    linear-gradient(to right, rgba(255,255,255,.06) 1px, transparent 1px) 0 0 / 84px 84px,
    linear-gradient(to bottom, rgba(255,255,255,.06) 1px, transparent 1px) 0 0 / 84px 84px;
}

.stage {
  position: sticky;
  top: 0;
  height: 100svh;
  width: 100%;
  max-width: calc(var(--wrap) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
  padding-top: 72px;
  display: grid;
  grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  overflow: hidden;
  perspective: 1500px;
  perspective-origin: 62% 50%;
}

/* — hero — */
.hero { grid-column: 1; grid-row: 1; position: relative; z-index: 5; will-change: opacity, transform; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px 8px 12px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  backdrop-filter: blur(10px);
  font-size: var(--t-caption);
  font-weight: 700;
  color: var(--text-2);
}
.eyebrow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
}

.hero__title {
  margin-top: 24px;
  font-size: var(--t-h1);
  line-height: .94;
  letter-spacing: -0.05em;
}
.hero__title .line { display: block; }
.hero__title .line--accent { color: var(--green-deep); }

.hero__sub {
  max-width: 46ch;
  margin-top: 24px;
  font-size: var(--t-lede);
  line-height: 1.6;
  color: var(--text-2);
}

.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* the app's own stat row, brought onto the page */
.herostats {
  display: flex;
  gap: clamp(20px, 3vw, 40px);
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.herostats li { display: flex; flex-direction: column; gap: 3px; }
.herostats b { font-size: 1.375rem; font-weight: 800; letter-spacing: -0.03em; }
.herostats span {
  font-size: 0.65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--text-4);
}

.scrollhint {
  display: flex; align-items: center; gap: 12px;
  margin-top: 34px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-4);
}
.scrollhint__bar { position: relative; width: 46px; height: 1px; background: var(--line-firm); overflow: hidden; }
.scrollhint__bar::after {
  content: ""; position: absolute; inset: 0; background: var(--green);
  animation: sweep 2.4s var(--e-soft) infinite;
}
@keyframes sweep { 0% { transform: translateX(-100%); } 60%,100% { transform: translateX(100%); } }

/* — chapter copy — */
.steps {
  grid-column: 1; grid-row: 1;
  position: relative;
  height: min(64svh, 520px);
  z-index: 4;
  pointer-events: none;
}
/* Sequenced, not cross-faded. Two chapter headings at half opacity sit
   directly on top of each other — worst on mobile, where the copy fills the
   lower third — so the outgoing block clears out fast and the incoming one
   waits for it. */
.step {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: center;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .2s var(--e-soft), transform .45s var(--e-soft);
}
.step.is-on {
  opacity: 1;
  transform: none;
  transition: opacity .42s var(--e-soft) .2s, transform .7s var(--e-soft) .12s;
}
.step__n {
  font-size: .75rem; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--green-deep);
}
.step__h { margin-top: 14px; font-size: var(--t-h2); line-height: 1; }
.step__p { max-width: 42ch; margin-top: 18px; font-size: var(--t-lede); color: var(--text-2); }
.step__l { margin-top: 24px; display: flex; flex-direction: column; gap: 10px; }
.step__l li {
  display: flex; align-items: center; gap: 12px;
  font-size: var(--t-body-sm); font-weight: 600; color: var(--text-2);
}
.step__l li::before {
  content: "";
  width: 18px; height: 18px; flex: none;
  border-radius: 50%;
  background: var(--green-pale);
  border: 1px solid var(--green-line);
  background-image: linear-gradient(var(--green), var(--green));
  background-size: 7px 2px;
  background-position: center;
  background-repeat: no-repeat;
}

/* — the device column — */
.phonestage {
  grid-column: 2; grid-row: 1;
  position: relative;
  width: min(100%, 540px);
  margin-inline: auto;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}
/* The resting state is declared here as well as driven from JS, so the
   device never flashes over the hero copy before the script runs. */
.phonestage .phone {
  will-change: transform;
  transform: translate3d(0, 4vh, 0) scale(.9);
}

/* — floating interface fragments — */
.orbs { position: absolute; inset: 0; transform-style: preserve-3d; pointer-events: none; }
.orb {
  position: absolute;
  left: calc(50% + var(--x));
  top: calc(50% + var(--y));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  width: max-content;
  max-width: 230px;
  padding: 13px 17px;
  border-radius: 20px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,.9);
  box-shadow: var(--sh-float), 0 2px 6px -2px rgba(13,24,41,.14);
  opacity: 0;
  transform: translate3d(-50%, calc(-50% + 22px), var(--z)) scale(.92);
  transition: opacity .55s var(--e-soft), transform .8s var(--e-soft);
  will-change: transform, opacity;
}
.orb.is-on {
  opacity: 1;
  transform: translate3d(calc(-50% + var(--px, 0px)), calc(-50% + var(--py, 0px)), var(--z)) scale(1);
}
/* fragments that lead with a mark read as a row */
.orb:has(.orb__ping), .orb:has(.orb__av) { flex-direction: row; align-items: center; gap: 11px; }

.orb__k { font-size: .6875rem; font-weight: 700; color: var(--text-4); letter-spacing: -0.005em; }
.orb__v { font-size: .875rem; font-weight: 800; letter-spacing: -0.02em; }
.orb__v--green { color: var(--green-deep); }
.orb__big { font-size: 1.3125rem; font-weight: 800; letter-spacing: -0.04em; }
.orb__big--sm { font-size: 1.0625rem; }
.orb__ping {
  position: relative; width: 8px; height: 8px; flex: none;
  border-radius: 50%; background: var(--green-bright);
}
.orb__ping::after {
  content: ""; position: absolute; inset: -5px;
  border-radius: 50%; border: 1.5px solid var(--green-bright);
  animation: ping 2s var(--e-out) infinite;
}
.orb__av {
  display: grid; place-items: center; flex: none;
  width: 32px; height: 32px; border-radius: 11px;
  background: var(--mist); color: var(--text-3);
  font-size: .625rem; font-weight: 800;
}
.orb__av--g { background: var(--green-pale); color: var(--green-deep); }

/* — chapter rail — */
.rail {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 20px;
  z-index: 6;
  opacity: 0;
  transition: opacity .5s var(--e-out);
}
.rail.is-live { opacity: 1; }
.rail li {
  display: flex; align-items: center; gap: 10px;
  font-size: .625rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-4);
  opacity: .5;
  transition: opacity .4s, color .4s;
}
.rail li span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--line-firm);
  transition: background-color .4s, transform .4s var(--e-out), box-shadow .4s;
}
.rail li.is-on { opacity: 1; color: var(--ink); }
.rail li.is-on span {
  background: var(--green); transform: scale(1.5);
  box-shadow: 0 0 0 4px rgba(34,197,94,.18);
}

/* ══════════ HOW IT WORKS ══════════
   Four wide rows on hairlines rather than four cards in a line: each step gets
   the width to show the component it actually produces at a readable size, and
   the copy stops wrapping raggedly. The only accent is a 2px spine down the
   number column that fills as the section passes — the app's progress bar,
   turned on its side and kept quiet.                                        */
.ladder { position: relative; }
.ladder::before,
.ladder::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  border-radius: 2px;
}
.ladder::before { bottom: 0; background: var(--line-soft); }
.ladder::after {
  height: calc(var(--s, 0) * 100%);
  background: var(--green-bright);
}

.stepr {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) minmax(0, 300px);
  gap: clamp(20px, 3vw, 56px);
  align-items: center;
  padding: clamp(28px, 3.2vw, 44px) 0 clamp(28px, 3.2vw, 44px) 30px;
  border-top: 1px solid var(--line-soft);
}
.stepr:last-child { border-bottom: 1px solid var(--line-soft); }

.stepr__n { display: flex; flex-direction: column; gap: 4px; }
.stepr__n b {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.stepr__n span {
  font-size: .6875rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-deep);
}

.stepr__h { font-size: var(--t-h4); letter-spacing: -0.03em; }
.stepr__p { margin-top: 10px; font-size: var(--t-body-sm); color: var(--text-3); max-width: 46ch; }

/* the component sits on the section ground, carried by its own shadow rather
   than parked in a grey box */
.stepr__viz { display: flex; flex-direction: column; gap: 9px; }

/* ── the fragments, styled exactly as the app draws them ── */
.fg { font-size: 13px; }

.fg--form { display: flex; flex-direction: column; gap: 9px; }
.fg__field {
  display: flex; align-items: center; justify-content: space-between;
  height: 48px; padding: 0 14px;
  border-radius: 13px;
  background: var(--paper);
  border: 1px solid var(--mist-2);
  box-shadow: 0 10px 26px -20px rgba(13,24,41,.5);
  font-weight: 700; color: var(--ink);
}
.fg__field--empty { color: #9AA4B2; font-weight: 600; }
.fg__city { display: inline-flex; align-items: center; gap: 9px; }
.fg__flag {
  display: grid; place-items: center;
  width: 25px; height: 25px; border-radius: 50%;
  background: #DC2626; color: #fff;
  font-size: 10px; font-weight: 800; font-style: normal;
}
.fg__chev {
  width: 8px; height: 8px; flex: none;
  border-right: 2px solid var(--text-4);
  border-bottom: 2px solid var(--text-4);
  transform: rotate(45deg) translate(-2px, -2px);
}

/* the app's dropzone — no photographs needed to read it */
.fg--drop {
  display: flex; flex-direction: column; align-items: center; gap: 9px;
  padding: 20px 18px;
  border-radius: 20px;
  border: 2px dashed #B7E3C6;
  background: #EAF7EE;
  text-align: center;
}
.fg__dropicon {
  display: grid; place-items: center;
  width: 50px; height: 50px;
  border-radius: 15px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 8px 20px -12px rgba(13,24,41,.4);
}
.fg__dropicon svg { width: 24px; height: 24px; }
.fg__dropt { font-size: 16px; font-weight: 800; letter-spacing: -.02em; }
.fg__drops { font-size: 12.5px; color: #5F6B7A; }

.fg--cost {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(150deg, #13233A, #0C1626);
  color: #fff;
  box-shadow: 0 20px 44px -26px rgba(13,24,41,.7);
}
.fg__lbl {
  font-size: 9.5px; font-weight: 700; letter-spacing: .13em;
  text-transform: uppercase; color: var(--text-3);
}
.fg__price { margin-top: 5px; font-size: 29px; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.fg__price em { font-size: 16px; font-weight: 700; color: var(--text-3); margin-left: 5px; }
.fg__bar {
  display: block; height: 5px; margin-top: 15px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.12);
  overflow: hidden;
}
.fg__bar i {
  display: block; height: 100%; width: 0;
  border-radius: inherit; background: var(--green-bright);
  transition: width 1.5s .4s var(--e-out);
}
.stepr.is-in .fg__bar i { width: 90%; }
.fg__evidence {
  display: flex; justify-content: space-between;
  margin-top: 10px; font-size: 11px; font-weight: 700; color: var(--text-3);
}
.fg__evidence b { color: #4ADE80; }

.fg--offer {
  display: flex; align-items: center; gap: 11px;
  padding: 12px 14px;
  border-radius: 17px;
  background: var(--paper);
  box-shadow: 0 12px 30px -22px rgba(13,24,41,.55);
}
.fg--offer2 { opacity: .5; }
.fg__av {
  display: grid; place-items: center; flex: none;
  width: 34px; height: 34px; border-radius: 11px;
  background: var(--mist); color: var(--text-3);
  font-size: 11px; font-weight: 800;
}
.fg__who { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.fg__who b { font-size: 13px; font-weight: 700; letter-spacing: -.01em; }
.fg__who small { font-size: 10.5px; color: var(--text-3); }
.fg__amt { font-size: 15px; font-weight: 800; letter-spacing: -.025em; }
/* a disclosure arrow, not a select — it points into the offer */
.fg--offer .fg__chev { transform: rotate(-45deg) translate(-2px, 2px); }

/* ══════════ BENTO ══════════ */
.bento { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(14px, 1.4vw, 20px); }
.card {
  position: relative;
  padding: clamp(26px, 2.4vw, 34px);
  border-radius: var(--r-2xl);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  box-shadow: var(--sh-card);
  transition: transform .55s var(--e-out), box-shadow .55s var(--e-out);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-float); }
.card--wide {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 300px);
  gap: clamp(24px, 3vw, 44px);
  align-items: center;
}
.card--dark { background: var(--ink); border-color: transparent; color: #fff; }
.card--dark .card__p { color: rgba(255,255,255,.62); }
.card--dark .card__ico { background: rgba(255,255,255,.08); color: var(--green-bright); border-color: rgba(255,255,255,.14); }

.card__ico {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: var(--green-pale);
  border: 1px solid var(--green-line);
  color: var(--green-deep);
  margin-bottom: 22px;
}
.card__ico svg { width: 22px; height: 22px; }
.card__h { font-size: var(--t-h3); letter-spacing: -0.035em; }
.card__h--sm { font-size: var(--t-h4); letter-spacing: -0.03em; }
.card__p { margin-top: 12px; font-size: var(--t-body-sm); color: var(--text-3); }

/* the estimate card, restated at page scale */
.card__viz--price {
  padding: 24px;
  border-radius: var(--r-xl);
  background: linear-gradient(150deg, #16263C, #0C1626);
  color: #fff;
  box-shadow: var(--sh-card);
}
.card__viz--price .lbl { color: rgba(255,255,255,.5); }
.vizprice {
  margin-top: 10px;
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  font-weight: 800; letter-spacing: -0.05em; line-height: 1;
}
.vizprice em { font-size: .62em; font-weight: 700; color: rgba(255,255,255,.5); }
.vizbar {
  display: block; height: 5px; margin-top: 18px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.16);
  overflow: hidden;
}
.vizbar i {
  display: block; height: 100%; width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--green-bright));
  transition: width 1.6s .3s var(--e-out);
}
.reveal.is-in .vizbar i { width: 90%; }
.vizfoot { margin-top: 12px; font-size: .75rem; color: rgba(255,255,255,.55); }

/* ══════════ FOR REPAIR SHOPS ══════════ */
.sec--ink { overflow: hidden; }
.sec--ink::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(58% 46% at 78% 12%, rgba(34,197,94,.20), transparent 70%),
    radial-gradient(46% 40% at 10% 92%, rgba(34,197,94,.10), transparent 72%);
  pointer-events: none;
}
.sec--ink > .wrap { position: relative; }

.shops {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 520px);
  gap: clamp(40px, 6vw, 86px);
  align-items: center;
}
.shops .lede { color: rgba(255,255,255,.62); margin-top: 22px; max-width: 52ch; }
.ticks { margin: 30px 0 38px; display: flex; flex-direction: column; gap: 13px; }
.ticks li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: var(--t-body-sm); font-weight: 600;
  color: rgba(255,255,255,.8);
}
.ticks li::before {
  content: "";
  width: 20px; height: 20px; flex: none; margin-top: 3px;
  border-radius: 50%;
  background: rgba(34,197,94,.16);
  border: 1px solid rgba(34,197,94,.42);
  background-image:
    linear-gradient(45deg, transparent 44%, var(--green-bright) 44% 56%, transparent 56%),
    linear-gradient(-45deg, transparent 44%, var(--green-bright) 44% 56%, transparent 56%);
  background-size: 5px 2px, 9px 2px;
  background-position: 5px 11px, 9px 10px;
  background-repeat: no-repeat;
}

.shops__viz { position: relative; display: flex; justify-content: center; perspective: 1400px; }

/* the same floating fragments as the hero, drifting against the scroll */
.shops__viz .orb {
  position: absolute;
  max-width: 200px;
  left: calc(50% + var(--x));
  top: calc(50% + var(--y));
  opacity: 1;
  z-index: 3;
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 24px 60px -28px rgba(0,0,0,.7);
  color: #fff;
  transform: translate3d(-50%, calc(-50% + var(--p, 0px) * (var(--s, .5) - .5) * 2), var(--z));
  transition: none;
}
.shops__viz .orb__k { color: rgba(255,255,255,.55); }
.shops__viz .orb__v--green { color: var(--green-bright); }
@media (max-width: 1024px) { .shops__viz .orb { display: none; } }
.shops__viz .phone {
  transform: rotateX(6deg) rotateY(-13deg) rotateZ(1.5deg);
  transform-style: preserve-3d;
  transition: transform .9s var(--e-out);
}
.shops__viz:hover .phone { transform: rotateX(2deg) rotateY(-5deg); }

/* ══════════ GUESS THE PRICE ══════════
   The one place the page stops asserting and lets the visitor try. A real
   case from the app — rear bumper, crack, medium — and a line from EUR 0 to
   EUR 800 to put a number on. Revealing drops the actual range onto the same
   line, so the gap between what you guessed and what it costs is the argument,
   made without a sentence.                                                   */
.guess {
  position: relative;
  padding-block: clamp(90px, 11vw, 150px);
  background: var(--ink);
  color: #fff;
  overflow: hidden;
}
.guessbg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.guess > .wrap { position: relative; }

.guess__h {
  max-width: 18ch;
  margin-top: 22px;
  font-size: clamp(2.1rem, 1rem + 3.4vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.guess__case {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: clamp(30px, 4vw, 48px);
}
.guess__car { font-size: var(--t-lede); font-weight: 800; letter-spacing: -0.025em; }
.guess__chips { display: inline-flex; flex-wrap: wrap; gap: 7px; }
.gchip {
  padding: 6px 13px;
  border-radius: 10px;
  background: rgba(34,197,94,.14);
  border: 1px solid rgba(34,197,94,.32);
  color: #86EFAC;
  font-size: .8125rem; font-weight: 700; font-style: normal;
}
.gchip--a {
  background: rgba(245,158,11,.14);
  border-color: rgba(245,158,11,.32);
  color: #FCD34D;
}

/* — the line — */
.dial { max-width: 720px; margin-top: clamp(34px, 4vw, 52px); }

.dial__out {
  display: block;
  font-size: clamp(2.6rem, 1.4rem + 3.4vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.dial.is-done .dial__out { color: rgba(255,255,255,.45); }

.dial__track {
  position: relative;
  height: 44px;
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.dial__track::before {
  content: "";
  position: absolute; left: 0; right: 0;
  height: 6px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.13);
}
/* the real range, dropped onto the same line on reveal */
.dial__band {
  position: absolute;
  height: 6px;
  border-radius: var(--r-pill);
  background: var(--green-bright);
  box-shadow: 0 0 24px rgba(34,197,94,.6);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .8s var(--e-out);
}
.dial.is-done .dial__band { transform: scaleX(1); }

.dial__input {
  position: relative;
  width: 100%;
  margin: 0;
  background: none;
  appearance: none;
  -webkit-appearance: none;
  height: 44px;
  cursor: grab;
}
.dial__input:active { cursor: grabbing; }
.dial__input::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid var(--ink);
  box-shadow: 0 0 0 2px rgba(255,255,255,.85), 0 10px 26px -8px rgba(0,0,0,.8);
}
.dial__input::-moz-range-thumb {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: #fff;
  border: 5px solid var(--ink);
  box-shadow: 0 0 0 2px rgba(255,255,255,.85), 0 10px 26px -8px rgba(0,0,0,.8);
}
.dial__input:focus-visible { outline: none; }
.dial__input:focus-visible::-webkit-slider-thumb { box-shadow: 0 0 0 2px var(--green-bright), 0 0 0 6px rgba(34,197,94,.35); }
.dial__input:focus-visible::-moz-range-thumb { box-shadow: 0 0 0 2px var(--green-bright), 0 0 0 6px rgba(34,197,94,.35); }

.dial__ends {
  display: flex; justify-content: space-between;
  font-size: .75rem; font-weight: 700;
  color: rgba(255,255,255,.4);
  font-variant-numeric: tabular-nums;
}
.dial__hint {
  margin-top: 22px;
  font-size: var(--t-body-sm);
  color: rgba(255,255,255,.5);
}
.dial.is-done .dial__hint { display: none; }
.dial__go { margin-top: 22px; }
.dial.is-done .dial__go { display: none; }

.dial__result {
  margin-top: 24px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 16px;
  animation: qain .5s var(--e-out);
}
.dial__result b {
  font-size: clamp(1.75rem, 1rem + 2.2vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--green-bright);
  font-variant-numeric: tabular-nums;
}
.dial__result span { font-size: var(--t-lede); color: rgba(255,255,255,.62); }

/* ══════════ COVERAGE ══════════ */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(14px, 1.4vw, 20px); }
.stat {
  padding: 30px 26px;
  border-radius: var(--r-xl);
  background: var(--canvas-2);
  border: 1px solid var(--line-soft);
}
.stat--accent { background: var(--green-pale); border-color: var(--green-line); }
.stat--accent .stat__v { color: var(--green-deep); }
.stat__v {
  font-size: clamp(2rem, 3vw, 2.875rem);
  font-weight: 800; letter-spacing: -0.05em; line-height: 1;
  color: var(--ink);
}
.stat__k { margin-top: 10px; font-size: var(--t-body-sm); color: var(--text-3); }
.stats__note { margin-top: 20px; font-size: var(--t-caption); color: var(--text-4); }

.marquee__label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: clamp(48px, 6vw, 80px);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-4);
}
.marquee__label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-soft);
}

.marquee {
  margin-top: 22px;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex; gap: 14px; width: max-content;
  transform: translate3d(calc(var(--s, 0) * -50%), 0, 0);
}
.marquee__track span {
  padding: 11px 22px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-soft);
  background: var(--canvas-2);
  font-size: var(--t-body-sm); font-weight: 700; color: var(--text-3);
  white-space: nowrap;
}

/* ══════════ FAQ ══════════ */
.faqgrid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr);
  gap: clamp(32px, 5vw, 90px);
  align-items: start;
}
.faqgrid__head { position: sticky; top: 120px; }
.faqgrid__head .sech { margin-top: 16px; }
.faqgrid__note {
  max-width: 30ch;
  margin-top: 22px;
  font-size: var(--t-body-sm);
  color: var(--text-3);
}
@media (max-width: 900px) {
  .faqgrid { grid-template-columns: minmax(0, 1fr); }
  .faqgrid__head { position: static; margin-bottom: 40px; }
}

.faq { border-top: 1px solid var(--line); }
.qa { border-bottom: 1px solid var(--line); }
.qa summary {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 0;
  font-size: var(--t-h4);
  font-weight: 800; letter-spacing: -0.03em;
  cursor: pointer; list-style: none;
  transition: color .25s;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary:hover { color: var(--green-deep); }
.qa__x {
  position: relative; width: 34px; height: 34px; flex: none;
  border-radius: 50%; border: 1px solid var(--line);
  transition: background-color .3s, border-color .3s, transform .45s var(--e-out);
}
.qa__x::before, .qa__x::after {
  content: ""; position: absolute; top: 50%; left: 50%;
  width: 13px; height: 1.8px; border-radius: 2px; background: var(--ink);
  transform: translate(-50%,-50%);
  transition: transform .45s var(--e-out), background-color .3s;
}
.qa__x::after { transform: translate(-50%,-50%) rotate(90deg); }
.qa[open] .qa__x { background: var(--ink); border-color: var(--ink); transform: rotate(90deg); }
.qa[open] .qa__x::before, .qa[open] .qa__x::after { background: #fff; }
.qa[open] .qa__x::after { transform: translate(-50%,-50%) rotate(0deg); }
.qa p {
  max-width: 62ch; padding-bottom: 28px;
  font-size: var(--t-body); color: var(--text-2);
  animation: qain .5s var(--e-out);
}
@keyframes qain { from { opacity: 0; transform: translateY(-8px); } }

/* ══════════ FINAL CTA ══════════ */
.sec--final {
  position: relative;
  background: var(--ink-deep);
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding-bottom: 0;
}
.finalbg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.final { position: relative; }
.final__h { font-size: var(--t-display); line-height: .94; letter-spacing: -0.055em; }
.final__h span { display: block; }
.final__h em { color: var(--green-bright); }
.final__p {
  max-width: 46ch; margin: 26px auto 0;
  font-size: var(--t-lede); color: rgba(255,255,255,.62);
}
.final__cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 38px; }
.final .stores { justify-content: center; margin-top: 24px; }
.final__phone {
  margin-top: clamp(56px, 8vw, 104px);
  display: flex; justify-content: center;
  perspective: 1600px;
}
.final__phone .phone {
  transform: rotateX(9deg) rotateY(-11deg) rotateZ(1.5deg);
  transform-style: preserve-3d;
  transition: transform .9s var(--e-out);
}
.final__phone:hover .phone { transform: rotateX(4deg) rotateY(-5deg); }
.final__phone .phone__bezel { margin-bottom: -13%; }

/* ══════════ FOOTER ══════════ */
.foot { background: var(--ink-deep); color: #fff; padding-top: clamp(70px, 8vw, 110px); }
.foot__inner {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
  gap: 48px; padding-bottom: 60px;
}
.brand--foot { color: #fff; }
.brand--foot .brand__mark { color: #fff; }
.foot__tag { margin-top: 14px; color: rgba(255,255,255,.5); font-size: var(--t-body-sm); }
.foot__cols { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 32px; }
.foot__cols div { display: flex; flex-direction: column; gap: 12px; }
.foot__k {
  font-size: .625rem; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 4px;
}
.foot__cols a { font-size: var(--t-body-sm); color: rgba(255,255,255,.72); transition: color .25s; }
.foot__cols a:hover { color: var(--green-bright); }
.foot__bar {
  display: flex; justify-content: space-between; gap: 20px;
  padding-block: 26px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: var(--t-caption); color: rgba(255,255,255,.42);
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — three composed layouts, not one scaled down
   ══════════════════════════════════════════════════════════ */

@media (max-width: 1180px) {
  .orbs, .rail { display: none; }
  .stage { grid-template-columns: minmax(0, 50fr) minmax(0, 50fr); }
  .stepr { grid-template-columns: 92px minmax(0, 1fr) minmax(0, 250px); gap: 24px; }
}

@media (max-width: 1024px) {
  .nav__links { display: none; }
  .nav__burger { display: grid; }
  .bento { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .card--wide { grid-column: span 2; grid-template-columns: minmax(0,1fr); }
  .shops { grid-template-columns: minmax(0,1fr); }
  .stats { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .foot__inner { grid-template-columns: minmax(0,1fr); }
}

@media (max-width: 860px) {
  .experience { height: 500vh; }

  .stage {
    display: block;
    padding-top: 76px;
    perspective: 1100px;
    perspective-origin: 50% 42%;
  }

  /* the nav is chrome over the device here — give it less of the screen */
  .nav { padding: 9px 0; }
  .nav.is-stuck { padding: 5px 0; }
  .brand__mark { width: 30px; height: 30px; }
  .brand__word { font-size: 1.0625rem; }
  .nav__burger { width: 38px; height: 38px; }
  .mobilemenu { inset: 60px 12px auto; }

  .hero { position: absolute; inset: 76px var(--gutter) auto; text-align: center; }
  .hero__title { margin-top: 20px; }
  .hero__sub { margin-inline: auto; margin-top: 18px; font-size: var(--t-body); }
  .hero__cta { justify-content: center; gap: 10px; margin-top: 26px; }
  /* the three figures live inside the device on this layout — the app's own
     home screen shows them, so repeating them above it is noise */
  .herostats { display: none; }
  .scrollhint { display: none; }

  .phonestage {
    position: absolute; left: 50%; top: 50%;
    width: min(100%, 420px);
    transform: translate(-50%, -50%);
  }
  .phonestage .phone { transform: translate3d(0, 46vh, 0) scale(.86); }

  .steps {
    position: absolute; inset: auto 0 0;
    height: 300px;
    padding: 60px var(--gutter) 28px;
    z-index: 6;
  }
  /* the scrim only exists once step copy is on screen — during the hero the
     device rises out of a clean canvas instead of a wash */
  .steps:has(.step.is-on) {
    background: linear-gradient(to top, var(--canvas) 46%, rgba(231,229,223,.92) 72%, transparent);
  }
  .step { inset: 60px var(--gutter) 28px; justify-content: flex-end; }
  .step__h { font-size: clamp(1.625rem, 6vw, 2.25rem); }
  .step__p { font-size: var(--t-body-sm); max-width: 46ch; }
  .step__l { display: none; }

  .ladder::before, .ladder::after { display: none; }
  .stepr {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding-left: 0;
  }
  .stepr__n { flex-direction: row; align-items: baseline; gap: 10px; }
  .stepr__viz { max-width: 340px; }

  .bento { grid-template-columns: minmax(0,1fr); }
  .card--wide { grid-column: span 1; }
  .foot__bar { flex-direction: column; gap: 8px; }
}

@media (max-width: 560px) {
  .nav__actions .btn { display: none; }
  .eyebrow { font-size: .75rem; padding: 7px 14px 7px 10px; }
  .stats { grid-template-columns: minmax(0,1fr); }
  .foot__cols { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .hero__cta .btn, .final__cta .btn { flex: 1 1 auto; justify-content: center; }
  .qa summary { font-size: 1.125rem; }
}

/* Reduced motion: the story stops being a scroll performance and becomes a
   plain vertical stack — hero, device, then all four chapters as sections. */
@media (prefers-reduced-motion: reduce) {
  .experience { height: auto; }
  .stage {
    position: static; display: block; height: auto;
    padding-block: 128px 96px; overflow: visible; perspective: none;
  }
  .hero { position: relative; inset: auto; grid-area: auto; }
  .phonestage {
    position: relative; inset: auto; grid-area: auto;
    margin: clamp(48px, 7vw, 88px) auto; transform: none;
  }
  .phonestage .phone { --k: 0.72; }
  .steps {
    position: relative; inset: auto; grid-area: auto; height: auto;
    display: grid; gap: clamp(56px, 7vw, 88px); padding: 0; background: none;
  }
  .step { position: relative; inset: auto; opacity: 1; transform: none; }
  .step__l { display: flex; }
  .orbs, .rail { display: none; }
}
