/* ============================================================
   SHOUT! NEON LIVE — Pre-registration LP
   ------------------------------------------------------------
   PC base width: 1000px / SP min: 320px / SP target: 360px
   ============================================================ */

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: #05020E;
  color: #F5F0FF;
  font-family: 'Noto Sans JP', sans-serif;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}
img, video { max-width: 100%; display: block; }
button { font-family: inherit; }

:root {
  --accent: #00E5FF;
  --accent-2: #FF2E93;
  --accent-3: #9B5BFF;
  --bg: #05020E;
  --bg-2: #0B0622;
  --ink: #F5F0FF;
  --ink-dim: rgba(245,240,255,0.6);
  --display: 'Orbitron', 'Chakra Petch', sans-serif;
  --body: 'Noto Sans JP', sans-serif;
}

.neon-root {
  width: 100%;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  position: relative;
}

/* ============================================================
   Common: keyframes / utilities
   ============================================================ */
@keyframes neon-scan {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}
@keyframes neon-float {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--r, 0deg)); }
}
@keyframes neon-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,229,255,.5), 0 0 30px rgba(0,229,255,.4); }
  50% { box-shadow: 0 0 0 12px rgba(0,229,255,0), 0 0 48px rgba(0,229,255,.7); }
}
@keyframes neon-sparkle {
  0%, 100% { opacity: 0; transform: scale(.3) rotate(0); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}
@keyframes neon-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes neon-glow-sweep {
  0% { transform: translateX(-100%) skewX(-20deg); }
  100% { transform: translateX(300%) skewX(-20deg); }
}

[data-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1);
}
.neon-reveal-ready [data-reveal]:not(.neon-in) { opacity: 0; transform: translateY(40px); }
.neon-reveal-ready [data-reveal].neon-in { opacity: 1; transform: translateY(0); }
[data-reveal-delay="1"] { transition-delay: .08s; }
[data-reveal-delay="2"] { transition-delay: .16s; }
[data-reveal-delay="3"] { transition-delay: .24s; }
[data-reveal-delay="4"] { transition-delay: .32s; }

.neon-grid-bg {
  background-image:
    linear-gradient(rgba(0,229,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,229,255,0.06) 1px, transparent 1px);
  background-size: 48px 48px;
}

.neon-section-head-en {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.9;
}

/* Primary button --------------------------------------------- */
.neon-btn-primary {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #000;
  font-weight: 900;
  letter-spacing: .12em;
  border: none;
  cursor: pointer;
  overflow: hidden;
  box-shadow:
    0 0 24px rgba(0,229,255,0.6),
    0 0 48px rgba(255,46,147,0.3),
    inset 0 0 0 1px rgba(255,255,255,0.3);
  transition: transform .2s, box-shadow .2s;
  text-transform: uppercase;
}
.neon-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,.5) 50%, transparent 100%);
  transform: translateX(-100%) skewX(-20deg);
  animation: neon-glow-sweep 3s ease-in-out infinite;
  pointer-events: none;
}
.neon-btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow:
    0 0 36px rgba(0,229,255,0.9),
    0 0 72px rgba(255,46,147,0.5),
    inset 0 0 0 1px rgba(255,255,255,0.4);
}

/* ============================================================
   Nav
   ============================================================ */
.neon-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 24px;
  background: linear-gradient(180deg, rgba(5,2,14,0.95), rgba(5,2,14,0.75));
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,229,255,0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.neon-nav-logo {
  height: 40px;
  filter: drop-shadow(0 0 8px var(--accent));
}
.neon-nav-cta {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: 999px;
}

/* ============================================================
   Hero
   ============================================================ */
.neon-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 30%, #1a0845 0%, #0B0622 40%, #05020E 100%);
}
.neon-hero-kv {
  position: absolute;
  inset: 0;
  background-image: url('/img/geso/lp/9187/key_visual.jpeg');
  background-size: cover;
  background-position: center 30%;
  filter: saturate(1.3);
  will-change: transform;
}
.neon-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,2,14,0.3) 0%, rgba(5,2,14,0.5) 60%, #05020E 100%);
}
.neon-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
}
.neon-hero-scan-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.neon-hero-scan {
  position: absolute;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(180deg, transparent, rgba(0,229,255,0.1), transparent);
  animation: neon-scan 8s linear infinite;
}
.neon-hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.neon-sparkle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  box-shadow: 0 0 12px currentColor;
  animation-name: neon-sparkle;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.neon-hero-eyebrow {
  position: absolute;
  top: 28px;
  right: 20px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 11px 24px;
  border: 1.5px solid var(--accent);
  border-radius: 999px;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--accent);
  background: rgba(0,229,255,0.12);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(0,229,255,0.5);
  font-family: var(--display);
  font-weight: 700;
}
.neon-hero-eyebrow-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 8px var(--accent-2);
  animation: neon-pulse 2s ease-in-out infinite;
}
.neon-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 24px 120px;
  z-index: 2;
  text-align: center;
}
.neon-hero-logo-wrap {
  text-align: center;
  margin-bottom: 16px;
}
.neon-hero-logo {
  height: clamp(58px, 10vw, 110px);
  margin: 0 auto;
  filter: drop-shadow(0 0 24px var(--accent)) drop-shadow(0 0 48px rgba(255,46,147,0.5));
}
.neon-hero-subtitle {
  text-align: center;
  font-family: var(--display);
  font-size: clamp(18px, 2.4vw, 30px);
  font-weight: 900;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 32px;
  text-shadow: 0 0 12px var(--accent);
}
.neon-hero-cta-wrap {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}
.neon-hero-cta {
  padding: 18px 56px;
  font-size: 17px;
  border-radius: 4px;
  min-width: 320px;
}
.neon-meta-row {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 15px;
  color: rgba(245,240,255,0.75);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.15em;
}
.neon-meta-sep { opacity: 0.4; }
.neon-hero-scroll {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--ink-dim);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--display);
}
.neon-hero-scroll-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, var(--accent), transparent);
  box-shadow: 0 0 4px var(--accent);
}

/* ============================================================
   Catch
   ============================================================ */
.neon-catch {
  position: relative;
  padding: 100px 24px;
  background: linear-gradient(180deg, #05020E 0%, #0B0622 50%, #05020E 100%);
  overflow: hidden;
}
.neon-catch-grid {
  position: absolute;
  inset: 0;
  opacity: 0.3;
}
.neon-catch-star {
  position: absolute;
  display: inline-block;
  pointer-events: none;
  filter: drop-shadow(0 0 10px currentColor);
  animation: neon-float 4s ease-in-out infinite;
  transform: rotate(var(--r));
}
.neon-catch-star svg { width: 100%; height: 100%; display: block; }
.neon-catch-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.neon-catch-title {
  font-family: var(--display);
  font-size: clamp(32px, 5.5vw, 72px);
  font-weight: 900;
  margin: 0 0 16px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-wrap: balance;
  text-shadow: 0 0 30px rgba(0,229,255,0.3);
}
.neon-catch-title-grad {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 60%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(255,46,147,0.5));
}
.neon-catch-en {
  font-size: clamp(24px, 3.5vw, 42px);
  margin-top: 14px;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--accent);
  letter-spacing: 0.05em;
  filter: drop-shadow(0 0 16px var(--accent));
}

/* ============================================================
   Campaign
   ============================================================ */
.neon-campaign {
  position: relative;
  padding: 70px 24px 90px;
  background: #05020E;
  overflow: hidden;
  border-top: 1px solid rgba(0,229,255,0.2);
}
.neon-campaign-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,229,255,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(255,46,147,0.12) 0%, transparent 55%);
  pointer-events: none;
}
.neon-campaign-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.neon-campaign-badge-wrap {
  text-align: center;
  margin-bottom: 22px;
}
.neon-campaign-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 26px;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  color: #000;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.28em;
  border-radius: 4px;
  box-shadow: 0 0 28px rgba(255,46,147,0.55);
}
.neon-campaign-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #000;
  animation: neon-pulse 1.6s ease-in-out infinite;
}
.neon-campaign-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--accent);
  box-shadow:
    0 0 40px rgba(0,229,255,0.4),
    0 20px 60px rgba(0,0,0,0.6),
    inset 0 0 0 1px rgba(255,255,255,0.1);
  background: #000;
}
.neon-campaign-card img {
  width: 100%;
  display: block;
}
.neon-campaign-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  box-shadow: 0 0 8px var(--accent);
  pointer-events: none;
}
.neon-campaign-corner-tl { top: 10px; left: 10px; border-top: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.neon-campaign-corner-tr { top: 10px; right: 10px; border-top: 2px solid var(--accent); border-right: 2px solid var(--accent); }
.neon-campaign-corner-bl { bottom: 10px; left: 10px; border-bottom: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.neon-campaign-corner-br { bottom: 10px; right: 10px; border-bottom: 2px solid var(--accent); border-right: 2px solid var(--accent); }
.neon-campaign-cta-wrap {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.neon-campaign-cta {
  padding: 18px 56px;
  font-size: 17px;
  border-radius: 4px;
  white-space: nowrap;
  min-width: 320px;
}

/* ============================================================
   Trailer
   ============================================================ */
.neon-trailer {
  padding: 90px 24px;
  background: #05020E;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.neon-trailer-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/geso/lp/9187/bg_neon_stage.png');
  background-size: cover;
  background-position: center;
  filter: blur(6px) saturate(1.2);
  transform: scale(1.1);
  opacity: 0.45;
  pointer-events: none;
}
.neon-trailer-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,2,14,0.85) 0%, rgba(5,2,14,0.6) 50%, rgba(5,2,14,0.95) 100%);
  pointer-events: none;
}
.neon-trailer-grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  pointer-events: none;
}
.neon-trailer-marquee {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 12px 0;
  background: linear-gradient(90deg, var(--accent-2), var(--accent));
  overflow: hidden;
  border-bottom: 1px solid rgba(0,229,255,0.3);
}
.neon-trailer-marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: neon-marquee 60s linear infinite;
  width: max-content;
  font-family: var(--display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #000;
}
.neon-trailer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 36px;
  position: relative;
}
.neon-trailer-head {
  text-align: center;
  margin-bottom: 40px;
}
.neon-trailer-title {
  font-size: clamp(54px, 8vw, 100px);
  color: var(--accent);
  text-shadow: 0 0 24px var(--accent), 0 0 48px rgba(0,229,255,0.5);
  margin-bottom: 4px;
}
.neon-trailer-frame {
  position: relative;
  aspect-ratio: 16/9;
  background: #000;
  border: 2px solid var(--accent);
  border-radius: 8px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0,229,255,0.3),
    0 0 80px rgba(255,46,147,0.2),
    inset 0 0 0 1px rgba(255,255,255,0.1);
  background-image: url('/img/geso/lp/9187/key_visual.jpeg');
  background-size: cover;
  background-position: center;
}
.neon-trailer-frame-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}
.neon-trailer-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 3;
}
.neon-trailer-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(0,229,255,0.7), 0 0 80px rgba(255,46,147,0.4);
  transition: transform .15s;
  z-index: 2;
}
.neon-trailer-play:hover {
  transform: translate(-50%, -50%) scale(1.08);
}
.neon-trailer-time {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0,0,0,0.7);
  color: var(--accent);
  padding: 6px 12px;
  border-radius: 4px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  border: 1px solid var(--accent);
  box-shadow: 0 0 16px rgba(0,229,255,0.4);
  z-index: 2;
}

/* ============================================================
   Features
   ============================================================ */
.neon-features {
  padding: 110px 24px;
  background: linear-gradient(180deg, #05020E 0%, #0B0622 100%);
  position: relative;
  overflow: hidden;
}
.neon-features-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
}
.neon-features-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.neon-features-head {
  text-align: center;
  margin-bottom: 64px;
}
.neon-features-title {
  font-size: clamp(64px, 10vw, 120px);
  color: var(--accent-2);
  text-shadow: 0 0 28px var(--accent-2), 0 0 60px rgba(255,46,147,0.5);
  line-height: 0.9;
  margin-bottom: 8px;
}
.neon-features-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(0,0,0,0.7);
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3em;
  border-radius: 999px;
  border: 1px solid var(--accent);
  box-shadow: 0 0 16px rgba(0,229,255,0.3);
}
.neon-features-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.neon-feature-row {
  position: relative;
  background: linear-gradient(135deg, rgba(11,6,34,0.8) 0%, rgba(5,2,14,0.9) 100%);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  min-height: 280px;
}
.neon-feature-row--1 { border: 1px solid rgba(0,229,255,0.4); box-shadow: 0 0 40px rgba(0,229,255,0.12), inset 0 0 0 1px rgba(255,255,255,0.03); }
.neon-feature-row--2 { border: 1px solid rgba(255,46,147,0.4); box-shadow: 0 0 40px rgba(255,46,147,0.12), inset 0 0 0 1px rgba(255,255,255,0.03); }
.neon-feature-row--3 { border: 1px solid rgba(155,91,255,0.4); box-shadow: 0 0 40px rgba(155,91,255,0.12), inset 0 0 0 1px rgba(255,255,255,0.03); }
.neon-feature-row--reverse .neon-feature-text { order: 2; }
.neon-feature-row--reverse .neon-feature-img { order: 1; }
.neon-feature-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  pointer-events: none;
}
.neon-feature-row--1 .neon-feature-corner { background: linear-gradient(225deg, rgba(0,229,255,0.2) 0%, transparent 70%); }
.neon-feature-row--2 .neon-feature-corner { background: linear-gradient(225deg, rgba(255,46,147,0.2) 0%, transparent 70%); }
.neon-feature-row--3 .neon-feature-corner { background: linear-gradient(225deg, rgba(155,91,255,0.2) 0%, transparent 70%); }

.neon-feature-text {
  padding: 40px 32px;
  position: relative;
  z-index: 1;
  order: 1;
}
.neon-feature-num {
  font-family: var(--display);
  font-size: 120px;
  font-weight: 900;
  line-height: 0.85;
  color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.neon-feature-row--1 .neon-feature-num { -webkit-text-stroke: 1.5px var(--accent); filter: drop-shadow(0 0 16px var(--accent)); }
.neon-feature-row--2 .neon-feature-num { -webkit-text-stroke: 1.5px var(--accent-2); filter: drop-shadow(0 0 16px var(--accent-2)); }
.neon-feature-row--3 .neon-feature-num { -webkit-text-stroke: 1.5px var(--accent-3); filter: drop-shadow(0 0 16px var(--accent-3)); }
.neon-feature-eyebrow {
  font-family: var(--display);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.25em;
  margin-bottom: 14px;
}
.neon-feature-row--1 .neon-feature-eyebrow { color: var(--accent); text-shadow: 0 0 8px var(--accent); }
.neon-feature-row--2 .neon-feature-eyebrow { color: var(--accent-2); text-shadow: 0 0 8px var(--accent-2); }
.neon-feature-row--3 .neon-feature-eyebrow { color: var(--accent-3); text-shadow: 0 0 8px var(--accent-3); }
.neon-feature-title {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 900;
  margin: 0 0 14px;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.neon-feature-body {
  font-size: 14px;
  line-height: 1.85;
  color: var(--ink-dim);
  margin: 0;
  font-weight: 400;
  max-width: 420px;
}
.neon-feature-img {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  order: 2;
}
.neon-feature-row--1 .neon-feature-img { background: radial-gradient(ellipse at center, rgba(0,229,255,0.15) 0%, transparent 70%); }
.neon-feature-row--2 .neon-feature-img { background: radial-gradient(ellipse at center, rgba(255,46,147,0.15) 0%, transparent 70%); }
.neon-feature-row--3 .neon-feature-img { background: radial-gradient(ellipse at center, rgba(155,91,255,0.15) 0%, transparent 70%); }
.neon-feature-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.neon-feature-img-tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.neon-feature-row--1 .neon-feature-img-tint { background: linear-gradient(135deg, rgba(0,229,255,0.08) 0%, transparent 60%); }
.neon-feature-row--2 .neon-feature-img-tint { background: linear-gradient(135deg, rgba(255,46,147,0.08) 0%, transparent 60%); }
.neon-feature-row--3 .neon-feature-img-tint { background: linear-gradient(135deg, rgba(155,91,255,0.08) 0%, transparent 60%); }

/* ============================================================
   Gallery
   ============================================================ */
.neon-gallery {
  padding: 110px 24px;
  background: #05020E;
  position: relative;
  overflow: hidden;
}
.neon-gallery-bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
}
.neon-gallery-inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
.neon-gallery-head {
  text-align: center;
  margin-bottom: 72px;
}
.neon-gallery-title {
  font-size: clamp(64px, 10vw, 120px);
  color: var(--accent-3);
  text-shadow: 0 0 28px var(--accent-3), 0 0 60px rgba(155,91,255,0.5);
  line-height: 0.9;
  margin-bottom: 8px;
}
.neon-gallery-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(0,0,0,0.7);
  color: var(--ink);
  font-family: var(--display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.3em;
  border-radius: 999px;
  border: 1px solid var(--accent-3);
}
.neon-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
}
.neon-shot-card {
  position: relative;
  padding-top: 44px;
}
.neon-shot-card:hover .neon-shot-frame {
  transform: translateY(-6px);
}
.neon-gallery-num {
  position: absolute;
  top: -36px;
  left: 8px;
  z-index: 4;
  font-size: 56px;
  line-height: 1;
  color: transparent;
  letter-spacing: -0.02em;
  opacity: 0.95;
  pointer-events: none;
}
.neon-shot-card--1 .neon-gallery-num { -webkit-text-stroke: 1.5px var(--accent); text-shadow: 0 0 24px var(--accent); }
.neon-shot-card--2 .neon-gallery-num { -webkit-text-stroke: 1.5px var(--accent-2); text-shadow: 0 0 24px var(--accent-2); }
.neon-shot-card--3 .neon-gallery-num { -webkit-text-stroke: 1.5px var(--accent-3); text-shadow: 0 0 24px var(--accent-3); }

.neon-shot-frame {
  position: relative;
  background: linear-gradient(180deg, #0B0622 0%, #05020E 100%);
  border-radius: 10px;
  padding: 14px;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s;
}
.neon-shot-card--1 .neon-shot-frame { border: 1.5px solid var(--accent); box-shadow: 0 0 32px rgba(0,229,255,0.33), inset 0 0 24px rgba(0,0,0,0.6); }
.neon-shot-card--2 .neon-shot-frame { border: 1.5px solid var(--accent-2); box-shadow: 0 0 32px rgba(255,46,147,0.33), inset 0 0 24px rgba(0,0,0,0.6); }
.neon-shot-card--3 .neon-shot-frame { border: 1.5px solid var(--accent-3); box-shadow: 0 0 32px rgba(155,91,255,0.33), inset 0 0 24px rgba(0,0,0,0.6); }

.neon-shot-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.25em;
}
.neon-shot-card--1 .neon-shot-meta { border-bottom: 1px dashed rgba(0,229,255,0.33); }
.neon-shot-card--2 .neon-shot-meta { border-bottom: 1px dashed rgba(255,46,147,0.33); }
.neon-shot-card--3 .neon-shot-meta { border-bottom: 1px dashed rgba(155,91,255,0.33); }

.neon-shot-meta-left {
  display: flex;
  align-items: center;
  gap: 6px;
}
.neon-shot-meta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  animation: neon-pulse 1.6s ease-in-out infinite;
}
.neon-shot-card--1 .neon-shot-meta-dot { background: var(--accent); box-shadow: 0 0 8px var(--accent); }
.neon-shot-card--2 .neon-shot-meta-dot { background: var(--accent-2); box-shadow: 0 0 8px var(--accent-2); }
.neon-shot-card--3 .neon-shot-meta-dot { background: var(--accent-3); box-shadow: 0 0 8px var(--accent-3); }

.neon-shot-card--1 .neon-shot-meta-tag { color: var(--accent); text-shadow: 0 0 6px var(--accent); }
.neon-shot-card--2 .neon-shot-meta-tag { color: var(--accent-2); text-shadow: 0 0 6px var(--accent-2); }
.neon-shot-card--3 .neon-shot-meta-tag { color: var(--accent-3); text-shadow: 0 0 6px var(--accent-3); }
.neon-shot-meta-right { color: var(--ink-dim); }

.neon-shot-img {
  position: relative;
  aspect-ratio: 9/19.5;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
}
.neon-shot-card--1 .neon-shot-img { border: 1px solid rgba(0,229,255,0.25); }
.neon-shot-card--2 .neon-shot-img { border: 1px solid rgba(255,46,147,0.25); }
.neon-shot-card--3 .neon-shot-img { border: 1px solid rgba(155,91,255,0.25); }
.neon-shot-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.neon-shot-img-tint {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.neon-shot-card--1 .neon-shot-img-tint { background: radial-gradient(ellipse at top, rgba(0,229,255,0.13) 0%, transparent 55%); }
.neon-shot-card--2 .neon-shot-img-tint { background: radial-gradient(ellipse at top, rgba(255,46,147,0.13) 0%, transparent 55%); }
.neon-shot-card--3 .neon-shot-img-tint { background: radial-gradient(ellipse at top, rgba(155,91,255,0.13) 0%, transparent 55%); }
.neon-shot-corner {
  position: absolute;
  width: 14px;
  height: 14px;
  pointer-events: none;
}
.neon-shot-card--1 .neon-shot-corner { box-shadow: 0 0 8px var(--accent); }
.neon-shot-card--2 .neon-shot-corner { box-shadow: 0 0 8px var(--accent-2); }
.neon-shot-card--3 .neon-shot-corner { box-shadow: 0 0 8px var(--accent-3); }
.neon-shot-corner-tl { top: 6px; left: 6px; }
.neon-shot-corner-tr { top: 6px; right: 6px; }
.neon-shot-corner-bl { bottom: 6px; left: 6px; }
.neon-shot-corner-br { bottom: 6px; right: 6px; }
.neon-shot-card--1 .neon-shot-corner-tl { border-top: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.neon-shot-card--1 .neon-shot-corner-tr { border-top: 2px solid var(--accent); border-right: 2px solid var(--accent); }
.neon-shot-card--1 .neon-shot-corner-bl { border-bottom: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.neon-shot-card--1 .neon-shot-corner-br { border-bottom: 2px solid var(--accent); border-right: 2px solid var(--accent); }
.neon-shot-card--2 .neon-shot-corner-tl { border-top: 2px solid var(--accent-2); border-left: 2px solid var(--accent-2); }
.neon-shot-card--2 .neon-shot-corner-tr { border-top: 2px solid var(--accent-2); border-right: 2px solid var(--accent-2); }
.neon-shot-card--2 .neon-shot-corner-bl { border-bottom: 2px solid var(--accent-2); border-left: 2px solid var(--accent-2); }
.neon-shot-card--2 .neon-shot-corner-br { border-bottom: 2px solid var(--accent-2); border-right: 2px solid var(--accent-2); }
.neon-shot-card--3 .neon-shot-corner-tl { border-top: 2px solid var(--accent-3); border-left: 2px solid var(--accent-3); }
.neon-shot-card--3 .neon-shot-corner-tr { border-top: 2px solid var(--accent-3); border-right: 2px solid var(--accent-3); }
.neon-shot-card--3 .neon-shot-corner-bl { border-bottom: 2px solid var(--accent-3); border-left: 2px solid var(--accent-3); }
.neon-shot-card--3 .neon-shot-corner-br { border-bottom: 2px solid var(--accent-3); border-right: 2px solid var(--accent-3); }

.neon-shot-foot {
  margin-top: 14px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.neon-shot-en {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.neon-shot-card--1 .neon-shot-en { color: var(--accent); text-shadow: 0 0 14px var(--accent); }
.neon-shot-card--2 .neon-shot-en { color: var(--accent-2); text-shadow: 0 0 14px var(--accent-2); }
.neon-shot-card--3 .neon-shot-en { color: var(--accent-3); text-shadow: 0 0 14px var(--accent-3); }
.neon-shot-label {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-dim);
  line-height: 1.4;
}
.neon-shot-pager {
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  padding: 4px 8px;
  border-radius: 2px;
  white-space: nowrap;
}
.neon-shot-card--1 .neon-shot-pager { color: var(--accent); border: 1px solid var(--accent); }
.neon-shot-card--2 .neon-shot-pager { color: var(--accent-2); border: 1px solid var(--accent-2); }
.neon-shot-card--3 .neon-shot-pager { color: var(--accent-3); border: 1px solid var(--accent-3); }

/* ============================================================
   Bottom CTA
   ============================================================ */
.neon-bottom-cta {
  position: relative;
  padding: 130px 24px 150px;
  background: #05020E;
  overflow: hidden;
  border-top: 1px solid rgba(0,229,255,0.2);
}
.neon-bottom-cta-bg {
  position: absolute;
  inset: 0;
  background-image: url('/img/geso/lp/9187/bg_neon_concert.png');
  background-size: cover;
  background-position: center 35%;
  opacity: 0.75;
}
.neon-bottom-cta-overlay-1 {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,2,14,0.75) 0%, rgba(5,2,14,0.2) 35%, rgba(5,2,14,0.2) 60%, rgba(5,2,14,0.95) 100%);
}
.neon-bottom-cta-overlay-2 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(5,2,14,0.55) 85%);
}
.neon-bottom-cta-overlay-3 {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,229,255,0.22) 0%, transparent 55%);
  mix-blend-mode: screen;
}
.neon-bottom-cta-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}
.neon-bottom-cta-title {
  font-size: clamp(52px, 8vw, 96px);
  color: var(--accent);
  text-shadow: 0 0 28px var(--accent), 0 0 60px rgba(0,229,255,0.5);
  line-height: 0.9;
  margin-bottom: 16px;
}
.neon-bottom-cta-h {
  font-family: var(--display);
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 900;
  margin: 0 0 28px;
  color: var(--ink);
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: 0 0 24px rgba(0,229,255,0.3);
  white-space: pre-line;
}
.neon-bottom-cta-btn {
  padding: 18px 56px;
  font-size: 17px;
  border-radius: 4px;
  min-width: 320px;
}

/* ============================================================
   Footer
   ============================================================ */
.neon-footer {
  padding: 36px 24px;
  background: #05020E;
  color: var(--ink-dim);
  border-top: 1px solid rgba(0,229,255,0.15);
}
.neon-footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.neon-footer-logo {
  height: 44px;
  opacity: 0.9;
}
.neon-footer-copy {
  font-size: 14px;
  opacity: 0.7;
  letter-spacing: 0.05em;
}

/* ============================================================
   Modal
   ============================================================ */
.neon-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.neon-modal[hidden] { display: none; }
.neon-modal-card {
  width: 100%;
  max-width: 420px;
  background: linear-gradient(180deg, #0B0622 0%, #05020E 100%);
  border: 1px solid var(--accent);
  padding: 32px;
  position: relative;
  box-shadow: 0 0 60px rgba(0,229,255,0.3);
  border-radius: 4px;
}
.neon-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--ink-dim);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}
.neon-modal-eyebrow {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.25em;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.neon-modal-title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 900;
  margin: 0 0 20px;
}
.neon-modal-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--ink-dim);
  text-transform: uppercase;
  margin-top: 0;
}
.neon-modal-input {
  width: 100%;
  margin-top: 6px;
  margin-bottom: 18px;
  padding: 12px 14px;
  background: rgba(0,0,0,0.5);
  border: 1px solid rgba(0,229,255,0.3);
  color: var(--ink);
  font-family: var(--body);
  font-size: 14px;
  border-radius: 0;
  outline: none;
}
.neon-modal-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}
.neon-modal-radios {
  display: flex;
  gap: 8px;
  margin-top: 6px;
  margin-bottom: 22px;
}
.neon-modal-radio {
  flex: 1;
  padding: 10px;
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(0,229,255,0.3);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.neon-modal-radio input { margin: 0; }
.neon-modal-submit {
  width: 100%;
  padding: 14px;
  font-size: 13px;
  border-radius: 0;
}
.neon-modal-done {
  text-align: center;
  padding: 12px 0;
}
.neon-modal-done-check {
  font-size: 40px;
  margin-bottom: 16px;
  color: var(--accent);
  filter: drop-shadow(0 0 16px var(--accent));
}
.neon-modal-done-title {
  font-family: var(--display);
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--accent);
}
.neon-modal-done-sub {
  color: var(--ink-dim);
  font-size: 13px;
  margin: 0;
}

/* ============================================================
   Tablet (~720px)
   ============================================================ */
@media (max-width: 720px) {
  .neon-nav { padding: 12px 14px; }
  .neon-nav-cta { padding: 10px 18px; font-size: 13px; }
  .neon-nav-logo { height: 32px; }

  .neon-hero { padding: 24px 16px; }
  .neon-hero-eyebrow { top: 16px; right: 12px; padding: 8px 14px; font-size: 11px; }
  .neon-hero-content { padding: 40px 16px 80px; }
  .neon-hero-cta { min-width: 240px; padding: 16px 32px; font-size: 15px; }
  .neon-meta-row { font-size: 12px; gap: 10px; }

  .neon-catch { padding: 72px 16px; }
  .neon-catch-title { font-size: 28px; line-height: 1.2; }
  .neon-catch-en { font-size: 24px; }

  .neon-campaign { padding: 56px 16px 72px; }
  .neon-campaign-cta { min-width: 240px; padding: 16px 32px; font-size: 15px; }

  .neon-trailer { padding: 72px 16px; }

  .neon-features { padding: 72px 16px; }
  .neon-features-list { gap: 16px; }
  .neon-feature-row { grid-template-columns: 1fr; min-height: 0; }
  .neon-feature-text { order: 1; padding: 24px 20px; }
  .neon-feature-img { order: 2; min-height: 220px; }
  .neon-feature-row--reverse .neon-feature-text { order: 1; }
  .neon-feature-row--reverse .neon-feature-img { order: 2; }
  .neon-feature-num { font-size: 54px; }
  .neon-feature-title { font-size: 20px; }

  .neon-gallery { padding: 72px 16px; }
  .neon-gallery-grid { grid-template-columns: 1fr; gap: 40px; }
  .neon-gallery-num { font-size: 56px; top: -28px; }

  .neon-bottom-cta { padding: 80px 16px 96px; }
  .neon-bottom-cta-h { font-size: 20px; }
  .neon-bottom-cta-btn { min-width: 240px; padding: 16px 32px; font-size: 15px; }

  .neon-section-head-en,
  .neon-features-title,
  .neon-gallery-title { font-size: 44px; line-height: 0.9; }
  .neon-trailer-title { font-size: 48px; }
  .neon-bottom-cta-title { font-size: 44px; }

  .neon-footer { padding: 28px 16px; }
}

/* ============================================================
   Small phones (~480px)
   ============================================================ */
@media (max-width: 480px) {
  .neon-section-head-en,
  .neon-features-title,
  .neon-gallery-title { font-size: 36px; }
  .neon-catch-title { font-size: 24px; }
  .neon-feature-title { font-size: 18px; }
  .neon-trailer-title { font-size: 40px; }
  .neon-bottom-cta-title { font-size: 38px; }
  .neon-modal-card { padding: 24px; }
}

/* ============================================================
   Smallest (<= 360px)
   ============================================================ */
@media (max-width: 360px) {
  .neon-hero-cta,
  .neon-campaign-cta,
  .neon-bottom-cta-btn { min-width: 200px; padding: 14px 20px; font-size: 14px; letter-spacing: .08em; }
  .neon-hero-eyebrow { font-size: 10px; padding: 6px 10px; gap: 8px; }
  .neon-modal-radios { gap: 6px; }
  .neon-modal-radio { font-size: 12px; padding: 8px 4px; }
}
