/* ===== Reset (replaces Tailwind preflight that Astro used to inject) ===== */
*, *::before, *::after { box-sizing: border-box; }
body, h1, h2, h3, h4, h5, h6, p, figure, blockquote, dl, dd { margin: 0; }

/* ===== Accessibility ===== */
/* Skip link — visually hidden until focused */
.v1-skip {
  position: absolute;
  left: 8px;
  top: -56px;
  z-index: 10000;
  padding: 10px 18px;
  background: var(--cyan, #5773ff);
  color: #06031a;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s ease;
}
.v1-skip:focus { top: 0; }

/* Consistent, visible keyboard focus indicator */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #aab6ff;
  outline-offset: 3px;
}

/* Respect users who prefer reduced motion: stop looping / auto animations */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .v1-quotes-content { animation: none !important; }
  .v1-scroll-arrow span { animation: none !important; opacity: 0.6 !important; }
  .v1-announce-dot { animation: none !important; }
  .v1-quote-sep { animation: none !important; }
}

html, body { margin: 0; padding: 0; overflow-x: clip; scroll-behavior: smooth; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img { display: block; max-width: 100%; }


/* Shared hero-video iframe (cover-fit so it behaves like background video) */
.hero-bunny-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.hero-bunny-frame iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.78vh;
  min-width: 100%;
  height: 56.25vw;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.4);
  border: 0;
  background: transparent;
  pointer-events: none;
}

/* Shared trailer modal */
.trailer-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.trailer-modal.is-open {
  display: flex;
  opacity: 1;
}
.trailer-modal-frame {
  position: relative;
  width: 100%;
  max-width: none;
  max-height: 100vh;
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.trailer-modal-iframe { width: 100%; height: 100%; }
.trailer-modal-iframe iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.trailer-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: rgba(255, 255, 255, 0.85);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 10001;
  transition: all 0.2s ease;
  font-family: -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}
.trailer-modal-close:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

  .v1-body {
    --bg: #1b0e52;
    --bg-2: #2a1568;
    --magenta: #e0479c;
    --cyan: #7d93ff;
    --purple: #8b34d9;
    --gold: #efab4d;
    --coral: #ff7e5f;
    --text: #f3edff;
    --text-dim: #a99cc8;
    --chrome-1: #ffffff;
    --chrome-2: #ef8fce;
    --chrome-3: #8aa0ff;

    background: var(--bg);
    color: var(--text);
    font-family: 'Rajdhani', system-ui, sans-serif;
    font-weight: 400;
    overflow-x: clip;
  }

  /* === ANNOUNCEMENT BAR === */
  .v1-announce {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 200;
    height: 40px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 48px;
    justify-content: center;
    background: rgba(27, 14, 82,0.55);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(87,115,255,0.12);
    border-top: none;
    transition: background 0.4s ease, border-color 0.4s ease;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .v1-announce.is-scrolled {
    background: rgba(27, 14, 82,0.88);
    border-bottom-color: rgba(87,115,255,0.25);
  }
  .v1-announce-text {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.75);
    margin: 0;
  }
  .v1-announce-title  { font-weight: 700; color: var(--cyan); }
  .v1-announce-message { font-weight: 600; color: #fff; }
  @media (max-width: 600px) {
    .v1-announce { height: auto; padding: 8px 16px; }
    .v1-announce-text { display: flex; flex-direction: column; align-items: center; gap: 2px; text-align: center; }
    .v1-announce-dot { display: none; }
    .v1-announce-dash { display: none; }
  }
  .v1-announce-cta {
    display: inline-flex;
    align-items: center;
    margin-left: 10px;
    padding: 3px 14px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.5625rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--bg);
    background: var(--cyan);
    clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
    filter: drop-shadow(0 0 6px rgba(87,115,255,0.5));
    transition: filter 0.2s ease;
    vertical-align: middle;
    position: relative;
    top: -1px;
  }
  .v1-announce-cta:hover { filter: drop-shadow(0 0 10px rgba(87,115,255,0.9)); }
  @keyframes v1-dot-pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(239,171,77,0.7); }
    50% { opacity: 0.6; box-shadow: 0 0 0 5px rgba(239,171,77,0); }
  }
  .v1-announce-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    margin-right: 10px;
    vertical-align: middle;
    position: relative;
    top: -1px;
    animation: v1-dot-pulse 1.8s ease-in-out infinite;
  }

  /* === TOP SCRIM === */
  .v1-top-scrim {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: 240px;
    background: linear-gradient(180deg, rgba(8, 4, 24, 0.92) 0%, rgba(8, 4, 24, 0.55) 40%, transparent 100%);
    z-index: 90;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease;
  }
  .v1-top-scrim.is-scrolled { opacity: 0; }

  /* === NAV === */
  .v1-nav {
    position: fixed;
    top: 40px; left: 0; right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 32px;
    z-index: 100;
    background: transparent;
  }
  .v1-nav { transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease; }
  .v1-nav.is-scrolled {
    top: 0;
    background: rgba(27, 14, 82,0.85);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 1px 0 rgba(87,115,255,0.1);
    padding: 10px 32px;
  }
  .v1-nav-logo img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 0 14px rgba(87,115,255,0.5));
    transition: height 0.4s ease;
  }
  .v1-nav.is-scrolled .v1-nav-logo img { height: 80px; }
  .v1-nav-right { display: flex; gap: 10px; align-items: center; }
  .v1-pill {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 9px 20px;
    border: none;
    border-radius: 0;
    clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
    color: var(--cyan);
    text-decoration: none;
    background: rgba(87,115,255,0.15);
    filter: drop-shadow(0 0 1px rgba(87,115,255,0.9)) drop-shadow(0 0 6px rgba(87,115,255,0.4));
    transition: all 0.25s ease;
  }
  .v1-pill:hover {
    background: rgba(87,115,255,0.25);
    filter: brightness(1.12) drop-shadow(0 0 1px rgba(87,115,255,1)) drop-shadow(0 0 12px rgba(87,115,255,0.6));
  }
  .v1-pill-glow {
    color: #fff;
    background: linear-gradient(150deg, var(--magenta) 0%, var(--coral) 100%);
    filter: drop-shadow(0 0 1px rgba(224,71,156,1)) drop-shadow(0 0 8px rgba(224,71,156,0.6));
  }
  .v1-pill-muted { color: var(--text-dim); background: rgba(255,255,255,0.02); cursor: default; filter: none; }

  /* === MOBILE NAV / HAMBURGER === */
  .v1-nav-toggle {
    display: none; /* shown on mobile only */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2; /* above menu within nav stacking context */
  }
  .v1-nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--cyan);
    box-shadow: 0 0 6px rgba(87,115,255,0.8);
    transition: transform 0.3s ease, opacity 0.2s ease;
  }
  .v1-nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .v1-nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .v1-nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .v1-mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 95; /* below nav (100) so logo + hamburger stay on top */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    background:
      radial-gradient(ellipse at 50% 30%, rgba(139,52,217,0.18) 0%, transparent 60%),
      rgba(4, 4, 16, 0.97);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  }
  .v1-mobile-menu.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.3s ease, visibility 0s;
  }
  .v1-mobile-link {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cyan);
    text-decoration: none;
    text-shadow: 0 0 14px rgba(87,115,255,0.5);
  }
  .v1-mobile-cta {
    margin-top: 10px;
    font-size: 1rem;
    white-space: nowrap;
    color: #fff;
    background: linear-gradient(150deg, var(--magenta) 0%, var(--coral) 100%);
    padding: 16px 34px;
    clip-path: polygon(16px 0%, 100% 0%, calc(100% - 16px) 100%, 0% 100%);
    text-shadow: 0 0 10px rgba(224,71,156,0.7);
    filter: drop-shadow(0 0 10px rgba(224,71,156,0.5));
    transition: transform 0.25s ease, filter 0.25s ease;
  }
  .v1-mobile-cta-muted {
    background: rgba(255,255,255,0.05);
    color: var(--text-dim);
    filter: none;
    text-shadow: none;
  }

  @media (max-width: 768px) {
    .v1-nav-right { display: none; }
    .v1-nav-toggle { display: flex; }
    .v1-nav { padding-left: 12px; padding-right: 18px; }
    .v1-nav-logo { margin-left: -10px; }
    .v1-nav-logo img { height: 92px; }
    .v1-nav.is-scrolled .v1-nav-logo img { height: 64px; }
  }

  /* === HERO === */
  .v1-hero {
    position: relative;
    height: 100vh;
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    padding-top: 20px;
  }
  .v1-hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 50% 100%, #3a1070 0%, transparent 60%),
      radial-gradient(ellipse at 50% 0%, #2a1a6a 0%, transparent 70%),
      linear-gradient(180deg, #1b0e52 0%, #2a1568 50%, #1a0c3e 100%);
    z-index: -2;
  }
  .v1-hero-bg .hero-bunny-frame {
    opacity: 0.85;
  }
  /* Grid horizon */
  .v1-grid-horizon {
    position: absolute;
    bottom: 0; left: 50%;
    width: 200vw; height: 28vh;
    transform: translateX(-50%) perspective(500px) rotateX(60deg);
    transform-origin: 50% 0%;
    background-image:
      linear-gradient(to right, rgba(87,115,255,0.5) 1px, transparent 1px),
      linear-gradient(to bottom, rgba(224,71,156,0.5) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask: linear-gradient(180deg, transparent 0%, #000 40%, #000 100%);
            mask: linear-gradient(180deg, transparent 0%, #000 40%, #000 100%);
    z-index: -1;
  }
  /* Color grade + light leak + vignette */
  .v1-color-grade {
    position: absolute; inset: 0;
    background: linear-gradient(135deg,
      rgba(224, 71, 156, 0.14) 0%,
      transparent 45%,
      rgba(87, 115, 255, 0.10) 100%
    );
    pointer-events: none;
    z-index: 3;
  }
  .v1-light-leak {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse at 88% 8%, rgba(239, 171, 77, 0.28) 0%, rgba(224, 71, 156, 0.14) 28%, transparent 55%);
    pointer-events: none;
    z-index: 3;
  }
  .v1-vignette {
    position: absolute; inset: 0;
    background:
      linear-gradient(180deg, transparent 0%, transparent 55%, rgba(18,10,48,0.7) 100%),
      linear-gradient(90deg, rgba(18,10,48,0.3) 0%, transparent 15%, transparent 85%, rgba(18,10,48,0.3) 100%);
    pointer-events: none;
    z-index: 4;
  }

  @keyframes v1-chevron {
    0%   { opacity: 0; transform: rotate(45deg) translate(-4px, -4px); }
    50%  { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(4px, 4px); }
  }
  .v1-scroll-arrow {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }
  .v1-scroll-arrow span {
    display: block;
    width: 16px;
    height: 16px;
    border-right: 2px solid var(--cyan);
    border-bottom: 2px solid var(--cyan);
    transform: rotate(45deg);
    opacity: 0;
    filter: drop-shadow(0 0 6px rgba(87,115,255,0.8));
    animation: v1-chevron 1.6s ease-in-out infinite;
  }
  .v1-scroll-arrow span:nth-child(1) { animation-delay: 0s; }
  .v1-scroll-arrow span:nth-child(2) { animation-delay: 0.2s; }
  .v1-scroll-arrow span:nth-child(3) { animation-delay: 0.4s; }

  .v1-hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
    text-align: center;
    padding: 80px 100px;
    max-width: 880px;
    background: radial-gradient(ellipse 66% 56% at center, rgba(6,3,18,0.7) 0%, rgba(6,3,18,0.46) 45%, transparent 78%);
  }
  .v1-title-art {
    max-width: 560px;
    width: 80vw;
    height: auto;
    filter:
      drop-shadow(0 0 30px rgba(224, 71, 156, 0.6))
      drop-shadow(0 0 60px rgba(87, 115, 255, 0.3));
  }
  .v1-film-title {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: clamp(0.8125rem, 1.8vw, 1.25rem);
    letter-spacing: 0.55em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0;
    text-shadow: 0 0 18px rgba(239,171,77,0.55), 0 2px 10px rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    gap: 18px;
    width: 100%;
  }
  .v1-film-title::before,
  .v1-film-title::after {
    content: '';
    flex: 1;
    height: 1px;
  }
  .v1-film-title::before {
    background: linear-gradient(90deg, transparent, rgba(239,171,77,0.5));
  }
  .v1-film-title::after {
    background: linear-gradient(90deg, rgba(239,171,77,0.5), transparent);
  }

  .v1-tagline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .v1-tagline-line {
    position: relative;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: clamp(1.375rem, 5.7vw, 4rem);
    line-height: 1.06;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
  }
  .v1-tagline-depth,
  .v1-tagline-face {
    display: block;
    letter-spacing: inherit;
  }
  /* Depth + glow layer — plain text, NO background-clip (Safari-safe) */
  .v1-tagline-depth {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 0;
    pointer-events: none;
  }
  /* Chrome face — ONLY clip props, nothing that forces a compositing layer
     (no filter / isolation / transform / opacity — those break clip-to-text in Safari) */
  .v1-tagline-face {
    position: relative;
    z-index: 1;
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }

  /* RUN THE RACE — solid horizontal gradient fill cyan→white→magenta */
  .v1-tagline-filled .v1-tagline-face {
    background-image: linear-gradient(90deg,
      #3a5fff 0%,
      #5773ff 22%,
      #8aa0ff 48%,
      #d0daff 72%,
      #ffffff 100%);
    -webkit-background-clip: text;
            background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  .v1-tagline-filled .v1-tagline-depth {
    color: rgba(0,0,0,0);
    text-shadow:
      0 0 10px rgba(87,115,255,0.9),
      0 0 24px rgba(87,115,255,0.55),
      0 0 48px rgba(87,115,255,0.25),
      0 2px 10px rgba(0,0,0,0.95);
  }

  /* KEEP THE FAITH — neon outline only */
  .v1-tagline-outline .v1-tagline-face {
    background-image: none;
    -webkit-text-fill-color: transparent;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(224,71,156,0.9);
  }
  .v1-tagline-outline .v1-tagline-depth {
    color: rgba(0,0,0,0);
    text-shadow:
      0 0 10px rgba(224,71,156,0.85),
      0 0 24px rgba(139,52,217,0.55),
      0 0 48px rgba(224,71,156,0.25),
      0 2px 10px rgba(0,0,0,0.95);
  }
  .v1-music {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.125rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0;
    padding-top: 16px;
    border-top: 1px solid rgba(239,171,77,0.25);
    width: 100%;
    max-width: 400px;
    text-shadow: 0 2px 10px rgba(0,0,0,1), 0 0 24px rgba(0,0,0,0.8);
  }
  .v1-music span { color: var(--gold); font-weight: 700; font-size: 1.25rem; text-shadow: 0 0 18px rgba(239,171,77,0.55), 0 2px 10px rgba(0,0,0,1); }
  .v1-trailer-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(150deg, var(--magenta) 0%, var(--coral) 100%);
    border: none;
    border-radius: 0;
    clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
    filter: drop-shadow(0 0 1px rgba(224,71,156,1)) drop-shadow(0 0 8px rgba(224,71,156,0.8)) drop-shadow(0 0 24px rgba(224,71,156,0.35));
    text-shadow: 0 0 10px rgba(224,71,156,0.8);
    transition: transform 0.25s ease, filter 0.25s ease;
  }
  .v1-play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    color: #fff;
  }

  /* === QUOTE MARQUEE === */
  @keyframes v1-quotes-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-100%); }
  }
  @keyframes v1-sep-pulse {
    0%, 100% { opacity: 0.6; filter: none; }
    50%       { opacity: 1;   filter: drop-shadow(0 0 5px var(--gold)); }
  }
  .v1-quotes {
    position: relative;
    z-index: 5;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background: #130a40;
    border-top: 2px solid rgba(87,115,255,0.35);
    border-bottom: 2px solid rgba(87,115,255,0.35);
    box-shadow:
      0 0 30px rgba(87,115,255,0.15),
      inset 0 1px 0 rgba(87,115,255,0.2),
      inset 0 -1px 0 rgba(87,115,255,0.2);
  }
  .v1-quotes-track {
    display: flex;
    align-items: center;
    height: 80px;
    overflow: hidden;
  }
  .v1-quotes-float {
    display: flex;
    width: 100%;
    transform-origin: center center;
    will-change: transform;
  }
  .v1-quotes-content {
    flex-shrink: 0;
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    white-space: nowrap;
    animation: v1-quotes-scroll 30s linear infinite;
  }
  .v1-quotes-track:hover .v1-quotes-content { animation-play-state: paused; }
  .v1-quote-item {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.9);
    padding: 0 40px;
  }
  .v1-quote-item em {
    font-style: normal;
    color: var(--cyan);
    font-weight: 700;
    font-size: 0.6875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.85;
  }
  .v1-quote-sep {
    color: var(--magenta);
    font-size: 0.75rem;
    opacity: 0.8;
    flex-shrink: 0;
    animation: v1-sep-pulse 2.4s ease-in-out infinite;
  }
  .v1-quote-sep:nth-child(4n)  { animation-delay: 0s; }
  .v1-quote-sep:nth-child(4n+2) { animation-delay: 0.6s; }
  .v1-quote-sep:nth-child(4n+3) { animation-delay: 1.2s; }
  .v1-quote-sep:nth-child(4n+4) { animation-delay: 1.8s; }

  /* === EMAIL === */
  .v1-email {
    position: relative;
    --grid-color: rgba(100, 131, 247, 0.1);
    padding: 100px 24px;
    background:
      linear-gradient(to right, var(--grid-color) 1px, transparent 1px),
      linear-gradient(to bottom, var(--grid-color) 1px, transparent 1px),
      linear-gradient(180deg, transparent 0%, rgba(224,71,156,0.05) 50%, transparent 100%),
      #1b0e52;
    background-size: 48px 48px, 48px 48px, 100% 100%;
    border-top: 1px solid rgba(100,131,247,0.18);
    border-bottom: 1px solid rgba(100,131,247,0.18);
  }
  .v1-email-inner {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }
  .v1-email-headline {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: clamp(1.375rem, 3.2vw, 2.125rem);
    line-height: 1.4;
    letter-spacing: 0.04em;
    margin: 0;
    color: #fff;
  }
  .v1-email-break { display: block; }
  .v1-email-headline .v1-email-sub {
    color: var(--cyan);
    font-weight: 500;
    font-size: 0.7em;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 12px;
  }
  .v1-form {
    display: flex;
    gap: 0;
    width: 100%;
    max-width: 500px;
    position: relative;
    filter: drop-shadow(0 0 10px rgba(224,71,156,0.3));
    /* promote to its own compositing layer so Safari doesn't re-rasterize
       (and flicker) the drop-shadow when the input changes on focus */
    transform: translateZ(0);
  }
  .v1-form input[type="email"] {
    flex: 1;
    height: 52px;
    padding: 0 22px 0 28px;
    border-radius: 0;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    border: 1px solid rgba(87,115,255,0.3);
    background: rgba(18,10,48,0.9);
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    outline: none;
    transition: background 0.25s ease, border-color 0.25s ease;
  }
  .v1-form input[type="email"]::placeholder { color: rgba(240,240,255,0.6); }
  .v1-form input[type="email"]:focus {
    border-color: var(--cyan);
    background: rgba(87,115,255,0.08);
  }
  .v1-form button {
    height: 52px;
    padding: 0 28px 0 24px;
    border-radius: 0;
    border: none;
    clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
    background: linear-gradient(150deg, var(--magenta) 0%, var(--coral) 100%);
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.25s ease, filter 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-left: -12px;
  }
  /* Unified hover for all orange (magenta→coral) CTA buttons */
  .v1-pill-glow:hover,
  .v1-mobile-cta:hover,
  .v1-trailer-btn:hover,
  .v1-form button:hover {
    background: linear-gradient(150deg, var(--magenta) 0%, var(--coral) 100%);
    filter:
      brightness(1.12)
      drop-shadow(0 0 2px rgba(224,71,156,1))
      drop-shadow(0 0 16px rgba(224,71,156,0.7))
      drop-shadow(0 0 40px rgba(224,71,156,0.4));
  }

  .v1-social {
    display: flex;
    gap: 14px;
  }
  .v1-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(87,115,255,0.3);
    color: var(--cyan);
    text-decoration: none;
    transition: all 0.25s ease;
  }
  .v1-social a svg { width: 16px; height: 16px; }
  .v1-play svg { width: 9px; height: 11px; display: block; margin-left: 2px; }
  .v1-social a:hover { background: rgba(87,115,255,0.1); box-shadow: 0 0 18px rgba(87,115,255,0.4); }

  /* === SECTION EYEBROW === */
  .v1-section-eyebrow {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 56px;
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
  }
  .v1-section-eyebrow::before { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(239,171,77,0.4)); }
  .v1-section-eyebrow::after  { content: ''; flex: 1; height: 1px; background: linear-gradient(90deg, rgba(239,171,77,0.4), transparent); }
  .v1-email-inner .v1-section-eyebrow { margin-bottom: 0; }

  /* === CAST === */
  .v1-cast {
    padding: clamp(90px, 8vw, 140px) 24px;
    background:
      radial-gradient(ellipse at 30% 0%, rgba(139,52,217,0.12) 0%, transparent 50%),
      radial-gradient(ellipse at 80% 80%, rgba(87,115,255,0.08) 0%, transparent 50%),
      #1b0e52;
  }
  .v1-cast-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 64px;
    align-items: start;
  }
  @media (max-width: 1000px) {
    .v1-cast-grid { grid-template-columns: 1fr; gap: 48px; }
    .v1-poster { display: flex; justify-content: center; }
    .v1-poster-frame { width: 100%; max-width: 560px; }
  }
  .v1-poster-frame {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    box-shadow:
      0 0 0 1px rgba(87,115,255,0.4),
      0 0 40px rgba(224,71,156,0.3),
      0 30px 80px rgba(0,0,0,0.6);
  }
  .v1-poster-frame::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(87,115,255,0.1), transparent 40%, rgba(224,71,156,0.1));
    pointer-events: none;
  }
  .v1-poster-frame img { width: 100%; height: auto; }
  .v1-cast-right { display: flex; flex-direction: column; gap: 48px; }
  .v1-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--cyan);
    margin: 0 0 18px 0;
  }
  .v1-cast-photos {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
  }
  @media (max-width: 600px) {
    .v1-cast-photos { grid-template-columns: repeat(2, 1fr); }
    .v1-cast-photos .v1-cast-card:last-child:nth-child(odd) { grid-column: 1 / -1; max-width: 50%; margin: 0 auto; }
  }
  .v1-cast-card { display: flex; flex-direction: column; gap: 8px; }
  .v1-cast-photo {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid rgba(87,115,255,0.25);
    box-shadow: 0 0 24px rgba(224,71,156,0.15);
    background: #2a1568;
  }
  .v1-cast-photo img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.08) saturate(0.9); }
  .v1-cast-ph { width: 100%; height: 100%; background: rgba(87,115,255,0.03); border: 1px dashed rgba(87,115,255,0.2); }
  .v1-cast-role {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.5625rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--magenta);
    margin: 4px 0 0;
    white-space: nowrap;
  }
  .v1-cast-name {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #fff;
    margin: 0;
  }
  .v1-synopsis {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #c0c0d8;
    margin: 0;
    font-weight: 300;
  }
  .v1-synopsis em {
    font-style: inherit;
    color: inherit;
    font-weight: inherit;
  }
  .v1-synopsis + .v1-synopsis { margin-top: 1em; }
  .v1-prod { display: flex; gap: 56px; flex-wrap: wrap; }
  .v1-prod-name { font-family: 'Rajdhani', sans-serif; font-size: 0.9375rem; color: #fff; margin: 0; font-weight: 500; }
  .v1-lockup {
    margin: 100px auto 0;
    text-align: center;
  }
  .v1-lockup img {
    max-width: 280px;
    width: 50vw;
    height: auto;
    opacity: 0.7;
    filter: drop-shadow(0 0 20px rgba(87,115,255,0.4));
    margin: 0 auto;
  }

  /* === PETRA SECTION === */
  .v1-petra {
    padding: clamp(90px, 8vw, 140px) 24px;
    background:
      radial-gradient(ellipse at 70% 0%, rgba(139,52,217,0.12) 0%, transparent 50%),
      radial-gradient(ellipse at 20% 80%, rgba(87,115,255,0.08) 0%, transparent 50%),
      #1b0e52;
    border-top: 1px solid rgba(87,115,255,0.15);
  }
  .v1-petra-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .v1-petra-grid {
    display: grid;
    grid-template-columns: 1fr 0.6fr;
    gap: 60px;
    align-items: center;
    margin-top: 48px;
  }
  .v1-petra-img img {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(87,115,255,0.25);
    box-shadow: 0 0 40px rgba(224,71,156,0.2);
  }
  .v1-petra-copy {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .v1-petra-copy p {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    font-weight: 400;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin: 0;
  }
  .v1-petra-quote {
    font-style: italic;
    color: var(--cyan) !important;
    border-left: 3px solid var(--cyan);
    padding-left: 16px;
  }
  @media (max-width: 768px) {
    .v1-petra-grid { grid-template-columns: 1fr; gap: 36px; }
  }

  /* === MERCHANDISE === */
  .v1-merch {
    padding: clamp(90px, 8vw, 140px) 24px;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(139,52,217,0.12) 0%, transparent 60%),
      #1b0e52;
    border-top: 1px solid rgba(87,115,255,0.15);
  }
  .v1-merch-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .v1-merch-img {
    margin-top: 48px;
    text-align: center;
  }
  .v1-merch-img img {
    max-width: 800px;
    width: 100%;
    display: block;
    margin: 0 auto;
  }

  /* === HOST A SCREENING === */
  .v1-screening {
    padding: clamp(90px, 8vw, 140px) 24px;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(87,115,255,0.1) 0%, transparent 60%),
      #0a0118;
    border-top: 1px solid rgba(87,115,255,0.15);
  }
  .v1-screening-inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
  }
  .v1-screening-headline {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    margin: 12px 0 16px;
    letter-spacing: 0.03em;
  }
  .v1-screening-headline em { font-style: italic; color: var(--cyan); }
  .v1-screening-sub {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
    color: rgba(255,255,255,0.7);
    margin: 0 auto 48px;
    max-width: 600px;
    line-height: 1.6;
  }
  .v1-screening-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    text-align: left;
  }
  .v1-screening-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .v1-screening-field label {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
  }
  .v1-screening-field input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(87,115,255,0.3);
    border-radius: 4px;
    padding: 12px 16px;
    color: #fff;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.2s;
  }
  .v1-screening-field input:focus {
    border-color: var(--cyan);
  }
  .v1-screening-field input::placeholder {
    color: rgba(255,255,255,0.3);
  }
  .v1-screening-submit {
    margin-top: 32px;
  }
  .v1-screening-submit button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(150deg, var(--magenta) 0%, var(--coral) 100%);
    border: none;
    clip-path: polygon(20px 0%, 100% 0%, calc(100% - 20px) 100%, 0% 100%);
    filter: drop-shadow(0 0 1px rgba(224,71,156,1)) drop-shadow(0 0 8px rgba(224,71,156,0.8)) drop-shadow(0 0 24px rgba(224,71,156,0.35));
    text-shadow: 0 0 10px rgba(224,71,156,0.8);
    cursor: pointer;
    transition: transform 0.25s ease, filter 0.25s ease;
  }
  .v1-screening-submit button:hover { transform: scale(1.03); filter: drop-shadow(0 0 2px rgba(224,71,156,1)) drop-shadow(0 0 16px rgba(224,71,156,0.9)) drop-shadow(0 0 40px rgba(224,71,156,0.5)); }
  @media (max-width: 600px) { .v1-screening-grid { grid-template-columns: 1fr; } }

  /* === PRODUCTION TEAM === */
  .v1-crew {
    padding: clamp(90px, 8vw, 140px) 24px;
    background:
      radial-gradient(ellipse at 50% 0%, rgba(139,52,217,0.08) 0%, transparent 60%),
      #1b0e52;
    border-top: 1px solid rgba(87,115,255,0.1);
  }
  .v1-crew-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .v1-crew-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 24px;
  }

  /* === FOOTER === */
  .v1-footer {
    padding: 60px 32px 36px;
    background: #130a40;
    border-top: 1px solid rgba(224,71,156,0.2);
  }
  .v1-footer-logos {
    display: flex;
    gap: 36px;
    align-items: center;
    justify-content: center;
    margin-bottom: 36px;
    flex-wrap: wrap;
  }
  .v1-footer-logo-ph {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.625rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    border: 1px dashed rgba(255,255,255,0.15);
    padding: 12px 24px;
    border-radius: 4px;
  }
  .v1-footer-studio {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: filter 0.25s ease, opacity 0.25s ease;
    opacity: 0.85;
    filter: drop-shadow(0 0 12px rgba(87, 115, 255, 0.15));
  }
  .v1-footer-studio img {
    height: 44px;
    width: auto;
  }
  .v1-footer-studio:hover {
    opacity: 1;
    filter: drop-shadow(0 0 18px rgba(87, 115, 255, 0.35));
  }
  .v1-footer-contact {
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 0 0;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .v1-footer-contact p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.875rem;
    color: var(--text-dim);
    margin: 0;
  }
  .v1-footer-contact a {
    color: var(--cyan);
    text-decoration: none;
  }
  .v1-footer-contact a:hover { opacity: 0.75; }
  .v1-footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }
  .v1-footer-bottom p {
    font-family: 'Rajdhani', sans-serif;
    font-size: 0.8125rem;
    color: var(--text-dim);
    margin: 0;
    letter-spacing: 0.05em;
  }
  .v1-footer-links { display: flex; gap: 28px; }
  .v1-footer-links a {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dim);
    text-decoration: none;
    padding: 6px 2px;
    transition: color 0.2s ease;
  }
  .v1-footer-links a:hover { color: var(--cyan); }

  /* Keep the email headline on one elegant line on desktop; wrap it on smaller screens */
  .v1-email-title-line { white-space: nowrap; }

  /* ===== Responsive refinements (tablet & mobile) ===== */
  @media (max-width: 768px) {
    .v1-email-title-line { white-space: normal; }
    /* tighten the big vertical gaps between sections */
    .v1-email { padding: 64px 24px; }
    .v1-cast,
    .v1-crew { padding: 64px 24px; }
  }
  @media (max-width: 600px) {
    /* give the hero text room so the credit line + button stop wrapping awkwardly */
    .v1-hero-content { padding: 56px 24px; }
    /* stack the signup form so the field isn't squeezed by the button */
    .v1-form { flex-direction: column; gap: 12px; }
    .v1-form input[type="email"] { flex: none; width: 100%; }
    .v1-form button { width: 100%; margin-left: 0; justify-content: center; }
    /* production team: two across instead of one giant column */
    .v1-crew-grid { grid-template-columns: repeat(2, 1fr); }
  }
  /* Tablet: extra breathing room beneath the (now larger) poster */
  @media (min-width: 601px) and (max-width: 1000px) {
    .v1-cast-grid { gap: 80px; }
  }

  /* ===== Footer "pause motion" toggle (WCAG 2.2.2) ===== */
  .v1-footer-motion {
    max-width: 1100px;
    margin: 18px auto 0;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }
  .v1-motion-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-dim);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 4px;
    padding: 8px 14px;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  }
  .v1-motion-toggle:hover { color: var(--cyan); border-color: var(--cyan); background: rgba(125,147,255,0.06); }
  .v1-motion-icon { font-size: 0.85rem; line-height: 1; }

  /* Manual pause (footer toggle) — stop looping animations, mirroring reduced-motion */
  html.motion-paused .v1-quotes-content { animation: none !important; }
  html.motion-paused .v1-scroll-arrow span { animation: none !important; opacity: 0.6 !important; }
  html.motion-paused .v1-announce-dot { animation: none !important; }
  html.motion-paused .v1-quote-sep { animation: none !important; }
