@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #000;
  --white: #fff;
  --gray-900: #0a0a0a;
  --gray-800: #141414;
  --gray-700: #1e1e1e;
  --gray-400: #666;
  --gray-300: #888;
  --gray-200: #aaa;
  --accent: #fff;
  --nav-height: 56px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── HEADER ──────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
  pointer-events: none;
}

.site-header>* {
  pointer-events: auto;
}

.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
}

.header-ticket {
  background: #1b3a8c;
  /* same blue as original nav ticket */
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 999px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s, background 0.2s;
}

.header-ticket.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-ticket:hover {
  background: #2248b3;
}

.share-btn {
  background: none;
  border: none;
  color: #fff;
  font-family: proxima-nova, sans-serif;
  font-size: 16px;
  font-style: normal;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  transition: opacity 0.2s, transform 0.2s;
}

.share-btn:hover {
  opacity: 0.75;
  transform: translateY(-1px);
}

.share-btn svg {
  width: 18px;
  height: 18px;
}

/* ── SHARE POPUP ──────────────────────────────────── */
.share-popup {
  position: absolute;
  top: 50px;
  right: 0;
  background: rgba(20, 20, 25, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 340px;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  pointer-events: none;
  z-index: 1000;
}

.share-popup.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.share-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.share-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0;
  transition: color 0.2s;
}

.share-close:hover {
  color: #fff;
}

.share-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.share-icon-btn {
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
}

.share-icon-btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.share-icon-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.share-icon-btn:hover svg {
  transform: scale(1.1);
}

@media (max-width: 600px) {
  .share-popup {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    border-radius: 24px 24px 0 0;
    padding: 32px 24px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6);
    transform: translateY(100%);
  }

  .share-popup.open {
    transform: translateY(0);
  }

  .share-grid {
    gap: 16px;
  }
}

.share-icon-btn.fb svg {
  color: #1877F2;
}

/* ── OVERLAY MENU ─────────────────────────────────── */
.overlay-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.overlay-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.overlay-close {
  position: absolute;
  top: 24px;
  left: 32px;
  z-index: 10;
  background: none;
  border: none;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  font-weight: 300;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.overlay-close:hover {
  opacity: 1;
}

.overlay-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 56px;
}

/* Logo sparkle container: position relative so we can absolutely position sparkle elements */
.overlay-logo { position: relative; }

.logo-sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  pointer-events: none;
  /* very subtle soft dot */
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.35) 30%, rgba(255,255,255,0.0) 60%);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.45);
  opacity: 0;
  filter: drop-shadow(0 0 2px rgba(255,255,255,0.35));
  animation: logoSparkle 550ms ease-out both;
}

@keyframes logoSparkle {
  0% { opacity: 0; transform: translate(-50%,-40%) scale(0.25); }
  40% { opacity: 0.7; transform: translate(-50%,-52%) scale(0.85); }
  100% { opacity: 0; transform: translate(-50%,-86%) scale(0.95); }
}

/* Optional shimmer class for logo: broad slow highlight across logo */
.overlay-logo .logo-shimmer {
  position: absolute;
  inset: -6px -6px -6px -6px;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.06) 45%, rgba(255,255,255,0.0) 55%);
  transform: translateX(-120%);
  filter: blur(8px);
  pointer-events: none;
  opacity: 0.9;
}

.overlay-logo.logo-shimmer-on .logo-shimmer {
  animation: logoShimmer 1.8s ease-in-out 1;
}

@keyframes logoShimmer {
  0% { transform: translateX(-120%); opacity: 0; }
  10% { opacity: 0.8; }
  50% { transform: translateX(120%); opacity: 0.8; }
  100% { transform: translateX(240%); opacity: 0; }
}

.overlay-logo img {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
}

.overlay-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.overlay-link {
  color: #fff;
  text-decoration: none;
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color 0.2s;
}

.overlay-link:hover,
.overlay-link.active {
  color: #a0b0d0;
  /* subtle blue tint on hover */
}

.overlay-social {
  position: absolute;
  bottom: 32px;
  right: 32px;
  display: flex;
  gap: 16px;
}

.overlay-social a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  transition: opacity 0.2s;
}

.overlay-social a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .site-header {
    padding: 16px 20px;
  }

  /* Close button stays top-left */
  .overlay-close {
    top: 16px;
    left: 20px;
  }

  /* Stack from top with safe padding — prevents overlap */
  .overlay-menu {
    padding-top: 60px;
    padding-bottom: 80px;
    justify-content: center;
    overflow-y: auto;
  }

  /* Hide logo on mobile — prevents overlap with nav links */
  .overlay-logo {
    display: none;
  }

  .overlay-social {
    bottom: 20px;
    right: 20px;
  }

  /* Mobile font + spacing */
  .overlay-nav {
    gap: 28px;
  }

  .overlay-link {
    font-size: 2.6rem;
    letter-spacing: 3px;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  /* Move to top */
  padding-top: 8vh;
  /* Move text significantly higher */
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  /* changed from fixed to absolute so the hero background scrolls with the page */
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg-blur {
  position: absolute;
  inset: -10%;
  background-image: url('./assets/main2.jpg');
  background-size: cover;
  background-position: center 20%;
  filter: blur(45px) brightness(0.35);
  z-index: 0;
}

.hero-bg img {
  position: relative;
  z-index: 1;
  /* Make the image fill the background area reliably across viewports
     Use cover so mobile browsers don't leave letterboxing due to viewport
     height/address-bar changes. Allow full width by removing max-width. */
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  display: block;
}

/* Subtle zoom-in on page load for hero image */
.hero-bg img {
  transform-origin: center center;
  animation: heroZoom 14s ease-out 0s both;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.035); }
}

@media (min-width: 769px) {
  .hero-bg img {
    /* On desktop prefer showing the full poster without cropping: keep image height to viewport
       and use object-fit: contain so the entire artwork is visible. Width will auto-adjust. */
    width: auto;
    height: 100vh;
    max-width: 100vw;
    object-fit: contain;
    object-position: center top;
    display: block;
    /* Feather left/right edges to blend with blurred background (kept for visual effect) */
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 12%, rgba(0, 0, 0, 1) 88%, rgba(0, 0, 0, 0) 100%);
  }
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  /* Multi-directional vignette: top edge, strong bottom fade, left/right blend */
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.38) 0%, transparent 13%),
    linear-gradient(to top,    #000 0%, rgba(0,0,0,0.8) 12%, transparent 46%),
    linear-gradient(to right,  rgba(0,0,0,0.6) 0%, transparent 16%, transparent 84%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}

/* ── STAGE GLOW ────────────────────────────────────── */
.hero-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 60%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 100%,
    rgba(100,120,255,0.09) 0%,
    rgba(80,100,220,0.04) 38%,
    transparent 68%);
  animation: glowPulse 5s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  0%   { opacity: 0.5; transform: translateX(-50%) scale(0.95); }
  100% { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

/* ── LIGHT BEAMS ───────────────────────────────────── */
.hero-beams {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-beam {
  position: absolute;
  bottom: 0;
  width: 120px;
  height: 70%;
  transform-origin: bottom center;
  background: linear-gradient(to top,
    rgba(255,230,160,0.06) 0%,
    rgba(255,220,140,0.02) 60%,
    transparent 100%);
  animation: beamSway var(--sway-dur,7s) ease-in-out infinite alternate;
}

.hero-beam:nth-child(1) { left: 32%; transform: rotate(-18deg); --sway-dur: 7s;  animation-delay:  0s; }
.hero-beam:nth-child(2) { left: 50%; transform: rotate(  0deg); --sway-dur: 9s;  animation-delay: -3s; width: 80px; }
.hero-beam:nth-child(3) { left: 62%; transform: rotate( 14deg); --sway-dur: 8s;  animation-delay: -5s; }

@keyframes beamSway {
  0%   { opacity: 0.3; }
  100% { opacity: 0.9; }
}

#hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Below content, above bg */
  pointer-events: none;
}


.hero-bottom-center {
  position: absolute;
  bottom: 32px;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  transition: opacity 0.5s ease;
  animation: fadeSlideUp 1.2s ease 0.4s both;
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 30px;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 32px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.btn-pill:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
}

/* ── HERO LOGO OVERLAY ──────────────────────────────── */
.hero-logo {
  position: absolute;
  /* Adjust bottom % to align with where logo sits in main2.jpg */
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: min(72%, 820px);
  z-index: 3;
  pointer-events: none;
  /* screen blend: white dots add brightness to the logo underneath */
  mix-blend-mode: screen;
  animation: logoPulse 3.5s ease-in-out 1.2s infinite alternate;
}

@keyframes logoPulse {
  0% {
    filter: drop-shadow(0 0  5px rgba(255,255,255,0.4))
            drop-shadow(0 0 16px rgba(170,190,255,0.18));
    opacity: 0.8;
  }
  100% {
    filter: drop-shadow(0 0 14px rgba(255,255,255,0.95))
            drop-shadow(0 0 36px rgba(170,190,255,0.55))
            drop-shadow(0 0 60px rgba(130,150,255,0.2));
    opacity: 1;
  }
}

.hero-logo-sparks {
  position: absolute;
  z-index: 4;
  pointer-events: none;
  /* Positioned/sized dynamically by JS to match logo bounds */
}

@media (max-width: 768px) {
  .hero-logo {
    bottom: 26%;
    width: 86%;
  }
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-date {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 13px 28px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.btn-ghost:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 40px;
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  animation: bounce 2.5s infinite;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.hero-scroll svg {
  width: 44px;
  height: 44px;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(8px);
  }
}

/* Social Icons */
.hero-social {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 24px;
  transition: opacity 0.3s ease;
}

.hero-social a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.2s, transform 0.2s;
  display: flex;
  align-items: center;
}

.hero-social a:hover {
  color: #fff;
  transform: translateY(-3px);
}

.hero-social svg {
  width: 30px;
  height: 30px;
}

@media (max-width: 768px) {
  .hero {
    height: 100vh;
    height: 100svh;
    padding-top: 0;
  }

  .hero-bg {
    /* keep background scrolling behavior consistent on mobile */
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-bg-blur {
    display: none;
  }

  .hero-bg img {
    /* On small screens ensure the hero image covers the area and stays centered */
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  /* If the img file is low-res or appears small on some devices, use the
     container background instead — this ensures the artwork always covers
     the viewport on mobile. Hide the inline <img> to avoid double-render. */
  .hero-bg {
    background-image: url('./assets/main2.jpg');
    background-size: cover;
    /* Shift focal point slightly up so top of poster (faces/title) is visible on mobile
       Adjust the percentage if you prefer more/less of the top to show. */
    background-position: center 25%;
  }

  .hero-bg img {
    display: none;
  }

  /* For very narrow phones, nudge the background a bit more toward the top */
  @media (max-width: 420px) {
    .hero-bg {
      background-position: center 18%;
    }
  }

  .hero-title-img-wrap {
    max-width: 280px;
  }

  .hero-bottom-center {
    bottom: 80px;
  }

  .hero-social {
    bottom: 20px;
    right: 0;
    left: 0;
    justify-content: center;
  }

  .hero-scroll {
    display: none;
  }
}


/* Hide on scroll class */
.fade-out-scroll {
  opacity: 0 !important;
  pointer-events: none;
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 32px;
  left: 40px;
  z-index: 100;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s, color 0.2s;
  padding: 8px;
}

.scroll-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.scroll-to-top:hover {
  color: #fff;
}

.scroll-to-top svg {
  width: 44px;
  height: 44px;
}

/* ── SECTIONS COMMON ──────────────────────────────── */
body>section,
body>footer {
  position: relative;
  z-index: 10;
  scroll-margin-top: 56px;
}

.section {
  padding: 100px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-full {
  padding: 100px 24px;
  background: var(--gray-900);
}

.section-full .section {
  padding: 0;
}

.section-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 40px;
}

/* ── SYNOPSIS ─────────────────────────────────────── */

#synopsis {
  padding: 100px 24px;
  background: var(--black);
}

.synopsis-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.synopsis-poster {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.synopsis-poster img {
  width: 100%;
  display: block;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
  cursor: zoom-in;
}

.synopsis-poster-actions {
  display: flex;
  margin-top: 0;
}

.poster-btn {
  flex: 1;
  padding: 12px 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.poster-btn:first-child {
  border-right: none;
}

.poster-btn:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.04);
}

.poster-btn svg {
  width: 14px;
  height: 14px;
}

.synopsis-text {
  padding-top: 8px;
}

.synopsis-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 24px;
  font-weight: 400;
}

@media (min-width: 1024px) {
  .synopsis-text p {
    font-size: 20px;
    line-height: 26px;
  }
}

.synopsis-text p:last-child {
  margin-bottom: 0;
}

.synopsis-text strong {
  color: var(--white);
  font-weight: 600;
}

.synopsis-actions {
  margin-top: 40px;
}

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

  .synopsis-poster {
    position: static;
    max-width: 300px;
    margin: 0 auto;
  }
}



/* ── SUBSCRIBE ────────────────────────────────────── */
#subscribe {
  padding: 100px 24px;
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.subscribe-inner {
  max-width: 560px;
  margin: 0 auto;
}

.subscribe-title {
  margin-bottom: 16px;
}

.subscribe-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
  line-height: 1.7;
}

.subscribe-policy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 4px;
}

.subscribe-policy a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
}

.subscribe-required {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 36px;
}

.subscribe-required span {
  color: #ff7f7f;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.form-label span {
  color: #ff7f7f;
}

.form-input {
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 0.92rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

.form-input:focus {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.form-field-age {
  max-width: 200px;
}

.form-input option {
  background: #111;
  color: #fff;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--white);
  cursor: pointer;
}

.form-check-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.5;
}

.form-check-label .req {
  color: #ff7f7f;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--white);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-family: inherit;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.form-submit:hover {
  background: rgba(255, 255, 255, 0.88);
  transform: translateY(-1px);
}

/* Spinner shown inside submit button while waiting for server response */
.form-submit .spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.25);
  border-top-color: rgba(255,255,255,0.95);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-message {
  font-size: 0.85rem;
  min-height: 1.4em;
  text-align: center;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ── FOOTER ───────────────────────────────────────── */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--black);
  padding: 64px 24px;
  text-align: center;
}

.footer-sns {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 48px;
}

.footer-sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}

.footer-sns a:hover {
  border-color: var(--white);
  color: var(--white);
}

.footer-sns a svg {
  width: 24px;
  height: 24px;
}

/* Footer Partner Logos */
.footer-partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer-partner-logos img {
  height: auto;
  max-height: 55px;
  width: auto;
  display: block;
}


.footer-divider {
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 auto 32px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 0.72rem;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links .brand {
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-copy {
  font-size: 0.68rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  line-height: 2;
}

/* ── LIGHTBOX ─────────────────────────────────────── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 40px 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: min(90vw, 500px);
  max-height: 75vh;
  object-fit: contain;
  display: block;
  transform: scale(0.96);
  transition: transform 0.4s;
}

.lightbox.open .lightbox-img {
  transform: scale(1);
}

.lightbox-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.lightbox-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  width: 40px;
  height: 40px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: border-color 0.2s, transform 0.3s;
}

.lightbox-close-btn:hover {
  border-color: var(--white);
  transform: rotate(90deg);
}

/* ── REVEAL ANIMATIONS ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── UTILITY ──────────────────────────────────────── */
.text-muted {
  color: rgba(255, 255, 255, 0.45);
}

.mt-8 {
  margin-top: 8px;
}

.mt-16 {
  margin-top: 16px;
}

/* ── HERO INTRO GLOW (CSS-only, fires once on page load) ── */
.hero-intro {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% 38%,
    rgba(130, 155, 255, 0.18) 0%,
    rgba(100, 120, 255, 0.07) 45%,
    transparent 70%);
  animation: heroIntro 3.2s ease-out 0.25s forwards;
}

@keyframes heroIntro {
  0%   { opacity: 0; transform: scale(0.82); }
  22%  { opacity: 1; transform: scale(1);    }
  100% { opacity: 0; transform: scale(1.18); }
}