/* ===== PROMO BANNER ===== */
.promo-banner {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(255,255,255,.06);
  overflow: hidden;
}
.promo-banner__inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 7px 40px 7px 14px;
  flex-wrap: wrap;
}
.promo-banner__timer { display: flex; align-items: center; gap: 8px; }
.promo-banner__badge {
  background: var(--accent, #C8FF00); color: #0a0a0a;
  font-size: 9px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; padding: 3px 8px; border-radius: 50px;
  white-space: nowrap;
}
.promo-banner__countdown { display: flex; gap: 3px; }
.promo-banner__countdown[aria-hidden="true"] { visibility: hidden; }
.promo-banner__digit {
  background: rgba(255,255,255,.08); border-radius: 4px;
  padding: 2px 6px; text-align: center;
  width: 32px; /* locked width so every digit pair sits in an identical box */
  box-sizing: border-box;
}
.promo-banner__digit span {
  font-family: var(--font-display, 'Cabinet Grotesk', sans-serif);
  font-size: 13px; font-weight: 800; color: #fff; display: block; line-height: 1.3;
  /* Lock every digit to the same width so the box doesn't breathe as numbers tick */
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1, "lnum" 1;
  font-variation-settings: "tnum" 1;
  letter-spacing: 0;
}
.promo-banner__digit small {
  font-size: 7px; color: rgba(255,255,255,.4); text-transform: uppercase;
  letter-spacing: 0.04em; line-height: 1; display: block;
}
.promo-banner__text { text-align: center; }
.promo-banner__text strong {
  font-family: var(--font-display, 'Cabinet Grotesk', sans-serif);
  font-size: 12px; font-weight: 700; color: #fff;
  display: block; letter-spacing: 0.02em;
}
.promo-banner__sub { font-size: 10px; color: rgba(255,255,255,.45); }
.promo-banner__cta {
  background: var(--accent, #C8FF00); color: #0a0a0a;
  font-size: 11px; font-weight: 700; text-decoration: none;
  padding: 6px 16px; border-radius: 50px;
  transition: opacity .15s; white-space: nowrap;
}
.promo-banner__cta:hover { opacity: .85; }
.promo-banner__close {
  position: absolute; right: 10px; top: 50%; transform: translateY(-50%);
  background: none; border: none; color: rgba(255,255,255,.35);
  font-size: 13px; cursor: pointer; padding: 4px;
}
.promo-banner__close:hover { color: #fff; }
@media (max-width: 600px) {
  .promo-banner__inner { gap: 6px; padding: 6px 32px 6px 8px; justify-content: flex-start; }
  .promo-banner__text strong { font-size: 10px; }
  .promo-banner__sub { display: none; }
  .promo-banner__cta { font-size: 10px; padding: 5px 12px; }
  .promo-banner__digit { padding: 2px 4px; width: 26px; }
  .promo-banner__digit span { font-size: 11px; }
  .promo-banner__countdown { gap: 2px; }
  .promo-banner__badge { font-size: 8px; padding: 2px 6px; }
}

/* ===== SEARCH OVERLAY ===== */
.search-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0,0,0,.92); backdrop-filter: blur(12px);
  display: none; align-items: flex-start; justify-content: center;
  padding-top: 15vh;
}
.search-overlay.active,
.search-overlay--active { display: flex; }
.search-overlay__inner { width: 100%; max-width: 560px; padding: 0 20px; }
.search-overlay__bar {
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid rgba(255,255,255,.15); padding-bottom: 12px;
}
.search-overlay__bar svg { flex-shrink: 0; opacity: .4; }
.search-overlay__input {
  flex: 1; background: none; border: none; outline: none;
  font-family: var(--font-display, 'Cabinet Grotesk', sans-serif);
  font-size: 22px; font-weight: 600; color: #fff;
}
.search-overlay__input::placeholder { color: rgba(255,255,255,.25); }
.search-overlay__close {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px; color: rgba(255,255,255,.4);
  font-size: 11px; font-weight: 600; padding: 4px 10px; cursor: pointer;
  font-family: var(--font-body, 'Satoshi', sans-serif);
}
.search-overlay__close:hover { color: #fff; background: rgba(255,255,255,.12); }
.search-overlay__results { margin-top: 20px; max-height: 60vh; overflow-y: auto; }
.search-overlay__result {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 12px; border-radius: 10px; cursor: pointer;
  transition: background 0.15s ease;
}
.search-overlay__result:hover { background: rgba(255,255,255,0.06); }
.search-overlay__result-img {
  width: 48px; height: 60px; flex-shrink: 0;
  border-radius: 6px; overflow: hidden;
  object-fit: cover; background: rgba(255,255,255,0.04);
}
.search-overlay__result-text { color: #fff; font-size: 14px; font-weight: 500; }
.search-overlay__result-sub { color: rgba(255,255,255,0.5); font-size: 11px; margin-top: 2px; }
.search-overlay__no-results {
  color: rgba(255,255,255,0.4); font-size: 13px;
  padding: 18px 12px; text-align: center;
}
.search-overlay__hint {
  font-size: 13px; color: rgba(255,255,255,.3);
  font-family: var(--font-body, 'Satoshi', sans-serif);
}
@media (max-width: 600px) {
  .search-overlay { padding-top: 8vh; }
  .search-overlay__input { font-size: 18px; }
}

/* ===== TOKENS ===== */
:root {
  --text-xs: clamp(0.6875rem, 0.65rem + 0.2vw, 0.8125rem);
  --text-sm: clamp(0.8125rem, 0.75rem + 0.3vw, 0.9375rem);
  --text-base: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  --text-lg: clamp(1.125rem, 1rem + 0.6vw, 1.375rem);
  --text-xl: clamp(1.375rem, 1.1rem + 1vw, 2rem);
  --font-display: 'Cabinet Grotesk', 'Inter', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;
  --bg: #0a0a0a;
  --surface: #111;
  --surface2: #1a1a1a;
  --border: rgba(255,255,255,0.08);
  --text: #fff;
  --muted: rgba(255,255,255,0.55);
  --faint: rgba(255,255,255,0.3);
  --accent: #c8ff00;
  --white-bg: #f0f0f0;
  --dark-text: #0a0a0a;
  --ease: cubic-bezier(0.16,1,0.3,1);
  --fast: 180ms cubic-bezier(0.16,1,0.3,1);
}
html { overflow-x: hidden; width: 100%; max-width: 100%; }
body { background: var(--bg); color: var(--text); overflow-x: hidden; width: 100%; max-width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center; padding: 10px 16px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  background: rgba(10,10,10,0.7);
  border-bottom: 1px solid var(--border);
  transition: transform 0.35s var(--ease), top 0.3s var(--ease);
}
/* When promo banner is visible, push nav below it */
body.has-promo .nav { top: var(--promo-h, 56px); }
body.has-promo .hero { padding-top: calc(52px + var(--promo-h, 56px)); }
.nav--hidden { transform: translateY(-100%); }
/* Pin nav on shop + tier pages — don't let smart-nav hide it while users browse flyers */
body.lineup-page .nav.nav--hidden, body.pp3-page .nav.nav--hidden { transform: translateY(0); }
.nav__inner {
  display: flex; align-items: center; gap: 4px;
  background: var(--surface2); border: 1px solid var(--border);
  border-radius: 999px; padding: 4px 6px;
}
.nav__logo {
  display: flex; align-items: center; gap: 6px;
  text-decoration: none; color: #fff;
  font-family: var(--font-display); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 12px; white-space: nowrap;
}
.nav__links { display: flex; list-style: none; gap: 0; align-items: center; }
.nav__link {
  text-decoration: none; color: var(--muted);
  font-size: 11px; font-weight: 500; padding: 6px 12px;
  border-radius: 999px; white-space: nowrap;
}
.nav__link:hover { color: var(--text); background: rgba(255,255,255,0.05); }
/* Cinema AI link normalized — same treatment as other nav links */
.nav__link--accent { color: var(--muted); }
.nav__link--accent:hover { color: var(--text); background: rgba(255,255,255,0.05); }

/* === Dropdown nav items === */
.nav__item--dd { position: relative; }
.nav__dd-toggle {
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav__dd-caret { transition: transform 0.18s ease; opacity: 0.7; }
.nav__dd-toggle[aria-expanded="true"] .nav__dd-caret { transform: rotate(180deg); opacity: 1; }
.nav__dd-toggle[aria-expanded="true"] { color: var(--text); background: rgba(255,255,255,0.06); }

.nav__dd {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 240px;
  background: rgba(14,14,14,0.96);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 6px;
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 18px 50px rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0.18s;
  z-index: 110;
}
.nav__dd::before {
  content: "";
  position: absolute;
  top: -8px; left: 0; right: 0; height: 12px;
}
.nav__item--dd.is-open .nav__dd {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s linear 0s;
}
.nav__dd-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 9px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--text, #fff);
  transition: background 0.14s ease;
}
.nav__dd-item:hover { background: rgba(255,255,255,0.07); }
.nav__dd-name {
  font-family: var(--font-display, 'Cabinet Grotesk');
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  color: #fff;
  display: flex; align-items: center; gap: 6px;
}
.nav__dd-sub {
  font-size: 10.5px;
  color: var(--muted, #888);
  letter-spacing: 0.02em;
}
.nav__dd-star {
  color: #c8ff00;
  font-style: normal;
  font-size: 10px;
}
.nav__dd-item--alt {
  margin-top: 4px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 11px;
  border-radius: 0 0 10px 10px;
}
.nav__dd-item--alt .nav__dd-name { color: #c8ff00; }
.nav__dd--ai { min-width: 260px; }
.nav__dd-item--cinema .nav__dd-name { color: #f4d99a; }
.nav__dd-cinema {
  font-style: normal;
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.18em;
  background: linear-gradient(135deg, #f4d99a, #d4af7a);
  color: #0a0a0a;
  padding: 2px 6px;
  border-radius: 4px;
  margin-right: 4px;
  vertical-align: 1px;
}

@media (max-width: 768px) {
  .nav__dd {
    position: fixed;
    top: calc(var(--nav-h, 64px) + var(--promo-h, 0px) + 8px);
    left: 12px;
    right: 12px;
    bottom: auto;
    min-width: 0;
    width: auto;
    max-height: calc(100vh - var(--nav-h, 64px) - var(--promo-h, 0px) - 32px);
    overflow-y: auto;
    padding: 8px;
    transform: translateY(-8px);
  }
  .nav__item--dd.is-open .nav__dd { transform: translateY(0); }
  .nav__dd::before { display: none; }
  .nav__dd-item { padding: 12px 14px; }
  .nav__dd-name { font-size: 14px; }
  .nav__dd-sub { font-size: 11px; }
}

.nav__right { display: flex; align-items: center; gap: 4px; }
.nav__search {
  display: none; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: 999px; padding: 6px 14px;
  color: var(--faint); font-size: 11px; cursor: pointer; min-width: 160px;
}
@media(min-width:768px){ .nav__search{display:flex;} }
.nav__cta {
  display: flex; align-items: center; gap: 6px;
  background: var(--text); color: var(--bg);
  font-size: 11px; font-weight: 700; padding: 8px 16px;
  border-radius: 999px; text-decoration: none; white-space: nowrap;
}
.nav__cta:hover { background: rgba(255,255,255,0.88); }

/* ===== HERO ===== */
.hero {
  position: relative; height: 55vh; overflow: hidden; padding-top: 52px;
}
@media(min-width:768px){ .hero{height:60vh;} }
.hero__img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  position: absolute; inset: 0;
}
.hero__fade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.5) 70%, var(--bg) 100%);
}
.hero__accent {
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: #000;
}

/* ===== HERO VIDEO ===== */
.herovid {
  background: #000;
  position: relative;
  overflow: hidden;
}
.herovid__player {
  width: 100%;
  display: block;
  max-height: 80vh;
  object-fit: cover;
}
.herovid__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 60%,
    rgba(10,10,10,0.6) 85%,
    var(--bg) 100%
  );
  pointer-events: none;
}

/* ===== PHONES ===== */
.phones {
  padding: 48px 0 56px; background: var(--bg);
}
.phones__label {
  text-align: center; font-size: 10px; font-weight: 500;
  color: var(--faint); letter-spacing: 0.25em; text-transform: uppercase;
  margin-bottom: 28px;
}
.phones__tray {
  max-width: 1060px; margin: 0 auto;
  background: var(--surface); border-radius: 24px;
  border: 1px solid var(--border);
  padding: 28px 24px;
}
.phones__track {
  display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch; justify-content: center;
}
.phones__track::-webkit-scrollbar{display:none;}
.phone {
  flex-shrink: 0; width: 180px; height: 380px;
  background: var(--surface2); border-radius: 28px;
  border: 2.5px solid #2a2a2a; overflow: hidden; position: relative;
  scroll-snap-align: center; transition: transform 0.5s var(--ease);
}
.phone:hover { transform: scale(1.03); }
.phone__notch {
  position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 75px; height: 22px; background: #000; border-radius: 14px; z-index: 2;
}
.phone__img { width: 100%; height: 100%; object-fit: cover; }

/* ===== CHOOSE FROM (DARK bg) ===== */
.choose {
  background: var(--bg); color: var(--text);
  padding: clamp(48px, 6vw, 96px) 0;
}
.choose__wrap {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
}
.choose__heading {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: 700; line-height: 1.1; margin-bottom: 20px;
}

/* --- Showcase container --- */
.showcase {
  position: relative;
  background: #151515;
  border-radius: 30px;
  overflow: hidden;
  min-height: 560px;
  max-height: 640px;
  display: flex;
  align-items: stretch;
}
.showcase__bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 55% 50%, rgba(40,35,30,0.6), transparent);
  transition: opacity 400ms ease;
  pointer-events: none;
}
.showcase__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.25) 0%, transparent 50%);
  pointer-events: none;
}
.showcase__audio {
  position: absolute; top: 16px; right: 18px; z-index: 5;
  width: 30px; height: 30px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); cursor: pointer;
  transition: all var(--fast);
  box-shadow: 0 2px 8px rgba(0,0,0,.45);
}
.showcase__audio:hover { background: rgba(255,255,255,0.14); color: #fff; }
.showcase__audio.is-playing { background: rgba(200,255,0,0.15); border-color: rgba(200,255,0,0.3); color: #c8ff00; }
.showcase__audio .icon-unmuted { display: none; }
.showcase__audio.is-playing .icon-muted { display: none; }
.showcase__audio.is-playing .icon-unmuted { display: block; }

/* --- Left controls: arrows + pills --- */
.showcase__left {
  position: relative; z-index: 3;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 40px 0 40px 36px;
  flex-shrink: 0;
}
.showcase__arrows {
  display: flex; flex-direction: column; gap: 8px;
  padding-top: 72px;
}
.showcase__arrow {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); cursor: pointer;
  transition: all var(--fast);
  box-shadow: 0 2px 8px rgba(0,0,0,.45);
}
.showcase__arrow:hover { background: rgba(255,255,255,0.12); color: #fff; }

.showcase__pills {
  display: flex; flex-direction: column; gap: 6px;
}

/* --- Pill buttons --- */
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  height: 40px;
  padding: 0 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px; font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
  cursor: pointer;
  transition: all 200ms ease;
  text-shadow: 0 1px 4px rgba(0,0,0,.6);
  box-shadow: 0 2px 8px rgba(0,0,0,.45), 0 0 0 1px rgba(0,0,0,.15);
}
.pill:hover {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  box-shadow: 0 3px 12px rgba(0,0,0,.55), 0 0 0 1px rgba(0,0,0,.2);
}
.pill--active {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
  box-shadow: 0 3px 14px rgba(0,0,0,.55), 0 0 0 1px rgba(0,0,0,.2);
}
.pill__check {
  flex-shrink: 0;
}
.pill--desktop-only {
  display: none;
}
@media(min-width:768px){ .pill--desktop-only { display: inline-flex; } }

/* --- Phone-in-hand asset --- */
.showcase__phone {
  position: absolute; inset: 0; z-index: 1;
}
.showcase__phone-img,
.showcase__phone-vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== WHY STORY (DARK bg — dark bordered cards) ===== */
.why {
  background: var(--bg); color: var(--text);
  padding: clamp(48px, 5vw, 72px) 0 clamp(48px, 6vw, 96px);
}
.why__inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.why__header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 20px; flex-wrap: wrap; gap: 16px;
}
.why__title {
  font-family: var(--font-display); font-size: var(--text-lg);
  font-weight: 700; line-height: 1.15; max-width: 320px;
  color: rgba(255,255,255,0.55);
}
.why__link {
  font-size: 11px; color: var(--faint);
  text-decoration: underline; text-underline-offset: 3px;
}
.why__link:hover { color: var(--text); }
.features {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 14px;
}
@media(min-width:768px){ .features{grid-template-columns:repeat(5,1fr);} }
.feat-card {
  background: #151515;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  padding: 28px 24px 32px;
  min-height: 240px;
  display: flex; flex-direction: column;
  transition: border-color var(--fast);
}
.feat-card:hover { border-color: rgba(255,255,255,0.12); }
.feat-card__icon { width: 28px; height: 28px; margin-bottom: 18px; color: var(--text); }
.feat-card__title {
  font-family: var(--font-display); font-size: 18px;
  font-weight: 700; line-height: 1.2; margin-bottom: 10px; color: var(--text);
}
.feat-card__desc { font-size: 12px; color: rgba(255,255,255,0.5); line-height: 1.55; margin-top: auto; }

/* ===== PROOF SHELL (light bg for Swipe + Comments) ===== */
.proof {
  background: #efefef;
  color: #111;
  border-top: 1px solid rgba(0,0,0,0.06);
}
/* Built to go viral sits directly under CINEMA — keep it all black, no gradient. .ftc inside is a full-bleed white block, so the section frames it cleanly. */
.proof--comments {
  background: #000;
  color: #fff;
  border-top: 0;
}
.proof--comments .proof__wrap {
  padding-top: 24px;
  padding-bottom: 24px;
}
.proof--comments .proof__title { color: #fff; }
.proof__wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 42px 28px 90px;
}
.proof__title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.2vw, 34px);
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: #111;
}

/* ===== SWIPE THE WORK ===== */
.swipe {
  margin-bottom: 100px;
}
.swipe > .proof__title { margin-bottom: 48px; }
.swipe__strip-wrap {
  /* Break out of .proof__wrap (1280px max + 28px padding) to full viewport width */
  width: 100vw;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}
.swipe__strip {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Left padding matches .proof__wrap content edge (~108px @ 1440vw) so the first card
     lines up with the "Built to go viral" cards below. Right padding stays smaller so
     cards bleed past the edge to signal scrollability. */
  padding: 6px clamp(20px, 4vw, 64px) 14px max(28px, calc((100vw - 1280px) / 2 + 28px));
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.swipe__strip:active { cursor: grabbing; }
.swipe__strip::-webkit-scrollbar { display: none; }

.flyer-card {
  position: relative;
  flex: 0 0 260px;
  width: 260px;
  height: 460px;
  border-radius: 14px;
  overflow: hidden;
  background: #d9d9d9;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
  scroll-snap-align: center;
}
.flyer-card img,
.flyer-card video {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.flyer-tag {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 3;
  font-family: 'Satoshi', system-ui, sans-serif;
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0a0a0a;
  background: #c8ff00;
  padding: 5px 9px;
  border-radius: 999px;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}
.flyer-tag--cinema {
  background: linear-gradient(135deg, #f4d99a 0%, #d4af7a 55%, #b88f5a 100%);
  color: #0a0a0a;
  letter-spacing: 0.12em;
  box-shadow: 0 2px 10px rgba(212,175,122,0.45), inset 0 1px 0 rgba(255,255,255,0.35);
  border: 1px solid rgba(212,175,122,0.55);
}
.flyer-tag--cinema::before {
  content: "\25c6";
  margin-right: 5px;
  font-size: 7px;
  vertical-align: 1px;
  color: rgba(10,10,10,0.55);
}
/* Tier variants — each tier gets its own color */
.flyer-tag--still-premium {
  background: #ffffff;
  color: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.6);
}
.flyer-tag--simple-motion {
  background: #c8ff00;
  color: #0a0a0a;
}
.flyer-tag--premium-motion {
  background: linear-gradient(135deg, #b388ff 0%, #7c4dff 100%);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(124,77,255,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
}
.flyer-tag--hybrid-ai-premium {
  background: linear-gradient(135deg, #00e5ff 0%, #2979ff 100%);
  color: #0a0a0a;
  box-shadow: 0 2px 10px rgba(41,121,255,0.45), inset 0 1px 0 rgba(255,255,255,0.35);
}
.flyer-tag--ai-generated {
  background: linear-gradient(135deg, #ff4081 0%, #c51162 100%);
  color: #ffffff;
  box-shadow: 0 2px 10px rgba(197,17,98,0.45);
}
.flyer-tag--generic {
  background: rgba(40,40,40,0.85);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
}
.flyer-plus {
  position: absolute;
  right: 8px; bottom: 8px;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: rgba(20,20,20,0.85);
  color: #fff;
  display: grid; place-items: center;
  font-size: 13px; font-weight: 700; line-height: 1;
  z-index: 2;
}

.swipe__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
}
.swipe__btn {
  width: 24px; height: 24px;
  border: none; border-radius: 999px;
  background: #e1e1e1;
  color: #9a9a9f;
  display: grid; place-items: center;
  cursor: pointer;
  transition: all 0.18s ease;
  padding: 0;
}
.swipe__breakdown {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  color: #111;
  font-family: 'Satoshi', system-ui, sans-serif;
  padding: 0 24px;
}
.swipe__breakdown-lead {
  margin: 0 0 14px;
  font-family: var(--font-display, 'Cabinet Grotesk', system-ui, sans-serif);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.15;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: #0a0a0a;
  text-wrap: balance;
}
.swipe__breakdown-body {
  margin: 0;
  font-size: clamp(14px, 1.1vw, 16px);
  line-height: 1.65;
  color: #3a3a3a;
  text-wrap: balance;
}
@media (max-width: 640px) {
  .swipe__breakdown { margin-top: 32px; }
  .swipe__breakdown-lead { font-size: 20px; }
  .swipe__breakdown-body { font-size: 14px; line-height: 1.6; }
}

/* Swipe section CTA — single quiet pill below breakdown copy */
.swipe__cta {
  margin-top: clamp(20px, 2.5vw, 28px);
  display: flex;
  justify-content: center;
}
.swipe__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  border: 1.5px solid rgba(10,10,10,0.18);
  background: transparent;
  color: #0a0a0a;
  font-family: 'Satoshi', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.swipe__cta-btn:hover {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
  transform: translateY(-1px);
}

.swipe__btn:hover {
  background: #d5d5d5;
  color: #666;
  transform: translateY(-1px);
}

/* ===== FROM THE COMMENTS ===== */
.ftc {
  background: #fff;
  margin: 48px calc(-50vw + 50%) -90px;
  padding: 48px max(28px, calc((100vw - 1280px) / 2 + 28px)) 64px;
}
/* Horizontal-scroll rail — each .ftc-pair is a gray boxed testimonial.
   Pairs sit side-by-side; rail scrolls horizontally when more are added. */
.ftc__grid {
  display: flex;
  flex-wrap: nowrap;          /* never wrap — scroll instead */
  align-items: stretch;
  gap: 28px;                  /* space BETWEEN gray boxes */
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 6px 4px 18px;
  margin: 0 -4px;             /* let boxes breathe within the section */
  scrollbar-width: thin;
  scrollbar-color: rgba(10,10,10,0.18) transparent;
}
.ftc__grid::-webkit-scrollbar { height: 6px; }
.ftc__grid::-webkit-scrollbar-track { background: transparent; }
.ftc__grid::-webkit-scrollbar-thumb { background: rgba(10,10,10,0.18); border-radius: 999px; }

.ftc-pair {
  display: flex;
  align-items: flex-end;
  gap: 10px;                  /* tight inside the box */
  flex: 0 0 auto;
  background: #f4f4f4;        /* subtle gray — the grouping container */
  border: 1px solid rgba(10,10,10,0.06);
  border-radius: 18px;
  padding: 18px;
  scroll-snap-align: start;
}
.ftc-pair .comment-card {
  width: 340px;
  flex: 0 0 340px;
  border-radius: 12px;
  overflow: hidden;
}

.comment-card {
  position: relative;
  background: transparent;
  border-radius: 0;
  overflow: hidden;
}
.comment-card__inner {
  padding: 0;
}
.comment-card__inner img {
  width: 100%;
  display: block;
}

.comment-flyer {
  position: relative;
  width: 210px;
  height: 372px;
  border-radius: 10px;
  overflow: hidden;
  background: #d9d9d9;
  justify-self: start;
  box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.comment-flyer img,
.comment-flyer__vid {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.flyer-audio, .v-audio {
  position: absolute;
  top: 10px; right: 10px;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(10,10,10,0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  display: grid; place-items: center;
  z-index: 5;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  padding: 0;
}
.flyer-audio:hover, .v-audio:hover { background: rgba(10,10,10,0.92); border-color: rgba(255,255,255,0.35); }
.flyer-audio.is-playing, .v-audio.is-playing {
  background: rgba(200,255,0,0.18);
  border-color: rgba(200,255,0,0.55);
  color: #c8ff00;
}
.flyer-audio svg, .v-audio svg { width: 14px; height: 14px; display: block; }
.cinema-card { position: relative; }

/* CINEMA card badges (top-left) — view-count overlays */
.v-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 5;
  font-family: 'Satoshi', system-ui, sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.v-badge--viral {
  background: linear-gradient(135deg, #ff2d55 0%, #ff0050 60%, #c8004a 100%);
  color: #ffffff;
  box-shadow: 0 2px 12px rgba(255,0,80,0.55), inset 0 1px 0 rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.18);
}
.v-badge--viral::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  margin-right: 6px;
  vertical-align: 1px;
  box-shadow: 0 0 8px rgba(255,255,255,0.9);
  animation: vbadge-pulse 1.6s ease-in-out infinite;
}
@keyframes vbadge-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.78); }
}
.v-badge--views {
  background: rgba(10,10,10,0.72);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.28);
  box-shadow: 0 2px 10px rgba(0,0,0,0.45);
}

.ftc__cta {
  display: block; text-align: center;
  font-size: 12px; color: rgba(0,0,0,.4);
  margin: 0; padding: 64px 20px 72px;
}
@media (max-width: 767px) {
  .ftc__cta { padding: 44px 18px 52px; }
}
.ftc__cta a {
  color: inherit;
  text-decoration: none;
  transition: color var(--fast);
}
.ftc__cta a:hover { color: #111; }
.ftc__cta a strong { font-weight: 700; color: rgba(0,0,0,.55); }

/* =========================================================================
   BUILT TO GO VIRAL — Horizontal slider with peek, dark cards on light bg
   ========================================================================= */
.viral-slider {
  position: relative;
  margin: 8px 0 0;
}
.viral-slider__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 32px 24px 0;
  -ms-overflow-style: none;
  scrollbar-width: none;
  cursor: grab;
}
.viral-slider__track::-webkit-scrollbar { display: none; }
.viral-slider__track:active { cursor: grabbing; }

.viral-card {
  flex: 0 0 calc(50% - 12px);
  min-width: 580px;
  max-width: 680px;
  scroll-snap-align: start;
  background: #0a0a0a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 36px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 28px;
  align-items: center;
  color: #fff;
}
.viral-card__copy { min-width: 0; }
.viral-card__title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.02;
  color: #fff;
}
.viral-card__sub {
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  margin: 0 0 22px;
  max-width: 32ch;
}
.viral-card__stats { display: flex; gap: 18px; align-items: flex-end; margin-bottom: 24px; flex-wrap: wrap; }
.viral-card__num {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
/* Views number gets the gold gradient treatment */
.viral-card__num--gold {
  background: linear-gradient(135deg, #f4d99a 0%, #d4af7a 55%, #b88f5a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.viral-card__num-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  margin-top: 6px;
}
.viral-card__ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
.viral-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 22px; border-radius: 999px;
  text-decoration: none; font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em;
  transition: all 0.2s;
  text-transform: uppercase;
}
.viral-card__cta--ig {
  background: #fff; color: #0a0a0a;
}
.viral-card__cta--ig:hover { background: rgba(255,255,255,0.85); }
.viral-card__cta--cinema {
  background: linear-gradient(135deg, #f4d99a 0%, #d4af7a 55%, #b88f5a 100%);
  color: #0a0a0a;
  border: none;
  box-shadow: 0 6px 20px rgba(212,175,122,0.28), inset 0 1px 0 rgba(255,255,255,0.35);
  font-weight: 800;
}
.viral-card__cta--cinema:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(212,175,122,0.4), inset 0 1px 0 rgba(255,255,255,0.45);
}
.viral-card__flyer {
  width: 240px; height: 427px; border-radius: 14px; overflow: hidden; position: relative;
  background: #1a1a1a;
}
.viral-card__flyer video,
.viral-card__flyer img { width: 100%; height: 100%; object-fit: cover; display: block; }

.viral-slider__controls {
  display: flex; gap: 10px;
  margin: 20px 0 0;
  justify-content: flex-end;
}
.viral-slider__btn {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.15);
  background: #fff;
  color: #0a0a0a;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.viral-slider__btn:hover {
  background: #0a0a0a; color: #fff; border-color: #0a0a0a;
}
.viral-slider__btn:disabled { opacity: 0.3; cursor: not-allowed; }
.viral-slider__btn:disabled:hover { background: #fff; color: #0a0a0a; border-color: rgba(0,0,0,0.15); }
.viral-slider__btn svg { width: 16px; height: 16px; }

@media (max-width: 720px) {
  .viral-slider__track { gap: 12px; padding-right: 16px; touch-action: pan-x pan-y !important; }
  .viral-card {
    flex: 0 0 calc(100% - 32px);
    min-width: 0;
    max-width: none;
    grid-template-columns: 1fr 130px;
    padding: 16px;
    gap: 14px;
    border-radius: 18px;
    align-items: center;
    touch-action: pan-x pan-y !important;
  }
  .viral-card__title { font-size: 19px; line-height: 1.15; margin-bottom: 6px; }
  .viral-card__sub { font-size: 12px; margin-bottom: 12px; }
  .viral-card__flyer {
    width: 130px;
    height: auto;
    aspect-ratio: 9/16;
    border-radius: 10px;
  }
  .viral-card__flyer video,
  .viral-card__flyer img { pointer-events: none !important; touch-action: pan-y pan-x !important; }
  .viral-card__flyer .flyer-audio { pointer-events: auto !important; }
  .viral-card__stats { gap: 10px; margin-bottom: 12px; }
  .viral-card__num { font-size: 22px; }
  .viral-card__num-label { font-size: 9px; }
  .viral-card__ctas {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
    align-items: stretch;
  }
  .viral-card__cta {
    padding: 10px 14px;
    font-size: 11px;
    letter-spacing: 0.03em;
    gap: 6px;
    justify-content: center;
    white-space: nowrap;
  }
  .viral-card__cta svg { width: 12px; height: 12px; flex-shrink: 0; }
}

/* ===== VIRAL FOLLOW PILL ===== */
.viral-follow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 6px 0 28px;
  padding: 9px 16px 9px 14px;
  background: #0a0a0a;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  text-decoration: none;
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.viral-follow:hover {
  transform: translateY(-1px);
  border-color: rgba(212,175,122,0.45);
  box-shadow: 0 10px 28px rgba(0,0,0,0.22);
}
.viral-follow__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #ff3b30;
  box-shadow: 0 0 0 0 rgba(255,59,48,0.55);
  animation: viral-follow-pulse 1.8s ease-out infinite;
  flex: 0 0 auto;
}
@keyframes viral-follow-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,59,48,0.55); }
  70%  { box-shadow: 0 0 0 8px rgba(255,59,48,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,48,0); }
}
.viral-follow__ig {
  width: 16px; height: 16px;
  color: #fff;
  flex: 0 0 auto;
}
.viral-follow__label {
  color: rgba(255,255,255,0.82);
  white-space: nowrap;
}
.viral-follow__label strong {
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.005em;
}
.viral-follow__cta {
  margin-left: 4px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.14);
  font-weight: 700;
  background: linear-gradient(135deg, #f4d99a 0%, #d4af7a 55%, #b88f5a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  white-space: nowrap;
}
@media (max-width: 480px) {
  .viral-follow { font-size: 12px; padding: 8px 14px 8px 12px; gap: 8px; }
  .viral-follow__cta { padding-left: 10px; margin-left: 2px; }
}

/* ===== VIRAL CONSULT BLOCK ===== */
.viral-consult {
  margin: 56px auto 0;
  max-width: 1180px;
  background: linear-gradient(180deg, #0e0e0e 0%, #050505 100%);
  border: 1px solid rgba(212,175,122,0.22);
  border-radius: 22px;
  padding: 56px clamp(28px, 4vw, 64px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.04);
}
.viral-consult::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    radial-gradient(600px 240px at 12% 0%, rgba(212,175,122,0.10), transparent 60%),
    radial-gradient(500px 200px at 100% 100%, rgba(212,175,122,0.07), transparent 65%);
  pointer-events: none;
}
.viral-consult__inner {
  position: relative;
  max-width: 880px;
}
.viral-consult__eyebrow {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 14px;
  background: linear-gradient(135deg, #f4d99a 0%, #d4af7a 55%, #b88f5a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.viral-consult__title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: #fff;
  margin: 0 0 18px;
}
.viral-consult__body {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin: 0 0 28px;
  max-width: 760px;
}
.viral-consult__cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.viral-consult__btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  color: #0a0a0a;
  background: linear-gradient(135deg, #f4d99a 0%, #d4af7a 55%, #b88f5a 100%);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 12px 32px rgba(184,143,90,0.32), inset 0 1px 0 rgba(255,255,255,0.45);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.viral-consult__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(184,143,90,0.42), inset 0 1px 0 rgba(255,255,255,0.55);
}
.viral-consult__note {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .viral-consult {
    margin-top: 40px;
    padding: 36px 24px;
    border-radius: 18px;
  }
  .viral-consult__body { font-size: 15px; }
  .viral-consult__cta { gap: 14px; }
}

/* ===== EVENT PACKAGES ===== */
.events {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--surface); border-top: 1px solid var(--border);
}
.events__title {
  font-family: var(--font-display); font-size: var(--text-lg);
  font-weight: 700; text-align: center; margin-bottom: 28px;
}
.events__layout {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; flex-wrap: wrap;
  max-width: 1000px; margin: 0 auto; padding: 0 24px;
}
.events__partner { text-align: left; flex-shrink: 0; }
.events__posh { display: flex; flex-direction: column; align-items: flex-start; gap: 6px; margin-bottom: 12px; }
.events__posh-name {
  font-family: var(--font-display); font-size: 32px;
  font-weight: 900; font-style: italic; color: var(--text);
}
.events__posh-circle {
  width: 36px; height: 36px; border-radius: 50%; background: #e65100;
  display: flex; align-items: center; justify-content: center;
}
.events__posh-circle--sm { width: 20px; height: 20px; }
.events__posh-desc { font-size: 10px; color: var(--faint); max-width: 160px; }
.events__mockup { flex: 1; min-width: 300px; max-width: 620px; }
.events__browser {
  background: #1a1a1a; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--border);
}
.events__browser-dots {
  display: flex; gap: 5px; padding: 10px 14px;
  border-bottom: 1px solid var(--border);
}
.events__browser-dots span {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.events__browser-body { padding: 10px; }
.events__grid { display: grid; grid-template-columns: 1fr 1fr 1.2fr; gap: 8px; }
.events__item { border-radius: 8px; overflow: hidden; position: relative; }
.events__item-img { width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 3/4; }
.events__item-label {
  position: absolute; bottom: 8px; left: 8px;
  font-size: 9px; font-weight: 600; color: var(--text);
  background: rgba(0,0,0,0.5); padding: 3px 8px; border-radius: 4px;
  letter-spacing: 0.08em;
}
.events__item--ticket { background: #fff; border-radius: 8px; overflow: hidden; }
.events__eventbrite { color: var(--dark-text); font-size: 10px; }
.events__eb-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 8px; border-bottom: 1px solid #eee;
}
.events__eb-logo { font-weight: 700; color: #f05537; font-size: 10px; }
.events__eb-nav { font-size: 9px; color: #666; }
.events__eb-hero { overflow: hidden; }
.events__eb-hero-img { width: 100%; height: 80px; object-fit: cover; }
.events__eb-content { padding: 8px; }
.events__eb-tag {
  background: #f05537; color: #fff; font-size: 8px; font-weight: 600;
  padding: 2px 6px; border-radius: 3px; display: inline-block; margin-bottom: 4px;
}
.events__eb-date { font-size: 9px; color: #666; margin: 2px 0; }
.events__eb-title-row { display: flex; align-items: center; gap: 6px; margin: 4px 0; }
.events__eb-title-row strong { font-size: 12px; }
.events__eb-desc { font-size: 9px; color: #666; line-height: 1.4; margin: 4px 0 8px; }
.events__eb-ticket {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 8px; border: 1px solid #eee; border-radius: 6px; margin-bottom: 6px;
}
.events__eb-price { font-weight: 700; font-size: 11px; }
.events__eb-btn {
  width: 100%; padding: 8px; border-radius: 6px;
  background: #f05537; color: #fff; font-size: 10px; font-weight: 600;
  border: none; cursor: pointer;
}
.events__cta {
  text-align: right; margin-top: 20px;
  font-size: 11px; color: var(--faint);
  max-width: 1000px; margin-left: auto; margin-right: auto;
  padding: 0 24px;
}
.events__cta a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }
.events__cta a:hover { color: var(--text); }

/* ===== TRUSTED BY ===== */
.trusted {
  padding: clamp(10px, 1.4vw, 18px) 0 clamp(18px, 2.2vw, 28px);
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.trusted__label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--faint); margin: 0 auto 22px;
  max-width: 1100px;
  padding: 0 24px;
}
.trusted__track {
  overflow: hidden;
  width: 100%;
}
.trusted__logos {
  display: flex; align-items: center;
  gap: clamp(36px, 5vw, 64px);
  width: max-content;
  animation: marquee 60s linear infinite;
  -webkit-animation: marquee 60s linear infinite;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.trusted__set {
  display: flex; align-items: center;
  gap: clamp(36px, 5vw, 64px);
  flex-shrink: 0;
}
@keyframes marquee {
  0%   { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}
@-webkit-keyframes marquee {
  0%   { -webkit-transform: translate3d(0, 0, 0); }
  100% { -webkit-transform: translate3d(-50%, 0, 0); }
}
.tlogo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  opacity: 0.9;
  transition: opacity var(--fast);
  filter: brightness(1.2);
  flex-shrink: 0;
}
.tlogo-img:hover { opacity: 1; }
.tlogo-img--tall { height: 38px; }

/* ===== JOIN ===== */
.join {
  padding: clamp(48px, 6vw, 96px) 0;
  background: var(--bg);
}
.join__inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start;
}
@media(min-width:768px){ .join__inner{grid-template-columns:1fr 1.3fr;} }
.join__title {
  font-family: var(--font-display); font-size: var(--text-xl);
  font-weight: 700; margin-bottom: 6px;
}
.join__subtitle {
  font-size: 12px; color: var(--muted); margin-bottom: 24px;
}
.join__roles { display: flex; flex-direction: column; }
.role {
  display: block; padding: 14px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none; color: var(--text);
  cursor: pointer;
}
.role__header {
  display: flex; justify-content: space-between; align-items: center;
  transition: padding var(--fast);
}
.role__header:hover { padding-left: 8px; }
.role__name { font-size: 14px; font-weight: 600; }
.role__tag { font-style: normal; font-weight: 500; font-size: 12px; color: var(--muted); margin-left: 6px; letter-spacing: 0.02em; }
.role__toggle { color: var(--faint); transition: transform 0.3s ease; }
.role--expanded .role__toggle { transform: rotate(180deg); }
.role__body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, margin 0.3s ease;
  margin-top: 0;
}
.role--expanded .role__body {
  max-height: 500px;
  margin-top: 12px;
}
.role__desc {
  font-size: 11px; color: var(--muted); line-height: 1.55; max-width: 380px;
  margin: 0 0 12px;
}
.role__apply {
  font-size: 11px; color: var(--muted); text-decoration: underline;
  text-underline-offset: 3px;
}
.role__apply:hover { color: var(--text); }
.join__left { min-width: 0; }
.join__right { display: flex; justify-content: center; align-items: center; }
.join__slideshow {
  position: relative;
  width: 100%; max-width: 540px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.join__slide {
  display: none;
}
.join__slide--active {
  display: block;
}
.join__slide img {
  width: 100%; height: auto; display: block;
  object-fit: cover;
}
.join__slide-placeholder {
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface2);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 13px; font-weight: 600; color: var(--faint);
  letter-spacing: 0.04em;
}
.join__visual {
  width: 100%; max-width: 540px;
  border-radius: 16px; overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}
.join__visual-img {
  width: 100%; height: auto; display: block;
  object-fit: cover;
}

/* ===== SOCIAL ===== */
.social {
  background: var(--bg);
  text-align: center;
  padding: 48px 24px 32px;
}
.social__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.social__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 20px;
}
.social__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: #fff;
  color: #0a0a0a;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 14px 32px;
  border-radius: 14px;
  transition: background var(--fast), transform var(--fast);
}
.social__link:hover {
  background: rgba(255,255,255,0.9);
  transform: translateY(-1px);
}
.social__link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.social__connect {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 14px;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
  text-align: left;
}
.social__connect:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,.45);
  transform: translateY(-1px);
}
.social__connect svg { flex-shrink: 0; }
.social__note {
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: 12px 0;
}
.footer__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; flex-wrap: wrap; padding: 0 16px;
}
.flink {
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; color: var(--muted);
  font-size: 11px; font-weight: 500; padding: 8px 14px;
  border-radius: 999px; transition: all var(--fast);
}
.flink:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.flink--active {
  background: var(--accent); color: var(--dark-text); font-weight: 700;
}
.flink--active:hover { background: #d4ff33; color: var(--dark-text); }

/* ===== COPYRIGHT ===== */
.copyright {
  background: var(--bg);
  padding: 16px 24px 20px;
  text-align: center;
}
.copyright p {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== ANIMATIONS ===== */
.fade-in { opacity: 1; }
@supports(animation-timeline:scroll()){
  .fade-in {
    opacity: 0; animation: revealFade linear both;
    animation-timeline: view(); animation-range: entry 0% entry 80%;
  }
}
@keyframes revealFade { to { opacity: 1; } }

@supports(animation-timeline:scroll()){
  .hero__img {
    animation: heroPara linear both;
    animation-timeline: scroll(); animation-range: 0% 50%;
  }
}
@keyframes heroPara {
  from { transform: scale(1.05) translateY(0); }
  to { transform: scale(1.05) translateY(-50px); }
}

.scroll-container {
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.scroll-container:active { cursor: grabbing; }
.scroll-container::-webkit-scrollbar { display: none; }

/* ===== MOBILE ===== */
@media(max-width:767px){
  /* Mobile nav · full-bleed bar, no side gap, no rounded pill */
  .nav { padding: 0; }
  .nav__inner {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    padding: 8px 12px 10px;
    gap: 4px 6px;
    width: 100%;
  }
  .nav__logo {
    flex: 1 0 100%;
    justify-content: center;
    font-size: 12px;
    padding: 4px 8px;
  }
  .nav__links {
    gap: 2px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .nav__link { font-size: 10.5px; padding: 4px 7px; }
  .nav__right { margin-left: 2px; }
  .nav__cta { font-size: 10.5px; padding: 5px 11px; }

  .phone { width: 150px; height: 310px; border-radius: 22px; }
  .phone__notch { width: 60px; height: 18px; top: 5px; }
  .phones__tray { padding: 20px 16px; border-radius: 18px; margin: 0 16px; }
  /* Proof section mobile */
  .proof__wrap { padding: 34px 18px 70px; }
  .swipe { margin-bottom: 72px; }
  .swipe__strip-wrap { max-width: none; margin-left: 0; }
  .flyer-card { flex: 0 0 calc(50vw - 32px); width: calc(50vw - 32px); height: calc((50vw - 32px) * 1.77); border-radius: 14px; }
  .ftc { margin: 36px calc(-50vw + 50%) -70px; padding: 36px 18px 48px; }
  /* Mobile: horizontal scroll keeps the gray box format — one pair fills viewport, swipe for next */
  .ftc__grid { gap: 14px; padding: 4px 0 14px; }
  .ftc-pair { gap: 8px; padding: 14px; border-radius: 16px; }
  .ftc-pair .comment-card { width: auto; flex: 1 1 auto; max-width: 200px; border-radius: 10px; }

  .comment-flyer { width: 138px; height: 246px; flex: 0 0 138px; }

  /* Hero video mobile — taller, cropped to fill */
  .herovid {
    min-height: 50vh;
  }
  .herovid__player {
    width: 100%;
    height: 50vh;
    object-fit: cover;
    object-position: center;
  }
  /* Showcase mobile — phone below pills */
  .showcase { flex-direction: column; min-height: auto; max-height: none; }
  .showcase__left { padding: 24px 20px 0; flex-direction: column; gap: 12px; }
  .showcase__arrows { flex-direction: row; padding-top: 0; }
  .showcase__pills { flex-direction: row; flex-wrap: wrap; }
  .showcase__phone {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 5;
    order: 2;              /* push below pills */
  }
  .showcase__phone-img,
  .showcase__phone-vid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 0 30px 30px;
  }
  .showcase__audio { top: 12px; right: 12px; }
  .features { grid-template-columns: 1fr 1fr; }
  .feat-card { min-height: 200px; padding: 22px 18px 24px; border-radius: 18px; }
  .feat-card__title { font-size: 15px; }
  .events__grid { grid-template-columns: 1fr 1fr; }
  .events__item--ticket { grid-column: span 2; }

  /* ---- Mobile polish: Choose From + Why Story restored ---- */
  .choose { padding: 40px 0 48px; }
  .choose__wrap { padding: 0 16px; }
  .choose__heading { font-size: 30px; margin-bottom: 16px; letter-spacing: -0.01em; }
  .showcase { border-radius: 22px; min-height: auto; }
  .showcase__left { padding: 18px 16px 4px; gap: 10px; }
  .showcase__arrows { gap: 8px; }
  .showcase__arrow { width: 32px; height: 32px; }
  .showcase__pills { gap: 6px; }
  .showcase__pills .pill { font-size: 10.5px; padding: 7px 12px; }
  .showcase__phone-img,
  .showcase__phone-vid { border-radius: 0 0 22px 22px; }

  .why { padding: 48px 16px 56px; }
  .why__inner { padding: 0; }
  .why__header { flex-direction: column; align-items: flex-start; gap: 12px; margin-bottom: 22px; }
  .why__title { font-size: 28px; line-height: 1.08; letter-spacing: -0.01em; }
  .why__title br { display: none; }
  .why__link { font-size: 12px; }
  .features { grid-template-columns: 1fr 1fr; gap: 10px; }
  .feat-card { min-height: 170px; padding: 18px 14px 18px; border-radius: 14px; }
  .feat-card__icon { width: 22px; height: 22px; }
  .feat-card__title { font-size: 14px; line-height: 1.15; }
  .feat-card__title br { display: none; }
  .feat-card__desc { font-size: 11.5px; line-height: 1.4; }

  /* Social section: stack buttons so nothing gets cut off */
  .social { padding: 36px 16px 56px; }
  .social__links {
    flex-wrap: wrap;
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto 18px;
  }
  .social__link {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 14px;
  }
  .social__connect {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
  .social__connect span br { display: none; }
}

/* ============================================
   CINEMA AI — 3D Curve Carousel
   ============================================ */
.cinema {
  background: #000;
  padding: 0 0 clamp(70px, 10vh, 120px);  /* no top padding — video header is the top */
  position: relative;
  overflow: hidden;
  width: 100%;
}
/* No transition gradients — CINEMA is its own clean black block. */
.cinema__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
  text-align: center;
}
.cinema__eyebrow {
  font-family: var(--font-body, 'Satoshi', sans-serif);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  margin: 0 0 14px;
}
.cinema__gold {
  background: linear-gradient(135deg, #f4d99a 0%, #d4af7a 55%, #b88f5a 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #d4af7a;
  font-weight: 800;
  letter-spacing: 0.28em;
}
.cinema__title {
  font-family: var(--font-display, 'Cabinet Grotesk', sans-serif);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  line-height: 1.05;
}
.cinema__sub {
  font-family: var(--font-body, 'Satoshi', sans-serif);
  font-size: clamp(14px, 1.4vw, 17px);
  color: rgba(255, 255, 255, 0.6);
  max-width: 860px;
  margin: 0 auto clamp(40px, 6vh, 64px);
  line-height: 1.55;
  text-wrap: balance;
}

/* 3D stage — sibling of .cinema__inner, spans the full .cinema width */
.cinema__stage {
  position: relative;
  height: clamp(420px, 62vh, 620px);
  perspective: 1600px;
  perspective-origin: 50% 50%;
  width: 100%;
  margin: 0;
  user-select: none;
  cursor: grab;
}
/* Spacing above CTA buttons (cinema__inner re-used as a wrapper for the buttons) */
.cinema__inner--cta { margin-top: clamp(40px, 6vh, 64px); }
.cinema__inner--breakdown { margin-top: clamp(36px, 5.5vh, 56px); }

/* Vibe breakdown copy under CINEMA carousel, above buttons */
.cinema__breakdown {
  max-width: 760px;
  margin: 0 auto clamp(28px, 4vh, 40px);
  text-align: center;
}
.cinema__breakdown-lead {
  font-family: 'Cabinet Grotesk', system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin: 0 0 14px;
}
.cinema__breakdown-body {
  font-family: 'Satoshi', system-ui, sans-serif;
  font-weight: 400;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.65;
  color: rgba(255,255,255,0.72);
  margin: 0;
}
.cinema__stage:active { cursor: grabbing; }

.cinema__ring {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  will-change: transform;
}

.cinema-card {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(190px, 18vw, 260px);
  aspect-ratio: 9 / 16;
  margin: calc(clamp(190px, 18vw, 260px) * -16 / 18) 0 0 calc(clamp(190px, 18vw, 260px) / -2);
  border-radius: 18px;
  overflow: hidden;
  background: #0a0a0a;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition: box-shadow 0.4s ease;
  transform-origin: center center;
}
.cinema-card.is-active {
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(244, 217, 154, 0.35) inset,
    0 0 40px rgba(212, 175, 122, 0.18);
}
.cinema-card__media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

/* Edge fades for cinematic blend */
.cinema__fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(80px, 14vw, 220px);
  pointer-events: none;
  z-index: 5;
}
.cinema__fade--l {
  left: 0;
  background: linear-gradient(to right, #000 0%, rgba(0, 0, 0, 0.85) 35%, rgba(0, 0, 0, 0) 100%);
}
.cinema__fade--r {
  right: 0;
  background: linear-gradient(to left, #000 0%, rgba(0, 0, 0, 0.85) 35%, rgba(0, 0, 0, 0) 100%);
}

/* CTAs */
.cinema__cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: clamp(40px, 6vh, 64px);
}
.cinema__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  color: #fff;
  font-family: var(--font-body, 'Satoshi', sans-serif);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.cinema__btn:hover {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
  transform: translateY(-1px);
}
/* Gold elevated variant — matches viral card CINEMA AI button */
.cinema__btn--gold {
  background: linear-gradient(135deg, #f4d99a 0%, #d4af7a 55%, #b88f5a 100%);
  color: #0a0a0a;
  border: none;
  box-shadow: 0 6px 20px rgba(212,175,122,0.28), inset 0 1px 0 rgba(255,255,255,0.35);
  font-weight: 800;
}
.cinema__btn--gold:hover {
  background: linear-gradient(135deg, #f4d99a 0%, #d4af7a 55%, #b88f5a 100%);
  color: #0a0a0a;
  border: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(212,175,122,0.4), inset 0 1px 0 rgba(255,255,255,0.45);
}

/* Mobile */
@media (max-width: 768px) {
  .cinema { padding: 28px 0 28px; }
  .cinema__stage { height: clamp(260px, 38vh, 340px); perspective: 1100px; margin-top: 0 !important; }
  .cinema-card {
    width: clamp(150px, 42vw, 200px);
    margin: calc(clamp(150px, 42vw, 200px) * -16 / 18) 0 0 calc(clamp(150px, 42vw, 200px) / -2);
    border-radius: 14px;
  }
  .cinema__cta { gap: 10px; }
  .cinema__btn { padding: 11px 18px; font-size: 12px; }
  .cinema__breakdown { padding: 0 22px; }
  .cinema__breakdown-lead { font-size: clamp(20px, 5.4vw, 26px); }
  .cinema__breakdown-body { font-size: 14px; line-height: 1.6; }
}

/* =====================================================
   CONTACT PAGES — landing hub + sales/inquiry/hiring/faq
   ===================================================== */
.contact-page {
  min-height: 100vh;
  background: #0a0a0a;
  color: #fff;
  padding: clamp(80px, 12vw, 140px) clamp(20px, 5vw, 60px) clamp(80px, 12vw, 140px);
  position: relative;
}
.contact-page__close {
  position: fixed;
  top: clamp(18px, 2.4vw, 28px);
  right: clamp(18px, 2.4vw, 28px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(20,20,20,.7);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  backdrop-filter: blur(12px);
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}
.contact-page__close:hover { transform: scale(1.05); background: rgba(40,40,40,.9); }
.contact-page__inner {
  max-width: 880px;
  margin: 0 auto;
}
.contact-page__eyebrow {
  display: inline-block;
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #C8FF00;
  margin-bottom: 18px;
}
.contact-page__title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 7vw, 64px);
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 0 0 12px;
}
.contact-page__sub {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,.62);
  margin: 0 0 clamp(36px, 6vw, 56px);
  max-width: 620px;
}

/* Landing hub cards */
.contact-hub {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 32px;
}
.contact-card {
  background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 28px 26px;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
  min-height: 220px;
}
.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(200,255,0,.4);
  background: linear-gradient(180deg, rgba(200,255,0,.06), rgba(255,255,255,.02));
}
.contact-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(200,255,0,.12);
  color: #C8FF00;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card__title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -.01em;
  margin: 0;
}
.contact-card__desc {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
  margin: 0;
}
.contact-card__arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Satoshi', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #C8FF00;
  letter-spacing: .02em;
}

/* Form layout */
.contact-form { margin-top: 24px; }
.contact-form__step { display: none; }
.contact-form__step.is-active { display: block; }
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 22px;
}
.contact-form__row--single { grid-template-columns: 1fr; }
.contact-form__field { display: flex; flex-direction: column; gap: 8px; }
.contact-form__label {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  letter-spacing: 0;
}
.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  background: rgba(255,255,255,.025);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 16px 18px;
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  color: #fff;
  transition: border-color .2s ease, background .2s ease;
  appearance: none;
  -webkit-appearance: none;
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder { color: rgba(255,255,255,.32); }
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: rgba(200,255,0,.5);
  background: rgba(255,255,255,.04);
}
.contact-form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23ffffff' stroke-opacity='0.5' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
  cursor: pointer;
}
.contact-form__select option { background: #0a0a0a; color: #fff; }
.contact-form__textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.5;
}
.contact-form__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  margin-top: 32px;
}
.contact-form__actions--split { justify-content: space-between; }
.contact-form__back {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  padding: 12px 4px;
}
.contact-form__back:hover { color: #fff; }
.contact-form__btn {
  background: #C8FF00;
  color: #0a0a0a;
  border: none;
  border-radius: 14px;
  padding: 18px 36px;
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  min-width: 200px;
  transition: transform .15s ease, box-shadow .2s ease;
  letter-spacing: 0;
}
.contact-form__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 28px rgba(200,255,0,.22);
}
.contact-form__btn--wide { width: 100%; max-width: 720px; }
.contact-form__btn:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.contact-form__success {
  display: none;
  background: linear-gradient(180deg, rgba(200,255,0,.08), rgba(255,255,255,.02));
  border: 1px solid rgba(200,255,0,.28);
  border-radius: 18px;
  padding: 40px 32px;
  text-align: center;
  margin-top: 24px;
}
.contact-form__success.is-active { display: block; }
.contact-form__success-title {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: 26px;
  margin: 0 0 8px;
}
.contact-form__success-body {
  font-family: 'Satoshi', sans-serif;
  color: rgba(255,255,255,.68);
  font-size: 15px;
  margin: 0;
}

/* FAQ list (standalone page) */
.contact-faq {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-faq__item {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(255,255,255,.02);
}
.contact-faq__q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  padding: 22px 24px;
  font-family: 'Satoshi', sans-serif;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.contact-faq__chev {
  flex-shrink: 0;
  color: #C8FF00;
  transition: transform .25s ease;
}
.contact-faq__item.is-open .contact-faq__chev { transform: rotate(180deg); }
.contact-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 24px;
}
.contact-faq__a p {
  color: rgba(255,255,255,.68);
  font-family: 'Satoshi', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 22px;
}
.contact-faq__item.is-open .contact-faq__a { max-height: 400px; }

/* Mobile */
@media (max-width: 720px) {
  .contact-page { padding: 90px 18px 80px; }
  .contact-form__row { grid-template-columns: 1fr; gap: 18px; }
  .contact-form__actions { flex-direction: column-reverse; align-items: stretch; gap: 14px; }
  .contact-form__actions--split { flex-direction: column-reverse; }
  .contact-form__btn { width: 100%; }
  .contact-card { min-height: 180px; padding: 24px 22px; }
}

/* ─── MOBILE: hide product page sticky subnav ──────────────────────────
   Main fixed .nav already provides dropdown + search + buy CTA on mobile.
   The Apple-style sticky .pp-subnav / .pp4-subnav was stacking visually
   on top of .nav (both position with top: 0). Hide on small screens.   */
@media (max-width: 720px) {
  .pp-subnav,
  .pp4-subnav {
    display: none !important;
  }
  /* Recover the vertical space their height var reserved on some products */
  :root {
    --pp-subnav-h: 0px;
    --pp4-subnav-h: 0px;
  }
}

/* ============================================================ */
/* CINEMA section title — hero treatment (matches /cinema-ai/)   */
/* ============================================================ */
.cinema__title--hero {
  font-family: var(--font-display, 'Cabinet Grotesk', sans-serif);
  font-size: clamp(40px, 6.2vw, 84px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 auto 22px;
  text-wrap: balance;
  max-width: 14ch;
}
@media (max-width: 640px) {
  .cinema__title--hero br { display: none; }
}

/* ============================================================ */
/* CINEMA section — full-bleed video header (Dream Doll bg)      */
/* Video shows FULL (no crop) + smooth gradient into carousel    */
/* ============================================================ */
.cinema__header {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
  background: #0a0a0a;
  line-height: 0;            /* kill inline gap above/below video */
  font-size: 0;
}
.cinema__header-bg {
  position: relative;
  width: 100%;
  height: auto;
  display: block;            /* no inline baseline gap */
  vertical-align: top;
  filter: contrast(1.05) brightness(0.85);
  z-index: 0;
}
/* Veil — transparent at top, hard black floor at bottom so it melts into carousel */
.cinema__header-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(0,0,0,0) 0%,
      rgba(0,0,0,0) 40%,
      rgba(0,0,0,0.35) 60%,
      rgba(0,0,0,0.75) 78%,
      rgba(0,0,0,0.95) 90%,
      #000 100%),
    radial-gradient(ellipse at center top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 70%, rgba(0,0,0,0.45) 100%);
  z-index: 1;
  pointer-events: none;
}
/* Tagline pinned to lower third — fills the empty space below Dream's hands */
.cinema__tagline {
  position: absolute;
  left: 0; right: 0;
  bottom: clamp(40px, 7vh, 80px);
  z-index: 3;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(12px, 1.8vw, 24px);
  font-family: var(--font-display, 'Cabinet Grotesk', sans-serif);
  line-height: 1;
  pointer-events: none;
}
.cinema__tagline-pill {
  font-size: clamp(22px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0,0,0,0.7);
}
.cinema__tagline-pill--gold {
  background: linear-gradient(135deg, #f4d99a 0%, #d4af7a 55%, #b88f5a 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cinema__tagline-or {
  font-family: var(--font-body, 'Satoshi', sans-serif);
  font-size: clamp(11px, 1vw, 13px);
  font-weight: 600;
  letter-spacing: 0.32em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.7);
}
.cinema__inner--over {
  position: absolute;
  inset: 0;
  z-index: 2;
  text-align: center;
  padding: clamp(48px, 8vh, 96px) clamp(20px, 5vw, 48px);
  max-width: 980px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
/* Remove the gap — carousel should sit flush under the gradient fade */
.cinema__header + .cinema__stage,
.cinema__header {
  margin-bottom: 0;
}

/* ===========================================================
   CINEMA SECTION — MOBILE HERO (matches /cinema-ai/ learn-more)
   Must appear AFTER base .cinema__header rules to override them.
   On mobile the Dream video fills nearly the full viewport and
   the title/eyebrow/subtext overlay on top, NOT below.
   =========================================================== */
@media (max-width: 767px) {
  .cinema { padding-bottom: 28px; padding-top: 0; }

  /* Make the header a tight, full-bleed hero (no big negative space) */
  .cinema__header {
    position: relative;
    min-height: 78svh;
    height: 78svh;
    width: 100%;
    overflow: hidden;
    background: #0a0a0a;
    line-height: normal;
    font-size: 16px;
    display: block;
  }

  /* Video fills the hero, cover-fit (no letterboxing) */
  .cinema__header-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: contrast(1.05) brightness(0.72);
    z-index: 0;
  }

  /* Veil: stronger top wash so eyebrow/title read, hard floor into black */
  .cinema__header-veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(to bottom,
        rgba(0,0,0,0.55) 0%,
        rgba(0,0,0,0.25) 30%,
        rgba(0,0,0,0.55) 70%,
        rgba(0,0,0,0.92) 92%,
        #000 100%);
  }

  /* Title row: pushed toward the TOP (no big gap above buttons/tagline) */
  .cinema__inner--over {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 18vh 22px 0;       /* sits in the upper third */
    max-width: 100%;
    margin: 0;
  }
  .cinema__eyebrow { margin: 0 0 14px; }
  .cinema__title--hero {
    font-size: clamp(34px, 9vw, 52px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    font-weight: 800;
    margin: 0 0 16px;
  }
  .cinema__sub {
    margin: 0 auto;
    max-width: 92%;
    font-size: 14px;
    line-height: 1.5;
  }

  /* Bring back HYBRID OR FULL AI — pinned to the lower portion of the hero */
  .cinema__tagline {
    display: flex;
    position: absolute;
    left: 0; right: 0;
    bottom: 9vh;
    z-index: 3;
    align-items: center;
    justify-content: center;
    gap: 14px;
    pointer-events: none;
  }
  .cinema__tagline-pill {
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 18px rgba(0,0,0,0.7);
  }
  .cinema__tagline-or {
    font-size: 11px;
    letter-spacing: 0.32em;
  }

  /* Carousel sits flush below the hero */
  .cinema__stage { margin-top: 0; }
}


/* ══════════════════════════════════════════════════
   TOUCH SCROLL FIX (June 2, 2026)
   Horizontal rails were trapping vertical pan on iPad.
   touch-action: pan-x on the rail itself tells iOS:
   "this element only handles horizontal — if the user
    swipes vertically, hand it back to the page."
   overscroll-behavior-x: contain stops chain scroll
   from yanking the whole page when a rail hits its end.
   ══════════════════════════════════════════════════ */
.phones__track,
.scroll-container,
.ftc__grid,
.bm-row,
.brands-marquee,
[class*="__rail"] {
  touch-action: pan-x !important;
  overscroll-behavior-x: contain;
}
/* Viral, swipe-the-work, and cinema rails: allow both axes so vertical
   page scroll never gets trapped on mobile. Horizontal still works via
   overflow-x. */
.viral-slider__track,
.swipe__strip,
.cinema__stage,
[class*="__track"],
[class*="__strip"] {
  touch-action: pan-y pan-x !important;
  overscroll-behavior-x: contain;
}


/* ══════════════════════════════════════════════════
   VIDEO TOUCH FIX (June 2, 2026)
   ─────────────────────────────────────────────────
   iOS Safari traps vertical touch events on full-
   width autoplay videos when pointer-events default
   to auto. The user's swipe lands on the video and
   iOS interprets it as a video-control gesture, eating
   the scroll. This was the cause of "right and middle
   side don't scroll vertically" on iPad — the herovid
   spans full width so the entire middle/right viewport
   was over the video.
   Fix: pointer-events: none on display-only videos,
   and touch-action: pan-y on the wrapping sections so
   iOS allows native vertical scroll over them.
   ══════════════════════════════════════════════════ */
.herovid__player,
.showcase__phone-vid,
.cinema-card__media {
  pointer-events: none !important;
  touch-action: pan-y !important;
}
.herovid,
.choose,
.proof,
.trusted,
.join,
.why,
.hero {
  touch-action: pan-y !important;
}
/* Make sure flyer cards still receive their own taps (audio button etc) */
.flyer-card { touch-action: pan-x pan-y !important; }
.flyer-card video,
.flyer-card img { pointer-events: none !important; }
/* But the flyer-audio button itself needs taps */
.flyer-audio,
.flyer-card .flyer-audio { pointer-events: auto !important; touch-action: manipulation !important; }


/* ============================================================ */
/* WHAT'S INCLUDED · shared block used across all flyer tiers   */
/* (CINEMA AI is intentionally excluded)                         */
/* ============================================================ */
.pp4-included{
  width: 100%;
  background: #0a0a0a;
  color: #fff;
  padding: clamp(72px, 9vw, 130px) clamp(20px, 6vw, 96px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pp4-included::before{
  content:'';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 22% 20%, rgba(255, 107, 158, .10), transparent 60%),
    radial-gradient(ellipse 50% 40% at 82% 90%, rgba(200, 255, 0, .055), transparent 70%);
  pointer-events: none;
}
.pp4-included__head{
  width: min(100%, 980px);
  position: relative;
}
.pp4-included__eyebrow{
  font: 700 11px/1 'Satoshi', sans-serif;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #C8FF00;
  margin: 0 0 18px;
}
.pp4-included__title{
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 96px);
  line-height: .98;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0;
  text-wrap: balance;
}
.pp4-included__sub{
  margin: clamp(16px, 2vw, 26px) auto 0;
  max-width: 560px;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.66);
}
.pp4-included__list{
  list-style: none;
  margin: clamp(40px, 5vw, 64px) auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  width: min(100%, 1100px);
  text-align: left;
  position: relative;
}
.pp4-incl{
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: clamp(20px, 2.2vw, 28px) clamp(18px, 2vw, 24px);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}
.pp4-incl:hover{
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}
/* Tier accent: ads (pink) */
.pp4-incl--ads{
  background: linear-gradient(180deg, rgba(255, 107, 158, 0.06) 0%, rgba(255, 107, 158, 0.015) 100%);
  border-color: rgba(255, 107, 158, 0.22);
}
.pp4-incl--ads:hover{
  background: linear-gradient(180deg, rgba(255, 107, 158, 0.10) 0%, rgba(255, 107, 158, 0.03) 100%);
  border-color: rgba(255, 107, 158, 0.38);
}
.pp4-incl--ads .pp4-incl__icon{ color: rgba(255, 107, 158, 0.95); }
.pp4-incl--ads .pp4-incl__dim{ color: rgba(255, 107, 158, 0.72); }
/* Tier accent: motion (lime) */
.pp4-incl--motion{
  background: linear-gradient(180deg, rgba(200, 255, 0, 0.08) 0%, rgba(200, 255, 0, 0.02) 100%);
  border-color: rgba(200, 255, 0, 0.28);
}
.pp4-incl--motion:hover{
  background: linear-gradient(180deg, rgba(200, 255, 0, 0.12) 0%, rgba(200, 255, 0, 0.04) 100%);
  border-color: rgba(200, 255, 0, 0.45);
}
.pp4-incl--motion .pp4-incl__icon{ color: #C8FF00; }
.pp4-incl--motion .pp4-incl__dim{ color: rgba(200, 255, 0, 0.72); }
/* Tier accent: revision (soft blue) */
.pp4-incl--rev .pp4-incl__icon{ color: #8ab4ff; }
/* Tier accent: files (warm gold) */
.pp4-incl--files .pp4-incl__icon{ color: #ffd980; }
/* Tier accent: craft (white) */
.pp4-incl--craft .pp4-incl__icon{ color: rgba(255,255,255,0.92); }

.pp4-incl__tag{
  position: absolute;
  top: 14px;
  right: 14px;
  font: 700 9px/1 'Satoshi', sans-serif;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.7);
}
.pp4-incl__tag--motion{ background: #C8FF00; color: #0a0a0a; }
.pp4-incl__tag--ads{ background: rgba(255, 107, 158, 0.92); color: #0a0a0a; }
.pp4-incl__tag--rev{ background: rgba(138, 180, 255, 0.92); color: #0a0a0a; }
.pp4-incl__tag--files{ background: rgba(255, 217, 128, 0.92); color: #0a0a0a; }

.pp4-incl__icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 4px;
}
.pp4-incl__icon svg{ width: 100%; height: 100%; }

.pp4-incl__h{
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 22px);
  color: #fff;
  margin: 0;
  letter-spacing: -.01em;
  line-height: 1.1;
}
.pp4-incl__dim{
  font: 600 12px/1.2 'Satoshi', sans-serif;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.pp4-incl__s{
  font-size: clamp(13px, .95vw, 14px);
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.5;
  margin: 6px 0 0;
}

@media (max-width: 640px){
  .pp4-included__list{ grid-template-columns: 1fr; gap: 12px; }
}

/* Trusted By is relocated above .join on desktop via JS at end of index.html · 2026-06-19 */
