:root {
  --blue: #0757d8;
  --blue-deep: #032d83;
  --blue-electric: #0a78ff;
  --yellow: #ffd800;
  --yellow-hot: #ffea24;
  --ink: #080808;
  --paper: #ffffff;
  --muted: rgba(255,255,255,.78);
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
html { background: var(--blue-deep); }
body {
  margin: 0;
  color: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 73% 36%, rgba(15,126,255,.9) 0 11%, rgba(15,126,255,0) 37%),
    radial-gradient(circle at 19% 74%, rgba(255,216,0,.16), transparent 28%),
    linear-gradient(137deg, #011b55 0%, #06368f 34%, #086ee9 72%, #031f65 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 45%, rgba(255,255,255,.055) 45.2% 46%, transparent 46.2% 100%),
    radial-gradient(circle at 50% -20%, rgba(255,255,255,.16), transparent 38%);
  z-index: 0;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: .07;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.halftone {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  opacity: .24;
  z-index: 0;
  background-image: radial-gradient(circle, #fff 1.8px, transparent 2px);
  background-size: 14px 14px;
  mask-image: radial-gradient(circle, #000 0 28%, transparent 71%);
}
.halftone-a { right: -90px; top: -70px; transform: rotate(8deg); }
.halftone-b { left: -130px; bottom: -90px; opacity: .12; transform: rotate(-13deg); }

.page-shell {
  position: relative;
  z-index: 2;
  width: min(1440px, 100%);
  min-height: 100vh;
  margin: 0 auto;
  padding: 26px clamp(22px, 4vw, 68px) 22px;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,.18);
  letter-spacing: .13em;
  font-size: clamp(.7rem, 1vw, .88rem);
  font-weight: 800;
}

.producer { display: flex; align-items: center; gap: 11px; white-space: nowrap; }
.producer b { color: var(--yellow); }
.producer-mark {
  width: 28px;
  height: 6px;
  display: inline-block;
  border-radius: 99px;
  background: var(--yellow);
  box-shadow: 12px -7px 0 -1px rgba(255,255,255,.94);
}
.season-pill {
  color: var(--ink);
  background: var(--yellow);
  border: 2px solid var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  transform: rotate(1.5deg);
  box-shadow: 4px 4px 0 rgba(0,0,0,.34);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: clamp(20px, 4vw, 70px);
  padding: clamp(34px, 7vh, 86px) 0 clamp(26px, 5vh, 56px);
}

.hero-copy { position: relative; z-index: 4; max-width: 680px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--paper);
  font-weight: 900;
  letter-spacing: .16em;
  font-size: clamp(.78rem, 1.1vw, 1rem);
}
.spark { color: var(--yellow); font-size: 1.1em; }

h1 {
  margin: 0;
  line-height: .82;
  text-transform: uppercase;
  letter-spacing: -.07em;
  filter: drop-shadow(0 16px 20px rgba(0,0,0,.25));
}
h1 span { display: block; }
.coming {
  width: max-content;
  color: var(--paper);
  font-size: clamp(4rem, 9vw, 8.3rem);
  font-weight: 1000;
  -webkit-text-stroke: clamp(1px, .12vw, 2px) var(--ink);
  text-shadow: 7px 7px 0 var(--ink), 10px 10px 0 var(--blue-electric);
  transform: rotate(-1deg);
}
.soon {
  width: max-content;
  margin-top: .08em;
  color: var(--yellow);
  font-size: clamp(4.4rem, 10vw, 9.4rem);
  font-weight: 1000;
  -webkit-text-stroke: clamp(1px, .12vw, 2px) var(--ink);
  text-shadow: 8px 8px 0 var(--ink), 11px 11px 0 rgba(255,255,255,.13);
  transform: rotate(.6deg);
}

.lead {
  margin: clamp(25px, 4vh, 38px) 0 24px;
  max-width: 580px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.55;
}
.lead strong { color: #fff; }

.message-card {
  max-width: 590px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: center;
  padding: 16px 18px;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  border: 3px solid var(--ink);
  border-radius: 18px 12px 18px 10px;
  box-shadow: 7px 8px 0 rgba(0,0,0,.34);
  transform: rotate(-.4deg);
}
.message-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 1.6rem;
  font-weight: 1000;
  color: var(--ink);
  background: var(--yellow);
  border: 3px solid var(--ink);
}
.message-kicker { font-weight: 1000; letter-spacing: .04em; }
.message-card p { margin: 3px 0 0; color: #292929; line-height: 1.35; font-weight: 650; }

.ticket-note {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-top: 24px;
  font-size: .95rem;
  color: rgba(255,255,255,.86);
}
.ticket-icon {
  color: var(--ink);
  background: var(--yellow);
  border-radius: 5px;
  padding: 5px 8px;
  transform: rotate(-4deg);
  box-shadow: 2px 2px 0 var(--ink);
}
.ticket-note b { color: #fff; }

.hero-art {
  position: relative;
  min-height: min(720px, 66vh);
  display: grid;
  place-items: center;
  isolation: isolate;
}

.logo-stage {
  position: relative;
  z-index: 3;
  width: min(650px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  animation: floatLogo 5.5s ease-in-out infinite;
}
.logo-stage::before {
  content: "";
  position: absolute;
  inset: 11% 10% 13%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,216,0,.25), rgba(4,68,184,.22) 48%, transparent 71%);
  filter: blur(16px);
  z-index: -1;
}
.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 34px 25px rgba(0,0,0,.26));
}

.burst { position: absolute; z-index: 0; pointer-events: none; }
.burst-one {
  width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: repeating-conic-gradient(from 0deg, rgba(255,216,0,.34) 0 3deg, transparent 3deg 13deg);
  mask-image: radial-gradient(circle, transparent 0 28%, #000 29% 66%, transparent 67%);
  animation: slowSpin 30s linear infinite;
}
.burst-two {
  width: 97%; aspect-ratio: 1; border-radius: 50%;
  border: 1px dashed rgba(255,255,255,.22);
  box-shadow: inset 0 0 80px rgba(255,255,255,.04);
}

.paper {
  position: absolute;
  z-index: 1;
  width: 78px;
  height: 96px;
  padding: 24px 14px 0;
  border: 3px solid #101010;
  border-radius: 5px;
  background: #fff;
  box-shadow: 7px 8px 0 rgba(0,0,0,.23);
  opacity: .96;
}
.paper i { display: block; height: 4px; margin-bottom: 8px; border-radius: 5px; background: #151515; opacity: .78; }
.paper-1 { left: 1%; top: 13%; transform: rotate(-14deg); animation: paperFloat 5s ease-in-out infinite; }
.paper-2 { right: 0; top: 22%; transform: rotate(12deg) scale(.83); animation: paperFloat 5.8s .7s ease-in-out infinite reverse; }
.paper-3 { right: 8%; bottom: 7%; transform: rotate(-8deg) scale(.72); animation: paperFloat 6.2s 1.2s ease-in-out infinite; opacity: .8; }

.bottom-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.18);
  font-size: clamp(.68rem, 1vw, .82rem);
  font-weight: 750;
  letter-spacing: .08em;
  color: rgba(255,255,255,.72);
}
.status-dot { display: flex; align-items: center; gap: 9px; }
.status-dot span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0 rgba(255,216,0,.65);
  animation: ping 2.2s infinite;
}
.domain { color: #fff; font-weight: 900; letter-spacing: .02em; }
.micro-copy { text-align: right; }

@keyframes floatLogo {
  0%,100% { transform: translateY(0) rotate(-.2deg); }
  50% { transform: translateY(-11px) rotate(.45deg); }
}
@keyframes slowSpin { to { transform: rotate(360deg); } }
@keyframes paperFloat {
  0%,100% { translate: 0 0; }
  50% { translate: 0 -13px; }
}
@keyframes ping {
  0% { box-shadow: 0 0 0 0 rgba(255,216,0,.6); }
  70% { box-shadow: 0 0 0 9px rgba(255,216,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,216,0,0); }
}

@media (max-width: 1050px) {
  .page-shell { min-height: auto; }
  .hero { grid-template-columns: 1fr; padding-top: 44px; }
  .hero-copy { max-width: 760px; }
  .hero-art { min-height: 540px; margin-top: -10px; }
  .logo-stage { width: min(590px, 92vw); }
  .paper-1 { left: 11%; }
  .paper-2 { right: 10%; }
  .paper-3 { right: 16%; }
  .bottom-strip { grid-template-columns: 1fr auto; }
  .micro-copy { display: none; }
}

@media (max-width: 650px) {
  .page-shell { padding: 18px 18px 16px; }
  .topbar { letter-spacing: .08em; }
  .producer { font-size: .64rem; }
  .season-pill { padding: 6px 10px; font-size: .62rem; }
  .hero { padding: 36px 0 18px; gap: 0; }
  .eyebrow { margin-bottom: 18px; }
  .coming { font-size: clamp(3.15rem, 19vw, 5.5rem); text-shadow: 5px 5px 0 var(--ink), 7px 7px 0 var(--blue-electric); }
  .soon { font-size: clamp(3.4rem, 20vw, 5.9rem); text-shadow: 5px 5px 0 var(--ink), 7px 7px 0 rgba(255,255,255,.13); }
  .lead { margin-top: 25px; font-size: 1rem; }
  .message-card { grid-template-columns: 40px 1fr; padding: 14px; border-width: 2px; box-shadow: 5px 6px 0 rgba(0,0,0,.3); }
  .message-icon { width: 40px; height: 40px; border-width: 2px; }
  .message-card p { font-size: .88rem; }
  .ticket-note { font-size: .82rem; }
  .hero-art { min-height: 390px; margin-top: 3px; }
  .logo-stage { width: min(430px, 105vw); }
  .paper { width: 55px; height: 70px; padding: 17px 9px 0; border-width: 2px; }
  .paper i { height: 3px; margin-bottom: 5px; }
  .paper-1 { left: 0; top: 10%; }
  .paper-2 { right: 0; top: 16%; }
  .paper-3 { right: 4%; bottom: 8%; }
  .bottom-strip { grid-template-columns: 1fr; gap: 9px; padding-top: 14px; }
  .domain { font-size: .78rem; }
}

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