/* ============================================================
   ON-CAMERA DANCE INTENSIVE — Landing Page Styles
   Dark cinematic theme · Purple + Gold accents · Anton + Inter
   ============================================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg-primary: #0a0a0c;
  --bg-elevated: #111116;
  --bg-card: #16161c;
  --bg-card-hover: #1c1c24;
  --text-primary: #f0f0f0;
  --text-secondary: #a0a0b0;
  --text-muted: #6a6a7a;
  --accent-gold: #d4a843;
  --accent-gold-dim: rgba(212, 168, 67, 0.15);
  --accent-purple: #8b5cf6;
  --accent-purple-dim: rgba(139, 92, 246, 0.12);
  --accent-glow: rgba(139, 92, 246, 0.35);
  --cta-bg: #8b5cf6;
  --cta-hover: #7c3aed;
  --cta-text: #fff;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-card: rgba(255, 255, 255, 0.08);
  --font-display: 'Anton', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --max-w: 1200px;
  --section-pad: 100px 24px;
  --radius: 12px;
  --radius-sm: 8px;
  --transition-fast: 150ms ease;
  --transition-med: 300ms ease;

  /* Homepage-footer compat tokens */
  --text-tertiary: #6a6a7a;
  --bg-deep: #0a0a0c;
  --lavender: #8b5cf6;
  --gold: #d4a843;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* --- PREMIUM FOCUS-VISIBLE RING --- */
:focus-visible {
  outline: 2px solid var(--accent-purple, #8b5cf6);
  outline-offset: 3px;
  border-radius: 4px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent-purple, #8b5cf6);
  outline-offset: 3px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* --- TYPOGRAPHY --- */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5.05vw, 4.35rem);
  line-height: 1.04;
  text-transform: uppercase;
  letter-spacing: 0.012em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 1.1;
  text-transform: uppercase;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  line-height: 1.15;
  text-transform: uppercase;
}
.section-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-purple);
  margin-bottom: 12px;
}
.body-lg { font-size: 1.125rem; color: var(--text-secondary); line-height: 1.7; }
.body-md { font-size: 1rem; color: var(--text-secondary); line-height: 1.65; }
.body-sm { font-size: 0.875rem; color: var(--text-muted); }

/* --- UTILITY --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-purple { color: var(--accent-purple); }

/* --- CTA BUTTON --- */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  background: var(--cta-bg);
  color: var(--cta-text);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  letter-spacing: 0.04em;
  transition: transform var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  animation: ctaShimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes ctaShimmer {
  0%   { left: -100%; }
  40%  { left: 150%; }
  100% { left: 150%; }
}

.cta-btn:hover {
  background: var(--cta-hover);
  transform: scale(1.04);
  box-shadow: 0 0 30px var(--accent-glow);
}
.cta-btn--gold {
  background: var(--accent-gold);
  color: #0a0a0c;
}
.cta-btn--gold:hover {
  background: #c49a35;
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.4);
}
.cta-btn--outline {
  background: transparent;
  border: 1px solid var(--border-card);
  color: var(--text-primary);
}
.cta-btn--outline:hover {
  background: rgba(255,255,255,0.04);
  border-color: var(--accent-purple);
}

/* ============================================================
   S1: SCARCITY BANNER
   ============================================================ */
.scarcity-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(90deg, #1a0a2e 0%, #0d0d1a 50%, #1a0a2e 100%);
  border-bottom: 1px solid var(--border-subtle);
  padding: 10px 24px 10px;
  display: flex;
  justify-content: center;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}
.scarcity-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
}
.scarcity-banner__timer {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.timer-block {
  background: rgba(139, 92, 246, 0.15);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.95rem;
  font-variant-numeric: tabular-nums;
  color: var(--accent-purple);
  min-width: 34px;
  text-align: center;
}
.timer-sep {
  color: var(--text-muted);
  font-weight: 600;
}
.scarcity-banner__text {
  color: rgba(245, 245, 250, 0.92);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ============================================================
   S1: HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 60px;
  overflow: hidden;
}
/* --- Cinematic light-leak layers --- */
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

/* Layer 1 — wide atmospheric bloom behind everything */
.hero::before {
  inset: -10% -15%;
  background:
    /* top-left warm leak */
    radial-gradient(ellipse 70% 55% at 18% 8%, rgba(147, 51, 234, 0.18) 0%, rgba(126, 34, 206, 0.08) 30%, transparent 62%),
    /* top-right cool leak */
    radial-gradient(ellipse 60% 50% at 82% 6%, rgba(109, 40, 217, 0.14) 0%, rgba(88, 28, 135, 0.06) 35%, transparent 58%),
    /* centre bloom behind H1 */
    radial-gradient(ellipse 80% 45% at 50% 38%, rgba(139, 92, 246, 0.13) 0%, rgba(124, 58, 237, 0.06) 30%, rgba(88, 28, 135, 0.02) 52%, transparent 72%),
    /* deep low fill */
    radial-gradient(ellipse 90% 40% at 50% 70%, rgba(76, 29, 149, 0.07) 0%, transparent 60%);
  filter: blur(60px);
  mix-blend-mode: screen;
  opacity: 0.9;
  animation: heroLeakDrift 20s ease-in-out infinite alternate;
}

/* Layer 2 — tighter hot-spot that sits right behind the title */
.hero::after {
  left: 50%;
  top: 22%;
  width: min(900px, 88vw);
  height: 320px;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse 100% 80% at 50% 50%, rgba(139, 92, 246, 0.12) 0%, rgba(124, 58, 237, 0.06) 28%, transparent 60%),
    radial-gradient(ellipse 50% 90% at 35% 45%, rgba(168, 85, 247, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 90% at 65% 55%, rgba(192, 132, 252, 0.06) 0%, transparent 50%);
  filter: blur(36px);
  mix-blend-mode: screen;
  opacity: 0.85;
  animation: heroLeakPulse 14s ease-in-out infinite;
}

/* Layer 3 — top-edge bleed via .hero__bg pseudo */
.hero__bg::after {
  content: "";
  position: absolute;
  top: -2%;
  left: 10%;
  right: 10%;
  height: 180px;
  background:
    radial-gradient(ellipse 60% 100% at 30% 0%, rgba(147, 51, 234, 0.14) 0%, transparent 60%),
    radial-gradient(ellipse 50% 100% at 70% 0%, rgba(124, 58, 237, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse 80% 80% at 50% 0%, rgba(109, 40, 217, 0.07) 0%, transparent 70%);
  filter: blur(40px);
  mix-blend-mode: screen;
  pointer-events: none;
  animation: heroEdgeBleed 16s ease-in-out infinite alternate-reverse;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--bg-primary);
  z-index: 0;
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  z-index: 1;
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}
.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(232, 232, 237, 0.72);
  margin-bottom: 24px;
  opacity: 0;
}
.hero__title {
  position: relative;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto 24px;
  text-align: center;
  left: -0.06em; /* optical correction — letter-spacing + asymmetric line lengths shift visual center right */
  opacity: 0;
}
.hero__title::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(780px, 80vw);
  height: 160px;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(ellipse 100% 100% at center,
      rgba(139, 92, 246, 0.11) 0%,
      rgba(124, 58, 237, 0.06) 35%,
      rgba(88, 28, 135, 0.02) 55%,
      transparent 75%);
  filter: blur(24px);
  pointer-events: none;
  z-index: -1;
}
.hero__title span { display: block; }
.hero__title-line {
  display: block;
  width: 100%;
  text-align: center;
}
.hero__title-line--top,
.hero__title-line--bottom {
  white-space: nowrap;
}
.hero__title-line--top {
  transform: translateX(-0.12em); /* optical: "T" cap + letter-spacing makes line 1 read right-heavy */
}
.hero__title-line--bottom {
  margin-left: 0;
}
@keyframes heroLeakDrift {
  0% {
    transform: scale(1) translateY(0);
    opacity: 0.85;
  }
  100% {
    transform: scale(1.06) translateY(-8px);
    opacity: 1;
  }
}
@keyframes heroLeakPulse {
  0%, 100% {
    transform: translateX(-50%) scale(0.97);
    opacity: 0.7;
  }
  50% {
    transform: translateX(-50%) scale(1.04);
    opacity: 0.9;
  }
}
@keyframes heroEdgeBleed {
  0% { opacity: 0.7; transform: scaleX(1); }
  100% { opacity: 1; transform: scaleX(1.08); }
}
.hero__authority {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--text-secondary);
  max-width: 720px;
  margin: 0 auto 16px;
  line-height: 1.6;
  opacity: 0;
}
.hero__sub {
  font-size: clamp(1.08rem, 1.95vw, 1.22rem);
  font-weight: 500;
  color: var(--text-secondary);
  max-width: 760px;
  margin: 0 auto 12px;
  line-height: 1.55;
  opacity: 0;
}
/* Inline logos within hero paragraph */
.hero__sub--inline-logos .inline-logo {
  display: inline-block;
  height: 1.6em;
  width: auto;
  vertical-align: middle;
  margin: 0 4px;
  filter: brightness(0.98);
  position: relative;
  top: -1px;
}
.hero__sub--inline-logos .inline-logo:first-of-type {
  height: 2.02em;
  top: -2px;
}
.hero__sub--inline-logos .inline-logo:last-of-type {
  height: 1.58em;
  top: -1px;
}
.hero__details {
  font-size: 0.9rem;
  color: rgba(245, 245, 250, 0.9);
  margin-bottom: 32px;
  letter-spacing: 0.05em;
  opacity: 0;
}
.hero__cta { opacity: 0; }
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent-purple), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* --- AUTHORITY TICKER — Fluid 3D Poster Carousel --- */
.authority-ticker {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background:
    radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.06), transparent 60%),
    var(--bg-primary);
  padding: 32px 0 36px;
}
.ticker-perspective {
  perspective: 1200px;
  perspective-origin: center center;
  overflow: hidden;
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  gap: 3px;
  width: max-content;
  padding: 0 0;
  transform-style: preserve-3d;
  will-change: transform;
  touch-action: pan-y;
}
.ticker-item {
  --item-shift-y: 0px;
  --item-rotate: 0deg;
  --item-scale: 1;
  --item-depth: 0px;
  --item-glow: 0.1;
  flex-shrink: 0;
  width: clamp(140px, 14vw, 200px);
  aspect-ratio: 0.67;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transform:
    translate3d(0, var(--item-shift-y), var(--item-depth))
    rotateY(var(--item-rotate))
    scale(var(--item-scale));
  transition:
    opacity 600ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 500ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
  cursor: pointer;
}
.ticker-item.is-active {
  opacity: 1;
  z-index: 3;
}
.ticker-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(139, 92, 246, calc(var(--item-glow) * 0.8));
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition:
    box-shadow 500ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 400ms ease,
    filter 500ms cubic-bezier(0.16, 1, 0.3, 1);
}
.ticker-item.is-active img,
.ticker-item:hover img {
  border-color: rgba(139, 92, 246, 0.4);
  filter: brightness(1.12) saturate(1.1);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.6),
    0 0 48px rgba(139, 92, 246, 0.3),
    0 0 80px rgba(139, 92, 246, 0.08);
}

/* ============================================================
   S2: AGITATION & PROOF VIDEO
   ============================================================ */
.agitation {
  padding: var(--section-pad);
  text-align: center;
}
.agitation__headline {
  margin-bottom: 40px;
}
.agitation__video-wrap {
  position: relative;
  max-width: 800px;
  margin: 0 auto 40px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border-card);
}
.agitation__video-wrap iframe,
.agitation__video-wrap video {
  width: 100%;
  height: 100%;
  border: none;
}
.video-play-glow {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.video-play-glow::before {
  content: '';
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-purple);
  opacity: 0.25;
  animation: playGlow 2.5s ease-in-out infinite;
}
@keyframes playGlow {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.25); opacity: 0.35; }
}
/* Video CTA — vibrant purple button beneath the promo video */
.agitation__video-cta {
  text-align: center;
  margin-bottom: 40px;
}

.agitation__quote {
  max-width: 700px;
  margin: 0 auto;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  position: relative;
  padding: 0 24px;
}
.agitation__quote::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 0;
  font-size: 4rem;
  color: var(--accent-purple);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}
.agitation__quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-size: 0.9rem;
  color: var(--accent-gold);
  letter-spacing: 0.06em;
}

/* ============================================================
   S3: KENNY ORTEGA HERO TESTIMONIAL & WALL OF LOVE
   ============================================================ */
.kenny-hero { padding: var(--section-pad); }

.kenny-hero__card {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 900px;
  margin: 0 auto 64px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(212, 168, 67, 0.04) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 48px 44px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}
/* Cinematic card variant — no gold border, dramatic glow */
.kenny-hero__card--cinematic {
  border-color: rgba(255, 255, 255, 0.06);
  background: linear-gradient(160deg, #111118 0%, rgba(139, 92, 246, 0.04) 50%, #0e0e14 100%);
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(139, 92, 246, 0.06);
}
.kenny-hero__card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: var(--accent-gold);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
}
.kenny-hero__photo-wrap {
  flex-shrink: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-gold);
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.15);
}
/* Cinematic photo — no circle, no border, soft fade into background */
.kenny-hero__photo-wrap--cinematic {
  width: 200px;
  height: 240px;
  border-radius: 12px;
  border: none;
  box-shadow: none;
  position: relative;
  overflow: visible;
}
.kenny-hero__photo-wrap--cinematic::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(to bottom, transparent 50%, #111118 100%);
  pointer-events: none;
  z-index: 1;
}
.kenny-hero__photo-wrap--cinematic .kenny-hero__photo {
  border-radius: 12px;
  object-position: top center;
  filter: contrast(1.05) brightness(0.95);
}
.kenny-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.kenny-hero__content {
  flex: 1;
}
.kenny-hero__quote {
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 24px;
  border: none;
  padding: 0;
}
.kenny-hero__author {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--accent-gold);
  letter-spacing: 0.02em;
}
.kenny-hero__role {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Proof of Concept band */
.proof-band {
  text-align: center;
  padding: 40px 0;
  margin-bottom: 48px;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.proof-band__text {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 24px;
  font-style: italic;
}
.proof-band__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.proof-band__logos img {
  height: 36px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
}

/* Wall of Love — Staggered Masonry Grid */
.wall-of-love { padding-top: 16px; }
.wall-of-love__title {
  text-align: center;
  margin-bottom: 40px;
  font-family: var(--font-display);
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.wall-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding-bottom: 16px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.wall-masonry__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Stagger the columns vertically for masonry effect */
.wall-masonry__col:nth-child(2) { padding-top: 40px; }
.wall-masonry__col:nth-child(3) { padding-top: 16px; }

.wall-card {
  position: relative;
  border-radius: var(--radius);
  overflow: visible;
  border: 1px solid var(--border-card);
  background: var(--bg-card);
  opacity: 0;
  transform: translateY(32px) scale(0.97);
  transition:
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease,
    filter 320ms ease;
  will-change: transform, box-shadow;
}
.wall-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.12), transparent 42%),
    radial-gradient(circle at 80% 100%, rgba(139, 92, 246, 0.16), transparent 46%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}
.wall-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.wall-card:hover {
  transform: translateY(-6px) scale(1.012);
  border-color: rgba(139, 92, 246, 0.34);
  box-shadow:
    0 16px 38px rgba(6, 8, 20, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.03) inset,
    0 0 32px rgba(139, 92, 246, 0.16);
  filter: saturate(1.04);
}
.wall-card:hover::before {
  opacity: 1;
}
.wall-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 320ms ease;
}
.wall-card:hover img {
  transform: translateY(-2px);
  filter: brightness(1.03);
}
/* Wall of Love — Quote Cards */
.wall-card--quote {
  display: flex;
  align-items: stretch;
}
.wall-quote-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 24px 32px;
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(139, 92, 246, 0.06) 100%);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius);
  height: 100%;
  transition:
    background 320ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease;
}
.wall-card:hover .wall-quote-card {
  background: linear-gradient(135deg, rgba(24, 20, 34, 0.98) 0%, rgba(139, 92, 246, 0.11) 100%);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.wall-quote-card__text {
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 16px;
}
.wall-quote-card__author {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-primary);
}
.wall-quote-card__role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   S4: VALUE STACK
   ============================================================ */
.value-stack { padding: var(--section-pad); }
.value-stack__headline { text-align: center; margin-bottom: 56px; }
.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: transform 250ms linear(0, 0.7049, 1.0618, 1.0314, 0.9973, 0.997, 1, 1),
              border-color var(--transition-fast);
}
/* Animated glow border overlay */
.value-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(135deg, transparent, rgba(139, 92, 246, 0.4), var(--accent-gold), rgba(139, 92, 246, 0.4), transparent);
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 500ms linear(0, 0.3892, 0.921, 1.1515, 1.1295, 1.037, 0.9817, 0.9751, 0.9892, 1.0011, 1, 1.0026, 1.0003, 1, 0.9994, 0.9998, 1);
  pointer-events: none;
}
.value-card.is-visible::before {
  opacity: 1;
  animation: glowBorderSweep 4s ease-in-out infinite;
}
.value-card:hover {
  transform: translateY(-3px);
  border-color: transparent;
}
.value-card:hover::before {
  opacity: 1;
  animation: glowBorderSweep 2s ease-in-out infinite;
}
@keyframes glowBorderSweep {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.value-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-purple-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.value-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 0.03em;
}
.value-card__desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ============================================================
   SCHEDULE — 1-Day Itinerary
   ============================================================ */
/* ============================================================
   SCHEDULE — Side-by-Side Dual Column (Juniors / Seniors)
   ============================================================ */
.schedule { padding: var(--section-pad); }
.schedule__headline { text-align: center; margin-bottom: 12px; }
.schedule__sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* --- Schedule Toggle --- */
.schedule-toggle {
  display: flex;
  position: relative;
  max-width: 480px;
  margin: 0 auto 56px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: 50px;
  padding: 4px;
}
.schedule-toggle__btn {
  flex: 1;
  position: relative;
  z-index: 1;
  padding: 12px 20px;
  background: none;
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: 50px;
  transition: color 0.3s ease;
  cursor: pointer;
}
.schedule-toggle__btn.is-active {
  color: var(--cta-text);
}
.schedule-toggle__indicator {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  background: var(--accent-purple);
  border-radius: 50px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
  box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}
.schedule-toggle__indicator.is-right {
  transform: translateX(100%);
}

/* --- Vertical Timeline --- */
.schedule-timeline {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding-left: 48px;
  display: none;
}
.schedule-timeline.is-active {
  display: block;
}
.timeline-line {
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 2px;
}
/* Scroll-driven fill overlay */
.timeline-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--timeline-fill, 0%);
  background: linear-gradient(to bottom, var(--accent-purple), rgba(139, 92, 246, 0.6));
  border-radius: 2px;
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.35);
  will-change: height;
  transition: height 0.15s linear;
}

.timeline-entry {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
}
.timeline-entry + .timeline-entry {
  border-top: 1px solid var(--border-subtle);
}
.timeline-entry__dot {
  position: absolute;
  left: -38px;
  top: 24px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.3);
  border: 2px solid var(--bg-primary);
  box-shadow: 0 0 6px rgba(139, 92, 246, 0.1);
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.timeline-entry__dot.is-lit {
  background: var(--accent-purple);
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.6);
  transform: scale(1.2);
}
/* Timeline entry fade-slide-up */
.timeline-entry {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.timeline-entry.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-entry__time {
  flex-shrink: 0;
  min-width: 88px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--accent-purple);
  letter-spacing: 0.04em;
  padding-top: 2px;
}
.timeline-entry__content {
  flex: 1;
}
.timeline-entry__title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.5;
}

/* ============================================================
   THE AUDITION — Personal Letter Section
   Motion MCP spring: 600ms linear(0,0.4201,1.0173,1.2519,1.1652,1.0087,0.9376,0.9537,0.9942,1.0152,1.0128,1.0025,0.9964,0.9965,0.9991,1.0008,1.0009,1.0003,1,1)
   ============================================================ */
.audition-letter {
  padding: var(--section-pad);
  position: relative;
  overflow: hidden;
}
.audition-letter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(212, 168, 67, 0.04) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 40%, rgba(139, 92, 246, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.audition-letter__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.audition-letter__photo-col {
  display: flex;
  justify-content: center;
}
.audition-letter__photo-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: inset 0 0 90px rgba(10, 10, 12, 0.85), inset 0 0 180px rgba(10, 10, 12, 0.55);
}
.audition-letter__photo,
.audition-letter__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.08) brightness(0.92) saturate(0.9);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 48%, rgba(0, 0, 0, 0.94) 60%, rgba(0, 0, 0, 0.58) 74%, rgba(0, 0, 0, 0.16) 88%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 48%, rgba(0, 0, 0, 0.94) 60%, rgba(0, 0, 0, 0.58) 74%, rgba(0, 0, 0, 0.16) 88%, transparent 100%);
}
.audition-letter__video {
  display: block;
  border: 0;
  /* Override shared photo/video sizing — iframe needs absolute cover technique */
  position: absolute;
  width: 300%;
  height: 300%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  /* Mask doesn't work well on oversized iframe; fade overlay handles vignette */
  -webkit-mask-image: none;
  mask-image: none;
}
.audition-letter__photo-fade {
  position: absolute;
  inset: -6px;
  background:
    radial-gradient(ellipse at center, transparent 42%, rgba(10, 10, 12, 0.22) 62%, rgba(10, 10, 12, 0.82) 86%, rgba(10, 10, 12, 1) 100%),
    linear-gradient(to right, rgba(10, 10, 12, 0.95) 0%, transparent 18%, transparent 82%, rgba(10, 10, 12, 0.95) 100%),
    linear-gradient(to bottom, rgba(10, 10, 12, 0.98) 0%, transparent 16%, transparent 76%, rgba(10, 10, 12, 1) 100%);
  pointer-events: none;
  z-index: 1;
}
.audition-letter__text-col {
  opacity: 0;
  transform: translateY(32px);
}
.audition-letter__text-col.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.audition-letter__kicker {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  font-weight: 700;
}
.audition-letter__headline {
  margin-bottom: 28px;
  background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.audition-letter__body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
}
.audition-letter__body p {
  margin-bottom: 16px;
}
.audition-letter__body p:last-child {
  margin-bottom: 0;
}
.audition-letter__body em {
  color: var(--text-primary);
  font-style: italic;
}
.audition-letter__signoff {
  margin-top: 28px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Audition letter photo — Motion-powered spring entrance */
.audition-letter__photo-wrap {
  opacity: 0;
  transform: translateX(-40px) scale(0.97);
}
.audition-letter__photo-wrap.is-visible {
  opacity: 1;
  transform: translateX(0) scale(1);
}

@media (max-width: 900px) {
  .audition-letter__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .audition-letter__photo-wrap {
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ============================================================
   S5: PRICING
   ============================================================ */
.pricing { padding: var(--section-pad); }
.pricing__headline { text-align: center; margin-bottom: 16px; }
.pricing__sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 48px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 380px));
  justify-content: center;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}
.pricing-card:hover { transform: translateY(-8px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }
.pricing-card--featured {
  border-color: var(--accent-purple);
  background: linear-gradient(180deg, rgba(139, 92, 246, 0.08) 0%, var(--bg-card) 40%);
  box-shadow: 0 0 50px var(--accent-purple-dim);
  transform: scale(1.04);
  z-index: 1;
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-8px); box-shadow: 0 0 60px rgba(139,92,246,0.2), 0 16px 48px rgba(0,0,0,0.3); }
.pricing-card--pro {
  border-color: var(--accent-gold);
  animation: proGoldGlow 3s ease-in-out infinite;
}
@keyframes proGoldGlow {
  0%, 100% { box-shadow: 0 0 30px rgba(212, 168, 67, 0.12), inset 0 0 0 1px rgba(212, 168, 67, 0.08); }
  50% { box-shadow: 0 0 50px rgba(212, 168, 67, 0.25), 0 0 80px rgba(212, 168, 67, 0.1), inset 0 0 0 1px rgba(212, 168, 67, 0.15); }
}
.pricing-card--pro:hover { transform: translateY(-8px); }
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 18px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-badge--popular {
  background: var(--accent-purple);
  color: #fff;
  box-shadow: 0 0 16px rgba(139, 92, 246, 0.5), 0 2px 8px rgba(0,0,0,0.3);
  animation: popularPop 2.5s ease-in-out infinite;
}
@keyframes popularPop {
  0%, 100% { box-shadow: 0 0 16px rgba(139, 92, 246, 0.5), 0 2px 8px rgba(0,0,0,0.3); transform: translateX(-50%) scale(1); }
  50% { box-shadow: 0 0 24px rgba(139, 92, 246, 0.7), 0 2px 12px rgba(0,0,0,0.3); transform: translateX(-50%) scale(1.04); }
}
.pricing-badge--scarcity {
  background: var(--accent-gold);
  color: #0a0a0c;
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { box-shadow: 0 0 8px rgba(212, 168, 67, 0.3); transform: translateX(-50%) scale(1); }
  50% { box-shadow: 0 0 22px rgba(212, 168, 67, 0.6); transform: translateX(-50%) scale(1.05); }
}
.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-bottom: 4px;
  margin-top: 8px;
}
.pricing-card__pitch {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.pricing-card__price {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 24px;
  color: var(--text-primary);
}
.pricing-card__price sup {
  font-size: 1.2rem;
  vertical-align: super;
  margin-right: 2px;
}
.pricing-card__list {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.pricing-card__list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pricing-card__list li::before {
  content: '✓';
  color: var(--accent-purple);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card--pro .pricing-card__list li::before {
  color: var(--accent-gold);
}
.pricing-card__cta { width: 100%; }
.pricing__fine-print {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.pricing__fine-print a { color: var(--accent-purple); }

/* ============================================================
   S6: FAQ
   ============================================================ */
.faq { padding: var(--section-pad); }
.faq__headline { text-align: center; margin-bottom: 48px; }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
  list-style: none;
  transition: color var(--transition-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent-purple);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item summary:hover { color: var(--accent-purple); }
.faq-answer {
  padding: 0 0 20px;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.7;
}
.faq-answer a {
  color: var(--accent-purple);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================================
   S7: FINAL CTA
   ============================================================ */
.final-cta {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(139, 92, 246, 0.08) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta__content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.final-cta__photo-wrap {
  position: relative;
  max-width: 480px;
  margin: 0 auto 40px;
  border-radius: var(--radius);
  overflow: visible;
  box-shadow: inset 0 0 100px rgba(10, 10, 12, 0.82), inset 0 0 180px rgba(10, 10, 12, 0.5);
}
.final-cta__photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 46%, rgba(0, 0, 0, 0.94) 60%, rgba(0, 0, 0, 0.56) 76%, rgba(0, 0, 0, 0.14) 90%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 46%, rgba(0, 0, 0, 0.94) 60%, rgba(0, 0, 0, 0.56) 76%, rgba(0, 0, 0, 0.14) 90%, transparent 100%);
}
.final-cta__photo-fade {
  position: absolute;
  inset: -18px;
  z-index: 2;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse at center, transparent 38%, rgba(10, 10, 12, 0.22) 58%, rgba(10, 10, 12, 0.84) 84%, rgba(10, 10, 12, 1) 100%),
    linear-gradient(to bottom, rgba(10, 10, 12, 0.95) 0%, transparent 14%, transparent 72%, rgba(10, 10, 12, 1) 100%),
    linear-gradient(to right, rgba(10, 10, 12, 0.98) 0%, transparent 18%, transparent 82%, rgba(10, 10, 12, 0.98) 100%);
  pointer-events: none;
}
.final-cta__headline { margin-bottom: 20px; }
.final-cta__sub {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  line-height: 1.7;
}
.final-cta__email {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.final-cta__email a { color: var(--accent-purple); }

/* ============================================================
   FOOTER  (homepage-clone exact copy)
   ============================================================ */
.footer {
  padding: clamp(4rem, 8vh, 6rem) 0 2rem;
  border-top: 1px solid hsl(0 0% 100% / 0.04);
  background: linear-gradient(180deg, hsl(260 5% 7%) 0%, var(--bg-deep) 100%);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.footer__brand {
  text-align: center;
}
.footer__wordmark {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-primary);
  display: block;
  margin-bottom: 0.5rem;
}
.footer__tagline {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}
.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.25rem;
}
.footer__nav a {
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
}
.footer__nav a:hover {
  color: var(--text-primary);
}
.footer__social {
  display: flex;
  gap: 2rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-tertiary);
  transition: color 0.3s ease;
}
.footer__social-link:hover {
  color: var(--lavender);
}
.footer__social-link svg {
  flex-shrink: 0;
}
.footer__contact-line {
  padding-top: 1.25rem;
  border-top: 1px solid hsl(0 0% 100% / 0.04);
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.footer__email {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
  transition: color 0.3s ease;
}
.footer__email:hover {
  color: var(--gold);
}
.footer__inquiries {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  letter-spacing: 0.04em;
}
.footer__bottom {
  padding-top: 0.75rem;
  text-align: center;
}
.footer__bottom span {
  font-size: 0.6875rem;
  color: var(--text-tertiary);
  letter-spacing: 0.02em;
}

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: linear-gradient(to top, var(--bg-primary) 70%, transparent);
  padding: 16px 24px 24px;
  text-align: center;
}
.sticky-cta .cta-btn { width: 100%; max-width: 400px; }

/* ============================================================
   SCROLL REVEAL (JS-driven)
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger .reveal:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: 240ms; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .kenny-hero__card { flex-direction: column; text-align: center; gap: 28px; padding: 36px 28px; }
  .kenny-hero__photo-wrap { width: 140px; height: 140px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .pricing-card--featured { transform: none; }
  .pricing-card--featured:hover { transform: translateY(-4px); }
  .value-grid { grid-template-columns: 1fr; }
  .schedule-timeline { padding-left: 40px; }
  .schedule-toggle { max-width: 100%; }
  .ticker-item { width: clamp(160px, 28vw, 220px); }
  .footer__social { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 768px) {
  .hero__content {
    max-width: 100%;
  }
  .hero__title {
    max-width: 100%;
    width: 100%;
    font-size: clamp(2rem, 8.4vw, 3.4rem);
    padding: 0 4px;
  }
  .hero__title-line--top,
  .hero__title-line--bottom {
    white-space: normal;
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .site-header__nav {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 24px;
    gap: 0;
    transition: max-height 0.45s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.35s ease,
                padding 0.35s ease;
  }

  .site-header__nav.is-open {
    max-height: 400px;
    opacity: 1;
    padding: 1.5rem 24px;
    gap: 0.25rem;
    background: hsl(240 5% 5% / 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid hsl(0 0% 100% / 0.04);
  }

  .site-header__nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
  }

  .site-header__burger { display: flex; }

  .footer__nav {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }

  .footer__nav a,
  .footer__social-link {
    min-height: 44px;
    display: flex;
    align-items: center;
  }
}

/* Motion.js fallback — if library fails, make hidden elements visible */
.no-motion .wall-card,
.no-motion .audition-letter__photo-wrap,
.no-motion .audition-letter__text-col,
.no-motion .kenny-hero__card--cinematic {
  opacity: 1 !important;
  transform: none !important;
}

@media (max-width: 640px) {
  :root { --section-pad: 72px 16px; }
  .scarcity-banner { font-size: 0.7rem; padding: 8px 16px 10px; }
  .scarcity-banner__text { font-size: 0.64rem; letter-spacing: 0.08em; }
  .hero { padding: 100px 16px 48px; min-height: 90vh; }
  .hero__sub--inline-logos .inline-logo { height: 1.3em; }
  .wall-masonry {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding-bottom: 12px;
  }
  .wall-masonry__col:nth-child(2) { padding-top: 24px; }
  .wall-masonry__col:nth-child(3) { padding-top: 8px; }
  .final-cta__photo-wrap { max-width: 340px; margin-bottom: 28px; }
  .sticky-cta { display: block; }
  .final-cta { padding-bottom: 140px; }
}
