/* =========================================================
   AchievHer — Editorial pastel landing page
   Typography: Fraunces (display) + Geist (body) + Caveat (hand)
   ========================================================= */

:root {
  /* Brand palette — pulled from the podcast thumbnails + logo */
  --ink: #17131f;
  --ink-soft: #3b3449;
  --paper: #fff9f2;
  --paper-warm: #fff1e3;

  /* Hot pink matching the AchievHer logo */
  --pink: #ff1b8e;
  --pink-hot: #ff0080;
  --pink-soft: #ffd6e6;
  --peach: #ffc9b0;
  --butter: #ffe27a;
  --sky: #c6e6ff;
  --sky-deep: #7fb8ee;
  --mint: #c9f2dc;
  --lilac: #e7d8ff;

  --accent: var(--pink);

  /* Typography */
  --f-display: "Fraunces", "Times New Roman", serif;
  --f-body: "Geist", ui-sans-serif, system-ui, sans-serif;
  --f-hand: "Caveat", cursive;

  /* Spacing & radii */
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;

  --shadow-soft: 0 20px 40px -20px rgba(23, 19, 31, 0.18);
  --shadow-hard: 8px 8px 0 0 var(--ink);

  --maxw: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }

/* ===== Noise grain overlay ===== */
.grain {
  position: fixed; inset: 0; pointer-events: none; z-index: 100;
  opacity: 0.3; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.bg-blob {
  position: fixed; border-radius: 50%;
  filter: blur(80px); z-index: 0; pointer-events: none;
}
.bg-blob--1 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, var(--pink-soft), transparent 70%);
  top: -120px; right: -120px;
}
.bg-blob--2 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--sky), transparent 70%);
  top: 40vh; left: -200px;
}

/* =========================================================
   NAVBAR
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 6px 40px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(255, 249, 242, 0.78);
  border-bottom: 1px solid rgba(23, 19, 31, 0.06);
}
.nav__logo img {
  height: 64px; width: auto; display: block;
}
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a {
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  background: var(--ink); color: var(--paper) !important;
  padding: 10px 18px; border-radius: 100px;
  transition: transform 0.2s, background 0.2s;
}
.nav__cta:hover { background: var(--pink); transform: translateY(-2px); }

.nav__burger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
}
.nav__burger span {
  width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.3s;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative; z-index: 1;
  padding: 0;
  overflow: hidden;
}

/* Desktop hero: banner image + CTAs overlaid */
.hero__desktop-banner { display: block; width: 100%; position: relative; }
.hero__desktop-banner img { width: 100%; height: auto; display: block; }
.hero__desktop-ctas {
  position: absolute;
  bottom: 40px;
  left: 48px;
  display: flex;
  gap: 14px;
  z-index: 2;
}
/* Light button styles for dark banner background */
.hero__desktop-ctas .btn--primary { background: var(--pink); color: var(--paper); }
.hero__desktop-ctas .btn--primary:hover { background: var(--pink-hot); }
.hero__desktop-ctas .btn--ghost { color: var(--paper); border-color: rgba(255,249,242,0.6); }
.hero__desktop-ctas .btn--ghost:hover { background: var(--paper); color: var(--ink); }
.hero__stickers { display: none; position: absolute; inset: 0; pointer-events: none; }
.sticker {
  position: absolute; font-size: 44px;
  filter: drop-shadow(2px 4px 0 rgba(23,19,31,0.15));
  animation: float 6s ease-in-out infinite;
}
.sticker--mic   { top: 10%;  left: 6%;  animation-delay: 0s;   transform: rotate(-12deg); }
.sticker--bulb  { top: 22%;  right: 4%; animation-delay: 1.5s; transform: rotate(15deg); }
.sticker--globe { bottom: 18%; left: 3%; animation-delay: 3s;  transform: rotate(8deg); }
.sticker--chat  { bottom: 6%;  right: 8%;animation-delay: 4.5s; transform: rotate(-10deg); }

@keyframes float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -14px; }
}

.hero__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: none;
  gap: 60px; align-items: center;
  min-height: 74vh;
}

/* Eyebrow pill */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 100px;
  background: var(--ink); color: var(--paper);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 28px;
}
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--pink);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,27,142,0.6); }
  50%      { opacity: 1; box-shadow: 0 0 0 8px rgba(255,27,142,0); }
}

/* Headline */
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(64px, 10vw, 160px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
  font-variation-settings: "opsz" 144, "SOFT" 30;
}
.hero__title-a { font-weight: 300; }
.hero__title-b {
  position: relative; display: inline-block;
  font-style: italic; font-weight: 500;
  color: var(--pink);
}
.hero__scribble {
  position: absolute; left: 0; right: 0; bottom: -4px;
  width: 100%; height: 18px;
  color: var(--butter);
  stroke-dasharray: 500; stroke-dashoffset: 500;
  animation: scribble 1.8s ease-out 0.6s forwards;
}
@keyframes scribble { to { stroke-dashoffset: 0; } }

/* Tagline */
.hero__tag {
  font-family: var(--f-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400; font-style: italic;
  color: var(--ink-soft);
  margin: 0 0 22px;
  display: flex; flex-wrap: wrap; gap: 4px 14px;
}
.hero__tag-word { position: relative; }
.hero__tag-word:not(:last-child)::after {
  content: "/"; color: var(--pink); margin-left: 14px;
  font-style: normal; font-weight: 500;
}

.hero__sub {
  max-width: 520px;
  font-size: 17px; line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 36px;
}

.hero__ctas {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; border-radius: 100px;
  font-size: 15px; font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--ink); color: var(--paper);
}
.btn--primary:hover {
  background: var(--pink); transform: translateY(-3px);
  box-shadow: 0 12px 24px -8px rgba(255,27,142,0.5);
}
.btn--ghost {
  background: transparent; color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover {
  background: var(--ink); color: var(--paper); transform: translateY(-3px);
}
.btn--dark {
  background: var(--paper); color: var(--ink);
}
.btn--dark:hover {
  background: var(--butter); transform: translateY(-3px);
}
.btn--mobile-only { display: none; }
.btn__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--pink); color: var(--paper);
  font-size: 10px;
}
.btn__arrow { transition: transform 0.25s ease; }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* Trust line */
.hero__trust {
  display: flex; align-items: center; gap: 16px;
  font-size: 13px; color: var(--ink-soft);
  flex-wrap: wrap;
}
.hero__trust-line {
  display: inline-block; width: 40px; height: 1px; background: var(--ink-soft);
}
.hero__trust strong { color: var(--ink); font-weight: 600; }
.hero__trust-dots { color: var(--pink); letter-spacing: 2px; }

/* ---------- HERO COLLAGE ---------- */
.hero__right {
  position: relative; height: 620px;
}
.collage {
  position: relative; width: 100%; height: 100%;
}
.collage__card {
  position: absolute; margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow-soft);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.collage__card img {
  width: 100%; height: 100%; object-fit: cover;
}
.collage__card--main {
  top: 5%; left: 15%;
  width: 58%; height: 68%;
  transform: rotate(-4deg);
  z-index: 2;
  border: 6px solid var(--paper);
}
.collage__card--main figcaption {
  position: absolute; bottom: 14px; left: 14px; right: 14px;
  background: rgba(23,19,31,0.82); color: var(--paper);
  padding: 10px 14px; border-radius: var(--r-sm);
  font-size: 13px;
  display: flex; justify-content: space-between; align-items: center;
  backdrop-filter: blur(8px);
}
.collage__card--main figcaption span {
  color: var(--butter); font-weight: 600; letter-spacing: 0.1em; font-size: 11px;
}
.collage__card--main figcaption strong { font-family: var(--f-display); font-weight: 500; }

.collage__card--sm1 {
  bottom: 10%; left: 0;
  width: 40%; height: 36%;
  transform: rotate(6deg);
  z-index: 1;
  border: 5px solid var(--paper);
}
.collage__card--sm2 {
  top: 0; right: 0;
  width: 38%; height: 34%;
  transform: rotate(5deg);
  z-index: 1;
  border: 5px solid var(--paper);
}
.collage__card:hover { transform: rotate(0) scale(1.03); z-index: 5; }

/* Tape */
.collage__tape {
  position: absolute; width: 80px; height: 22px;
  background: rgba(255, 226, 122, 0.72);
  z-index: 3;
  box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}
.collage__tape--tl { top: 2%; left: 30%; transform: rotate(-8deg); }
.collage__tape--br { bottom: 8%; right: 28%; transform: rotate(12deg); }

/* Rotating circular badge */
.collage__badge {
  position: absolute; bottom: 0; right: 8%;
  width: 110px; height: 110px; z-index: 4;
  display: flex; align-items: center; justify-content: center;
}
.collage__badge-ring {
  position: absolute; inset: 0;
  animation: spin 18s linear infinite;
  fill: var(--ink);
}
.collage__badge-core {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--pink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display); font-weight: 700; font-size: 18px;
  letter-spacing: -0.02em;
  box-shadow: 0 6px 14px -4px rgba(255,27,142,0.5);
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Mobile hero image — hidden on desktop */
.hero__mobile-img { display: none; }
.hero__mobile-copy { display: none; }

/* Marquee */
.marquee {
  margin-top: 50px;
  padding: 18px 0;
  background: var(--ink); color: var(--paper);
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
  overflow: hidden;
  transform: rotate(-1deg) scale(1.02);
}
.marquee__track {
  display: flex; gap: 40px;
  width: max-content;
  animation: marquee 30s linear infinite;
  font-family: var(--f-display);
  font-size: 26px; font-weight: 300; font-style: italic;
}
.marquee__track span { white-space: nowrap; }
.marquee__track span:nth-child(odd) { color: var(--butter); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   SECTION HELPERS
   ========================================================= */
.section-tag {
  display: inline-block;
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--pink); font-weight: 600;
  padding-bottom: 6px; border-bottom: 1.5px solid var(--pink);
  margin-bottom: 18px;
}
.section-tag--light { color: var(--butter); border-bottom-color: var(--butter); }

.section-title {
  font-family: var(--f-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 300; letter-spacing: -0.03em;
  line-height: 1.02; margin: 0 0 20px;
}
.section-title em { color: var(--pink); font-style: italic; font-weight: 500; }
.section-title--alt em { color: var(--sky-deep); }
.section-title--light { color: var(--paper); }
.section-title--light em { color: var(--butter); }

.section-sub {
  max-width: 640px; font-size: 17px; color: var(--ink-soft);
  line-height: 1.6;
}

/* =========================================================
   EPISODES — GROWW-AUTHENTIC 3D CAROUSEL
   ---------------------------------------------------------
   Mechanics (mirroring Groww's CSS exactly):
     .carousel-wrap  — container, establishes 620px height
     .carousel       — the STAGE: width 100vw, perspective 1050px
     .carousel__inner — rotates (JS-controlled rotateY)
     .carousel__item — each card: rotateY(n*angle) translateZ(-550px)
   Negative Z = cards pushed BACK, creating the curved-wall look.
   ========================================================= */
.episodes {
  position: relative; z-index: 1;
  padding: 70px 0 60px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--paper-warm) 100%);
  overflow: hidden; /* contain the 100vw stage */
}
.episodes__head {
  max-width: var(--maxw); margin: 0 auto 36px;
  padding: 0 40px;
  text-align: center;
}
.episodes__head .section-sub { margin: 0 auto; }

.carousel-wrap {
  position: relative;
  width: 100%;
  height: 660px;
  cursor: pointer;
}
.carousel-wrap.is-dragging { cursor: grabbing; }

/* The STAGE — exact Groww replication */
.carousel {
  width: 100vw;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  perspective: 1050px;
  perspective-origin: 50% 50%;
  margin-top: -20px;
}
.carousel__inner {
  position: absolute;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  /* rotation controlled by JS — no CSS transition so RAF smoothing feels natural */
}

.carousel__item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px; height: 500px;
  margin-left: -150px;
  margin-top: -250px;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  /* transform: rotateY(Xdeg) translateZ(-550px) set per-item by JS */
}

/* Vignette masks fade the outer cards into the background,
   matching Groww's subtle edge-fade effect */
.carousel__vignette {
  position: absolute; top: 0; bottom: 0;
  width: 22vw; pointer-events: none; z-index: 10;
}
.carousel__vignette--left {
  left: 0;
  background: linear-gradient(to right, var(--paper) 0%, var(--paper) 15%, transparent 100%);
}
.carousel__vignette--right {
  right: 0;
  background: linear-gradient(to left, var(--paper-warm) 0%, var(--paper-warm) 15%, transparent 100%);
}

/* ---------- CARD ---------- */
.card {
  display: block;
  width: 100%; height: 100%;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 30px 60px -20px rgba(23,19,31,0.3);
  cursor: pointer;
  transition: box-shadow 0.35s ease;
  text-decoration: none;
  color: inherit;
}
.card:hover { box-shadow: 0 40px 70px -20px rgba(255,27,142,0.35); }

/* Placeholder (channel-card) cards are image-only, no body */
.card--placeholder .card__thumb { height: 100%; }
.card--placeholder { background: var(--ink); }

.card__thumb {
  position: relative;
  width: 100%; height: calc(100% - 120px);
  overflow: hidden;
  background: var(--ink);
}
.card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.card:hover .card__thumb img { transform: scale(1.06); }
.card__tag {
  position: absolute; bottom: 14px; left: 14px;
  padding: 5px 11px; border-radius: 100px;
  background: var(--paper); color: var(--ink);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
}
.card__play {
  position: absolute; bottom: 14px; right: 14px;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--pink); color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  box-shadow: 0 8px 20px -4px rgba(255,27,142,0.6);
  transition: transform 0.3s;
}
.card:hover .card__play { transform: scale(1.12) rotate(6deg); }

.card__body {
  padding: 14px 18px 16px;
  height: 120px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.card__title {
  font-family: var(--f-display);
  font-size: 18px; font-weight: 500; line-height: 1.25;
  letter-spacing: -0.01em; margin: 0;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden;
}
.card__meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--ink-soft);
  padding-top: 10px; border-top: 1px dashed rgba(23,19,31,0.15);
}
.card__meta strong { color: var(--ink); font-weight: 600; }
.card__meta-dot { color: var(--pink); }

/* Controls */
.carousel__controls {
  position: absolute;
  bottom: 20px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 10px; align-items: center;
  background: var(--paper);
  padding: 8px; border-radius: 100px;
  box-shadow: var(--shadow-soft);
  z-index: 15;
}
.carousel__btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--paper-warm); color: var(--ink);
  font-size: 18px;
  transition: background 0.2s, transform 0.2s;
}
.carousel__btn:hover { background: var(--pink); color: var(--paper); transform: scale(1.08); }
.carousel__play {
  padding: 10px 18px; border-radius: 100px;
  background: var(--ink); color: var(--paper);
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em;
}
.carousel__play:hover { background: var(--pink); }

/* Mobile carousel fallback */
.carousel-mobile { display: none; }

/* =========================================================
   ABOUT — sticky scroll storytelling (3 progressive scenes)
   ========================================================= */
.about { position: relative; z-index: 1; }

.about__scroll-wrap {
  position: relative;
  height: 300vh;
}
.about__viewport {
  position: sticky;
  top: 0;
  height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  background: var(--paper);
}

/* LEFT PANEL */
.about__left {
  padding: 60px 48px 60px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(23,19,31,0.06);
}
.about__title {
  font-size: clamp(26px, 3.2vw, 46px) !important;
  margin: 0 0 18px;
}

.about__lede {
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 380px;
  margin: 0 0 44px;
  padding-left: 14px;
  border-left: 2px solid var(--pink);
}

/* Step nav */
.about__stepnav { display: flex; flex-direction: column; }
.about__stepbtn {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 0;
  border: 0; background: none; font: inherit; cursor: pointer;
  color: rgba(23,19,31,0.50);
  text-align: left;
  border-top: 1px solid rgba(23,19,31,0.07);
  transition: color 0.3s;
}
.about__stepbtn:first-child { border-top: none; }
.about__stepbtn.is-active { color: var(--ink); }
.about__stepbtn-dot {
  flex-shrink: 0;
  width: 12px; height: 12px; border-radius: 50%;
  background: currentColor; opacity: 0.35;
  transition: opacity 0.3s, background 0.3s, box-shadow 0.3s;
}
.about__stepbtn.is-active .about__stepbtn-dot {
  background: var(--pink); opacity: 1;
  box-shadow: 0 0 0 5px rgba(255,27,142,0.15);
}
.about__stepbtn-label { font-size: 17px; font-weight: 500; }

/* RIGHT PANEL */
.about__scenes-wrap {
  position: relative; overflow: hidden;
  background: var(--paper-warm);
}
.about__scene {
  position: absolute; inset: 0;
  padding: 88px 72px 52px 52px;
  display: flex; flex-direction: column; justify-content: flex-start;
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1),
              transform 0.55s cubic-bezier(0.22,1,0.36,1);
  pointer-events: none;
}
.about__scene.is-active {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.about__scene.is-exiting {
  opacity: 0; transform: translateY(-24px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.scene__eyebrow {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--pink); font-weight: 700; margin: 0 0 10px;
}
.scene__headline {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 300; font-style: italic;
  letter-spacing: -0.03em; line-height: 1.1;
  color: var(--ink); margin: 0 0 26px;
  font-variation-settings: "opsz" 72, "SOFT" 50;
}
.scene__body {
  font-size: 14px; line-height: 1.65; color: var(--ink-soft);
  margin-top: auto; padding-top: 20px;
}

/* — Scene 0: Founder carousel (card-stack + bio + progress slider) —
   Default layout is vertical (cards → bio → slider); it switches to a
   side-by-side split only on wide screens (see min-width rule below). */
.fc {
  flex: 1;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 0;
}

/* Stacked cards */
.fc__cards {
  position: relative;
  flex: 0 0 auto;
  width: min(72%, 260px);
  aspect-ratio: 3 / 4;
}
.fc__card {
  position: absolute; inset: 0;
  margin: 0; padding: 0; border: 0; cursor: pointer;
  border-radius: 18px; overflow: hidden;
  background: var(--paper);
  box-shadow: 0 18px 44px -14px rgba(23,19,31,0.32);
  transform-origin: center right;
  transition: transform 0.55s cubic-bezier(0.22,1,0.36,1),
              opacity 0.55s cubic-bezier(0.22,1,0.36,1);
  will-change: transform, opacity;
}
.fc__card img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  display: block;
}
/* Empty-state placeholder so the stack reads while images are pending */
.fc__card img:not([src]),
.fc__card img[src=""] {
  background:
    linear-gradient(135deg, var(--pink-soft), var(--lilac));
  min-height: 100%;
}

/* Bio text — all panels share one grid cell so the box sizes to the
   tallest bio (no clipping) while only the active one is visible. */
.fc__text {
  width: 100%;
  display: grid;
  text-align: center;
}
.fc__panel {
  grid-area: 1 / 1;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  opacity: 0; transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
  pointer-events: none;
}
.fc__panel.is-active {
  opacity: 1; transform: translateY(0);
  pointer-events: auto;
}
.fc__name {
  font-family: var(--f-display);
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 400; letter-spacing: -0.02em; line-height: 1.05;
  color: var(--ink); margin: 0 0 6px;
}
.fc__role {
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  color: var(--pink); margin: 0 0 14px;
}
.fc__bio {
  font-size: 14px; line-height: 1.7; color: var(--ink-soft);
  margin: 0 auto; max-width: 52ch;
}

/* Progress slider */
.fc__progress {
  width: 100%;
  display: flex; align-items: center; gap: 16px;
}
.fc__count {
  font-family: var(--f-display);
  font-size: 14px; color: var(--ink-soft); white-space: nowrap;
}
.fc__count-now { color: var(--pink); font-weight: 600; }

.fc__range {
  -webkit-appearance: none; appearance: none;
  flex: 1; height: 36px; background: transparent; cursor: pointer;
  margin: 0;
}
.fc__range:focus-visible { outline: 2px solid var(--pink); outline-offset: 4px; border-radius: 40px; }
/* Track — filled to the thumb via JS-set --fill */
.fc__range::-webkit-slider-runnable-track {
  height: 36px; border-radius: 40px;
  background:
    linear-gradient(var(--pink), var(--pink)) left/var(--fill, 0%) 100% no-repeat,
    rgba(23,19,31,0.08);
}
.fc__range::-moz-range-track {
  height: 36px; border-radius: 40px; background: rgba(23,19,31,0.08);
}
.fc__range::-moz-range-progress {
  height: 36px; border-radius: 40px; background: var(--pink);
}
.fc__range::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 44px; height: 44px; margin-top: -4px;
  border-radius: 50%; background: #e9e4ea; border: 3px solid #fff;
  box-shadow: 0 4px 12px -2px rgba(23,19,31,0.35);
  transition: transform 0.2s ease;
}
.fc__range::-moz-range-thumb {
  width: 44px; height: 44px; border: 3px solid #fff;
  border-radius: 50%; background: #e9e4ea;
  box-shadow: 0 4px 12px -2px rgba(23,19,31,0.35);
}
.fc__range:active::-webkit-slider-thumb { transform: scale(1.08); }

/* Wide screens: side-by-side split (card left, bio right, slider full width).
   Only kicks in once the scene panel is wide enough to read comfortably. */
@media (min-width: 1200px) {
  .fc {
    display: grid;
    grid-template-columns: minmax(180px, 210px) 1fr;
    grid-template-rows: 1fr auto;
    align-items: center;
    column-gap: 60px; row-gap: 28px;
    justify-items: start;
  }
  /* Reserve the peek zone on the right of the card column so the stacked
     cards never overlap the bio. */
  .fc__cards { grid-column: 1; grid-row: 1; width: 100%; margin-right: 26px; }
  .fc__text { grid-column: 2; grid-row: 1; align-self: center; text-align: left; }
  .fc__panel { align-items: flex-start; }
  .fc__bio { margin: 0; max-width: 46ch; }
  .fc__progress { grid-column: 1 / -1; grid-row: 2; width: 100%; }
}

/* Mid desktop: the scene panel is too narrow for a comfortable split but
   has a FIXED height (100vh). Keep the vertical stack, anchor it near the
   top (so it doesn't float lost in the middle of a tall portrait panel),
   and size the card off the viewport height — large where there's room,
   small enough not to overflow short landscape screens. */
@media (min-width: 961px) and (max-width: 1199px) {
  /* On tall portrait panels (100vh per scene) the default top-anchored layout
     leaves a big void: visuals pin to the top, body text pins to the bottom.
     Instead, centre each scene's content as one cohesive group. */
  .about__scene { justify-content: center; }
  /* Stop pinning the body to the bottom — let it sit under its visual. */
  .about__scene .scene__body { margin-top: 22px; padding-top: 0; }

  /* Carousel (scene 0) — card grows into a hero, capped so short screens fit. */
  .fc { flex: 0 0 auto; gap: 18px; justify-content: center; }
  .fc__cards {
    width: auto;
    max-width: 80%;
    /* 30vh rate keeps short landscape screens from overflowing; the 340px
       cap lets the card grow into a proper hero on tall portrait panels. */
    height: clamp(160px, 30vh, 340px);
  }

  /* Canvas scenes (1 & 2) — give them a fixed height instead of stretching
     to fill, so they read as part of the centred group. The `.about__scene`
     prefix raises specificity above the base rules, which appear later in
     the file (media queries alone don't win on source order). */
  .about__scene .fin-tree-canvas {
    flex: 0 0 auto; min-height: 0; max-height: none;
    height: clamp(240px, 34vh, 380px);
  }
  .about__scene .community-net {
    flex: 0 0 auto; min-height: 0; max-height: none;
    height: clamp(240px, 34vh, 380px);
  }
}

/* — Scene 1: Finance tree canvas — */
.fin-tree-canvas {
  width: 100%;
  flex: 1;
  display: block;
  min-height: 200px;
  max-height: 340px;
}
.about__scene.is-active .fin-row__bar { width: calc(var(--bar-w, 0) * 1%); }
.fin-row__val { font-family: var(--f-display); font-size: 14px; font-weight: 500; color: var(--ink); letter-spacing: -0.01em; }

.fin-stats { display: flex; gap: 28px; }
.fin-stat__num {
  display: block; font-family: var(--f-display);
  font-size: clamp(16px, 1.8vw, 22px); font-weight: 500;
  color: var(--ink); letter-spacing: -0.03em; line-height: 1;
}
.fin-stat__arrow { color: var(--pink); margin: 0 3px; }
.fin-stat__label { display: block; font-size: 11px; color: var(--ink-soft); margin-top: 5px; letter-spacing: 0.04em; }

/* — Scene 2: Community canvas — */
.community-net {
  width: 100%;
  height: 54vh;
  max-height: 340px;
  min-height: 180px;
  border-radius: 14px;
  overflow: hidden;
  margin-top: 4px;
  flex-shrink: 0;
}
.cnet-canvas {
  width: 100%; height: 100%;
  display: block;
  cursor: crosshair;
}

/* =========================================================
   WHY THIS MATTERS (dark section)
   ========================================================= */
.why {
  padding: 120px 40px;
  background: var(--ink); color: var(--paper);
  position: relative; z-index: 1;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,27,142,0.25), transparent 70%);
}
.why__head { max-width: var(--maxw); margin: 0 auto 70px; }

.stats {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 40px 60px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,249,242,0.12);
  margin-bottom: 10px;
}
.stat__num {
  font-family: var(--f-display);
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 300; font-style: italic;
  color: var(--butter);
  line-height: 1;
  letter-spacing: -0.04em;
  display: inline-block;
}
.stat__unit {
  font-family: var(--f-display);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--pink);
  margin-left: 4px;
}
.stat p {
  font-size: 16px; line-height: 1.5;
  color: rgba(255,249,242,0.72);
  margin: 16px 0 0; max-width: 420px;
}
.stat__num--text {
  font-size: clamp(36px, 3.2vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.stat__num--text + .stat__unit {
  font-size: clamp(18px, 1.8vw, 28px);
  vertical-align: middle;
}
.stats__sources {
  grid-column: 1 / -1;
  font-size: 11px;
  color: rgba(255,249,242,0.35);
  padding-top: 16px;
  line-height: 1.5;
}

.why__gaps { max-width: var(--maxw); margin: 0 auto; }
.why__gaps h3 {
  font-family: var(--f-display);
  font-weight: 400; font-size: 22px; font-style: italic;
  margin: 0 0 30px;
  color: var(--butter);
}
.gap-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.gap {
  padding: 28px 24px;
  background: rgba(255,249,242,0.06);
  border: 1px solid rgba(255,249,242,0.12);
  border-radius: var(--r-md);
  transition: background 0.3s, transform 0.3s;
}
.gap:hover {
  background: var(--pink); border-color: var(--pink);
  transform: translateY(-6px);
}
.gap:hover h4, .gap:hover p { color: var(--paper); }
.gap__ico { font-size: 28px; display: block; margin-bottom: 16px; }
.gap h4 {
  font-family: var(--f-display); font-weight: 500;
  font-size: 19px; margin: 0 0 8px;
}
.gap p {
  font-size: 14px; line-height: 1.5;
  color: rgba(255,249,242,0.7); margin: 0;
}

/* =========================================================
   APPLICATION FORM
   ========================================================= */
.apply {
  padding: 120px 40px;
  background: linear-gradient(180deg, var(--pink-soft) 0%, var(--paper) 80%);
  position: relative; z-index: 1;
}
.apply__head {
  max-width: 820px; margin: 0 auto 60px;
  text-align: center;
}
.apply__head .section-sub { margin: 0 auto; }

.form {
  max-width: 820px; margin: 0 auto;
  background: var(--paper);
  padding: 48px;
  border-radius: var(--r-lg);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-hard);
}
.form__row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 20px; margin-bottom: 20px;
}
.field {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px;
}
.field__label {
  font-size: 13px; font-weight: 600; letter-spacing: 0.04em;
  color: var(--ink);
}
.field input, .field textarea, .field select {
  padding: 14px 16px;
  border: 1.5px solid rgba(23,19,31,0.18);
  border-radius: var(--r-sm);
  background: var(--paper);
  font-size: 15px;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: var(--f-body);
  width: 100%;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(255,27,142,0.12);
}
.field textarea { resize: vertical; min-height: 90px; }

#phoneError {
  display: none;
  color: var(--pink-hot);
  font-size: 12px;
}

.radio-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
}
.radio { position: relative; cursor: pointer; }
.radio input { position: absolute; opacity: 0; pointer-events: none; }
.radio span {
  display: block; text-align: center;
  padding: 12px 8px;
  border: 1.5px solid rgba(23,19,31,0.18);
  border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500;
  transition: all 0.2s;
}
.radio:hover span { border-color: var(--ink); }
.radio input:checked + span {
  background: var(--ink); color: var(--paper);
  border-color: var(--ink);
}

.field--check {
  flex-direction: row; align-items: center; gap: 12px;
  cursor: pointer;
}
.field--check input {
  width: 20px; height: 20px; accent-color: var(--pink);
}
.field--check span { font-size: 14px; color: var(--ink-soft); }

.btn--submit {
  width: 100%; justify-content: center; margin-top: 10px;
  padding: 18px; font-size: 16px;
}

.form__success {
  display: none;
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--mint);
  border-radius: var(--r-md);
  border: 1.5px solid #47a373;
  align-items: flex-start; gap: 14px;
}
.form__success.is-visible { display: flex; }
.form__success-ico {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: #47a373; color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.form__success strong { display: block; margin-bottom: 4px; font-size: 15px; }
.form__success p { margin: 0; font-size: 14px; color: var(--ink-soft); }

.form__fail {
  display: none;
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--pink-soft);
  border-radius: var(--r-md);
  border: 1.5px solid #e91e8b;
  align-items: flex-start; gap: 14px;
}
.form__fail.is-visible { display: flex; }
.form__fail-ico {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 50%;
  background: #e91e8b; color: var(--paper);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
.form__fail strong { display: block; margin-bottom: 4px; font-size: 15px; }
.form__fail p { margin: 0; font-size: 14px; color: var(--ink-soft); }

/* =========================================================
   TRUST BLOCK
   ========================================================= */
.trust {
  padding: 100px 40px;
  background: var(--ink); color: var(--paper);
  position: relative; z-index: 1;
}
.trust__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center;
}
.trust__eyebrow {
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--butter); font-weight: 600;
}
.trust__logo {
  font-family: var(--f-display);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300; letter-spacing: -0.04em;
  margin: 8px 0 20px;
  line-height: 1;
}
.trust__left p {
  font-size: 17px; line-height: 1.6;
  color: rgba(255,249,242,0.75);
  max-width: 420px;
  margin: 0 0 30px;
}
.trust__right {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.trust__chip {
  padding: 24px;
  background: rgba(255,249,242,0.06);
  border: 1px solid rgba(255,249,242,0.12);
  border-radius: var(--r-md);
  transition: background 0.3s, border-color 0.3s;
}
.trust__chip:hover { background: rgba(255,226,122,0.1); border-color: var(--butter); }
.trust__chip strong {
  display: block;
  font-family: var(--f-display); font-weight: 500;
  font-size: 28px; color: var(--butter);
  letter-spacing: -0.02em; margin-bottom: 4px;
}
.trust__chip span {
  font-size: 13px; color: rgba(255,249,242,0.7);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--paper-warm);
  padding: 80px 40px 30px;
  position: relative; z-index: 1;
}
.footer__top {
  max-width: var(--maxw); margin: 0 auto 60px;
  display: grid; grid-template-columns: 1fr 2fr; gap: 60px;
}
.footer__logo-img {
  height: 70px; width: auto; display: block;
  margin-bottom: 12px;
}
.footer__brand p { margin: 0; font-size: 13px; color: var(--ink-soft); }
.footer__cols {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.footer__cols h5 {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-soft); margin: 0 0 14px; font-weight: 600;
}
.footer__cols a {
  display: block; font-size: 14px; color: var(--ink);
  padding: 4px 0; transition: color 0.2s;
}
.footer__cols a:hover { color: var(--pink); }
.footer__bottom {
  max-width: var(--maxw); margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(23,19,31,0.1);
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--ink-soft);
}

/* =========================================================
   Entrance animations
   ========================================================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 960px) {
  .btn--mobile-only  { display: inline-flex; }
  .btn--desktop-only { display: none; }
  .nav { padding: 4px 20px; }
  .nav__logo img { height: 72px; }
  .nav__links { display: none; }
  .nav__links.is-open {
    display: flex;
    position: fixed;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    padding: 24px;
    background: var(--paper);
    border-bottom: 1px solid rgba(23,19,31,0.08);
    box-shadow: 0 10px 30px -10px rgba(23,19,31,0.15);
  }
  .nav__burger { display: flex; }

  /* Dark full-bleed hero on mobile — matches the founders photo */
  .hero { padding: 0; background: var(--ink); }
  .hero__desktop-banner { display: none; }
  .hero__stickers { display: none; }
  .hero__inner { display: flex; flex-direction: column; gap: 0; min-height: auto; }
  .hero__left { display: contents; }
  .eyebrow { order: 1; display: none; }
  .hero__title { display: none; }
  .hero__right { display: none; }

  /* Image fills viewport below nav; crop from bottom to keep top text visible */
  .hero__mobile-img {
    display: block;
    order: 1;
    width: 100%;
    margin: 0;
    position: relative;
    overflow: hidden;
  }
  .hero__mobile-img img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
  }
  /* Gradient at the bottom of the image so CTAs float over it cleanly */
  .hero__mobile-img::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 110px;
    background: linear-gradient(to bottom, transparent, var(--ink) 90%);
    pointer-events: none;
  }

  /* CTAs pulled up to overlap the gradient — no gap, no scroll needed */
  .hero__ctas {
    order: 2;
    padding: 0 20px 28px;
    margin-top: -50%;
    position: relative;
    z-index: 2;
    background: transparent;
    flex-wrap: nowrap;
    gap: 12px;
  }
  .hero__ctas .btn { padding: 11px 18px; font-size: 3vw; gap: 7px; }
  .hero__ctas .btn__icon { width: 18px; height: 18px; font-size: 9px; }
  /* Primary: use pink so it pops on dark */
  .hero__ctas .btn--primary { background: var(--pink); color: var(--paper); }
  .hero__ctas .btn--primary:hover { background: var(--pink-hot); }
  /* Ghost: white outline on dark */
  .hero__ctas .btn--ghost { color: var(--paper); border-color: rgba(255,249,242,0.45); }
  .hero__ctas .btn--ghost:hover { background: var(--paper); color: var(--ink); }

  .hero__tag { display: none; }
  .hero__sub { display: none; }
  .hero__trust { display: none; }
  .sticker { display: none; }

  .episodes { padding: 36px 20px 28px; }
  .episodes__head { padding: 0; }

  /* HIDE 3D carousel, show auto-scrolling marquee */
  .carousel-wrap { display: none; }
  .carousel-mobile {
    display: block;
    overflow: hidden;
    padding: 10px 0 40px;
    margin: 0 -20px;
  }
  .carousel-mobile__track {
    display: flex;
    gap: 18px;
    width: max-content;
    animation: carousel-mobile-ltr 30s linear infinite;
  }
  .carousel-mobile__track:hover {
    animation-play-state: paused;
  }
  @keyframes carousel-mobile-ltr {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
  }
  .carousel-mobile .card {
    flex: 0 0 240px; height: 420px;
  }

  /* About — stacked scenes on mobile (no sticky) */
  .about__scroll-wrap { height: auto; }
  .about__viewport { position: relative; height: auto; display: flex; flex-direction: column; }
  .about__left { padding: 28px 20px 20px; border-right: none; border-bottom: 1px solid rgba(23,19,31,0.06); }
  .about__title { font-size: clamp(24px, 6vw, 36px) !important; }
  .about__lede { font-size: 14px; margin-bottom: 0; }
  .about__stepnav { display: none; }
  .about__scenes-wrap { position: relative; height: auto; }
  .about__scene {
    position: relative; inset: auto;
    opacity: 1 !important; transform: none !important;
    pointer-events: auto; padding: 28px 20px 32px; transition: none;
    min-height: 500px;
  }
  .about__scene + .about__scene { border-top: 1px solid rgba(23,19,31,0.07); }
  .about__scene .scene__body { margin-top: 18px; padding-top: 0; }

  /* Founder carousel already stacks vertically by default; just widen
     the cards a touch for small screens. */
  .fc__cards { width: min(78%, 300px); }

  .fin-tree-canvas { min-height: 0; max-height: none; height: 400px; flex: none; }
  /* Tighter headline-to-canvas gap on mobile */
  .about__scene[data-scene="1"] .scene__headline { margin-bottom: 8px; }
  .community-net { height: 320px; max-height: none; }

  .why { padding: 36px 20px; }
  .stats { grid-template-columns: 1fr; gap: 20px; border-bottom: none; }
  .stat { display: grid; grid-template-columns: 64px 28px 1fr; align-items: center; column-gap: 8px; }
  .stat__num { font-size: 56px; text-align: right; line-height: 1; }
  .stat__unit { font-size: 24px; line-height: 1; align-self: center; }
  .stat p { font-size: 13px; line-height: 1.45; margin: 0; padding-left: 8px; border-left: 1px solid rgba(255,249,242,0.2); }
  .stat:has(.stat__num--text) { display: block; }
  .stat:has(.stat__num--text) .stat__num--text { font-size: 22px; letter-spacing: -0.01em; text-align: left; }
  .stat:has(.stat__num--text) .stat__unit { display: inline; font-size: 18px; vertical-align: baseline; margin-left: 2px; }
  .stat:has(.stat__num--text) p { font-size: 13px; margin: 6px 0 0; padding-left: 0; border-left: none; max-width: none; }
  .stats__sources { padding-top: 12px; }
  .gap-grid { grid-template-columns: 1fr 1fr; }

  .apply { padding: 36px 20px; }
  .form { padding: 28px 22px; }
  .form__row { grid-template-columns: 1fr; gap: 0; margin-bottom: 0; }
  .radio-grid { grid-template-columns: 1fr 1fr; }

  .trust { padding: 28px 20px; }
  .trust__inner { grid-template-columns: 1fr; gap: 20px; }
  .trust__eyebrow { font-size: 10px; }
  .trust__logo { font-size: 32px; margin: 4px 0 10px; }
  .trust__left p { font-size: 13px; line-height: 1.5; margin-bottom: 16px; }
  .trust__left .btn { padding: 10px 18px; font-size: 13px; }
  .trust__right { grid-template-columns: 1fr 1fr !important; gap: 10px; }
  .trust__chip { padding: 14px 16px; }
  .trust__chip strong { font-size: 20px; }
  .trust__chip span { font-size: 11px; }

  .footer { padding: 36px 20px 16px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
  .footer__logo-img { height: 48px; margin-bottom: 6px; }
  .footer__brand p { font-size: 11px; }
  .footer__cols { grid-template-columns: 1fr; gap: 16px; }
  .footer__cols h5 { margin-bottom: 6px; }
  .footer__cols a { font-size: 13px; padding: 2px 0; }
  .footer__bottom { flex-direction: column; gap: 6px; text-align: center; padding-top: 16px; }
}

@media (max-width: 520px) {
  .hero__title { font-size: 72px; }
  .gap-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .footer__cols { grid-template-columns: 1fr; }
  .collage__card--main { width: 70%; height: 62%; }
}

/* =========================================================
   MOBILE INTRO SCREEN
   ========================================================= */
.intro {
  display: flex;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0e0b14;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 2s ease;
}
.intro.is-fading { opacity: 0; pointer-events: none; }
.intro.is-gone   { display: none; }

.intro__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
