/* Apogee Labs — typography-led, Apple-product-page language.
   Vanilla CSS, no build step. Motion is scroll-driven and opt-out safe. */

/* --- Registered progress property: animatable by CSS scroll timelines and
       writable by the JS fallback. One consumer, two producers. ------------ */
@property --p {
  syntax: "<number>";
  inherits: true;
  initial-value: 0;
}

:root {
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
          "Inter", system-ui, "Helvetica Neue", Arial, sans-serif;

  /* Apple-ish neutrals. Bands alternate; both tokens flip per colour scheme. */
  --band-a: #fbfbfd;          /* "light" band */
  --band-a-ink: #1d1d1f;
  --band-a-ink-2: #6e6e73;
  --band-a-hair: rgba(0, 0, 0, .10);
  --band-b: #000;             /* "dark" band */
  --band-b-ink: #f5f5f7;
  --band-b-ink-2: #a1a1a6;
  --band-b-hair: rgba(255, 255, 255, .14);

  --link: #0066cc;
  --btn: #0071e3;
  --glass: rgba(251, 251, 253, .8);
  --glass-hair: rgba(0, 0, 0, .12);
  --glass-ink: #1d1d1f;

  --gut: clamp(20px, 5vw, 48px);
  --max: 1120px;
  --r: 22px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --band-a: #1d1d1f;
    --band-a-ink: #f5f5f7;
    --band-a-ink-2: #a1a1a6;
    --band-a-hair: rgba(255, 255, 255, .12);
    --link: #2997ff;
    --glass: rgba(26, 26, 28, .8);
    --glass-hair: rgba(255, 255, 255, .12);
    --glass-ink: #f5f5f7;
  }
}

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--band-a);
  color: var(--band-a-ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;   /* clip, not hidden: hidden would break position:sticky */
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

::selection { background: color-mix(in srgb, var(--accent, #0066cc) 28%, transparent); }

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 6px;
}

.skip-link {
  position: fixed;
  top: 10px; left: 10px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color: #1d1d1f;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform .25s var(--ease);
}
.skip-link:focus-visible { transform: none; }

/* ---------------------------------------------------------------- bands -- */
.band {
  position: relative;
  background: var(--bg);
  color: var(--ink);
  --bg: var(--band-a);
  --ink: var(--band-a-ink);
  --ink-2: var(--band-a-ink-2);
  --hair: var(--band-a-hair);
}
.band--dark {
  --link: #2997ff;
  --bg: var(--band-b);
  --ink: var(--band-b-ink);
  --ink-2: var(--band-b-ink-2);
  --hair: var(--band-b-hair);
}

.inner {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.grid12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 32px);
}

/* ------------------------------------------------------------ type ------ */
h1, h2, h3 { margin: 0; font-weight: 600; }

.display {
  font-size: clamp(2.65rem, 8.6vw, 6rem);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 600;
}
.headline {
  font-size: clamp(2.1rem, 5.6vw, 4rem);
  line-height: 1.06;
  letter-spacing: -.028em;
}
.eyebrow {
  margin: 0 0 clamp(14px, 2vw, 22px);
  font-size: clamp(.95rem, 1.5vw, 1.2rem);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
}
.eyebrow [lang="ar"] { font-size: 1.1em; margin-inline-start: .18em; }

.sub {
  margin: clamp(16px, 2.4vw, 26px) 0 0;
  font-size: clamp(1.1rem, 1.9vw, 1.55rem);
  line-height: 1.35;
  letter-spacing: -.012em;
  color: var(--ink-2);
  max-width: 30ch;
  text-wrap: balance;
}

/* Apple's text-link pair. */
.links {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 2.4vw, 32px);
  margin-top: clamp(22px, 3vw, 34px);
}
.tlink {
  font-size: clamp(1.02rem, 1.5vw, 1.25rem);
  letter-spacing: -.01em;
  color: var(--link);
  text-decoration: none;
  white-space: nowrap;
}
.tlink::after {
  content: "\203A";
  display: inline-block;
  margin-left: .38em;
  transition: transform .3s var(--ease);
}
.tlink:hover { text-decoration: underline; text-underline-offset: 4px; }
.tlink:hover::after { transform: translateX(4px); }

/* ------------------------------------------------------------- nav ------ */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--glass);
  border-bottom: 1px solid var(--glass-hair);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
}
.nav__in {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  height: 48px;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--gut);
  color: var(--glass-ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -.012em;
  text-decoration: none;
  margin-right: auto;
}
.brand svg { width: 20px; height: 20px; }
.nav a:not(.brand) {
  font-size: 13px;
  letter-spacing: -.004em;
  text-decoration: none;
  opacity: .85;
  transition: opacity .25s var(--ease);
}
.nav a:not(.brand):hover { opacity: 1; }
@media (max-width: 420px) { .nav__in { gap: 16px; } .brand { font-size: 14px; } }

/* ------------------------------------------------------------ hero ------ */
.hero {
  position: relative;
  overflow: clip;
  padding: clamp(84px, 16vh, 168px) 0 clamp(88px, 15vh, 150px);
  text-align: center;
  isolation: isolate;
}
.hero .inner { position: relative; z-index: 2; }
.hero .display { max-width: 16ch; margin-inline: auto; }
.hero .sub { max-width: 40ch; margin-inline: auto; text-align: center; }
.hero .links { justify-content: center; }

/* Orbital apogee motif: transform-only, composited, one element deep. */
.orbit {
  position: absolute;
  inset: -12% 0 auto;
  z-index: 1;
  margin-inline: auto;
  width: min(1180px, 150vw);
  aspect-ratio: 1 / 1;
  pointer-events: none;
  opacity: .9;
  /* Two masks intersected: the radial keeps the motif soft-edged, the linear
     makes sure it is fully transparent before overflow:clip reaches it —
     otherwise the glow ends in a hard line at the band boundary. */
  --orbit-mask: radial-gradient(60% 55% at 50% 45%, #000 38%, transparent 76%),
                linear-gradient(to bottom, #000 34%, transparent 72%);
  mask-image: var(--orbit-mask);
  -webkit-mask-image: var(--orbit-mask);
  mask-composite: intersect;
  -webkit-mask-composite: source-in;
}
@media (prefers-color-scheme: light) { .orbit { opacity: .55; } }
.orbit svg { width: 100%; height: 100%; }
.orbit .ring, .orbit .body {
  fill: none;
  stroke: currentColor;
  transform-box: view-box;
  transform-origin: 50% 50%;
  animation: spin 46s linear infinite;
  will-change: transform;
}
.orbit .ring--b { animation-duration: 74s; animation-direction: reverse; }
.orbit .ring--c { animation-duration: 104s; }
.orbit .body--b { animation-duration: 74s; animation-direction: reverse; }
.orbit .glow { animation: breathe 9s ease-in-out infinite; transform-box: view-box; transform-origin: 50% 50%; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes breathe { 50% { transform: scale(1.09); opacity: .85; } }

/* ------------------------------------------------- scroll-driven reveal -- */
.reveal { opacity: 0; transform: translate3d(0, 26px, 0); }
.reveal.in {
  opacity: 1;
  transform: none;
  transition: opacity .85s var(--ease), transform .85s var(--ease);
  transition-delay: calc(var(--d, 0) * 90ms);
}
@supports (animation-timeline: view()) {
  .reveal {
    animation: rise linear both;
    animation-timeline: view();
    animation-range: entry 6% cover 26%;
  }
  .reveal.in { transition: none; }
}
@keyframes rise {
  from { opacity: 0; transform: translate3d(0, 26px, 0); }
  to   { opacity: 1; transform: none; }
}

/* --------------------------------------------------- pinned app sections - */
.pin { position: relative; }
.pin__track { height: 340vh; }
.pin__stage {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  padding-top: 48px;      /* clear the sticky nav so content centres under it */
  display: flex;
  align-items: center;
  overflow: clip;
}
.pin__grid {
  width: 100%;
  align-items: center;
  row-gap: clamp(26px, 5vh, 56px);
}
.pin__copy { grid-column: 1 / span 5; grid-row: 1; }
.pin__visual {
  grid-column: 7 / span 6;
  grid-row: 1;
  display: grid;
  align-content: center;
  justify-items: stretch;
  position: relative;
  aspect-ratio: 4 / 5;
  max-height: 62vh;
  margin-inline: auto;
  width: 100%;
}

/* Layers cross-fade with scroll progress. Without JS (and without a scroll
   timeline) they simply stack in flow — every word still readable. */
.slot { position: relative; }
.js .slot {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  justify-items: stretch;
  will-change: opacity, transform;
  /* fade in at --from, out at --to (both 0–1 scroll progress) */
  opacity: clamp(0, calc((var(--p) - var(--from)) / .09), 1);
  transform: translate3d(0, calc((var(--p) - var(--from) - .22) * -34px), 0);
}
.js .slot--out {
  opacity: clamp(0, min(calc((var(--p) - var(--from)) / .09),
                        calc((var(--to) - var(--p)) / .09)), 1);
}

/* Caption under the headline: cross-fades in step with the visual. */
.notes { position: relative; margin-top: clamp(18px, 2.6vw, 28px); }
.js .notes { min-height: 6.1em; }
.js .notes .slot {
  align-content: start;
  justify-items: stretch;
  text-align: left;
  inset: 0 auto auto 0;
  width: 100%;
}
.note {
  margin: 0;
  font-size: clamp(1.02rem, 1.5vw, 1.2rem);
  line-height: 1.45;
  letter-spacing: -.012em;
  color: var(--ink-2);
  max-width: 32ch;
}
.note b { color: var(--ink); font-weight: 500; }

.pin__rail {
  display: flex;
  gap: 8px;
  margin-top: clamp(26px, 4vh, 42px);
}
.pin__rail i {
  height: 3px;
  width: 38px;
  border-radius: 2px;
  background: var(--hair);
  overflow: hidden;
  position: relative;
}
.pin__rail i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(clamp(0, calc((var(--p) - var(--from)) / var(--span, .3)), 1));
}

@media (max-width: 900px) {
  /* Still pinned — just stacked: copy on top, visual below. */
  .pin__track { height: 300vh; }
  .pin__copy, .pin__visual { grid-column: 1 / -1; }
  .pin__copy { grid-row: 1; }
  .pin__visual { grid-row: 2; }
  .pin__grid { row-gap: clamp(18px, 3vh, 30px); align-content: center; }
  .pin__visual {
    aspect-ratio: auto;
    height: clamp(230px, 40svh, 380px);
    max-height: none;
  }

  .sub { max-width: 34ch; }
  .headline { font-size: clamp(1.95rem, 8.2vw, 2.6rem); }
  .note { font-size: 1rem; }
  .js .notes { min-height: 5.8em; }
}

/* ------------------------------------------------- Marge: fee peel-away -- */
.fees {
  width: min(100%, 420px);
  margin-inline: auto;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.fees__gross {
  margin: 0;
  font-size: clamp(3rem, 7vw, 4.6rem);
  font-weight: 600;
  line-height: 1;
}
.fees__cap {
  margin: 10px 0 26px;
  font-size: .95rem;
  color: var(--ink-2);
  letter-spacing: 0;
}
.fees__row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 0;
  padding: 13px 0;
  border-top: 1px solid var(--hair);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-2);
}
.fees__row b { font-weight: 500; color: var(--ink); }
.js .fees__row {
  opacity: clamp(0, calc((var(--p) - var(--at)) / .05), 1);
  transform: translate3d(calc(clamp(0, calc((var(--at) + .05 - var(--p)) / .05), 1) * 26px), 0, 0);
}
.net { margin: 0; }
.net {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-weight: 600;
  letter-spacing: -.035em;
}
.net__num {
  font-size: clamp(3.4rem, 8.6vw, 5.4rem);
  line-height: 1;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.net__from {
  margin: 0 0 14px;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: var(--ink-2);
  letter-spacing: -.01em;
  text-decoration: line-through;
  text-decoration-color: color-mix(in srgb, currentColor 55%, transparent);
}
.net__lab {
  display: block;
  margin: 12px 0 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  letter-spacing: -.01em;
  color: var(--ink-2);
  font-weight: 400;
}

/* -------------------------------------------------- Notch: chore board -- */
.board { width: min(100%, 440px); margin-inline: auto; display: grid; gap: clamp(12px, 1.8vh, 18px); }
.bar { display: flex; align-items: center; gap: 14px; }
.bar__who {
  flex: none;
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  color: var(--ink);
  border: 1px solid var(--hair);
}
.bar__track {
  flex: 1;
  height: 12px;
  border-radius: 999px;
  background: var(--hair);
  overflow: hidden;
}
.bar__fill {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--accent) 55%, transparent), var(--accent));
  transform-origin: left;
  transform: scaleX(var(--v, .3));
  transition: transform .9s var(--ease);
}
.js .bar__fill {
  transform: scaleX(calc(var(--v0) + (var(--v1) - var(--v0)) *
             clamp(0, calc((var(--p) - .34) / .22), 1)));
  transition: none;
}
.bar__pts {
  flex: none;
  width: 52px;
  text-align: right;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  color: var(--ink-2);
}

.shot {
  width: min(80%, 300px);
  height: min(100%, 540px);
  margin: 0 auto;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--hair);
  box-shadow: 0 30px 70px -28px rgba(0, 0, 0, .7);
  background: #f5f0e8;
}
.shot img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.shot[hidden] { display: none; }
.shot__cap {
  margin: 14px 0 0;
  font-size: 12px;
  text-align: center;
  color: var(--ink-2);
  letter-spacing: .02em;
}

/* --------------------------------------------------- Kept: spine shelf -- */
.shelf {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(7px, 1.1vw, 12px);
  perspective: 1100px;
  width: 100%;
  height: clamp(250px, 46vh, 430px);
  padding-bottom: 26px;
  position: relative;
}
.shelf::after {
  content: "";
  position: absolute;
  left: 8%; right: 8%; bottom: 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--hair) 18%, var(--hair) 82%, transparent);
}
.spine {
  width: clamp(24px, 3.9vw, 42px);
  height: var(--h, 62%);
  min-height: 120px;
  border-radius: 4px 7px 7px 4px;
  background: var(--c);
  box-shadow: 1px 0 0 rgba(255, 255, 255, .22) inset,
              0 0 0 1px rgba(0, 0, 0, .08),
              0 12px 26px -14px rgba(0, 0, 0, .6);
  transform-origin: bottom center;
  transform: rotateY(calc(var(--tilt, 0) * 1deg));
  transition: transform 1s var(--ease);
  position: relative;
}
.js .spine {
  transform: rotateY(calc((var(--i) - 3.5) * 5deg * clamp(0, calc((var(--p) - .3) / .45), 1)))
             translateY(calc(clamp(0, calc((var(--p) - .3) / .45), 1) * var(--lift, 0) * -1px));
  transition: none;
}
.spine::before, .spine::after {
  content: "";
  position: absolute;
  left: 22%; right: 22%;
  height: 2px;
  border-radius: 2px;
  background: rgba(0, 0, 0, .22);
}
.spine::before { top: 16%; }
.spine::after { top: 24%; }

/* --------------------------------------------------------- buttons ------ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -.012em;
  text-decoration: none;
  cursor: pointer;
  background: var(--btn);
  color: #fff;
  transform: translate3d(var(--mx, 0), var(--my, 0), 0);
  transition: transform .35s var(--ease), background-color .25s var(--ease),
              opacity .25s var(--ease);
}
.btn:hover { background: color-mix(in srgb, var(--btn) 84%, #fff); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--hair);
}
.btn--ghost:hover { background: color-mix(in srgb, var(--ink) 7%, transparent); }
.btn--block { width: 100%; }

/* ------------------------------------------------------ link pages ------ */
.page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-bottom: clamp(40px, 8vh, 80px);
}
.card {
  width: min(100%, 440px);
  margin: clamp(30px, 8vh, 70px) auto 0;
  text-align: center;
}
.card__icon {
  width: 88px; height: 88px;
  border-radius: 21px;
  margin: 0 auto clamp(22px, 4vh, 34px);
  box-shadow: 0 18px 44px -20px rgba(0, 0, 0, .55);
}
.card h1 {
  font-size: clamp(2.3rem, 8vw, 3.1rem);
  letter-spacing: -.032em;
  line-height: 1.05;
}
.card .sub { max-width: none; text-align: center; margin-inline: auto; }
.stack { display: grid; gap: 12px; margin-top: clamp(28px, 5vh, 40px); }

.detail {
  margin-top: clamp(44px, 8vh, 72px);
  text-align: left;
  border-top: 1px solid var(--hair);
  padding-top: clamp(24px, 4vh, 34px);
}
.detail h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 16px;
}
.detail ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 13px; }
.detail li {
  position: relative;
  padding-left: 26px;
  font-size: 1.02rem;
  line-height: 1.45;
  letter-spacing: -.01em;
}
.detail li::before {
  content: "";
  position: absolute;
  left: 4px; top: .58em;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.invite {
  margin-top: clamp(24px, 4vh, 32px);
  padding: 20px;
  border-radius: var(--r);
  border: 1px solid var(--hair);
  background: color-mix(in srgb, var(--accent) 9%, transparent);
}
.invite__lab, .invite__hint {
  margin: 0;
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: -.005em;
}
.invite__code {
  margin: 8px 0;
  font-size: clamp(1.9rem, 8vw, 2.4rem);
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--accent);
}

.qr {
  margin: clamp(34px, 6vh, 50px) auto 0;
  display: grid;
  justify-items: center;
  gap: 12px;
}
.qr__frame {
  width: 132px;
  padding: 12px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--hair);
}
.qr span { font-size: 13px; color: var(--ink-2); letter-spacing: -.005em; }
@media (max-width: 600px) { .qr { display: none; } }

.fine {
  margin: clamp(26px, 5vh, 36px) 0 0;
  font-size: 13px;
  line-height: 1.6;
  color: var(--ink-2);
  letter-spacing: -.004em;
}
.fine a, .foot__also a {
  color: var(--link);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--hair);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--ink-2);
}
.chip::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--ink-2);
  text-decoration: none;
  letter-spacing: -.005em;
}
.back:hover { color: var(--ink); }

/* --------------------------------------------------------- footer ------- */
.foot {
  border-top: 1px solid var(--hair);
  padding: clamp(34px, 6vh, 54px) 0 clamp(40px, 7vh, 60px);
  font-size: 13px;
  line-height: 1.7;
  color: var(--ink-2);
  letter-spacing: -.004em;
}
.foot__in {
  display: flex;
  flex-wrap: wrap;
  gap: 8px clamp(20px, 4vw, 40px);
  justify-content: space-between;
}
.foot a { color: inherit; text-decoration: none; }
.foot a:hover { color: var(--ink); text-decoration: underline; }

/* ------------------------------------------------------- error page ----- */
.err {
  min-height: 100svh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: var(--gut);
}
.err h1 {
  font-size: clamp(5rem, 22vw, 11rem);
  letter-spacing: -.05em;
  line-height: .9;
}

/* ------------------------------------------------- reduced motion ------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }

  /* Unpin: every layer lands in normal flow, fully opaque, nothing hidden. */
  .pin__track { height: auto !important; }
  .pin__stage {
    position: static !important;
    height: auto !important;
    padding: clamp(70px, 11vh, 120px) 0;
  }
  .pin__visual {
    aspect-ratio: auto !important;
    max-height: none !important;
    display: grid;
    gap: clamp(34px, 6vh, 56px);
  }
  /* Plain blocks: a grid with place-content:center would shrink-wrap the
     board and collapse its flexible bar tracks. */
  .js .slot {
    display: block !important;
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .js .fees__row, .js .spine { opacity: 1 !important; transform: none !important; }
  .js .bar__fill { transform: scaleX(var(--v1)) !important; }
  .pin__rail { display: none; }
  .orbit { opacity: .55; }
  @media (max-width: 900px) { .pin__visual { margin-top: 0; } }
}
