:root {
  --night: #07131c;
  --deep: #0c1d2a;
  --panel: #122838;
  --line: rgba(244, 196, 48, .28);
  --sand: #f3ead8;
  --fog: #c9d4dc;
  --mute: #8ea0ad;
  --citrus: #f4c430;
  --citrus-2: #ffd76a;
  --coral: #ff5348;
  --coral-2: #ff7a6e;
  --ice: #7ed0ea;
  --mint: #3ecf9a;
  --ink: #081018;
  --display: "Tektur", "Arial Narrow", sans-serif;
  --head: "Ibarra Real Nova", Georgia, serif;
  --ui: "Sora", "Segoe UI", sans-serif;
  --mono: "Chivo Mono", ui-monospace, monospace;
  --max: 1160px;
  --shadow: 8px 8px 0 #041016;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--ui);
  color: var(--sand);
  background:
    radial-gradient(900px 420px at 88% -8%, rgba(244, 196, 48, .12), transparent 50%),
    radial-gradient(700px 380px at -10% 20%, rgba(126, 208, 234, .08), transparent 46%),
    repeating-linear-gradient(180deg, rgba(255,255,255,.015) 0 1px, transparent 1px 7px),
    var(--night);
  line-height: 1.7;
  min-height: 100%;
}
body.nav-lock { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input { font: inherit; }
.wrap { width: min(var(--max), calc(100% - 28px)); margin-inline: auto; }

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: var(--citrus);
  color: var(--ink);
  padding: 8px 12px;
  z-index: 90;
  font-weight: 700;
}
.skip:focus { top: 12px; }

.tape {
  background: var(--citrus);
  color: var(--ink);
  overflow: hidden;
  border-bottom: 3px solid #c49212;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}
.tape-track {
  display: flex;
  gap: 38px;
  width: max-content;
  animation: reel 36s linear infinite;
  padding: 8px 0;
  white-space: nowrap;
}
.tape b { font-weight: 700; }
@keyframes reel {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.mast {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 19, 28, .9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.mast.is-tight { box-shadow: 0 10px 28px rgba(0,0,0,.35); }
.mast-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 74px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  border: 2px solid var(--citrus);
  background:
    linear-gradient(90deg, var(--citrus) 0 8px, var(--deep) 8px);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  color: var(--sand);
  letter-spacing: .02em;
  box-shadow: 4px 4px 0 #041016;
}
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy small {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  color: var(--citrus);
  text-transform: uppercase;
}
.brand-copy strong {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: .06em;
}
.desk-nav {
  display: flex;
  gap: 18px;
  justify-content: center;
  font-size: 14px;
}
.desk-nav a {
  text-decoration: none;
  color: var(--fog);
  position: relative;
}
.desk-nav a:hover,
.desk-nav a[aria-current="page"] { color: var(--sand); }
.desk-nav a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--citrus);
}
.cta-pair { display: flex; gap: 8px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  text-decoration: none;
  font-family: var(--display);
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  box-shadow: 4px 4px 0 #041016;
  transition: transform .15s ease, box-shadow .15s ease;
  font-size: 15px;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 #041016; }
.btn-in {
  background: var(--citrus);
  color: var(--ink);
  animation: pulse 1.8s ease-in-out infinite;
}
.btn-up {
  background: var(--coral);
  color: #fff;
  animation: pulse 1.8s ease-in-out infinite .3s;
}
@keyframes pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.12); }
}
.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 2px solid var(--citrus);
  background: var(--deep);
  color: var(--sand);
  box-shadow: 3px 3px 0 #041016;
}
.burger span,
.burger span::before,
.burger span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--sand);
  position: relative;
  margin: 0 auto;
}
.burger span::before,
.burger span::after {
  content: "";
  position: absolute;
  left: 0;
}
.burger span::before { top: -6px; }
.burger span::after { top: 6px; }

.launch {
  display: none;
  position: sticky;
  top: 74px;
  z-index: 40;
  background: #101f2b;
  border-bottom: 1px solid var(--line);
  padding: 8px 0;
}
.launch .cta-pair { justify-content: stretch; }
.launch .btn { flex: 1; }

.hero {
  padding: 34px 0 18px;
  position: relative;
}
.hero::before {
  content: "01";
  position: absolute;
  right: 4%;
  top: 18px;
  font-family: var(--display);
  font-size: clamp(72px, 16vw, 160px);
  color: rgba(244, 196, 48, .06);
  line-height: 1;
  pointer-events: none;
}
.kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ice);
  margin: 0 0 10px;
}
.hero h1 {
  font-family: var(--head);
  font-size: clamp(34px, 6vw, 68px);
  line-height: 1.05;
  margin: 0 0 16px;
  font-weight: 700;
  max-width: 16ch;
}
.lead {
  font-size: 18px;
  color: var(--fog);
  max-width: 62ch;
  margin: 0 0 22px;
}
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  align-items: center;
  margin-bottom: 22px;
  font-size: 13px;
  color: var(--mute);
}
.live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #163041;
  border: 1px solid rgba(62, 207, 154, .35);
  color: var(--mint);
  padding: 4px 10px;
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 11px;
}
.live i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 0 rgba(62, 207, 154, .7);
  animation: ping 1.6s infinite;
}
@keyframes ping {
  70% { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}

.stage {
  overflow: hidden;
  border: 2px solid var(--citrus);
  box-shadow: var(--shadow);
  background: var(--deep);
  margin: 10px 0 8px;
}
.stage-track {
  display: flex;
  transition: transform .55s ease;
}
.slide {
  min-width: 100%;
  padding: clamp(18px, 4vw, 36px);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 24px;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(244,196,48,.08), transparent 40%),
    var(--deep);
}
.slide h2 {
  font-family: var(--head);
  font-size: clamp(26px, 4vw, 40px);
  margin: 0 0 10px;
  line-height: 1.15;
}
.slide p { margin: 0 0 16px; color: var(--fog); }
.plate {
  border: 2px dashed rgba(244,196,48,.45);
  padding: 16px;
  background: #0a1824;
}
.plate span {
  display: block;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--citrus);
  margin-bottom: 8px;
}
.plate strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(18px, 3vw, 26px);
  letter-spacing: .04em;
  word-break: break-word;
}
.stage-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: #0a1824;
  border-top: 1px solid var(--line);
}
.dots { display: flex; gap: 8px; }
.dots button {
  width: 11px;
  height: 11px;
  padding: 0;
  border: 0;
  background: #355266;
  border-radius: 50%;
}
.dots button.is-on { background: var(--citrus); }
.nudge {
  width: 40px;
  height: 40px;
  border: 2px solid var(--citrus);
  background: transparent;
  color: var(--sand);
}
.nudge-wrap { display: flex; gap: 8px; }

.crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: var(--mute);
  margin: 18px 0 8px;
}
.crumb a { color: var(--ice); text-decoration: none; }
.crumb span { color: var(--sand); }

.notice {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 16px;
  align-items: center;
  background: var(--panel);
  border-left: 6px solid var(--citrus);
  padding: 16px 18px;
  margin: 18px 0 8px;
  box-shadow: var(--shadow);
}
.notice b {
  font-family: var(--display);
  letter-spacing: .08em;
  color: var(--citrus);
}
.notice p { margin: 0; color: var(--fog); }

.grid-3, .grid-2 { display: grid; gap: 16px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: 1.15fr .85fr; }
.section { padding: 42px 0; }
.section h2 {
  font-family: var(--head);
  font-size: clamp(28px, 4vw, 44px);
  margin: 0 0 12px;
  line-height: 1.15;
}
.section .intro { color: var(--fog); max-width: 70ch; margin: 0 0 22px; }
.ticket {
  background: var(--panel);
  border: 1px solid rgba(244,196,48,.18);
  padding: 20px 20px 18px;
  position: relative;
}
.ticket::before,
.ticket::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--night);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}
.ticket::before { left: -8px; }
.ticket::after { right: -8px; }
.ticket h3 {
  font-family: var(--head);
  font-size: 24px;
  margin: 0 0 8px;
}
.ticket p { margin: 0; color: var(--fog); }
.num {
  font-family: var(--display);
  color: var(--citrus);
  font-size: 20px;
  letter-spacing: .08em;
  margin-bottom: 8px;
}

.prose h2, .prose h3 {
  font-family: var(--head);
  line-height: 1.2;
}
.prose h2 { font-size: clamp(28px, 4vw, 42px); margin: 0 0 14px; }
.prose h3 { font-size: 26px; margin: 28px 0 10px; }
.prose p { color: var(--fog); margin: 0 0 14px; font-size: 17px; }
.prose ul { margin: 0 0 16px; padding-left: 18px; color: var(--fog); }
.prose li { margin: 0 0 8px; }
.article-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 22px;
  align-items: center;
  margin-bottom: 22px;
}
.cover {
  border: 2px solid var(--citrus);
  box-shadow: var(--shadow);
  min-height: 220px;
  background:
    linear-gradient(160deg, rgba(244,196,48,.16), transparent 42%),
    #102636;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cover strong {
  font-family: var(--display);
  font-size: clamp(40px, 7vw, 72px);
  letter-spacing: .04em;
  line-height: .9;
}
.cover span {
  font-family: var(--mono);
  color: var(--citrus);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
}

.steps { counter-reset: step; display: grid; gap: 12px; }
.step {
  background: var(--deep);
  border: 1px solid rgba(126,208,234,.16);
  padding: 14px 16px 14px 62px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 14px;
  top: 14px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--citrus);
  color: var(--ink);
  font-family: var(--display);
}
.step h3 { margin: 0 0 6px; font-family: var(--head); font-size: 22px; }
.step p { margin: 0; color: var(--fog); }

.midtape {
  background: #102636;
  border-block: 1px solid var(--line);
  overflow: hidden;
  margin: 10px 0;
}
.midtape .tape-track {
  color: var(--sand);
  animation-duration: 42s;
  animation-direction: reverse;
}
.midtape b { color: var(--citrus); }

.review {
  background: #102636;
  border: 2px solid rgba(244,196,48,.35);
  padding: 22px;
  box-shadow: var(--shadow);
}
.stars { color: var(--citrus); letter-spacing: 2px; font-size: 20px; margin: 0 0 8px; }
.review h3 { font-family: var(--head); margin: 0 0 8px; font-size: 28px; }
.score {
  font-family: var(--display);
  font-size: 54px;
  line-height: 1;
  color: var(--citrus);
}
.score small { font-size: 18px; color: var(--mute); }

.event {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  background: var(--panel);
  padding: 18px;
  border-top: 4px solid var(--coral);
}
.cal {
  width: 78px;
  background: var(--sand);
  color: var(--ink);
  text-align: center;
  padding: 10px 8px;
}
.cal b { display: block; font-family: var(--display); font-size: 34px; line-height: 1; }
.cal span { font-family: var(--mono); font-size: 11px; letter-spacing: .1em; }

.faq-item { border-bottom: 1px solid rgba(244,196,48,.16); }
.faq-item button {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  color: var(--sand);
  padding: 14px 0;
  font-family: var(--head);
  font-size: 22px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.faq-item button::after { content: "+"; color: var(--citrus); font-family: var(--display); }
.faq-item.is-open button::after { content: "–"; }
.faq-item .ans { display: none; color: var(--fog); padding: 0 0 14px; }
.faq-item.is-open .ans { display: block; }

.dock {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  background: rgba(7,19,28,.94);
  border-top: 2px solid var(--citrus);
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
}
.dock .cta-pair { max-width: 520px; margin: 0 auto; }
.dock .btn { flex: 1; }

@media (min-width: 1081px) {
  .dock { display: none; }
  .site-foot { padding-bottom: 48px; }
}

.site-foot {
  padding: 48px 0 96px;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 14px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .8fr;
  gap: 24px;
  margin-bottom: 24px;
}
.site-foot a { color: var(--ice); text-decoration: none; }
.site-foot h2 {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: .1em;
  color: var(--citrus);
  margin: 0 0 10px;
}
.fine { font-size: 12px; color: #6f8290; max-width: 80ch; }

.lang { display: flex; gap: 10px; flex-wrap: wrap; font-family: var(--mono); font-size: 12px; }
.lang a { border: 1px solid rgba(126,208,234,.3); padding: 4px 8px; }

@media (max-width: 1080px) {
  .desk-nav { display: none; }
  .burger { display: grid; place-items: center; }
  .mast-row { grid-template-columns: 1fr auto auto; }
  .cta-pair.desk-only { display: none; }
  .launch { display: block; }
  .slide, .article-hero, .grid-3, .grid-2, .foot-grid, .notice, .event {
    grid-template-columns: 1fr;
  }
  .hero h1 { max-width: none; }
  .ticket::before, .ticket::after { display: none; }
}

@media (max-width: 640px) {
  .btn { min-height: 46px; }
  .prose p { font-size: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}

.drawer {
  display: none;
  position: fixed;
  inset: 74px 0 0;
  background: rgba(7,19,28,.96);
  z-index: 45;
  padding: 22px;
}
.drawer.is-open { display: block; }
.drawer a {
  display: block;
  text-decoration: none;
  font-family: var(--head);
  font-size: 28px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(244,196,48,.14);
}
