/* ============================================================
   PROSPER — Main Stylesheet
   Raw · Cinematic · Editorial on White
   ============================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  --white:       #f5f5f3;
  --white-pure:  #ffffff;
  --black:       #0a0a0a;
  --black-2:     #111111;
  --black-3:     #1a1a1a;
  --ink-60:      rgba(10,10,10,0.60);
  --ink-35:      rgba(10,10,10,0.35);
  --ink-15:      rgba(10,10,10,0.15);
  --ink-08:      rgba(10,10,10,0.08);
  --ink-04:      rgba(10,10,10,0.04);
  --border:      rgba(10,10,10,0.12);
  --border-strong: rgba(10,10,10,0.28);

  --font-logo:   'Libre Baskerville', serif;
  --font-display:'Bebas Neue', sans-serif;
  --font-body:   'Montserrat', sans-serif;

  --ease-film:   cubic-bezier(0.77, 0, 0.175, 1);
  --ease-soft:   cubic-bezier(0.4, 0, 0.2, 1);
  --transition:  0.3s var(--ease-soft);
  --max-w:       1200px;
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  overflow-x: hidden;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ── FILM GRAIN OVERLAY ──────────────────────────────────────── */
body::after {
  content: '';
  position: fixed; inset: 0;
  z-index: 9998; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 128px 128px;
  opacity: 0.028;
  mix-blend-mode: multiply;
}

/* ── SCROLLBAR ───────────────────────────────────────────────── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--ink-35); }

/* ── CONTAINER ───────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3.5rem);
}

/* ── SCROLL PROGRESS ─────────────────────────────────────────── */
#scroll-progress {
  position: fixed; top: 0; left: 0;
  height: 1px; width: 0%;
  background: var(--black);
  z-index: 10000; pointer-events: none;
  transition: width 0.08s linear;
}

/* ── LOADER ──────────────────────────────────────────────────── */
#loader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-inner { text-align: center; }
.loader-logo-text {
  font-family: var(--font-logo);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: #f5f5f3;
  letter-spacing: 0.06em;
  animation: loaderReveal 1.8s var(--ease-film) forwards;
}
@keyframes loaderReveal {
  0%   { opacity: 0; letter-spacing: 0.3em; }
  60%  { opacity: 1; }
  100% { opacity: 1; letter-spacing: 0.06em; }
}
.loader-bar {
  width: 120px; height: 1px;
  background: rgba(255,255,255,0.15);
  margin: 1.5rem auto 0;
  overflow: hidden;
}
.loader-fill {
  height: 100%;
  background: #f5f5f3;
  animation: loaderFill 1.8s var(--ease-film) forwards;
}
@keyframes loaderFill { from { width: 0; } to { width: 100%; } }

/* ── TYPOGRAPHY ──────────────────────────────────────────────── */
.label {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-35);
}
.label::before {
  content: ''; display: inline-block;
  width: 22px; height: 1px;
  background: var(--ink-35); flex-shrink: 0;
}
.display {
  font-family: var(--font-display);
  line-height: 0.92; letter-spacing: 0.03em; font-weight: 400;
}
.section { padding: clamp(5rem, 10vw, 10rem) 0; }
.section-alt { background: var(--black); color: var(--white-pure); }
.section-alt .label { color: rgba(255,255,255,0.35); }
.section-alt .label::before { background: rgba(255,255,255,0.35); }
.section-alt .border-line { background: rgba(255,255,255,0.12); }

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.9em 2.2em;
  font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  transition: var(--transition); cursor: pointer; white-space: nowrap;
  border-radius: 0;
}
.btn-dark {
  background: var(--black); color: var(--white);
  border: 1px solid var(--black);
}
.btn-dark:hover { background: var(--black-2); }
.btn-ghost {
  background: transparent; color: var(--black);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-ghost-white {
  background: transparent; color: var(--white-pure);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost-white:hover { background: var(--white-pure); color: var(--black); }
.btn-white {
  background: var(--white-pure); color: var(--black);
  border: 1px solid var(--white-pure);
}
.btn-white:hover { background: transparent; color: var(--white-pure); }

/* ── CINEMATIC TOP CHROMEBAR ─────────────────────────────────────
   Fixed dark film strip at absolute top of viewport.
   Inspired by the video's animated top-bar effect:
   — IRONWILLED-style horizontal strip with scrolling metadata
   — Bright glowing hairline at bottom edge (the "light bleed")
   — Strip-wipe reveal on load (panels retract left + right)
   — Timecode counter on the right
   — Subtle glitch pulse every few seconds
──────────────────────────────────────────────────────────────── */
#top-chromebar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 28px;
  z-index: 2000;              /* above navbar (1000) and everything */
  background: #080808;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Start clipped — wipe panels cover it, JS removes them */
}

/* Top micro-hairline — 1px bright line at the absolute top edge */
.tcb-edge-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255,248,220,0.20) 20%,
    rgba(255,248,220,0.55) 50%,
    rgba(255,248,220,0.20) 80%,
    transparent 100%
  );
  pointer-events: none;
}

/* Bottom glowing hairline — the signature bright edge bleed from the video */
.tcb-edge-bottom {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent   0%,
    rgba(255,248,220,0.15) 10%,
    rgba(255,252,235,0.85) 35%,
    rgba(255,255,255,1.00) 50%,
    rgba(255,252,235,0.85) 65%,
    rgba(255,248,220,0.15) 90%,
    transparent   100%
  );
  pointer-events: none;
  /* Pulse breathing animation — the "heartbeat" light */
  animation: tcbEdgePulse 3.5s ease-in-out infinite;
}
@keyframes tcbEdgePulse {
  0%,100% { opacity: 0.75; }
  45%     { opacity: 1.00; }
  50%     { opacity: 0.40; } /* quick dim flicker — film gate effect */
  55%     { opacity: 1.00; }
}

/* Left bracket — REC dot + brand ID */
.tcb-bracket-left {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.85rem 0 1rem;
  flex-shrink: 0;
  border-right: 1px solid rgba(255,255,255,0.07);
  height: 100%;
}
/* REC indicator */
.tcb-rec {
  display: flex;
  align-items: center;
  gap: 0.32rem;
  font-family: var(--font-body);
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.25);
  text-transform: uppercase;
}
.tcb-rec-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,60,60,0.85);
  flex-shrink: 0;
  animation: tcbRecBlink 1.2s ease-in-out infinite;
}
@keyframes tcbRecBlink {
  0%,45%,100% { opacity: 1; }
  50%,95%     { opacity: 0; }
}
.tcb-sep {
  color: rgba(255,255,255,0.08);
  font-size: 0.55rem;
}
.tcb-id {
  font-family: var(--font-body);
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  white-space: nowrap;
}

/* Scrolling center track */
.tcb-scroll-wrap {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  /* Fade edges so text dissolves gracefully into brackets */
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,0,0,1) 6%,
    rgba(0,0,0,1) 94%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0,0,0,1) 6%,
    rgba(0,0,0,1) 94%,
    transparent 100%
  );
}
.tcb-scroll-track {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  white-space: nowrap;
  will-change: transform;
  /* Smooth infinite left scroll */
  animation: tcbScroll 38s linear infinite;
}
.tcb-scroll-track span {
  font-family: var(--font-body);
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}
.tcb-dot {
  color: rgba(255,248,220,0.30) !important;
  font-size: 0.32rem !important;
  letter-spacing: 0 !important;
}
@keyframes tcbScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Right bracket — timecode */
.tcb-bracket-right {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 1rem 0 0.85rem;
  flex-shrink: 0;
  border-left: 1px solid rgba(255,255,255,0.07);
  height: 100%;
}
.tcb-tc {
  font-family: 'Courier New', monospace;
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.28);
}
.tcb-level {
  font-family: var(--font-body);
  font-size: 0.44rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.20);
  text-transform: uppercase;
  white-space: nowrap;
}

/* ── STRIP WIPE COVER PANELS ─────────────────────────────────── */
/* Two panels — left and right — cover the chromebar on load.
   JS adds .tcb-revealed which retracts them outward via scaleX */
.tcb-wipe-left,
.tcb-wipe-right {
  position: absolute;
  top: 0; bottom: 0;
  width: 51%;         /* overlap 1% at center to avoid gap */
  background: #f5f5f3; /* matches page bg — seamless with loader */
  z-index: 5;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
  pointer-events: none;
}
.tcb-wipe-left  { left: 0;  transform-origin: left;  transform: scaleX(1); }
.tcb-wipe-right { right: 0; transform-origin: right; transform: scaleX(1); }

/* Revealed state — panels retract */
#top-chromebar.tcb-revealed .tcb-wipe-left  { transform: scaleX(0); }
#top-chromebar.tcb-revealed .tcb-wipe-right { transform: scaleX(0); }

/* ── GLITCH PULSE ─────────────────────────────────────────────── */
/* Brief horizontal offset flash — like a broadcast signal hiccup */
#top-chromebar.tcb-glitch .tcb-scroll-track {
  animation: tcbScroll 38s linear infinite, tcbGlitch 0.12s steps(2) forwards;
}
@keyframes tcbGlitch {
  0%   { transform: translateX(var(--scroll-x, 0px)) skewX(-1deg); filter: brightness(1.4); }
  33%  { transform: translateX(calc(var(--scroll-x, 0px) + 3px)) skewX(0.5deg); }
  66%  { transform: translateX(calc(var(--scroll-x, 0px) - 2px)); filter: brightness(0.8); }
  100% { transform: translateX(var(--scroll-x, 0px)) skewX(0); filter: brightness(1); }
}

/* ── NAVBAR OFFSET — pushed down by chromebar height ─────────── */
#navbar {
  top: 28px; /* chromebar height */
}
/* Hero padding compensates for navbar + chromebar combined */
.hero-content {
  padding-top: calc(9rem + 28px);
}

/* ── MOBILE — compress or hide some elements ──────────────────── */
@media (max-width: 600px) {
  #top-chromebar { height: 24px; }
  #navbar { top: 24px; }
  .hero-content { padding-top: calc(7rem + 24px); }
  .tcb-bracket-right { display: none; }
  .tcb-id { display: none; }
  .tcb-scroll-track span { font-size: 0.42rem; }
}
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.6rem 0;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(245,245,243,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 var(--border);
}
.nav-container {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3.5rem);
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-logo);
  font-style: italic; font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--black); letter-spacing: 0.04em;
  text-decoration: none; flex-shrink: 0;
}
.nav-links {
  display: flex; align-items: center;
  gap: clamp(1.5rem, 2.5vw, 2.5rem);
}
.nav-links a {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-60); transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--black); }
.nav-cta {
  background: var(--black) !important;
  color: var(--white) !important;
  padding: 0.55em 1.4em !important;
  font-weight: 700 !important; border-radius: 0;
}
.nav-cta:hover { background: var(--black-2) !important; }
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--black); border-radius: 0;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ── HERO ────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: #080808;   /* match canvas bg — no flash on load */
  padding: 0;
}

/* Canvas fills the entire hero, absolute z-index 0 — always visible */
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: block;
  pointer-events: none;
}

/* Horizontal strip panels */
.hero-strips {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; gap: 2px;
  pointer-events: none;
  z-index: 2;  /* above video (z:1) and canvas (z:0) */
}
.hero-strip {
  flex: 1; position: relative; overflow: hidden;
}
.hero-strip:nth-child(1) { flex: 1.6; background: #0a0a0a; }
.hero-strip:nth-child(2) { flex: 0.5; background: #111; }
.hero-strip:nth-child(3) { flex: 2.8; background: #080808; }
.hero-strip:nth-child(4) { flex: 0.4; background: #0f0f0f; }
.hero-strip:nth-child(5) { flex: 1.4; background: #0a0a0a; }
.hero-strip::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, transparent 40%, transparent 60%, rgba(0,0,0,0.5) 100%);
}
.hero-strip-label {
  position: absolute; top: 50%; transform: translateY(-50%);
  font-size: 0.48rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.10); z-index: 2; white-space: nowrap;
}
.hero-strip-label.left  { left: clamp(1rem, 3vw, 2.5rem); }
.hero-strip-label.right { right: clamp(1rem, 3vw, 2.5rem); }
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; z-index: 3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 120px; opacity: 0.055; mix-blend-mode: overlay;
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 4;
  background: linear-gradient(105deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 5;
  max-width: var(--max-w); margin: 0 auto;
  padding: 9rem clamp(1.25rem, 5vw, 3.5rem) 7rem;
  width: 100%;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 2.5rem;
  opacity: 0; transform: translateY(16px);
  animation: fadeUp 0.8s var(--ease-soft) 2s forwards;
}
.hero-eyebrow-line {
  width: 32px; height: 1px; background: rgba(255,255,255,0.4); flex-shrink: 0;
}
.hero-eyebrow span {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-title {
  font-family: var(--font-logo);
  font-style: italic; font-weight: 700;
  font-size: clamp(5rem, 13vw, 11rem);
  line-height: 0.88; letter-spacing: 0.01em;
  color: var(--white);
  margin-bottom: 2.5rem;
}
.hero-title .ht-line {
  display: block; overflow: hidden;
}
.hero-title .ht-inner {
  display: block;
  transform: translateY(110%);
  animation: slideUp 1s var(--ease-film) forwards;
}
.hero-title .ht-line:nth-child(1) .ht-inner { animation-delay: 1.9s; }
.hero-title .ht-line:nth-child(2) .ht-inner { animation-delay: 2.05s; }
.hero-title .ht-line:nth-child(3) .ht-inner { animation-delay: 2.2s; color: rgba(245,245,243,0.35); }
@keyframes slideUp {
  from { transform: translateY(110%); }
  to   { transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-body {
  opacity: 0; animation: fadeUp 0.8s var(--ease-soft) 2.5s forwards;
}
.hero-sub-wrap {
  display: flex; flex-direction: column; gap: 1rem;
  max-width: 520px;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: rgba(245,245,243,0.70);
  line-height: 1.75; font-weight: 500;
}
.hero-sub-support {
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  color: rgba(245,245,243,0.42);
  line-height: 1.85;
}
.hero-stats {
  display: flex; gap: 2.5rem; flex-shrink: 0;
}
.hero-stat { text-align: right; }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem; color: var(--white);
  line-height: 1; letter-spacing: 0.03em;
}
.hero-stat-lbl {
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(245,245,243,0.35); margin-top: 0.3rem; display: block;
}
.hero-actions {
  display: flex; align-items: center; gap: 1rem;
  margin-top: 3rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease-soft) 2.75s forwards;
  flex-wrap: wrap;
}

/* ── Hero trust microcopy strip ──────────────────────────────── */
.hero-trust {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease-soft) 3s forwards;
}
.hero-trust-item {
  display: flex; align-items: center; gap: 0.45rem;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  white-space: nowrap;
}
.hero-trust-item i {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.25);
}
.hero-trust-dot {
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.25); font-size: 0.55rem;
  letter-spacing: 0.25em; text-transform: uppercase; z-index: 5;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:.3} 50%{opacity:.9} }

/* Particle runner SVG */
.hero-runner {
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  width: clamp(260px, 36vw, 520px);
  pointer-events: none; z-index: 2;
  opacity: 0; animation: fadeUp 1.5s ease 2.8s forwards;
}

/* ── TICKER ──────────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--black); border-top: 1px solid rgba(255,255,255,0.07);
  overflow: hidden; padding: 0.85rem 0;
}
.ticker-track {
  display: inline-flex; gap: 3rem; white-space: nowrap;
  animation: ticker 35s linear infinite;
}
.ticker-track span {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.28em; color: rgba(255,255,255,0.2);
  text-transform: uppercase;
}
.ticker-dot { color: rgba(255,255,255,0.07) !important; }
@keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── WIPE DIVIDER ────────────────────────────────────────────── */
.wipe-divider {
  height: 1px; background: var(--border);
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.2s var(--ease-film);
}
.wipe-divider.wipe-in { transform: scaleX(1); }

/* ══════════════════════════════════════════════════════════════
   CINEMATIC PROGRAMS SECTION
   Video-inspired immersive program cards
   ══════════════════════════════════════════════════════════════ */

/* ── Section wrapper ─────────────────────────────────────────── */
.programs-cinematic {
  background: #080808;
  color: var(--white-pure);
  position: relative;
  overflow: hidden;
}
.programs-cinematic .label { color: rgba(255,255,255,0.35); }
.programs-cinematic .label::before { background: rgba(255,255,255,0.35); }

/* Animated background strips behind the whole section */
.prog-bg-strips {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  pointer-events: none; z-index: 0;
}
.prog-bg-strip {
  flex: 1;
  background: linear-gradient(90deg, #050505 0%, #0d0d0d 50%, #060606 100%);
}
.prog-bg-strip:nth-child(2) {
  background: linear-gradient(90deg, #0a0a0a 0%, #111 50%, #080808 100%);
}
.programs-cinematic .container { position: relative; z-index: 1; }

/* ── Section header ──────────────────────────────────────────── */
.programs-header-cine {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 3rem;
  margin-bottom: 4rem; flex-wrap: wrap;
}
.prog-hdr-left { flex-shrink: 0; }
.programs-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 6.5rem);
  line-height: 0.9; letter-spacing: 0.03em;
  color: var(--white-pure);
  margin-top: 1rem;
}
.programs-title em { color: rgba(255,255,255,0.25); font-style: normal; }
.programs-sub {
  font-size: 0.85rem; color: rgba(255,255,255,0.45);
  max-width: 320px; line-height: 1.85;
  padding-bottom: 0.25rem; margin-bottom: 2rem;
}
.prog-hdr-right { display: flex; flex-direction: column; }
.prog-hdr-stats {
  display: flex; gap: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}
.prog-hdr-stat { display: flex; flex-direction: column; gap: 0.2rem; }
.prog-hdr-num {
  font-family: var(--font-display);
  font-size: 2.5rem; color: var(--white-pure);
  line-height: 1; letter-spacing: 0.03em;
}
.prog-hdr-lbl {
  font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}

/* ══════════════════════════════════════════════════════════════
   CINEMATIC PROGRAM STACK — vertical rows, video ↔ content
   ══════════════════════════════════════════════════════════════ */

.prog-cine-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ── Individual row card ─────────────────────────────────────── */
.prog-cine-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;   /* video : content — equal halves */
  min-height: 520px;
  overflow: hidden;
  background: #0d0d0d;
  cursor: default;
  /* Initial hidden state — JS adds .prc-revealed */
  opacity: 0;
}
/* card--left  = video on left,  content on right (default DOM order) */
/* card--right = content on left, video on right  (DOM order swapped) */

/* Scanline that sweeps down the card on reveal */
.pcc-scanline {
  position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  z-index: 10; pointer-events: none;
  opacity: 0;
  transition: none;
}
.prog-cine-card.prc-revealed .pcc-scanline {
  animation: pccScanDown 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}
@keyframes pccScanDown {
  0%   { top: 0;    opacity: 0; }
  4%   { opacity: 0.9; }
  96%  { opacity: 0.6; }
  100% { top: 100%; opacity: 0; }
}

/* Featured card gets a glowing hairline on top edge */
.prog-cine-featured {
  background: #111;
}
.prog-cine-featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px; z-index: 5; pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
}

/* ── VIDEO / MEDIA PANEL ─────────────────────────────────────── */
.prog-cine-media {
  position: relative;
  width: 100%; height: 100%;
  overflow: hidden;
  background: #050505;
  flex-shrink: 0;
  /* Video panel slides in from its side */
  transform: translateX(0);
  transition: transform 0s;
}
/* card--left: video is first child → slides from left */
.prog-cine-card--left .prog-cine-media  { transform: translateX(-60px); transition: transform 0.9s cubic-bezier(0.77,0,0.175,1); }
.prog-cine-card.prc-revealed.prog-cine-card--left .prog-cine-media { transform: translateX(0); }
/* card--right: video is last child → slides from right */
.prog-cine-card--right .prog-cine-media { transform: translateX(60px); transition: transform 0.9s cubic-bezier(0.77,0,0.175,1); }
.prog-cine-card.prc-revealed.prog-cine-card--right .prog-cine-media { transform: translateX(0); }

.prog-cine-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.72) saturate(0.85) contrast(1.1);
  transition: filter 0.6s ease, transform 0.7s var(--ease-soft);
}
.prog-cine-card:hover .prog-cine-video {
  filter: brightness(0.88) saturate(1.0) contrast(1.05);
  transform: scale(1.04);
}
.prog-cine-media.no-video {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0d0d0d 100%);
}

/* Vertical large ghost number watermark on media panel */
.prog-cine-media-num {
  position: absolute;
  bottom: -1rem; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: clamp(8rem, 18vw, 16rem);
  color: rgba(255,255,255,0.04);
  letter-spacing: 0.02em; line-height: 1;
  pointer-events: none; user-select: none;
  white-space: nowrap;
}

/* Color grade overlay over video */
.prog-cine-grade {
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.0) 0%,
    rgba(0,0,0,0.45) 100%
  );
  pointer-events: none;
}
/* card--right: gradient flips (video is on right, content on left) */
.prog-cine-card--right .prog-cine-grade {
  background: linear-gradient(
    to left,
    rgba(0,0,0,0.0) 0%,
    rgba(0,0,0,0.45) 100%
  );
}
.prog-cine-grade--featured {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.0) 0%,
    rgba(0,0,0,0.35) 100%
  );
}

/* Film metadata strip at bottom of video */
.prog-cine-film-meta {
  position: absolute;
  bottom: 0.75rem; left: 0.9rem;
  display: flex; align-items: center; gap: 0.5rem;
  pointer-events: none;
}
.pcfm-seq {
  font-family: 'Courier New', monospace;
  font-size: 0.52rem; font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
}
.pcfm-rule {
  width: 16px; height: 1px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.pcfm-code {
  font-size: 0.48rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

/* Level badge — top right of video */
.prog-cine-lvl-badge {
  position: absolute;
  top: 0.75rem; right: 0.9rem;
  font-size: 0.48rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.3em 0.65em;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.prog-cine-lvl-badge--featured {
  color: var(--white-pure);
  background: rgba(0,0,0,0.7);
  border-color: rgba(255,255,255,0.3);
}

/* ── Content panel ───────────────────────────────────────────── */
.prog-cine-content {
  display: flex; flex-direction: column;
  padding: clamp(2rem, 4vw, 3.5rem) clamp(1.75rem, 4vw, 3.5rem);
  border-left: 1px solid rgba(255,255,255,0.07);
  position: relative; justify-content: center;
  /* Content panel slides in from opposite side to video */
  transition: opacity 0.7s ease 0.2s, transform 0.8s cubic-bezier(0.4,0,0.2,1) 0.15s;
}
.prog-cine-card--left  .prog-cine-content { transform: translateX(40px); opacity: 0; }
.prog-cine-card--right .prog-cine-content { transform: translateX(-40px); opacity: 0; border-left: none; border-right: 1px solid rgba(255,255,255,0.07); }
.prog-cine-card.prc-revealed .prog-cine-content { transform: translateX(0); opacity: 1; }

.prog-cine-content--featured {
  border-color: rgba(255,255,255,0.15);
}

/* Top bar — eyebrow + price */
.prog-cine-topbar {
  display: flex; align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}
.prog-cine-eyebrow {
  font-size: 0.52rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  display: flex; align-items: center; gap: 0.5rem;
}
.prog-cine-eyebrow::before {
  content: ''; width: 14px; height: 1px;
  background: rgba(255,255,255,0.3); flex-shrink: 0;
}
.prog-cine-eyebrow--featured { color: rgba(255,255,255,0.6); }
.prog-cine-eyebrow--featured::before { background: rgba(255,255,255,0.5); }

.prog-cine-price-tag {
  font-family: var(--font-display);
  font-size: 1.6rem; letter-spacing: 0.03em;
  color: rgba(255,255,255,0.4);
  line-height: 1;
}
.prog-cine-price-tag--featured {
  color: var(--white-pure);
  text-shadow: 0 0 20px rgba(255,255,255,0.2);
}

/* Program name */
.prog-cine-name {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: 0.03em; line-height: 0.88;
  color: var(--white-pure);
  margin-bottom: 0.5rem;
}
.prog-cine-tagline {
  font-size: 0.83rem; color: rgba(255,255,255,0.45);
  margin: 0.25rem 0 1.5rem;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ── "Best for" positioning line ──────────────────────────────── */
.prog-cine-best-for {
  display: flex; align-items: flex-start; gap: 0.6rem;
  background: rgba(255,255,255,0.05);
  border-left: 2px solid rgba(255,255,255,0.3);
  padding: 0.65rem 0.85rem;
  margin-bottom: 1.5rem;
  border-radius: 0 3px 3px 0;
}
.prog-cine-best-for--featured {
  border-left-color: #fff;
  background: rgba(255,255,255,0.09);
}
.pcbf-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap; padding-top: 0.1rem;
}
.pcbf-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.8);
  line-height: 1.45;
}

/* ── Phase Journey Timeline ──────────────────────────────────── */
.prog-cine-journey {
  display: flex; align-items: center;
  gap: 0; margin-bottom: 1.75rem;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  padding: 0;
  overflow: hidden;
}
.prog-cine-journey--featured {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.06);
}
.pcj-phase {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; padding: 0.9rem 0.5rem;
  gap: 0.2rem; position: relative;
  transition: background 0.3s;
}
.pcj-phase.active {
  background: rgba(255,255,255,0.07);
}
.prog-cine-featured .pcj-phase.active {
  background: rgba(255,255,255,0.12);
}
.pcj-phase::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.pcj-phase:last-child::after { display: none; }

.pcj-num {
  font-family: 'Courier New', monospace;
  font-size: 0.46rem; font-weight: 700;
  letter-spacing: 0.15em; color: rgba(255,255,255,0.2);
}
.pcj-label {
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.prog-cine-featured .pcj-label { color: var(--white-pure); }
.pcj-months {
  font-size: 0.48rem; color: rgba(255,255,255,0.25);
  letter-spacing: 0.08em;
}
.pcj-line { display: none; } /* kept for legacy compat */

/* ── Stats strip ─────────────────────────────────────────────── */
.prog-cine-stats {
  display: flex; align-items: center;
  gap: 0; margin-bottom: 1.75rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-top: none;
  background: rgba(0,0,0,0.25);
}
.prog-cine-stats--featured {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.04);
}
.pcs-item {
  flex: 1; display: flex; align-items: center;
  gap: 0.45rem; padding: 0.7rem 0.6rem;
  justify-content: center;
}
.pcs-item i {
  font-size: 0.6rem; color: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.prog-cine-stats--featured .pcs-item i { color: rgba(255,255,255,0.4); }
.pcs-val {
  font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.05em; color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.prog-cine-stats--featured .pcs-val { color: rgba(255,255,255,0.75); }
.pcs-divider {
  width: 1px; height: 24px;
  background: rgba(255,255,255,0.07);
  flex-shrink: 0;
}

/* ── Features grid ───────────────────────────────────────────── */
.prog-cine-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 0.55rem; flex: 1; margin-bottom: 2rem;
}
.pcf-item {
  display: flex; align-items: flex-start;
  gap: 0.6rem; font-size: 0.72rem;
  color: rgba(255,255,255,0.5); line-height: 1.45;
}
.prog-cine-features--featured .pcf-item { color: rgba(255,255,255,0.75); }
.pcf-item i {
  font-size: 0.52rem; color: rgba(255,255,255,0.25);
  flex-shrink: 0; margin-top: 0.2em;
}
.prog-cine-features--featured .pcf-item i { color: rgba(255,255,255,0.5); }

/* ── CTA row ─────────────────────────────────────────────────── */
.prog-cine-cta {
  display: flex; align-items: center;
  gap: 1.25rem; margin-top: 2rem;
}
.prog-cine-buy {
  font-size: 0.65rem !important;
}
.prog-cine-preview-btn {
  background: none; border: none; cursor: pointer;
  font-family: var(--font-body); font-size: 0.65rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: flex; align-items: center; gap: 0.4rem;
  transition: color 0.25s; white-space: nowrap; padding: 0;
  flex-shrink: 0;
}
.prog-cine-preview-btn:hover { color: rgba(255,255,255,0.75); }
.prog-cine-preview-btn--featured { color: rgba(255,255,255,0.45); }
.prog-cine-preview-btn--featured:hover { color: var(--white-pure); }

/* ── Most Popular ribbon ─────────────────────────────────────── */
.prog-cine-ribbon {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 0.5rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--white-pure); color: var(--black);
  padding: 0.35em 1.2em;
  pointer-events: none;
}

/* ── Complete System banner ──────────────────────────────────── */
.prog-complete-banner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  margin-top: 2px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: none;
  padding: 2.25rem 2.5rem;
  position: relative; overflow: hidden;
}
.prog-complete-banner::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15) 50%, transparent);
}
.pcb-left {
  display: flex; align-items: center; gap: 2rem; flex: 1; min-width: 280px;
}
.pcb-filmstrip {
  display: flex; flex-direction: column;
  gap: 3px; flex-shrink: 0;
}
.pcb-filmstrip span {
  display: block; width: 8px; height: 6px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
}
.pcb-badge {
  font-size: 0.5rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 0.3em 0.8em; margin-bottom: 0.6rem;
  display: inline-block;
}
.pcb-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem); letter-spacing: 0.04em;
  color: var(--white-pure); line-height: 1.05;
  margin-bottom: 0.5rem;
}
.pcb-sub {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  line-height: 1.7; max-width: 440px;
  margin-bottom: 0.4rem;
}
.pcb-value {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.35);
  font-style: italic;
  margin: 0;
}
.pcb-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.25rem; flex-shrink: 0;
}
.pcb-price-block {
  display: flex; flex-direction: column; align-items: flex-end; gap: 0.3rem;
}
.pcb-price-wrap {
  display: flex; align-items: baseline; gap: 0.6rem;
}
.pcb-orig {
  font-family: var(--font-display);
  font-size: 1.5rem; color: rgba(255,255,255,0.2);
  text-decoration: line-through; letter-spacing: 0.03em;
}
.pcb-price {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3rem); color: var(--white-pure);
  letter-spacing: 0.03em; line-height: 1;
}
.pcb-savings {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.pcb-cta {
  white-space: nowrap;
  font-size: 0.72rem; letter-spacing: 0.12em;
}

/* ══════════════════════════════════════════════════════════════
   CINEMATIC SPECIALTY SECTION
   ══════════════════════════════════════════════════════════════ */

.specialty-cinematic {
  background: var(--black);
  color: var(--white-pure);
}
.specialty-cinematic .label { color: rgba(255,255,255,0.35); }
.specialty-cinematic .label::before { background: rgba(255,255,255,0.35); }

/* Section header */
.spec-hdr {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 2rem;
  margin-bottom: 4rem; flex-wrap: wrap;
}
.spec-hdr-title {
  font-size: clamp(3rem, 7vw, 6rem);
  margin: 1rem 0 0.5rem;
  color: var(--white-pure);
}
.spec-hdr-sub {
  font-size: 0.9rem; color: rgba(255,255,255,0.4);
  max-width: 380px; line-height: 1.8;
}

/* ── Cinematic grid ──────────────────────────────────────────── */
.spec-cine-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}

/* Card size variants */
.spec-cine-lg {
  grid-column: span 2;
  min-height: 480px;
}
.spec-cine-sm {
  grid-column: span 1;
  min-height: 300px;
}
.spec-cine-wide {
  grid-column: span 2;
  min-height: 220px;
}

/* ── Base card styles ────────────────────────────────────────── */
.spec-cine-card {
  position: relative; overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s var(--ease-soft), box-shadow 0.35s ease;
}
.spec-cine-card:hover {
  transform: translateY(-4px);
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.spec-cine-locked { cursor: default; opacity: 0.45; pointer-events: none; }

.scc-inner {
  position: relative; width: 100%; height: 100%;
  min-height: inherit;
  display: flex; flex-direction: column;
}

/* ── Background textures ─────────────────────────────────────── */
.scc-bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.scc-bg-pattern {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 80px; opacity: 0.06; mix-blend-mode: overlay;
  pointer-events: none;
}

/* Unique color per card */
.scc-bg--muscle {
  background: linear-gradient(145deg, #0d0d0d 0%, #1a1008 40%, #0f0c06 70%, #080808 100%);
}
.scc-bg--muscle::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(80,50,10,0.25) 0%, transparent 65%);
}
.scc-bg--weightloss {
  background: linear-gradient(145deg, #0d0808 0%, #1a0a0a 40%, #0f0808 70%, #080808 100%);
}
.scc-bg--weightloss::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(80,15,15,0.25) 0%, transparent 65%);
}
.scc-bg--cardio {
  background: linear-gradient(145deg, #060b10 0%, #0a1018 40%, #060c12 70%, #050808 100%);
}
.scc-bg--cardio::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(10,30,50,0.3) 0%, transparent 70%);
}
.scc-bg--abs {
  background: linear-gradient(145deg, #080d0a 0%, #0c1410 40%, #070d09 70%, #050808 100%);
}
.scc-bg--abs::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(10,35,20,0.3) 0%, transparent 70%);
}
.scc-bg--complete {
  background: linear-gradient(145deg, #0a0a0d 0%, #121218 40%, #0a0a10 70%, #070708 100%);
}
.scc-bg--complete::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(20,15,40,0.35) 0%, transparent 60%);
}
.scc-bg--locked {
  background: #0a0a0a;
}

/* ── Overlay gradient ────────────────────────────────────────── */
.scc-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.10) 100%
  );
  transition: background 0.4s ease;
}
.spec-cine-card:hover .scc-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9) 0%,
    rgba(0,0,0,0.4) 45%,
    rgba(0,0,0,0.12) 100%
  );
}
.scc-overlay--sm {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.4) 55%,
    rgba(0,0,0,0.10) 100%
  );
}
.scc-overlay--wide {
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.0) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.85) 100%
  );
}

/* ── Film notches ────────────────────────────────────────────── */
.scc-notches {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 14px; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: space-around; padding: 1rem 0;
  pointer-events: none;
  border-right: 1px solid rgba(255,255,255,0.06);
}
.scc-notches span {
  display: block; height: 10px;
  width: 8px; margin-left: 3px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.4);
}

/* ── Scanlines ───────────────────────────────────────────────── */
.scc-scanlines {
  position: absolute; inset: 0; z-index: 2;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.04) 2px,
    rgba(0,0,0,0.04) 4px
  );
  pointer-events: none; mix-blend-mode: multiply;
}

/* ── Content ─────────────────────────────────────────────────── */
.scc-content {
  position: absolute; inset: 0;
  z-index: 3;
  display: flex; flex-direction: column;
  justify-content: flex-end;
  padding: 2rem 2rem 2rem 2.5rem;
}
.scc-content--sm {
  padding: 1.5rem 1.5rem 1.75rem 1.75rem;
}
.scc-content--wide {
  flex-direction: row; align-items: center;
  gap: 2.5rem; padding: 1.75rem 2.5rem;
}
.scc-wide-left {
  display: flex; flex-direction: column;
  flex-shrink: 0; gap: 0.5rem;
}
.scc-wide-right { flex: 1; }
.scc-wide-desc {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
  line-height: 1.7; margin-bottom: 1.25rem; max-width: 400px;
}

/* Sequence number */
.scc-seq {
  font-family: 'Courier New', monospace;
  font-size: 0.5rem; font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.2);
  margin-bottom: 0.75rem;
}

/* Icon */
.scc-icon {
  font-size: 1.6rem; color: rgba(255,255,255,0.5);
  margin-bottom: 0.75rem;
  transition: color 0.3s, transform 0.35s var(--ease-soft);
}
.spec-cine-card:hover .scc-icon { color: rgba(255,255,255,0.8); transform: scale(1.08); }
.scc-icon--sm { font-size: 1.2rem; margin-bottom: 0.5rem; }

/* Name */
.scc-name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  letter-spacing: 0.03em; line-height: 0.92;
  color: var(--white-pure); margin-bottom: 1rem;
}
.scc-name--sm {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin-bottom: 0.75rem;
}

/* Tags */
.scc-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-bottom: 1.25rem;
}
.scc-tags span {
  font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.25em 0.7em;
  transition: border-color 0.3s, color 0.3s;
}
.spec-cine-card:hover .scc-tags span {
  border-color: rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.65);
}
.scc-tags--sm span { font-size: 0.5rem; padding: 0.2em 0.55em; }

/* Positioning line — "Built for…" */
.scc-positioning {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem; font-weight: 600;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  margin: 0.1rem 0 0.85rem;
  letter-spacing: 0.01em;
}
.scc-positioning--sm {
  font-size: 0.65rem;
  margin: 0.1rem 0 0.7rem;
}

/* Description */
.scc-desc {
  font-size: 0.8rem; color: rgba(255,255,255,0.5);
  line-height: 1.75; margin-bottom: 1.5rem;
  max-width: 380px;
}

/* CTA */
.scc-cta {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: flex; align-items: center; gap: 0.5rem;
  transition: color 0.3s, gap 0.3s;
}
.spec-cine-card:hover .scc-cta { color: var(--white-pure); gap: 0.75rem; }
.scc-cta--sm { font-size: 0.6rem; }
.scc-cta--waitlist {
  color: rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 0.15rem;
  transition: color 0.3s, border-color 0.3s, gap 0.3s;
}
.spec-cine-card:hover .scc-cta--waitlist {
  color: var(--white-pure);
  border-color: rgba(255,255,255,0.4);
}

/* ── Responsive adjustments ──────────────────────────────────── */
@media (max-width: 1024px) {
  .prog-cine-card { grid-template-columns: 1fr; min-height: auto; }
  .prog-cine-card--right { direction: ltr; }
  .prog-cine-media { height: 56vw; max-height: 400px; }
  .prog-cine-content,
  .prog-cine-card--right .prog-cine-content { border-left: none; border-right: none; border-top: 1px solid rgba(255,255,255,0.07); padding: 2rem 1.75rem; }
  .prog-cine-features { grid-template-columns: 1fr 1fr; }

  .spec-cine-grid {
    grid-template-columns: 1fr 1fr;
  }
  .spec-cine-lg { grid-column: span 1; min-height: 380px; }
  .spec-cine-wide { grid-column: span 2; }
  .spec-cine-sm { grid-column: span 1; }
}

@media (max-width: 768px) {
  .programs-header-cine { flex-direction: column; align-items: flex-start; }
  .prog-hdr-stats { gap: 1.5rem; }
  .prog-cine-media { height: 60vw; max-height: 340px; }
  .prog-cine-content,
  .prog-cine-card--right .prog-cine-content { padding: 1.5rem 1.25rem 2rem; }
  .prog-cine-name { font-size: clamp(2.5rem, 8vw, 4rem); }
  .prog-cine-features { grid-template-columns: 1fr 1fr; }
  .prog-complete-banner { flex-direction: column; align-items: flex-start; }
  .pcb-left { flex-wrap: wrap; }

  .spec-cine-grid {
    grid-template-columns: 1fr;
  }
  .spec-cine-lg,
  .spec-cine-sm,
  .spec-cine-wide { grid-column: span 1; }
  .spec-cine-lg { min-height: 340px; }
  .spec-cine-sm { min-height: 260px; }
  .spec-cine-wide { min-height: 200px; }
  .scc-content--wide { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .spec-hdr { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .prog-cine-features { grid-template-columns: 1fr; }
  .prog-cine-cta { flex-direction: column; align-items: flex-start; gap: 0.75rem; }
}

/* ── Legacy card selectors — hidden, replaced by cinematic cards ─ */
.prog-card { display: none; }
.programs-grid { display: none; }
.specialty-grid { display: none; }

/* ── PLACEHOLDER IMAGE ───────────────────────────────────────── */
.ph-img {
  width: 100%; aspect-ratio: 4/5;
  background: var(--ink-08);
  border: 1px solid var(--border);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 0.5rem; position: relative; overflow: hidden;
}
.ph-img::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 80px; opacity: 0.04; mix-blend-mode: multiply;
}
.ph-img-icon { font-size: 1.5rem; color: var(--ink-15); }
.ph-img-label {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--ink-15);
}
.ph-img-dark {
  background: #1a1a1a;
  border-color: rgba(255,255,255,0.08);
}
.ph-img-dark .ph-img-icon { color: rgba(255,255,255,0.12); }
.ph-img-dark .ph-img-label { color: rgba(255,255,255,0.12); }

/* ── METHOD / PHILOSOPHY ─────────────────────────────────────── */
#method { background: var(--black); color: var(--white-pure); }
.method-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  margin-top: 4rem;
}
.method-card {
  background: var(--black);
  padding: 3rem 2.5rem;
  transition: background 0.3s;
}
.method-card:hover { background: #111; }
.method-num {
  font-family: var(--font-display);
  font-size: 5rem; color: rgba(255,255,255,0.04);
  line-height: 1; margin-bottom: 1.5rem; letter-spacing: 0.03em;
}
.method-card::before {
  content: ''; display: block;
  width: 20px; height: 1px;
  background: rgba(255,255,255,0.2);
  margin-bottom: 2rem;
  transition: width 0.4s var(--ease-soft);
}
.method-card:hover::before { width: 40px; background: rgba(255,255,255,0.5); }
.method-title {
  font-size: 0.9rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white-pure); margin-bottom: 0.75rem;
}
.method-desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.45);
  line-height: 1.8;
}
.method-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.5rem; }
.method-tag {
  font-size: 0.56rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  border: 1px solid rgba(255,255,255,0.1); padding: 0.25em 0.65em;
}

/* ── SPECIALTY (legacy — replaced by .specialty-cinematic) ───── */
#specialty { background: var(--black); }

/* ── PRICING ─────────────────────────────────────────────────── */
#pricing { background: var(--black); color: var(--white-pure); }
/* ══════════════════════════════════════════════════════════════
   PRICING — IMMERSIVE STICKY SCROLL
   Each panel fills the viewport and locks as the user scrolls.
   Video plays full-bleed. Content rises from the bottom edge.
   JS adds .pip--active when panel enters, .pip--past when it leaves.
   ══════════════════════════════════════════════════════════════ */

/* ── Section wrapper ─────────────────────────────────────── */
.pricing-immersive {
  background: var(--black);
  color: var(--white-pure);
  position: relative;
}

/* ── Intro header ────────────────────────────────────────── */
.pricing-imm-intro {
  padding: var(--section-pad) 0 4rem;
  position: relative;
  z-index: 2;
}
.pricing-imm-title {
  font-size: clamp(3rem, 7vw, 6rem);
  margin: 1rem 0 0.5rem;
  color: var(--white-pure);
}
.pricing-imm-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  max-width: 480px;
  line-height: 1.8;
  margin: 0 0 2.5rem;
}
/* Scroll cue */
.pricing-imm-scroll-cue {
  display: flex; align-items: center; gap: 0.75rem;
}
.pisc-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.pisc-line {
  flex: 1; max-width: 60px; height: 1px;
  background: rgba(255,255,255,0.15);
}
.pisc-arrow {
  font-size: 0.6rem;
  color: rgba(255,255,255,0.25);
  animation: pipArrowBounce 1.6s ease-in-out infinite;
}
@keyframes pipArrowBounce {
  0%, 100% { transform: translateY(0); opacity: 0.25; }
  50%       { transform: translateY(4px); opacity: 0.5; }
}

/* ── Sticky scroll track ─────────────────────────────────── */
.pricing-imm-track {
  position: relative;
}

/* ── Each panel ──────────────────────────────────────────── */
.pricing-imm-panel {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  /* Stack panels — each one sits on top of the previous */
  z-index: 1;
}
/* Each subsequent panel stacks higher */
.pricing-imm-panel:nth-child(1) { z-index: 1; }
.pricing-imm-panel:nth-child(2) { z-index: 2; }
.pricing-imm-panel:nth-child(3) { z-index: 3; }

/* Scroll spacer — each panel needs height to "scroll through" */
.pricing-imm-track::before,
.pricing-imm-track::after { content: ''; display: block; }

/* ── Video — fills the entire panel ─────────────────────── */
.pip-media {
  position: absolute; inset: 0;
  overflow: hidden;
  background: #050505;
}
.pip-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.45) saturate(0.8) contrast(1.15);
  transform: scale(1.05);
  transition: filter 0.8s ease, transform 8s linear;
  will-change: transform;
}
.pricing-imm-panel.pip--active .pip-video {
  filter: brightness(0.55) saturate(0.9) contrast(1.1);
  transform: scale(1.0);
}
.pip-media.no-video {
  background: linear-gradient(135deg, #080808 0%, #181818 100%);
}

/* Grade — heavy vignette so text is always legible */
.pip-grade {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(to top,  rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.3) 55%, rgba(0,0,0,0.1) 100%),
    linear-gradient(to right, rgba(0,0,0,0.4) 0%, transparent 60%);
}
.pip-grade--featured {
  background:
    linear-gradient(to top,  rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.05) 100%),
    linear-gradient(to right, rgba(0,0,0,0.3) 0%, transparent 60%);
}

/* Film chromebar — bottom left of video */
.pip-chromebar {
  position: absolute;
  top: 1rem; left: 1.25rem;
  display: flex; align-items: center; gap: 0.55rem;
  pointer-events: none; z-index: 5;
}
.pip-seq {
  font-family: 'Courier New', monospace;
  font-size: 0.52rem; font-weight: 700;
  letter-spacing: 0.15em;
  color: rgba(255,255,255,0.35);
}
.pip-rule {
  width: 16px; height: 1px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.pip-code {
  font-size: 0.48rem; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.pip-lvl {
  font-size: 0.48rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.28em 0.6em;
  backdrop-filter: blur(4px);
}

/* Ghost watermark number */
.pip-watermark {
  position: absolute;
  right: -0.5rem; bottom: -2rem;
  font-family: var(--font-display);
  font-size: clamp(14rem, 30vw, 28rem);
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.02em; line-height: 1;
  pointer-events: none; user-select: none;
}

/* Featured panel top hairline glow */
.pip--featured::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px; z-index: 10; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5) 50%, transparent);
}

/* "Most popular" ribbon */
.pip-ribbon {
  position: absolute;
  top: 1rem; right: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.5rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--black);
  background: var(--white-pure);
  padding: 0.35em 1em;
  z-index: 10;
}

/* ── Content overlay ─────────────────────────────────────── */
.pip-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 6;
  /* Default: content hidden below bottom edge */
  transform: translateY(60px);
  opacity: 0;
  transition: transform 0.85s cubic-bezier(0.22,1,0.36,1), opacity 0.7s ease;
}
/* Active: rises into position */
.pricing-imm-panel.pip--active .pip-content {
  transform: translateY(0);
  opacity: 1;
}
.pip-content--featured .pip-content-inner {
  border-top-color: rgba(255,255,255,0.2);
}

.pip-content-inner {
  padding: 3rem clamp(1.5rem, 6vw, 7rem) 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.0) 100%);
  max-width: 700px;
}

/* Eyebrow */
.pip-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: flex; align-items: center; gap: 0.55rem;
  margin-bottom: 0.5rem;
}
.pip-eyebrow::before {
  content: ''; width: 14px; height: 1px;
  background: rgba(255,255,255,0.3); flex-shrink: 0;
}
.pip-eyebrow--featured {
  color: rgba(255,255,255,0.7);
}
.pip-eyebrow--featured::before { background: rgba(255,255,255,0.55); }

/* Program name */
.pip-name {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  letter-spacing: 0.04em;
  color: var(--white-pure);
  line-height: 0.88;
  margin-bottom: 0.6rem;
}

/* Pitch */
.pip-pitch {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem; font-weight: 500;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.pip-pitch--featured { color: rgba(255,255,255,0.72); }

/* Feature list — horizontal on large screens */
.pip-items {
  list-style: none; padding: 0;
  display: flex; flex-wrap: wrap;
  gap: 0.35rem 1.5rem;
  margin-bottom: 1.75rem;
}
.pip-items li {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.5);
}
.pip-items--featured li { color: rgba(255,255,255,0.75); }
.pip-items li i {
  font-size: 0.48rem; color: rgba(255,255,255,0.3); flex-shrink: 0;
}
.pip-items--featured li i { color: rgba(255,255,255,0.5); }

/* CTA row — button + big price side by side */
.pip-cta-row {
  display: flex; align-items: center; gap: 2rem;
}
.pip-btn { font-size: 0.7rem; letter-spacing: 0.14em; }
.pip-price-tag {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: rgba(255,255,255,0.18);
  letter-spacing: 0.03em; line-height: 1;
}
.pip-price-tag--featured {
  color: rgba(255,255,255,0.35);
}

/* Progress dots — which panel is active */
.pip-dots {
  position: fixed;
  right: 2rem; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 0.6rem;
  z-index: 100;
  opacity: 0;
  transition: opacity 0.4s;
}
.pip-dots.pip-dots--visible { opacity: 1; }
.pip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.pip-dot.active {
  background: var(--white-pure);
  transform: scale(1.3);
}

/* ── Bundle banner ───────────────────────────────────────── */
.pip-bundle {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: stretch;
}
.pip-bundle::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px; pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25) 50%, transparent);
}
.pip-bundle-media {
  position: absolute; inset: 0;
  overflow: hidden;
  background: #050505;
}
.pip-bundle-grade {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.75) 50%, rgba(0,0,0,0.9) 100%),
    linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 100%);
  pointer-events: none;
}
.pip-bundle-content {
  position: relative; z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem; flex-wrap: wrap;
  padding: 3rem clamp(1.5rem, 6vw, 7rem);
  width: 100%;
}
.pip-bundle-left { flex: 1; min-width: 220px; }
.pip-bundle-badge {
  font-size: 0.5rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.3em 0.8em;
  display: inline-block;
  margin-bottom: 0.65rem;
}
.pip-bundle-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  letter-spacing: 0.04em;
  color: var(--white-pure);
  line-height: 1; margin-bottom: 0.5rem;
}
.pip-bundle-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7; margin: 0;
}
.pip-bundle-right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 0.35rem;
  flex-shrink: 0;
}
.pip-bundle-prices {
  display: flex; align-items: baseline; gap: 0.6rem;
}
.pip-bundle-orig {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.2);
  text-decoration: line-through;
}
.pip-bundle-price {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4rem);
  color: var(--white-pure);
  letter-spacing: 0.03em; line-height: 1;
}
.pip-bundle-savings {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin: 0 0 0.75rem;
}
.pip-bundle-cta { font-size: 0.7rem; letter-spacing: 0.14em; white-space: nowrap; }

/* ── Reassurance wrap ────────────────────────────────────── */
.pricing-reassurance-wrap {
  background: var(--black);
  padding: 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.pricing-reassurance {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin: 0; line-height: 1;
}

/* ── Mobile ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .pricing-imm-panel { height: 100svh; }
  .pip-content-inner { padding: 2rem 1.5rem 2.5rem; }
  .pip-name { font-size: clamp(3rem, 12vw, 5rem); }
  .pip-items { gap: 0.3rem 1rem; }
  .pip-cta-row { flex-wrap: wrap; gap: 1rem; }
  .pip-dots { right: 1rem; }
  .pip-bundle-content { flex-direction: column; align-items: flex-start; }
  .pip-bundle-right { align-items: flex-start; }
}



/* ══════════════════════════════════════════════════════════════
   PROOF / TRUST SECTION — minimal video-overlay cards
   ══════════════════════════════════════════════════════════════ */


/* ── Section shell ─────────────────────────────────────────── */
.proof-section {
  background: var(--black);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
  overflow: hidden;
}

/* Minimal eyebrow header above the cards */
.proof-top {
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  max-width: 1240px;
  margin: 0 auto clamp(1.5rem, 3vw, 2.5rem);
}
.proof-top .label {
  color: rgba(255,255,255,0.3);
}
.proof-top .label::before {
  background: rgba(255,255,255,0.3);
}

/* ── Three video cards ─────────────────────────────────────── */
.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06); /* gap colour */
}

/* Single card — video fills, content overlays */
.proof-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;    /* portrait — tall enough for quote */
  background: #0a0a0a;
  cursor: default;
  /* reveal start state */
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.proof-card.prc-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings */
.proof-card:nth-child(2) { transition-delay: 0.1s; }
.proof-card:nth-child(3) { transition-delay: 0.2s; }

/* Featured: slight top accent line */
.proof-card--featured::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px; z-index: 6;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  pointer-events: none;
}

/* Scanline sweep on reveal */
.proof-card .pcc-scanline {
  position: absolute; left: 0; right: 0; top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
  z-index: 10; pointer-events: none;
  opacity: 0;
}
.proof-card.prc-revealed .pcc-scanline {
  animation: pccScanDown 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.15s forwards;
}

/* ── Video ─────────────────────────────────────────────────── */
.proof-card-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  /* slightly brighter than the grades so footage reads */
  filter: brightness(0.55) saturate(0.7) contrast(1.08);
  transition: filter 0.5s ease, transform 0.6s ease;
}
.proof-card:hover .proof-card-video {
  filter: brightness(0.45) saturate(0.6) contrast(1.1);
  transform: scale(1.04);
}

/* ── Grade — stronger at bottom for legibility ─────────────── */
.proof-card-grade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.15) 0%,
      transparent 35%,
      rgba(0,0,0,0.65) 70%,
      rgba(0,0,0,0.92) 100%
    );
  z-index: 1;
  pointer-events: none;
}
.proof-card-grade--featured {
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0.1) 0%,
      transparent 30%,
      rgba(0,0,0,0.7) 65%,
      rgba(0,0,0,0.95) 100%
    );
}

/* ── Film meta strip — top of card ────────────────────────── */
.proof-card-meta {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55), transparent);
}
/* reuse existing pcfm-* styles from programs section */

/* ── Quote overlay — bottom of card ───────────────────────── */
.proof-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 4;
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.1rem, 2.5vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  /* slide up on reveal */
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.65s ease 0.3s, transform 0.65s cubic-bezier(0.4,0,0.2,1) 0.25s;
}
.proof-card.prc-revealed .proof-card-content {
  transform: translateY(0);
  opacity: 1;
}

.proof-card-quote {
  font-family: var(--font-serif);
  font-size: clamp(0.78rem, 1.2vw, 0.9rem);
  font-style: italic;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin: 0;
  padding: 0;
  /* soft left rule */
  border-left: 2px solid rgba(255,255,255,0.2);
  padding-left: 0.85rem;
}
.proof-card--featured .proof-card-quote {
  color: rgba(255,255,255,0.92);
  border-left-color: rgba(255,255,255,0.4);
}

.proof-card-attr {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding-left: calc(0.85rem + 2px); /* align under quote text */
}
.proof-card--featured .proof-card-attr {
  color: rgba(255,255,255,0.45);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .proof-cards {
    grid-template-columns: 1fr;
    gap: 1px;
  }
  .proof-card {
    aspect-ratio: 16 / 9; /* landscape on mobile — shorter */
  }
  .proof-card:nth-child(2),
  .proof-card:nth-child(3) { transition-delay: 0s; }
}

/* ── FOOTER ──────────────────────────────────────────────────── */
#footer {
  background: var(--white); border-top: 1px solid var(--border);
  padding: 5rem 0 3rem;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 4rem;
}
.footer-logo-text {
  font-family: var(--font-logo); font-style: italic;
  font-weight: 700; font-size: 2rem;
  color: var(--black); letter-spacing: 0.04em;
  margin-bottom: 1rem; display: block;
}
.footer-tagline { font-size: 0.78rem; color: var(--ink-60); line-height: 1.8; max-width: 260px; }
.footer-col h5 {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--black);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.78rem; color: var(--ink-60);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--black); }
.footer-bottom {
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  gap: 1rem; padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.footer-copy { font-size: 0.7rem; color: var(--ink-35); letter-spacing: 0.05em; }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: 0.7rem; color: var(--ink-35); transition: color 0.2s; }
.footer-legal a:hover { color: var(--black); }

/* ── BACK TO TOP ─────────────────────────────────────────────── */
#backToTop {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 40px; height: 40px;
  background: var(--black); color: var(--white-pure);
  border: none; font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity 0.3s, background 0.2s; z-index: 999;
}
#backToTop.visible { opacity: 1; pointer-events: auto; }
#backToTop:hover { background: var(--black-2); }

/* ── PREVIEW MODALS ──────────────────────────────────────────── */
.preview-modal {
  position: fixed; inset: 0; z-index: 8000;
  display: none; align-items: center; justify-content: flex-end;
}
.preview-modal.open { display: flex; }
.preview-overlay {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(4px);
}
.preview-panel {
  position: relative; z-index: 1;
  width: min(520px, 95vw); height: 100vh;
  background: var(--white); overflow-y: auto;
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-film);
}
.preview-modal.open .preview-panel { transform: translateX(0); }
.preview-head {
  padding: 2rem 2.5rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; position: sticky; top: 0;
  background: var(--white); z-index: 2;
}
.preview-close {
  background: none; border: none; cursor: pointer;
  font-size: 1rem; color: var(--ink-60); padding: 0.25rem;
  transition: color 0.2s; flex-shrink: 0;
}
.preview-close:hover { color: var(--black); }
.preview-badge {
  font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-35); border: 1px solid var(--border);
  padding: 0.3em 0.8em; margin-bottom: 0.5rem; display: inline-block;
}
.preview-title {
  font-family: var(--font-display); font-size: 2rem;
  letter-spacing: 0.03em; color: var(--black);
}
.preview-body { padding: 2rem 2.5rem; display: flex; flex-direction: column; gap: 2rem; }
.preview-desc p { font-size: 0.84rem; color: var(--ink-60); line-height: 1.8; }
.preview-covers h4, .preview-sample h4 {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--black);
  margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem;
}
.preview-covers h4 i, .preview-sample h4 i { color: var(--ink-35); }
.preview-covers-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem; }
.preview-cover-item {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.76rem; color: var(--ink-60);
  padding: 0.5rem; border: 1px solid var(--border);
}
.preview-cover-item i { color: var(--ink-35); font-size: 0.6rem; flex-shrink: 0; }
.preview-table-wrap { overflow-x: auto; border: 1px solid var(--border); }
.preview-table { width: 100%; border-collapse: collapse; }
.preview-table th {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--ink-35);
  padding: 0.75rem 1rem; background: var(--ink-04);
  border-bottom: 1px solid var(--border); text-align: left;
}
.preview-table td {
  font-size: 0.78rem; color: var(--ink-60);
  padding: 0.75rem 1rem; border-bottom: 1px solid var(--border);
}
.preview-table tr:last-child td { border-bottom: none; }
.preview-locked {
  border: 1px solid var(--border); background: var(--ink-04);
  padding: 1.5rem; text-align: center;
}
.preview-locked i { font-size: 1.2rem; color: var(--ink-15); margin-bottom: 0.5rem; display: block; }
.preview-locked p { font-size: 0.78rem; color: var(--ink-35); }
.preview-cta { border-top: 1px solid var(--border); padding: 2rem 2.5rem; }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .method-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .programs-grid { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .specialty-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .programs-header { flex-direction: column; align-items: flex-start; margin-bottom: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .hero-title { font-size: clamp(3.5rem, 16vw, 6rem); }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav-links {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: var(--white); border-left: 1px solid var(--border);
    flex-direction: column; align-items: flex-start;
    justify-content: center; padding: 3rem 2.5rem;
    gap: 1.5rem; transition: right 0.35s var(--ease-film); z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 0.85rem; color: var(--ink-60); }
  .nav-cta { color: var(--white) !important; }
  .hamburger { display: flex; z-index: 1001; position: relative; }
}

/* ── ACTIVE NAV ──────────────────────────────────────────────── */
.nav-links a.active { color: var(--black); }

/* ════════════════════════════════════════════════════════════════
   VIDEO VISUALS — Cinematic gym footage integrated into site
   Raw · Dark · Grainy · High-contrast filmic grading
   ════════════════════════════════════════════════════════════════ */

/* ── HERO VIDEO BACKGROUND ─────────────────────────────────── */
/* Hero stays dark — video fills the entire section ABOVE canvas */
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;   /* above canvas (z:0), below strips (z:2+) */
  overflow: hidden;
  /* Video fades in once loaded — canvas shows until then */
  opacity: 0;
  transition: opacity 1.2s ease;
}
/* JS-free fade-in: once video has enough data, reveal it */
.hero-video-wrap.vid-ready { opacity: 1; }
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  /* Cinematic grading: desaturate + darken to match editorial aesthetic */
  filter: grayscale(0.65) contrast(1.15) brightness(0.55);
  transform: scale(1.04); /* slight scale prevents white edges on parallax */
  will-change: transform;
  display: block;
}
/* Dark gradient overlay — hero content stays readable */
.hero-video-grade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  rgba(10,10,10,0.75) 30%, rgba(10,10,10,0.25) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0.35) 0%,  rgba(10,10,10,0.60) 100%);
  z-index: 1;
}
/* Strips, grain, overlay and content sit above canvas + video */
#hero .hero-strips        { z-index: 2; }
#hero .hero-grain         { z-index: 3; }
#hero .hero-overlay       { z-index: 4; }
#hero .hero-content       { z-index: 5; }
#hero .hero-scroll        { z-index: 5; }

/* Horizontal noise lines across video — cinematic broadcast look */
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.04) 2px,
    rgba(0,0,0,0.04) 3px
  );
  pointer-events: none;
}

/* ── METHOD VIDEO PANEL ────────────────────────────────────── */
/* Dark section — video bleeds in from the right as a cinematic panel */
.method-video-panel {
  position: absolute;
  top: 0; right: 0;
  width: clamp(220px, 32vw, 500px);
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}
.method-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.8) contrast(1.2) brightness(0.35);
  transform: scale(1.05);
  will-change: transform;
  display: block;
}
/* Gradient fades panel into the dark section background */
.method-video-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--black) 0%, rgba(10,10,10,0.0) 40%, rgba(10,10,10,0.2) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0.4) 0%, transparent 30%, transparent 70%, rgba(10,10,10,0.4) 100%);
  z-index: 1;
}
/* Film notch marks on the panel edge */
.method-film-notches {
  position: absolute;
  right: 8px; top: 0; bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  padding: 2rem 0;
  gap: 0;
}
.method-film-notches span {
  display: block;
  width: 10px;
  height: 7px;
  background: rgba(255,255,255,0.12);
  border-radius: 1px;
}
/* Ensure method container text stays above video panel */
#method { position: relative; overflow: hidden; }
#method .container { position: relative; z-index: 2; }

/* Mobile: hide the side panel — takes too much space */
@media (max-width: 768px) {
  .method-video-panel { display: none; }
}

/* ── VIDEO REEL BREAK ──────────────────────────────────────── */
/* Full-width cinematic break strip between Specialty and Pricing */
.video-reel-break {
  position: relative;
  width: 100%;
  height: clamp(260px, 38vw, 540px);
  overflow: hidden;
  background: var(--black);
}
.vrb-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.vrb-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  /* High contrast b&w — gritty raw cinema feel */
  filter: grayscale(1) contrast(1.35) brightness(0.48);
  transform: scale(1.06);
  will-change: transform;
  display: block;
  transition: transform 0.1s linear;
}
/* Dark overlay with slight warm burn at center */
.vrb-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(10,10,10,0.0) 20%, rgba(10,10,10,0.65) 100%),
    linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, rgba(10,10,10,0.2) 50%, rgba(10,10,10,0.55) 100%);
}
/* Editorial text — bottom left */
.vrb-text-left {
  position: absolute;
  bottom: 2.5rem;
  left: clamp(1.5rem, 5vw, 4rem);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.vrb-label {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.vrb-divider {
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.25);
}
.vrb-counter {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: rgba(255,255,255,0.3);
}
/* Quote — right side, large editorial type */
.vrb-quote {
  position: absolute;
  right: clamp(1.5rem, 6vw, 5rem);
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  max-width: clamp(200px, 32vw, 440px);
  text-align: right;
}
.vrb-quote blockquote {
  font-family: var(--font-logo);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.85rem, 1.8vw, 1.35rem);
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  border: none;
  padding: 0;
  position: relative;
}
/* Opening quote mark */
.vrb-quote blockquote::before {
  content: '\201C';
  font-size: 5rem;
  line-height: 0;
  vertical-align: -0.55em;
  color: rgba(255,255,255,0.08);
  margin-right: 0.15em;
  font-style: normal;
}
/* Horizontal scanline texture across the reel */
.vrb-scanlines {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 3px,
    rgba(0,0,0,0.06) 3px,
    rgba(0,0,0,0.06) 4px
  );
  pointer-events: none;
}
/* Film strip perforations — top edge */
.vrb-filmstrip-top,
.vrb-filmstrip-bottom {
  position: absolute;
  left: 0; right: 0;
  height: 18px;
  z-index: 4;
  display: flex;
  align-items: center;
  background: rgba(0,0,0,0.8);
  gap: 0;
  overflow: hidden;
}
.vrb-filmstrip-top  { top: 0; }
.vrb-filmstrip-bottom { bottom: 0; }
/* Perforation holes via repeating gradient */
.vrb-filmstrip-top::after,
.vrb-filmstrip-bottom::after {
  content: '';
  display: block;
  width: 100%;
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 8px,
    rgba(255,255,255,0.18) 8px,
    rgba(255,255,255,0.18) 18px,
    transparent 18px,
    transparent 28px
  );
}

/* Mobile reel break */
@media (max-width: 600px) {
  .video-reel-break { height: 220px; }
  .vrb-quote { display: none; }
  .vrb-text-left { bottom: 1.5rem; left: 1.25rem; }
}

/* Reduced motion — pause videos */
@media (prefers-reduced-motion: reduce) {
  .hero-video,
  .method-video,
  .vrb-video {
    animation-play-state: paused !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   §3 — PROOF STRIP
   Tight three-column strip between Hero and Programs.
   Dark film-bar aesthetic — matches chromebar / ticker visual language.
   ════════════════════════════════════════════════════════════════ */
.proof-strip {
  position: relative;
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.proof-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%);
  pointer-events: none;
}
.proof-strip-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

/* Each proof point */
.ps-point {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: clamp(2rem, 3.5vw, 3rem) 0;
  padding-right: clamp(1.5rem, 4vw, 3rem);
}
.ps-point:last-child { padding-right: 0; }

/* Icon */
.ps-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  margin-top: 0.1rem;
}

/* Text stack */
.ps-body {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.ps-headline {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  letter-spacing: 0.06em;
  color: var(--white-pure);
  line-height: 1.2;
}
.ps-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  max-width: 300px;
}

/* Vertical divider between points */
.ps-divider {
  width: 1px;
  align-self: stretch;
  background: rgba(255,255,255,0.07);
  margin: 0 clamp(1rem, 3vw, 2.5rem);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .proof-strip-inner {
    grid-template-columns: 1fr;
    padding: clamp(1.25rem, 4vw, 2.5rem) clamp(1.25rem, 5vw, 2.5rem);
  }
  .ps-divider {
    width: 100%;
    height: 1px;
    align-self: auto;
    margin: 0;
  }
  .ps-point { padding-right: 0; }
}


/* ════════════════════════════════════════════════════════════════
   §11 — FAQ
   Accordion-style. Cinematic dark aesthetic.
   JS toggles aria-expanded + .faq-item--open class.
   ════════════════════════════════════════════════════════════════ */
.faq-section {
  background: var(--black);
}

/* Header */
.faq-hdr {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.faq-title {
  font-size: clamp(3rem, 7vw, 6rem);
  margin: 1rem 0 0.5rem;
  color: var(--white-pure);
}
.faq-sub {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  max-width: 480px;
  line-height: 1.8;
  margin: 0;
}

/* FAQ list */
.faq-list {
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 860px;
}

/* Single FAQ item */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

/* Question button */
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--white-pure);
  transition: color 0.2s;
}
.faq-q span {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2vw, 1.25rem);
  letter-spacing: 0.04em;
  line-height: 1.3;
  flex: 1;
}
.faq-q:hover { color: rgba(255,255,255,0.7); }

/* Plus / minus icon */
.faq-icon {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-film), color 0.2s;
}
.faq-item--open .faq-icon {
  transform: rotate(45deg);
  color: rgba(255,255,255,0.6);
}

/* Answer panel — hidden by default, expands via JS */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.35s ease;
}
.faq-item--open .faq-a {
  max-height: 500px;
}
.faq-a p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  padding: 0 0 1.75rem;
  margin: 0;
  max-width: 680px;
}
.faq-a p strong {
  color: rgba(255,255,255,0.75);
  font-weight: 600;
}
.faq-a p a {
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}
.faq-a p a:hover { color: var(--white-pure); }

/* Mobile */
@media (max-width: 768px) {
  .faq-q span { font-size: 0.95rem; }
  .faq-a p { font-size: 0.8rem; }
}


/* ════════════════════════════════════════════════════════════════
   §12 — FINAL CTA
   Full-bleed cinematic section with video background.
   Mirrors the hero aesthetic — dark, immersive, direct.
   ════════════════════════════════════════════════════════════════ */
.final-cta-section {
  position: relative;
  min-height: clamp(520px, 70vh, 800px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #050505;
}

/* Video background */
.fcta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.fcta-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.28) saturate(0.6) contrast(1.1);
}
.fcta-grade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, #050505 0%, transparent 25%, transparent 75%, #050505 100%),
    linear-gradient(to right, rgba(5,5,5,0.7) 0%, transparent 60%);
  pointer-events: none;
}

/* Film strip decorative edges — reuse vrb pattern */
.fcta-filmstrip-top,
.fcta-filmstrip-bottom {
  position: absolute;
  left: 0;
  right: 0;
  height: 10px;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}
.fcta-filmstrip-top  { top: 0; }
.fcta-filmstrip-bottom { bottom: 0; }
.fcta-filmstrip-top::after,
.fcta-filmstrip-bottom::after {
  content: '';
  display: block;
  width: 100%;
  height: 10px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 8px,
    rgba(255,255,255,0.15) 8px,
    rgba(255,255,255,0.15) 18px,
    transparent 18px,
    transparent 28px
  );
}

/* Scanline texture overlay */
.fcta-scanlines {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: repeating-linear-gradient(
    to bottom,
    transparent 0px,
    transparent 3px,
    rgba(0,0,0,0.08) 3px,
    rgba(0,0,0,0.08) 4px
  );
  pointer-events: none;
  opacity: 0.6;
}

/* Content */
.final-cta-section .container {
  position: relative;
  z-index: 3;
  width: 100%;
}
.fcta-inner {
  max-width: 720px;
  padding: clamp(5rem, 10vh, 9rem) 0;
}

/* Eyebrow with flanking lines */
.fcta-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.fcta-eyebrow span {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.fcta-eyebrow-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.12);
  max-width: 80px;
}

/* Headline */
.fcta-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  color: var(--white-pure);
  margin: 0 0 1.5rem;
  line-height: 0.92;
}
.fcta-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.8em;
}

/* Supporting text */
.fcta-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  max-width: 540px;
  margin: 0 0 2.5rem;
}

/* CTA button row */
.fcta-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.fcta-btn-primary {
  font-size: 0.72rem;
  padding: 0.9em 2.2em;
}
.fcta-btn-secondary {
  font-size: 0.72rem;
  padding: 0.9em 2em;
}

/* Trust microcopy row */
.fcta-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.fcta-trust-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.fcta-trust-item i { font-size: 0.65rem; }
.fcta-trust-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  flex-shrink: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .fcta-title { font-size: clamp(3rem, 12vw, 5rem); }
  .fcta-sub { font-size: 0.82rem; }
  .fcta-actions { flex-direction: column; align-items: flex-start; }
  .fcta-btn-primary,
  .fcta-btn-secondary { width: 100%; justify-content: center; }
}
