/* ============================================================
   Aku's Pack — Landing (Apple-style, black, minimal)
   ============================================================ */

@font-face {
  font-family: "Nostromo";
  src: url("../fonts/Nostromo-Heavy.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nostromo";
  src: url("../fonts/Nostromo-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nostromo";
  src: url("../fonts/Nostromo-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AkuBrushstroke";
  src: url("../fonts/AkuBrushstroke-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Alias so the inlined zipper-pull SVG finds its font reference */
@font-face {
  font-family: "AkuBrushstroke-Regular";
  src: url("../fonts/AkuBrushstroke-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Termina";
  src: url("../fonts/Termina-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --yellow: #f8c644;
  --blue: #6cb9ff;
  --black: #000000;
  --ink: #f5f5f7;
  --grey-text: #86868b;
  --grey-line: rgba(255, 255, 255, 0.10);
  --card-bg: #0d0d0f;
  --card-bg-2: #15151a;
  --speed-bg: #1a1a1d;
  --pad-x: clamp(20px, 5vw, 80px);
  /* Standard vertical rhythm for major sections */
  --sec-py: clamp(72px, 10vw, 130px);
  --f-display: "Termina", "Helvetica Neue", Impact, sans-serif;
  --f-display-strong: "Nostromo", "Helvetica Neue", Impact, sans-serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --f-apple: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", "Inter", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  font-family: var(--f-body);
  font-weight: 500;
  background: var(--black);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
::selection { background: var(--yellow); color: var(--black); }
img, video { max-width: 100%; display: block; }

/* ============================================================
   NAV — translucent black pill
   ============================================================ */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(20, 20, 22, 0.72);
  backdrop-filter: saturate(160%) blur(18px);
  -webkit-backdrop-filter: saturate(160%) blur(18px);
  border: 1px solid var(--grey-line);
  border-radius: 999px;
  padding: 10px 20px;
  transition: opacity 360ms ease, transform 360ms ease;
}
.nav__brand { display: inline-flex; align-items: center; text-decoration: none; }
.nav__brand img { height: 24px; width: auto; display: block; filter: brightness(0) invert(1); }
.nav__links { display: flex; gap: 32px; align-items: center; }
.nav__links a {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--grey-text);
  text-decoration: none;
  white-space: nowrap;
  transition: color 200ms ease;
}
.nav__links a:hover { color: var(--ink); }
.nav__cta {
  background: var(--yellow);
  color: var(--black);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 200ms ease, transform 200ms ease;
}
.nav__cta:hover { opacity: 0.85; transform: translateY(-1px); }
.nav__hamburger {
  display: none; background: none; border: none;
  padding: 6px; margin: -6px 0; cursor: pointer; color: var(--ink);
}
@media (max-width: 900px) {
  .nav { padding: 8px 14px; gap: 12px; }
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: inline-flex; }
}
body.dot-zoom-active .nav {
  opacity: 0;
  transform: translateX(-50%) translateY(-12px);
  pointer-events: none;
}

/* Mobile menu */
.nav-mobile {
  position: fixed; inset: 0; z-index: 100;
  background: var(--black);
  display: flex; flex-direction: column;
  padding: 24px;
  transform: translateY(-100%);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
.nav-mobile.is-open { transform: translateY(0); pointer-events: auto; }
.nav-mobile__close {
  align-self: flex-end; background: none; border: none;
  padding: 8px; cursor: pointer; color: var(--ink);
}
.nav-mobile__links {
  display: flex; flex-direction: column; align-items: center; gap: 28px;
  margin: auto 0;
}
.nav-mobile__links a {
  font-family: var(--f-body);
  font-weight: 500; font-size: 18px;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink); text-decoration: none;
}
.nav-mobile__cta {
  align-self: center;
  background: var(--yellow); color: var(--black);
  font-weight: 600; font-size: 14px;
  letter-spacing: 0.10em; text-transform: uppercase;
  padding: 14px 24px; border-radius: 999px;
  text-decoration: none; margin-bottom: 24px;
}

/* ============================================================
   DOT ZOOM
   ============================================================ */
.dot-zoom {
  position: relative;
  height: 720vh;
  background: var(--black);
}
.dot-zoom__sticky {
  position: sticky; top: 0;
  height: 100vh;
  overflow: hidden;
  background: var(--black);
}
#dot-zoom-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: block;
  z-index: 1;
  transition: opacity 700ms ease;
}
.dot-zoom-section--reveal-hero #dot-zoom-canvas { opacity: 0; }

.dot-zoom__overlays {
  position: absolute; inset: 0;
  z-index: 3;
  pointer-events: none;
}
.dot-zoom__line {
  position: absolute;
  left: 50%;
  width: min(92vw, 880px);
  text-align: center;
  font-family: var(--f-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.005em;
  text-transform: none;
  opacity: 0;
  transition: opacity 320ms ease;
  display: flex;
  flex-direction: column;
  gap: clamp(4px, 0.6vw, 10px);
}
.dot-zoom__line--opening {
  /* Vertically centered in the viewport, sits behind/over the dots */
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(22px, 3vw, 46px);
}
.dot-zoom__line--final {
  /* Sit just above the centered yellow dot (dot ~ 50% center, ~12vmin tall) */
  top: 50%;
  transform: translate(-50%, calc(-100% - 9vmin));
  font-size: clamp(20px, 2.6vw, 38px);
}
.dot-zoom__plain { color: var(--ink); }
.dot-zoom__grad {
  background: linear-gradient(92deg, var(--blue) 0%, var(--yellow) 70%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.dot-zoom-section--reveal-hero .dot-zoom__line { opacity: 0 !important; }

.dot-zoom__hint {
  position: absolute;
  bottom: clamp(24px, 4vh, 56px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
  color: var(--grey-text);
  transition: opacity 240ms ease;
}
.dot-zoom__progress {
  position: absolute;
  bottom: clamp(70px, 8vh, 110px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 8px;
  align-items: center;
  transition: opacity 300ms ease;
}
.dot-zoom__pip {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  transition: width 300ms cubic-bezier(0.2, 0.8, 0.2, 1), background 300ms ease;
}
.dot-zoom__pip.is-active { width: 22px; background: var(--yellow); }
.dot-zoom__pip.is-passed { background: var(--yellow); }
.dot-zoom-section--reveal-hero .dot-zoom__progress,
.dot-zoom-section--reveal-hero .dot-zoom__hint { opacity: 0 !important; }

/* ─── Morph element: travels from canvas dot → bar above next section ─── */
.morph-dot {
  position: fixed;
  z-index: 60;
  background: var(--yellow);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.morph-dot.is-active { opacity: 1; visibility: visible; }
.morph-dot.is-faded { opacity: 0; transition: opacity 500ms ease; }

/* ============================================================
   HERO — portrait 9:16 video (target of the dot-zoom morph)
   ============================================================ */
.hero-sec {
  background: var(--black);
  padding: clamp(40px, 6vw, 80px) clamp(20px, 5vw, 60px) clamp(60px, 8vw, 110px);
}
.hero-sec__media {
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  width: auto;
  height: min(82vh, 820px);
  max-width: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: #050507;
}
.hero-sec__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   SECTION 2 — GET UP TO SPEED (Apple-style cards)
   Section bg: dark grey. Cards: black. Image inset, not full-bleed.
   ============================================================ */
.speed-sec {
  background: var(--speed-bg);
  color: var(--ink);
  padding: var(--sec-py) 0;
}
.speed-sec__head {
  padding: 0 clamp(20px, 6vw, 80px);
  margin-bottom: clamp(28px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 36px);
}
.speed-sec__bar {
  display: block;
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: var(--yellow);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 700ms ease 200ms, transform 700ms ease 200ms;
}
.speed-sec__bar.is-revealed { opacity: 1; transform: translateY(0); }
.speed-sec__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  text-transform: none;
  margin: 0;
  color: var(--ink);
}
.speed-sec__title--dim,
.product-sec__title--dim { opacity: 0.6; }

/* Card scroller */
.cards { position: relative; }
.cards__viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.cards__viewport::-webkit-scrollbar { display: none; }
.cards__track {
  display: flex;
  gap: clamp(12px, 1.6vw, 24px);
  padding: 0 clamp(20px, 6vw, 80px);
  margin: 0;
  list-style: none;
}
.card {
  flex: 0 0 clamp(280px, 38vw, 560px);
  scroll-snap-align: start;
  background: var(--black);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: clamp(420px, 60vh, 620px);
  padding: clamp(20px, 2.2vw, 28px);
  gap: clamp(18px, 2vw, 24px);
}
@media (max-width: 700px) {
  .cards__track { padding: 0 16px; gap: 12px; }
  .card {
    flex: 0 0 86vw;
    height: auto;
    aspect-ratio: 4 / 5;
    max-height: none;
  }
  .card__media { aspect-ratio: auto; }
}
.card__media {
  margin: 0;
  flex: 1 1 auto;
  background: #050507;
  overflow: hidden;
  position: relative;
  border-radius: 14px;
  min-height: 0;
}
.card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.card:hover .card__media img { transform: scale(1.03); }
.card__caption {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 4px 4px;
}
.card__eyebrow {
  font-family: var(--f-apple);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0;
}
.card__head {
  font-family: var(--f-apple);
  font-weight: 600;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-transform: none;
  margin: 0;
  color: var(--ink);
}
.card__body {
  font-family: var(--f-apple);
  font-weight: 400;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.5;
  letter-spacing: 0;
  margin: 0;
  color: var(--grey-text);
}
.card__body em { font-style: italic; color: var(--ink); }

/* Pill controls + play button */
.cards__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: clamp(24px, 3vw, 40px);
}
.cards__pills {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border-radius: 999px;
  padding: 6px 12px;
  gap: 6px;
}
.cards__pill {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,0.30);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 250ms ease, width 250ms ease;
}
.cards__pill.is-active {
  background: var(--ink);
  width: 22px;
}
.cards__play {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid var(--grey-line);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease;
  color: var(--ink);
}
.cards__play:hover { background: rgba(255,255,255,0.18); }
.cards__play-icon {
  width: 0; height: 0;
  border-left: 8px solid currentColor;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  margin-left: 2px;
  transition: all 200ms ease;
}
.cards__play.is-playing .cards__play-icon {
  border: none;
  width: 8px;
  height: 10px;
  margin-left: 0;
  background: linear-gradient(to right, currentColor 0 3px, transparent 3px 5px, currentColor 5px 8px);
}

/* ============================================================
   SECTION 3 — AKU'S BACKPACK PROGRAM
   image-first, then centered copy + pill partners + stats
   ============================================================ */
.program-sec {
  background: var(--black);
  color: var(--ink);
  padding: var(--sec-py) 0;
}
.program-sec__hero {
  margin: 0 auto;
  width: min(1280px, 92vw);
  aspect-ratio: 16 / 9;
  border-radius: 28px;
  overflow: hidden;
  background: var(--card-bg);
}
@media (max-width: 700px) { .program-sec__hero { aspect-ratio: 4 / 5; } }
.program-sec__hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.program-sec__copy {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(56px, 8vw, 110px) clamp(20px, 6vw, 40px) 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vw, 36px);
}
.program-sec__eyebrow {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0;
}
.program-sec__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.4vw, 8px);
  color: var(--ink);
}
.program-sec__title--accent {
  background: linear-gradient(92deg, var(--blue) 0%, var(--yellow) 80%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.program-sec__lede {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.55;
  margin: 0;
  max-width: 620px;
  color: var(--grey-text);
}
.program-sec__partners-block {
  margin-top: clamp(40px, 6vw, 72px);
  text-align: center;
}
.program-sec__partners-eyebrow {
  font-family: var(--f-apple);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin: 0 0 12px;
}
.program-sec__partners {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 10px;
  max-width: 760px;
}

/* 3 vertical program cards: image + body text under each */
.program-cards {
  list-style: none;
  margin: clamp(56px, 8vw, 112px) auto 0;
  padding-inline-start: 0;
  padding: 0 clamp(20px, 5vw, 60px);
  width: min(1280px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 40px);
}
.program-cards > li { list-style: none; }
.program-cards > li::marker { content: ""; }
.program-card {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.4vw, 18px);
}
.program-card__media {
  margin: 0;
  aspect-ratio: 4 / 5;
  border-radius: 16px;
  overflow: hidden;
  background: var(--card-bg);
}
.program-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.program-card:hover .program-card__media img { transform: scale(1.04); }
.program-card__body {
  margin: 0;
  font-family: var(--f-apple);
  font-weight: 400;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.55;
  color: var(--grey-text);
  letter-spacing: 0;
  padding: 0;
}
@media (max-width: 700px) {
  /* Cards stay 3-up on mobile but render at ~50% scale of the desktop look,
     with body text matched to the stat-label rhythm (smaller, muted). */
  .program-cards {
    padding: 0 16px;
    gap: 10px;
  }
  .program-card { gap: 8px; }
  .program-card__media { border-radius: 10px; }
  .program-card__body {
    font-size: 11px;
    line-height: 1.4;
  }
}

/* Inline stat row (sits right under the program description) */
.program-sec__stats--inline {
  margin: clamp(24px, 3vw, 40px) 0 0;
  flex-wrap: nowrap;
  justify-content: center;
}
@media (max-width: 700px) {
  /* Force a single row on phones; let the dividers shrink so all 3 fit */
  .program-sec__stats--inline {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 0 4px;
    overflow: visible;
    align-items: stretch;
  }
  .program-sec__stats--inline .program-stat {
    flex: 1 1 0;
    min-width: 0;
    align-items: center;
    text-align: center;
  }
  .program-sec__stats--inline .program-stat__div {
    height: auto;
    align-self: stretch;
  }
  .program-sec__stats--inline .program-stat__num {
    font-size: clamp(20px, 6vw, 28px);
    white-space: nowrap;
  }
  .program-sec__stats--inline .program-stat__lbl {
    font-size: 9px;
    letter-spacing: 0.06em;
    line-height: 1.25;
    text-align: center;
    margin-top: 4px;
  }
}

/* Pull quote — Micah's brand mantra */
.program-pull {
  margin: clamp(64px, 9vw, 128px) auto 0;
  width: min(900px, 88vw);
  text-align: center;
  padding: 0;
  border: none;
}
.program-pull p {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(24px, 3.6vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--ink);
}
.program-pull cite {
  display: block;
  margin-top: clamp(16px, 2vw, 24px);
  font-family: var(--f-apple);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* Larger plus badge on program stats */
.program-stat__plus {
  font-size: 0.6em;
  vertical-align: top;
  opacity: 0.7;
}
.program-sec__partners li {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: clamp(12px, 1vw, 14px);
  letter-spacing: 0.04em;
  padding: 8px 16px;
  border: 1px solid var(--grey-line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,0.03);
}
.program-sec__stats {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  margin: clamp(32px, 4vw, 56px) auto 0;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
}
.program-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.program-stat__num {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1;
  color: var(--yellow);
}
.program-stat__lbl {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--grey-text);
  text-transform: uppercase;
}
.program-stat__div {
  width: 1px;
  height: 36px;
  background: var(--grey-line);
}

/* ============================================================
   SECTION 4 — TAKE A CLOSER LOOK (product cards)
   ============================================================ */
.product-sec {
  background: var(--black);
  color: var(--ink);
  padding: var(--sec-py) 0;
}
.product-sec__head {
  padding: 0 clamp(20px, 6vw, 80px);
  margin-bottom: clamp(28px, 4vw, 56px);
}
.product-sec__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  margin: 0;
  color: var(--ink);
}

.pcards { position: relative; }
.pcards__viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pcards__viewport::-webkit-scrollbar { display: none; }
.pcards__track {
  display: flex;
  gap: clamp(12px, 1.6vw, 24px);
  padding: 0 clamp(20px, 6vw, 80px);
  margin: 0;
  list-style: none;
}
.pcard {
  flex: 0 0 clamp(300px, 48vw, 760px);
  scroll-snap-align: center;
  background: var(--card-bg);
  border-radius: 28px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 700px) {
  .pcards__track { padding: 0 16px; gap: 12px; }
  .pcard {
    flex: 0 0 86vw;
    aspect-ratio: 4 / 5;
  }
}
.pcard__media {
  margin: 0;
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pcard__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.pcards__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 40px);
}
.pcards__btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid var(--grey-line);
  color: var(--ink);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 200ms ease, transform 200ms ease;
  font-family: var(--f-body);
}
.pcards__btn:hover { background: rgba(255,255,255,0.18); transform: translateY(-1px); }

/* ============================================================
   SECTION 5 — BUY ONE. GIVE ONE.
   ============================================================ */
.bogo-sec {
  background: var(--black);
  color: var(--ink);
  padding: var(--sec-py) clamp(20px, 6vw, 80px);
}
.bogo-sec__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
@media (max-width: 900px) {
  .bogo-sec__inner { grid-template-columns: 1fr; gap: 56px; }
}

.bogo-sec__stack {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 560px;
  margin: 0 auto;
  /* --par is set by JS (0..1, eased) — drives layered parallax */
  --par: 0;
}
.bogo-sec__layer {
  position: absolute;
  border-radius: 24px;
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  will-change: transform;
}
.bogo-sec__layer img { width: 100%; height: 100%; object-fit: cover; }
.bogo-sec__layer--back {
  inset: 0 22% 18% 0;
  transform: rotate(-5deg) translate3d(calc(var(--par) * -28px), calc(var(--par) * -36px), 0);
  opacity: 0.7;
  transition: opacity 400ms ease;
}
.bogo-sec__layer--mid {
  inset: 12% 0 6% 18%;
  transform: rotate(4deg) translate3d(calc(var(--par) * 22px), calc(var(--par) * -18px), 0);
  opacity: 0.85;
}
.bogo-sec__layer--front {
  inset: 8% 8% 0 4%;
  margin: 0;
  transform: translate3d(0, calc(var(--par) * 8px), 0);
}

.bogo-sec__copy {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 32px);
}
.bogo-sec__eyebrow {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--yellow);
  margin: 0;
}
.bogo-sec__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(36px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.005em;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.bogo-sec__title span { display: block; }
.bogo-sec__title--accent {
  background: linear-gradient(92deg, var(--blue) 0%, var(--yellow) 75%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.bogo-sec__lede {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: clamp(15px, 1.3vw, 19px);
  line-height: 1.55;
  color: var(--grey-text);
  margin: 0;
  max-width: 520px;
}
.bogo-sec__lede em { color: var(--ink); font-style: italic; }

/* BOGO math: 1 + 1 = 2 infographic */
.bogo-sec__math {
  margin: clamp(8px, 1.5vw, 16px) 0 0;
  padding: clamp(20px, 2.4vw, 28px) 0 0;
  border-top: 1px solid var(--grey-line);
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: clamp(8px, 1.4vw, 18px);
  max-width: 520px;
}
.bogo-math__cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: clamp(14px, 1.6vw, 20px) clamp(8px, 1vw, 14px);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--grey-line);
  border-radius: 14px;
  text-align: center;
}
.bogo-math__cell--accent {
  background: rgba(248, 198, 68, 0.10);
  border-color: rgba(248, 198, 68, 0.35);
}
.bogo-math__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 0.95;
  color: var(--ink);
}
.bogo-math__cell--accent .bogo-math__num { color: var(--yellow); }
.bogo-math__lbl {
  font-family: var(--f-apple);
  font-weight: 500;
  font-size: clamp(11px, 0.85vw, 12px);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--grey-text);
}
.bogo-math__op {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--grey-text);
  line-height: 1;
}
@media (max-width: 520px) {
  .bogo-sec__math {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .bogo-math__op { display: none; }
}
.bogo-sec__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 6px;
  background: var(--yellow);
  color: var(--black);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: opacity 200ms ease, transform 200ms ease;
}
.bogo-sec__cta:hover { opacity: 0.85; transform: translateY(-1px); }

/* ============================================================
   BRAND TICKER (quiet — small grey type on black)
   ============================================================ */
.ticker {
  background: var(--black);
  overflow: hidden;
  padding: clamp(20px, 2.6vw, 32px) 0;
  border-top: 1px solid var(--grey-line);
  border-bottom: 1px solid var(--grey-line);
}
.ticker__track {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.ticker__line {
  display: inline-flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: clamp(18px, 2.2vw, 32px);
  white-space: nowrap;
  animation: tickerScroll 80s linear infinite;
  will-change: transform;
}
.ticker__line li {
  font-family: var(--f-apple);
  font-weight: 500;
  font-size: clamp(11px, 0.9vw, 13px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-text);
}
.ticker__line li:nth-child(even) {
  color: rgba(255, 255, 255, 0.18);
  font-weight: 400;
  letter-spacing: 0;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker__line { animation: none; }
}

/* ============================================================
   ZIPPER SECTION (kept)
   ============================================================ */
.zipper-sec {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
  --zipper-duration: 1500ms;
  --zipper-ease: cubic-bezier(0.4, 0, 0.2, 1);
}
.zipper-sec__defs { position: absolute; width: 0; height: 0; overflow: hidden; }
.zipper-sec__bg {
  position: absolute; inset: 0; z-index: 0;
  display: flex; align-items: center; justify-content: center;
  background: #000;
  padding: 0 var(--pad-x);
}
.zipper-sec__reveal {
  text-align: center; opacity: 0;
  transform: scale(0.92);
  transition: opacity 500ms ease 200ms, transform 500ms ease 200ms;
}
.zipper-sec.is-complete .zipper-sec__reveal { opacity: 1; transform: scale(1); }
.zipper-sec__reveal h2 {
  font-family: "AkuBrushstroke", "Caveat", cursive;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 1;
  margin: 0 0 16px;
  color: #fff;
}
.zipper-sec__reveal p {
  font-family: "AkuBrushstroke", "Caveat", cursive;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1.2;
  margin: 0;
  color: #03e9a4;
}
.zipper-sec__yellow {
  position: absolute; inset: 0; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  background: var(--yellow);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  transition: clip-path var(--zipper-duration) var(--zipper-ease);
  padding: 0 var(--pad-x);
}
.zipper-sec.is-unzipping .zipper-sec__yellow {
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
}
.zipper-sec__cta { text-align: center; filter: url(#sketchy); }
.zipper-sec__cta h2 {
  font-family: "AkuBrushstroke", "Caveat", cursive;
  font-weight: 400;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.95;
  margin: 0 0 4px;
  color: #000;
}
.zipper-sec__cta p {
  font-family: "AkuBrushstroke", "Caveat", cursive;
  font-size: clamp(20px, 2vw, 32px);
  line-height: 1;
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
}

.zipper-sec__track {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 48px;
  transform: translateY(-50%);
  z-index: 20;
  pointer-events: none;
  /* Cleaner zipper rendering; the wobble filter was removed so the teeth
     read as actual interlocking metal teeth, not abstract triangles. */
  clip-path: inset(0 100% 0 0);
  transition: clip-path var(--zipper-duration) var(--zipper-ease);
}
.zipper-sec.is-unzipping .zipper-sec__track,
.zipper-sec.is-complete .zipper-sec__track {
  clip-path: inset(0 0 0 0);
}
/* Once fully unzipped, hide the track so it doesn't bisect the reels */
.zipper-sec.is-complete .zipper-sec__track {
  opacity: 0;
  transition: opacity 350ms ease 200ms;
  pointer-events: none;
}
.zipper-sec__teeth-row {
  position: absolute; left: 0;
  width: 100%; height: 50%;
  display: flex;
}
.zipper-sec__teeth-row--upper { top: 0; }
.zipper-sec__teeth-row--lower {
  bottom: 0;
  /* Half-tooth offset so upper + lower teeth read as interlocking */
  transform: translateX(calc(50% / 18));
}
.zipper-sec__tooth {
  flex: 1; height: 100%;
  opacity: 0;
  transition: opacity 150ms ease, transform 150ms ease;
}
.zipper-sec__teeth-row--upper .zipper-sec__tooth { transform: translateY(-5px); }
.zipper-sec__teeth-row--lower .zipper-sec__tooth { transform: translateY(5px); }
.zipper-sec.is-unzipping .zipper-sec__tooth,
.zipper-sec.is-complete .zipper-sec__tooth {
  opacity: 1; transform: translateY(0);
}
.zipper-sec__track-line {
  position: absolute;
  top: 50%; left: 0; right: 0;
  height: 12px;
  transform: translateY(-50%);
  width: 100%;
}

.zipper-sec__pull {
  position: absolute;
  top: 50%; left: 20px;
  transform: translateY(-50%);
  z-index: 30;
  background: none; border: none;
  padding: 0; cursor: grab;
  transition: left var(--zipper-duration) var(--zipper-ease), transform 200ms ease;
  outline: none;
  min-width: 90px;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* iOS otherwise treats horizontal drags here as page scroll */
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}
.zipper-sec.is-dragging .zipper-sec__pull,
.zipper-sec__pull:active { cursor: grabbing; }
/* While the user is actively dragging, drop CSS transitions so JS-set
   inline styles update instantly. */
.zipper-sec.is-dragging .zipper-sec__pull,
.zipper-sec.is-dragging .zipper-sec__yellow,
.zipper-sec.is-dragging .zipper-sec__track {
  transition: none !important;
}
.zipper-sec.is-unzipping .zipper-sec__pull,
.zipper-sec.is-complete .zipper-sec__pull {
  left: calc(100% - 70px);
}
.zipper-sec__pull-svg {
  display: block;
  /* Landscape (~2:1) pull illustration, sized 40% smaller than before. */
  width: clamp(90px, 9.6vw, 132px);
  height: auto;
  pointer-events: none;
}
@media (max-width: 700px) {
  .zipper-sec__pull { left: 12px; min-width: 80px; min-height: 56px; }
  .zipper-sec__pull-svg { width: clamp(80px, 22vw, 102px); }
  .zipper-sec.is-unzipping .zipper-sec__pull,
  .zipper-sec.is-complete .zipper-sec__pull {
    left: calc(100% - 95px);
  }
}
.zipper-sec__pull:hover { transform: translateY(-50%) scale(1.04); }
.zipper-sec__pull:disabled { cursor: default; }
/* Glow removed — replaced by a quiet "drag me" hint arrow below. */
.zipper-sec__pull-glow { display: none; }

.zipper-sec__pull-arrow {
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 10px;
  pointer-events: none;
  opacity: 0.55;
  animation: zipperArrowNudge 1.6s ease-in-out infinite;
  transition: opacity 400ms ease;
}
/* Fades the moment a user touches the pull, never returns. */
.zipper-sec.is-touched .zipper-sec__pull-arrow,
.zipper-sec.is-unzipping .zipper-sec__pull-arrow,
.zipper-sec.is-complete .zipper-sec__pull-arrow {
  opacity: 0;
  animation: none;
}
@keyframes zipperArrowNudge {
  0%, 100% { translate: 0 0; }
  50%      { translate: 6px 0; }
}

/* ============================================================
   PROOF — testimonial grid + cinematic full-bleed (black, on-brand)
   ============================================================ */
.proof-sec {
  background: var(--black);
  color: var(--ink);
  padding: var(--sec-py) 0 0;
  font-family: var(--f-apple);
}
@media (max-width: 700px) {
  .proof-sec { padding-top: 32px; }
}
.proof-sec__head {
  padding: 0 24px;
  margin-bottom: 64px;
}
@media (max-width: 700px) {
  .proof-sec__head { margin-bottom: 36px; }
}
@media (min-width: 768px) {
  .proof-sec__head { padding: 0 48px; }
}
@media (min-width: 1024px) {
  .proof-sec__head { padding: 0 80px; }
}
.proof-sec__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 16px;
}
.proof-sec__sub {
  font-family: var(--f-apple);
  font-size: 16px;
  line-height: 1.55;
  color: var(--grey-text);
  margin: 0;
  max-width: 640px;
}

.proof-grid {
  list-style: none;
  margin: 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .proof-grid { grid-template-columns: 1fr 1fr; padding: 0 48px; }
}
@media (min-width: 1024px) {
  .proof-grid { grid-template-columns: 1fr 1fr 1fr; padding: 0 80px; }
}

.proof-card {
  background: var(--card-bg);
  border: 1px solid var(--grey-line);
  border-radius: 16px;
  padding: 32px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  transition:
    transform 300ms ease-out,
    border-color 300ms ease-out,
    box-shadow 300ms ease-out;
}
@media (min-width: 768px) {
  .proof-card { padding: 40px; }
}
.proof-card:hover {
  transform: scale(1.03);
  border-color: rgba(248, 198, 68, 0.35);
  box-shadow:
    0 20px 30px -10px rgba(0,0,0,0.6),
    0 8px 16px -8px rgba(248, 198, 68, 0.08);
}
.proof-card__quote {
  font-family: var(--f-apple);
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  margin: 0;
  font-weight: 400;
}
@media (min-width: 768px) {
  .proof-card__quote { font-size: 18px; }
}
.proof-card__attr { margin-top: 24px; }
.proof-card__name {
  font-family: var(--f-apple);
  font-size: 14px;
  font-weight: 600;
  color: var(--yellow);
  margin: 0;
}
.proof-card__role {
  font-family: var(--f-apple);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--grey-text);
  margin: 6px 0 0;
}
.proof-card__role em { font-style: italic; color: var(--grey-text); }

/* Cinematic full-bleed quote */
.proof-cinematic {
  position: relative;
  margin: 96px 0 0;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050507;
}
@media (min-width: 768px) {
  .proof-cinematic { margin-top: 128px; aspect-ratio: 21 / 9; }
}
.proof-cinematic > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.proof-cinematic__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.proof-cinematic__caption {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  text-align: center;
  margin: 0;
}
.proof-cinematic__quote {
  max-width: 56rem;
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: -0.005em;
  font-family: var(--f-apple);
}
@media (min-width: 768px) {
  .proof-cinematic__quote { font-size: 30px; }
}
@media (min-width: 1024px) {
  .proof-cinematic__quote { font-size: 36px; }
}
.proof-cinematic__attr {
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.30em;
}
@media (min-width: 768px) {
  .proof-cinematic__attr { font-size: 14px; }
}

/* ============================================================
   REELS — stacked-deck infinite feed revealed after unzip
   ============================================================ */
.reels {
  position: absolute;
  inset: 0;
  background: var(--black);
  opacity: 0;
  pointer-events: none;
  transition: opacity 500ms ease 250ms;
  overflow: hidden;
  touch-action: none;
}
.zipper-sec.is-complete .reels {
  opacity: 1;
  pointer-events: auto;
}
.reels__stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.reel-card {
  position: absolute;
  left: 50%;
  top: 50%;
  /* No fixed width/height — card sizes to the image so each tile keeps its native dimensions. */
  background: #050507;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 4px 12px rgba(0,0,0,0.4);
  will-change: transform, opacity, filter;
  transition:
    transform 380ms cubic-bezier(0.34, 1.4, 0.5, 1),
    opacity 240ms ease,
    filter 240ms ease;
  transform-origin: 50% 50%;
}
.reel-card__img {
  display: block;
  width: auto;
  height: auto;
  max-width: 86vw;
  max-height: 78vh;
  /* placeholder min so an unloaded card still occupies space */
  min-width: 220px;
  min-height: 220px;
}
.reel-card__cap {
  position: absolute;
  left: clamp(16px, 4vw, 28px);
  right: clamp(16px, 4vw, 28px);
  bottom: clamp(20px, 4vh, 36px);
  color: var(--ink);
  font-family: var(--f-apple);
  font-weight: 500;
  font-size: clamp(12px, 1vw, 15px);
  line-height: 1.35;
  text-shadow: 0 2px 14px rgba(0,0,0,0.7);
  pointer-events: none;
}
.reel-card__cap strong {
  display: block;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(18px, 1.7vw, 24px);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
  color: var(--ink);
}
.reel-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 35%;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  pointer-events: none;
}
.reels__hint {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: rgba(255,255,255,0.7);
  font-family: var(--f-apple);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
  opacity: 0;
  transition: opacity 600ms ease 700ms;
}
.zipper-sec.is-complete .reels__hint { opacity: 1; }
.reels.is-engaged .reels__hint { opacity: 0; transition: opacity 250ms ease; }
@media (prefers-reduced-motion: reduce) {
  .reel-card { transition: none; }
}
