/* ============================================================
   FITNESS AREA — Components
   Consumes only --sc-* semantic tokens from tokens.css. Nothing
   here should hardcode a color/font — that would defeat the
   point of the token layer. ============================================================ */

/* ── Base page ──────────────────────────────────────────────── */
body.showcase-fitness {
  background: var(--sc-color-bg);
  color: var(--sc-color-text-primary);
  font-family: var(--sc-font-body);
  font-size: var(--sc-body-md-size);
  line-height: var(--sc-body-md-lh);
}

.container {
  max-width: var(--sc-container-max);
  margin-inline: auto;
  padding-inline: var(--sc-container-pad);
}

.section {
  padding-block: var(--sc-space-section);
}

@media (max-width: 768px) {
  .section { padding-block: var(--sc-space-2xl); }
}

h1, h2, h3 { font-family: var(--sc-font-display); }

/* ── Top bar ────────────────────────────────────────────────────
   Not the root site's nav (deliberately — see design-system-
   architecture.md) but built to feel like a real product's chrome,
   not a "back link + label" prototype bar: brand mark + breadcrumb
   on the left, an in-page quick-nav in the middle, a persistent
   CTA on the right, all sitting on a proper glass surface with a
   hairline accent edge instead of a flat gray border. ──────────── */
.fit-topbar {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  padding-block: var(--sc-space-sm);
  background: color-mix(in srgb, var(--sc-color-bg) 82%, transparent);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--sc-color-border);
  box-shadow: 0 1px 0 var(--sc-color-accent-subtle);
}

.fit-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sc-space-lg);
}

.fit-topbar__left {
  display: flex;
  align-items: center;
  gap: var(--sc-space-md);
  min-width: 0;
}

.fit-topbar__mark {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 7px;
  opacity: 0.9;
}
.fit-topbar__mark img { width: 100%; height: 100%; display: block; }

.fit-topbar__divider {
  width: 1px;
  height: 1.1rem;
  background: var(--sc-color-border-strong);
  flex-shrink: 0;
}

.fit-topbar__crumb {
  display: flex;
  align-items: baseline;
  gap: 0.4em;
  min-width: 0;
  font-family: var(--sc-font-label);
  font-size: var(--sc-label-size);
  letter-spacing: var(--sc-label-ls);
  text-transform: var(--sc-label-tt);
}
/* text-overflow: ellipsis on the flex container above is a no-op — it only
   truncates a single text node, not multiple flex children, so it was
   silently doing nothing and the browser hard-clipped mid-word instead.
   Put the ellipsis on the "Showcase" link specifically (least essential,
   shrinks first) and pin "Fitness" — the current page — to never clip. */
.fit-topbar__crumb a {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--sc-color-text-secondary);
  transition: color var(--duration-fast) ease;
}
.fit-topbar__crumb a:hover { color: var(--sc-color-text-primary); }
.fit-topbar__crumb span[aria-hidden] { color: var(--sc-color-text-secondary); opacity: 0.5; flex-shrink: 0; }
.fit-topbar__crumb strong { color: var(--sc-color-accent); font-weight: var(--sc-label-weight); flex-shrink: 0; white-space: nowrap; }

.fit-topbar__quicknav {
  display: flex;
  align-items: center;
  gap: var(--sc-space-lg);
}
.fit-topbar__quicknav a {
  font-family: var(--sc-font-label);
  font-size: var(--sc-label-size);
  letter-spacing: var(--sc-label-ls);
  color: var(--sc-color-text-secondary);
  white-space: nowrap;
  transition: color var(--duration-fast) ease;
}
.fit-topbar__quicknav a:hover { color: var(--sc-color-text-primary); }
.fit-topbar__quicknav a.is-active {
  color: var(--sc-color-accent);
  position: relative;
}
.fit-topbar__quicknav a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -0.6rem;
  height: 2px;
  background: var(--sc-color-accent);
  border-radius: 2px;
}

.fit-topbar__cta {
  flex-shrink: 0;
  padding: 0.55em 1.1em;
  font-size: var(--sc-label-size);
}

@media (max-width: 900px) {
  .fit-topbar__quicknav { display: none; }
}

/* ── Buttons ────────────────────────────────────────────────── */
.sc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.9em 1.6em;
  font-family: var(--sc-font-label);
  font-size: var(--sc-label-size);
  font-weight: var(--sc-label-weight);
  letter-spacing: var(--sc-label-ls);
  text-transform: var(--sc-label-tt);
  border-radius: var(--sc-radius-full);
  transition: transform var(--duration-fast) var(--sc-ease-out), box-shadow var(--duration-normal) ease, background var(--duration-fast) ease;
  white-space: nowrap;
}
.sc-btn:hover { transform: translateY(-2px); }
@media (prefers-reduced-motion: reduce) { .sc-btn:hover { transform: none; } }

.sc-btn--primary {
  background: var(--sc-color-accent);
  color: #fff;
  box-shadow: var(--sc-shadow-glow);
}
.sc-btn--primary:hover { background: var(--sc-color-accent-hover); }

.sc-btn--outline {
  border: 1.5px solid var(--sc-color-border-strong);
  color: var(--sc-color-text-primary);
}
.sc-btn--outline:hover { border-color: var(--sc-color-accent); color: var(--sc-color-accent); }

/* ── Hero ───────────────────────────────────────────────────── */
/* Full-viewport hero, matching home.css's .hero and root-index.css's
   .showcase-hero. No nav-clearance padding needed here (unlike those
   two) — .fit-topbar is position: sticky, i.e. in normal flow, not an
   overlay, so it already pushes this section down on its own. */
.fit-hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: var(--sc-space-3xl) var(--sc-space-2xl);
  position: relative;
  overflow: clip;
  box-sizing: border-box;
}

/* Photo layer — hero-bg.jpg is live (generated per
   Campaign/Demo-Platform-Strategy/08-image-generation-prompts.md,
   "Hero — Fitness"). The gradient underneath stays as the fallback
   if that file is ever missing/renamed. */
.fit-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 65% 55% at 78% 25%, var(--sc-color-accent-subtle) 0%, transparent 60%),
    linear-gradient(115deg, var(--fit-ink-900) 20%, var(--fit-ink-800) 55%, var(--fit-ink-700) 100%);
  background-image: url('/showcase/fitness/assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(0.65) saturate(0.9);
}
.fit-hero__bg::after {
  /* Legibility scrim — keep this even once a real photo is in place.
     Horizontal, not vertical: this hero's text is left-aligned, so the
     scrim only needs to darken the left two-thirds where it sits. */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, var(--fit-ink-900) 25%, color-mix(in srgb, var(--fit-ink-900) 70%, transparent) 60%, color-mix(in srgb, var(--fit-ink-900) 20%, transparent) 90%);
}

.fit-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  max-width: 640px;
  aspect-ratio: 1;
  background: radial-gradient(circle, var(--sc-color-accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.fit-hero__inner { position: relative; z-index: 2; max-width: 46rem; }

.fit-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--sc-font-label);
  font-size: var(--sc-label-size);
  font-weight: var(--sc-label-weight);
  letter-spacing: var(--sc-label-ls);
  text-transform: var(--sc-label-tt);
  color: var(--sc-color-accent);
  margin-bottom: var(--sc-space-md);
}
.fit-eyebrow__dot {
  width: 0.5em; height: 0.5em; border-radius: 50%;
  background: var(--sc-color-accent);
}

.fit-hero h1 {
  font-size: var(--sc-display-xl-size);
  line-height: var(--sc-display-xl-lh);
  letter-spacing: var(--sc-display-xl-ls);
  text-transform: var(--sc-display-xl-tt);
  font-weight: var(--sc-display-xl-weight);
  margin-bottom: var(--sc-space-lg);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.45);
}
.fit-hero h1 em {
  font-style: normal;
  color: var(--sc-color-accent);
}

.fit-hero__sub {
  font-size: var(--sc-body-lg-size);
  color: var(--sc-color-text-secondary);
  max-width: 38rem;
  margin-bottom: var(--sc-space-xl);
}

.fit-hero__ctas { display: flex; gap: var(--sc-space-sm); flex-wrap: wrap; }

/* ── Stat bar (Cialdini "authority/social proof" — the numbers
   that say "we understand this industry", not vanity metrics) */
.fit-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sc-space-md);
  border-top: 1px solid var(--sc-color-border);
  border-bottom: 1px solid var(--sc-color-border);
  padding-block: var(--sc-space-lg);
}
@media (max-width: 768px) {
  .fit-stats { grid-template-columns: repeat(2, 1fr); gap: var(--sc-space-lg) var(--sc-space-md); }
}

.fit-stat__value {
  font-family: var(--sc-font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--sc-color-accent);
  line-height: 1;
  margin-bottom: 0.35em;
}
.fit-stat__label {
  font-size: var(--sc-body-md-size);
  color: var(--sc-color-text-secondary);
  line-height: 1.4;
}

/* ── Trust strip (authority for Molvern Labs itself, not just the
   industry stats — "we didn't skim this") ─────────────────────── */
.fit-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--sc-space-xs) var(--sc-space-xl);
  padding-block: var(--sc-space-md);
  text-align: center;
}
.fit-trust__item {
  display: flex;
  align-items: baseline;
  gap: 0.4em;
  font-family: var(--sc-font-label);
  font-size: var(--sc-label-size);
  letter-spacing: var(--sc-label-ls);
  text-transform: var(--sc-label-tt);
  color: var(--sc-color-text-secondary);
}
.fit-trust__item strong {
  font-family: var(--sc-font-display);
  font-size: 1rem;
  color: var(--sc-color-accent);
  letter-spacing: normal;
  text-transform: none;
}
.fit-trust__sep {
  width: 3px; height: 3px; border-radius: 50%;
  background: var(--sc-color-border-strong);
  flex-shrink: 0;
}
@media (max-width: 700px) { .fit-trust__sep { display: none; } }

/* ── Section headers ────────────────────────────────────────── */
.fit-section-head { max-width: 42rem; margin-bottom: var(--sc-space-xl); }
.fit-section-head--center { max-width: 36rem; margin-inline: auto; text-align: center; }

.fit-section-label {
  display: block;
  font-family: var(--sc-font-label);
  font-size: var(--sc-label-size);
  font-weight: var(--sc-label-weight);
  letter-spacing: var(--sc-label-ls);
  text-transform: var(--sc-label-tt);
  color: var(--sc-color-accent);
  margin-bottom: var(--sc-space-sm);
}

.fit-section-head h2 {
  font-size: var(--sc-heading-lg-size);
  line-height: var(--sc-heading-lg-lh);
  text-transform: var(--sc-heading-lg-tt);
  font-weight: var(--sc-heading-lg-weight);
  margin-bottom: var(--sc-space-sm);
}

.fit-section-head p { color: var(--sc-color-text-secondary); font-size: var(--sc-body-lg-size); }

/* ── Problem cards (Problem/Agitate step, before the solution) */
.fit-problems {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sc-space-md);
}
@media (max-width: 900px) { .fit-problems { grid-template-columns: 1fr; } }

.fit-problem-card {
  padding: var(--sc-space-lg);
  background: var(--sc-color-surface);
  border: 1px solid var(--sc-color-border);
  border-radius: var(--sc-radius-lg);
}
.fit-problem-card__icon {
  width: 2.5rem; height: 2.5rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--sc-radius-md);
  background: var(--sc-color-accent-subtle);
  color: var(--sc-color-accent);
  margin-bottom: var(--sc-space-md);
}
.fit-problem-card h3 {
  font-size: var(--sc-heading-md-size);
  font-weight: var(--sc-heading-md-weight);
  margin-bottom: 0.5em;
}
.fit-problem-card p { color: var(--sc-color-text-secondary); font-size: var(--sc-body-md-size); }
.fit-problem-card__source {
  display: block;
  margin-top: var(--sc-space-sm);
  font-size: var(--sc-label-size);
  color: var(--sc-color-text-secondary);
  opacity: 0.7;
}

/* ── Habit loop diagram (bridges Problem → Solution: this is the
   actual mechanism the 3 demos are designed around) ───────────── */
.fit-loop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sc-space-md);
  flex-wrap: wrap;
  padding: var(--sc-space-xl);
  background: var(--sc-color-surface);
  border: 1px solid var(--sc-color-border);
  border-radius: var(--sc-radius-lg);
}

.fit-loop__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--sc-space-sm);
  width: 11.5rem;
}

.fit-loop__circle {
  width: 4rem; height: 4rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--sc-color-accent-subtle);
  border: 1.5px solid var(--sc-color-accent);
  color: var(--sc-color-accent);
  flex-shrink: 0;
}

.fit-loop__node h4 {
  font-family: var(--sc-font-display);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.fit-loop__node p { font-size: var(--sc-label-size); color: var(--sc-color-text-secondary); }

.fit-loop__arrow {
  color: var(--sc-color-border-strong);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  /* flex-wrap alone isn't enough here: a small rotated arrow still fits
     on the same line as the wide node above it, so it never gets its own
     centered row — it just dangles to the right. Forcing the column
     stacks node/arrow/node/arrow/node in true reading order instead. */
  .fit-loop { flex-direction: column; }
  .fit-loop__arrow { transform: rotate(90deg); }
}

.fit-loop__note {
  width: 100%;
  text-align: center;
  margin-top: var(--sc-space-md);
  padding-top: var(--sc-space-md);
  border-top: 1px dashed var(--sc-color-border);
  font-size: var(--sc-body-md-size);
  color: var(--sc-color-text-secondary);
}
.fit-loop__note strong { color: var(--sc-color-text-primary); }

/* ── Demo cards (the actual conversion moment) ─────────────────── */
.fit-demos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sc-space-lg);
}
@media (max-width: 900px) { .fit-demos { grid-template-columns: 1fr; } }

.fit-demo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--sc-radius-lg);
  overflow: hidden;
  border: 1px solid var(--sc-color-border);
  background: var(--sc-color-surface);
  transition: transform var(--duration-normal) var(--sc-ease-out), border-color var(--duration-normal) ease;
}
.fit-demo-card:hover { transform: translateY(-6px); border-color: var(--sc-color-accent); }
@media (prefers-reduced-motion: reduce) { .fit-demo-card:hover { transform: none; } }

.fit-demo-card__media {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.fit-demo-card__media-label {
  font-family: var(--sc-font-display);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 1rem;
}

/* Concept-art images are live for all three (see
   Campaign/Demo-Platform-Strategy/08-image-generation-prompts.md,
   "Demo concept art"). Each gradient stays underneath as the fallback
   if a file is ever missing/renamed — never delete these. */
.fit-demo-card--immersive .fit-demo-card__media { background: linear-gradient(135deg, #ff5a1f 0%, #c026d3 60%, #4c1d95 100%); background-image: url('/showcase/fitness/assets/concept-immersive.jpg'); background-size: cover; background-position: center; }
.fit-demo-card--creative .fit-demo-card__media   { background: linear-gradient(135deg, #0f3d2e 0%, #1b6a4e 55%, #e8c468 100%); background-image: url('/showcase/fitness/assets/concept-creative.jpg'); background-size: cover; background-position: center; }
.fit-demo-card--professional .fit-demo-card__media { background: linear-gradient(135deg, #101114 0%, #1c1e24 100%); background-image: url('/showcase/fitness/assets/concept-professional.jpg'); background-size: cover; background-position: center; }

.fit-demo-card__media-badge {
  position: absolute;
  top: var(--sc-space-sm);
  left: var(--sc-space-sm);
  z-index: 1;
  font-family: var(--sc-font-label);
  font-size: 0.65rem;
  letter-spacing: var(--sc-label-ls);
  text-transform: var(--sc-label-tt);
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  padding: 0.35em 0.7em;
  border-radius: var(--sc-radius-full);
  border: 1px solid rgba(255,255,255,0.2);
}

.fit-demo-card__body { padding: var(--sc-space-lg); display: flex; flex-direction: column; gap: var(--sc-space-sm); flex: 1; }
.fit-demo-card__tag {
  font-family: var(--sc-font-label);
  font-size: var(--sc-label-size);
  letter-spacing: var(--sc-label-ls);
  text-transform: var(--sc-label-tt);
  color: var(--sc-color-accent);
}
.fit-demo-card h3 { font-size: var(--sc-heading-md-size); font-weight: var(--sc-heading-md-weight); }
.fit-demo-card p { color: var(--sc-color-text-secondary); font-size: var(--sc-body-md-size); flex: 1; }
.fit-demo-card__cta { margin-top: var(--sc-space-sm); }

/* ── Learn (full-length flagship explainers) ──────────────────
   Same card language as .fit-demo-card (border/hover/body rhythm),
   but the media is a real 16:9 video thumbnail + play glyph that
   links straight out to YouTube, not an in-page embed — see the
   HTML comment at the section for why. */
.fit-learn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sc-space-lg);
  margin-top: var(--sc-space-xl);
}
@media (max-width: 900px) { .fit-learn-grid { grid-template-columns: 1fr; } }

.fit-learn-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--sc-radius-lg);
  overflow: hidden;
  border: 1px solid var(--sc-color-border);
  background: var(--sc-color-surface);
  transition: transform var(--duration-normal) var(--sc-ease-out), border-color var(--duration-normal) ease;
}
.fit-learn-card:hover { transform: translateY(-6px); border-color: var(--sc-color-accent); }
@media (prefers-reduced-motion: reduce) { .fit-learn-card:hover { transform: none; } }

.fit-learn-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
}
.fit-learn-card__media[href*="fPayap8k7_4"] { background-image: url('/showcase/fitness/assets/owner-flagship-thumb.jpg'); }
.fit-learn-card__media[href*="JThBcy5aHeg"] { background-image: url('/showcase/fitness/assets/member-flagship-thumb.jpg'); }

.fit-learn-card__duration {
  position: absolute;
  top: var(--sc-space-sm);
  left: var(--sc-space-sm);
  font-family: var(--sc-font-label);
  font-size: 0.65rem;
  letter-spacing: var(--sc-label-ls);
  color: rgba(255,255,255,0.9);
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  padding: 0.35em 0.7em;
  border-radius: var(--sc-radius-full);
  border: 1px solid rgba(255,255,255,0.2);
}

.fit-learn-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fit-learn-card__play svg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  background: var(--sc-color-accent);
  color: #fff;
  padding: 0.9rem;
  box-sizing: border-box;
  transition: transform var(--duration-fast) var(--sc-ease-out);
}
.fit-learn-card:hover .fit-learn-card__play svg { transform: scale(1.08); }
@media (prefers-reduced-motion: reduce) { .fit-learn-card:hover .fit-learn-card__play svg { transform: none; } }

.fit-learn-card__body { padding: var(--sc-space-lg); display: flex; flex-direction: column; gap: var(--sc-space-sm); flex: 1; }
.fit-learn-card__body h3 { font-size: var(--sc-heading-md-size); font-weight: var(--sc-heading-md-weight); }
.fit-learn-card__body p { color: var(--sc-color-text-secondary); font-size: var(--sc-body-md-size); flex: 1; }
.fit-learn-card__cta { margin-top: var(--sc-space-sm); align-self: flex-start; }

.fit-learn-playlist {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sc-space-md);
  flex-wrap: wrap;
  margin-top: var(--sc-space-xl);
  padding: var(--sc-space-lg);
  border-radius: var(--sc-radius-lg);
  border: 1px solid var(--sc-color-border);
  background: var(--sc-color-surface-alt);
  text-align: center;
  color: var(--sc-color-text-secondary);
}
.fit-learn-playlist__icon { color: var(--sc-color-accent); display: flex; flex-shrink: 0; }

/* ── Accordion (progressive disclosure for the research insights —
   descriptive headers, generous click target, per UX research) ── */
.fit-accordion { border-top: 1px solid var(--sc-color-border); }

.fit-accordion__item { border-bottom: 1px solid var(--sc-color-border); }

.fit-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sc-space-md);
  padding-block: var(--sc-space-md);
  text-align: left;
  font-family: var(--sc-font-display);
  font-size: var(--sc-heading-md-size);
  font-weight: 700;
  color: var(--sc-color-text-primary);
}

.fit-accordion__icon {
  flex-shrink: 0;
  width: 1.75rem; height: 1.75rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1.5px solid var(--sc-color-border-strong);
  transition: transform var(--duration-normal) var(--sc-ease-out), background var(--duration-normal) ease;
}
.fit-accordion__trigger[aria-expanded="true"] .fit-accordion__icon {
  transform: rotate(45deg);
  background: var(--sc-color-accent);
  border-color: var(--sc-color-accent);
}

.fit-accordion__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows var(--duration-normal) var(--sc-ease-out);
}
.fit-accordion__panel[data-open="true"] { grid-template-rows: 1fr; }
.fit-accordion__panel-inner { overflow: hidden; }
.fit-accordion__panel p {
  padding-bottom: var(--sc-space-md);
  color: var(--sc-color-text-secondary);
  max-width: 40rem;
}
.fit-accordion__panel .fit-source-tag {
  display: inline-block;
  margin-bottom: var(--sc-space-md);
  font-size: var(--sc-label-size);
  letter-spacing: var(--sc-label-ls);
  color: var(--sc-color-accent);
  text-transform: var(--sc-label-tt);
}

/* ── Video block ────────────────────────────────────────────── */
.fit-video-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sc-space-xl);
  align-items: center;
}
@media (max-width: 900px) { .fit-video-block { grid-template-columns: 1fr; } }
.fit-video-block__note {
  margin-top: var(--sc-space-sm);
  font-size: var(--sc-label-size);
  color: var(--sc-color-text-secondary);
}
.fit-video-block__link {
  display: inline-block;
  margin-top: var(--sc-space-sm);
  color: var(--sc-color-accent);
  font-size: var(--sc-label-size);
  font-weight: 600;
  text-decoration: none;
}
.fit-video-block__link:hover { text-decoration: underline; }

.video-facade__poster {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--sc-color-surface-alt), var(--sc-color-surface));
}
/* Real YouTube thumbnails, self-hosted (not hotlinked to i.ytimg.com — CSP
   is img-src 'self' only, and self-hosting also means no external request
   before the viewer ever clicks play). YouTube's own static thumbnail for
   a Short is a 480x360 canvas with the vertical content pillarboxed and a
   blurred duplicate filling the sides — background-size: cover on a 9:16
   box crops almost exactly to that real content band, not the padding. */
.video-facade__poster--owner-brief {
  background-image: linear-gradient(to top, rgba(12, 20, 31, 0.75), transparent 55%), url('/showcase/fitness/assets/owner-brief-thumb.jpg');
  background-size: cover, cover;
  background-position: center, center;
}
.video-facade__poster--member-brief {
  background-image: linear-gradient(to top, rgba(12, 20, 31, 0.75), transparent 55%), url('/showcase/fitness/assets/member-brief-thumb.jpg');
  background-size: cover, cover;
  background-position: center, center;
}

.video-facade__poster-label {
  font-family: var(--sc-font-label);
  font-size: var(--sc-label-size);
  letter-spacing: var(--sc-label-ls);
  text-transform: var(--sc-label-tt);
  color: var(--sc-color-text-secondary);
  position: absolute;
  bottom: var(--sc-space-md);
  left: var(--sc-space-md);
}

/* ── Photo placeholder (generic — used wherever a real photograph
   belongs per the research: "real photos, zero stock photography"
   is one of the highest-weighted trust signals in the UX findings).
   IMAGE PLACEHOLDER utility — see
   Campaign/Demo-Platform-Strategy/08-image-generation-prompts.md
   for the exact prompt + target filename for each use of this class. */
.fit-photo {
  position: relative;
  border-radius: var(--sc-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background:
    radial-gradient(ellipse 60% 50% at 30% 30%, var(--sc-color-accent-subtle) 0%, transparent 60%),
    linear-gradient(160deg, var(--sc-color-surface-alt), var(--sc-color-surface));
  border: 1px solid var(--sc-color-border);
}
.fit-photo__label {
  position: absolute;
  inset: auto var(--sc-space-md) var(--sc-space-md) var(--sc-space-md);
  font-family: var(--sc-font-label);
  font-size: var(--sc-label-size);
  letter-spacing: var(--sc-label-ls);
  text-transform: var(--sc-label-tt);
  color: var(--sc-color-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.fit-photo__label svg { flex-shrink: 0; opacity: 0.7; }

/* IMAGE PLACEHOLDER hooks — see
   Campaign/Demo-Platform-Strategy/08-image-generation-prompts.md.
   Uncomment the matching background-image once the file exists. */
.fit-photo--coaching {
  background-image: url('/showcase/fitness/assets/coaching.jpg');
  background-size: cover;
  background-position: center;
}
.fit-photo--community {
  background-image: url('/showcase/fitness/assets/community.jpg');
  background-size: cover;
  background-position: center;
}

/* ── Generic split layout (photo + copy) — reused for the exercise-
   science strip and any future photo+copy pairing ──────────────── */
.fit-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sc-space-xl);
  align-items: center;
}
@media (max-width: 900px) { .fit-split { grid-template-columns: 1fr; } }
.fit-split__copy h3 { font-size: var(--sc-heading-md-size); margin-bottom: var(--sc-space-sm); }
.fit-split__copy > p { color: var(--sc-color-text-secondary); margin-bottom: var(--sc-space-md); }
.fit-split__list { display: flex; flex-direction: column; gap: var(--sc-space-sm); }
.fit-split__list-item {
  display: flex;
  gap: 0.6em;
  font-size: var(--sc-body-md-size);
  color: var(--sc-color-text-secondary);
}
.fit-split__list-item strong { color: var(--sc-color-text-primary); }
.fit-split__list-item svg { color: var(--sc-color-accent); flex-shrink: 0; margin-top: 0.2em; }

/* ── Market snapshot (India / USA / UK — makes "we researched
   your specific market" concrete instead of a claim) ──────────── */
.fit-markets {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sc-space-md);
}
@media (max-width: 900px) { .fit-markets { grid-template-columns: 1fr; } }

.fit-market-card {
  padding: var(--sc-space-lg);
  border-radius: var(--sc-radius-lg);
  background: var(--sc-color-surface);
  border: 1px solid var(--sc-color-border);
  border-top: 3px solid var(--sc-color-accent);
}
.fit-market-card__flag {
  font-family: var(--sc-font-label);
  font-size: var(--sc-label-size);
  letter-spacing: var(--sc-label-ls);
  text-transform: var(--sc-label-tt);
  color: var(--sc-color-accent);
  margin-bottom: var(--sc-space-sm);
}
.fit-market-card h3 { font-size: var(--sc-heading-md-size); margin-bottom: 0.6em; }
.fit-market-card p { font-size: var(--sc-body-md-size); color: var(--sc-color-text-secondary); }
.fit-market-card p + p { margin-top: 0.6em; }

/* ── Member-facing section (visually distinct sub-zone within the
   same area identity — a tint shift, not a new brand) ─────────── */
.fit-member-zone {
  background: var(--sc-color-surface);
  border-top: 1px solid var(--sc-color-border);
  border-bottom: 1px solid var(--sc-color-border);
}

.fit-benefit-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sc-space-md); }
@media (max-width: 700px) { .fit-benefit-list { grid-template-columns: 1fr; } }

.fit-benefit-item {
  display: flex;
  gap: var(--sc-space-sm);
  padding: var(--sc-space-md);
  border-radius: var(--sc-radius-md);
  background: var(--sc-color-bg);
  border: 1px solid var(--sc-color-border);
}
.fit-benefit-item__icon { color: var(--sc-color-accent); flex-shrink: 0; }
.fit-benefit-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.25em; }
.fit-benefit-item p { font-size: var(--sc-body-md-size); color: var(--sc-color-text-secondary); }

/* ── Belonging blurb ("third place" sociology, paired with a real
   photo of the space/community — the two things the research says
   most directly counter gymtimidation) ─────────────────────────── */
.fit-belonging {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sc-space-xl);
  align-items: center;
  margin-top: var(--sc-space-2xl);
}
@media (max-width: 900px) { .fit-belonging { grid-template-columns: 1fr; } }
.fit-belonging__copy h3 {
  font-size: var(--sc-heading-md-size);
  margin-bottom: var(--sc-space-sm);
}
.fit-belonging__copy p { color: var(--sc-color-text-secondary); margin-bottom: var(--sc-space-sm); }
.fit-belonging__copy p:last-child { margin-bottom: 0; }

/* ── Final CTA ──────────────────────────────────────────────── */
.fit-final-cta {
  text-align: center;
  padding: var(--sc-space-2xl) var(--sc-space-lg);
  border-radius: var(--sc-radius-lg);
  background: linear-gradient(135deg, var(--sc-color-surface), var(--sc-color-surface-alt));
  border: 1px solid var(--sc-color-border);
}
.fit-final-cta h2 {
  font-size: var(--sc-heading-lg-size);
  text-transform: var(--sc-heading-lg-tt);
  margin-bottom: var(--sc-space-sm);
}
.fit-final-cta p { color: var(--sc-color-text-secondary); max-width: 34rem; margin-inline: auto; margin-bottom: var(--sc-space-lg); }
.fit-final-cta__ctas { display: flex; gap: var(--sc-space-sm); justify-content: center; flex-wrap: wrap; }

/* ── Footer ─────────────────────────────────────────────────── */
.fit-footer {
  max-width: var(--sc-container-max);
  margin-inline: auto;
  padding-inline: var(--sc-container-pad);
  padding-block: var(--sc-space-lg);
  border-top: 1px solid var(--sc-color-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sc-space-sm);
  font-size: var(--sc-label-size);
  color: var(--sc-color-text-secondary);
}
.fit-footer a { color: var(--sc-color-text-primary); }
.fit-footer a:hover { color: var(--sc-color-accent); }
