
:root {
  --bg: #020308;
  --bg-2: #060815;
  --panel: rgba(10, 14, 30, .82);
  --panel-strong: #0a0d1b;
  --white: #f8f9ff;
  --muted: #a9aec0;
  --line: rgba(255,255,255,.09);

  --yellow: #eaff00;
  --pink: #ff0a8a;
  --cyan: #00e5ff;
  --violet: #9a35ff;
  --orange: #ff8a00;

  --container: 1180px;
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 34px;

  --shadow: 0 28px 90px rgba(0,0,0,.44);
  --glow-yellow: 0 0 12px rgba(234,255,0,.55), 0 0 34px rgba(234,255,0,.18);
  --glow-pink: 0 0 12px rgba(255,10,138,.55), 0 0 34px rgba(255,10,138,.20);
  --glow-cyan: 0 0 12px rgba(0,229,255,.5), 0 0 34px rgba(0,229,255,.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 7%, rgba(154,53,255,.15), transparent 34rem),
    radial-gradient(circle at 3% 35%, rgba(0,229,255,.07), transparent 28rem),
    linear-gradient(180deg, #010207 0%, var(--bg) 100%);
  font-family: "Inter", system-ui, sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: .19;
  background:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 80%);
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 105px 0;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

/* Type */
h1, h2, .display, .brush {
  font-family: "Knewave", cursive;
  font-weight: 400;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }
h2, h3 { overflow-wrap: break-word; }

/* Grid/flex items shrink to their content's width by default (min-width: auto),
   so a large heading forces its column wider than the viewport instead of
   wrapping. Every two-column section that collapses to one column on mobile
   needs this reset on its children. */
.hero-grid > *,
.concept-layout > *,
.atmosphere-box > *,
.poster-layout > * {
  min-width: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(4rem, 8.9vw, 8.6rem);
  line-height: .82;
  letter-spacing: -.03em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 5.8vw, 5.2rem);
  line-height: .9;
}

h3 {
  margin-bottom: 12px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.85rem;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--yellow);
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
  font-size: .95rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.kicker::before {
  content: "";
  width: 34px;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--pink), var(--yellow));
  box-shadow: var(--glow-pink);
}

.text-yellow { color: var(--yellow); }
.text-pink { color: var(--pink); }
.text-cyan { color: var(--cyan); }

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-heading p {
  max-width: 650px;
  font-size: 1.06rem;
}

/* Header */
.site-header {
  position: absolute;
  inset: 0 0 auto;
  height: 82px;
  z-index: 50;
}

.nav {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-block;
  text-decoration: none;
  transform: rotate(-2deg);
  font-family: "Knewave", cursive;
  text-transform: uppercase;
  font-size: 1.15rem;
  line-height: .92;
}

.logo strong {
  color: var(--yellow);
  font-weight: 400;
  text-shadow: var(--glow-yellow);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.nav-toggle-label span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
}

.nav-links > a:not(.btn) {
  color: rgba(255,255,255,.72);
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.nav-links > a:not(.btn):hover { color: #fff; }

/* Buttons */
.btn {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.btn-primary {
  color: #050608;
  background: var(--yellow);
  box-shadow: 0 0 26px rgba(234,255,0,.25), 0 12px 40px rgba(234,255,0,.10);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 38px rgba(234,255,0,.45), 0 16px 48px rgba(234,255,0,.13);
}

.btn-ghost {
  color: #fff;
  border-color: rgba(255,10,138,.8);
  background: rgba(255,10,138,.045);
  box-shadow: inset 0 0 18px rgba(255,10,138,.05), 0 0 18px rgba(255,10,138,.08);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255,10,138,.10);
  box-shadow: 0 0 26px rgba(255,10,138,.20);
}

.nav .btn {
  min-height: 42px;
  padding-inline: 19px;
  font-size: .94rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: 850px;
  display: flex;
  align-items: center;
  padding: 145px 0 95px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  right: -270px;
  top: 20px;
  width: 880px;
  height: 880px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(255,10,138,.16), transparent 54%),
    radial-gradient(circle at 40% 32%, rgba(0,229,255,.12), transparent 42%);
  filter: blur(20px);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 180px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  min-height: 650px;
}

.hero-copy {
  position: relative;
  z-index: 5;
}

.date-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 28px;
  padding: 9px 15px;
  border: 1px solid rgba(0,229,255,.34);
  border-radius: 999px;
  background: rgba(4,9,20,.62);
  box-shadow: 0 0 32px rgba(0,229,255,.06);
  backdrop-filter: blur(12px);
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: .98rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.date-badge strong {
  color: var(--yellow);
  font-weight: 900;
}

.hero-title-line {
  display: block;
}

.hero-title-line:first-child {
  color: #fff;
  transform: rotate(-1deg);
}

.hero-title-line:nth-child(2) {
  color: var(--yellow);
  text-shadow: var(--glow-yellow);
  transform: rotate(.5deg);
}

.hero-title-line:last-child {
  color: var(--pink);
  text-shadow: var(--glow-pink);
  transform: rotate(-1.5deg);
}

.hero-intro {
  max-width: 590px;
  margin: 30px 0 34px;
  color: #dce0ed;
  font-size: clamp(1.04rem, 1.8vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-art {
  position: relative;
  height: 665px;
}

.hero-art .player {
  position: absolute;
  top: -35px;
  right: -170px;
  width: 745px;
  max-width: none;
  filter: drop-shadow(0 0 28px rgba(255,10,138,.17));
  animation: heroDrift 6s ease-in-out infinite;
}

.hero-art .shuttle {
  position: absolute;
  top: 15px;
  right: 25px;
  width: 170px;
  transform: rotate(-13deg);
  filter: drop-shadow(0 0 22px rgba(0,229,255,.2));
  animation: shuttleFloat 4.8s ease-in-out infinite;
}

.hero-art .swoosh {
  position: absolute;
  right: -280px;
  bottom: 13px;
  width: 850px;
  max-width: none;
  opacity: .68;
  transform: rotate(-5deg);
  z-index: -1;
}

.hero-art .splash {
  position: absolute;
  right: -175px;
  top: 165px;
  width: 520px;
  opacity: .12;
  z-index: -2;
  transform: rotate(-18deg);
}

@keyframes heroDrift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(.4deg); }
}

@keyframes shuttleFloat {
  0%,100% { transform: translateY(0) rotate(-13deg); }
  50% { transform: translateY(-14px) rotate(-7deg); }
}

/* Quick facts */
.quick-facts {
  position: relative;
  z-index: 7;
  margin-top: -42px;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7,10,21,.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.fact {
  min-height: 106px;
  padding: 25px;
  border-right: 1px solid var(--line);
}

.fact:last-child { border-right: 0; }

.fact small {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.fact strong {
  display: block;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.35rem;
  line-height: 1.05;
  font-weight: 900;
  text-transform: uppercase;
}

/* Concept */
.concept-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 58px;
  align-items: center;
}

.concept-visual {
  position: relative;
  min-height: 510px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.concept-visual::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(0,229,255,.065);
  filter: blur(55px);
}

.concept-visual img {
  position: relative;
  width: 720px;
  max-width: none;
  filter: drop-shadow(0 30px 80px rgba(0,229,255,.10));
}

.concept-copy p {
  max-width: 600px;
  font-size: 1.06rem;
}

.bullet-list {
  display: grid;
  gap: 13px;
  margin-top: 28px;
}

.bullet {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  color: #d9dcea;
}

.bullet::before {
  content: "✦";
  color: var(--yellow);
  line-height: 1.65;
  text-shadow: var(--glow-yellow);
}

/* Feature cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature {
  position: relative;
  min-height: 258px;
  overflow: hidden;
  padding: 29px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.008)),
    var(--panel);
  transition: transform .2s ease, border-color .2s ease;
}

.feature:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--feature-color) 50%, transparent);
}

.feature::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -60px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: var(--feature-color);
  filter: blur(80px);
  opacity: .15;
}

.feature img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 22px;
}

.feature h3 { color: var(--feature-color); }
.feature p { margin-bottom: 0; font-size: .94rem; }

/* Sessions */
.sessions {
  overflow: hidden;
}

.sessions::before {
  content: "";
  position: absolute;
  width: 570px;
  height: 570px;
  left: -320px;
  top: 120px;
  border-radius: 50%;
  background: rgba(255,10,138,.085);
  filter: blur(60px);
}

.session-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.session {
  --accent: var(--pink);
  position: relative;
  overflow: hidden;
  min-height: 390px;
  padding: 42px;
  border: 1px solid var(--accent);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), transparent 45%),
    #080b17;
  box-shadow: 0 0 34px color-mix(in srgb, var(--accent) 12%, transparent);
}

.session.adults { --accent: var(--yellow); }

.session::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: var(--accent);
  filter: blur(110px);
  opacity: .14;
}

.session-top {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-bottom: 30px;
}

.session-tag {
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.session h3 {
  margin-top: 7px;
  font-size: 2.55rem;
}

.price {
  color: var(--accent);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4.8rem;
  line-height: .8;
  font-weight: 900;
}

.time {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 22px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
}

.session-details {
  display: grid;
  gap: 12px;
  color: #d6d9e6;
}

.session-details span::before {
  content: "✦";
  margin-right: 10px;
  color: var(--accent);
}

/* Atmosphere */
.atmosphere {
  padding-top: 65px;
}

.atmosphere-box {
  position: relative;
  min-height: 590px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 70px;
  border: 1px solid rgba(154,53,255,.24);
  border-radius: var(--radius-lg);
  background: #05070e;
  box-shadow: var(--shadow);
}

.atmosphere-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.atmosphere-art .lights {
  position: absolute;
  right: -40px;
  top: -25px;
  width: 790px;
  opacity: .72;
}

.atmosphere-art .racket {
  position: absolute;
  right: 45px;
  bottom: 25px;
  width: 330px;
  transform: rotate(17deg);
  opacity: .88;
  filter: drop-shadow(0 0 28px rgba(255,10,138,.17));
}

.atmosphere-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
}

.atmosphere-content p {
  color: #cdd1df;
  font-size: 1.06rem;
}

.mini-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.mini-pill {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: #e7e9f1;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

/* Practical */
.practical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info {
  min-height: 270px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(8,11,24,.72);
}

.info img {
  width: 94px;
  height: 94px;
  object-fit: contain;
  margin-bottom: 24px;
}

.info strong {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.32rem;
  text-transform: uppercase;
}

.phone-link {
  color: var(--yellow);
  text-decoration: none;
  text-shadow: 0 0 16px rgba(234,255,0,.18);
}

/* Poster section */
.poster-layout {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 58px;
  align-items: center;
}

.poster {
  /* width/height HTML attributes exist to prevent layout shift, but without
     an explicit height here the browser was using height="1280" as a literal
     pixel value instead of scaling it with width — height:auto lets it scale
     proportionally instead. */
  width: 100%;
  height: auto;
  border-radius: 21px;
  box-shadow: 0 35px 90px rgba(0,0,0,.55), 0 0 36px rgba(255,10,138,.08);
}

/* Final CTA */
.final-cta {
  padding: 75px 0 120px;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 88px 34px;
  text-align: center;
  border: 1px solid rgba(234,255,0,.32);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 50% 120%, rgba(234,255,0,.10), transparent 34%),
    radial-gradient(circle at 0 0, rgba(255,10,138,.08), transparent 28%),
    #060910;
}

.cta-box .splash {
  position: absolute;
  top: -165px;
  right: -115px;
  width: 460px;
  opacity: .14;
  transform: rotate(-20deg);
}

.cta-box h2 {
  max-width: 800px;
  margin-inline: auto;
}

.cta-box p {
  max-width: 630px;
  margin: 22px auto 30px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

/* Footer */
footer {
  padding: 35px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: .87rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover { color: #fff; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 980px) {
  .nav-toggle-label { display: flex; z-index: 60; }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    background: var(--panel-strong);
    border-bottom: 1px solid var(--line);
    transition: max-height .25s ease;
  }

  .nav-links > a:not(.btn) {
    padding: 18px 24px;
    border-bottom: 1px solid var(--line);
  }

  .nav-links > a.btn {
    margin: 18px 24px;
  }

  .nav-toggle:checked ~ .nav-links {
    max-height: 400px;
  }

  .hero {
    min-height: auto;
    padding-top: 125px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 35px;
    text-align: center;
  }

  .hero-intro {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-art {
    height: 590px;
    margin-top: -10px;
  }

  .hero-art .player {
    /* Centered via auto margins, not transform: translateX — the
       heroDrift animation already drives transform (translateY/rotate),
       and an animated transform fully replaces a static one rather than
       combining with it, which was silently cancelling the centering. */
    width: 690px;
    left: 0;
    right: 0;
    margin-inline: auto;
  }

  .hero-art .shuttle { right: 9%; }

  .fact-grid { grid-template-columns: 1fr 1fr; }
  .fact:nth-child(2) { border-right: 0; }
  .fact:nth-child(-n+2) { border-bottom: 1px solid var(--line); }

  .concept-layout { grid-template-columns: 1fr; }
  .concept-visual { order: 2; min-height: 420px; }

  .feature-grid { grid-template-columns: 1fr 1fr; }

  .atmosphere-box { padding: 55px; }
  .atmosphere-art .lights { right: -190px; opacity: .5; }

  .practical-grid { grid-template-columns: 1fr; }

  .poster-layout { grid-template-columns: 290px 1fr; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 75px 0; }

  .site-header { height: 68px; }
  .logo { font-size: 1rem; }

  .nav .btn {
    min-height: 40px;
    padding-inline: 15px;
  }

  h1 { font-size: clamp(2.4rem, 14vw, 4rem); }
  h2 { font-size: clamp(2.6rem, 13vw, 4rem); }

  .hero {
    padding-top: 90px;
    padding-bottom: 55px;
  }

  .hero-art {
    height: 340px;
    margin-top: -5px;
  }

  .hero-art .player {
    /* aspect ratio of the source image is ~0.8 (w/h); width is capped so
       the full character fits within hero-art's height without being
       cropped at the feet. */
    width: min(68vw, 272px);
    top: 0;
  }

  .hero-art .shuttle {
    width: 90px;
    right: 6%;
  }

  .hero-art .swoosh,
  .hero-art .splash {
    display: none;
  }

  .quick-facts { margin-top: -10px; }

  .fact-grid,
  .feature-grid,
  .session-grid {
    grid-template-columns: 1fr;
  }

  .fact {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .fact:last-child { border-bottom: 0; }

  .concept-visual {
    min-height: 320px;
    margin-top: 10px;
  }

  .concept-visual img { width: 520px; }

  .feature { min-height: 215px; }

  .session {
    min-height: 360px;
    padding: 30px 25px;
  }

  .session h3 { font-size: 2.2rem; }
  .price { font-size: 3.9rem; }

  .atmosphere-box {
    min-height: 660px;
    padding: 38px 26px;
    align-items: flex-start;
  }

  .atmosphere-content { max-width: 100%; }

  .atmosphere-art .lights {
    width: 620px;
    right: -230px;
    top: 270px;
    opacity: .55;
  }

  .atmosphere-art .racket {
    width: 250px;
    right: -20px;
    bottom: 20px;
  }

  .poster-layout { grid-template-columns: 1fr; }
  .poster {
    /* width: min(65%, 260px); */
    margin-inline: auto;
  }

  .cta-box { padding: 72px 22px; }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
