/* ==========================================================================
   FILMAKERS.AI — Landing page styles
   Organised as: variables → fonts → reset → keyframes →
   typography atoms → layout/sections → components → utilities
   ========================================================================== */

/* ===== Variables ===== */
:root {
  --red: rgb(234, 7, 48);
  --red-hover: rgba(200, 5, 40, 0.9);
  --cyan: rgb(0, 210, 230);
}

/* ===== Fonts ===== */
@font-face { font-family: 'MangoGrotesque'; src: url('../fonts/MangoGrotesque-ExtBdIta.ttf') format('truetype'); font-weight: 800; font-style: italic; }
@font-face { font-family: 'Geist'; src: url('../fonts/Geist-Thin.ttf') format('truetype'); font-weight: 100; }
@font-face { font-family: 'Geist'; src: url('../fonts/Geist-Regular.ttf') format('truetype'); font-weight: 400; }
@font-face { font-family: 'Geist'; src: url('../fonts/Geist-Bold.ttf') format('truetype'); font-weight: 700; }
@font-face { font-family: 'Geist'; src: url('../fonts/Geist-ExtraBold.ttf') format('truetype'); font-weight: 800; }
@font-face { font-family: 'Geist'; src: url('../fonts/Geist-Black.ttf') format('truetype'); font-weight: 900; }
@font-face { font-family: 'GeistMono'; src: url('../fonts/GeistMono-Regular.ttf') format('truetype'); font-weight: 400; }
@font-face { font-family: 'GeistMono'; src: url('../fonts/GeistMono-Medium.ttf') format('truetype'); font-weight: 500; }
@font-face { font-family: 'GeistMono'; src: url('../fonts/GeistMono-Bold.ttf') format('truetype'); font-weight: 700; }

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #000000; color: #fff; font-family: 'Geist', sans-serif; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
input, button { font-family: inherit; border: none; }
::selection { background: var(--red); color: #fff; }
input::placeholder { color: rgba(255, 255, 255, 0.28); letter-spacing: 0.12em; }

/* ===== Keyframes ===== */
@keyframes logo-glitch {
  0%,86%,100% { filter: none; transform: translate(0,0); }
  88% { filter: drop-shadow(-3px 0 0 rgba(255,30,80,0.9)) drop-shadow(3px 0 0 rgba(0,228,255,0.9)); transform: translate(-1px,0); }
  90% { filter: drop-shadow(3px 0 0 rgba(255,30,80,0.9)) drop-shadow(-3px 0 0 rgba(0,228,255,0.9)); transform: translate(2px,0); }
  91% { filter: none; transform: translate(0,0); }
  93% { filter: drop-shadow(-2px 0 0 rgba(255,30,80,0.5)) drop-shadow(2px 0 0 rgba(0,228,255,0.5)); transform: translate(-1px,0); }
  95% { filter: none; transform: translate(0,0); }
}
@keyframes title-glitch {
  0%,88%,100% { text-shadow: none; transform: none; }
  90% { text-shadow: -3px 0 0 rgba(234,7,48,0.75), 3px 0 0 rgba(0,220,255,0.75); transform: translate(-1px,0); }
  92% { text-shadow: 3px 0 0 rgba(234,7,48,0.75), -3px 0 0 rgba(0,220,255,0.75); transform: translate(1px,0); }
  93% { text-shadow: none; transform: none; }
  95% { text-shadow: -1px 0 0 rgba(234,7,48,0.4), 1px 0 0 rgba(0,220,255,0.4); }
  97% { text-shadow: none; }
}
@keyframes hero-up {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes red-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(234,7,48,0); }
  50% { box-shadow: 0 0 24px 4px rgba(234,7,48,0.25); }
}
@keyframes scanline-drift {
  from { transform: translateY(-4px); }
  to { transform: translateY(4px); }
}

/* ==========================================================================
   Typography atoms
   ========================================================================== */
.mono { font-family: 'GeistMono', monospace; }

/* Display headings (Mango Grotesque) */
.display { font-family: 'MangoGrotesque', serif; font-weight: 800; font-style: italic; text-transform: uppercase; color: #fff; letter-spacing: 0.01em; }
.display--xl  { font-size: clamp(68px, 11.5vw, 156px); line-height: 0.87; }
.display--xxl { font-size: clamp(52px, 7vw, 96px);     line-height: 0.89; }
.display--lg  { font-size: clamp(52px, 6vw, 84px);     line-height: 0.89; }
.display--cta { font-size: clamp(58px, 9vw, 116px);    line-height: 0.87; }
.display--md  { font-size: clamp(32px, 3.2vw, 46px);   line-height: 1.05; }
.display--sm  { font-size: clamp(28px, 3vw, 42px);     line-height: 0.92; }

/* Body copy (Geist) */
.prose { font-family: 'Geist', sans-serif; font-weight: 400; font-size: 13px; line-height: 1.8; color: rgba(255, 255, 255, 0.9); }
.prose--feature { line-height: 1.78; }

/* ==========================================================================
   Layout — sections
   ========================================================================== */
.section { position: relative; overflow: hidden; background: #000000; }
.section--viewport { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; }
.section--pad-hero  { padding: 80px; }
.section--pad-lg    { padding: 100px 80px; }
.section--pad-block { padding: 120px 80px; }
.section--pad-cta   { padding: 160px 80px; }
.section--bordered  { border-top: 1px solid rgba(255, 255, 255, 0.05); }
.section--cta       { text-align: center; border-top: 4px solid var(--red); }

/* Content wrappers (sit above background media) */
.content         { position: relative; z-index: 10; }
.content--narrow { max-width: 380px; }
.content--narrow-lg { max-width: 400px; }
.content--center { max-width: 800px; margin: 0 auto; }
.hero-content    { position: relative; z-index: 10; max-width: 900px; animation: hero-up 1.1s ease-out 0.15s both; }

/* ==========================================================================
   Background media + overlays
   ========================================================================== */
.bg-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.bg-media--hero      { filter: grayscale(20%) contrast(1.1)  brightness(0.5);  }
.bg-media--about     { filter: grayscale(10%) contrast(1.05) brightness(0.75); }
.bg-media--community { filter: grayscale(10%) contrast(1.05) brightness(0.55); }
.bg-media--movers    { filter: grayscale(10%) contrast(1.05) brightness(0.72); }
.bg-media--expect    { filter: grayscale(10%) contrast(1.05) brightness(0.72); }
.bg-media--next      { filter: grayscale(10%) contrast(1.05) brightness(0.55); }
.bg-media--join      { object-position: left top; filter: grayscale(15%) contrast(1.05) brightness(0.38); }

.overlay { position: absolute; inset: 0; }
.overlay--flat-55 { background: rgba(0, 0, 0, 0.55); }
.overlay--flat-62 { background: rgba(0, 0, 0, 0.62); }
.overlay--flat-72 { background: rgba(0, 0, 0, 0.72); }
.overlay--hero-grad   { background: linear-gradient(to top, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.28) 50%, rgba(0,0,0,0.45) 100%); }
.overlay--fade-82 { background: linear-gradient(to right, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.52) 36%, rgba(0,0,0,0.1) 70%, transparent 100%); }
.overlay--fade-85 { background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.55) 38%, rgba(0,0,0,0.12) 72%, transparent 100%); }
.overlay--fade-88 { background: linear-gradient(to right, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.58) 40%, rgba(0,0,0,0.12) 72%, transparent 100%); }
.overlay--red-glow { background: radial-gradient(ellipse at 50% 50%, rgba(234,7,48,0.08) 0%, transparent 60%); pointer-events: none; }

/* Edge treatments */
.top-fade { position: absolute; top: 0; left: 0; right: 0; height: 180px; background: linear-gradient(to bottom, #000 0%, transparent 100%); }
.top-bar  { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--red); }
.baseline { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: rgba(255, 255, 255, 0.06); }

/* ==========================================================================
   Components
   ========================================================================== */

/* --- Navigation --- */
.site-nav {
  position: fixed; top: 20px; left: 50%; z-index: 10000;
  width: calc(100% - 64px); max-width: 1440px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-group { display: flex; align-items: center; flex: 1; }
.nav-group--left  { gap: 28px; }
.nav-group--right { gap: 24px; justify-content: flex-end; }
.nav-logo { position: absolute; left: 50%; transform: translateX(-50%); display: flex; align-items: center; }

.nav-link {
  font-family: 'Geist', sans-serif; font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase; color: #fff;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover { color: rgba(255, 255, 255, 0.6); }
.nav-cta { font-weight: 700; background: var(--red); padding: 9px 22px; }
.nav-cta:hover { background: var(--red-hover); color: #fff; }

/* --- Logos --- */
.logo-type { width: auto; display: block; mix-blend-mode: screen; }
.logo-type--nav    { height: 34px; animation: logo-glitch 11s ease-in-out 2s infinite; }
.logo-type--footer { height: 24px; animation: logo-glitch 13s ease-in-out 6s infinite; }
.logo-text { font-family: 'MangoGrotesque', serif; font-weight: 800; font-style: italic; text-transform: uppercase; color: #fff; display: block; line-height: 1; }
.logo-text--nav    { font-size: 40px; animation: logo-glitch 11s ease-in-out 2s infinite; }
.logo-text--footer { font-size: 30px; animation: logo-glitch 13s ease-in-out 6s infinite; }

/* --- Hero --- */
.hero-media { position: absolute; inset: 0; overflow: hidden; }
.hero-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 36px; }
.kicker-text { font-family: 'GeistMono', monospace; font-size: 10px; letter-spacing: 0.38em; text-transform: uppercase; color: var(--red); }
.hero-lede { display: flex; align-items: flex-end; gap: 72px; margin-top: 44px; flex-wrap: wrap; }
.hero-lede p { max-width: 400px; }
.hero-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(to right, var(--red), rgba(234,7,48,0.3) 40%, transparent 70%); }
.timecode { position: absolute; bottom: 28px; right: 80px; font-family: 'GeistMono', monospace; font-size: 10px; color: rgba(255,255,255,0.13); letter-spacing: 0.2em; text-transform: uppercase; }

/* --- Hero film effects --- */
@keyframes grain-shift {
  0%   { transform: translate(0, 0); }
  20%  { transform: translate(-3%, 4%); }
  40%  { transform: translate(5%, -2%); }
  60%  { transform: translate(-4%, -6%); }
  80%  { transform: translate(3%, 5%); }
  100% { transform: translate(-2%, 2%); }
}
@keyframes scanline-scroll {
  from { transform: translateY(0); }
  to   { transform: translateY(4px); }
}
@keyframes gate-weave {
  0%   { transform: translateY(0px)    rotate(0deg); }
  20%  { transform: translateY(-0.6px) rotate(0.008deg); }
  45%  { transform: translateY(0.3px)  rotate(-0.006deg); }
  70%  { transform: translateY(-0.2px) rotate(0.004deg); }
  100% { transform: translateY(0px)    rotate(0deg); }
}
@keyframes vhs-band {
  0%   { transform: translateY(0);                  opacity: 0; }
  4%   { opacity: 0.58; }
  88%  { opacity: 0.54; }
  95%  { opacity: 0; }
  100% { transform: translateY(calc(100vh + 60px)); opacity: 0; }
}
@keyframes vhs-band-2 {
  0%   { transform: translateY(0);                   opacity: 0; }
  5%   { opacity: 0.25; }
  88%  { opacity: 0.18; }
  95%  { opacity: 0; }
  100% { transform: translateY(calc(-100vh - 40px)); opacity: 0; }
}
@keyframes vhs-jitter {
  0%, 100% { transform: none; }
  4%    { transform: translateX(-0.5px); }
  4.6%  { transform: none; }
  11%   { transform: translateX(-1px) skewX(0.12deg); }
  12%   { transform: none; }
  13%   { transform: translateX(0.5px) skewX(-0.06deg); }
  13.8% { transform: none; }
  29%   { transform: translateX(0.5px); }
  29.6% { transform: none; }
  43%   { transform: translateX(-1px) skewX(0.1deg); }
  44%   { transform: none; }
  57%   { transform: translateX(0.5px); }
  57.5% { transform: none; }
  67%   { transform: translateX(-1px) skewX(0.15deg); }
  68%   { transform: translateX(0.5px); }
  68.6% { transform: none; }
  69%   { transform: translateX(-0.5px) skewX(0.05deg); }
  69.7% { transform: none; }
  83%   { transform: translateX(0.5px) skewX(-0.06deg); }
  83.8% { transform: none; }
  91%   { transform: translateX(-0.5px); }
  91.6% { transform: none; }
  92.2% { transform: translateX(1px) skewX(0.1deg); }
  93%   { transform: none; }
}
@keyframes noise-flicker {
  0%   { background-position: 0 0; }
  25%  { background-position: -80px 20px; }
  50%  { background-position: 60px -30px; }
  75%  { background-position: -40px 10px; }
  100% { background-position: 50px -20px; }
}
@keyframes vhs-pulse {
  0%   { height: 10px; } 14%  { height: 15px; } 29%  { height: 6px; }
  43%  { height: 18px; } 61%  { height: 7px;  } 75%  { height: 13px; }
  88%  { height: 8px;  } 100% { height: 10px; }
}
@keyframes vhs-tear-mask {
  0%   { mask-position: 0 -30px; -webkit-mask-position: 0 -30px; opacity: 0; }
  4%   { opacity: 0.12; }
  88%  { opacity: 0.10; }
  95%  { opacity: 0; }
  100% { mask-position: 0 calc(100% + 30px); -webkit-mask-position: 0 calc(100% + 30px); opacity: 0; }
}
@keyframes vhs-ghost-mask {
  0%   { mask-position: 0 -30px; -webkit-mask-position: 0 -30px; opacity: 0; }
  4%   { opacity: 0.04; }
  88%  { opacity: 0.03; }
  95%  { opacity: 0; }
  100% { mask-position: 0 calc(100% + 30px); -webkit-mask-position: 0 calc(100% + 30px); opacity: 0; }
}

/* Gate weave wrapper — Y-wobble on parent, X-jitter on child image so transforms don't conflict */
.hero-img-weave { position: absolute; inset: 0; animation: gate-weave 1.1s ease-in-out infinite; }
.bg-media--hero { animation: vhs-jitter 9.5s step-end infinite; }

/* VHS ghost + tear duplicate images */
.hero-img--ghost {
  filter: grayscale(18%) contrast(1.1) brightness(0.75);
  transform: translateX(18px);
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
  -webkit-mask-size: 100% 50px;
  mask-size: 100% 50px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 0 -30px;
  mask-position: 0 -30px;
  z-index: 4;
  animation: vhs-ghost-mask 6.75s cubic-bezier(0.3, 0, 0.5, 1) infinite;
}
.hero-img--tear {
  filter: grayscale(18%) contrast(1.1) brightness(0.58);
  transform: translateX(-12px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
  -webkit-mask-size: 100% 28px;
  mask-size: 100% 28px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: 0 -30px;
  mask-position: 0 -30px;
  z-index: 5;
  animation: vhs-tear-mask 6.75s cubic-bezier(0.3, 0, 0.5, 1) infinite;
}

/* VHS signal-loss glow band */
.hero-vhs-glow {
  position: absolute;
  top: -30px;
  left: 0; right: 0;
  height: 40px;
  z-index: 6;
  background: linear-gradient(to bottom,
    transparent 0%,
    rgba(255, 255, 255, 0.016) 35%,
    rgba(255, 255, 255, 0.028) 50%,
    rgba(255, 255, 255, 0.016) 65%,
    transparent 100%);
  mix-blend-mode: overlay;
  filter: blur(8px);
  animation: vhs-band 6.75s cubic-bezier(0.3, 0, 0.5, 1) infinite;
  pointer-events: none;
}

/* VHS noise static bar */
.hero-vhs-bar {
  position: absolute;
  top: -30px;
  left: 0; right: 0;
  height: 10px;
  z-index: 7;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='f'><feTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='300' height='300' filter='url(%23f)'/></svg>");
  background-size: 300px 300px;
  mix-blend-mode: overlay;
  opacity: 0.08;
  filter: blur(4px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 42%, black 58%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 42%, black 58%, transparent);
  animation: vhs-band 6.75s cubic-bezier(0.3, 0, 0.5, 1) infinite,
             noise-flicker 0.08s steps(4) infinite,
             vhs-pulse 5.55s linear infinite;
  pointer-events: none;
}

/* Second thin bar travelling upward */
.hero-vhs-bar-2 {
  position: absolute;
  top: calc(100% + 20px);
  left: 0; right: 0;
  height: 4px;
  z-index: 3;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='f'><feTurbulence type='fractalNoise' baseFrequency='0.78' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='300' height='300' filter='url(%23f)'/></svg>");
  background-size: 300px 300px;
  mix-blend-mode: overlay;
  opacity: 0.15;
  filter: blur(2px);
  animation: vhs-band-2 10.5s cubic-bezier(0.2, 0, 0.8, 1) 1.8s infinite,
             noise-flicker 0.12s steps(3) 0.5s infinite;
  pointer-events: none;
}

/* Film grain overlay */
.hero-grain {
  position: absolute;
  inset: -15%;
  width: 130%;
  height: 130%;
  background-image: url("data:image/svg+xml;charset=utf-8,<svg xmlns='http://www.w3.org/2000/svg' width='300' height='300'><filter id='f'><feTurbulence type='fractalNoise' baseFrequency='0.58' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='300' height='300' filter='url(%23f)'/></svg>");
  background-size: 300px 300px;
  opacity: 0.46;
  mix-blend-mode: overlay;
  animation: grain-shift 0.6s steps(5) infinite;
  pointer-events: none;
  z-index: 8;
}

/* Scan lines overlay */
.hero-scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0px, transparent 3px,
    rgba(0, 0, 0, 0.025) 3px, rgba(0, 0, 0, 0.025) 4px
  );
  animation: scanline-scroll 4s linear infinite;
  pointer-events: none;
  z-index: 9;
}

/* --- Eyebrow (numbered section label) --- */
.eyebrow { display: flex; align-items: center; gap: 14px; }
.eyebrow-num   { font-family: 'GeistMono', monospace; font-size: 10px; color: var(--red); letter-spacing: 0.2em; }
.eyebrow-label { font-family: 'GeistMono', monospace; font-size: 10px; color: var(--red); letter-spacing: 0.2em; text-transform: uppercase; }
.rule     { width: 36px; height: 1px; background: var(--red); }
.rule--sm { width: 32px; }
.rule--lg { width: 48px; }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; font-family: 'Geist', sans-serif; font-weight: 700; text-transform: uppercase; color: #fff; cursor: pointer; }
.btn--red { background: var(--red); }
.btn--red:hover { background: var(--red-hover); color: #fff; }
.btn[disabled] { opacity: 0.6; cursor: default; }
.btn-hero { gap: 12px; font-size: 12px; letter-spacing: 0.18em; padding: 18px 36px; flex-shrink: 0; animation: red-pulse 3s ease-in-out 2s infinite; }
.btn-hero__arrow { font-size: 16px; font-weight: 400; }
.btn-submit { font-size: 12px; letter-spacing: 0.16em; padding: 17px 26px; white-space: nowrap; flex-shrink: 0; }

/* --- "Two formats" grid --- */
.formats { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.formats__col { padding: 60px 48px 60px 0; border-right: 1px solid rgba(255, 255, 255, 0.08); }
.formats__col--right { padding: 60px 0 60px 48px; border-right: none; }
.format-tag-row { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.format-dot { width: 6px; height: 6px; background: var(--cyan); }
.format-tag { font-family: 'GeistMono', monospace; font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--cyan); }
.format-list { display: flex; flex-direction: column; gap: 0; }
.format-list__item { padding: 14px 0; border-top: 1px solid rgba(255, 255, 255, 0.055); display: flex; align-items: baseline; gap: 16px; }
.format-list__dash { font-family: 'GeistMono', monospace; font-size: 9px; color: rgba(255, 255, 255, 0.2); letter-spacing: 0.1em; flex-shrink: 0; }
.format-list__text { font-family: 'Geist', sans-serif; font-size: 13px; color: rgba(255, 255, 255, 0.75); line-height: 1.5; }

/* --- Expectations list --- */
.feature-list { display: flex; flex-direction: column; gap: 0; }
.feature-item { padding: 18px 0; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.feature-title { font-family: 'Geist', sans-serif; font-size: 13px; font-weight: 700; line-height: 1.4; color: #fff; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.feature-desc  { font-family: 'Geist', sans-serif; font-size: 13px; font-weight: 400; line-height: 1.72; color: rgba(255, 255, 255, 0.55); }

/* --- "What's next" steps + events --- */
.next-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-bottom: 80px; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step { padding: 28px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.08); display: flex; gap: 24px; align-items: baseline; }
.step-num { font-family: 'GeistMono', monospace; font-size: 10px; color: var(--red); letter-spacing: 0.3em; flex-shrink: 0; }
.step-text { font-family: 'Geist', sans-serif; font-size: 15px; color: rgba(255, 255, 255, 0.85); line-height: 1.65; }

.events { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.events__col { padding: 48px 48px 48px 0; border-right: 1px solid rgba(255, 255, 255, 0.08); }
.events__col--right { padding: 48px 0 48px 48px; border-right: none; }
.event-kicker { font-family: 'GeistMono', monospace; font-size: 10px; color: rgba(255, 255, 255, 0.25); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; }

/* --- Join / waitlist --- */
.cta-eyebrow { font-family: 'Geist', sans-serif; font-size: 13px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.success { padding: 24px 0; }
.success-msg { font-family: 'GeistMono', monospace; font-size: 13px; color: var(--red); letter-spacing: 0.22em; text-transform: uppercase; }
.waitlist-form { display: flex; gap: 0; max-width: 520px; margin: 0 auto 20px; }
.email-input {
  flex: 1; min-width: 0;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12); border-right: none;
  color: #fff; font-family: 'GeistMono', monospace; font-size: 12px;
  letter-spacing: 0.12em; padding: 17px 20px; outline: none; text-transform: uppercase;
}
.fineprint { font-family: 'GeistMono', monospace; font-size: 11px; color: rgba(255, 255, 255, 0.2); letter-spacing: 0.06em; margin-top: 4px; }
.form-error { font-family: 'GeistMono', monospace; font-size: 11px; color: var(--red); letter-spacing: 0.06em; margin: 0 0 20px; }

/* --- Footer --- */
.site-footer { background: #000000; padding: 60px 80px 36px; border-top: 1px solid rgba(255, 255, 255, 0.06); }
.footer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 44px; flex-wrap: wrap; gap: 32px; }
.footer-links { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.footer-link { font-family: 'Geist', sans-serif; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255, 255, 255, 0.28); transition: color 0.2s; }
.footer-link:hover { color: rgba(255, 255, 255, 0.7); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.legal { font-family: 'GeistMono', monospace; font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; }
.legal--muted  { color: rgba(255, 255, 255, 0.16); }
.legal--mutest { color: rgba(255, 255, 255, 0.1); }

/* ==========================================================================
   Utilities
   ========================================================================== */
/* Stacked column with consistent gap */
.stack { display: flex; flex-direction: column; gap: 20px; }

/* Text colour (white alpha + brand) */
.t-white { color: #fff; }
.t-red   { color: var(--red); }
.t-90 { color: rgba(255, 255, 255, 0.9); }
.t-75 { color: rgba(255, 255, 255, 0.75); }
.t-70 { color: rgba(255, 255, 255, 0.7); }
.t-65 { color: rgba(255, 255, 255, 0.65); }
.t-55 { color: rgba(255, 255, 255, 0.55); }
.t-50 { color: rgba(255, 255, 255, 0.5); }
.t-45 { color: rgba(255, 255, 255, 0.45); }
.t-40 { color: rgba(255, 255, 255, 0.4); }

/* Margin bottom */
.mb-4  { margin-bottom: 4px; }
.mb-12 { margin-bottom: 12px; }
.mb-28 { margin-bottom: 28px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-44 { margin-bottom: 44px; }
.mb-48 { margin-bottom: 48px; }
.mb-60 { margin-bottom: 60px; }
.mb-64 { margin-bottom: 64px; }

/* ==========================================================================
   CRT glow effects
   ========================================================================== */
@keyframes crt-glow-flicker {
  0%, 100% { opacity: 1; }
  25%      { opacity: 0.98; }
  55%      { opacity: 0.97; }
  78%      { opacity: 0.99; }
}

.crt-h1 {
  color: rgb(242, 242, 242);
  filter: blur(0.2px);
  text-shadow:
    -1px 0 0 rgba(255, 55, 55, 0.38),
     1px 0 0 rgba(0, 210, 255, 0.38),
     0 0 3px  rgba(255, 255, 255, 0.70),
     0 0 9px  rgba(255, 255, 255, 0.32),
     0 0 20px rgba(255, 255, 255, 0.13),
     0 0 38px rgba(255, 255, 255, 0.06);
  animation: crt-glow-flicker 7s ease-in-out infinite;
}

.crt-h2 {
  color: rgb(242, 242, 242);
  filter: blur(0.15px);
  text-shadow:
    -1px 0 0 rgba(255, 55, 55, 0.22),
     1px 0 0 rgba(0, 210, 255, 0.22),
     0 0 3px  rgba(255, 255, 255, 0.50),
     0 0 9px  rgba(255, 255, 255, 0.20),
     0 0 20px rgba(255, 255, 255, 0.08),
     0 0 38px rgba(255, 255, 255, 0.04);
  animation: crt-glow-flicker 7s ease-in-out infinite;
}

.crt-btn {
  filter: blur(0.4px);
  box-shadow:
    0 0 6px  rgba(234, 7, 48, 0.72),
    0 0 16px rgba(234, 7, 48, 0.38),
    0 0 32px rgba(234, 7, 48, 0.18),
    0 0 56px rgba(234, 7, 48, 0.07);
  animation: crt-glow-flicker 7s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .crt-h1, .crt-btn { animation: none; }
}

/* ==========================================================================
   Mobile — max-width: 768px
   ========================================================================== */
@media (max-width: 768px) {

  /* --- Section padding --- */
  .section--pad-hero  { padding: 80px 24px 48px; }
  .section--pad-lg    { padding: 64px 24px; }
  .section--pad-block { padding: 64px 24px; }
  .section--pad-cta   { padding: 100px 24px; }

  /* --- Navigation: hide left links, un-float logo --- */
  .site-nav {
    width: calc(100% - 32px);
    padding: 10px 16px;
  }
  .nav-group--left { display: none; }
  .nav-logo {
    position: static;
    transform: none;
    flex: 1;
  }
  .logo-text--nav { font-size: 26px; }

  /* --- Hero: reduce min-height so the empty image area above content isn't huge --- */
  #hero { min-height: 80vh; }

  /* --- Hero lede: stack text + button vertically --- */
  .hero-lede {
    flex-direction: column;
    gap: 28px;
    align-items: flex-start;
  }
  .timecode { right: 24px; }

  /* --- Section 02: Two formats — single column --- */
  .formats { grid-template-columns: 1fr; gap: 0; }
  .formats__col {
    padding: 40px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .formats__col--right {
    padding: 40px 0;
    border-bottom: none;
  }

  /* --- Section 05: Next grid + events — single column --- */
  .next-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  .events { grid-template-columns: 1fr; }
  .events__col {
    padding: 32px 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .events__col--right {
    padding: 32px 0;
    border-bottom: none;
  }

  /* --- Overlays: swap directional fades for flat so background images show through --- */
  .overlay--fade-82,
  .overlay--fade-85,
  .overlay--fade-88 { background: rgba(0, 0, 0, 0.52); }

  /* --- Text opacity: remove fading on mobile for readability --- */
  .t-75, .t-70, .t-65 { color: rgba(255, 255, 255, 0.9); }
  .t-55, .t-50, .t-45 { color: rgba(255, 255, 255, 0.8); }
  .t-40               { color: rgba(255, 255, 255, 0.6); }
  .feature-desc       { color: rgba(255, 255, 255, 0.8); }

  /* --- Waitlist form: input on top, button below with gap --- */
  .waitlist-form { flex-direction: column; max-width: 100%; gap: 8px; }
  .email-input { border-right: 1px solid rgba(255, 255, 255, 0.12); }
  .btn-submit { width: 100%; justify-content: center; }

  /* --- Footer --- */
  .site-footer { padding: 40px 24px 24px; }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 28px;
  }
  .footer-bottom { flex-direction: column; gap: 8px; }
}
