:root {
  --ink: #120609;
  --ink-soft: #25090e;
  --lava: #ff5017;
  --lava-light: #ff9b16;
  --moon: #fff0d2;
  --paper: #fff7e7;
  --muted: #cdb8aa;
  --line: rgba(255, 240, 210, 0.18);
  --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; }

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

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

.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; }

.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; }

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; }
  .actions { align-content: end; }
  .fine-print { grid-column: 1 / -1; }
  footer { padding: 26px 7vw 34px; }
}

@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; }
}
