/* ==========================================================
   Glow District Studio - Blacklight Paint Night
   Dark blacklight base + UV accents (cyan, pink, lime, violet)
   ========================================================== */

:root {
  --ink: #05020e;
  --panel: #0b1020;
  --panel-2: #120817;
  --shadow-violet: #160a2e;
  --cyan: #2bf6ff;
  --pink: #ff4fd8;
  --lime: #d7ff3f;
  --violet: #9d5cff;
  --white: #ffffff;
  --muted: #b9b3d6;
  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-body: "Inter", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

html, body {
  max-width: 100%;
  overflow-x: clip;
}
@supports not (overflow-x: clip) {
  html, body { overflow-x: hidden; }
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ---------- Accessibility: skip link + focus states ---------- */

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  padding: 12px 20px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid #FFD700;
  outline-offset: 2px;
}

a:focus,
button:focus {
  outline: 3px solid #FFD700;
  outline-offset: 2px;
}

img { max-width: 100%; height: auto; display: block; }

em { font-style: normal; }

/* ---------- Microbar + Nav ---------- */

.microbar {
  background: linear-gradient(90deg, var(--shadow-violet), var(--panel-2), var(--shadow-violet));
  border-bottom: 1px solid rgba(43, 246, 255, 0.35);
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 12px;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px clamp(16px, 4vw, 40px);
  background: rgba(5, 2, 14, 0.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  min-height: 44px;
}
.nav-brand img { width: 44px; height: 44px; object-fit: contain; }
.nav-brand em { color: var(--pink); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(100deg, var(--pink), var(--violet));
  color: var(--white);
  box-shadow: 0 0 22px rgba(255, 79, 216, 0.45), 0 4px 18px rgba(0, 0, 0, 0.5);
}
.btn-primary:hover { box-shadow: 0 0 34px rgba(255, 79, 216, 0.7), 0 4px 18px rgba(0, 0, 0, 0.5); }

.btn-alt {
  background: linear-gradient(100deg, var(--cyan), var(--violet));
  box-shadow: 0 0 22px rgba(43, 246, 255, 0.4), 0 4px 18px rgba(0, 0, 0, 0.5);
}
.btn-alt:hover { box-shadow: 0 0 34px rgba(43, 246, 255, 0.65), 0 4px 18px rgba(0, 0, 0, 0.5); }

.btn-ghost {
  border: 2px solid rgba(43, 246, 255, 0.7);
  color: var(--cyan);
  background: rgba(43, 246, 255, 0.06);
}
.btn-ghost:hover { background: rgba(43, 246, 255, 0.14); }

.btn-nav { min-height: 44px; padding: 10px 18px; font-size: 14px; }
.btn-wide { width: 100%; }

/* ---------- Pills + trust row ---------- */

.pill {
  display: inline-block;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1.5px solid var(--pink);
  color: var(--pink);
  background: rgba(255, 79, 216, 0.08);
}
.pill-cyan { border-color: var(--cyan); color: var(--cyan); background: rgba(43, 246, 255, 0.08); }
.pill-lime { border-color: var(--lime); color: var(--lime); background: rgba(215, 255, 63, 0.08); }
.pill-pink { border-color: var(--pink); color: var(--pink); background: rgba(255, 79, 216, 0.08); }

.trust-row {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  margin-top: 18px;
}

/* ---------- Color blobs ---------- */

.blob {
  position: absolute;
  width: 46vw;
  max-width: 560px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.5;
  pointer-events: none;
  will-change: transform;
}
.blob-cyan { background: radial-gradient(circle, var(--cyan), transparent 65%); top: -8%; left: -12%; }
.blob-pink { background: radial-gradient(circle, var(--pink), transparent 65%); top: 30%; right: -14%; }
.blob-lime { background: radial-gradient(circle, var(--lime), transparent 65%); bottom: -10%; left: 4%; opacity: 0.3; }
.blob-violet { background: radial-gradient(circle, var(--violet), transparent 65%); bottom: 8%; right: 14%; opacity: 0.45; }

/* ---------- Hero ---------- */

.hero { position: relative; height: 175vh; }

.hero-pin {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: clip;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 120% 70% at 50% 110%, rgba(157, 92, 255, 0.18), transparent 60%),
    var(--ink);
}

.hero-bigtype {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.1em;
  font-family: var(--font-display);
  font-size: clamp(64px, 13vw, 190px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.10);
  user-select: none;
  will-change: transform;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(880px, 92vw);
  text-align: center;
  padding: 96px 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(44px, 9.5vw, 110px);
  line-height: 1.02;
  letter-spacing: 0.015em;
  padding-bottom: 0.08em; /* protect descenders */
  text-shadow: 0 0 28px rgba(43, 246, 255, 0.35);
}
.hero-title .line { display: block; }
.hero-title .line-2 em {
  color: var(--lime);
  text-shadow: 0 0 24px rgba(215, 255, 63, 0.55);
}

.hero-object {
  position: relative;
  width: min(300px, 62vw);
  border-radius: 22px;
  padding: 10px;
  background: linear-gradient(160deg, rgba(43, 246, 255, 0.6), rgba(255, 79, 216, 0.6)) border-box;
  box-shadow: 0 0 40px rgba(43, 246, 255, 0.3), 0 0 80px rgba(255, 79, 216, 0.22), 0 24px 60px rgba(0, 0, 0, 0.6);
  will-change: transform;
}
.hero-object img { border-radius: 14px; }
.hero-object-tag {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  white-space: nowrap;
  background: var(--ink);
  border: 1.5px solid var(--cyan);
  color: var(--cyan);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-sub {
  font-size: clamp(17px, 2.4vw, 22px);
  font-weight: 700;
  color: var(--white);
  margin-top: 10px;
}

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

/* ---------- Ticker ---------- */

.ticker {
  overflow: hidden;
  border-top: 1px solid rgba(215, 255, 63, 0.4);
  border-bottom: 1px solid rgba(215, 255, 63, 0.4);
  background: var(--panel-2);
  padding: 12px 0;
}
.ticker-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lime);
  animation: ticker 28s linear infinite;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Urgency bar (Early Bird countdown) ---------- */

.urgency-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 16px;
  background: linear-gradient(100deg, rgba(255, 79, 216, 0.16), rgba(157, 92, 255, 0.16));
  border-bottom: 1px solid rgba(255, 79, 216, 0.4);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
}
.urgency-bar .js-countdown { color: var(--lime); text-shadow: 0 0 14px rgba(215, 255, 63, 0.45); }
.urgency-go { color: var(--cyan); }
.urgency-flash { font-size: 17px; }

/* slow heartbeat on the urgency bar; disabled under reduced motion below */
@keyframes urgencyPulse {
  0%, 100% { box-shadow: inset 0 0 0 rgba(255, 79, 216, 0); }
  50% { box-shadow: inset 0 0 34px rgba(255, 79, 216, 0.22); }
}
.urgency-bar { animation: urgencyPulse 2.6s ease-in-out infinite; }

/* Founding Member line in the final CTA */
.finale-founding {
  max-width: 52ch;
  margin: 4px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.finale-founding strong { color: var(--lime); }

/* ---------- Session price + seats-left ---------- */

.session-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}
.session-price strong { color: var(--lime); font-size: 18px; }

.seats-left {
  display: inline-block;
  align-self: flex-start;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1.5px solid var(--pink);
  background: rgba(255, 79, 216, 0.12);
  color: var(--pink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.seats-left[hidden] { display: none; }

/* ---------- Sticky mobile booking bar ---------- */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(5, 2, 14, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 79, 216, 0.45);
}
.sticky-cta-text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--lime);
  line-height: 1.3;
}
.sticky-cta .btn { min-height: 46px; padding: 10px 20px; font-size: 14px; flex-shrink: 0; }

@media (max-width: 860px) {
  .sticky-cta { display: flex; }
  /* keep the fixed bar from covering the footer's last lines */
  .footer { padding-bottom: 120px; }
}

/* ---------- Stats strip ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}
.stat {
  background: var(--ink);
  text-align: center;
  padding: 30px 12px;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1.1;
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(43, 246, 255, 0.5);
}
.stat span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Sections shared ---------- */

section { position: relative; }

.section-head {
  width: min(820px, 92vw);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding-top: clamp(60px, 9vw, 110px);
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(32px, 6vw, 64px);
  line-height: 1.08;
  letter-spacing: 0.01em;
}
.section-head h2 em { color: var(--pink); text-shadow: 0 0 22px rgba(255, 79, 216, 0.5); }
.section-sub { color: var(--muted); font-size: 17px; max-width: 56ch; }

/* ---------- Photo cards ---------- */

.photo-card {
  position: relative;
  border-radius: 20px;
  padding: 8px;
  background: var(--panel);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
}
.photo-card img { border-radius: 14px; width: 100%; object-fit: cover; }
.glow-cyan { box-shadow: 0 0 34px rgba(43, 246, 255, 0.22); border-color: rgba(43, 246, 255, 0.45); }
.glow-pink { box-shadow: 0 0 34px rgba(255, 79, 216, 0.22); border-color: rgba(255, 79, 216, 0.45); }
.glow-lime { box-shadow: 0 0 34px rgba(215, 255, 63, 0.18); border-color: rgba(215, 255, 63, 0.4); }
.glow-violet { box-shadow: 0 0 34px rgba(157, 92, 255, 0.26); border-color: rgba(157, 92, 255, 0.5); }

.photo-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--ink);
  border: 1.5px solid var(--violet);
  color: var(--white);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---------- Experience story rows ---------- */

.experience { padding-bottom: clamp(50px, 7vw, 90px); }

.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  width: min(1040px, 92vw);
  margin: clamp(44px, 7vw, 90px) auto 0;
}
.story-row .photo-card { max-width: 420px; justify-self: center; width: 100%; }
.story-row.flip .photo-card { order: 2; }
.story-row.flip .story-copy { order: 1; }

.step-num {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--lime);
  letter-spacing: 0.3em;
}
.story-copy h3 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.1;
  margin: 8px 0 12px;
}
.story-copy p { color: var(--muted); max-width: 46ch; }
.story-copy .step-num + h3 + p { color: var(--muted); }

/* ---------- Included ---------- */

.included { background: linear-gradient(180deg, var(--ink), var(--shadow-violet) 50%, var(--ink)); padding-bottom: clamp(60px, 8vw, 100px); }

.included-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: min(880px, 92vw);
  margin: 36px auto 0;
}
.included-grid li {
  background: var(--panel);
  border: 1.5px solid rgba(43, 246, 255, 0.4);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 0 18px rgba(43, 246, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.inc-ico { font-size: 30px; line-height: 1; }
.inc-sub {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--muted);
}
.included-note {
  text-align: center;
  color: var(--muted);
  font-size: 15px;
  margin-top: 22px;
}

/* ---------- Sessions ---------- */

.sessions { padding-bottom: clamp(60px, 8vw, 100px); }

.session-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 3vw, 32px);
  width: min(1040px, 92vw);
  margin: 40px auto 0;
}
.session-card {
  background: var(--panel);
  border: 1.5px solid rgba(255, 79, 216, 0.45);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(255, 79, 216, 0.14);
  display: flex;
  flex-direction: column;
}
.session-card figure { border-bottom: 1.5px solid rgba(255, 255, 255, 0.08); }
.session-card img { width: 100%; }
.session-body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.session-time {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 56px);
  line-height: 1;
  color: var(--white);
  text-shadow: 0 0 20px rgba(43, 246, 255, 0.45);
}
.session-time span { font-size: 0.45em; color: var(--cyan); }
.session-meta {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.session-body .btn { margin-top: auto; }

/* ---------- Glow Code ---------- */

.glowcode { padding: clamp(20px, 4vw, 40px) 0 clamp(60px, 8vw, 100px); }

.glowcode-panel {
  width: min(880px, 92vw);
  margin: 0 auto;
  background: var(--panel-2);
  border: 2px solid var(--cyan);
  border-radius: 26px;
  padding: clamp(28px, 5vw, 56px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: 0 0 50px rgba(43, 246, 255, 0.12);
}
.glowcode-panel h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.1;
}
.glowcode-panel h2 em { color: var(--cyan); text-shadow: 0 0 20px rgba(43, 246, 255, 0.55); }
.glowcode-panel > p { color: var(--muted); max-width: 56ch; }
.glowcode-panel strong { color: var(--white); }

.glowcode-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  width: 100%;
  margin-top: 10px;
}
.gc-step {
  background: var(--ink);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gc-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-weight: 800;
  font-size: 16px;
  box-shadow: 0 0 14px rgba(255, 79, 216, 0.6);
}
.gc-step p { font-size: 15px; color: var(--muted); }
.gc-step strong { color: var(--white); display: block; }

.glowcode-tag {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 20px;
  color: var(--lime);
  text-shadow: 0 0 16px rgba(215, 255, 63, 0.5);
  margin-top: 6px;
}

/* ---------- Glow Shot ---------- */

.glowshot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 64px);
  width: min(1040px, 92vw);
  margin: 0 auto;
  padding-bottom: clamp(60px, 8vw, 100px);
}
.glowshot .photo-card { max-width: 440px; justify-self: center; width: 100%; }
.glowshot-copy { display: flex; flex-direction: column; gap: 14px; align-items: flex-start; }
.glowshot-copy h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(32px, 5.5vw, 58px);
  line-height: 1.08;
}
.glowshot-copy h2 em { color: var(--violet); text-shadow: 0 0 22px rgba(157, 92, 255, 0.6); }
.glowshot-def {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  border-left: 3px solid var(--pink);
  padding-left: 14px;
}
.glowshot-copy p { color: var(--muted); max-width: 50ch; }
.glowshot-clarify {
  font-size: 14px;
  font-weight: 700;
  color: var(--lime) !important;
  letter-spacing: 0.02em;
}

/* ---------- Gallery ---------- */

.gallery { padding-bottom: clamp(60px, 8vw, 100px); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
  width: min(1180px, 94vw);
  margin: 40px auto 0;
}
.gallery-grid img { aspect-ratio: 3 / 4; }

/* ---------- FAQ ---------- */

.faq { padding-bottom: clamp(60px, 8vw, 100px); }
.faq-list {
  width: min(760px, 92vw);
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-list details {
  background: var(--panel);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 0 20px;
  transition: border-color 0.2s ease;
}
.faq-list details[open] { border-color: rgba(43, 246, 255, 0.55); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 16px;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 48px;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--font-display);
  color: var(--cyan);
  font-size: 22px;
  flex-shrink: 0;
}
.faq-list details[open] summary::after { content: "\2212"; }
.faq-list details p { color: var(--muted); padding-bottom: 18px; font-size: 15px; }

/* ---------- Finale ---------- */

.finale {
  position: relative;
  overflow: clip;
  background: linear-gradient(180deg, var(--ink), var(--shadow-violet));
  padding: clamp(80px, 12vw, 150px) 16px;
  text-align: center;
}
.finale .blob { opacity: 0.35; }
.finale .blob-pink { top: 4%; left: -10%; right: auto; }
.finale .blob-cyan { bottom: -10%; right: -10%; top: auto; left: auto; }

.finale-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.finale-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(52px, 11vw, 130px);
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  padding-bottom: 0.08em;
}
.finale-title em {
  color: var(--pink);
  text-shadow: 0 0 30px rgba(255, 79, 216, 0.65);
}
.finale-sub { color: var(--muted); font-size: 18px; font-weight: 600; }

/* ---------- Footer ---------- */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 44px 16px 56px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.footer img { width: 56px; height: 56px; object-fit: contain; }
.footer-brand {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 20px;
}
.footer-line { color: var(--muted); font-size: 14px; font-weight: 600; }
.footer-fine { color: rgba(185, 179, 214, 0.6); font-size: 12px; max-width: 64ch; margin-top: 10px; }

/* ---------- Dashboard pass: chips, tooltips, seat bar, disclosure ---------- */

/* numbers align like numbers (stats, times, prices, seat counts) */
.stat strong, .session-time, .session-price, .seats-left, .js-countdown {
  font-variant-numeric: tabular-nums;
}

/* trust row as chips: fixed categories become scannable objects */
.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  letter-spacing: normal;
}
.trust-chip {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.trust-chip:nth-child(1) { border-color: rgba(43, 246, 255, 0.3); }
.trust-chip:nth-child(2) { border-color: rgba(157, 92, 255, 0.35); }
.trust-chip:nth-child(3) { border-color: rgba(255, 79, 216, 0.3); }

/* session meta chips */
.meta-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.meta-chip {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* tooltip utility: data-tip on any element; hover devices only,
   touch users already see this copy in the page sections */
[data-tip] { position: relative; }
@media (hover: hover) {
  [data-tip] { cursor: help; }
  [data-tip]:hover::after, [data-tip]:focus-visible::after {
    content: attr(data-tip);
    position: absolute;
    bottom: calc(100% + 9px);
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: min(240px, 72vw);
    background: var(--panel);
    border: 1px solid rgba(43, 246, 255, 0.4);
    color: var(--white);
    font-size: 12.5px;
    font-weight: 600;
    line-height: 1.45;
    letter-spacing: 0.02em;
    text-transform: none;
    white-space: normal;
    text-align: center;
    padding: 8px 12px;
    border-radius: 10px;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.55);
    z-index: 70;
    pointer-events: none;
  }
}

/* seats bar: the remaining-seat number drawn as data.
   Color comes from the data (js/event-data.js sets low/mid classes):
   plenty left = lime, filling up = cyan, nearly gone = pink. */
.seats-bar {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.seats-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 10px rgba(215, 255, 63, 0.45);
  transition: width 0.7s ease;
}
.seats-bar.mid span { background: var(--cyan); box-shadow: 0 0 10px rgba(43, 246, 255, 0.45); }
.seats-bar.low span { background: var(--pink); box-shadow: 0 0 10px rgba(255, 79, 216, 0.5); }

/* story steps read as a sequence: numbers become timeline nodes */
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(215, 255, 63, 0.5);
  background: rgba(215, 255, 63, 0.06);
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
}

/* progressive disclosure + hierarchy on cards (hover devices only) */
@media (hover: hover) {
  .session-card, .photo-card { transition: transform 0.22s ease, box-shadow 0.22s ease; }
  .session-card:hover { transform: translateY(-4px); box-shadow: 0 0 44px rgba(255, 79, 216, 0.26); }
  .gallery .photo-card { overflow: hidden; }
  .gallery .photo-card img { transition: transform 0.35s ease; }
  .gallery .photo-card:hover img { transform: scale(1.035); }
  .gallery .photo-card:hover { transform: translateY(-3px); }
}

/* ---------- Prose pages (privacy.html, terms.html, press.html) ---------- */

.page-prose {
  width: min(760px, 92vw);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 80px) 0 clamp(50px, 8vw, 90px);
}
.page-prose h1 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(38px, 8vw, 72px);
  line-height: 1.05;
  margin: 16px 0 6px;
}
.page-prose h1 em { color: var(--cyan); text-shadow: 0 0 22px rgba(43, 246, 255, 0.5); }
.page-updated {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.page-prose h2 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  font-size: clamp(22px, 3.6vw, 30px);
  line-height: 1.15;
  margin: 38px 0 10px;
  color: var(--white);
}
.page-prose p { color: var(--muted); margin: 10px 0; }
.page-prose strong { color: var(--white); }
.page-prose ul { margin: 10px 0 10px 22px; color: var(--muted); }
.page-prose li { margin: 6px 0; }
.page-prose a { color: var(--cyan); font-weight: 700; }
.page-prose a.btn { color: var(--white); }
.page-back { margin-top: 44px; }
.press-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  overflow: hidden;
  margin: 26px 0 10px;
}
@media (max-width: 600px) {
  .press-stats { grid-template-columns: 1fr 1fr; }
}
.footer-line a { color: var(--muted); }

/* ---------- Scroll reveal (JS-gated so no blank sections without JS) ---------- */

html.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
html.js .reveal.in {
  opacity: 1;
  transform: none;
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  /* Static ticker: wrap the line instead of leaving it cut off mid-word */
  .ticker-track {
    animation: none;
    white-space: normal;
    width: auto;
    text-align: center;
    justify-content: center;
    padding: 0 16px;
  }
  .ticker-track span + span { display: none; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .hero-object, .hero-bigtype, .blob { transform: none !important; }
  .btn { transition: none; }
  .urgency-bar { animation: none; }
}

/* ---------- Mobile ---------- */

@media (max-width: 860px) {
  /* No pinned hero on mobile: a pinned section feels "stuck" under a
     thumb. The hero becomes a normal section that scrolls away
     immediately; the brush still tilts as it leaves the screen. */
  .hero { height: auto; }
  .hero-pin { position: relative; height: auto; min-height: 100svh; padding-bottom: 34px; overflow: visible; }
  .glowshot { grid-template-columns: 1fr; }
  .story-row { grid-template-columns: 1fr; gap: 22px; }
  .story-row.flip .photo-card { order: 0; }
  .story-row.flip .story-copy { order: 1; }
  .story-copy { text-align: center; }
  .story-copy p { margin-inline: auto; }
  .session-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .glowcode-steps { grid-template-columns: 1fr; }
  .included-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .glowshot-copy { align-items: center; text-align: center; }
  .glowshot-def { text-align: left; }
}

@media (max-width: 480px) {
  .hero-inner { padding-top: 80px; gap: 14px; }
  .hero-object { width: min(240px, 58vw); }
  .nav-brand span { display: none; }
  .included-grid li { font-size: 14px; padding: 18px 10px; }
  .ticker-track { font-size: 16px; }
}
