/* Bench Spotter — site styles.
   The sky (mesh gradient + planet) is drawn on #sky by js/planet.js; everything here sits on top of it as glass.
   Colors mirror the app's Solar palette: dark ink on the light palettes, light ink for the dark scheme. */

:root {
  --ink: #2f2236;
  --ink-rgb: 47, 34, 54;
  --sub: rgba(47, 34, 54, .8);
  --on-ink: #fff;
  --accent: #ffb45a;
  --glass: rgba(255, 255, 255, .34);
  --glass-strong: rgba(255, 255, 255, .6);
  --glass-border: rgba(255, 255, 255, .62);
  --glass-shadow: 0 24px 60px -24px rgba(47, 34, 54, .38);
  --highlight: rgba(255, 255, 255, .6);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", Inter, "Segoe UI", Roboto, sans-serif;
  --ph: min(74vh, 740px);   /* phone height; its width follows the screenshot's aspect */
  --radius: 28px;
  --wrap: 1180px;
  color-scheme: light;
}
:root[data-ink="light"] {
  --ink: #f3eef7;
  --ink-rgb: 243, 238, 247;
  --sub: rgba(243, 238, 247, .8);
  --on-ink: #2a1f30;
  --glass: rgba(24, 16, 34, .38);
  --glass-strong: rgba(24, 16, 34, .55);
  --glass-border: rgba(255, 255, 255, .16);
  --glass-shadow: 0 24px 60px -24px rgba(0, 0, 0, .7);
  --highlight: rgba(255, 255, 255, .18);
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: #f2b39c;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
:root[data-ink="light"] body { background: #2b2350; }
img { max-width: 100%; }
svg { stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
svg[hidden] { display: none !important; }
::selection { background: var(--accent); color: #2a1f30; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 12px; }
h1, h2, h3 { font-weight: 800; letter-spacing: -.025em; text-wrap: balance; }
p { text-wrap: pretty; }

/* The sky reaches under Safari's glass toolbar (the large viewport), so the bar shows sky, not a solid color. */
#sky { position: fixed; top: 0; left: 0; width: 100%; height: 100%; height: 100lvh; z-index: 0; display: block; }
main, .foot { position: relative; z-index: 1; }

/* ---------- glass & buttons ---------- */
.glass {
  background: var(--glass);
  -webkit-backdrop-filter: blur(26px) saturate(1.6);
  backdrop-filter: blur(26px) saturate(1.6);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--highlight);
  border-radius: var(--radius);
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px;
  font: inherit; font-weight: 600; font-size: 16px; line-height: 1.2;
  color: var(--ink); text-decoration: none; cursor: pointer; border: 0; white-space: nowrap;
  transition: transform .3s cubic-bezier(.2, .8, .2, 1), box-shadow .3s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: scale(.97); transition-duration: .1s; }
.btn__icon { width: 20px; height: 20px; }
.btn--ink { background: var(--ink); color: var(--on-ink); }
.btn--glass {
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(20px) saturate(1.5); backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid var(--glass-border);
  box-shadow: inset 0 1px 0 var(--highlight), 0 12px 30px -16px rgba(47, 34, 54, .4);
}
.btn--store { background: #0f0b14; color: #fff; padding: 9px 22px 9px 16px; box-shadow: 0 16px 40px -18px rgba(20, 10, 30, .8); }
.btn--store:hover { background: #1b1522; }
.btn__apple { width: 24px; height: 28px; stroke: none; fill: currentColor; }
.btn__lines { display: flex; flex-direction: column; text-align: left; line-height: 1.05; }
.btn__lines small { font-size: 11px; font-weight: 500; opacity: .85; letter-spacing: .01em; }
.btn__lines strong { font-size: 21px; font-weight: 600; letter-spacing: -.01em; }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: calc(14px + env(safe-area-inset-top, 0px)); left: 50%; transform: translateX(-50%); z-index: 60;
  display: flex; align-items: center; gap: 4px;
  padding: 6px 6px 6px 16px; border-radius: 999px;
  max-width: calc(100vw - 24px);
  background: var(--glass);
  -webkit-backdrop-filter: blur(26px) saturate(1.6); backdrop-filter: blur(26px) saturate(1.6);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--highlight);
}
.nav__brand { display: flex; align-items: center; gap: 9px; font-weight: 700; color: inherit; text-decoration: none; padding-right: 12px; letter-spacing: -.01em; white-space: nowrap; }
.nav__logo { width: 22px; height: 22px; }
.nav__links { display: flex; gap: 2px; }
.nav__links a { padding: 8px 12px; border-radius: 999px; text-decoration: none; color: var(--sub); font-weight: 500; font-size: 15px; white-space: nowrap; transition: background .2s, color .2s; }
.nav__links a[hidden] { display: none; }
.nav__links a:hover { background: rgba(var(--ink-rgb), .08); color: var(--ink); }
.nav__lang { display: flex; padding: 3px; margin: 0 8px; border-radius: 999px; background: rgba(var(--ink-rgb), .08); }
.nav__lang button {
  font: inherit; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  padding: 5px 9px; border: 0; border-radius: 999px; background: transparent; color: var(--sub); cursor: pointer;
  transition: background .2s, color .2s;
}
.nav__lang button[aria-pressed="true"] { background: var(--ink); color: var(--on-ink); }
.nav__cta { padding: 9px 16px; font-size: 15px; }

/* ---------- the stage: hero + flight + walkthrough ---------- */
.stage { position: relative; height: 100vh; height: 100svh; }
.stage__inner { position: absolute; inset: 0; overflow: hidden; }

.pins { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.pin {
  position: absolute; left: 0; top: 0; width: 34px; height: 34px; margin: -17px 0 0 -17px;
  border-radius: 50%; display: grid; place-items: center;
  background: var(--glass-strong); border: 1px solid var(--glass-border);
  box-shadow: 0 10px 24px -8px rgba(47, 34, 54, .55), inset 0 1px 0 var(--highlight);
  color: var(--ink); will-change: transform, opacity; opacity: 0;
}
.pin svg { width: 17px; height: 17px; }
.pin::after {
  content: ""; position: absolute; inset: -5px; border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .55);
  animation: pinPulse 2.8s ease-out infinite; animation-delay: var(--delay, 0s);
}
.pin--hero { width: 46px; height: 46px; margin: -23px 0 0 -23px; background: var(--accent); color: #2a1f30; border-color: rgba(255, 255, 255, .8); z-index: 2; }
.pin--hero svg { width: 22px; height: 22px; }
@keyframes pinPulse { 0% { transform: scale(.85); opacity: .9; } 100% { transform: scale(1.9); opacity: 0; } }

.hero {
  position: absolute; z-index: 4;
  left: max(24px, calc(50% - var(--wrap) / 2)); top: 50%; transform: translateY(-50%);
  max-width: min(620px, 46vw); padding-right: 24px;
}
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700; color: var(--ink); opacity: .78; margin: 0 0 14px; }
.hero__title { font-size: clamp(38px, 6vw, 76px); line-height: 1.02; letter-spacing: -.035em; margin: 0 0 22px; }
.w { display: inline-block; overflow: hidden; vertical-align: bottom; padding: .06em .04em .14em 0; margin: -.06em 0 -.14em; }
.w > span { display: inline-block; will-change: transform; }
.hero__sub { font-size: clamp(17px, 1.35vw, 20px); line-height: 1.5; color: var(--sub); max-width: 540px; margin: 0 0 30px; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hint {
  position: absolute; z-index: 4; left: 50%; bottom: 26px; transform: translateX(-50%);
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--sub);
}
.hint svg { width: 18px; height: 18px; animation: hintBob 1.8s ease-in-out infinite; }
@keyframes hintBob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

.flight-label {
  display: flex; gap: 12px; align-items: flex-start;
  width: max-content; max-width: min(340px, calc(100vw - 20px));
  padding: 10px 16px 12px 10px; border-radius: 20px;
  background: rgba(255, 255, 255, .86); color: #2f2236;
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: 0 24px 60px -24px rgba(47, 34, 54, .55), 0 2px 8px -2px rgba(47, 34, 54, .2);
  opacity: 0; pointer-events: none; will-change: transform; transform-origin: top left;
}
.flight-label__photo { width: 64px; height: 64px; border-radius: 16px; object-fit: cover; flex: none; }
.flight-label__body { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.flight-label strong { font-size: 17px; letter-spacing: -.01em; line-height: 1.15; }
.flight-label__meta { display: flex; align-items: center; gap: 5px; font-size: 13px; color: rgba(47, 34, 54, .72); white-space: nowrap; }
.flight-label__meta b { font-weight: 700; color: #2f2236; }
.flight-label__meta i { font-style: normal; }
.flight-label__meta svg { width: 14px; height: 14px; fill: #f0b429; stroke: #f0b429; }
.flight-label__chips { display: flex; gap: 6px; margin-top: 2px; }
.flight-label__chips em { display: inline-flex; align-items: center; gap: 5px; padding: 4px 10px 4px 8px; border-radius: 999px; background: rgba(255, 180, 90, .28); font-style: normal; font-size: 12px; font-weight: 600; }
.flight-label__chips em:last-child { background: rgba(94, 92, 230, .16); }
.flight-label__chips svg { width: 13px; height: 13px; }
.flight-label__sun { display: flex; align-items: center; gap: 6px; font-size: 12.5px; color: rgba(47, 34, 54, .8); margin-top: 2px; white-space: nowrap; }
.flight-label__sun svg { width: 14px; height: 14px; color: #e0872a; }

.phone {
  position: absolute; z-index: 6; left: 50%; top: 50%;
  height: var(--ph); aspect-ratio: 1320 / 2868;
  will-change: transform;
}
.phone__frame {
  position: absolute; inset: -11px; border-radius: calc(var(--ph) * .083);
  background: linear-gradient(155deg, #4a3f52, #17121d 40%, #0d0a11);
  box-shadow: 0 50px 120px -40px rgba(20, 10, 30, .75), inset 0 0 0 1px rgba(255, 255, 255, .14), inset 0 0 0 3px rgba(0, 0, 0, .6);
}
.phone__screen { position: absolute; inset: 0; border-radius: calc(var(--ph) * .072); overflow: hidden; background: #000; transform: translateZ(0); }
.phone__screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; will-change: opacity, transform; }
.phone__screen img.is-on { opacity: 1; }
.phone__island { position: absolute; top: 1.7%; left: 50%; width: 28%; height: 3.4%; transform: translateX(-50%); background: #000; border-radius: 999px; z-index: 3; }
.ripple { position: absolute; left: 50%; top: 50%; width: 70px; height: 70px; margin: -35px 0 0 -35px; border-radius: 50%; border: 3px solid #fff; opacity: 0; transform: scale(0); pointer-events: none; z-index: 2; }
.tap { position: absolute; left: 50%; top: 50%; width: 24px; height: 24px; margin: -12px 0 0 -12px; border-radius: 50%; background: rgba(255, 255, 255, .92); box-shadow: 0 0 0 7px rgba(255, 255, 255, .35); opacity: 0; transform: scale(0); z-index: 2; }

.chips { position: absolute; z-index: 7; left: 50%; top: 50%; width: 0; height: 0; pointer-events: none; }
.chip {
  position: absolute;
  left: calc(var(--cx) * var(--ph) * .36); top: calc(var(--cy) * var(--ph) * .36);
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px 10px 12px; border-radius: 999px; white-space: nowrap;
  background: var(--glass-strong); border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow), inset 0 1px 0 var(--highlight);
  font-weight: 600; font-size: 15px; opacity: 0;
}
.chip svg { width: 18px; height: 18px; color: var(--tint); }

.steps {
  position: absolute; z-index: 7; top: 50%; transform: translateY(-50%);
  left: max(24px, calc(50% - var(--ph) * .23 - 36px - 400px)); width: 400px; height: 320px;
}
.step { position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%); padding: 26px 28px; opacity: 0; }
.step__n { display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .14em; color: var(--sub); margin-bottom: 10px; font-variant-numeric: tabular-nums; }
.step h2 { font-size: clamp(26px, 2.5vw, 34px); line-height: 1.08; margin: 0 0 10px; }
.step p { margin: 0; font-size: 16px; line-height: 1.5; color: var(--sub); }
.rail { position: absolute; z-index: 7; right: max(20px, calc(50% - var(--wrap) / 2)); top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 10px; opacity: 0; }
.rail i { width: 6px; height: 6px; border-radius: 999px; background: rgba(var(--ink-rgb), .28); transition: transform .3s, background .3s; }
.rail i.is-on { background: var(--ink); transform: scale(1.6); }

/* ---------- sections after the stage ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.h2 { font-size: clamp(32px, 4.4vw, 56px); line-height: 1.05; margin: 0 0 16px; }
.lead { font-size: clamp(17px, 1.3vw, 20px); line-height: 1.5; color: var(--sub); max-width: 640px; margin: 0; }

.sun { padding: 18vh 0 8vh; }
.sun__arc { max-width: var(--wrap); margin: 20px auto 0; padding: 0 24px; }
.sun__arc svg { width: 100%; height: auto; display: block; overflow: visible; }
.sun__phones { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: var(--wrap); margin: -30px auto 0; padding: 0 24px; }
.mini { margin: 0; text-align: center; }
.js .mini { opacity: 0; transform: translateY(40px); }
.mini__frame {
  border-radius: 26px; padding: 6px;
  background: linear-gradient(155deg, #4a3f52, #17121d 40%, #0d0a11);
  box-shadow: 0 30px 60px -30px rgba(20, 10, 30, .7), inset 0 0 0 1px rgba(255, 255, 255, .12);
  transition: transform .6s cubic-bezier(.2, .8, .2, 1), box-shadow .6s;
}
/* Each screenshot gets its own compositing layer: images decoded late (lazy/async) otherwise stay unpainted in some browsers. */
.mini__frame img { display: block; width: 100%; aspect-ratio: 1320 / 2868; object-fit: cover; border-radius: 21px; transform: translateZ(0); backface-visibility: hidden; }
.mini.is-on .mini__frame { transform: translateY(-12px) scale(1.03); box-shadow: 0 40px 70px -30px rgba(20, 10, 30, .8), inset 0 0 0 1px rgba(255, 255, 255, .2); }
.mini figcaption { margin-top: 14px; font-weight: 600; font-size: 15px; color: var(--sub); transition: color .3s; }
.mini.is-on figcaption { color: var(--ink); }

.features { padding: 14vh 0 6vh; }
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; max-width: var(--wrap); margin: 36px auto 0; padding: 0 24px; }
.card { position: relative; padding: 28px; min-height: 230px; overflow: hidden; }
.js .card { opacity: 0; transform: translateY(40px); }
.card--a, .card--d { grid-column: span 4; }
.card--b, .card--c { grid-column: span 2; }
.card--e, .card--f { grid-column: span 3; }
.card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .5), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
:root[data-ink="light"] .card::before { background: radial-gradient(420px circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, .14), transparent 60%); }
.card:hover::before { opacity: 1; }
.card__icon { width: 42px; height: 42px; padding: 10px; border-radius: 14px; background: rgba(var(--ink-rgb), .09); color: var(--ink); margin-bottom: 18px; stroke-width: 1.9; }
.card h3 { font-size: 22px; margin: 0 0 8px; }
.card p { margin: 0; color: var(--sub); line-height: 1.5; }

.download { padding: 8vh 24px 14vh; }
.dl { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: 1.15fr .85fr; gap: 40px; align-items: center; padding: clamp(28px, 5vw, 64px); }
.dl .btn--store { margin-top: 28px; }
.dl__note { color: var(--sub); font-size: 14px; margin: 14px 0 0; }
.qr { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.qr__card {
  position: relative; width: min(300px, 70vw); aspect-ratio: 1;
  background: #fff; border-radius: 28px; padding: 18px; overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(47, 34, 54, .55);
  transform-style: preserve-3d;
}
.qr__svg { width: 100%; height: 100%; }
.qr__svg svg { width: 100%; height: 100%; display: block; overflow: visible; stroke: none; }
.qr__logo { position: absolute; left: 50%; top: 50%; width: 22%; aspect-ratio: 1; transform: translate(-50%, -50%); border-radius: 24%; background: #fff; display: grid; place-items: center; box-shadow: 0 0 0 5px #fff; }
.qr__logo svg { width: 68%; height: 68%; color: #2f2236; }
.qr__sweep { position: absolute; inset: -20% -60%; pointer-events: none; transform: translateX(-100%); background: linear-gradient(100deg, transparent 42%, rgba(255, 180, 90, .45) 50%, transparent 58%); }
.qr__caption { margin: 0; color: var(--sub); font-weight: 500; font-size: 15px; text-align: center; }

.foot { max-width: var(--wrap); margin: 0 auto; padding: 0 24px 40px; display: flex; flex-wrap: wrap; gap: 14px 28px; align-items: center; color: var(--sub); font-size: 14px; }
.foot__brand { display: flex; align-items: center; gap: 8px; font-weight: 700; color: var(--ink); }
.foot__brand svg { width: 20px; height: 20px; }
.foot__links { display: flex; gap: 18px; }
.foot__links a { color: inherit; text-decoration: none; }
.foot__links a:hover { color: var(--ink); text-decoration: underline; }
.foot__made { margin: 0 0 0 auto; }

.js [data-reveal] { opacity: 0; }
:root[data-ink="light"] .btn--store { border: 1px solid rgba(255, 255, 255, .16); }
@media (max-width: 899px) { .lead, .step p, .card p, .hero__sub { hyphens: auto; -webkit-hyphens: auto; } }

/* Russian runs longer: the display sizes step down a notch. */
:lang(ru) .hero__title { font-size: clamp(34px, 5.3vw, 66px); }
:lang(ru) .h2 { font-size: clamp(30px, 3.9vw, 50px); }
:lang(ru) .step h2 { font-size: clamp(22px, 2.2vw, 30px); }
:lang(ru) .card h3 { font-size: 21px; }
:lang(ru) .btn__lines strong { font-size: 19px; }

/* ---------- the gallery: a slow marquee of real bench views ---------- */
.views { padding: 12vh 0 4vh; }
.views__marquee { margin-top: 36px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.views__track { display: flex; gap: 18px; width: max-content; padding: 0 24px; }
.view { position: relative; flex: none; width: min(300px, 64vw); aspect-ratio: 4 / 5; margin: 0; border-radius: 26px; overflow: hidden; box-shadow: 0 30px 60px -30px rgba(20, 10, 30, .6); transition: transform .5s cubic-bezier(.2, .8, .2, 1); }
.view:hover { transform: translateY(-6px) scale(1.02); }
.view img { width: 100%; height: 100%; object-fit: cover; display: block; transform: translateZ(0); backface-visibility: hidden; transition: transform 1.2s cubic-bezier(.2, .8, .2, 1); }
.view:hover img { transform: translateZ(0) scale(1.06); }
.view::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0, 0, 0, .18), transparent 30%, transparent 62%, rgba(0, 0, 0, .55)); pointer-events: none; }
.view__pill { position: absolute; left: 14px; top: 14px; z-index: 1; display: inline-block; padding: 7px 12px; border-radius: 999px; background: rgba(255, 255, 255, .94); color: #2f2236; font-weight: 800; font-size: 13px; letter-spacing: -.01em; box-shadow: 0 6px 18px -8px rgba(0, 0, 0, .5); }
.view figcaption { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 1; display: flex; align-items: center; gap: 6px; color: #fff; text-shadow: 0 1px 10px rgba(0, 0, 0, .5); }
.view figcaption svg { width: 15px; height: 15px; flex: none; }
.view figcaption strong { font-size: 15px; font-weight: 600; }
.js .views[hidden] { display: none; }
@media (prefers-reduced-motion: reduce) {
  .views__marquee { overflow: auto; -webkit-mask-image: none; mask-image: none; }
  .view, .view img { transition: none; }
}

/* ---------- phones & narrow screens ---------- */
@media (max-width: 1240px) {
  .steps { width: 340px; left: max(20px, calc(50% - var(--ph) * .23 - 28px - 340px)); }
}
@media (max-width: 1199px) {
  .nav__links { display: none; }
}
@media (max-width: 899px) {
  :root { --ph: min(58vh, 600px); --radius: 22px; }
  .hint { display: none; }
  .nav { top: 10px; padding-left: 12px; }
  .nav__links { display: none; }
  .nav__brand span { display: none; }
  .hero { left: 16px; right: 16px; top: 13vh; transform: none; max-width: none; padding-right: 0; }
  .hero__title { font-size: clamp(34px, 10.5vw, 48px); }
  .hero__sub { font-size: 15px; line-height: 1.45; margin-bottom: 20px; }
  .hint { bottom: 18px; }
  .phone { top: 64%; }
  .chips { display: none; }
  .steps { left: 16px; right: 16px; width: auto; height: 200px; top: 74px; transform: none; }
  .step { top: 0; transform: none; padding: 18px 20px; }
  .step h2 { font-size: 22px; }
  .step p { font-size: 14px; }
  .rail { display: none; }
  .flight-label { padding: 8px 12px 10px 8px; gap: 10px; }
  .flight-label__photo { width: 52px; height: 52px; border-radius: 13px; }
  .flight-label strong { font-size: 15px; }
  .sun { padding-top: 12vh; }
  .sun__phones { grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 8px; }
  .bento { grid-template-columns: 1fr; gap: 12px; }
  .card { grid-column: auto !important; min-height: 0; padding: 22px; }
  .dl { grid-template-columns: 1fr; gap: 28px; }
  .foot__made { margin-left: 0; }
}

/* ---------- reduced motion: nothing loops, nothing bobs ---------- */
@media (prefers-reduced-motion: reduce) {
  .hint svg, .pin::after { animation: none; }
  .btn, .card::before, .mini__frame { transition: none; }
}

/* The flight label rides an anchor that follows the hero pin; GSAP animates the card inside it. */
.flight-anchor { position: absolute; left: 0; top: 0; z-index: 5; will-change: transform; pointer-events: none; }
.flight-anchor .flight-label { position: relative; }
