/* BodyArcade brand system.
   Paper + ink with a signal orange and sun yellow taken from the game's dusk worlds.
   One variable typeface (Archivo) used wide for display, normal for reading. */

@font-face {
  font-family: "Archivo";
  src: url("fonts/archivo.woff2") format("woff2");
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
}

:root {
  --paper: #f3eee5;
  --paper-2: #e9e2d4;
  --card: #fbf8f2;
  --ink: #15130f;
  --ink-2: #221f1a;
  --ink-3: #2e2a24;
  --muted: #6b645a;
  --muted-2: #9a9185;
  --signal: #ff4f24;
  --signal-deep: #d93a12;
  --sun: #ffc93c;
  --sky: #a9c3de;
  --dusk: #ecbcb2;
  --line: rgba(21, 19, 15, 0.12);
  --line-light: rgba(243, 238, 229, 0.14);
  --radius: 18px;
  --gutter: clamp(16px, 4vw, 48px);
  --max: 1280px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

*, *::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;
  background: var(--paper);
  color: var(--ink);
  font-family: "Archivo", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  font-stretch: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--signal); outline-offset: 3px; border-radius: 6px; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 var(--gutter); }
.skip { position: absolute; left: -9999px; top: 10px; background: var(--ink); color: var(--paper); padding: 10px 14px; border-radius: 10px; z-index: 100; }
.skip:focus { left: 10px; }

/* Display type: wide and heavy, like a race bib. */
.display {
  font-stretch: 125%;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 0;
  text-wrap: balance;
}
.label {
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(243, 238, 229, 0.86);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
.nav.is-stuck { border-bottom-color: var(--line); }
.nav-in { display: flex; align-items: center; gap: 24px; height: 68px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.logo svg { width: 30px; height: 30px; flex: none; }
.logo-word { font-stretch: 125%; font-weight: 850; font-size: 19px; letter-spacing: -0.01em; text-transform: uppercase; }
.nav-links { display: flex; gap: 4px; margin: 0 0 0 auto; padding: 0; list-style: none; }
.nav-links a { display: block; padding: 8px 12px; font-size: 15px; font-weight: 520; text-decoration: none; border-radius: 10px; color: var(--ink-3); }
.nav-links a:hover { background: var(--paper-2); color: var(--ink); }
.menu-btn { display: none; margin-left: auto; background: none; border: 1.5px solid var(--ink); border-radius: 10px; padding: 8px 12px; font: 650 14px/1 "Archivo", sans-serif; color: var(--ink); }

/* ---------- Buttons: tactile, like an arcade button that actually presses. ---------- */
.btn {
  --edge: var(--signal-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  font: 750 16px/1 "Archivo", sans-serif;
  font-stretch: 112%;
  letter-spacing: 0.01em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.12s var(--ease), box-shadow 0.12s var(--ease), background 0.2s;
}
.btn-play { background: var(--signal); color: #fff; box-shadow: 0 4px 0 var(--edge); }
.btn-play:hover { background: #ff5f37; transform: translateY(-1px); box-shadow: 0 5px 0 var(--edge); }
.btn-play:active { transform: translateY(3px); box-shadow: 0 1px 0 var(--edge); }
.btn-line { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--paper); }
.btn-sm { height: 42px; padding: 0 16px; font-size: 14px; border-radius: 12px; }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }
.on-ink .btn-line { color: var(--paper); box-shadow: inset 0 0 0 2px var(--paper); }
.on-ink .btn-line:hover { background: var(--paper); color: var(--ink); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(28px, 5vw, 64px) 0 clamp(56px, 8vw, 110px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.live-pill { display: inline-flex; align-items: center; gap: 10px; padding: 7px 14px 7px 10px; border-radius: 999px; background: var(--ink); color: var(--paper); font-size: 13px; font-weight: 600; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--signal); box-shadow: 0 0 0 0 rgba(255, 79, 36, 0.6); animation: live 2s infinite; }
@keyframes live { 0% { box-shadow: 0 0 0 0 rgba(255, 79, 36, 0.55); } 70% { box-shadow: 0 0 0 9px rgba(255, 79, 36, 0); } 100% { box-shadow: 0 0 0 0 rgba(255, 79, 36, 0); } }
.hero h1 { font-size: clamp(40px, 5.1vw, 72px); font-stretch: 110%; margin-top: 24px; }
.hero h1 .hl { position: relative; display: inline-block; }
/* The road's double yellow line, used as an underline. */
.hero h1 .hl::after { content: ""; position: absolute; left: 0; right: 0; bottom: -0.08em; height: 0.16em; background: linear-gradient(var(--sun), var(--sun)) 0 0 / 100% 38% no-repeat, linear-gradient(var(--sun), var(--sun)) 0 100% / 100% 38% no-repeat; }
.hero-lede { max-width: 30em; margin: 30px 0 0; font-size: clamp(17px, 1.5vw, 20px); color: var(--ink-3); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 8px 20px; margin: 22px 0 0; padding: 0; list-style: none; font-size: 14px; color: var(--muted); }
.hero-facts li { display: inline-flex; align-items: center; gap: 8px; }
.hero-facts li::before { content: ""; width: 14px; height: 2px; background: var(--ink); opacity: 0.35; }

.hero-art { position: relative; min-height: 460px; }
.screen {
  position: relative;
  border-radius: 22px;
  background: var(--ink);
  padding: 10px;
  box-shadow: 14px 14px 0 var(--ink-3);
  transform: rotate(-1.8deg);
}
.screen img { border-radius: 14px; aspect-ratio: 1400 / 700; object-fit: cover; width: 100%; }
.screen-cap { position: absolute; left: 22px; bottom: -34px; font-size: 12px; color: var(--muted); }
.phone {
  position: absolute;
  right: -2%;
  top: -8%;
  width: 29%;
  border-radius: 28px;
  background: var(--ink);
  padding: 7px;
  transform: rotate(5deg);
  box-shadow: 10px 12px 0 rgba(21, 19, 15, 0.22);
}
.phone img { border-radius: 22px; }
.pose-card {
  position: absolute;
  left: 3%;
  bottom: -16%;
  width: 186px;
  padding: 14px 14px 16px;
  border-radius: 18px;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 8px 8px 0 var(--signal);
  transform: rotate(2deg);
}
.pose-card .label { color: var(--sun); }
.pose-card p { margin: 6px 0 0; font-size: 13px; line-height: 1.35; color: #cfc6b8; }
.pose-card svg { display: block; width: 100%; height: auto; margin-top: 8px; }

/* Animated pose figure (hero): a squat-and-jump loop drawn with joints like pose tracking. */
.fig-body { transform-box: view-box; transform-origin: 60px 150px; animation: squat 3.2s var(--ease) infinite; }
.fig-legs { animation: legs 3.2s var(--ease) infinite; }
@keyframes squat {
  0%, 18% { transform: translateY(0) scaleY(1); }
  32%, 46% { transform: translateY(18px) scaleY(0.9); }
  60% { transform: translateY(-16px) scaleY(1.02); }
  72%, 100% { transform: translateY(0) scaleY(1); }
}
.fig-bar { animation: bar 3.2s linear infinite; }
@keyframes bar { 0% { transform: translateX(70px); opacity: 0; } 15% { opacity: 1; } 55% { transform: translateX(-10px); opacity: 1; } 70%, 100% { transform: translateX(-70px); opacity: 0; } }

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(72px, 10vw, 140px) 0; }
.on-ink { background: var(--ink); color: var(--paper); }
.on-ink .muted, .on-ink .sec-lede { color: #b9b0a2; }
.sec-head { display: grid; grid-template-columns: minmax(0, 8fr) minmax(0, 4fr); gap: 32px; align-items: end; margin-bottom: clamp(36px, 5vw, 64px); }
.sec-head h2 { font-size: clamp(34px, 4.5vw, 66px); }
.sec-lede { margin: 0; font-size: 18px; color: var(--muted); max-width: 34em; }
.kicker { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--signal); }
.kicker::before { content: ""; width: 28px; height: 3px; background: currentColor; border-radius: 2px; }

/* ---------- Controller: five real moves ---------- */
.moves { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.move { position: relative; padding: 22px 20px 24px; border-radius: var(--radius); background: var(--ink-2); border: 1px solid var(--line-light); transition: transform 0.35s var(--ease), background 0.3s; }
.move:hover { transform: translateY(-4px); background: var(--ink-3); }
.move svg { width: 100%; height: auto; max-width: 150px; display: block; margin: 0 auto 18px; }
.move h3 { margin: 0; font-stretch: 125%; font-weight: 800; font-size: 22px; text-transform: uppercase; letter-spacing: -0.01em; }
.move p { margin: 8px 0 0; font-size: 15px; color: #b9b0a2; line-height: 1.45; }
.move .obst { display: inline-block; margin-top: 14px; padding: 4px 9px; border-radius: 7px; background: rgba(255, 201, 60, 0.12); color: var(--sun); font-size: 12px; font-weight: 650; letter-spacing: 0.04em; }
.moves-note { margin: 26px 0 0; font-size: 14px; color: #b9b0a2; }
.moves-note code { font-family: inherit; font-weight: 700; color: var(--paper); background: var(--ink-3); border-radius: 6px; padding: 1px 7px; }

/* ---------- How a run works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2.4vw, 32px); counter-reset: step; }
.step { counter-increment: step; }
.step-media { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--ink); aspect-ratio: 4 / 3; }
.step-media img { width: 100%; height: 100%; object-fit: cover; }
.step-media::before { content: counter(step); position: absolute; left: 14px; top: 12px; z-index: 2; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; background: var(--sun); color: var(--ink); font-weight: 850; font-stretch: 125%; font-size: 18px; }
.step h3 { margin: 20px 0 6px; font-size: 22px; font-weight: 750; letter-spacing: -0.01em; }
.step p { margin: 0; color: var(--muted); font-size: 16px; }
.needs { margin-top: clamp(32px, 4vw, 52px); display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: center; padding: 22px 26px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line); }
.needs strong { font-stretch: 125%; font-weight: 800; text-transform: uppercase; font-size: 15px; }
.needs ul { display: flex; flex-wrap: wrap; gap: 8px 26px; margin: 0; padding: 0; list-style: none; font-size: 15px; color: var(--ink-3); }
.needs li::before { content: "→ "; color: var(--signal); font-weight: 700; }

/* ---------- Worlds ---------- */
.worlds { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.world { position: relative; margin: 0; border-radius: 16px; overflow: hidden; background: var(--ink-2); grid-column: span 3; }
.world.w-lg { grid-column: span 6; }
.world img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; transition: transform 0.9s var(--ease); }
.world.w-lg img { aspect-ratio: 16 / 7.6; }
.world:hover img { transform: scale(1.05); }
.world figcaption { position: absolute; inset: auto 0 0 0; display: flex; align-items: flex-end; justify-content: space-between; gap: 10px; padding: 36px 16px 14px; background: linear-gradient(0deg, rgba(21, 19, 15, 0.82), rgba(21, 19, 15, 0)); color: #fff; }
.world-name { font-stretch: 125%; font-weight: 800; font-size: 20px; text-transform: uppercase; }
.tag { flex: none; padding: 4px 8px; border-radius: 7px; font-size: 11px; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; }
.tag-free { background: var(--sun); color: var(--ink); }
.tag-pro { background: rgba(255, 255, 255, 0.16); color: #fff; }

/* ---------- Live ---------- */
.live { position: relative; overflow: hidden; background: var(--ink); color: var(--paper); }
.live-bg { position: absolute; inset: 0; opacity: 0.38; }
.live-bg img { width: 100%; height: 100%; object-fit: cover; }
.live::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 20%, rgba(21, 19, 15, 0.5) 70%, rgba(21, 19, 15, 0.2)); }
.live .wrap { position: relative; z-index: 2; }
.live-grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: 48px; align-items: end; }
.live h2 { font-size: clamp(38px, 5vw, 74px); }
.live p { font-size: 18px; color: #d8cfc1; max-width: 32em; }
.nums { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line-light); }
.num { padding: 22px 16px 0 0; }
.num b { display: block; font-stretch: 125%; font-weight: 850; font-size: clamp(40px, 5vw, 68px); line-height: 1; color: var(--sun); }
.num span { display: block; margin-top: 8px; font-size: 14px; color: #b9b0a2; }

/* ---------- Privacy ---------- */
.trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.trust-item { padding: 26px; border-radius: var(--radius); background: var(--card); border: 1px solid var(--line); }
.trust-item h3 { margin: 14px 0 8px; font-size: 20px; font-weight: 750; letter-spacing: -0.01em; }
.trust-item p { margin: 0; color: var(--muted); font-size: 15px; }
.trust-icon { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--ink); color: var(--sun); }

/* ---------- Pricing ---------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.plan { position: relative; display: flex; flex-direction: column; padding: 30px 28px 28px; border-radius: 22px; background: var(--card); border: 1px solid var(--line); }
.plan.featured { background: var(--ink); color: var(--paper); border-color: var(--ink); box-shadow: 10px 10px 0 var(--signal); }
.plan-name { font-stretch: 125%; font-weight: 800; font-size: 18px; text-transform: uppercase; }
.plan-price { margin: 18px 0 2px; font-stretch: 125%; font-weight: 850; font-size: 54px; line-height: 1; letter-spacing: -0.02em; }
.plan-price small { font-size: 18px; font-weight: 600; font-stretch: 100%; letter-spacing: 0; }
.plan-sub { margin: 0 0 22px; font-size: 14px; color: var(--muted); }
.plan.featured .plan-sub { color: #b9b0a2; }
.plan ul { margin: 0 0 26px; padding: 0; list-style: none; display: grid; gap: 10px; font-size: 15px; }
.plan li { display: grid; grid-template-columns: 18px 1fr; gap: 10px; align-items: start; }
.plan li::before { content: ""; width: 14px; height: 8px; margin-top: 6px; border-left: 2.5px solid var(--signal); border-bottom: 2.5px solid var(--signal); transform: rotate(-45deg); }
.plan .btn { margin-top: auto; width: 100%; }
.plan-badge { position: absolute; top: -12px; right: 22px; padding: 5px 10px; border-radius: 8px; background: var(--sun); color: var(--ink); font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.plans-note { margin: 22px 0 0; font-size: 14px; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq { max-width: 880px; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; padding: 22px 0; font-size: 19px; font-weight: 680; letter-spacing: -0.01em; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; flex: none; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 50%; background: var(--paper-2); font-weight: 600; transition: transform 0.3s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); background: var(--sun); }
.faq details p { margin: -6px 0 22px; max-width: 42em; color: var(--ink-3); }

/* ---------- Final CTA ---------- */
.final { position: relative; overflow: hidden; background: var(--ink); color: var(--paper); text-align: center; }
.final-bg { position: absolute; inset: 0; }
.final-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.85; }
.final::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(21, 19, 15, 0.55), rgba(21, 19, 15, 0.25) 45%, rgba(21, 19, 15, 0.75)); }
.final .wrap { position: relative; z-index: 2; }
.final h2 { font-size: clamp(40px, 6vw, 92px); }
.final p { margin: 20px auto 30px; max-width: 30em; color: #ddd4c6; font-size: 18px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #b9b0a2; border-top: 1px solid var(--line-light); }
.footer-in { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 32px; padding: 56px 0 28px; }
.footer .logo { color: var(--paper); }
.footer h4 { margin: 0 0 12px; color: var(--paper); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.footer ul { margin: 0; padding: 0; list-style: none; display: grid; gap: 8px; font-size: 15px; }
.footer a { text-decoration: none; }
.footer a:hover { color: var(--paper); }
.footer-note { margin: 14px 0 0; max-width: 26em; font-size: 14px; }
.footer-base { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 22px 0 36px; border-top: 1px solid var(--line-light); font-size: 13px; }

/* ---------- Article pages (blog, comparison, privacy) ---------- */
.article { max-width: 760px; margin: 0 auto; padding: clamp(40px, 7vw, 90px) var(--gutter) clamp(64px, 8vw, 110px); }
.article .crumbs { font-size: 14px; color: var(--muted); margin-bottom: 26px; }
.article .crumbs a { text-decoration: none; }
.article .crumbs a:hover { color: var(--signal); }
.article h1 { font-size: clamp(32px, 4vw, 50px); font-stretch: 112%; margin-bottom: 18px; }
.article .meta { font-size: 14px; color: var(--muted); margin-bottom: 34px; }
.article h2 { font-size: 26px; font-weight: 780; letter-spacing: -0.015em; margin: 44px 0 12px; }
.article h3 { font-size: 20px; font-weight: 720; margin: 28px 0 8px; }
.article p, .article li { font-size: 18px; color: var(--ink-3); }
.article ul, .article ol { padding-left: 22px; }
.article li { margin-bottom: 8px; }
.article table { width: 100%; border-collapse: collapse; margin: 18px 0 26px; font-size: 16px; background: var(--card); border-radius: 14px; overflow: hidden; }
.article th, .article td { text-align: left; padding: 12px 14px; border-bottom: 1px solid var(--line); vertical-align: top; }
.article th { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); background: var(--paper-2); }
.article figure { margin: 28px 0; }
.article figure img { border-radius: 16px; }
.article figcaption { font-size: 14px; color: var(--muted); margin-top: 8px; }
.callout { margin: 36px 0; padding: 26px; border-radius: 20px; background: var(--ink); color: var(--paper); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px; }
.callout p { margin: 0; color: #ddd4c6; font-size: 17px; max-width: 28em; }

/* ---------- Reveal ---------- */
.js .rv { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js .rv.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .moves { grid-template-columns: repeat(3, 1fr); }
  .worlds { grid-template-columns: repeat(4, 1fr); }
  .world { grid-column: span 2; }
  .world.w-lg { grid-column: span 4; }
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { min-height: 0; margin: 20px 4% 70px; }
  .sec-head, .live-grid { grid-template-columns: 1fr; }
  .steps, .trust, .plans { grid-template-columns: 1fr; }
  .plan.featured { order: -1; }
  .footer-in { grid-template-columns: 1fr 1fr; }
  .footer-in > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav-links { display: none; position: absolute; top: 68px; left: 0; right: 0; flex-direction: column; padding: 8px var(--gutter) 16px; background: var(--paper); border-bottom: 1px solid var(--line); }
  .nav.open .nav-links { display: flex; }
  .nav-links a { padding: 14px 4px; font-size: 17px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .menu-btn { display: inline-flex; }
  .nav .btn-sm { display: none; }
  .hero-cta .btn { flex: 1 1 100%; }
  .moves { grid-template-columns: 1fr 1fr; }
  .move:last-child { grid-column: 1 / -1; }
  .worlds { grid-template-columns: 1fr 1fr; gap: 8px; }
  .world { grid-column: span 1; }
  .world.w-lg { grid-column: span 2; }
  .world-name { font-size: 15px; }
  .world figcaption { padding: 28px 10px 10px; }
  .pose-card { display: none; }
  .hero-art { margin-top: 36px; }
  .phone { width: 27%; }
  .needs { grid-template-columns: 1fr; }
  .nums { grid-template-columns: 1fr 1fr 1fr; }
  .num span { font-size: 13px; }
  /* Keep a sticky play button in reach on phones. */
  .mobile-play { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 50; transform: translateY(140%); transition: transform 0.35s var(--ease); }
  .mobile-play.show { transform: none; }
  .mobile-play .btn { width: 100%; box-shadow: 0 4px 0 var(--signal-deep), 0 12px 30px rgba(21, 19, 15, 0.35); }
}
@media (min-width: 761px) { .mobile-play { display: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: 0.01ms !important; }
  .js .rv { opacity: 1; transform: none; }
  /* Static frame: squatting under the bar. */
  .fig-body { transform: translateY(18px) scaleY(0.9); }
}

/* Narrow phones: comparison tables scroll inside their own box instead of widening the page. */
@media (max-width: 480px) {
  .article table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; font-size: 14px; }
  .article th, .article td { padding: 9px 8px; }
}
