:root {
  --ink: #120609;
  --ink-soft: #25090e;
  --lava: #ff5017;
  --lava-light: #ff9b16;
  --moon: #fff0d2;
  --paper: #fff7e7;
  --muted: #cdb8aa;
  --line: rgba(255, 240, 210, 0.18);
  --notice-red: #bd2332;
  --display: "Unbounded", sans-serif;
  --body: "DM Sans", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  color: var(--paper);
  background:
    radial-gradient(circle at 16% 38%, rgba(255, 80, 23, 0.08), transparent 34rem),
    var(--ink);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
input, textarea { font: inherit; }

::selection { color: var(--ink); background: var(--lava-light); }

.page-shell {
  position: relative;
  max-width: 1440px;
  min-width: 0;
  margin: 0 auto;
  overflow: hidden;
  background: var(--ink);
}

.availability-banner {
  position: sticky;
  z-index: 20;
  top: 0;
  padding-top: env(safe-area-inset-top, 0px);
  color: #fff7e7;
  background: var(--notice-red);
}

.availability-banner-inner {
  display: flex;
  min-height: 56px;
  max-width: 1440px;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 3vw, 32px);
  margin: 0 auto;
  padding: 6px 16px;
}

.availability-banner p { display: flex; align-items: center; gap: 9px; margin: 0; font-size: clamp(.75rem, 2.9vw, .9rem); }
.availability-banner-dot { flex: 0 0 6px; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.availability-banner-cta { display: inline-flex; min-height: 44px; align-items: center; gap: 9px; padding: 0 14px; border: 1px solid rgba(255,247,231,.48); border-radius: 999px; font-size: .78rem; font-weight: 700; white-space: nowrap; }
.availability-banner-cta:hover { color: var(--notice-red); background: var(--paper); }
.availability-banner-cta[hidden] { display: none; }
.availability-banner-cta:focus-visible { outline-offset: 2px; }
#tickets, #booking-form { scroll-margin-top: calc(72px + env(safe-area-inset-top, 0px)); }

.topbar {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  display: flex;
  width: min(100%, 1440px);
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px;
  transform: translateX(-50%);
}

.brand img {
  display: block;
  width: 132px;
  height: auto;
}

.mini-cta {
  padding: 10px 16px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  font-weight: 700;
  backdrop-filter: blur(14px);
  background: rgba(18, 6, 9, .32);
}

.hero {
  position: relative;
  min-height: 720px;
  height: 100svh;
  isolation: isolate;
}

.hero-art,
.hero-art img,
.art-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-art img {
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(.95) contrast(1.03);
  animation: hero-awake 1.4s cubic-bezier(.2,.7,.2,1) both;
}

.art-vignette {
  background:
    linear-gradient(180deg, rgba(10,1,4,.68) 0%, transparent 20%, transparent 62%, var(--ink) 100%),
    linear-gradient(90deg, rgba(14,3,6,.30), transparent 45%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 112px 20px 64px;
}

.event-kicker,
.section-intro {
  margin: 0 0 10px;
  color: var(--lava-light);
  font-weight: 700;
  letter-spacing: .01em;
}

h1,
h2,
h3,
p { margin-top: 0; }

h1 {
  max-width: 8ch;
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(2.95rem, 14.2vw, 7rem);
  line-height: .82;
  letter-spacing: -.075em;
  text-transform: uppercase;
}

h1 span {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--moon);
}

.tagline {
  margin-bottom: 20px;
  font-size: 1.06rem;
  line-height: 1.25;
}

.date-lockup {
  display: flex;
  align-items: flex-end;
  color: var(--moon);
  font-family: var(--display);
  line-height: .8;
}

.date-day,
.date-month {
  font-size: clamp(2.75rem, 13vw, 5.4rem);
  letter-spacing: -.09em;
}

.date-dot {
  padding: 0 2px 2px;
  color: var(--lava);
  font-size: 2.5rem;
}

.date-meta {
  margin-left: 13px;
  padding-left: 13px;
  border-left: 1px solid rgba(255,255,255,.42);
  font-family: var(--body);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.15;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 66px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: .72rem;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--muted), transparent);
}

.countdown-section {
  padding: 72px 20px 80px;
  background: var(--paper);
  color: var(--ink);
}

.section-copy h2,
.ticket-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.15rem, 9vw, 4.6rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.countdown {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  margin-top: 44px;
}

.time-unit {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
}

.time-unit strong {
  font-family: var(--display);
  font-size: clamp(2.05rem, 11vw, 5.3rem);
  line-height: 1;
  letter-spacing: -.08em;
}

.time-unit span {
  margin-top: 8px;
  color: #755d54;
  font-size: .73rem;
  font-weight: 700;
}

.time-separator {
  margin-top: .18em;
  color: var(--lava);
  font-family: var(--display);
  font-size: clamp(1.8rem, 9vw, 4.4rem);
  line-height: 1;
}

.seconds-unit,
.seconds-separator { display: none; }

.details {
  display: grid;
  gap: 1px;
  padding: 1px 0;
  background: var(--line);
}

.detail-card {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  min-height: 166px;
  align-items: center;
  gap: 18px;
  padding: 26px 20px;
  overflow: hidden;
  background: var(--ink-soft);
}

.detail-card p {
  margin-bottom: 3px;
  color: var(--lava-light);
  font-size: .8rem;
  font-weight: 700;
}

.detail-card h3 {
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 1.18rem;
  letter-spacing: -.04em;
}

.detail-card span,
.detail-card small { color: var(--muted); }

.detail-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--moon);
  font-size: 2.15rem;
  transform: rotate(-16deg);
}

.detail-icon.pin {
  position: relative;
  border-radius: 50% 50% 50% 0;
  background: var(--lava);
  transform: rotate(-45deg);
}

.detail-icon.pin::after {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--ink);
  content: "";
}

.location-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  border: 0;
  border-bottom: 1px dashed rgba(205,184,170,.45);
  cursor: pointer;
  background: transparent;
}

.location-trigger .lock { color: var(--lava-light); }
#location-note { display: block; max-width: 32ch; margin-top: 11px; line-height: 1.35; }
#location-note[hidden] { display: none; }

.price-bubble {
  display: grid;
  width: 66px;
  height: 66px;
  place-content: center;
  border-radius: 42% 58% 51% 49% / 47% 45% 55% 53%;
  color: var(--ink);
  background: var(--lava-light);
  text-align: center;
  transform: rotate(6deg);
}

.price-bubble strong { font-family: var(--display); font-size: 1.28rem; line-height: 1; }
.price-bubble span { color: var(--ink); font-size: .56rem; font-weight: 800; }

.tickets {
  position: relative;
  padding: 76px 20px 50px;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 75%, rgba(255,80,23,.22), transparent 16rem),
    var(--ink);
}

.tickets::after {
  position: absolute;
  right: -76px;
  bottom: 80px;
  width: 190px;
  height: 190px;
  border: 30px solid rgba(255,80,23,.12);
  border-radius: 50%;
  content: "";
}

.availability {
  position: relative;
  z-index: 1;
  margin-bottom: 62px;
}

.availability-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: .83rem;
}

.availability-row strong { color: var(--lava-light); }

.spots-track {
  position: relative;
  height: 30px;
  padding: 4px;
  overflow: hidden;
  border: 1px solid rgba(255, 149, 31, .18);
  border-radius: 14px 18px 13px 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .025), transparent 42%),
    #26080e;
  box-shadow:
    inset 0 4px 12px rgba(0, 0, 0, .62),
    0 1px 0 rgba(255, 240, 210, .04);
}

.magma-fill {
  position: relative;
  display: block;
  width: var(--progress);
  height: 100%;
  overflow: hidden;
  border-radius: 10px 13px 9px 12px;
  background:
    radial-gradient(ellipse at 18% 110%, #ffca3a 0 10%, transparent 34%),
    radial-gradient(ellipse at 62% -20%, #ffaf18 0 8%, transparent 31%),
    linear-gradient(105deg, #d82a0a 0%, #ff4813 24%, #ff8f16 47%, #ff4f12 70%, #d6290a 100%);
  background-size: 150% 100%, 170% 100%, 230% 100%;
  box-shadow:
    0 0 16px rgba(255, 72, 15, .52),
    inset 0 -4px 6px rgba(120, 9, 5, .34),
    inset 0 3px 5px rgba(255, 210, 81, .24);
  animation: magma-current 5.2s linear infinite, magma-breathe 2.8s ease-in-out infinite alternate;
}

.magma-fill::before {
  position: absolute;
  inset: -60% auto -60% -38%;
  width: 34%;
  background: linear-gradient(90deg, transparent, rgba(255, 240, 155, .78), transparent);
  filter: blur(2px);
  transform: skewX(-18deg);
  content: "";
  animation: magma-glint 4.8s ease-in-out infinite;
}

.magma-fill::after {
  position: absolute;
  top: 2px;
  right: -3px;
  width: 19px;
  height: 18px;
  border-radius: 58% 42% 51% 49% / 45% 61% 39% 55%;
  background: #ff6713;
  box-shadow: inset 3px 2px 4px rgba(255, 192, 47, .5), -5px 0 9px rgba(255, 119, 18, .7);
  content: "";
  animation: magma-edge 2.4s ease-in-out infinite alternate;
}

.magma-fill i {
  position: absolute;
  z-index: 1;
  bottom: -8px;
  left: var(--x);
  display: block;
  width: var(--size);
  height: var(--size);
  border: 1px solid rgba(255, 229, 129, .58);
  border-radius: 50%;
  background: rgba(116, 14, 6, .38);
  box-shadow: inset 0 0 3px rgba(255, 211, 75, .55);
  animation: magma-rise 3.2s var(--delay) ease-in infinite;
}

.ticket-copy { position: relative; z-index: 1; }
.ticket-copy h2 { max-width: 10ch; }
.ticket-copy > p:last-child { max-width: 34ch; margin: 18px 0 32px; color: var(--muted); line-height: 1.55; }

.door-admission { position: relative; z-index: 1; align-self: start; padding: 28px 24px; border: 1px solid rgba(255,155,22,.35); border-radius: 24px; background: var(--ink-soft); }
.door-admission-label { margin-bottom: 20px; color: var(--moon); font-size: .9rem; font-weight: 700; }
.door-admission-price { display: flex; align-items: center; gap: 20px; }
.door-admission-price > strong { color: var(--lava-light); font-family: var(--display); font-size: clamp(2.8rem, 12vw, 4rem); line-height: 1; letter-spacing: -.07em; white-space: nowrap; }
.door-admission-price > span { color: var(--muted); font-size: .82rem; line-height: 1.6; }
.door-admission-condition { margin: 18px 0 24px; color: var(--moon); font-weight: 700; }
.door-admission-policy { padding-top: 22px; border-top: 1px solid var(--line); font-size: .88rem; line-height: 1.55; }
.door-admission-policy > p { margin: 8px 0 0; color: var(--muted); }
.door-admission-existing { margin: 24px 0 0; color: var(--muted); font-size: .75rem; line-height: 1.5; }
body[data-presales="closed"] .ticket-copy h2 { font-size: clamp(2rem, 8.5vw, 3.6rem); }
.booking-flow[hidden], .availability[hidden] { display: none; }

.booking-flow {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.booking-step {
  padding: 22px;
  border: 1px solid rgba(255, 240, 210, .16);
  border-radius: 24px;
  background: rgba(37, 9, 14, .82);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .2);
}

.booking-step[hidden] { display: none; }

.step-heading {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 22px;
}

.step-number {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lava-light);
  font-family: var(--display);
  font-size: .78rem;
}

.step-heading h3 {
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 1.08rem;
  letter-spacing: -.035em;
}

.step-heading p {
  margin: 0;
  color: var(--muted);
  font-size: .82rem;
  line-height: 1.35;
}

.quantity-control {
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  min-height: 66px;
  align-items: stretch;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 240, 210, .14);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(18, 6, 9, .72);
}

.quantity-control button {
  border: 0;
  cursor: pointer;
  background: rgba(255,255,255,.045);
  font-size: 1.6rem;
}

.quantity-control button:disabled { cursor: not-allowed; opacity: .3; }

.quantity-control div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 240, 210, .1);
  border-left: 1px solid rgba(255, 240, 210, .1);
}

.quantity-control strong {
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1;
}

.quantity-control span { margin-top: 4px; color: var(--muted); font-size: .7rem; }

.guest-fields { display: grid; gap: 11px; margin-bottom: 16px; }

.guest-row {
  display: grid;
  grid-template-columns: 28px 1fr 1fr;
  align-items: center;
  gap: 8px;
}

.guest-index {
  color: var(--lava-light);
  font-family: var(--display);
  font-size: .72rem;
}

.field { display: block; min-width: 0; }
.field > span { display: block; margin-bottom: 7px; color: var(--muted); font-size: .75rem; font-weight: 700; }

.field input,
.paypal-note-wrap textarea {
  width: 100%;
  border: 1px solid rgba(255, 240, 210, .18);
  border-radius: 13px;
  outline: 0;
  color: var(--paper);
  background: rgba(18, 6, 9, .86);
}

.field input { height: 49px; padding: 0 13px; }
.field input::placeholder { color: #725b58; }
.field input:focus, .paypal-note-wrap textarea:focus { border-color: var(--lava-light); box-shadow: 0 0 0 3px rgba(255,155,22,.12); }
.field input[aria-invalid="true"] { border-color: #ff7350; }
.field small { display: block; margin-top: 6px; color: #876e68; font-size: .68rem; }

@keyframes magma-autofill-detected {
  from { opacity: .999; }
  to { opacity: 1; }
}

.guest-row input:-webkit-autofill {
  animation: magma-autofill-detected .001s;
}

.payer-fields {
  display: grid;
  gap: 12px;
  margin: 20px 0 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 240, 210, .1);
}

.form-error {
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: #ffd8ca;
  background: rgba(255, 80, 23, .13);
  font-size: .76rem;
}

.sold-out-state[hidden] { display: none; }

.sold-out-state {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 28px 20px;
  border: 1px solid rgba(255, 240, 210, .14);
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(180deg, rgba(63, 15, 18, .42), rgba(18, 6, 9, .72));
}

.sold-out-state h3 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(1.45rem, 7vw, 2.2rem);
  line-height: 1;
}

.sold-out-state p {
  margin: 0;
  color: var(--muted);
  font-size: .86rem;
}

.sold-out-ember {
  width: 38px;
  height: 5px;
  margin-bottom: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, #ff8a1f, transparent);
  box-shadow: 0 0 18px rgba(255, 83, 25, .55);
}

.form-continue,
.copy-note {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.form-continue strong {
  padding: 9px 12px;
  border-radius: 12px;
  color: var(--paper);
  background: var(--ink);
}

.form-continue:disabled {
  cursor: wait;
  opacity: .65;
}

.save-note {
  max-width: 48ch;
  margin: 12px auto 0;
  color: #947b73;
  font-size: .68rem;
  line-height: 1.45;
  text-align: center;
}

.booking-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 15px;
  padding: 14px 15px;
  border-radius: 15px;
  background: rgba(255, 240, 210, .06);
}

.booking-summary span { color: var(--muted); font-size: .78rem; }
.booking-summary strong { font-family: var(--display); font-size: 1.05rem; }

.paypal-note-wrap { margin-bottom: 12px; }

.paypal-note-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 700;
}

.note-status { color: var(--lava-light); }
.note-status.is-copied { color: #ffd054; }

.paypal-note-wrap textarea {
  display: block;
  min-height: 104px;
  padding: 12px 13px;
  resize: none;
  color: #ead9cb;
  font-size: .78rem;
  line-height: 1.45;
}

.copy-note { margin-bottom: 10px; }
.copy-note.is-copied { background: var(--lava-light); }
.copy-icon { font-size: .95rem; }

.payment-locked {
  margin-bottom: 12px;
  transition: opacity .2s ease, border-color .2s ease, background-color .2s ease;
}

.payment-locked[aria-disabled="true"] {
  pointer-events: none;
  opacity: .38;
}

.payment-locked.is-ready {
  border-color: rgba(255, 155, 22, .55);
  background: rgba(255, 155, 22, .08);
}

.payment-lock {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.07);
}

.safety-net {
  display: grid;
  gap: 4px;
  padding: 13px 14px;
  border-left: 2px solid var(--lava);
  color: var(--muted);
  background: rgba(255, 80, 23, .07);
  font-size: .74rem;
  line-height: 1.4;
}

.safety-net strong { color: var(--paper); }

.actions {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.primary-cta,
.secondary-cta {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px;
  font-weight: 800;
}

.primary-cta {
  padding: 7px 7px 7px 21px;
  color: var(--ink);
  background: var(--lava);
  box-shadow: 0 16px 50px rgba(255,80,23,.22);
}

.cta-orb {
  display: grid;
  width: 47px;
  height: 47px;
  place-items: center;
  border-radius: 50%;
  color: var(--paper);
  background: var(--ink);
  font-size: 1.25rem;
}

.secondary-cta {
  padding: 0 21px;
  border: 1px solid rgba(255,255,255,.25);
}

.secondary-cta.is-disabled {
  cursor: not-allowed;
  opacity: .5;
}

.fine-print {
  margin: 26px 0 0;
  color: #876e68;
  font-size: .7rem;
  text-align: center;
}

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 20px 28px;
  border-top: 1px solid var(--line);
}

footer img { width: 106px; }
footer p { margin: 0; color: #876e68; font-size: .7rem; }

.payment-dialog {
  width: min(calc(100% - 28px), 470px);
  max-width: none;
  padding: 0;
  border: 0;
  overflow: visible;
  color: var(--paper);
  background: transparent;
}

.payment-dialog::backdrop {
  background: rgba(7, 1, 3, .82);
  backdrop-filter: blur(10px);
}

.payment-dialog-panel {
  position: relative;
  padding: 30px 22px 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 217, 172, .18);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0, rgba(255, 102, 18, .2), transparent 15rem),
    linear-gradient(160deg, #2b0a10, #100508 72%);
  box-shadow: 0 34px 100px rgba(0, 0, 0, .58);
}

.payment-dialog-panel::after {
  position: absolute;
  right: -64px;
  bottom: -80px;
  width: 170px;
  height: 170px;
  border: 22px solid rgba(255, 84, 18, .08);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.payment-dialog-close {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
  color: var(--muted);
  background: rgba(0,0,0,.18);
  cursor: pointer;
  font-size: 1.35rem;
}

.payment-dialog-ember {
  display: block;
  width: 58px;
  height: 6px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, #c51b0a, #ff9b16, #ff4511);
  box-shadow: 0 0 22px rgba(255, 81, 16, .62);
  animation: magma-breathe 2.8s ease-in-out infinite alternate;
}

.payment-dialog-kicker {
  margin: 0 0 8px;
  color: var(--lava-light);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.payment-dialog h2 {
  max-width: 11ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.75rem, 8vw, 2.45rem);
  letter-spacing: -.055em;
  line-height: .98;
}

.payment-dialog-recap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 22px 0 14px;
  padding: 13px 15px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 15px;
  background: rgba(0,0,0,.18);
}

.payment-dialog-recap span { color: var(--muted); font-size: .78rem; }
.payment-dialog-recap strong { color: var(--lava-light); font-family: var(--display); font-size: 1.18rem; }
.payment-dialog-copy { margin: 0 0 18px; color: #cbb6aa; font-size: .88rem; line-height: 1.5; }

.payment-dialog-actions { position: relative; z-index: 1; display: grid; gap: 10px; }
.payment-dialog-actions[hidden] { display: none; }

.payment-choice {
  display: grid;
  gap: 3px;
  width: 100%;
  min-height: 64px;
  align-content: center;
  padding: 10px 17px;
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
}

.payment-choice span { font-weight: 800; }
.payment-choice small { font-size: .68rem; opacity: .72; }
.payment-choice-paid { border: 0; color: #1b0709; background: var(--lava-light); }
.payment-choice:disabled { cursor: wait; opacity: .48; }

.payment-reopen,
.payment-dialog-done {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  margin-top: 12px;
  padding: 13px 16px;
  border: 0;
  border-radius: 14px;
  color: var(--paper);
  background: transparent;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
}

.payment-reopen { border: 1px dashed rgba(255,255,255,.18); }
.payment-reopen.is-required { border-style: solid; border-color: var(--lava-light); color: var(--lava-light); }
.payment-dialog-done { background: var(--lava); }
.payment-dialog-done[hidden], .payment-reopen[hidden] { display: none; }

.payment-dialog-note { margin: 12px 10px 0; color: #8f746c; font-size: .67rem; line-height: 1.4; text-align: center; }

body:has(.payment-dialog[open], .presale-dialog[open]) { overflow: hidden; }

.presale-dialog {
  width: min(calc(100% - 28px), 460px);
  max-width: none;
  max-height: calc(100svh - 32px);
  margin: auto;
  padding: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid rgba(255,240,210,.2);
  border-radius: 24px;
  color: var(--paper);
  background: var(--ink-soft);
  box-shadow: 0 28px 90px rgba(0,0,0,.5);
}

.presale-dialog::backdrop { background: rgba(12,2,5,.76); backdrop-filter: blur(6px); }
.presale-dialog[open] { animation: presale-arrive .24s ease-out; }
.presale-dialog-heading { position: relative; padding: 24px 24px 26px; background: var(--notice-red); }
.presale-dialog-heading > p { margin: 0 48px 22px 0; font-size: .85rem; font-weight: 700; }
.presale-dialog h2 { margin: 0; font-family: var(--display); font-size: clamp(1.75rem, 7.5vw, 2.45rem); line-height: 1.08; letter-spacing: -.055em; }
.presale-dialog h2:focus { outline: none; }
.presale-dialog-close { position: absolute; top: 12px; right: 12px; display: grid; width: 44px; height: 44px; place-items: center; padding: 0; border: 1px solid rgba(255,247,231,.4); border-radius: 50%; cursor: pointer; color: var(--paper); background: transparent; font-size: 1.6rem; line-height: 1; }
.presale-dialog-close:hover { background: rgba(0,0,0,.12); }
.presale-dialog-body { padding: 22px 24px 12px; }
.presale-dialog-intro { margin-bottom: 20px; font-size: .95rem; line-height: 1.45; }
.presale-prices { display: grid; grid-template-columns: 1fr 1fr; margin-bottom: 22px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.presale-prices-closed { grid-template-columns: 1fr; }
.presale-prices > div { display: grid; gap: 6px; }
.presale-prices > div + div { padding-left: 18px; border-left: 1px solid var(--line); }
.presale-prices span { font-size: .78rem; }
.presale-prices strong { font-family: var(--display); font-size: 2rem; line-height: 1.2; letter-spacing: -.06em; }
.presale-price-advance strong { color: var(--lava-light); }
.presale-prices small { color: var(--muted); font-size: .72rem; }
.presale-dialog-policy { margin-bottom: 22px; color: var(--muted); font-size: .83rem; line-height: 1.55; }
.presale-dialog-policy strong { display: block; margin-bottom: 5px; color: var(--paper); }
.presale-dialog-cta { display: flex; min-height: 56px; align-items: center; justify-content: space-between; gap: 12px; padding: 12px 16px; border-radius: 14px; color: var(--ink); background: var(--lava-light); font-size: .9rem; font-weight: 700; }
.presale-dialog-cta strong { white-space: nowrap; }
.presale-dialog-cta:hover { background: var(--moon); }
.presale-dialog-dismiss { display: block; width: 100%; min-height: 44px; margin-top: 7px; padding: 10px; border: 0; cursor: pointer; color: var(--muted); background: transparent; font-size: .8rem; text-decoration: underline; text-underline-offset: 3px; }
.presale-dialog-dismiss:hover { color: var(--paper); }

@keyframes presale-arrive {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-height: 650px) {
  .presale-dialog-heading { padding: 18px 20px; }
  .presale-dialog-heading > p { margin-bottom: 16px; }
  .presale-dialog h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .presale-dialog-body { padding: 16px 20px 8px; }
  .presale-dialog-intro, .presale-dialog-policy { margin-bottom: 16px; }
  .presale-prices { margin-bottom: 16px; padding-bottom: 14px; }
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--moon);
  outline-offset: 4px;
}

@keyframes hero-awake {
  from { opacity: 0; transform: scale(1.06); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes magma-current {
  to { background-position: -150% 0, 170% 0, -230% 0; }
}

@keyframes magma-glint {
  0%, 18% { left: -38%; opacity: 0; }
  32% { opacity: .8; }
  58%, 100% { left: 112%; opacity: 0; }
}

@keyframes magma-breathe {
  from { filter: brightness(.94) saturate(1.08); transform: scaleY(.96); }
  to { filter: brightness(1.1) saturate(1.18); transform: scaleY(1); }
}

@keyframes magma-edge {
  from { transform: scale(.9) rotate(-8deg); }
  to { transform: scale(1.08) rotate(7deg); }
}

@keyframes magma-rise {
  0% { opacity: 0; transform: translateY(0) scale(.7); }
  28% { opacity: .8; }
  78% { opacity: .55; }
  100% { opacity: 0; transform: translateY(-22px) scale(1.15); }
}

@media (min-width: 760px) {
  .topbar { padding: 28px 42px; }
  .brand img { width: 164px; }
  .hero { min-height: 820px; }
  .hero-copy { padding: 150px 7vw 110px; }
  .hero-art img { object-position: center 42%; }
  .scroll-cue { right: 44px; bottom: 74px; }
  .countdown-section { display: grid; grid-template-columns: .85fr 1.15fr; align-items: end; gap: 8vw; padding: 100px 7vw; }
  .countdown { margin-top: 0; }
  .seconds-unit, .seconds-separator { display: flex; }
  .countdown { grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr; }
  .details { grid-template-columns: repeat(3, 1fr); }
  .detail-card { min-height: 225px; grid-template-columns: 1fr; align-content: center; }
  .tickets { display: grid; grid-template-columns: minmax(240px, .8fr) minmax(320px, 1.15fr); column-gap: 10vw; padding: 110px 7vw 70px; }
  .availability { grid-column: 1 / -1; }
  .booking-flow { align-self: end; }
  .payer-fields { grid-template-columns: 1fr 1fr; }
  .fine-print { grid-column: 1 / -1; }
  footer { padding: 26px 7vw 34px; }
  .payment-dialog-panel { padding: 34px 30px 26px; }
}

@media (min-width: 1100px) {
  .hero-copy { justify-content: center; padding-top: 210px; padding-bottom: 90px; }
  .hero-art img { object-position: 72% 48%; }
  .art-vignette { background: linear-gradient(90deg, rgba(12,2,5,.9) 0%, rgba(12,2,5,.35) 42%, transparent 70%), linear-gradient(180deg, rgba(10,1,4,.45), transparent 30%, var(--ink) 100%); }
  h1 { font-size: 6.8rem; }
  .tagline { font-size: 1.2rem; }
  .countdown-section { padding-top: 130px; padding-bottom: 130px; }
  .detail-card { padding: 42px; }
  .primary-cta, .secondary-cta { transition: transform .2s ease, background-color .2s ease; }
  .primary-cta:hover { transform: translateY(-3px) rotate(-.4deg); background: var(--lava-light); }
  .secondary-cta:hover { transform: translateY(-2px); background: rgba(255,255,255,.06); }
}

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