/* ===== Squads Case Study — extends the portfolio design system ===== */

/* Fix: overflow-x:hidden on body creates a scroll container that breaks
   position:sticky.  overflow-x:clip hides overflow without a new container. */
body { overflow-x: clip; }

/* Tokens inherited from the portfolio (repeated for standalone use) */
:root {
  --bg: #f7f7f7;
  --white: #ffffff;
  --black: #000000;
  --grey-box: #ebebeb;
  --border-soft: #f4f4f4;
  --rule: rgba(0, 0, 0, 0.12);
  --muted: rgba(0, 0, 0, 0.5);
  --maxw: 1340px;
  --pad: 50px;
  --font: "Aeonik", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --sidebar-w: 260px;
  --content-gap: 64px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-y: scroll;
}

body {
  overflow-x: clip;
  background: var(--bg);
  color: var(--black);
  font-family: var(--font);
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ===== WebGL Canvas (persistent atmospheric layer) ===== */
.webgl-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.webgl-canvas.is-ready { opacity: 1; }

/* ===== Page wrapper ===== */
.cs-page {
  position: relative;
  z-index: 1;
  max-width: calc(var(--maxw) + var(--pad) * 2);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ===== Top navigation ===== */
.cs-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 0 0;
  position: relative;
  z-index: 50;
}
.cs-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 24px;
  border-radius: 40px;
  border: 1px solid var(--black);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}
.cs-nav__back:hover { background: var(--black); color: var(--white); }
.cs-nav__menu {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 8px 24px;
  border-radius: 40px;
  border: 1px solid var(--black);
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}
.cs-nav__menu:hover { background: var(--black); color: var(--white); }

/* ===== Sticky header (appears after scrolling past nav) ===== */
.cs-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 50px;
  background: rgba(247, 247, 247, 0.72);
  backdrop-filter: blur(12px) saturate(1.4);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transform: translateY(-101%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s var(--ease-out), opacity 0.3s ease;
}
.cs-sticky.is-visible { transform: translateY(0); opacity: 1; pointer-events: auto; }
.cs-sticky__brand { font-weight: 500; font-size: 24px; line-height: 1; color: var(--black); }

/* ===== Hero ===== */
.cs-hero {
  padding: 120px 0 0;
}

.cs-hero__top {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}

.cs-hero__title {
  font-weight: 400;
  font-size: 100px;
  line-height: 1;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.cs-hero__right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-width: 0;
}

.cs-hero__subtitle {
  font-weight: 400;
  font-size: 52px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.cs-hero__desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cs-hero__desc p {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
}
.cs-hero__desc strong {
  font-weight: 500;
}

/* Impact metrics row */
.cs-hero__metrics {
  display: flex;
  gap: 28px;
  padding-top: 48px;
}

.cs-metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cs-metric__value {
  font-weight: 400;
  font-size: 32px;
  line-height: 1;
  letter-spacing: -0.5px;
  font-variant-numeric: tabular-nums;
}

.cs-metric__label {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero image */
.cs-hero__image {
  margin-top: 72px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  position: relative;
}
.cs-hero__image img {
  width: 100%;
  height: auto;
  display: block;
}
/* Placeholder styling for images without src */
.cs-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #e8e8e8 0%, #d4d4d4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Main content area (sidebar + sections) ===== */
.cs-body {
  display: grid;
  grid-template-columns: var(--sidebar-w) 1fr;
  gap: var(--content-gap);
  padding-top: 120px;
  align-items: start;
}

/* ===== Sidebar navigation ===== */
.cs-sidebar {
  position: sticky;
  top: 100px;
  padding: 16px 0;
  z-index: 10;
  align-self: start;
}

.cs-sidebar__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cs-sidebar__item {
  position: relative;
}

.cs-sidebar__link {
  display: block;
  padding: 12px 16px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: var(--muted);
  border-radius: 8px;
  transition: color 0.4s var(--ease-out), background 0.4s var(--ease-out);
  cursor: pointer;
}

.cs-sidebar__link:hover {
  color: rgba(0, 0, 0, 0.7);
}

.cs-sidebar__link.is-active {
  color: var(--black);
  font-weight: 500;
  background: rgba(0, 0, 0, 0.04);
}

/* (Progress indicator removed) */

/* ===== Content sections ===== */
.cs-content {
  display: flex;
  flex-direction: column;
  gap: 140px;
  min-width: 0;
}

.cs-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Section header */
.cs-section__eyebrow {
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
}

.cs-section__heading {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.3;
  letter-spacing: -0.3px;
  margin-top: 16px;
}

.cs-section__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  max-width: 800px;
}

.cs-section__text + .cs-section__text {
  margin-top: 8px;
}

/* Opportunity callout */
.cs-opportunity {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cs-opportunity__label {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  color: var(--muted);
}
.cs-opportunity__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.3;
  font-style: italic;
}

/* Section image */
.cs-section__image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  position: relative;
}
.cs-section__image img {
  width: 100%;
  height: auto;
  display: block;
}
.cs-section__image-caption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  padding-bottom: 0;
  font-style: italic;
  text-align: center;
}

/* Host interview player */
.cs-call {
  margin: 0;
  padding: 28px 32px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.cs-call__meta { display: flex; flex-direction: column; gap: 8px; }
.cs-call__label {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
}
.cs-call__title {
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.3px;
}
.cs-call__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 640px;
}

.cs-player {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cs-player audio {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.cs-player__play {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--black);
  border-radius: 40px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cs-player__play:hover { background: #222; }
.cs-player__play:active { transform: scale(0.96); }
.cs-player__play:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}
.cs-player__icon { width: 16px; height: 16px; display: block; }
.cs-player__icon--play { margin-left: 2px; }
.cs-player__icon[hidden] { display: none !important; }

.cs-player__bar {
  position: relative;
  flex: 1;
  min-width: 0;
  height: 24px;
  cursor: pointer;
}
.cs-player__bar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  border-radius: 40px;
  background: var(--grey-box);
}
.cs-player__bar-fill {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  border-radius: 40px;
  background: var(--black);
  width: 0%;
  max-width: 100%;
  pointer-events: none;
}
.cs-player__time {
  flex-shrink: 0;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  min-width: 7.5em;
  text-align: right;
}

/* Feature pills (used in Squad Identity, Squad Calendar) */
.cs-features {
  display: flex;
  gap: 32px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cs-feature {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 180px;
}
.cs-feature__label {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 1.12px;
  text-transform: uppercase;
  color: var(--muted);
}
.cs-feature__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}

/* From → To shift labels */
.cs-shift-labels {
  display: flex;
  gap: 32px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.cs-shift-label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cs-shift-label__tag {
  font-weight: 400;
  font-size: 16px;
  color: var(--muted);
}
.cs-shift-label__text {
  font-weight: 500;
  font-size: 16px;
  font-style: italic;
}

/* Highlight line (yellow underline on key phrases) */
.cs-highlight {
  display: inline;
  background-image: linear-gradient(to right, rgba(255, 200, 0, 0.35), rgba(255, 200, 0, 0.35));
  background-size: 100% 8px;
  background-position: 0 88%;
  background-repeat: no-repeat;
  padding-bottom: 2px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Flow path (Squad → Activity → Members → Play) */
.cs-flow {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
  color: var(--muted);
}

/* ===== Impact section ===== */
.cs-impact {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.cs-impact__block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cs-impact__number {
  font-weight: 400;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -1px;
  font-variant-numeric: tabular-nums;
}

.cs-impact__desc {
  font-weight: 400;
  font-size: 16px;
  color: var(--muted);
}

.cs-impact__chart {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: var(--white);
  position: relative;
}
.cs-impact__chart img {
  width: 100%;
  height: auto;
  display: block;
}

/* Impact grid — horizontal row of stats (no charts per block) */
.cs-impact--grid {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0 56px;
}
.cs-impact--grid .cs-impact__block {
  flex: 1 1 160px;
  gap: 8px;
}
.cs-impact--grid .cs-impact__number {
  font-size: 36px;
}

/* ===== Mini stats row (slot booking context) ===== */
.cs-stats-row {
  display: flex;
  gap: 32px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.cs-stat-mini {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 140px;
}
.cs-stat-mini__value {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: var(--black);
}
.cs-stat-mini__label {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
}

/* ===== Feature cards (alternating layout) ===== */
.cs-feature-cards {
  display: flex;
  flex-direction: column;
  gap: 52px;
  margin-top: 12px;
}
.cs-feature-card {
  display: grid;
  grid-template-columns: 1fr 1.37fr;
  gap: 52px;
  align-items: center;
}
.cs-feature-card--reverse {
  grid-template-columns: 1.37fr 1fr;
}
.cs-feature-card--reverse .cs-feature-card__image {
  order: -1;
}
.cs-feature-card__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cs-feature-card__number {
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  color: var(--muted);
  margin-bottom: 4px;
}
.cs-feature-card__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--black);
}
.cs-feature-card__subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: var(--muted);
  margin-bottom: 8px;
}
.cs-feature-card__desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
  margin-top: 8px;
}
.cs-feature-card__image {
  border-radius: 16px;
  overflow: hidden;
  background: var(--grey-box);
}
.cs-feature-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Community voices ===== */
.cs-voices {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.cs-voices__grid {
  display: grid;
  grid-template-columns: 436fr 548fr;
  gap: 16px;
  align-items: start;
}
.cs-voices__main {
  border-radius: 16px;
  overflow: hidden;
  background: var(--grey-box);
}
.cs-voices__main img {
  width: 100%;
  height: auto;
}
.cs-voices__stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cs-voices__item {
  border-radius: 12px;
  overflow: hidden;
  background: var(--grey-box);
}
.cs-voices__item img {
  width: 100%;
  height: auto;
}

/* ===== Before / After ===== */
.cs-beforeafter {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 52px;
}

/* ===== Takeaway ===== */
.cs-takeaway {
  padding-bottom: 0;
}
.cs-takeaway__text {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
  max-width: 800px;
}
.cs-takeaway__image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--grey-box);
  aspect-ratio: 1000 / 594;
  margin-top: 48px;
}
.cs-takeaway__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== Footer spacing (more room after Takeaway) ===== */
.cs-page + .portfolio-end {
  margin-top: 140px;
}

/* ===== Before / After Slider ===== */
.cs-slider {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y pinch-zoom;
}
.cs-slider__before,
.cs-slider__after {
  width: 100%;
  display: block;
}
.cs-slider__before {
  position: relative;
}
.cs-slider__before img {
  width: 100%;
  height: auto;
  display: block;
}
.cs-slider__after {
  position: absolute;
  inset: 0;
  overflow: hidden;
  /* JS sets width via clip-path */
  clip-path: inset(0 0 0 50%);
}
.cs-slider__after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Ensure the after image covers the same area */
  position: absolute;
  inset: 0;
}
.cs-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--black);
  transform: translateX(-50%);
  z-index: 5;
  pointer-events: none;
}
.cs-slider__knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--black);
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  pointer-events: auto;
  cursor: ew-resize;
}
.cs-slider__knob::before,
.cs-slider__knob::after {
  content: '';
  width: 6px;
  height: 10px;
  border-left: 2px solid var(--black);
  border-top: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
}
.cs-slider__knob::before {
  border-right: none;
  transform: rotate(0deg);
  /* left arrow shape */
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  border: none;
  background: var(--black);
}
.cs-slider__knob::after {
  border-left: none;
  transform: rotate(0deg);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  border: none;
  background: var(--black);
}
.cs-slider__label {
  position: absolute;
  top: 20px;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--muted);
  z-index: 3;
  pointer-events: none;
  padding: 6px 14px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
  transition: opacity 0.25s ease;
  border-radius: 100px;
}
.cs-slider__label--before { left: 20px; }
.cs-slider__label--after { right: 20px; }

/* ===== Motion — initial hidden states (gated on html.js) ===== */
html.js .cs-reveal {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
}
html.js .cs-reveal-image {
  opacity: 0;
  clip-path: inset(8% 0 8% 0);
  transform: scale(0.97);
  will-change: opacity, clip-path, transform;
}
html.js .cs-hero__title {
  opacity: 0;
  transform: translateY(20px);
}
html.js .cs-hero__subtitle {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
}
html.js .cs-hero__desc {
  opacity: 0;
  transform: translateY(20px);
}
html.js .cs-metric {
  opacity: 0;
  transform: translateY(16px);
}

/* ===== Desktop overrides (≥ 1025px) ===== */
@media (min-width: 1025px) {
  .cs-hero__title { font-size: 100px; }
  .cs-hero__subtitle { font-size: 52px; }
  .cs-impact__number { font-size: 48px; }
}

/* ===== Tablet (≤ 1024px) ===== */
@media (max-width: 1024px) {
  :root { --pad: 50px; }

  .cs-hero__top { gap: 60px; }
  .cs-hero__title { font-size: 86px; }
  .cs-hero__subtitle { font-size: 40px; }
  .cs-hero__desc p { font-size: 20px; }

  .cs-body {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .cs-content {
    padding-top: 40px;
  }

  .cs-sidebar {
    position: sticky;
    top: 73px;
    z-index: 20;
    display: flex;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0;
    border-bottom: 1px solid var(--rule);
    background: rgba(247, 247, 247, 0.72);
    backdrop-filter: blur(12px) saturate(1.4);
    -webkit-backdrop-filter: blur(12px) saturate(1.4);
    margin: 0 calc(var(--pad) * -1);
    padding: 0 var(--pad);
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .cs-sidebar::-webkit-scrollbar {
    display: none;
  }
  .cs-sidebar__list {
    flex-direction: row;
    gap: 0;
    width: max-content;
  }
  .cs-sidebar__link {
    white-space: nowrap;
    padding: 14px 16px;
    font-size: 14px;
    border-radius: 0;
  }
  .cs-sidebar__link.is-active {
    background: none;
    border-bottom: 2px solid var(--black);
    padding-bottom: 12px;
  }

}

/* ===== Phone (≤ 767px) ===== */
@media (max-width: 767px) {
  :root { --pad: 24px; }

  .cs-nav { padding-top: 24px; }
  .cs-sticky { padding: 12px 20px; }
  .cs-sticky__brand { font-size: 20px; }

  .cs-hero { padding-top: 52px; }
  .cs-hero__top {
    flex-direction: column;
    gap: 32px;
  }
  .cs-hero__title { font-size: 60px; }
  .cs-hero__subtitle { font-size: 32px; }
  .cs-hero__desc p { font-size: 18px; }
  .cs-hero__metrics { flex-direction: column; gap: 24px; }
  .cs-metric__value { font-size: 28px; }

  .cs-body { padding-top: 52px; }

  .cs-sidebar {
    position: sticky;
    top: 69px;
    z-index: 20;
    background: rgba(247, 247, 247, 0.72);
    backdrop-filter: blur(12px) saturate(1.4);
    -webkit-backdrop-filter: blur(12px) saturate(1.4);
    margin: 0 calc(var(--pad) * -1);
    padding: 0 var(--pad);
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .cs-sidebar::-webkit-scrollbar {
    display: none;
  }

  .cs-content { gap: 80px; }
  .cs-section { gap: 28px; }
  .cs-section__heading { font-size: 22px; }
  .cs-section__text { font-size: 16px; }
  .cs-features { flex-direction: column; gap: 20px; }
  .cs-shift-labels { flex-direction: column; gap: 12px; }

  .cs-impact__number { font-size: 36px; }

  .cs-voices__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cs-stats-row {
    flex-direction: column;
    gap: 20px;
  }

  .cs-feature-card,
  .cs-feature-card--reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cs-feature-card--reverse .cs-feature-card__image {
    order: 0;
  }
  .cs-feature-card__title { font-size: 20px; }

  .cs-impact--grid {
    flex-direction: column;
    gap: 32px;
  }
  .cs-impact--grid .cs-impact__number {
    font-size: 28px;
  }
  .cs-call { padding: 24px; }
  .cs-call__title { font-size: 18px; }
  .cs-player { gap: 12px; }
  .cs-player__time { min-width: auto; font-size: 12px; }

}

/* ===== Reduced motion ===== */
@media (prefers-reduced-motion: reduce) {
  html.js .cs-reveal,
  html.js .cs-reveal-image,
  html.js .cs-hero__title,
  html.js .cs-hero__subtitle,
  html.js .cs-hero__desc,
  html.js .cs-metric {
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    will-change: auto !important;
  }
  .webgl-canvas { display: none; }
  .cs-player__play:active { transform: none; }
}
