/* ============================================================
   FILMY KAPTAINS — LANDING PAGE STYLESHEET
   Cinematic · Minimal · Credible
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── Design Tokens ────────────────────────────────────────── */
:root {
  /* Colours */
  --c-bg:        #0B0B0D;
  --c-bg-2:      #111114;
  --c-bg-3:      #16161A;
  --c-surface:   #1C1C21;
  --c-border:    rgba(255,255,255,0.08);
  --c-border-md: rgba(255,255,255,0.12);

  --c-gold:      #E8B84B;
  --c-gold-dim:  rgba(232,184,75,0.15);
  --c-gold-glow: rgba(232,184,75,0.08);

  --c-text:      #F2F1EC;
  --c-text-2:    #A8A8B0;
  --c-text-3:    #6B6B75;

  /* Typography */
  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Inter', system-ui, sans-serif;
  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  2rem;
  --space-lg:  4rem;
  --space-xl:  6rem;
  --space-2xl: 8rem;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;

  /* Transitions */
  --t-fast:   150ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-med:    300ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-slow:   500ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Layout */
  --max-w: 1140px;
  --nav-h: 72px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { 
  scroll-behavior: smooth; 
  font-size: 16px; 
  overflow-x: clip;
  max-width: 100%;
}
body {
  background-color: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: clip;
  max-width: 100%;
  width: 100%;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Utility: Reduced Motion ──────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* ── Container ────────────────────────────────────────────── */
.sliced-waves-container {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1; /* Above basic glow, below grid lines */
}

.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── Eyebrow Label ────────────────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1rem;
}

/* ── Section Divider ──────────────────────────────────────── */
.section-divider {
  width: 40px;
  height: 2px;
  background: var(--c-gold);
  margin: 1.25rem 0;
  border-radius: 2px;
}
.section-divider.centered { margin-inline: auto; }

/* ── Reveal Animation ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
.reveal.delay-4 { transition-delay: 0.4s; }
.reveal.delay-5 { transition-delay: 0.5s; }
.reveal.delay-6 { transition-delay: 0.6s; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.9rem 1.25rem;
  border-radius: var(--r-sm);
  transition: transform var(--t-spring), box-shadow var(--t-med), background var(--t-fast);
  position: relative;
  overflow: hidden;
  white-space: normal;
  line-height: 1.4;
  text-align: center;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t-fast);
}
.btn:hover::after { background: rgba(255,255,255,0.06); }
.btn:active { transform: scale(0.97) !important; }

.btn-primary {
  background-color: var(--c-gold);
  color: #0B0B0D;
  border: 2px solid var(--c-gold);
  border-radius: 10px;
  box-shadow: 5px 5px 0px rgba(232, 184, 75, 0.4);
}
.btn-primary:hover {
  background-color: transparent;
  color: var(--c-gold);
  border: 2px solid var(--c-gold);
  box-shadow: 5px 5px 0px var(--c-gold);
  transform: translateY(-2px);
}
.btn-primary:active {
  background-color: var(--c-gold);
  color: #0B0B0D;
  box-shadow: none;
  transform: translateY(4px) !important;
}

.btn-outline {
  background: transparent;
  color: var(--c-gold);
  border: 1.5px solid var(--c-gold);
}
.btn-outline:hover {
  background: var(--c-gold-dim);
  transform: translateY(-2px);
}

.btn-lg { padding: 1.1rem 2.5rem; font-size: 0.95rem; }
.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.75rem; }

/* ============================================================
   NAVBAR CTA BUTTON — UIVERSE ANIMATED FOLD
   ============================================================ */
.btn-nav-uiverse {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  overflow: hidden;
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.01em;
  color: #0B0B0D;
  background-color: var(--c-gold);
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(232, 184, 75, 0.25);
}

.btn-nav-uiverse .uiverse-corner-tr {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  transition: all 0.5s ease-in-out;
  background-color: #c4962c;
  border-radius: 3px;
  pointer-events: none;
  z-index: 2;
}

.btn-nav-uiverse .uiverse-corner-tr .uiverse-fold {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.25rem;
  height: 1.25rem;
  transform: rotate(45deg) translate(50%, -50%);
  background-color: #0d0d10;
}

.btn-nav-uiverse:hover .uiverse-corner-tr {
  margin-right: -1rem;
  margin-top: -1rem;
}

.btn-nav-uiverse .uiverse-corner-bl {
  position: absolute;
  bottom: 0;
  left: 0;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  transform: rotate(180deg);
  transition: all 0.5s ease-in-out;
  background-color: #c4962c;
  border-radius: 3px;
  pointer-events: none;
  z-index: 2;
}

.btn-nav-uiverse .uiverse-corner-bl .uiverse-fold {
  position: absolute;
  top: 0;
  right: 0;
  width: 1.25rem;
  height: 1.25rem;
  transform: rotate(45deg) translate(50%, -50%);
  background-color: #0d0d10;
}

.btn-nav-uiverse:hover .uiverse-corner-bl {
  margin-left: -1rem;
  margin-bottom: -1rem;
}

.btn-nav-uiverse .uiverse-slide-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease-in-out 0.15s;
  transform: translateX(-100%);
  background-color: #ffffff;
  border-radius: 8px;
  pointer-events: none;
  z-index: 1;
}

.btn-nav-uiverse:hover .uiverse-slide-bg {
  transform: translateX(0);
}

.btn-nav-uiverse .uiverse-text {
  position: relative;
  z-index: 3;
  width: 100%;
  text-align: center;
  color: #0B0B0D;
  transition: color 0.3s ease;
}

/* ── Noise Texture Overlay ────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  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)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-h);
  background: rgba(11, 11, 13, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: height var(--t-med), background var(--t-med), border-color var(--t-med);
}
#site-header.scrolled {
  height: 60px;
  background: rgba(11, 11, 13, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--c-border-md);
}
.nav-container {
  width: 100%;
  padding-inline: clamp(1.5rem, 4vw, 6rem);
  height: 100%;
}
.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}
.nav-logo-icon { width: 32px; height: 32px; flex-shrink: 0; }
.nav-logo-text {
  font-family: var(--f-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: 0.01em;
}
.nav-logo-text span { color: var(--c-gold); }

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2vw, 2.25rem);
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-2);
  transition: color var(--t-fast);
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--c-text);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1.5px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-med);
}
.nav-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-links a.active::after {
  transform: scaleX(1);
  background-color: var(--c-gold);
}

.nav-cta { margin-left: auto; }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 1001;
  flex-shrink: 0;
  transition: background var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}

.nav-hamburger:hover {
  background: rgba(232, 184, 75, 0.1);
  border-color: rgba(232, 184, 75, 0.4);
  transform: scale(1.05);
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-gold);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  transform-origin: center;
}

/* Hamburger animation to perfect X */
.nav-hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile nav drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 2.5rem;
  padding: calc(var(--nav-h) + 2.5rem) 2rem 4rem;
  background: rgba(11, 11, 13, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 1000;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease, visibility 0s linear 0.4s;
}

.nav-drawer.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.3s ease, visibility 0s linear 0s;
}

.nav-drawer a {
  display: block;
  font-size: 1.2rem;
  font-family: var(--f-display);
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--c-text);
  padding: 0.5rem 0;
  transition: color var(--t-fast);
}

.nav-drawer a:hover,
.nav-drawer a.active {
  color: var(--c-gold);
}

@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

@media (max-width: 480px) {
  .nav-container { padding-inline: 1rem; }
  .nav-hamburger { width: 42px; height: 42px; }
  .nav-drawer { padding-inline: 1.5rem; gap: 2rem; }
  .nav-drawer a { font-size: 1.15rem; }
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--nav-h);
  position: relative;
  overflow: hidden;
}

/* Cinematic background elements */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: #0B0B0D;
}

/* WebGL Volumetric Light Rays (Single authentic spotlight beam) */
.hero-light-rays-container {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  mix-blend-mode: screen;
  opacity: 0.95;
}

/* Top-Left Cinema Stage Spotlight Lamp */
.hero-stage-spotlight {
  position: absolute;
  top: clamp(6px, 1.2vw, 16px);
  left: clamp(6px, 1.2vw, 16px);
  width: clamp(100px, 13vw, 175px);
  pointer-events: none;
  z-index: 6;
  filter: drop-shadow(0 15px 30px rgba(0,0,0,0.85));
  animation: spotlight-entrance 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.spotlight-lamp-img {
  width: 100%;
  height: auto;
  display: block;
  transform: rotate(4deg);
  filter: drop-shadow(0 0 20px rgba(232, 184, 75, 0.35));
}

.spotlight-lens-flare {
  position: absolute;
  top: 52%;
  left: 52%;
  transform: translate(-50%, -50%);
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 250, 235, 1) 0%, rgba(232, 184, 75, 0.8) 35%, rgba(232, 184, 75, 0.2) 65%, transparent 75%);
  filter: blur(10px);
  mix-blend-mode: screen;
  animation: lens-flare-pulse 3s ease-in-out infinite alternate;
}

@keyframes lens-flare-pulse {
  0%   { opacity: 0.7; transform: translate(-50%, -50%) scale(0.9); }
  50%  { opacity: 1.0; transform: translate(-50%, -50%) scale(1.15); }
  100% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.95); }
}

@keyframes spotlight-entrance {
  0%   { opacity: 0; transform: translate(-20px, -20px); }
  100% { opacity: 1; transform: translate(0, 0); }
}

/* Stage Screen Inner & Framing */
.hero-inner.hero-stage-inner {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: clamp(5rem, 16vh, 10rem);
  padding-bottom: clamp(80px, 14vh, 180px);
  margin-top: 0;
  width: 100%;
}

/* Main Title: Mimics original Unlock the Secrets line (White Bold + Gold Italic accent) */
.hero-filmcraft-title {
  position: relative;
  z-index: 1;
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5.2vw, 4.2rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  text-shadow: 0 4px 35px rgba(0, 0, 0, 0.9), 0 0 25px rgba(232, 184, 75, 0.25);
  margin-bottom: 1.25rem;
  padding-bottom: 0.12em;
  text-align: center;
}

.hero-filmcraft-title em {
  font-style: italic;
  font-weight: 700;
  color: var(--c-gold);
  text-shadow: 0 0 25px rgba(232, 184, 75, 0.55);
}

.filmcraft-byline {
  font-family: var(--f-display);
  font-size: clamp(0.9rem, 2vw, 1.25rem);
  font-style: italic;
  font-weight: 400;
  color: var(--c-text);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.8);
  letter-spacing: 0.04em;
  margin-top: 0.35rem;
  display: block;
}

/* Logo-style byline: white "Filmy" + gold "Kaptains" */
.filmcraft-byline-filmy {
  color: var(--c-text);
}
.filmcraft-byline-kaptains {
  color: var(--c-gold);
  text-shadow: 0 0 20px rgba(232, 184, 75, 0.5);
}

/* Subheading: Mimics original heading style (All Gold Italic) */
p.stage-headline {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 3.8vw, 2.4rem);
  font-style: italic;
  font-weight: 700;
  line-height: 1.25;
  color: var(--c-gold);
  text-shadow: 0 0 30px rgba(232, 184, 75, 0.55), 0 2px 20px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
  margin-top: 0;
  text-align: center;
}

p.stage-headline em {
  font-style: italic;
  font-weight: 700;
  color: var(--c-gold);
  text-shadow: 0 0 30px rgba(232, 184, 75, 0.55), 0 2px 20px rgba(0, 0, 0, 0.8);
}

.stage-screen {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stage-glow-spot {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(650px, 90vw);
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(232, 184, 75, 0.18) 0%, rgba(232, 184, 75, 0.05) 50%, transparent 75%);
  filter: blur(35px);
  pointer-events: none;
  z-index: 0;
}

.stage-headline {
  position: relative;
  z-index: 1;
  font-family: var(--f-display);
  font-size: clamp(2.2rem, 5.2vw, 4.2rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.015em;
  color: #FFFFFF;
  text-shadow: 0 4px 35px rgba(0, 0, 0, 0.9), 0 0 25px rgba(232, 184, 75, 0.25);
  margin-bottom: 1.5rem;
  padding-bottom: 0.12em;
}

.hero-subtext {
  font-family: var(--f-body);
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 500;
  color: rgba(240, 238, 233, 0.85);
  letter-spacing: 0.03em;
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 1.75rem;
  line-height: 1.6;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.85);
  position: relative;
  z-index: 2;
}

/* Stunning 35mm Gold Film Strip Timeline in Hero Section */
.hero-film-timeline {
  position: relative;
  width: 100%;
  max-width: 840px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  padding: 0.75rem 1.25rem;
  background: linear-gradient(135deg, rgba(18, 18, 24, 0.85) 0%, rgba(10, 10, 14, 0.92) 100%);
  border: 1px solid rgba(232, 184, 75, 0.35);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.85), inset 0 0 20px rgba(232, 184, 75, 0.08);
  overflow: hidden;
  z-index: 2;
}

/* 35mm Film Sprocket Perforations Along Top & Bottom */
.film-sprockets {
  height: 8px;
  width: 100%;
  background-image: repeating-linear-gradient(
    90deg,
    rgba(232, 184, 75, 0.5) 0px,
    rgba(232, 184, 75, 0.5) 6px,
    transparent 6px,
    transparent 16px
  );
  opacity: 0.65;
}
.film-sprockets.top {
  margin-bottom: 0.75rem;
}
.film-sprockets.bottom {
  margin-top: 0.75rem;
}

/* Timeline Track */
.timeline-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  position: relative;
}

/* Node Frame */
.timeline-node {
  flex: 1;
  display: flex;
  justify-content: center;
}

.node-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.6rem 0.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(232, 184, 75, 0.2);
  border-radius: 8px;
  min-width: 95px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
  position: relative;
}

.node-frame:hover {
  background: rgba(232, 184, 75, 0.14);
  border-color: rgba(232, 184, 75, 0.65);
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 8px 22px rgba(232, 184, 75, 0.3);
}

.node-num {
  font-family: var(--f-display);
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.25rem;
}

.node-icon {
  color: var(--c-gold);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.node-frame:hover .node-icon {
  transform: scale(1.15);
}

.node-title {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #F0EEE9;
  white-space: nowrap;
}

/* Connecting Line & Arrows */
.timeline-connector {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: rgba(232, 184, 75, 0.6);
  font-size: 0.65rem;
  flex-shrink: 0;
}

.connector-line {
  width: 14px;
  height: 1.5px;
  background: linear-gradient(90deg, rgba(232, 184, 75, 0.3), rgba(232, 184, 75, 0.8));
}

.connector-arrow {
  font-size: 0.6rem;
  animation: pulse-arrow 2s infinite alternate;
}

@keyframes pulse-arrow {
  0% { opacity: 0.4; transform: translateX(0); }
  100% { opacity: 1; transform: translateX(3px); color: var(--c-gold); }
}

.stage-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-gold);
  text-shadow: 0 0 30px rgba(232, 184, 75, 0.5), 0 2px 20px rgba(0, 0, 0, 0.8);
}

.stage-br {
  display: block;
}

/* Single Small Stage Action Button */
.stage-action {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease 0.6s, transform 0.7s ease 0.6s;
}
.stage-action.in {
  opacity: 1;
  transform: translateY(0);
}

.btn-stage-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.65rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #0B0B0D;
  background: linear-gradient(135deg, #F9DE8E 0%, #E8B84B 50%, #C49226 100%);
  border: 1px solid rgba(255, 235, 175, 0.6);
  border-radius: 100px;
  box-shadow: 0 6px 24px rgba(232, 184, 75, 0.35), 0 2px 6px rgba(0, 0, 0, 0.5);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.25s ease, background 0.25s ease;
}

.btn-stage-action:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 10px 32px rgba(232, 184, 75, 0.55), 0 3px 10px rgba(0, 0, 0, 0.6);
  color: #0B0B0D;
}

.btn-stage-action:active {
  transform: translateY(0) scale(0.99);
}

.stage-btn-icon {
  flex-shrink: 0;
  color: #0B0B0D;
}

.stage-btn-text {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.stage-btn-arrow {
  display: inline-block;
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.btn-stage-action:hover .stage-btn-arrow {
  transform: translateX(3px);
}

/* Overhead Theater Stage Drapes */
.hero-drapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(160px, 28vh, 360px);
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.hero-drapes-img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.95));
}

/* Bottom Cinema Audience Seats */
.hero-cinema-seats {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  line-height: 0;
  overflow: hidden;
}

.cinema-seats-img {
  width: 100%;
  max-width: 1650px;
  height: auto;
  max-height: clamp(120px, 20vh, 230px);
  object-fit: cover;
  object-position: top center;
  filter: brightness(0.92) contrast(1.15) saturate(1.12);
  opacity: 1;
  mask-image: linear-gradient(to top, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 80%, rgba(0,0,0,0) 100%);
}

.seats-floor-blend {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35px;
  background: linear-gradient(to bottom, transparent 0%, rgba(11,11,13,0.7) 60%, var(--c-bg) 100%);
  z-index: 6;
}

@keyframes pulse-glow {
  from { transform: scale(1) translate(0,0); opacity: 0.7; }
  to   { transform: scale(1.15) translate(20px, -20px); opacity: 1; }
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: var(--space-xl);
  padding-bottom: var(--space-xl);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--c-gold-dim);
  border: 1px solid rgba(232,184,75,0.25);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 2rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Stagger-in headline words */
.hero-headline {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-text);
  margin-bottom: 1.5rem;
  overflow: visible;
  padding-bottom: 0.15em;
}
.hero-headline em {
  font-style: italic;
  color: var(--c-gold);
}
.word-wrap {
  overflow: hidden;
  display: inline-block;
  vertical-align: bottom;
  padding-bottom: 0.18em;
  margin-bottom: -0.18em;
}
.word {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.7s ease;
}
.word.in { transform: translateY(0); opacity: 1; }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: var(--c-text-2);
  max-width: 620px;
  margin-bottom: 2rem;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}
.hero-sub.in { opacity: 1; transform: translateY(0); }

.hero-pipeline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.65s, transform 0.6s ease 0.65s;
}
.hero-pipeline.in { opacity: 1; transform: translateY(0); }
.pipeline-step {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-gold);
  background: var(--c-gold-dim);
  border: 1px solid rgba(232,184,75,0.2);
  border-radius: 4px;
  padding: 0.25rem 0.6rem;
}
.pipeline-arrow {
  color: var(--c-text-3);
  font-size: 0.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.8s, transform 0.6s ease 0.8s;
}
.hero-actions.in { opacity: 1; transform: translateY(0); }

/* Event Details Card */
.hero-event-card {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border-md);
  border-radius: var(--r-md);
  padding: 1.25rem 1.75rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease 0.95s, transform 0.6s ease 0.95s;
}
.hero-event-card.in { opacity: 1; transform: translateY(0); }

/* Film Strip Outer Section Wrapper */
.film-strip-section {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-top: 3.5rem;
  background: #060608;
  border-top: 3px solid #1C1C24;
  border-bottom: 3px solid #1C1C24;
  padding-block: 2.2rem;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.95);
  overflow: hidden;
}

/* Continuous 35mm Sprocket Perforations (Top & Bottom Track Margins) */
.film-strip-section::before,
.film-strip-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 20px;
  z-index: 5;
  pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg,
    #181820 0px,
    #181820 12px,
    #060608 12px,
    #060608 28px
  );
  background-size: 28px 20px;
  background-repeat: repeat-x;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.8);
}
.film-strip-section::before {
  top: 0;
  border-bottom: 1.5px solid rgba(255, 255, 255, 0.1);
}
.film-strip-section::after {
  bottom: 0;
  border-top: 1.5px solid rgba(255, 255, 255, 0.1);
}

/* Rotating Vintage Film Reel Wheel (Half-exposed on Left Edge) */
.reel-spinner-container {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
  width: clamp(420px, 48vw, 560px);
  height: clamp(420px, 48vw, 560px);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(12px 0 35px rgba(0, 0, 0, 0.95)) drop-shadow(0 0 25px rgba(232, 184, 75, 0.45));
}

.rotating-film-reel {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: spin-film-reel 24s linear infinite;
  transform-origin: center center;
}

@keyframes spin-film-reel {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.productions-showcase {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 2rem;
  padding: 0.5rem 0;
  width: 100%;
  padding-left: clamp(220px, 24vw, 290px); /* Unspools directly out from the large spinning reel wheel */
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 94%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 94%, transparent);
}

.productions-track {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  min-width: 100%;
  animation: scroll-productions 50s linear infinite;
}

.productions-showcase:hover .productions-track {
  animation-play-state: paused;
}

/* Authentic 35mm Movie Frame Cell */
.prod-card {
  flex-shrink: 0;
  width: 220px;
  height: 320px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #0D0D11;
  border: 4px solid #181820;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  cursor: pointer;
}

/* Film Frame Index Line Top */
.prod-card::before {
  content: '▶ EASTMAN 35MM';
  position: absolute;
  top: 5px;
  left: 10px;
  font-family: var(--f-body);
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--c-gold);
  z-index: 3;
  pointer-events: none;
  opacity: 0.75;
}

.prod-card:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: rgba(232, 184, 75, 0.75);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.85), 0 0 28px rgba(232, 184, 75, 0.3);
}

.prod-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.prod-card:hover img {
  transform: scale(1.06);
}

.prod-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.2rem 1rem 0.85rem;
  background: linear-gradient(to top, rgba(11, 11, 13, 0.96) 0%, rgba(11, 11, 13, 0.75) 65%, transparent 100%);
  z-index: 2;
}

.prod-title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

.prod-studio {
  font-size: 0.75rem;
  color: var(--c-text-2);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@keyframes scroll-productions {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 2rem));
  }
}

@media (max-width: 768px) {
  .hero-film-timeline {
    max-width: 95vw;
    padding: 0.65rem 0.75rem;
  }
  .timeline-track {
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 0.25rem;
  }
  .timeline-track::-webkit-scrollbar {
    display: none;
  }
  .node-frame {
    min-width: 80px;
    padding: 0.5rem 0.35rem;
  }
  .node-title {
    font-size: 0.62rem;
  }

  .film-strip-section {
    margin-top: 2rem;
    padding-block: 1.75rem;
  }
  .reel-spinner-container {
    left: 0;
    width: 280px;
    height: 280px;
  }
  .productions-showcase {
    gap: 1.25rem;
    padding-left: 140px;
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  }
  .productions-track {
    gap: 1.25rem;
  }
  .prod-card {
    width: 170px;
  }
}

/* ============================================================
   SECTION: INDUSTRY LANGUAGE PUZZLE
   ============================================================ */
#industry-language {
  padding-block: var(--space-xl);
  background: var(--c-bg);
  position: relative;
}
.industry-heading {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 3.5rem;
}
.puzzle-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.85rem 1.15rem;
  max-width: 920px;
  margin: 3rem auto 3.5rem;
  position: relative;
  padding: 0 1rem;
}
.puzzle-piece {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem; 
  background-color: var(--c-surface);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text);
  user-select: none;
  cursor: default;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

.puzzle-piece:hover {
  transform: translateY(-3px);
  background-color: rgba(232, 184, 75, 0.12);
  border-color: rgba(232, 184, 75, 0.5);
  color: var(--c-gold);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5), 0 0 15px rgba(232, 184, 75, 0.2);
}

/* Solved / illuminated state when trigger is hovered */
.puzzle-container.solved .puzzle-piece {
  color: var(--c-gold);
  border-color: rgba(232, 184, 75, 0.45);
  background-color: rgba(232, 184, 75, 0.1);
  box-shadow: 0 4px 18px rgba(232, 184, 75, 0.2);
  transform: translateY(-2px);
}
.puzzle-caption {
  text-align: center;
  margin-top: 2.25rem;
  font-family: var(--f-display);
}
.puzzle-caption-intro {
  display: block;
  font-size: clamp(1.25rem, 3.5vw, 1.8rem);
  font-style: italic;
  color: rgba(242, 241, 236, 0.88);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.puzzle-trigger {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 4.5vw, 2.5rem);
  font-style: italic;
  font-weight: 700;
  color: var(--c-gold);
  cursor: pointer;
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 18px rgba(232, 184, 75, 0.45);
  transition: text-shadow var(--t-fast);
}
.puzzle-trigger:hover {
  text-shadow: 0 0 16px rgba(232, 184, 75, 0.7);
}
.puzzle-trigger::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background-color: var(--c-gold);
  transform: scaleX(0.4);
  transition: transform var(--t-med);
}
.puzzle-trigger:hover::after {
  transform: scaleX(1);
}

/* ============================================================
   PROBLEM / HOOK SECTION
   ============================================================ */
#problem {
  padding-block: var(--space-xl);
  background: var(--c-bg-2);
  position: relative;
}
#problem::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border-md), transparent);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.problem-scene {
  position: relative;
  overflow: visible;
  padding-top: 1.5rem;
}
.clapper-overlay-asset {
  position: absolute;
  top: -32px;
  left: -28px;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.85));
}
.clapper-asset-img {
  width: 140px;
  height: auto;
  transform: rotate(-14deg);
  transform-origin: top left;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.problem-scene:hover .clapper-asset-img {
  transform: rotate(-8deg) scale(1.05);
}

.problem-scene-card.retro-cinema-slate {
  background: linear-gradient(145deg, #16161B 0%, #0E0E12 100%);
  border: 1px solid rgba(232, 184, 75, 0.35);
  border-radius: var(--r-md);
  padding: 2.25rem 1.75rem 1.75rem 1.75rem;
  position: relative;
  overflow: visible;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.65), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}
.problem-scene-card.retro-cinema-slate::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-gold), #FFF 50%, var(--c-gold));
  border-radius: var(--r-md) var(--r-md) 0 0;
}
.slate-top-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 2px dashed rgba(232, 184, 75, 0.3);
  padding-bottom: 0.85rem;
  margin-bottom: 1.25rem;
  margin-top: 0.5rem;
}
.slate-tag {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
  background: rgba(232, 184, 75, 0.12);
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  border: 1px solid rgba(232, 184, 75, 0.25);
}
.slate-code {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(240, 238, 233, 0.7);
}

.scene-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.scene-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--c-text-2);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--c-border);
  transition: color var(--t-fast);
}
.scene-item:last-child { border-bottom: none; }
.scene-item .icon { color: var(--c-gold); flex-shrink: 0; margin-top: 2px; }
.scene-item strong { color: var(--c-text); }

.problem-you-card {
  margin-top: 1rem;
  background: rgba(232,184,75,0.06);
  border: 1px solid rgba(232,184,75,0.2);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
  color: var(--c-text);
  font-style: italic;
  line-height: 1.7;
}

.problem-copy h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.problem-copy p {
  font-size: 0.95rem;
  color: var(--c-text-2);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.problem-copy .highlight {
  color: var(--c-gold);
  font-weight: 600;
}

@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ============================================================
   WHAT YOU'LL LEARN — BENTO GRID
   ============================================================ */
#learn {
  padding-block: var(--space-xl);
  background: var(--c-bg);
}
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.22;
  padding-bottom: 0.08em;
}

.clapper-card {
  background: #141417;
  border: 1px solid rgba(232, 184, 75, 0.35);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.clapper-card:hover {
  opacity: 0.75;
  border-color: rgba(232, 184, 75, 0.35);
}

/* Active Clapperboard In Spotlight */
.clapper-card.active {
  opacity: 1;
  filter: none;
  transform: scale(1);
  border-color: rgba(232, 184, 75, 0.6);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.75), 0 0 28px rgba(232, 184, 75, 0.2);
}

.clapper-top {
  width: 100%;
  height: 28px;
  background: repeating-linear-gradient(
    135deg,
    #111114 0px,
    #111114 14px,
    #eae3d2 14px,
    #eae3d2 28px
  );
  border-bottom: 2px solid #111114;
  position: relative;
  box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.4);
}

.clapper-hinge {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #bbb 30%, #555 80%);
  border: 1.5px solid #222;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

.clapper-body {
  display: flex;
  align-items: flex-start;
  padding: 1.75rem 2rem 2rem;
  gap: 2rem;
  flex: 1;
}

.clapper-take-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 72px;
  padding-top: 0.2rem;
}

.clapper-take-label {
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold);
  margin-bottom: 0.15rem;
}

.clapper-take-num {
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  color: var(--c-gold);
  text-shadow: 0 2px 10px rgba(232, 184, 75, 0.25);
}

.clapper-content-col {
  flex: 1;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: 2rem;
}

.clapper-title {
  font-family: var(--f-body);
  font-size: 1.12rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-text);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.clapper-desc {
  font-size: 0.95rem;
  color: var(--c-text-2);
  line-height: 1.75;
}

.clapper-desc strong {
  color: var(--c-text);
  font-weight: 600;
}



/* ============================================================
   POSITIONING BLOCK — "NOT A MOTIVATIONAL SESSION"
   ============================================================ */
#positioning {
  padding-block: var(--space-xl);
  background: var(--c-bg-2);
  text-align: center;
}
.positioning-inner {
  max-width: 760px;
  margin-inline: auto;
}
.positioning-inner h2 {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.positioning-inner h2 em {
  font-style: italic;
  color: var(--c-gold);
}
.positioning-inner p {
  font-size: 0.95rem;
  color: var(--c-text-2);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.positioning-word {
  display: inline-block;
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 0.1em;
  color: var(--c-gold);
  letter-spacing: -0.02em;
  margin-block: 1.5rem;
}
.clarity-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-align: left;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 2rem;
  margin-top: 2rem;
}
.clarity-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--c-text-2);
}
.clarity-item::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  flex-shrink: 0;
  margin-top: 0.55rem;
}

/* ============================================================
   WHO IS THIS FOR
   ============================================================ */
#who {
  padding-block: var(--space-xl);
  background: var(--c-bg);
}
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 1.5rem;
}
.who-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--t-spring), border-color var(--t-med), box-shadow var(--t-med);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.who-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232,184,75,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(232,184,75,0.1);
}
.who-card-icon {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  width: 70px; 
  height: 70px;
  color: rgb(232, 184, 75);
  opacity: 0.55; /* Visible gold icon outline when idle */
  pointer-events: none;
  z-index: 1;
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}

/* Colorize line-art images (GIFs/PNGs) to match warm gold theme (#e8b84b) */
img.who-card-icon {
  filter: brightness(0) saturate(100%) invert(84%) sepia(29%) saturate(1487%) hue-rotate(353deg) brightness(93%) contrast(90%);
}

.who-card:hover .who-card-icon {
  opacity: 1; /* Lit up brightly in gold on hover */
  transform: scale(1.1);
  filter: drop-shadow(0 0 16px rgba(232, 184, 75, 0.85)) brightness(1.25);
}

.who-card:hover img.who-card-icon {
  filter: brightness(0) saturate(100%) invert(84%) sepia(29%) saturate(1487%) hue-rotate(353deg) brightness(115%) contrast(90%) drop-shadow(0 0 14px rgba(232, 184, 75, 0.75));
}

.who-card h3 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  padding-right: 4.75rem; /* Prevents title from ever overlapping the icon */
  position: relative;
  z-index: 2;
}
.who-card p { 
  font-size: 0.88rem; 
  color: var(--c-text-2); 
  line-height: 1.7; 
  padding-right: 4.75rem; /* Prevents paragraph from ever overlapping the icon */
  position: relative;
  z-index: 2;
}

.who-card-highlights {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  position: relative;
  z-index: 2;
}
.who-card-highlights li {
  font-size: 0.82rem;
  color: var(--c-gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}
.who-card-highlights li::before {
  content: "✦";
  font-size: 0.75rem;
  color: var(--c-gold);
}

@media (max-width: 900px) { 
  .who-grid { grid-template-columns: repeat(2, 1fr); } 
  .who-card:nth-child(1), .who-card:nth-child(2), .who-card:nth-child(3), .who-card:nth-child(4), .who-card:nth-child(5), .who-card:nth-child(6) {
    grid-column: span 1; grid-row: span 1; padding: 1.75rem;
  }
  .who-card:nth-child(6) { flex-direction: column; align-items: flex-start; gap: 0; }
  .who-card:nth-child(6) .who-card-icon { margin-bottom: 0; top: 1rem; right: 1rem; }
}
@media (max-width: 520px) { 
  .who-grid { grid-template-columns: 1fr; } 
}



/* ============================================================
   WHY LEARN FROM US
   ============================================================ */
#why {
  padding-block: var(--space-xl);
  background: var(--c-bg);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  display: flex;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  position: relative;
  overflow: hidden;
  transition: transform var(--t-spring), border-color var(--t-med);
}
.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(232,184,75,0.25);
}
.why-card-num {
  font-family: var(--f-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(232,184,75,0.1);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5ch;
}
.why-card-body h3 {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.why-card-body p { font-size: 0.85rem; color: var(--c-text-2); line-height: 1.7; }

@media (max-width: 700px) { .why-grid { grid-template-columns: 1fr; } }

/* ============================================================
   MENTOR SECTION
   ============================================================ */
#mentor {
  padding-block: var(--space-xl);
  background: var(--c-bg-2);
  position: relative;
}
#mentor::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border-md), transparent);
}
.mentor-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}
.mentor-photo-wrap {
  position: relative;
}
/* TODO: Replace placeholder with Gautam Sharma's actual photo */
.mentor-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--c-text-3);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}
.mentor-photo::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-gold), transparent);
}
.mentor-photo-icon { color: var(--c-text-3); opacity: 0.4; }

.mentor-badge {
  position: absolute;
  bottom: -12px; right: -12px;
  background: var(--c-gold);
  color: #0B0B0D;
  border-radius: var(--r-sm);
  padding: 0.75rem 1rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.4;
}

.mentor-info h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.mentor-info .mentor-title {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 2rem;
}
.mentor-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
}
.stat-item { display: flex; flex-direction: column; gap: 0.25rem; }
.stat-num {
  font-family: var(--f-display);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-3);
}
.mentor-bio p {
  font-size: 0.92rem;
  color: var(--c-text-2);
  line-height: 1.85;
  margin-bottom: 1rem;
}
.mentor-bio p:last-child { margin-bottom: 0; }

@media (max-width: 900px) {
  .mentor-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mentor-photo { aspect-ratio: 16/9; max-width: 360px; }
  .mentor-img { height: auto; transform: none; aspect-ratio: auto; object-position: center; }
}

.mentor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% 25%;
  transform: scale(1.4);
  transform-origin: 20% 25%;
  border-radius: inherit;
  display: block;
}

/* ============================================================
   WHAT YOU SHOULD EXPECT (CHECKLIST)
   ============================================================ */
#expect {
  padding-block: var(--space-xl);
  background: var(--c-bg);
}
.expect-list {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.expect-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--c-border);
}
.expect-item:last-child { border-bottom: none; }
.expect-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--c-gold-dim);
  border: 1.5px solid var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.expect-check svg { color: var(--c-gold); }
.expect-item p { font-size: 0.92rem; color: var(--c-text-2); line-height: 1.7; }

/* ============================================================
   WHAT YOU GET — FEATURE GRID
   ============================================================ */
#get {
  padding-block: var(--space-xl);
  background: var(--c-bg-2);
}
.get-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-top: 3rem;
}
.get-card {
  background: var(--c-bg-3);
  padding: 2.25rem 1.75rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: background var(--t-med);
}
.get-card:hover { background: var(--c-surface); }
.get-card-icon {
  width: 52px; height: 52px;
  color: var(--c-gold);
  margin: 0 auto 1.25rem;
}
.get-card h3 {
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.get-card p { font-size: 0.82rem; color: var(--c-text-2); line-height: 1.65; }

@media (max-width: 900px) { .get-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .get-grid { grid-template-columns: 1fr; } }

/* ============================================================
   DIRECTION FLOW DIAGRAM
   ============================================================ */
#direction {
  padding-block: var(--space-xl);
  background: var(--c-bg);
  text-align: center;
}
.direction-intro {
  max-width: 680px;
  margin-inline: auto;
}
.direction-intro h2 {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.direction-intro p {
  font-size: 0.95rem;
  color: var(--c-text-2);
  line-height: 1.85;
  margin-bottom: 1rem;
  max-width: 640px;
  margin-inline: auto;
}
.direction-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  margin-top: 3.5rem;
  max-width: 480px;
  margin-inline: 3.5rem auto;
}
.flow-step {
  width: 100%;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: 1.25rem 2rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text);
  position: relative;
  transition: background var(--t-med), border-color var(--t-med);
}
.flow-step.active {
  background: var(--c-gold-dim);
  border-color: rgba(232,184,75,0.3);
  color: var(--c-gold);
}
.flow-arrow {
  color: var(--c-text-3);
  padding: 0.25rem 0;
  font-size: 1.25rem;
  line-height: 1;
}

/* ============================================================
   TESTIMONIALS (MARQUEE CAROUSEL)
   ============================================================ */
#testimonials {
  padding-block: var(--space-xl);
  background: var(--c-bg-2);
  overflow: hidden;
}
.reviews-marquee {
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: 2rem;
  margin-top: 3rem;
  padding: 1.5rem 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.marquee-track {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 2rem;
  min-width: 100%;
  animation: scroll-reviews 75s linear infinite;
}
.reviews-marquee:hover .marquee-track {
  animation-play-state: paused;
}
.review-card-img {
  flex-shrink: 0;
  width: 560px;
  max-width: 88vw;
  background: #111115;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-card-img:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(232, 184, 75, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.65), 0 0 20px rgba(232, 184, 75, 0.18);
}
.review-card-img img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
@keyframes scroll-reviews {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 2rem));
  }
}



/* ============================================================
   FAQ — ACCORDION
   ============================================================ */
#faq {
  background: var(--c-bg);
  padding-block: clamp(4rem, 8vw, 7rem);
}
.faq-list {
  max-width: 800px;
  margin-inline: auto;
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq-item {
  background: var(--c-bg-2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover {
  border-color: rgba(232, 184, 75, 0.25);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.25rem 1.75rem;
  background: transparent;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--c-text);
  cursor: pointer;
  border: none;
  outline: none;
  transition: color 0.25s ease, background 0.25s ease;
}
.faq-question:hover {
  color: var(--c-gold);
}
.faq-question.open {
  color: var(--c-gold);
  background: rgba(232, 184, 75, 0.04);
}
.faq-chevron {
  flex-shrink: 0;
  color: var(--c-text-2);
  transition: transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), color 0.25s ease;
}
.faq-question.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--c-gold);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  background: rgba(0, 0, 0, 0.25);
}
.faq-answer-inner {
  padding: 1.25rem 1.75rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.faq-answer-inner p {
  margin: 0;
  font-size: 0.95rem;
  color: #c4c4cc;
  line-height: 1.75;
}

/* ============================================================
   FINAL CTA / REGISTRATION
   ============================================================ */
#registration {
  padding-block: clamp(5rem, 10vw, 8rem) clamp(5rem, 10vw, 8rem);
  background: var(--c-bg-2);
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--c-border);
}
#registration::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(232,184,75,0.08), transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 100%, rgba(232,184,75,0.05), transparent 70%);
  pointer-events: none;
}

.registration-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.registration-inner h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
  color: var(--c-text);
}

.registration-inner h2 em {
  color: var(--c-gold);
  font-style: italic;
  font-weight: 600;
}

.registration-inner p {
  font-size: 1rem;
  color: var(--c-text-2);
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 2rem;
}

.registration-price {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
  font-family: var(--f-display);
  margin-bottom: 1.75rem;
  padding: 0.5rem 1.5rem;
  background: rgba(232, 184, 75, 0.06);
  border: 1px solid rgba(232, 184, 75, 0.2);
  border-radius: 100px;
}

.registration-price .price-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-gold);
}

.registration-price .price-amount {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.registration-price .price-note {
  font-size: 0.9rem;
  color: var(--c-text-3);
  font-family: var(--f-body);
  margin-left: 0.35rem;
}

#final-cta-btn {
  margin-bottom: 1.25rem;
}

.registration-note {
  font-size: 0.85rem;
  color: var(--c-text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
}

/* ============================================================
   FOOTER — FIXED REVEAL
   ============================================================ */
.page-content {
  position: relative;
  z-index: 1;
  background: var(--c-bg); /* must be opaque to cover footer while scrolling */
}

#site-footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 0;
  background: #09090b;
  border-top: 1px solid var(--c-border);
  padding-block: 4.5rem 4rem;
}

/* Cinematic top-edge accent line on the footer */
#site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--c-gold) 35%, rgba(232,184,75,0.3) 65%, transparent 100%);
  pointer-events: none;
}

.footer-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding-inline: clamp(1rem, 4vw, 5rem);
}

.footer-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.footer-title span {
  color: var(--c-gold);
}

.footer-inquiries {
  border-left: 1.5px solid var(--c-gold);
  padding-left: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.inquiries-heading {
  font-size: 0.85rem;
  color: var(--c-text-2);
  margin-bottom: 0.35rem;
  letter-spacing: 0.01em;
}

.inquiries-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.inquiry-item {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.inquiry-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--c-gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  min-width: 95px;
}

.inquiry-value {
  font-size: 0.92rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.inquiry-value:hover {
  color: var(--c-gold);
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
  }
  .footer-title {
    white-space: normal;
  }
  .footer-inquiries {
    padding-left: 1.5rem;
  }
  .inquiry-item {
    gap: 1.25rem;
  }
  .inquiry-label {
    min-width: 85px;
  }
}

/* ============================================================
   MOBILE STICKY BOTTOM BAR
   ============================================================ */
#sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 90;
  background: rgba(11,11,13,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--c-border-md);
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
#sticky-bar.visible { transform: translateY(0); }
.sticky-bar-info { display: flex; flex-direction: column; }
.sticky-bar-label { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-text-3); }
.sticky-bar-price {
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
}
.sticky-bar-cta { flex-shrink: 0; }

@media (min-width: 769px) { #sticky-bar { display: none; } }

/* ============================================================
   MID-PAGE CTA STRIP
   ============================================================ */
.cta-strip {
  background: linear-gradient(145deg, #16161B 0%, #0E0E12 100%);
  border-top: 1px solid rgba(232, 184, 75, 0.3);
  border-bottom: 1px solid rgba(232, 184, 75, 0.3);
  padding-block: 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.8);
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 250px;
  background: radial-gradient(circle, rgba(232, 184, 75, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-strip-inner {
  position: relative;
  z-index: 2;
}

.cta-strip-title {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 3.8vw, 2.5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.75rem;
  line-height: 1.25;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.cta-strip-title em {
  color: var(--c-gold);
  font-style: italic;
  text-shadow: 0 2px 16px rgba(232, 184, 75, 0.4);
}

.cta-strip-btn {
  padding: 0.9rem 2.2rem;
  font-size: 0.88rem;
}

/* ============================================================
   SECTION GENERIC PADDING
   ============================================================ */
.section-padded { padding-block: var(--space-xl); }

/* ============================================================
   FOCUS STATES — ACCESSIBILITY
   ============================================================ */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   SCROLLBAR STYLING
   ============================================================ */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-bg); }
::-webkit-scrollbar-thumb { background: var(--c-surface); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--c-text-3); }

/* ============================================================
   SELECTION
   ============================================================ */
::selection { background: rgba(232,184,75,0.25); color: var(--c-text); }


/* ============================================================
   SCROLL EXPAND INTRO
   ============================================================ */
.scroll-expand {
  position: relative;
  width: 100%;
  background: #000;
  z-index: 100;
}

.scroll-expand__track {
  position: relative;
  width: 100%;
  /* The track is tall so we can scroll through it. Height is set via JS. */
}

.scroll-expand__stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  --se-title-size: clamp(3rem, 7.5vw, 6rem);
}

.scroll-expand__frame {
  position: absolute;
  inset: 0;
  clip-path: inset(21% 29% 21% 29% round 24px);
  will-change: clip-path;
}

/* Permanent dark overlay so white text is always visible */
.scroll-expand__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 1;
}

.scroll-expand__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform-origin: center;
  user-select: none;
  -webkit-user-drag: none;
  z-index: 0;
}

.scroll-expand__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.35));
  opacity: 0;
  will-change: opacity;
}

.scroll-expand__title-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}

.scroll-expand__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 0 0.15em 0;
  text-align: center;
  font-size: var(--se-title-size);
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: var(--c-text);
  pointer-events: none;
  will-change: opacity, transform;
  transform-origin: center center;
}

.scroll-expand__title span {
  color: var(--c-gold);
}

.scroll-expand__hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-2);
  pointer-events: none;
  will-change: opacity, transform;
}

/* ============================================================
   BENTO ICON HOVER ANIMATIONS (AUDIENCE SECTION)
   ============================================================ */

/* Base transition setup for all animated SVG parts */
.who-card-icon * {
  transform-box: fill-box;
}

/* 1. Chair (Director) */
.who-card:hover .icon-chair,
.who-card:active .icon-chair {
  animation: chairBounce 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  transform-origin: center bottom;
}
@keyframes chairBounce {
  0% { transform: scale(1) rotate(0deg); }
  25% { transform: scaleY(0.85) scaleX(1.05) rotate(-4deg) translateY(2px); }
  50% { transform: scaleY(1.05) scaleX(0.95) rotate(4deg) translateY(-4px); }
  75% { transform: scale(1) rotate(-1.5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* 2. Camera (Cinematographer) */
.who-card:hover .icon-camera,
.who-card:active .icon-camera {
  animation: cameraTilt 0.7s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  transform-origin: center;
}
@keyframes cameraTilt {
  0% { transform: scale(1) rotate(0deg); }
  25% { transform: scale(1.05) rotate(-10deg) translateY(-2px); }
  50% { transform: scale(1.05) rotate(4deg) translateY(1px); }
  75% { transform: scale(1) rotate(-2deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* 3. Sheet (Assistant Director) */
.sheet-lines line {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.who-card:hover .sheet-lines line,
.who-card:active .sheet-lines line {
  transform: translateX(3px);
}
/* Stagger the lines */
.who-card:hover .sheet-lines line:nth-child(2),
.who-card:active .sheet-lines line:nth-child(2) { transition-delay: 0.05s; }
.who-card:hover .sheet-lines line:nth-child(3),
.who-card:active .sheet-lines line:nth-child(3) { transition-delay: 0.1s; }
.who-card:hover .sheet-lines line:nth-child(4),
.who-card:active .sheet-lines line:nth-child(4) { transition-delay: 0.15s; }

/* 4. Pen (Writers) */
.pen-group {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: 6px 34px; /* Tip of the pen */
}
.who-card:hover .pen-group,
.who-card:active .pen-group {
  transform: rotate(-12deg) scale(1.05);
}

/* 5. Person (Actors) */
.person-eye {
  transition: transform 0.3s ease;
  transform-origin: center;
}
.person-head, .person-body {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.person-smile {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
}
.who-card:hover .person-eye,
.who-card:active .person-eye {
  transform: scaleY(0.1);
}
.who-card:hover .person-head,
.who-card:active .person-head,
.who-card:hover .person-body,
.who-card:active .person-body {
  transform: translateY(-2px);
}
.who-card:hover .person-smile,
.who-card:active .person-smile {
  transform: scale(1.2) translateY(1px);
}

/* 6. Beginner (Beginners) */
.beginner-circle, .beginner-smile, .beginner-sparks {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
}
.icon-beginner {
  transition: color 0.4s ease, filter 0.4s ease;
}
.who-card:hover .icon-beginner,
.who-card:active .icon-beginner {
  color: var(--c-gold);
  filter: drop-shadow(0 0 25px rgba(232, 184, 75, 0.8));
}
.who-card:hover .beginner-circle,
.who-card:active .beginner-circle {
  transform: scale(1.04);
}
.who-card:hover .beginner-smile,
.who-card:active .beginner-smile {
  transform: scale(1.2) translateY(-2px);
}
.who-card:hover .beginner-sparks,
.who-card:active .beginner-sparks {
  transform: scale(1.2) rotate(10deg);
}

/* Fallback for prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .who-card-icon *, .who-card:hover .who-card-icon *, .who-card:active .who-card-icon * {
    transform: none !important;
    transition: none !important;
  }
}

/* ============================================================
   SECTION 15: RESERVATION FORM
   ============================================================ */
#reservation-form {
  padding-block: var(--space-2xl);
  background: var(--c-bg-2);
}
.form-inner {
  max-width: 900px;
  margin: 0 auto;
}
.kaptains-form fieldset {
  border: none;
  padding: 0;
  margin: 0 0 2rem 0;
}
.form-section-title {
  color: var(--c-text);
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  padding-left: 1rem;
  position: relative;
}
.form-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 20px;
  background-color: var(--c-gold);
  border-radius: 2px;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  color: var(--c-text-2);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"] {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  color: var(--c-text);
  padding: 1rem;
  border-radius: var(--r-sm);
  font-family: var(--f-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--t-fast);
}
.form-group input:focus {
  border-color: var(--c-gold);
}
.form-divider {
  border: none;
  border-top: 1px solid var(--c-border);
  margin: 3rem 0;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
}

/* Custom Radio Card Styles */
.radio-card {
  display: block;
  cursor: pointer;
  position: relative;
}
.radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.radio-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  padding: 1rem 1.25rem;
  border-radius: var(--r-sm);
  color: var(--c-text-2);
  transition: all var(--t-fast);
  font-size: 0.95rem;
}
.radio-circle {
  width: 20px;
  height: 20px;
  border: 1px solid var(--c-text-3);
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--t-fast);
}
.radio-card:hover .radio-content {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.02);
}
.radio-card input[type="radio"]:checked + .radio-content {
  border-color: var(--c-gold);
  color: var(--c-text);
  background: var(--c-gold-glow);
}
.radio-card input[type="radio"]:checked + .radio-content .radio-circle {
  border-color: var(--c-gold);
}
.radio-card input[type="radio"]:checked + .radio-content .radio-circle::after {
  content: '';
  width: 10px;
  height: 10px;
  background: var(--c-gold);
  border-radius: 50%;
}

.form-submit-wrapper {
  text-align: center;
  margin-top: 2rem;
}
.btn-submit {
  font-size: 1.1rem;
  padding: 1rem 3rem;
  border-radius: var(--r-sm);
  background: var(--c-gold);
  color: var(--c-bg);
  border: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(232, 184, 75, 0.2);
}
.btn-submit:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 184, 75, 0.3);
}

/* ============================================================
   SCROLL EXPAND COMPONENT
   ============================================================ */
.scroll-expand {
  position: relative;
  width: 100%;
  background: #000;
  z-index: 100;
}
.scroll-expand__track {
  position: relative;
  width: 100%;
}
.scroll-expand__stage {
  position: sticky;
  top: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  --se-title-size: clamp(3rem, 7.5vw, 6rem);
}
.scroll-expand__frame {
  position: absolute;
  inset: 0;
  clip-path: inset(21% 29% 21% 29% round 24px);
  will-change: clip-path;
}
.scroll-expand__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  pointer-events: none;
  z-index: 1;
}
.scroll-expand__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform-origin: center;
  user-select: none;
  -webkit-user-drag: none;
  z-index: 0;
}
.scroll-expand__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.1) 45%, rgba(0, 0, 0, 0.35));
  opacity: 0;
  will-change: opacity;
}
.scroll-expand__title-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 10;
}
.scroll-expand__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 0 0.15em 0;
  text-align: center;
  font-size: var(--se-title-size);
  font-family: var(--f-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.25;
  color: var(--c-text);
  pointer-events: none;
  will-change: opacity, transform;
  transform-origin: center center;
}
.scroll-expand__title span { color: var(--c-gold); }
.scroll-expand__hint {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2rem;
  text-align: center;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-2);
  pointer-events: none;
  will-change: opacity, transform;
}

/* ============================================================
   SPOTLIGHT LAYOUT (Curriculum Original CSS)
   ============================================================ */
.spotlight-layout {
  display: grid;
  grid-template-columns: 1fr 64px 300px;
  gap: 0;
  align-items: start;
  margin-top: 1rem;
}
.spotlight-item {
  min-height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: 3rem;
  padding-right: 2rem;
  border-bottom: 1px solid var(--c-border);
  opacity: 0.2;
  transition: opacity 0.55s ease;
}
.spotlight-item:last-child { border-bottom: none; }
.spotlight-item.ssi-active  { opacity: 1; }
.spotlight-num {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.25rem;
}
.spotlight-item h3 {
  font-family: var(--f-display);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: var(--c-text);
}
.spotlight-item p {
  font-size: 0.97rem;
  color: var(--c-text-2);
  line-height: 1.85;
  max-width: 440px;
}
.spotlight-item em { color: var(--c-gold); font-style: italic; }

.spotlight-rail-col {
  position: sticky;
  top: calc(var(--nav-h) + 12vh);
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 50vh;
  max-height: 400px;
}
.spotlight-rail-line {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: var(--c-border);
  border-radius: 2px;
}
.spotlight-rail-fill {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: var(--c-gold);
  border-radius: 2px;
  height: 0%;
  transition: height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.spotlight-dots {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 1;
  width: 100%;
  align-items: center;
}
.spotlight-dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.dot-pip {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  background: var(--c-bg);
  display: block;
  flex-shrink: 0;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  position: relative;
  z-index: 2;
}
.dot-num {
  position: absolute;
  right: calc(50% + 15px);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--c-text-3);
  transition: color 0.3s;
}
.spotlight-dot.ssd-active .dot-pip {
  border-color: var(--c-gold);
  background: var(--c-gold);
  transform: scale(1.35);
}
.spotlight-dot.ssd-active .dot-num { color: var(--c-gold); }

.spotlight-layout {
  display: grid;
  grid-template-columns: 1fr 64px clamp(300px, 32vw, 420px);
  gap: 0;
  align-items: start;
  margin-top: 1rem;
}
.spotlight-stage-col {
  position: sticky;
  top: calc(var(--nav-h) + 12vh);
  align-self: start;
  padding-left: 1rem;
}
.spotlight-visuals-wrap {
  position: relative;
  min-height: 280px;
}
.clapper-card.spotlight-visual {
  position: absolute;
  top: 0; left: 0; right: 0;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s ease;
  width: 100%;
}
.clapper-card.spotlight-visual.ssv-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.sv-icon {
  width: 40px; height: 40px;
  color: var(--c-gold);
  margin-bottom: 1.25rem;
  display: block;
}
.sv-num {
  display: block;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-3);
  margin-bottom: 0.6rem;
}
.sv-title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--c-text);
  margin-bottom: 0.65rem;
}
.sv-body {
  font-size: 0.8rem;
  color: var(--c-text-2);
  line-height: 1.7;
}

@media (max-width: 900px) {
  .spotlight-layout {
    grid-template-columns: 1fr;
  }
  .spotlight-rail-col,
  .spotlight-stage-col { display: none; }
  .spotlight-item {
    min-height: auto;
    padding-block: 2rem;
    padding-right: 0;
    opacity: 1 !important;
  }
}


/* ============================================================
   RESPONSIVE OVERHAUL (TABLET & MOBILE)
   ============================================================ */
@media (max-width: 1024px) {
  :root {
    --space-xl: 4rem;
    --space-2xl: 6rem;
  }
  .who-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
  }

  body {
    font-size: 16px;
    line-height: 1.65;
  }

  p {
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .section-sub {
    font-size: 1.08rem;
    line-height: 1.65;
    color: rgba(242, 241, 236, 0.9);
  }

  .hero-heading {
    font-size: 3.5rem;
  }
  .hero-sub {
    font-size: 1.15rem;
  }
  h2 {
    font-size: 2.5rem !important;
  }

  .problem-copy {
    text-align: center;
  }
  .problem-copy h2 {
    text-align: center;
  }
  .problem-copy p {
    font-size: 1.08rem;
    line-height: 1.7;
    text-align: center;
  }

  .problem-you-card {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .spotlight-item h3 {
    font-size: 1.65rem;
  }
  .spotlight-item p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(242, 241, 236, 0.88);
  }

  .who-grid {
    grid-template-columns: 1fr;
  }
  .who-card {
    padding: 1.5rem;
  }
  .who-card p {
    font-size: 1.02rem;
    line-height: 1.65;
  }

  .why-card-body p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .expect-item p {
    font-size: 1.05rem;
    line-height: 1.65;
  }

  .get-card p {
    font-size: 1rem;
    line-height: 1.65;
  }

  .mentor-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .mentor-photo {
    aspect-ratio: auto;
    height: 450px;
  }
  .mentor-bio p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(242, 241, 236, 0.92);
  }
  .stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
  }

  .faq-question {
    font-size: 1.08rem;
    padding: 1.15rem 1rem;
  }
  .faq-answer p {
    font-size: 1.02rem;
    line-height: 1.7;
  }

  .pain-text {
    font-size: 1.05rem;
    line-height: 1.6;
  }

  .reviews-marquee {
    margin-top: 2rem;
    gap: 1.25rem;
    -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
    mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  }
  .marquee-track {
    gap: 1.25rem;
  }
  .review-card-img {
    flex: 0 0 clamp(300px, 88vw, 440px);
  }
  .form-row, .form-grid-2 {
    grid-template-columns: 1fr;
  }
  .kaptains-form fieldset {
    margin: 0 0 1.5rem 0;
  }
  .form-divider {
    margin: 2rem 0;
  }
  .btn-submit {
    width: 100%;
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .hero-heading {
    font-size: 2.8rem;
  }
  h2 {
    font-size: 2rem !important;
  }
  p, .spotlight-item p, .problem-copy p, .mentor-bio p {
    font-size: 1.02rem;
  }
  .form-section-title {
    font-size: 1.25rem;
  }
  .hero-bg-glow {
    width: 300px; height: 300px;
  }
  .hero-bg-glow-2 {
    width: 200px; height: 200px;
  }
}

/* ============================================================
   RESTORED UIVERSE BUTTON & MISSING STYLES
   ============================================================ */
.btn-nav-uiverse {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background-color: var(--c-gold);
  color: #0b0b0d;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  border-radius: var(--r-sm);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  overflow: hidden;
}

.uiverse-corner-tr {
  position: absolute;
  top: 0; right: 0;
  display: inline-block;
  width: 1rem; height: 1rem;
  transition: all 0.5s ease-in-out;
  background-color: #c99e3a;
  border-radius: 0.25rem;
}
.btn-nav-uiverse:hover .uiverse-corner-tr {
  margin-right: -1rem;
  margin-top: -1rem;
}

.uiverse-corner-tr .uiverse-cut {
  position: absolute;
  top: 0; right: 0;
  width: 1.25rem; height: 1.25rem;
  transform: rotate(45deg) translate(50%, -50%);
  background-color: var(--c-bg);
}

.uiverse-corner-bl {
  position: absolute;
  bottom: 0; left: 0;
  transform: rotate(180deg);
  display: inline-block;
  width: 1rem; height: 1rem;
  transition: all 0.5s ease-in-out;
  background-color: #c99e3a;
  border-radius: 0.25rem;
}
.btn-nav-uiverse:hover .uiverse-corner-bl {
  margin-left: -1rem;
  margin-bottom: -1rem;
}

.uiverse-corner-bl .uiverse-cut {
  position: absolute;
  top: 0; right: 0;
  width: 1.25rem; height: 1.25rem;
  transform: rotate(45deg) translate(50%, -50%);
  background-color: var(--c-bg);
}

.uiverse-slide-bg {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 100%;
  transition: all 0.5s ease-in-out 0.2s;
  transform: translateX(-100%);
  background-color: #dfb145;
  border-radius: var(--r-sm);
  z-index: 0;
}
.btn-nav-uiverse:hover .uiverse-slide-bg {
  transform: translateX(0);
}

.uiverse-text {
  position: relative;
  width: 100%;
  text-align: center;
  color: #0b0b0d;
  transition: color 0.2s ease-in-out;
  z-index: 10;
  white-space: nowrap;
}

/* Flowchart */
.direction-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 2rem auto;
  max-width: 400px;
}
.flow-step {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--r-sm);
  font-family: var(--f-display);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--c-text-2);
  text-align: center;
  width: 100%;
}
.flow-step.active {
  color: var(--c-gold);
  border-color: var(--c-gold-dim);
  background: rgba(232, 184, 75, 0.05);
}
.flow-arrow {
  margin: 0.5rem 0;
  color: var(--c-text-3);
  font-size: 1.2rem;
}

/* Mobile Hero Stage Responsiveness */
@media (max-width: 768px) {
  .hero-stage-spotlight {
    top: 6px;
    left: 6px;
    width: clamp(80px, 20vw, 110px);
  }
  .hero-inner.hero-stage-inner {
    margin-top: 0;
    padding-top: clamp(4.5rem, 14vh, 7.5rem);
    padding-bottom: clamp(70px, 12vh, 110px);
  }
  .hero-filmcraft-title {
    font-size: clamp(1.4rem, 6.2vw, 2.2rem);
    margin-bottom: 0.9rem;
  }
  .filmcraft-byline {
    font-size: clamp(0.8rem, 3.5vw, 1.05rem);
  }
  p.stage-headline {
    font-size: clamp(1.1rem, 4.8vw, 1.55rem);
    margin-bottom: 0.85rem;
  }
  .stage-br {
    display: inline;
  }
  .cinema-seats-img {
    max-height: clamp(80px, 14vh, 120px);
  }
}

/* ============================================================
   PAIN POINTS & WEBINAR FIT SECTION (#pains)
   ============================================================ */
#pains {
  padding-block: var(--sp-2xl) clamp(6rem, 12vh, 9rem);
  margin-bottom: 4rem;
  background: radial-gradient(ellipse at 50% 20%, rgba(232, 184, 75, 0.07) 0%, rgba(11, 11, 13, 0.95) 75%);
  position: relative;
}

#productions {
  padding-top: clamp(5rem, 10vh, 8rem);
  margin-top: 3rem;
}

.pains-eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.6rem;
}

.pains-container {
  max-width: 900px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.pains-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.pain-item {
  position: relative;
  background: rgba(20, 20, 24, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 184, 75, 0.2);
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.pain-item:hover {
  transform: translateY(-3px);
  border-color: rgba(232, 184, 75, 0.55);
  background: rgba(26, 26, 32, 0.9);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), 0 0 20px rgba(232, 184, 75, 0.15);
}

.pain-item-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(232, 184, 75, 0.12) 0%, rgba(20, 20, 24, 0.85) 100%);
  border-color: rgba(232, 184, 75, 0.4);
  padding: 1.5rem 1.75rem;
}

.pain-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(232, 184, 75, 0.12);
  border: 1px solid rgba(232, 184, 75, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pain-bullet {
  color: var(--c-gold);
  font-size: 0.9rem;
}

.pain-text {
  font-family: var(--f-body);
  font-size: 0.96rem;
  font-weight: 500;
  color: var(--c-text);
  line-height: 1.55;
  margin: 0;
  font-style: italic;
}

/* Standalone Resolution Headline */
.pains-resolution-text {
  text-align: center;
  margin-top: 3.5rem;
  padding-top: 2rem;
  position: relative;
}

.pains-resolution-text::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 140px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-gold), transparent);
}

.resolution-standalone-title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 5.2vw, 3.8rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.95);
  margin: 0;
}

.resolution-standalone-title em {
  color: var(--c-gold);
  font-style: italic;
  text-shadow: 0 2px 20px rgba(232, 184, 75, 0.45);
}

@media (max-width: 768px) {
  .pains-list {
    grid-template-columns: 1fr;
  }
  .pain-item-featured {
    grid-column: auto;
  }
  .pains-resolution-text {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
  }
}

/* ============================================================
   BEHIND THE SCENES POSTER MOSAIC BANNER (#bts-gallery)
   ============================================================ */
#bts-gallery {
  position: relative;
  min-height: clamp(560px, 70vh, 740px);
  padding-block: clamp(5rem, 10vh, 8rem);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0b0b0d;
}

/* Edge-to-Edge Poster Mosaic Background */
.bts-poster-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  opacity: 0.88;
  filter: saturate(1.05) contrast(1.05);
  transition: opacity 0.5s ease, filter 0.5s ease;
}

.bts-mosaic-tile {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bts-mosaic-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#bts-gallery:hover .bts-poster-mosaic {
  opacity: 0.96;
  filter: saturate(1.1) contrast(1.1);
}

/* Light Film Overlay (Not too dark, zero blur) */
.bts-poster-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(11, 11, 13, 0.4) 0%, rgba(11, 11, 13, 0.6) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Centered Hero Text Content */
.bts-poster-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
}

.bts-poster-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(0, 0, 0, 0.9);
  margin-bottom: 0.75rem;
  line-height: 1.15;
}

.bts-poster-tagline {
  font-family: var(--f-display);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 600;
  color: var(--c-gold);
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.9);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .bts-poster-mosaic {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}

/* ============================================================
   REVIEWS CAROUSEL (#testimonials)
   ============================================================ */
.reviews-marquee {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 2.5rem;
  padding-block: 1rem;
  mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 4%, black 96%, transparent);
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  animation: marquee-scroll 42s linear infinite;
  flex-shrink: 0;
}

.reviews-marquee:hover .marquee-track,
.reviews-marquee:active .marquee-track,
.reviews-marquee:focus-within .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.review-card-img {
  flex: 0 0 clamp(420px, 44vw, 580px);
  background: #141417;
  border: 1px solid rgba(232, 184, 75, 0.25);
  border-radius: 16px;
  padding: 0.6rem;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.5);
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review-card-img:hover {
  border-color: rgba(232, 184, 75, 0.6);
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.65), 0 0 24px rgba(232, 184, 75, 0.25);
}

.review-card-img img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: 12px;
}

@media (max-width: 768px) {
  .reviews-marquee {
    margin-top: 1.5rem;
    padding-block: 0.5rem;
    mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 2%, black 98%, transparent);
  }

  .marquee-track {
    gap: 1rem;
  }

  .review-card-img {
    flex: 0 0 88vw;
    padding: 0.35rem;
    border-radius: 14px;
  }

  .review-card-img img {
    border-radius: 10px;
  }
}


/* ============================================================
   WEBINAR DATE & TIME — SIMPLE TEXT TREATMENT
   ============================================================ */
.webinar-schedule {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.35rem auto 1.15rem;
  text-align: center;
  line-height: 1.3;
}

.webinar-schedule-label {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.webinar-schedule-date {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
}

.webinar-schedule-separator {
  color: var(--c-gold);
  font-size: 1.1rem;
}

.webinar-schedule-time {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 2.1vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .webinar-schedule {
    gap: 0.35rem 0.5rem;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
  }

  .webinar-schedule-label {
    width: 100%;
    font-size: 0.62rem;
  }

  .webinar-schedule-date {
    font-size: 1rem;
  }

  .webinar-schedule-time {
    font-size: 1rem;
  }
}

/* ============================================================
   FINAL HERO TYPOGRAPHY — RESPONSIVE & FONT CONSISTENCY
   ------------------------------------------------------------
   Display typography: Cormorant Garamond
   UI/body typography: Inter
   ============================================================ */

/* Desktop — 1025px and above */
.hero-filmcraft-title {
  font-family: var(--f-display);
  font-size: clamp(3rem, 5vw, 4.2rem);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.015em;
  text-align: center;
  max-width: 1100px;
  margin-inline: auto;
}

.filmcraft-byline {
  font-family: var(--f-display);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.3;
  font-weight: 400;
  text-align: center;
}

p.stage-headline,
.stage-headline {
  font-family: var(--f-display);
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.005em;
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}

.webinar-schedule {
  font-family: var(--f-display);
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0.45rem auto 1.2rem;
  text-align: center;
  line-height: 1.3;
}

.webinar-schedule-label {
  font-family: var(--f-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-gold);
}

.webinar-schedule-date,
.webinar-schedule-time {
  font-family: var(--f-display);
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.2;
  color: #fff;
}

.webinar-schedule-separator {
  font-family: var(--f-display);
  color: var(--c-gold);
  font-size: 1.15rem;
  line-height: 1;
}

.hero-subtext,
p.stage-subtext {
  font-family: var(--f-body);
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  line-height: 1.6;
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

/* Tablet — 601px to 1024px */
@media (min-width: 601px) and (max-width: 1024px) {
  .hero-inner.hero-stage-inner {
    padding-top: clamp(5rem, 10vh, 7rem);
    padding-bottom: clamp(5rem, 10vh, 7rem);
  }

  .hero-filmcraft-title {
    font-size: clamp(2.7rem, 6vw, 3.6rem);
    line-height: 1.08;
    max-width: 850px;
  }

  .filmcraft-byline {
    font-size: clamp(1rem, 2.2vw, 1.15rem);
  }

  p.stage-headline,
  .stage-headline {
    font-size: clamp(1.55rem, 4vw, 2.1rem);
    line-height: 1.2;
    max-width: 760px;
  }

  .webinar-schedule-date,
  .webinar-schedule-time {
    font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  }

  .hero-subtext,
  p.stage-subtext {
    font-size: 1rem;
    max-width: 680px;
  }
}

/* Mobile — up to 600px */
@media (max-width: 600px) {
  .hero-inner.hero-stage-inner {
    padding-top: clamp(4.5rem, 13vh, 6.5rem);
    padding-bottom: clamp(4.5rem, 11vh, 7rem);
    padding-inline: 1rem;
  }

  .hero-filmcraft-title {
    font-size: clamp(2rem, 8.2vw, 2.7rem);
    line-height: 1.08;
    letter-spacing: -0.01em;
    max-width: 100%;
    margin-bottom: 0.9rem;
  }

  .filmcraft-byline {
    font-size: clamp(0.95rem, 4vw, 1.1rem);
    line-height: 1.3;
  }

  p.stage-headline,
  .stage-headline {
    font-size: clamp(1.45rem, 6.2vw, 1.95rem);
    line-height: 1.18;
    letter-spacing: 0;
    max-width: 100%;
    margin-bottom: 0.9rem;
  }

  .webinar-schedule {
    gap: 0.4rem 0.55rem;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
    padding-inline: 0.25rem;
  }

  .webinar-schedule-label {
    width: 100%;
    font-family: var(--f-body);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    margin-bottom: 0.05rem;
  }

  .webinar-schedule-date,
  .webinar-schedule-time {
    font-family: var(--f-display);
    font-size: clamp(1.02rem, 4.7vw, 1.2rem);
    font-weight: 700;
    letter-spacing: 0.025em;
    line-height: 1.2;
    white-space: nowrap;
  }

  .webinar-schedule-separator {
    font-size: 1rem;
  }

  .hero-subtext,
  p.stage-subtext {
    font-family: var(--f-body);
    font-size: clamp(1rem, 4.2vw, 1.12rem);
    line-height: 1.55;
    letter-spacing: 0.01em;
    max-width: 100%;
  }
}

/* Very small phones — 360px and below */
@media (max-width: 380px) {
  .hero-filmcraft-title {
    font-size: 1.9rem;
  }

  p.stage-headline,
  .stage-headline {
    font-size: 1.35rem;
  }

  .webinar-schedule-date,
  .webinar-schedule-time {
    font-size: 0.98rem;
  }

  .webinar-schedule-separator {
    font-size: 0.9rem;
  }

  .hero-subtext,
  p.stage-subtext {
    font-size: 0.98rem;
  }
}
