/* ============================================================================
   site.css — component styles. Every colour, font, size, spacing and gradient
   is a var() from tokens.css. No literals.
   ========================================================================== */

/* ---------- fixed chrome ---------- */
.chrome {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--stage-controls-gap);
  padding: var(--stage-controls-gap) var(--edge);
  background: var(--wash-chrome);
  backdrop-filter: blur(6px);
}
/* Matches the cover's "No One" logotype: display face, bold, title case,
   bright ink -- not the wide-tracked uppercase treatment used for labels. */
.wordmark {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-statement);
  line-height: 1;
  letter-spacing: var(--ls-heading);
  text-transform: none;
  color: var(--ink-100);
}

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--fs-body-sm);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  padding: 17px 34px;
  border: 1px solid transparent;
  cursor: pointer;
  min-height: var(--hit-min);
}
.btn-primary { color: var(--bg); background: var(--accent); border-color: var(--accent); }
.btn-primary:hover { color: var(--bg); background: var(--accent-bright); border-color: var(--accent-bright); }
.btn-ghost { color: var(--ink); background: transparent; border-color: var(--line-24); }
.btn-ghost:hover { color: var(--ink); border-color: var(--ink-72); }
.btn-sm { padding: 10px 20px; }

/* ---------- rail ---------- */
.rail {
  display: var(--rail-display);
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: var(--rail-w);
  z-index: 50;
  padding-left: var(--edge);
  background: var(--wash-rail);
  pointer-events: none;
}
.rail-inner {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: var(--rail-gap);
  pointer-events: auto;
}
.rail a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--muted);
  min-height: var(--hit-min);
  display: flex;
  align-items: center;
  gap: var(--rail-link-gap);
}
.rail a:hover { color: var(--ink-72); }
.rail a[aria-current="location"] { color: var(--ink-100); }
.rail-tick {
  flex: 0 0 auto;
  width: var(--rail-tick-w);
  height: var(--rail-tick-h);
  background: var(--muted);
  transition: width var(--rail-transition), background var(--rail-transition);
}
.rail a[aria-current="location"] .rail-tick {
  width: var(--rail-tick-w-active);
  background: var(--accent);
}

/* ---------- the flight ---------- */
.flight { position: relative; }

.flight-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background: var(--bg);
}
.flight-layers { position: absolute; inset: 0; }
.flight-video,
.flight-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* The poster is a discrete on/off element, so it is the ONE thing allowed a
   transition. Everything the per-frame tick drives must not have one. */
.flight-poster { transition: opacity .6s linear; }

.flight-scrim-base { position: absolute; inset: 0; background: var(--wash-base); pointer-events: none; }
/* Always-on, left-biased: night photography has bright regions (lit windows,
   moonlit water) that eat text wherever the camera happens to stop. */
.flight-scrim-stage { position: absolute; inset: 0; background: var(--wash-stage); pointer-events: none; }
.flight-vignette { position: absolute; inset: 0; background: var(--wash-vignette); pointer-events: none; }

.beat-copy,
.hero-copy {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--stage-copy-pad) var(--edge) var(--stage-copy-pad) var(--gutter);
  pointer-events: none;
}
.beat-copy > *, .hero-copy > * { pointer-events: auto; }
.beat-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--wash-beat);
  pointer-events: none;
}
.beat-copy > *, .hero-copy > * { position: relative; }

.eyebrow-row { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.eyebrow-rule { width: 30px; height: 1px; background: var(--accent); }
.eyebrow {
  font-family: var(--font-display);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--accent);
}

.hero-title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-hero);
  line-height: var(--lh-hero);
  letter-spacing: var(--ls-hero);
  text-transform: uppercase;
  text-shadow: var(--text-shadow);
}
.beat-h {
  margin: 0;
  max-width: var(--measure-heading);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-beat-h);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-heading);
  text-transform: uppercase;
  text-shadow: var(--text-shadow);
  text-wrap: balance;
}
.beat-body, .hero-body {
  margin: 22px 0 0;
  max-width: var(--measure-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-80);
  text-shadow: var(--text-shadow);
  text-wrap: pretty;
}
.statement { margin: 26px 0 0; max-width: var(--measure-body); display: flex; flex-direction: column; gap: 6px; }
.statement p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-statement);
  line-height: var(--lh-statement);
  letter-spacing: var(--ls-heading);
  text-transform: uppercase;
  text-shadow: var(--text-shadow);
}
.statement p:first-child { color: var(--ink-100); }
.statement p:last-child { color: var(--accent); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* ---------- transport controls ---------- */
.flight-progress {
  position: absolute;
  left: var(--gutter);
  bottom: var(--flight-progress-bottom);
  z-index: 5;
  display: flex;
  align-items: center;
  gap: var(--flight-progress-gap);
  pointer-events: none;
}
.flight-progress-track {
  position: relative;
  display: block;
  width: var(--flight-progress-w);
  height: var(--flight-progress-h);
  overflow: hidden;
  background: var(--line-24);
}
.flight-progress-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: var(--accent);
}
.flight-progress-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-micro);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--ink-55);
  white-space: nowrap;
}
[data-mode="flight"] .beat-copy,
[data-mode="flight"] .hero-copy {
  padding-bottom: calc(var(--flight-progress-bottom) + var(--hit-min) + var(--stage-controls-gap));
}
.flight-controls {
  position: absolute;
  right: var(--edge);
  bottom: var(--stage-copy-pad);
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: var(--stage-controls-gap);
  justify-content: flex-end;
}
.flight-controls button {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--ink-72);
  background: var(--scrim-60);
  border: 1px solid var(--line-18);
  padding: 11px 18px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  min-height: var(--hit-min);
}
.flight-controls button:hover { color: var(--ink-100); border-color: var(--line-24); }
.flight-controls .flight-control-icon {
  width: var(--flight-control-size);
  height: var(--flight-control-size);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
}

.motion-toggle {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--ink-45);
  background: transparent;
  border: 1px solid var(--line-14);
  padding: 10px 16px;
  cursor: pointer;
  min-height: var(--hit-min);
}
.motion-toggle:hover { color: var(--ink-100); }
.flight-motion-toggle {
  color: var(--ink-72);
  background: var(--scrim-60);
  padding: 0 12px;
}

/* ---------- reduced-motion still fallback ---------- */
[data-mode="reduced"] { height: auto !important; }
[data-mode="reduced"] .flight-stage { position: static; height: auto; }
[data-mode="reduced"] .flight-layers,
[data-mode="reduced"] .flight-poster,
[data-mode="reduced"] .flight-vignette { display: none; }
[data-mode="reduced"] .flight-scrim-base,
[data-mode="reduced"] .flight-scrim-stage { display: none; }
[data-mode="reduced"] .flight-progress { display: none; }
[data-mode="reduced"] .beat-copy,
[data-mode="reduced"] .hero-copy {
  position: relative;
  inset: auto;
  min-height: 100svh;
  background-size: cover;
  background-position: center;
  border-top: 1px solid var(--line-10);
}
[data-mode="reduced"] .hero-copy::before,
[data-mode="reduced"] .beat-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--wash-base);
}
.reduced-note {
  padding: var(--pad-section-s) var(--edge) 0 var(--gutter);
  font-size: var(--fs-body-sm);
  color: var(--ink-45);
}
[data-mode="flight"] .reduced-note { display: none; }
[data-mode="reduced"] .reduced-note {
  position: fixed;
  top: var(--flight-mobile-top);
  right: var(--edge);
  z-index: 65;
  display: flex;
  align-items: center;
  gap: var(--stage-controls-gap);
  margin: 0;
  padding: var(--stage-controls-gap);
  background: var(--scrim-88);
  border: 1px solid var(--line-14);
  backdrop-filter: blur(8px);
}
[data-mode="reduced"] .reduced-note-text { color: var(--ink-62); }

/* ---------- sections ---------- */
.section {
  position: relative;
  background: var(--bg);
  padding: var(--pad-section) var(--edge) var(--pad-section) var(--gutter);
  border-top: 1px solid var(--line-10);
}
.section-alt { background: var(--bg-alt); }
.section-panel { background: var(--bg-panel); }
.section-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--glow-section);
  pointer-events: none;
}
.section > * { position: relative; }

.section-h {
  margin: 0;
  max-width: var(--measure-heading);
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-section-h);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-heading);
  text-transform: uppercase;
}
.section-body {
  margin: 26px 0 0;
  max-width: var(--measure-body);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--ink-72);
  text-wrap: pretty;
}
.section-body + .section-body { margin-top: 18px; color: var(--ink-62); }

.quote {
  margin: 0;
  max-width: var(--measure-prose);
  font-family: var(--font-prose);
  font-style: italic;
  font-weight: 300;
  font-size: var(--fs-quote);
  line-height: var(--lh-body);
  color: var(--ink-100);
}
.quote-src {
  margin-top: 22px;
  font-family: var(--font-display);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--ink-45);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
  max-width: 1400px;
}
.cover {
  width: 100%;
  height: auto;
  max-width: 380px;
  box-shadow: var(--cover-shadow);
}

.grid-hairline {
  display: grid;
  gap: 1px;
  background: var(--line-12);
  border: 1px solid var(--line-12);
  max-width: 1180px;
}
.grid-facts { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin: 44px 0 0; }

/* The 6 progression steps use EXPLICIT column counts, not auto-fit. auto-fit
   packs as many as will fit, which at most desktop widths lands 5 in row one
   and orphans the 6th beside a stretch of empty grid background. Every count
   below divides 6 exactly (6 / 3 / 2), so the last row is always full. */
.grid-steps { grid-template-columns: repeat(6, 1fr); margin: 44px 0 0; padding: 0; list-style: none; }
@media (max-width: 1100px) { .grid-steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px)  { .grid-steps { grid-template-columns: repeat(2, 1fr); } }
.grid-status { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 44px; }
.grid-products { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); margin-top: 44px; max-width: 1400px; }

.cell { background: var(--bg); padding: 22px 24px; }
.section-alt .cell { background: var(--bg-alt); }
.cell dt, .cell-label {
  font-family: var(--font-display);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--ink-40);
}
.cell dd { margin: 10px 0 0; font-size: var(--fs-body-sm); line-height: 1.5; color: var(--ink-80); }
.step-n { font-family: var(--font-display); font-size: var(--fs-micro); letter-spacing: var(--ls-label); color: var(--accent); }
.step-label {
  margin-top: 10px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-statement);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--ink-100);
}
.dot { width: 6px; height: 6px; background: var(--accent); animation: pulse 3.6s ease-in-out infinite; }
.status-head { display: flex; align-items: center; gap: 10px; }
.status-title {
  font-family: var(--font-display);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--ink-100);
}
.status-desc { margin: 14px 0 0; font-size: var(--fs-body-sm); line-height: 1.6; color: var(--ink-62); }

/* Release progress. With no data wired the fill stays at zero width, which
   reads as an empty track next to the "not connected yet" note rather than as
   a claim that zero chapters exist. */
.progress {
  margin-top: var(--progress-gap);
  height: var(--progress-h);
  background: var(--line-24);
  overflow: hidden;
}
.progress-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--accent);
}

/* ---------- chapter list ---------- */
.chapters { margin-top: 40px; max-width: 1180px; border: 1px solid var(--line-12); }
.chapter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px;
  border-bottom: 1px solid var(--line-14);
  color: var(--ink-100);
  min-height: var(--hit-min);
}
.chapter-row:hover { background: var(--accent-wash); }
.chapter-name { display: flex; align-items: baseline; gap: 18px; flex-wrap: wrap; }
.chapter-num { font-family: var(--font-display); font-size: var(--fs-label); letter-spacing: var(--ls-label); color: var(--ink-40); }
.chapter-label {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-statement);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}
.tag {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}
.tag-free { color: var(--accent); }
.tag-locked { color: var(--ink-40); }
.excerpt-panel { padding: 30px 24px; background: var(--bg-panel); }
.excerpt {
  margin: 0;
  max-width: var(--measure-prose);
  font-family: var(--font-prose);
  font-weight: 300;
  font-size: var(--fs-prose);
  line-height: var(--lh-prose);
  color: var(--ink-80);
}

/* ---------- products ---------- */
.product { background: var(--bg-alt); padding: 36px 30px 30px; display: flex; flex-direction: column; }
.product-featured { background: var(--wash-featured), var(--bg-card); }
.product-eyebrow {
  font-family: var(--font-display);
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--ink-45);
}
.product-featured .product-eyebrow { color: var(--accent); }
.product-price {
  margin-top: 20px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-price);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-heading);
  color: var(--ink-100);
}
.product-label {
  margin-top: 16px;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-statement);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--ink-80);
  max-width: 22ch;
}
.product-note { margin: 16px 0 0; font-size: var(--fs-body-sm); line-height: 1.65; color: var(--ink-55); flex: 1; }
.product .btn { margin-top: 28px; text-align: center; }
.notice { margin: 24px 0 0; font-size: var(--fs-body-sm); color: var(--ink-45); min-height: 1.2em; }

/* ---------- faq ---------- */
.faq { margin-top: 34px; max-width: 1000px; border-top: 1px solid var(--line-14); }
.faq-item { border-bottom: 1px solid var(--line-14); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  color: var(--ink-100);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: var(--fs-statement);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  min-height: var(--hit-min);
}
.faq-glyph { color: var(--accent); font-size: var(--fs-statement); }
.faq-a { margin: 0; padding: 0 0 28px; max-width: var(--measure-body); font-size: var(--fs-body); line-height: var(--lh-body); color: var(--ink-72); }
.faq-a[hidden] { display: none; }

/* ---------- form ---------- */
.form-row { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; max-width: 640px; }
.form-row input {
  flex: 1;
  min-width: 240px;
  background: transparent;
  border: 1px solid var(--line-24);
  color: var(--ink);
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: var(--fs-body-sm);
  min-height: var(--hit-min);
}
.form-row input::placeholder { color: var(--ink-34); }

/* ---------- finale + footer ---------- */
.finale { padding: var(--pad-section-l) var(--edge) var(--pad-section-l) var(--gutter); }
.finale h2 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: var(--fs-finale-h);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-heading);
  text-transform: uppercase;
}
.footer {
  background: var(--bg-alt);
  padding: var(--pad-section-s) var(--edge) var(--pad-section) var(--gutter);
  border-top: 1px solid var(--line-10);
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
  align-items: flex-end;
}
.footer-mark { font-family: var(--font-display); font-size: var(--fs-label); letter-spacing: var(--ls-wordmark); text-transform: uppercase; color: var(--ink-72); }
.footer-sub { margin-top: 12px; font-size: var(--fs-label); letter-spacing: var(--ls-label); color: var(--ink-34); }
.footer nav { display: flex; flex-wrap: wrap; gap: 24px; }
.footer nav a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: var(--fs-label);
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  color: var(--ink-45);
  min-height: var(--hit-min);
  display: flex;
  align-items: center;
}
.footer nav a:hover { color: var(--ink-100); }

/* ---------- per-beat mobile framing overrides ---------- */
@media (max-width: 900px) {
  /* Section 04 (The Refuge): the composition's focal point -- Haven's lit
     windows -- sits on the right of the 16:9 frame. object-fit:cover crops a
     tall mobile viewport from the centre by default, which cuts that focal
     point off. Anchor the crop to the right edge instead, on mobile only. */
  .flight-video[data-beat-id="beat-4"] { object-position: 100% 50%; }
}

/* ---------- mobile sticky purchase bar ---------- */
.sticky-cta { display: none; }
@media (max-width: 900px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 70;
    align-items: center;
    justify-content: space-between;
    gap: var(--stage-controls-gap);
    height: var(--sticky-cta-h);
    padding: 0 var(--edge);
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--scrim-88);
    border-top: 1px solid var(--line-14);
    backdrop-filter: blur(8px);
  }
  .sticky-price { font-family: var(--font-display); font-weight: 400; font-size: var(--fs-statement); color: var(--ink-100); }
  .footer { padding-bottom: calc(var(--sticky-cta-h) + var(--pad-section-s)); }
  .flight-controls {
    top: var(--flight-mobile-top);
    bottom: auto;
  }
  .flight-progress {
    top: calc(var(--flight-mobile-top) + var(--flight-control-size) + var(--stage-controls-gap));
    bottom: auto;
    left: var(--edge);
  }
  .flight-progress-track { width: var(--flight-progress-w-mobile); }
  .beat-copy, .hero-copy { padding-bottom: calc(var(--sticky-cta-h) + var(--stage-copy-pad)); }
  [data-mode="flight"] .beat-copy,
  [data-mode="flight"] .hero-copy { padding-bottom: calc(var(--sticky-cta-h) + var(--stage-copy-pad)); }
  .hero-actions { margin-top: 22px; }
  [data-mode="reduced"] .reduced-note-text { display: none; }
}

@media (max-width: 900px) and (max-height: 620px) {
  .flight-progress { top: var(--flight-mobile-top); }
  .flight-progress-track { width: var(--flight-progress-w-short); }
  [data-mode="flight"] .beat-copy,
  [data-mode="flight"] .hero-copy {
    padding-top: calc(var(--flight-mobile-top) + var(--flight-control-size) + var(--stage-controls-gap));
  }
}

@media (max-width: 430px) and (max-height: 620px) {
  .flight-controls {
    top: calc(var(--flight-mobile-top) + var(--flight-control-size) + var(--stage-controls-gap));
  }
  [data-mode="flight"] .beat-copy,
  [data-mode="flight"] .hero-copy {
    padding-top: calc(var(--flight-mobile-top) + var(--flight-control-size) + var(--stage-controls-gap) + var(--flight-control-size) + var(--stage-controls-gap));
  }
}

/* Very short viewports: compact the copy without removing chapter content. */
@media (max-height: 620px) {
  .eyebrow-row { margin-bottom: 12px; }
  .beat-body {
    margin-top: 12px;
    font-size: var(--fs-short-body);
    line-height: var(--lh-short-body);
  }
  .statement { margin-top: 16px; }
  .hero-body {
    margin-top: 12px;
    font-size: var(--fs-short-body);
    line-height: var(--lh-short-body);
  }
  .hero-actions {
    margin-top: 12px;
    gap: var(--stage-controls-gap);
  }
  .hero-actions .btn {
    padding: 10px 16px;
    font-size: var(--fs-label);
  }
}

@media (max-height: 430px) {
  .hero-copy .eyebrow-row { display: none; }
  .hero-copy .statement,
  .statement { margin-top: 8px; gap: 2px; }
  .beat-body,
  .hero-body { margin-top: 8px; }
  .hero-actions { margin-top: 8px; }
  .hero-actions .btn { padding: 6px 10px; }
}

@media (max-width: 900px) and (max-height: 380px) {
  .flight-controls,
  .sticky-cta { display: none !important; }
  [data-mode="flight"] .beat-copy,
  [data-mode="flight"] .hero-copy {
    padding-top: calc(var(--flight-mobile-top) + var(--hit-min));
    padding-bottom: var(--stage-copy-pad);
  }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
