/* --- Global atmosphere ------------------------------------------------------ */
::selection {
  background-color: var(--cobalt, #2e6bff);
  color: var(--text-on-dark, #f7f7f5);
}
 
.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
 
/* --- Shared ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container-max, 1440px);
  margin-inline: auto;
  padding-inline: var(--edge, clamp(1.25rem, 4vw, 5rem));
}
 
.eyebrow {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-light-3, rgba(10, 10, 11, 0.44));
  margin: 0 0 var(--space-5, 24px);
}
 
.eyebrow--cobalt { color: var(--cobalt, #2e6bff); }
.eyebrow--on-dark { color: var(--cobalt-bright, #5488ff); }
 
.ph-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-light-3, rgba(10, 10, 11, 0.44));
  background:
    linear-gradient(135deg, rgba(10, 10, 11, 0.04) 25%, transparent 25%,
      transparent 50%, rgba(10, 10, 11, 0.04) 50%,
      rgba(10, 10, 11, 0.04) 75%, transparent 75%) 0 0 / 24px 24px,
    var(--surface-raised-light, #ffffff);
  z-index: 0;
}
 
.ph-label--dark {
  color: var(--text-on-dark-3, rgba(247, 247, 245, 0.4));
  background:
    linear-gradient(135deg, rgba(247, 247, 245, 0.05) 25%, transparent 25%,
      transparent 50%, rgba(247, 247, 245, 0.05) 50%,
      rgba(247, 247, 245, 0.05) 75%, transparent 75%) 0 0 / 24px 24px,
    var(--surface-raised-dark, #101012);
}
 
/* ==========================================================================
   01 · HERO — title card + credits marquee
   ========================================================================== */
.ab-hero {
  background-color: var(--surface-light, #f7f7f5);
  min-height: 100svh;
  display: flex;
  overflow: hidden;
}
 
.ab-hero__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: calc(var(--space-9, 96px) + 80px);
  padding-bottom: var(--space-6, 32px);
}
 
.ab-hero .eyebrow { margin-bottom: var(--space-6, 32px); }
 
.ab-hero__title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2rem, min(0.86rem + 9.5vw, 13vw - 0.45rem), 8.5rem);
  font-weight: 700;
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--text-on-light, #0a0a0b);
  margin: 0 0 auto;
}
 
.ab-hero__dot { color: var(--cobalt, #2e6bff); }  /* the wordmark dot */
 
/* --- Credits marquee ---------------------------------------------------------
   Full-bleed ticker between headline and meta rail. Two identical track
   copies; the loop translates -50%. Pauses on hover; static when reduced. */
.credits {
  overflow: hidden;
  border-top: 1px solid var(--border-on-light, rgba(10, 10, 11, 0.12));
  margin-top: var(--space-8, 64px);
  padding-block: var(--space-5, 24px);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
 
.credits__track {
  display: flex;
  width: max-content;
  animation: credits-roll 60s linear infinite;
}
 
.credits:hover .credits__track { animation-play-state: paused; }
 
.credits__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
 
.credits__item {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-light-2, rgba(10, 10, 11, 0.64));
  white-space: nowrap;
}
 
.credits__sep {
  color: var(--text-on-light-3, rgba(10, 10, 11, 0.4));
  margin-inline: var(--space-6, 32px);
  font-size: 0.8125rem;
}
 
@keyframes credits-roll {
  to { transform: translateX(-50%); }
}
 
/* Meta row — now just the scroll cue, centered */
.ab-hero__meta {
  display: flex;
  justify-content: center;
  margin-top: var(--space-5, 24px);
}

/* Scroll cue: label over a hairline with a segment that sweeps down.
   The premium version of "scroll down" — no bouncing arrows. */
.ab-hero__cue {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-light-3, rgba(10, 10, 11, 0.44));
}

.ab-hero__cue-line {
  position: relative;
  width: 1px;
  height: 44px;
  overflow: hidden;
  background-color: var(--border-on-light, rgba(10, 10, 11, 0.12));
}

.ab-hero__cue-line::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 14px;
  background-color: var(--text-on-light, #0a0a0b);
  animation: cue-sweep 2.2s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes cue-sweep {
  0%   { transform: translateY(-14px); }
  55%  { transform: translateY(44px); }
  100% { transform: translateY(44px); }
}

@media (prefers-reduced-motion: reduce) {
  .ab-hero__cue-line::after { animation: none; opacity: 0; }
  
}

@media (max-width: 640px) {
  .ab-hero__cue-line { height: 32px; }
}
 
/* ==========================================================================
   02 · SHOWREEL — playable with sound, scrub-expands as it enters
   ========================================================================== */
.ab-reel {
  background-color: var(--surface-light, #f7f7f5);
  padding-block: var(--space-8, 64px);     /* mobile: air above + below */
  overflow: hidden;
}

@media (min-width: 1024px) {
  .ab-reel {
    padding-block: 0;                      /* desktop: reel runs flush */
  }
}


.ab-reel__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--surface-dark, #0a0a0b);
  transform-origin: top center;
  will-change: transform;
}
 
.ab-reel__video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
.ab-reel__play {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 0;
  padding: 0;
  background: rgba(10, 10, 11, 0.25);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 400ms ease, opacity 400ms ease;
}
 
html:not(.js) .ab-reel__play { display: none; }
 
.ab-reel__play.is-hidden {
  opacity: 0;
  pointer-events: none;
}
 
.ab-reel__play-ring {
  position: absolute;
  width: clamp(88px, 12vw, 140px);
  height: clamp(88px, 12vw, 140px);
  border-radius: 50%;
  border: 1px solid var(--border-on-dark, rgba(247, 247, 245, 0.14));
  background: rgba(10, 10, 11, 0.35);
  backdrop-filter: blur(6px);
  transition:
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 300ms ease;
}
 
.ab-reel__play-label {
  position: relative;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark, #f7f7f5);
}
 
@media (hover: hover) and (pointer: fine) {
  .ab-reel__play:hover .ab-reel__play-ring {
    transform: scale(1.12);
    border-color: rgba(247, 247, 245, 0.44);
  }
}
 
.ab-reel__play:focus-visible {
  outline: 2px solid var(--cobalt, #2e6bff);
  outline-offset: -2px;
}
 
/* ==========================================================================
   03 · OUR STORY — sticky media chapters
   ========================================================================== */
.ab-story {
  background-color: var(--surface-light, #f7f7f5);
  padding-block: var(--space-section, clamp(5rem, 3.33rem + 7.4vw, 10rem));
}
 
.ab-story h2 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--fs-h2, clamp(2rem, 1.5rem + 2.22vw, 3.5rem));
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-on-light, #0a0a0b);
  margin: 0 0 var(--space-8, 64px);
}
 
.ab-story__grid {
  display: grid;
  grid-template-columns: 1fr;
}
 
.ab-story__media { display: none; }
 
.ab-chapter {
  padding-block: var(--space-7, 48px);
  border-top: 1px solid var(--border-on-light, rgba(10, 10, 11, 0.12));
}
 
.ab-chapter__media {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  margin-bottom: var(--space-5, 24px);
  background-color: var(--surface-raised-light, #ffffff);
}
 
.ab-chapter__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
.ab-chapter__act {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cobalt, #2e6bff);
  margin-bottom: var(--space-4, 16px);
}
 
.ab-chapter__line {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.5rem, 1.15rem + 1.6vw, 2.5rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-on-light, #0a0a0b);
  margin: 0 0 var(--space-4, 16px);
}
 
.ab-chapter__text {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--fs-body, clamp(1rem, 0.96rem + 0.19vw, 1.125rem));
  line-height: 1.6;
  color: var(--text-on-light-2, rgba(10, 10, 11, 0.64));
  max-width: 52ch;
  margin: 0;
}
 
@media (min-width: 1024px) {
  .ab-story__grid {
    grid-template-columns: 5fr 6fr;
    gap: calc(var(--gutter, 24px) * 3);
    align-items: start;
  }
 
  .ab-story__media {
    display: block;
    position: sticky;
    top: calc(80px + var(--space-6, 32px));
  }
 
  .ab-story__still {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    background-color: var(--surface-raised-light, #ffffff);
  }
 
  .ab-story__still:first-child {
    position: relative;
    aspect-ratio: 3 / 4;
  }
 
  .ab-story__still.is-active { opacity: 1; }
 
  .ab-story__still img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
 
  .ab-chapter__media { display: none; }
 
  .ab-chapter {
    min-height: 55vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
 
/* ==========================================================================
   04 · LEADERSHIP — reference-style cards
   ========================================================================== */
.ab-team {
  background-color: var(--surface-light, #f7f7f5);
  padding-block: var(--space-section, clamp(5rem, 3.33rem + 7.4vw, 10rem));
}

@media (max-width: 767px) {
  .ab-team { padding-block: 3rem 3.5rem; }
}
 
.ab-team h2 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--fs-h2, clamp(2rem, 1.5rem + 2.22vw, 3.5rem));
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text-on-light, #0a0a0b);
  margin: 0;
}
 
.team-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(74vw, 320px);
  gap: var(--space-4, 16px);
  margin-top: var(--space-8, 64px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
 
.team-strip::-webkit-scrollbar { display: none; }

/* --- Team rail mode (JS adds .is-rail below 1024px when GSAP runs) --------
   The strip stops native-scrolling and rides the pinned rail instead,
   matching the who-we-are gesture. No-JS / no-GSAP: swipe strip stays. */
@media (max-width: 1023.98px) {
  .ab-team.is-rail {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 0;
    overflow: hidden;
  }

  .ab-team.is-rail .team-strip {
    grid-auto-columns: 76vw;
    width: max-content;
    overflow-x: visible;
    scroll-snap-type: none;
    will-change: transform;
  }
}
 
.team-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  scroll-snap-align: start;
  background-color: var(--surface-raised-light, #ffffff);
  border: 1px solid var(--border-on-light, rgba(10, 10, 11, 0.12));
  border-radius: 2px;
  overflow: hidden;
  outline: none;
  transition: border-color 400ms ease;
}
 
.team-card__meta {
  order: 0;
  text-align: center;
  padding: var(--space-6, 32px) var(--space-5, 24px) var(--space-4, 16px);
}
 
.team-card__tag {
  display: inline-block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-on-light-2, rgba(10, 10, 11, 0.64));
  border: 1px solid var(--border-on-light, rgba(10, 10, 11, 0.12));
  border-radius: 2px;
  padding: 5px 10px;
  margin-bottom: var(--space-4, 16px);
}
 
.team-card__role {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-light-3, rgba(10, 10, 11, 0.44));
  margin-bottom: var(--space-2, 8px);
}
 
.team-card__name {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.25rem, 1.1rem + 0.7vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-on-light, #0a0a0b);
}
 
.team-card__media {
  order: 1;
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  margin-top: auto;
}
 
.team-card__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
  /* OPTIONAL — if colour headshots exist:
  filter: grayscale(1);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), filter 400ms ease; */
}
 
@media (min-width: 1024px) {
  .team-strip {
    grid-auto-flow: row;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-columns: unset;
    gap: var(--gutter, 24px);
    overflow: visible;
    scroll-snap-type: none;
  }
 
  @media (hover: hover) and (pointer: fine) {
    .team-card__meta {
      opacity: 0;
      transform: translateY(-8px);
      transition:
        opacity 450ms ease,
        transform 600ms cubic-bezier(0.16, 1, 0.3, 1);
    }
 
    .team-card:hover,
    .team-card:focus-visible {
      border-color: rgba(10, 10, 11, 0.3);
    }
 
    .team-card:hover .team-card__meta,
    .team-card:focus-visible .team-card__meta {
      opacity: 1;
      transform: translateY(0);
    }
 
    .team-card:hover .team-card__media img,
    .team-card:focus-visible .team-card__media img {
      transform: scale(1.04);
      /* filter: grayscale(0);   ← pair with the optional rule above */
    }
  }
}
 
/* ==========================================================================
   06 · VALUES — focus rows + cursor still-ghosting
   ========================================================================== */
.ab-values {
  background-color: var(--surface-light, #f7f7f5);
  padding-block: var(--space-section, clamp(5rem, 3.33rem + 7.4vw, 10rem));
}
 
.value-rows {
  position: relative;                        /* ghost coordinate space */
  margin-top: var(--space-6, 32px);
}
 
.value-row {
  position: relative;
  border-top: 1px solid var(--border-on-light, rgba(10, 10, 11, 0.12));
  padding: var(--space-6, 32px) var(--space-1, 4px);
  transition: opacity 400ms ease;
  outline: none;
}
 
.value-row:last-of-type {
  border-bottom: 1px solid var(--border-on-light, rgba(10, 10, 11, 0.12));
}
 
.value-row::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: var(--cobalt, #2e6bff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}
 
.value-row__title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-4, 16px);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.3125rem, 6.5vw, 3.25rem);
  white-space: nowrap;
  font-variation-settings: "wght" 430;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--text-on-light-3, rgba(10, 10, 11, 0.34));
  margin: 0;
  white-space: nowrap;
  transition:
    color 450ms ease,
    font-variation-settings 550ms cubic-bezier(0.16, 1, 0.3, 1);
}
 
.value-row__arrow {
  font-size: 0.6em;
  color: var(--text-on-light-3, rgba(10, 10, 11, 0.18));
  transition:
    color 400ms ease,
    transform 550ms cubic-bezier(0.16, 1, 0.3, 1);
}
 
.value-row__detail {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 600ms cubic-bezier(0.16, 1, 0.3, 1);
}
 
.value-row__detail > div { overflow: hidden; }
 
.value-row__detail p {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--fs-body, clamp(1rem, 0.96rem + 0.19vw, 1.125rem));
  line-height: 1.6;
  color: var(--text-on-light-2, rgba(10, 10, 11, 0.64));
  max-width: 52ch;
  margin: 0;
  padding-top: var(--space-4, 16px);
  transition: color 450ms ease;
}
 
/* --- Ghost pool ----------------------------------------------------------- */
.ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(180px, 20vw, 260px);
  aspect-ratio: 16 / 10;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  will-change: transform;
  transition: opacity 350ms ease;
  display: none;                             /* enabled by JS on pointer devices */
}
 
.ghost.is-enabled { display: block; }
 
.ghost.is-visible { opacity: 0.55; }
 
.ghost img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
/* --- Lit state -------------------------------------------------------------- */
.value-row.is-lit::before,
.value-row:focus-visible::before {
  transform: scaleX(1);
}
 
.value-row.is-lit .value-row__title,
.value-row:focus-visible .value-row__title {
  color: var(--text-on-light, #0a0a0b);
  font-variation-settings: "wght" 620;
}
 
.value-row.is-lit .value-row__arrow,
.value-row:focus-visible .value-row__arrow {
  color: var(--cobalt, #2e6bff);
  transform: translate(3px, -3px);
}
 
/* --- Desktop: hover spotlight ------------------------------------------------ */
@media (hover: hover) and (pointer: fine) {
  .value-rows:hover .value-row { opacity: 0.35; }
  .value-rows:hover .value-row:hover { opacity: 1; }
 
  .value-row:hover::before { transform: scaleX(1); }
 
  .value-row:hover .value-row__title {
    color: var(--text-on-light, #0a0a0b);
    font-variation-settings: "wght" 620;
  }
 
  .value-row:hover .value-row__arrow {
    color: var(--cobalt, #2e6bff);
    transform: translate(3px, -3px);
  }
 
  .value-row:hover .value-row__detail,
  .value-row:focus-visible .value-row__detail {
    grid-template-rows: 1fr;
  }
 
  .value-row.is-lit:not(:hover):not(:focus-visible)::before { transform: scaleX(0); }
  .value-row.is-lit:not(:hover):not(:focus-visible) .value-row__title {
    color: var(--text-on-light-3, rgba(10, 10, 11, 0.34));
    font-variation-settings: "wght" 430;
  }
  .value-row.is-lit:not(:hover):not(:focus-visible) .value-row__arrow {
    color: var(--text-on-light-3, rgba(10, 10, 11, 0.18));
    transform: none;
  }
}
 
/* --- Touch: details always open, dim copy until lit -------------------------- */
@media (hover: none) {
  .value-row__detail { grid-template-rows: 1fr; }
 
  .value-row__detail p { color: rgba(10, 10, 11, 0.3); }
 
  .value-row.is-lit .value-row__detail p {
    color: var(--text-on-light-2, rgba(10, 10, 11, 0.64));
  }
}
 
/* ==========================================================================
   Reduced motion — final, lit, static states everywhere
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .credits__track { animation: none; }
 
  .ab-reel__frame,
  .ab-reel__play,
  .ab-reel__play-ring,
  .ab-story__still,
  .team-card,
  .team-card__meta,
  .team-card__media img,
  .ww-index__item,
  .ww-statement,
  .value-row,
  .value-row::before,
  .value-row__title,
  .value-row__arrow,
  .value-row__detail,
  .value-row__detail p,
  .ghost {
    transition: none;
  }
 
  .team-card__meta {
    opacity: 1 !important;
    transform: none !important;
  }
 
  .ww-statement { color: var(--text-on-dark, #f7f7f5); }
 
  .ghost { display: none !important; }
 
  .value-row,
  .value-rows:hover .value-row { opacity: 1; }
 
  .value-row__detail { grid-template-rows: 1fr; }
 
  .value-row__title {
    color: var(--text-on-light, #0a0a0b);
    font-variation-settings: "wght" 600;
  }
 
  .value-row__detail p {
    color: var(--text-on-light-2, rgba(10, 10, 11, 0.64));
  }
}

/* --- Custom reel controls -------------------------------------------------
   Hidden until first play; scrim gradient keeps them legible on any frame. */
.reel-ctl {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 20px);
  padding: clamp(16px, 2.2vw, 28px) clamp(16px, 2.5vw, 40px);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.45), transparent);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

[data-reel].has-started .reel-ctl {
  opacity: 1;
  pointer-events: auto;
}

.reel-ctl__toggle {
  flex: none;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background-color: var(--surface-light, #f7f7f5);
  color: var(--surface-dark, #0a0a0b);
  cursor: pointer;
  transition: transform 250ms cubic-bezier(0.16, 1, 0.3, 1);
}

.reel-ctl__toggle svg { width: 20px; height: 20px; fill: currentColor; }
.reel-ctl__toggle .i-pause { display: none; }
[data-reel].is-playing .reel-ctl__toggle .i-play { display: none; }
[data-reel].is-playing .reel-ctl__toggle .i-pause { display: block; }

.reel-ctl__mute {
  flex: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 247, 245, 0.25);
  border-radius: 50%;
  background-color: rgba(10, 10, 11, 0.45);
  color: var(--surface-light, #f7f7f5);
  cursor: pointer;
  transition: border-color 200ms ease, opacity 200ms ease;
}

.reel-ctl__mute svg { width: 17px; height: 17px; fill: currentColor; }
.reel-ctl__mute.is-muted svg { opacity: 0.35; }

@media (hover: hover) and (pointer: fine) {
  .reel-ctl__toggle:hover { transform: scale(1.06); }
  .reel-ctl__mute:hover { border-color: rgba(247, 247, 245, 0.6); }
}

.reel-ctl__toggle:focus-visible,
.reel-ctl__mute:focus-visible,
.reel-ctl__seek:focus-visible {
  outline: 2px solid var(--cobalt, #2e6bff);
  outline-offset: 3px;
}

.reel-ctl__time {
  flex: none;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  font-variant-numeric: tabular-nums;
  color: var(--surface-light, #f7f7f5);
}

/* Scrubber: 2px hairline, white fill via --fill (set by JS), dot thumb */
.reel-ctl__seek {
  --fill: 0%;
  flex: 1;
  appearance: none;
  -webkit-appearance: none;
  height: 2px;
  margin: 0;
  border: 0;
  background: linear-gradient(
    90deg,
    var(--surface-light, #f7f7f5) var(--fill),
    rgba(247, 247, 245, 0.28) var(--fill)
  );
  cursor: pointer;
}

.reel-ctl__seek::-webkit-slider-thumb {
  appearance: none;
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background-color: var(--surface-light, #f7f7f5);
}

.reel-ctl__seek::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background-color: var(--surface-light, #f7f7f5);
}

@media (max-width: 640px) {
  .reel-ctl__toggle { width: 42px; height: 42px; }
  .reel-ctl__mute { width: 38px; height: 38px; }
}

@media (prefers-reduced-motion: reduce) {
  .reel-ctl { transition: none; }
  .reel-ctl__toggle { transition: none; }
}

.ab-ww {
  position: relative;
  background-color: var(--surface-dark, #0a0a0b);
  overflow: hidden;
}
 
.ab-ww__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 55% at 50% 115%,
    rgba(46, 107, 255, 0.28) 0%,
    rgba(30, 82, 224, 0.12) 40%,
    transparent 70%
  );
  pointer-events: none;
}

/* Ambient orb — far layer; drifts opposite the track (about.js) */
.ab-ww__orb {
  position: absolute;
  top: -12%;
  right: -18%;
  width: min(58vw, 640px);
  aspect-ratio: 1;
  background: radial-gradient(
    circle at center,
    rgba(30, 82, 224, 0.22) 0%,
    rgba(30, 82, 224, 0.08) 42%,
    transparent 68%
  );
  pointer-events: none;
  will-change: transform;
}

.ab-ww__pin {
  position: relative;
  z-index: 1;
  padding-block: var(--space-section, clamp(5rem, 3.33rem + 7.4vw, 10rem));
}
 
/* --- Track & panels: vertical stack by default ----------------------------- */
.ww-track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-9, 96px);
}
 
.ww-panel {
  padding-inline: var(--edge, clamp(1.25rem, 4vw, 5rem));
}
 
.ww-panel__label {
  display: block;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cobalt-bright, #5488ff);
  margin-bottom: var(--space-5, 24px);
}
 
.ww-panel__statement {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.875rem, 0.95rem + 3.9vw, 4.75rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text-on-dark-3, rgba(247, 247, 245, 0.4));
  max-width: 18ch;
  margin: 0;
  transition: color 600ms ease;
}
 
.ww-panel.is-active .ww-panel__statement,
html:not(.js) .ww-panel__statement {
  color: var(--text-on-dark, #f7f7f5);
}
 
/* The point behind the statement — quiet, one line of depth */
.ww-panel__support {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--fs-body, clamp(1rem, 0.96rem + 0.19vw, 1.125rem));
  line-height: 1.55;
  color: var(--text-on-dark-2, rgba(247, 247, 245, 0.64));
  max-width: 34ch;
  margin: var(--space-5, 24px) 0 0;
}
 
.ww-panel__media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-4, 16px);
  margin-top: var(--space-6, 32px);
  max-width: 560px;
}
 
.ww-thumb { margin: 0; }
 
.ww-thumb__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background-color: var(--surface-raised-dark, #101012);
}
 
.ww-thumb__frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
.ww-thumb__cap {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-on-dark-3, rgba(247, 247, 245, 0.4));
  margin-top: var(--space-3, 12px);
}
 
/* --- Progress rail ----------------------------------------------------------- */
.ww-progress {
  padding-inline: var(--edge, clamp(1.25rem, 4vw, 5rem));
  margin-top: var(--space-8, 64px);
}
 
.ww-progress__eyebrow { margin-bottom: var(--space-5, 24px); }
 
.ww-index {
  list-style: none;
  margin: 0 0 var(--space-4, 16px);
  padding: 0;
  display: flex;
  gap: var(--space-6, 32px);
}
 
.ww-index__item {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-3, rgba(247, 247, 245, 0.4));
  transition: color 400ms ease;
}
 
.ww-index__item.is-active { color: var(--cobalt-bright, #5488ff); }
 
.ww-progress__rail {
  position: relative;
  height: 1px;
  background-color: var(--border-on-dark, rgba(247, 247, 245, 0.14));
  overflow: hidden;
}
 
.ww-progress__bar {
  position: absolute;
  inset: 0;
  background-color: var(--cobalt, #2e6bff);
  transform: scaleX(0);
  transform-origin: left;
}
 
html:not(.js) .ww-progress { display: none; }
 
/* Scroll cue — desktop slider mode only */
.ww-cue {
  display: none;
  position: absolute;
  top: var(--space-7, 48px);
  right: var(--edge, clamp(1.25rem, 4vw, 5rem));
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-on-dark-3, rgba(247, 247, 245, 0.4));
}
 
/* --- Slider mode, all widths (JS adds .is-slider when GSAP runs) ----------
   Pin-and-slide is the mechanic everywhere. Below 1024px the panel
   strips to label + statement + support line, centred. No-JS / no-GSAP:
   the vertical stack above remains the fallback. */
.ab-ww.is-slider .ab-ww__pin {
  height: 100svh;
  padding-block: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.ab-ww.is-slider .ww-track {
  flex-direction: row;
  gap: 0;
  width: max-content;
  will-change: transform;
}

.ab-ww.is-slider .ww-panel {
  width: 100vw;
  flex-shrink: 0;
}

/* Panel content pre-hidden; about.js reveals per panel arrival */
.ab-ww.is-slider [data-panel-reveal] {
  opacity: 0;
  transform: translateY(48px);
}

/* Statements are fully lit in slider mode — arrival is the reveal */
.ab-ww.is-slider .ww-panel__statement {
  color: var(--text-on-dark, #f7f7f5);
}

@media (max-width: 1023.98px) {
  .ab-ww.is-slider .ww-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: var(--space-8, 64px);
  }

  .ab-ww.is-slider .ww-panel__media { display: none; }

  .ab-ww.is-slider .ww-panel__statement {
    font-size: clamp(2rem, 1.1rem + 4.8vw, 3rem);
  }

  .ab-ww.is-slider .ww-progress {
    margin-top: var(--space-7, 48px);
  }

  /* Index holds one line on small screens */
  .ww-index {
    gap: var(--space-5, 24px);
    white-space: nowrap;
  }

  .ww-index__item { font-size: 0.6875rem; }
}

/* --- Desktop slider mode (JS adds .is-slider when GSAP is running) --------- */
@media (min-width: 1024px) {
  .ab-ww.is-slider .ww-panel {
    display: grid;
    grid-template-columns: 7fr 4fr;
    gap: calc(var(--gutter, 24px) * 3);
    align-items: center;
    padding-block: var(--space-8, 64px);
  }
 
  .ab-ww.is-slider .ww-panel__media {
    margin-top: 0;
    max-width: none;
    grid-template-columns: 1fr;
    gap: var(--space-5, 24px);
  }
 
  .ab-ww.is-slider .ww-panel__media .ww-thumb:last-child {
    width: 76%;
    margin-left: auto;                       /* offset pair — editorial */
  }
 
  .ab-ww.is-slider .ww-cue { display: block; }
 
  .ab-ww.is-slider .ww-progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: var(--space-7, 48px);
    margin-top: 0;
  }
 
  .ab-ww.is-slider .ww-progress__eyebrow {
    position: absolute;
    top: calc(-100svh + var(--space-7, 48px) + 80px);
    margin: 0;
  }
}
 
/* Reduced motion — who-we-are slider final states */
@media (prefers-reduced-motion: reduce) {
  .ww-index__item,
  .ww-panel__statement { transition: none; }

  .ww-panel__statement { color: var(--text-on-dark, #f7f7f5); }

  .ab-ww.is-slider [data-panel-reveal] {
    opacity: 1;
    transform: none;
  }
}

.ab-story {
  background-color: var(--surface-light, #f7f7f5);
  padding-block: var(--space-section, clamp(5rem, 3.33rem + 7.4vw, 10rem));
}
 
.story-flow {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.5rem, 0.9rem + 2.7vw, 3rem);
  font-weight: 600;
  line-height: 1.42;                         /* room for the chips */
  letter-spacing: -0.02em;
  color: var(--text-on-light, #0a0a0b);
  max-width: 32ch;
  margin: 0;
}
 
/* --- Inline still chips ------------------------------------------------------ */
.story-chip {
  display: inline-block;
  height: 1.12em;
  aspect-ratio: 16 / 10;
  vertical-align: -0.16em;
  margin-inline: 0.1em;
  overflow: hidden;                          /* radius 0 — media is sharp */
  position: relative;
  background-color: var(--surface-raised-light, #ffffff);
  box-shadow: inset 0 0 0 1px var(--border-on-light, rgba(10, 10, 11, 0.12));
  transition: transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, clip-path;
}
 
.story-chip img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
.story-chip__ph {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.32em;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--text-on-light-3, rgba(10, 10, 11, 0.44));
}
 
@media (hover: hover) and (pointer: fine) {
  .story-chip:hover { transform: scale(1.12); }
}
 
/* --- Film-title links -------------------------------------------------------- */
.story-flow__title {
  color: var(--cobalt, #2e6bff);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 300ms ease;
}
 
@media (hover: hover) and (pointer: fine) {
  .story-flow__title:hover { border-bottom-color: currentColor; }
}
 
.story-flow__title:focus-visible {
  outline: 2px solid var(--cobalt, #2e6bff);
  outline-offset: 3px;
}
 
/* --- Scrub initial states (JS adds .is-scrub — no-JS never dims) ------------- */
.story-flow.is-scrub .sf-w,
.story-flow.is-scrub .story-flow__title {
  color: var(--text-on-light-3, rgba(10, 10, 11, 0.34));
}
 
.story-flow.is-scrub .story-chip {
  clip-path: inset(0 100% 0 0);
}

.ab-values {
  background-color: var(--surface-light, #f7f7f5);
  padding-block: var(--space-section, clamp(5rem, 3.33rem + 7.4vw, 10rem));
}
 
.values-poster {
  margin-top: var(--space-6, 32px);
  display: flex;
  flex-direction: column;
  gap: var(--space-9, 96px);
}
 
.value-decl { margin: 0; }
 
.value-decl__title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.5rem, 0.8rem + 3.5vw, 4.125rem);
  white-space: nowrap;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--text-on-light, #0a0a0b);
  margin: 0;
  transition: color 500ms ease;
}
 
/* Entrance mask — padding/margin trick keeps descenders unclipped at rest */
.value-decl__mask {
  display: block;
  overflow: hidden;
  padding-block: 0.1em;
  margin-block: -0.1em;
}
 
.value-decl__inner {
  display: block;
  will-change: transform;
}
 
.value-decl__dot {
  display: inline-block;                     /* transformable for the pop */
  color: var(--cobalt, #2e6bff);
  transition: color 500ms ease;
}
 
.value-decl__text {
  font-family: "Inter", system-ui, sans-serif;
  font-size: var(--fs-body, clamp(1rem, 0.96rem + 0.19vw, 1.125rem));
  line-height: 1.6;
  color: var(--text-on-light-2, rgba(10, 10, 11, 0.64));
  max-width: 44ch;
  margin: var(--space-5, 24px) 0 0;
  transition: color 500ms ease;
}
 
@media (min-width: 1024px) {
  .value-decl {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 4fr);
    gap: calc(var(--gutter, 24px) * 2);
    align-items: end;
  }
 
  .value-decl__text { margin-top: 0; }
}
 
/* --- Entrance structure (built by about.js at runtime) --------------------- */
.value-decl__mask {
  display: block;
  overflow: hidden;
}
 
.value-decl__line {
  display: block;
  will-change: transform;
}
 
/* Entrance mask — padding/margin trick keeps descenders unclipped at rest */
.value-decl__mask {
  display: block;
  overflow: hidden;
  padding-block: 0.1em;
  margin-block: -0.1em;
}
 
.value-decl__inner {
  display: block;
  will-change: transform;
}
 
.value-decl__dot {
  display: inline-block;                     /* transformable for the pop */ display: inline-block; }
 
/* --- One lit at a time (JS adds .is-live to the container) ----------------- */
.values-poster.is-live .value-decl:not(.is-lit) .value-decl__title {
  color: var(--text-on-light-3, rgba(10, 10, 11, 0.3));
}
 
.values-poster.is-live .value-decl:not(.is-lit) /* Entrance mask — padding/margin trick keeps descenders unclipped at rest */
.value-decl__mask {
  display: block;
  overflow: hidden;
  padding-block: 0.1em;
  margin-block: -0.1em;
}
 
.value-decl__inner {
  display: block;
  will-change: transform;
}
 
.value-decl__dot {
  display: inline-block;                     /* transformable for the pop */
  color: rgba(46, 107, 255, 0.28);
}
 
.values-poster.is-live .value-decl:not(.is-lit) .value-decl__text {
  color: rgba(10, 10, 11, 0.3);
}
 
/* --------------------------------------------------------------------------
   Add inside your existing  @media (prefers-reduced-motion: reduce)  block
   -------------------------------------------------------------------------- */
/*
  .value-decl__title,
  .value-decl__dot,
  .value-decl__text { transition: none; }
*/

/* Exit-fullscreen chip — top-right, appears only once playback starts */
.reel-ctl__exit {
  position: absolute;
  top: clamp(16px, 3vh, 40px);
  right: clamp(16px, 2.5vw, 40px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(247, 247, 245, 0.18);
  border-radius: 50%;
  background: rgba(10, 10, 11, 0.55);
  color: var(--surface-light, #f7f7f5);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease, background 250ms ease, border-color 250ms ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 5;
}
 
.reel-ctl__exit svg { width: 20px; height: 20px; }
 
[data-reel].has-started .reel-ctl__exit {
  opacity: 1;
  pointer-events: auto;
}
 
@media (hover: hover) and (pointer: fine) {
  .reel-ctl__exit:hover {
    background: rgba(10, 10, 11, 0.8);
    border-color: rgba(247, 247, 245, 0.4);
  }
}
 
.reel-ctl__exit:focus-visible {
  outline: 2px solid var(--cobalt, #2e6bff);
  outline-offset: 3px;
}
 
/* Fullscreen state — the frame IS the screen; video letterboxes on black */
.ab-reel__frame:fullscreen {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  transform: none !important;
  background: var(--surface-dark, #0a0a0b);
}
 
.ab-reel__frame:fullscreen .ab-reel__video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
 
/* Idle fade — controls, exit chip, and cursor sleep after 2.5s playing */
[data-reel].is-idle .reel-ctl,
[data-reel].is-idle .reel-ctl__exit {
  opacity: 0;
  pointer-events: none;
}
 
[data-reel].is-idle,
[data-reel].is-idle * { cursor: none; }
 
@media (prefers-reduced-motion: reduce) {
  .reel-ctl__exit { transition: none; }
}