/** Shopify CDN: Minification failed

Line 1806:16 Unexpected "2026"
Line 1809:86 Expected "}" to go with "{"

**/
/* ------------------------------------------------------------------
   ADAPTIVE FITNESS — THE ADJUSTABLE EDITION
   Industrial-athletic redesign · Brand palette #11111f / #8d0000 / #ffffff
   ------------------------------------------------------------------ */

:root {
  /* Brand palette */
  --bg: #11111f;
  --bg-cream: #ffffff;
  --bg-light: #1A1A2A;
  --paper: #1A1A2A;
  --panel: #16161F;
  --panel-2: #1F1F2E;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.22);

  /* Inks */
  --ink: #ffffff;
  --ink-soft: #C8C8D2;
  --ink-muted: #6B6B78;

  /* Accent (brand red) */
  --signal: #8d0000;
  --signal-deep: #6a0000;
  --signal-soft: rgba(141, 0, 0, 0.18);
  --cobalt: #8d0000;
  --cobalt-deep: #6a0000;
  --vermilion: #8d0000;
  --ochre: #8d0000;
  --sage: #1A1A2A;
  --wine: #8d0000;
  --forest: #11111f;
  --white: #ffffff;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Atmospheric red glow + subtle film grain */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 10% -10%, rgba(141, 0, 0, 0.22) 0%, transparent 45%),
    radial-gradient(ellipse at 88% 110%, rgba(141, 0, 0, 0.10) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.07 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: screen;
  z-index: 2;
}

main, header, footer, section { position: relative; z-index: 3; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ---------- custom white-circle cursor ---------- */
@media (hover: hover) and (pointer: fine) {
  html, body, a, button, input, textarea, select, label, [role="button"] { cursor: none !important; }

  .cursor-dot {
    position: fixed;
    top: 0; left: 0;
    width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.55), 0 0 28px rgba(255, 255, 255, 0.25);
    pointer-events: none;
    z-index: 9999;
    transform: translate3d(-100px, -100px, 0) translate(-50%, -50%);
    transition: width 0.18s ease, height 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
    mix-blend-mode: difference;
    will-change: transform;
  }
  .cursor-dot.is-hover {
    width: 44px; height: 44px;
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.7), 0 0 40px rgba(255, 255, 255, 0.35);
  }
  .cursor-dot.is-hidden { opacity: 0; }
}

/* ---------- type ---------- */
/* '.serif' is a markup hook from prior layout — now mapped to Oswald condensed */
.serif {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.eyebrow {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--signal);
}
h1, h2, h3, h4 {
  font-family: 'Oswald', 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.92;
  color: var(--ink);
  text-transform: uppercase;
}
h1 { font-size: clamp(44px, 11vw, 200px); font-weight: 700; letter-spacing: -0.005em; line-height: 0.88; }
h2 { font-size: clamp(32px, 7vw, 112px); font-weight: 700; letter-spacing: 0; }
h3 { font-size: clamp(24px, 3.6vw, 56px); font-weight: 600; }
h4 { font-size: clamp(20px, 2.2vw, 32px); line-height: 1.05; letter-spacing: 0; font-weight: 600; }

p { color: var(--ink-soft); font-size: 17px; line-height: 1.55; font-weight: 400; }

em { font-style: normal; color: var(--signal); font-weight: inherit; }

/* ---------- layout ---------- */
.wrap { max-width: 1440px; margin: 0 auto; padding: 0 32px; }
.wrap-tight { max-width: 1180px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) {
  .wrap, .wrap-tight { padding: 0 20px; }
}

/* ---------- nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 18px 0;
  background: linear-gradient(180deg, rgba(17, 17, 31, 0.55) 0%, rgba(17, 17, 31, 0.20) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
/* Once the user scrolls past the hero, the nav text needs more contrast over lighter/varied sections.
   The body bg is dark so the gradient above stays readable; no JS needed. */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 36px;
}
.nav-inner > * {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
  line-height: 1;
  height: 36px;
}
.brand-logo {
  display: block;
  height: 21px;
  width: auto;
  max-width: 165px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .brand-logo { height: 18px; }
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  align-items: center;
  height: 36px;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.nav-links li { display: inline-flex; align-items: center; height: 100%; }
.nav-links a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  line-height: 1;
  transition: color 0.2s;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--signal); }
.nav-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  height: 36px;
  line-height: 1;
}
.nav-actions > * { display: inline-flex; align-items: center; height: 100%; line-height: 1; }
.nav-actions .login-link { color: var(--ink-soft); transition: color 0.2s; }
.nav-actions .login-link:hover { color: var(--signal); }
.nav-actions {
  display: flex;
  gap: 18px;
  align-items: center;
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  height: 36px;
  line-height: 1;
}
.nav-actions > * { display: inline-flex; align-items: center; height: 100%; line-height: 1; }
.nav-actions .login-link { color: var(--ink-soft); transition: color 0.2s; }
.cart-pill:hover { background: var(--signal-deep); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .login-link { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  padding: 134px 0 80px;
  margin-top: -78px;        /* pull the section up so the image extends behind the sticky nav */
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  isolation: isolate;       /* establish a stacking context for hero-bg + overlay */
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* background-image set inline in section template via {{ 'af-hero-medball.jpg' | asset_url }} */
  background-size: cover;
  background-position: center 28%;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17,17,31,0.55) 0%, rgba(17,17,31,0.45) 35%, rgba(17,17,31,0.92) 100%),
    linear-gradient(90deg, rgba(17,17,31,0.72) 0%, rgba(17,17,31,0.25) 55%, rgba(17,17,31,0.55) 100%);
}
.hero > .wrap { position: relative; z-index: 1; }
@media (max-width: 768px) {
  .hero { padding-top: 110px; margin-top: -64px; }
  .hero-bg { background-position: center center; }
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 64px;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-meta .eyebrow { color: var(--signal); }
.hero-meta .issue {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.hero-title { margin: 0 0 40px; }
.hero-title .line { display: block; }
.hero-title .ital { font-weight: 700; font-style: normal; color: var(--signal); }
.hero-title .shift { padding-left: 14vw; }

.hero-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-top: 64px;
}
.hero-lede {
  font-family: 'Inter', sans-serif;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
  color: var(--ink-soft);
  max-width: 540px;
  font-weight: 400;
}
.hero-lede em { font-style: normal; color: var(--signal); font-weight: 700; font-family: 'Oswald', sans-serif; letter-spacing: 0.02em; }

.hero-cta-row { display: flex; gap: 16px; align-items: center; margin-top: 32px; flex-wrap: wrap; }
@media (max-width: 860px) {
  .hero-row { grid-template-columns: 1fr; gap: 32px; }
  .hero-title .shift { padding-left: 0; }
}

.hero-stage {
  margin-top: 56px;
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 21 / 9;
}
.hero-stage img { width: 100%; height: 100%; object-fit: cover; opacity: 0.95; }
.hero-stage::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
}
.hero-tags {
  position: absolute;
  bottom: 28px;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.hero-tags span { position: relative; padding-left: 16px; }
.hero-tags span::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--signal);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .hero-stage { aspect-ratio: 4 / 5; }
  .hero-tags { font-size: 11px; flex-direction: column; gap: 8px; align-items: flex-start; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.2s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--signal); color: var(--white); }
.btn-primary:hover { background: var(--signal-deep); transform: translateY(-1px); }
.btn-secondary { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-secondary:hover { background: var(--ink); color: var(--bg); }
.btn-arrow::after {
  content: '→';
  font-size: 16px;
  transition: transform 0.25s ease;
  display: inline-block;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- anchor nav (table of contents) ---------- */
.toc {
  position: sticky;
  top: 70px;
  z-index: 40;
  background: var(--bg);
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.toc-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}
.toc-list {
  list-style: none;
  display: flex;
  gap: 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
  height: 28px;
  line-height: 1;
  flex: 1 1 auto;
  min-width: 0;
}
.toc-list li { display: inline-flex; align-items: center; height: 100%; }
.toc-list a {
  display: inline-flex;
  align-items: center;
  height: 100%;
  gap: 8px;
  color: var(--ink-soft);
  white-space: nowrap;
  transition: color 0.2s;
  line-height: 1;
}
.toc-list a:hover { color: var(--signal); }
.toc-list .num {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 11px;
  color: var(--signal);
  letter-spacing: 0.12em;
}
.toc-cta {
  display: inline-flex;
  align-items: center;
  height: 28px;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--signal);
  line-height: 1;
  flex: 0 0 auto;
  white-space: nowrap;
}
.toc-cta.btn-arrow::after {
  font-size: 12px;
  line-height: 1;
  margin-left: 2px;
}
@media (max-width: 768px) {
  .toc-list { gap: 20px; padding-bottom: 4px; }
  .toc-cta { display: none; }
}

/* ---------- section pattern ---------- */
section.spread { padding: 120px 0; border-bottom: 1px solid var(--line); }
section.spread:last-of-type { border-bottom: 0; }
.spread-head { margin-bottom: 64px; }
.spread-head .eyebrow { margin-bottom: 24px; }
.spread-head h2 { margin-bottom: 20px; }
.spread-head h2 em { font-style: normal; color: var(--signal); font-weight: 700; }
.spread-head p { max-width: 580px; font-size: 19px; }

@media (max-width: 768px) {
  section.spread { padding: 72px 0; }
  .spread-head { margin-bottom: 40px; }
}

/* ---------- adjustable showcase ---------- */
.adjust { background: var(--bg); color: var(--ink); }
.adjust h2 { color: var(--ink); }
.adjust .eyebrow { color: var(--signal); }
.adjust p { color: var(--ink-soft); }

.adjust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 40px;
}
/* Compact framed cards — 16:15 aspect (1.25x taller than 4:3) so all three columns are identical */
.weight-card {
  aspect-ratio: 16 / 15;
  background: var(--panel);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 4px;
  padding: 18px 18px 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 12px;
}
.weight-card:hover { transform: translateY(-4px); border-color: var(--signal); }
.weight-card .card-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  z-index: 3;
}
.weight-card .label {
  font-family: 'Oswald', sans-serif;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-muted); font-weight: 500;
  margin: 0;
}
.weight-card .lb {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.weight-card .lb-unit {
  font-size: 0.42em; vertical-align: top;
  font-style: normal; font-weight: 500;
  margin-left: 3px; color: var(--signal); letter-spacing: 0.08em;
}
.ball-frame {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.22);
  overflow: hidden;
  z-index: 1;
  min-width: 0;
  min-height: 0;
}
.ball-img-wrap {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  will-change: transform;
}
.ball-img-wrap img {
  width: 104%;
  height: 104%;
  object-fit: contain;
  object-position: center;
  will-change: transform;
}
.weight-card[data-tone="ochre"] {
  background: var(--white);
  border-color: var(--white);
  color: var(--bg);
}
.weight-card[data-tone="ochre"] .lb { color: var(--bg); }
.weight-card[data-tone="ochre"] .label { color: var(--signal); }
.weight-card[data-tone="ochre"] .lb-unit { color: var(--signal); }
.weight-card[data-tone="ochre"] .ball-frame {
  border-color: rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.04);
}
.weight-card[data-tone="ochre"] .ball-img-wrap img {
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.18));
  mix-blend-mode: multiply;
}
.weight-card[data-tone="vermilion"] {
  background: var(--signal);
  border-color: var(--signal);
  color: var(--white);
}
.weight-card[data-tone="vermilion"] .lb { color: var(--white); }
.weight-card[data-tone="vermilion"] .label { color: var(--white); opacity: 0.85; }
.weight-card[data-tone="vermilion"] .lb-unit { color: var(--white); opacity: 0.7; }
.weight-card[data-tone="vermilion"] .ball-frame {
  border-color: rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.18);
}
.weight-card[data-tone="vermilion"] .ball-img-wrap img {
  filter: drop-shadow(0 12px 24px rgba(0,0,0,0.35));
}

@media (max-width: 768px) {
  .adjust-grid { grid-template-columns: 1fr; }
  .weight-card { aspect-ratio: 16 / 15; padding: 16px; }
  .weight-card .lb { font-size: 26px; }
}

/* ---------- product showcase ---------- */
.product-spread {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 80px;
  align-items: stretch;
}
.product-spread > div:first-child { display: flex; flex-direction: column; }
.product-stage {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  aspect-ratio: 1;
  overflow: hidden;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-stage img { width: 100%; height: 100%; object-fit: contain; }
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.product-thumb {
  aspect-ratio: 1;
  background: var(--panel);
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
  border: 1.5px solid var(--line);
  transition: border-color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-thumb:hover { border-color: var(--ink-muted); }
.product-thumb.active { border-color: var(--signal); }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; }

.product-info { padding-top: 8px; display: flex; flex-direction: column; height: 100%; }
.product-info .eyebrow { color: var(--signal); margin-bottom: 16px; }
.product-info h2 { margin-bottom: 18px; font-size: clamp(40px, 5.5vw, 72px); }
.product-info h2 em { font-style: normal; color: var(--signal); font-weight: 700; }
.product-price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 20px; }
.product-price .big {
  font-family: 'Oswald', sans-serif;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.product-price .vs {
  font-size: 12px;
  color: var(--ink-muted);
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.product-info ul.specs {
  list-style: none;
  margin: 24px 0;
  border-top: 1px solid var(--line);
}
.product-info ul.specs li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.product-info ul.specs li strong { color: var(--ink); font-weight: 700; }
.qty-row {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  overflow: hidden;
}
.qty button { padding: 14px 18px; font-size: 18px; transition: background 0.2s; color: var(--ink); }
.qty button:hover { background: var(--signal); color: var(--white); }
.qty input {
  width: 50px;
  text-align: center;
  border: 0;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  background: transparent;
  color: var(--ink);
}
.qty input:focus { outline: none; }

.cta-stack { display: flex; flex-direction: row; gap: 10px; margin-top: auto; }
.cta-stack .btn { justify-content: center; flex: 1; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 920px) {
  .product-spread { grid-template-columns: 1fr; gap: 32px; }
  /* Mobile: put the Chapter II header ABOVE the gallery */
  .product-spread > div:first-child { order: 2; }
  .product-info { order: 1; }
  /* Tighten the title block since it now leads the section */
  .product-info { padding-top: 0; }
  .product-info h2 { margin-bottom: 14px; }
}

/* ---------- includes ---------- */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.include-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: border-color 0.3s ease;
}
.include-card:hover { border-color: var(--signal); }
.include-card .img-frame {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 24px 0;
}
.include-card img { max-height: 240px; width: auto; object-fit: contain; }
.include-card .num {
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--signal);
  margin-bottom: 12px;
  font-weight: 600;
}
.include-card h3 { font-size: 32px; margin-bottom: 12px; }
.include-card p { font-size: 15px; color: var(--ink-soft); margin: 0; }

@media (max-width: 768px) {
  .includes-grid { grid-template-columns: 1fr; }
}

/* ---------- value tiles ---------- */
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.tile {
  border-radius: 6px;
  padding: 48px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease;
  border: 1px solid var(--line);
}
.tile-head { margin-bottom: 12px; }
.tile h3 { margin-bottom: 0; }
.tile:hover { transform: translateY(-4px); }
.tile-head { display: flex; justify-content: space-between; align-items: start; }
.tile h3 { margin-bottom: 16px; font-size: clamp(32px, 3.8vw, 52px); }
.tile h3 em { font-style: normal; color: var(--signal); font-weight: 700; }
.tile p { font-size: 16px; line-height: 1.5; max-width: 360px; }
.tile-num {
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.tile-img { margin-top: 24px; flex: 1; display: flex; align-items: flex-end; }
.tile-img img { max-width: 100%; max-height: 260px; }

.tile-vermilion { background: var(--signal); border-color: var(--signal); color: var(--white); }
.tile-vermilion h3, .tile-vermilion p, .tile-vermilion .tile-num { color: var(--white); }
.tile-vermilion h3 em { color: var(--white); }
.tile-vermilion p { opacity: 0.92; }
.tile-vermilion .tile-num { opacity: 0.7; }

.tile-sage { background: var(--panel); color: var(--ink); }
.tile-sage h3, .tile-sage p, .tile-sage .tile-num { color: var(--ink); }
.tile-sage h3 em, .tile-sage .tile-num { color: var(--signal); }

.tile-wine { background: var(--bg-light); color: var(--ink); }
.tile-wine h3, .tile-wine p, .tile-wine .tile-num { color: var(--ink); }
.tile-wine h3 em, .tile-wine .tile-num { color: var(--signal); }

.tile-ochre { background: var(--white); border-color: var(--white); color: var(--bg); }
.tile-ochre h3, .tile-ochre .tile-num { color: var(--bg); }
.tile-ochre h3 em, .tile-ochre .tile-num { color: var(--signal); }
.tile-ochre p { color: #4a4a55; }

@media (max-width: 768px) {
  .tiles-grid { grid-template-columns: 1fr; }
  .tile { padding: 32px; min-height: 200px; }
}

/* ---------- full body ---------- */
.fullbody {
  background: var(--white);
  color: var(--bg);
}
.fullbody h2 { color: var(--bg); }
.fullbody .eyebrow { color: var(--signal); }
.fullbody p { color: #4a4a55; }
.fullbody .btn-secondary { border-color: var(--bg); color: var(--bg); }
.fullbody .btn-secondary:hover { background: var(--bg); color: var(--white); }
.fullbody h2 em { font-style: normal; color: var(--signal); font-weight: 700; }
.fullbody-image {
  margin-top: 40px;
  background: var(--bg);
  border: 1px solid rgba(17, 17, 31, 0.08);
  border-radius: 6px;
  padding: 48px;
  display: flex;
  justify-content: center;
}
.fullbody-image img { max-width: 100%; height: auto; }
.fullbody-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(17, 17, 31, 0.18);
}
.stat .big {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 700;
  letter-spacing: -0.005em;
  line-height: 1;
  color: var(--bg);
  margin-bottom: 8px;
}
.stat .big em { font-style: normal; color: var(--signal); font-weight: 700; }
.stat p {
  font-size: 12px;
  line-height: 1.4;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: #4a4a55;
}

@media (max-width: 768px) {
  .fullbody-stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .fullbody-image { padding: 24px; }
}

/* ---------- testimonial pull-quote ---------- */
.pullquote {
  text-align: center;
  padding: 140px 0;
  background: var(--bg);
}
.pullquote blockquote {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: clamp(32px, 4.4vw, 64px);
  line-height: 1.12;
  letter-spacing: 0;
  color: var(--ink);
  max-width: 1100px;
  margin: 0 auto;
  text-transform: uppercase;
}
.pullquote blockquote em { font-style: normal; color: var(--signal); font-weight: 700; }
.pullquote cite {
  display: block;
  margin-top: 40px;
  font-family: 'Oswald', sans-serif;
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
@media (max-width: 768px) {
  .pullquote { padding: 80px 0; }
}

/* ---------- origin story ---------- */
.origin-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.origin-video {
  aspect-ratio: 1280/548;
  border-radius: 6px;
  background: #000;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.origin-video iframe,
.origin-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  object-fit: contain;
  background: #000;
}
.origin-video .origin-video__thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease, transform 0.6s ease;
}
.origin-video:hover .origin-video__thumb { transform: scale(1.03); }
.origin-video .play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 92px; height: 92px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: transform 0.3s ease;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
.origin-video:hover .play-btn { transform: translate(-50%, -50%) scale(1.1); }
.origin-video.is-playing .origin-video__thumb,
.origin-video.is-playing .play-btn,
.origin-video.is-playing .video-label { display: none; }
.origin-video .play-btn::before {
  content: '';
  width: 0; height: 0;
  border-left: 22px solid var(--bg);
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  margin-left: 6px;
}
.origin-video .video-label {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}

@media (max-width: 860px) {
  .origin-row { grid-template-columns: 1fr; gap: 32px; }
  .origin-video { aspect-ratio: 16/10; }
}

/* ---------- FAQ ---------- */
.faq {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
}
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  padding: 28px 0;
  font-family: 'Oswald', sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--signal); }
.faq-item summary::after {
  content: '+';
  font-family: 'Oswald', sans-serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--ink);
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.2s;
  display: inline-block;
}
.faq-item[open] summary::after { content: '–'; color: var(--signal); }
.faq-item p { padding: 0 0 28px; font-size: 16px; max-width: 620px; }
.faq-side h2 em { font-style: normal; font-weight: 700; color: var(--signal); }
.faq-side p { margin-top: 24px; max-width: 380px; }

@media (max-width: 860px) {
  .faq { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- final CTA ---------- */
.final-cta {
  background: var(--signal);
  color: var(--white);
  padding: 140px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.12 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n2)'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
}
.final-cta > .wrap-tight { position: relative; z-index: 2; }
.final-cta h2 {
  color: var(--white);
  font-size: clamp(40px, 9vw, 160px);
  margin-bottom: 32px;
}
.final-cta h2 em { font-style: normal; font-weight: 700; color: var(--bg); }
.final-cta p {
  color: var(--white);
  opacity: 0.92;
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 48px;
}
.final-cta .btn-primary {
  background: var(--white);
  color: var(--signal);
  font-size: 15px;
  padding: 22px 40px;
}
.final-cta .btn-primary:hover { background: var(--bg); color: var(--white); transform: translateY(-1px); }

@media (max-width: 768px) {
  .final-cta { padding: 80px 0; }
}

/* ---------- footer ---------- */
footer.site {
  background: var(--bg);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 72px;
}
.footer-brand h3 {
  font-size: clamp(28px, 4.4vw, 64px);
  margin-bottom: 16px;
  color: var(--ink);
}
.footer-brand h3 em { font-style: normal; color: var(--signal); font-weight: 700; }
.footer-brand p { max-width: 320px; font-size: 14px; }
.footer-col { text-align: left; }
.footer-col h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 20px;
  padding: 0;
  text-align: left;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px;margin: 0;padding: 0; text-align: left; }
.footer-col a {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.footer-col li { list-style: none; margin: 0; padding: 0; text-align: left; }
.footer-col a:hover { color: var(--signal); }

.newsletter {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 8px;
  max-width: 340px;
  margin-top: 16px;
}
.newsletter input {
  flex: 1;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  padding: 8px 0;
}
.newsletter input:focus { outline: none; }
.newsletter input::placeholder { color: var(--ink-muted); }
.newsletter button { font-size: 16px; font-weight: 700; color: var(--signal); }
.newsletter button:hover { color: var(--ink); }

.footer-base {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-muted);
  font-weight: 500;
}
.footer-base .socials { display: flex; gap: 14px; }
.footer-base .socials a {
  width: 36px; height: 36px;
  border-radius: 2px;
  border: 1px solid var(--line-strong);
  color: var(--ink-soft);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.footer-base .socials a:hover {
  background: var(--signal);
  color: var(--white);
  border-color: var(--signal);
}
.footer-base .socials svg { width: 16px; height: 16px; }

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-base { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- reveals ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ---------- marquee strip ---------- */
.marquee {
  background: var(--signal);
  color: var(--white);
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid var(--signal-deep);
  border-bottom: 1px solid var(--signal-deep);
}
.marquee-track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: scroll 36s linear infinite;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 40px; }
.marquee-track span::after {
  content: '/';
  font-style: normal;
  color: var(--white);
  opacity: 0.55;
  font-size: 18px;
  font-weight: 400;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* ============================================================
   PARALLAX SECTIONS — added 2026-05-24
   - .parallax-band  : Editions-style fixed-bg ribbon with overlay
   - .parallax-zoom  : scrubbed zoom-in section (GSAP)
   - .cutout-float   : cutout image floating with scroll-linked translate
   All images feather into the page bg with radial masks so the dark
   gym backdrops bleed naturally into the #11111f site palette.
   ============================================================ */

/* --- 1. Editions-style ribbon (image stays put, content scrolls over) --- */
.parallax-band {
  position: relative;
  min-height: 90vh;
  display: grid;
  place-items: center;
  padding: 12vh 6vw;
  overflow: hidden;
  isolation: isolate;
}
.parallax-band .pb-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: var(--pb-pos, center);
  background-attachment: fixed;          /* the "stays in place" magic */
  z-index: -2;
}
/* feather edges into the dark page bg so the image doesn't look pasted on */
.parallax-band .pb-veil {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at center, rgba(17,17,31,0.35) 0%, rgba(17,17,31,0.85) 80%, var(--bg) 100%),
    linear-gradient(to bottom, var(--bg) 0%, transparent 12%, transparent 88%, var(--bg) 100%);
}
.parallax-band .pb-content {
  max-width: 760px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.parallax-band .pb-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-soft); opacity: 0.85;
  padding: 6px 14px; border: 1px solid var(--line-strong);
  margin-bottom: 24px;
}
.parallax-band h2 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700; text-transform: uppercase;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.05; letter-spacing: -0.01em;
  color: var(--ink);
  text-shadow: 0 4px 30px rgba(0,0,0,0.7);
}
.parallax-band h2 em {
  font-style: normal;
  color: var(--signal);
  font-family: 'Oswald', sans-serif;
}
.parallax-band p.pb-lede {
  margin-top: 20px;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  color: var(--ink-soft);
  line-height: 1.65;
  max-width: 56ch; margin-left: auto; margin-right: auto;
  text-shadow: 0 2px 16px rgba(0,0,0,0.6);
}
/* Touch devices + small viewports: background-attachment: fixed is broken
   on iOS Safari and most touch browsers, so we drive a transform-based
   parallax from JS instead. Trigger on EITHER small width OR touch input
   so iPads (768px portrait) and large phones in landscape also get the
   JS path — not just narrow phones. Stretch the .pb-bg beyond the section
   so the drift doesn't expose a gap, and let each band pick its mobile
   focal point via --pb-pos-mobile. */
@media (max-width: 720px), (pointer: coarse) {
  .parallax-band .pb-bg {
    background-attachment: scroll;
    background-position: var(--pb-pos-mobile, center);
    /* extra room above + below so JS translate (±~60px) can drift cleanly */
    top: -15%;
    bottom: auto;
    height: 130%;
    will-change: transform;
  }
  .parallax-band { min-height: 70vh; padding: 8vh 6vw; }
}

/* --- 2. Scrubbed zoom (image scales 1x → 1.6x as you scroll through) ---
   Section is intentionally taller than the viewport so the sticky stage
   has real scroll distance to scrub through. Without this, total = 0
   and the zoom snaps instead of easing. */
.parallax-zoom {
  position: relative;
  height: 115vh;
  background: var(--bg);
  overflow: hidden;
}
.parallax-zoom .pz-stage {
  position: sticky; top: 0; height: 100vh;
  overflow: hidden;
}
.parallax-zoom .pz-photo {
  position: absolute; inset: 0; overflow: hidden;
  background: var(--bg);
  --pz-y: 0%;
  --pz-s: 1;
}
.parallax-zoom .pz-photo::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--pz-img);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: var(--pz-pos, center 10%);
  transform-origin: center 50%;
  transform: translate3d(0, var(--pz-y, 0%), 0) scale(var(--pz-s, 1));
  will-change: transform;
}
/* Mobile: each parallax-zoom can override its focal point via --pz-pos-mobile.
   Default keeps the subject horizontally centered on narrow viewports. */
@media (max-width: 768px) {
  .parallax-zoom .pz-photo::before {
    background-position: var(--pz-pos-mobile, center center);
  }
}
.parallax-zoom .pz-scrim {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(17,17,31,0.1) 0%, rgba(17,17,31,0.6) 65%, var(--bg) 100%);
  pointer-events: none; will-change: opacity;
}
.parallax-zoom .pz-content {
  position: absolute; inset: 0;
  display: grid; place-items: center; text-align: center;
  padding: 0 6vw; z-index: 2;
}
.parallax-zoom blockquote {
  font-family: 'Oswald', sans-serif;
  font-weight: 600; text-transform: uppercase;
  font-size: clamp(1.6rem, 4vw, 3.4rem);
  line-height: 1.15; letter-spacing: -0.01em;
  color: var(--ink); max-width: 22ch;
  text-shadow: 0 4px 30px rgba(0,0,0,0.7);
}
.parallax-zoom blockquote em {
  font-style: normal; color: var(--signal);
}
.parallax-zoom cite {
  display: block; margin-top: 22px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-soft); font-style: normal;
}
/* Mobile: pull-quote needs to read bigger and stay centered */
@media (max-width: 768px) {
  .parallax-zoom blockquote {
    font-size: clamp(1.5rem, 6.5vw, 2.2rem);
    line-height: 1.2;
    max-width: 20ch;
    margin: 0 auto;
    text-align: center;
  }
  .parallax-zoom cite { margin-top: 28px; font-size: 11px; }
}

/* --- 3. Floating cutout in product section (parallax-translated) --- */
.cutout-float {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.95;
  will-change: transform;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5));
}
.cutout-float img { display: block; width: 100%; height: auto; }
/* desktop: float on the right side, peeking out behind product info */
.cutout-float.product-float {
  right: -6%; bottom: -8%;
  width: 38%;
  max-width: 520px;
}
@media (max-width: 960px) { .cutout-float.product-float { display: none; } }
/* larger floating cutout for the Includes section */
.cutout-float.includes-float {
  right: -4%; top: 0;
  width: 56%;
  max-width: 760px;
}
@media (max-width: 960px) { .cutout-float.includes-float { display: none; } }

/* ============================================================
   CHAPTER V · IN MOTION — scroll-driven exercise tour (2026-05-25)
   Replaces the original muscle-group spread. Five photos cross-fade
   as you scroll; text in the left column, photo column on the right.
   Library deps (GSAP + ScrollTrigger) loaded at bottom of body.
   ============================================================ */
.fullbody-motion {
  position: relative;
  height: 600vh;
  background: var(--bg);
  /* Height of the two-row sticky stack at the top of the page
     (.nav top:0 ~57px + .toc top:70px ~44px ≈ 114px, plus breathing room).
     Used to push the pinned stage content below the header overlay. */
  --site-header-h: 124px;
}
.fullbody-motion .stage {
  position: sticky; top: 0;
  height: 100vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  /* row 1: copy at top, row 2: flexible breathing space, rows 3 & 4: phase
     number + phase label pair at the bottom of the left column */
  grid-template-rows: auto 1fr auto auto;
  column-gap: 5vw;
  /* Top padding clears the sticky nav + chapter rail overlay; bottom leaves
     room for the progress bar. */
  padding: calc(var(--site-header-h) + 2vh) 6vw 11vh;
}
.fullbody-motion .grid-layer {
  position: absolute; inset: -10% -5%;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  will-change: transform; opacity: 0.6; z-index: 0;
}
.fullbody-motion .glow-layer {
  position: absolute; inset: -20% -10%;
  background:
    radial-gradient(circle at 30% 40%, rgba(141, 0, 0, 0.35) 0%, transparent 45%),
    radial-gradient(circle at 75% 70%, rgba(141, 0, 0, 0.20) 0%, transparent 50%);
  will-change: transform; filter: blur(40px); z-index: 0;
}
.fullbody-motion .frames {
  grid-column: 2; grid-row: 1 / -1;
  position: relative;
  z-index: 1; min-height: 0;
}
.fullbody-motion .frame {
  /* inset:0 + margin:auto centers the absolute frame within .frames —
     place-items:center on the parent doesn't affect absolute children. */
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%; max-width: 520px;
  height: auto;
  aspect-ratio: 3 / 4;
  max-height: min(72vh, 680px);
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  will-change: opacity, transform;
  border-radius: 4px; overflow: hidden;
  box-shadow:
    0 30px 80px rgba(0,0,0,0.55),
    0 0 0 1px var(--line-strong),
    0 0 60px rgba(141, 0, 0, 0.10);
}
.fullbody-motion .frame img {
  width: 100%; height: 100%;
  /* contain (not cover) so the full subject + ball stays visible — no side-cropping */
  object-fit: contain; object-position: center; display: block;
  background: #0a0a0a;
}
.fullbody-motion .phase-number {
  grid-column: 1; grid-row: 3;     /* paired with phase-label at bottom */
  align-self: end;
  margin-bottom: 12px;              /* small gap before the phase label */
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: clamp(3.6rem, 7vw, 6.5rem);
  line-height: 0.85; letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255,255,255,0.18);
  pointer-events: none; will-change: transform;
  z-index: 2;
}
.fullbody-motion .phase-number em {
  font-style: normal; color: var(--signal);
  -webkit-text-stroke: 0;
}
.fullbody-motion .copy {
  grid-column: 1; grid-row: 1;
  text-align: left; z-index: 3;
  max-width: 460px;
}
.fullbody-motion .copy .eyebrow {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--signal);
  margin-bottom: 24px;
}
.fullbody-motion .copy h2 {
  font-family: 'Oswald', 'Inter', sans-serif; font-weight: 700;
  font-size: clamp(2.4rem, 4.8vw, 4.2rem);
  letter-spacing: 0; line-height: 0.92; text-transform: uppercase;
  margin-bottom: 20px;
}
.fullbody-motion .copy h2 em {
  font-style: normal; font-weight: 700; color: var(--signal);
}
.fullbody-motion .copy p {
  font-size: 19px; color: var(--ink);
  line-height: 1.55; max-width: 44ch;
}
.fullbody-motion .phase-label {
  grid-column: 1; grid-row: 4;
  align-self: end; z-index: 3;
}
.fullbody-motion .phase-label .step {
  font-family: 'Oswald', sans-serif; font-size: 0.78rem;
  letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 10px;
}
.fullbody-motion .phase-label .step b { color: var(--signal); font-weight: 600; }
.fullbody-motion .phase-label .name {
  font-family: 'Oswald', sans-serif; font-weight: 500;
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -0.01em; line-height: 1;
}
.fullbody-motion .phase-label .name .word { display: inline-block; overflow: hidden; }
.fullbody-motion .phase-label .name .word > span {
  display: inline-block; will-change: transform;
}
.fullbody-motion .progress {
  position: absolute;
  left: 6vw; right: 6vw; bottom: 5vh;
  display: flex; align-items: center; gap: 16px;
  z-index: 3;
}
.fullbody-motion .progress .label {
  font-size: 0.7rem; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--ink-muted); white-space: nowrap;
}
.fullbody-motion .progress .track {
  position: relative;
  flex: 1; height: 2px;
  background: rgba(255,255,255,0.12);
  overflow: hidden;
}
.fullbody-motion .progress .track i {
  display: block; height: 100%; width: 100%;
  background: var(--signal);
  transform: scaleX(0); transform-origin: left;
  will-change: transform;
}
.fullbody-motion .progress .pct {
  font-family: 'Oswald', sans-serif; font-size: 0.85rem;
  letter-spacing: 0.08em; color: var(--ink);
  font-variant-numeric: tabular-nums;
  min-width: 40px; text-align: right;
}
.fullbody-motion .progress .tick {
  width: 1px; height: 8px;
  background: rgba(255,255,255,0.25);
  position: absolute; top: -3px;
}
.fullbody-motion .motion-cta {
  position: absolute;
  left: 50%; bottom: 14vh;
  transform: translateX(-50%);
  z-index: 4; opacity: 0;
  will-change: opacity, transform;
}
.fullbody-motion .motion-cta a {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  background: var(--signal); color: var(--ink);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem; letter-spacing: 0.18em;
  text-transform: uppercase; text-decoration: none;
  border-radius: 2px; transition: background 0.2s;
}
.fullbody-motion .motion-cta a:hover { background: #a30000; }
.fullbody-motion .motion-cta a::after {
  content: '→'; font-family: 'Inter', sans-serif; font-size: 1.1rem;
}
@media (max-width: 820px) {
  .fullbody-motion {
    height: 500vh;
    --site-header-h: 88px;
  }
  .fullbody-motion .stage {
    grid-template-columns: 1fr;
    /* Three rows on mobile: copy → photo (flex) → label.
       Bottom padding is intentionally generous so the absolutely-positioned
       progress bar has clear separation from the phase label above it. */
    grid-template-rows: auto 1fr auto;
    padding: calc(var(--site-header-h) + 1vh) 5vw 13vh;
    column-gap: 0; row-gap: 2vh;
  }
  .fullbody-motion .copy {
    grid-column: 1; grid-row: 1;
    text-align: center; max-width: none;
  }
  .fullbody-motion .copy .eyebrow {
    font-size: 0.6rem; padding: 4px 10px; margin-bottom: 9px;
    letter-spacing: 0.22em;
  }
  .fullbody-motion .copy h2 {
    font-size: clamp(1.7rem, 6.4vw, 2.4rem);
    margin-bottom: 8px;
  }
  .fullbody-motion .copy p {
    font-size: 0.8rem; line-height: 1.45;
    margin-left: auto; margin-right: auto;
    max-width: 32ch;
  }
  .fullbody-motion .frames {
    grid-column: 1; grid-row: 2;
    min-height: 36vh;
  }
  .fullbody-motion .frame {
    /* inset:0; margin:auto inherited from base */
    max-width: 76vw; max-height: 40vh;
  }
  .fullbody-motion .phase-number {
    display: none;
  }
  .fullbody-motion .phase-label {
    grid-column: 1; grid-row: 3;
    text-align: center;
    margin-top: 0.5vh;
    margin-bottom: 1vh;     /* extra cushion above the progress bar */
  }
  .fullbody-motion .phase-label .step {
    font-size: 0.58rem; letter-spacing: 0.26em; margin-bottom: 4px;
  }
  .fullbody-motion .phase-label .name {
    font-size: clamp(1.25rem, 5.2vw, 1.8rem);
  }
  .fullbody-motion .progress {
    left: 5vw; right: 5vw; bottom: 4vh; gap: 10px;
  }
  .fullbody-motion .progress .label { font-size: 0.58rem; letter-spacing: 0.2em; }
  .fullbody-motion .progress .pct { font-size: 0.7rem; min-width: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  .fullbody-motion { height: auto; }
  .fullbody-motion .stage { position: relative; height: auto; padding: 6vh 0; display: block; }
  .fullbody-motion .frames { position: relative; display: grid; gap: 24px; padding: 24px; }
  .fullbody-motion .frame { position: relative; opacity: 1; transform: none; }
}


/* === 2026-05-25 LAYOUT FIXES === */
.nav-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px;}
.brand { justify-self: start; }
.nav-links { justify-self: center; }
.nav-actions { justify-self: end; }

.toc-inner { justify-content: flex-start; gap: 32px;}
.toc-inner { justify-content: flex-start !important; gap: 32px !important; }
.toc-list { flex: 0 0 auto !important; }

.fullbody-motion .stage { background: var(--bg) !important; z-index: 5 !important; }

/* Chapter ii · The Ball — compact section + equal columns */
#product .product-info { padding-top: 0; }
#product .product-info .eyebrow       { margin-bottom: 6px; }
#product .product-info h2.serif       { margin-bottom: 8px; line-height: 1; }
#product .product-info .product-price { margin-bottom: 10px; }
#product .product-info > p            { margin-bottom: 10px; line-height: 1.45; }
#product .product-info ul.specs       { margin: 8px 0; }
#product .product-info ul.specs li    { padding: 6px 0; }
#product .product-info .qty-row       { margin-bottom: 10px; gap: 12px; }
#product .product-info .qty button    { padding: 8px 14px; }
#product .product-info .qty input     { padding: 6px 8px; height: auto; }
#product .product-info .cta-stack            { gap: 8px; }
#product .product-info .cta-stack > a,
#product .product-info .cta-stack > button   { padding-top: 12px; padding-bottom: 12px; }

/* Mobile additions — 2026-05-25 */
@media (max-width: 480px) {
  .toc { display: none; }
  }
  @media (max-width: 768px) {
    .btn { padding: 14px 22px; font-size: 13px; min-height: 44px; }
      .hero-cta-row .btn,
        .cta-stack .btn,
          .final-cta .btn-primary { width: 100%; justify-content: center; }
            .final-cta .btn-primary { padding: 18px 28px; }
            }
            @media (max-width: 480px) {
              .fullbody-stats { grid-template-columns: 1fr; gap: 20px; }
              }

              /* Mobile additions 2 — 2026-05-26 */
              @media (max-width: 820px) {
              .fullbody-motion .copy { text-align: left; }
              .fullbody-motion .copy .eyebrow { font-size: 12px; padding: 0; margin-bottom: 24px; letter-spacing: 0.28em; font-weight: 600; }
              .fullbody-motion .copy h2 { font-size: clamp(32px, 7vw, 112px); margin-bottom: 20px; }
              .fullbody-motion .copy p { font-size: 17px; line-height: 1.55; margin-left: 0; margin-right: 0; max-width: 44ch; }
              }
              @media (max-width: 480px) {
              .product-info ul.specs li { flex-direction: column; align-items: flex-start; gap: 4px; }
              .product-info ul.specs li strong { font-size: 14px; }
              }

              @media (max-width: 480px) {
              .product-info h2 { font-size: clamp(28px, 7vw, 48px); }
              .product-price { flex-wrap: wrap; gap: 6px 14px; }
              .product-price .big { font-size: 48px; }
              }

              @media (max-width: 480px) {
              .cta-stack { flex-direction: column; }
              .cta-stack .btn { flex: none; }
              .product-thumbs { gap: 6px; }
              .product-thumb { padding: 6px; }
              .product-stage { padding: 20px; }
              }

              /* Mobile additions 4 — 2026-05-26 (pull-quote width + cite split + thumbs scroll) */
              .parallax-zoom cite { line-height: 1.6; }
              .parallax-zoom cite .cite-name { display: block; color: var(--ink); }
              .parallax-zoom cite .cite-org  { display: block; color: var(--ink-soft); opacity: 0.75; font-weight: 500; }
              @media (max-width: 768px) {
              .parallax-zoom blockquote { font-size: clamp(1.2rem, 5.2vw, 1.7rem); line-height: 1.25; max-width: 90vw; }
              }
              @media (max-width: 480px) {
              .product-thumbs { display: flex; grid-template-columns: none; gap: 8px; overflow-x: auto; padding-bottom: 6px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: thin; }
              .product-thumb { flex: 0 0 80px; width: 80px; padding: 6px; scroll-snap-align: start; }
              }

              @media (max-width: 768px) {
              .parallax-zoom { height: 100vh; margin-bottom: 0; }
              .parallax-zoom blockquote { font-size: clamp(1.5rem, 6vw, 2.2rem); }
              }

              /* Mobile additions 5 — 2026-05-26 (nav alignment + mobile menu) */
              .nav-toggle span { transition: transform 0.25s ease, opacity 0.2s ease; }
              @media (max-width: 860px) {
              .nav-actions { margin-left: auto; gap: 12px; }
              .nav-toggle { cursor: pointer; }
              body.nav-open .nav-links { display: flex; flex-direction: column; position: fixed; top: 57px; left: 0; right: 0; background: var(--bg); padding: 24px 20px 32px; gap: 20px; border-bottom: 1px solid var(--line); z-index: 45; font-size: 18px; align-items: flex-start; }
              body.nav-open .nav-links a { color: var(--ink); display: block; padding: 8px 0; width: 100%; }
              body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
              body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
              body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
              }

              /* Mobile additions 6 — 2026-05-26 (override grid nav-inner so nav-actions goes flush right) */
              @media (max-width: 860px) {
              .nav-inner { display: flex; grid-template-columns: none; justify-content: space-between; align-items: center; }
              } 2026-05-26 */
              @media (max-width: 860px) {
              body.nav-open .nav-links { gap: 12px; }
              body.nav-open .nav-links a { background: rgba(255,255,255,0.06); border: