:root {
  --void: #050527;
  --void-2: #09093d;
  --night: #101044;
  --panel: rgba(12, 12, 54, 0.84);
  --panel-solid: #101044;
  --panel-bright: #171762;
  --line: rgba(255, 255, 255, 0.14);
  --line-hot: rgba(255, 42, 130, 0.42);
  --ink: #ffffff;
  --muted: #c9c8ea;
  --rose: #ff2b84;
  --gold: #ffffff;
  --acid: #54c7ff;
  --violet: #9a43ff;
  --blue: #5fc0ff;
  --green: #62f29a;
  --danger: #ff5c6d;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(135deg, #050527 0%, #09093d 52%, #050527 100%);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
  margin: 0;
  overflow-x: hidden;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  inset: 0;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 72%);
  pointer-events: none;
  position: fixed;
  z-index: -1;
}

button,
input,
select,
textarea {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  min-height: 100vh;
  overflow-x: clip;
  position: relative;
}

.comic-atmosphere {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  z-index: 1;
}

.comic-star,
.comic-spark,
.comic-speed {
  position: absolute;
  will-change: transform;
}

.comic-star {
  background: var(--ink);
  clip-path: polygon(50% 0, 58% 31%, 88% 12%, 70% 42%, 100% 50%, 70% 58%, 88% 88%, 58% 69%, 50% 100%, 42% 69%, 12% 88%, 30% 58%, 0 50%, 30% 42%, 12% 12%, 42% 31%);
  filter:
    drop-shadow(3px 0 0 #060617)
    drop-shadow(-3px 0 0 #060617)
    drop-shadow(0 3px 0 #060617)
    drop-shadow(0 -3px 0 #060617)
    drop-shadow(0 16px 30px rgba(84, 199, 255, 0.26));
  opacity: 0.82;
}

.comic-spark {
  background: linear-gradient(135deg, var(--rose), var(--acid));
  clip-path: polygon(50% 0, 64% 36%, 100% 50%, 64% 64%, 50% 100%, 36% 64%, 0 50%, 36% 36%);
  filter: drop-shadow(0 12px 24px rgba(255, 43, 132, 0.32));
  opacity: 0.78;
}

.comic-speed {
  background: repeating-linear-gradient(100deg, rgba(255, 43, 132, 0) 0 17px, rgba(255, 43, 132, 0.54) 17px 22px, rgba(84, 199, 255, 0.42) 22px 26px, rgba(255, 43, 132, 0) 26px 42px);
  height: 210px;
  opacity: 0.42;
  transform-origin: center;
  width: 320px;
}

.comic-star-one {
  animation: comicFloatA 12s ease-in-out infinite;
  height: 86px;
  left: 22px;
  top: 18%;
  width: 86px;
}

.comic-star-two {
  animation: comicFloatB 15s ease-in-out infinite;
  height: 122px;
  right: 28px;
  top: 58%;
  width: 122px;
}

.comic-star-three {
  animation: comicFloatA 16s ease-in-out infinite reverse;
  height: 48px;
  left: 12%;
  top: 76%;
  width: 48px;
}

.comic-star-four {
  animation: comicFloatB 18s ease-in-out infinite reverse;
  height: 66px;
  right: 16%;
  top: 22%;
  width: 66px;
}

.comic-spark-one {
  animation: comicSpin 13s linear infinite;
  height: 42px;
  left: 26%;
  top: 39%;
  width: 42px;
}

.comic-spark-two {
  animation: comicSpin 17s linear infinite reverse;
  bottom: 12%;
  height: 32px;
  right: 22%;
  width: 32px;
}

.comic-speed-one {
  animation: speedSweep 14s ease-in-out infinite;
  left: -90px;
  top: 48%;
}

.comic-speed-two {
  animation: speedSweep 16s ease-in-out infinite reverse;
  right: -110px;
  top: 12%;
}

@keyframes comicFloatA {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-10deg) scale(1);
  }

  50% {
    transform: translate3d(18px, -26px, 0) rotate(8deg) scale(1.08);
  }
}

@keyframes comicFloatB {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(12deg) scale(0.98);
  }

  50% {
    transform: translate3d(-18px, 22px, 0) rotate(-7deg) scale(1.06);
  }
}

@keyframes comicSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes speedSweep {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-18deg);
  }

  50% {
    transform: translate3d(28px, -16px, 0) rotate(-12deg);
  }
}

.topbar {
  align-items: center;
  background: rgba(7, 6, 11, 0.86);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 18px;
  grid-template-columns: auto minmax(0, 1fr) auto;
  padding: 14px clamp(16px, 4vw, 52px);
  position: sticky;
  top: 0;
  z-index: 80;
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  background: linear-gradient(135deg, var(--rose), var(--acid));
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 8px;
  box-shadow: 0 0 32px rgba(255, 43, 132, 0.45);
  color: #050527;
  display: grid;
  font-weight: 950;
  height: 44px;
  letter-spacing: 0;
  place-items: center;
  width: 44px;
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1;
}

.brand-text span {
  color: var(--acid);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-toggle {
  align-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  background: var(--ink);
  border-radius: 999px;
  content: "";
  display: block;
  height: 2px;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
  width: 19px;
}

.nav-toggle span::before {
  position: absolute;
  top: -6px;
}

.nav-toggle span::after {
  position: absolute;
  top: 6px;
}

.nav-open .nav-toggle span {
  background: transparent;
}

.nav-open .nav-toggle span::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span::after {
  transform: translateY(-6px) rotate(-45deg);
}

.nav {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: flex-end;
}

.nav a,
.nav-form button {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.9rem;
  font-weight: 900;
  min-height: 38px;
  padding: 9px 13px;
}

.nav a:hover,
.nav a.active,
.nav-form button:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--line);
  color: var(--ink);
}

.nav a.strong {
  background: var(--rose);
  color: white;
}

.nav-form {
  margin: 0;
}

.hero {
  background:
    linear-gradient(180deg, rgba(5, 5, 39, 0.6), rgba(5, 5, 39, 0.92)),
    linear-gradient(110deg, rgba(255, 43, 132, 0.24), transparent 42%, rgba(84, 199, 255, 0.18)),
    url("https://images.unsplash.com/photo-1612036782180-6f0b6cd846fe?auto=format&fit=crop&w=1900&q=82") center / cover;
  color: var(--ink);
  min-height: 720px;
  overflow: hidden;
  padding: clamp(52px, 8vw, 108px) clamp(18px, 6vw, 80px);
  position: relative;
}

.hero::after {
  background: linear-gradient(135deg, transparent 0 44%, rgba(255, 43, 132, 0.9) 44% 48%, rgba(84, 199, 255, 0.88) 48% 52%, transparent 52% 100%);
  bottom: -80px;
  content: "";
  height: 300px;
  opacity: 0.55;
  position: absolute;
  right: -90px;
  transform: rotate(-8deg);
  width: 520px;
}

.float-scene {
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}

.float-shape,
.network {
  position: absolute;
  will-change: transform;
}

.cube {
  background:
    linear-gradient(145deg, rgba(255, 43, 132, 0.98), rgba(154, 67, 255, 0.86) 52%, rgba(84, 199, 255, 0.78)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.34), transparent 48%);
  box-shadow: 22px 26px 70px rgba(255, 43, 132, 0.32);
  clip-path: polygon(50% 0, 100% 25%, 88% 76%, 48% 100%, 0 72%, 10% 22%);
  opacity: 0.9;
}

.cube-one {
  animation: floatDrift 9s ease-in-out infinite;
  height: 168px;
  left: -52px;
  top: 106px;
  width: 168px;
}

.cube-two {
  animation: floatDrift 11s ease-in-out infinite reverse;
  bottom: 84px;
  height: 118px;
  left: 20%;
  transform: rotate(18deg);
  width: 118px;
}

.cube-three {
  animation: floatSpin 14s ease-in-out infinite;
  height: 210px;
  right: -60px;
  top: 0;
  width: 210px;
}

.shard {
  background: linear-gradient(135deg, rgba(255, 43, 132, 0.88), rgba(84, 199, 255, 0.72));
  opacity: 0.82;
}

.shard-one {
  animation: shardFloat 10s ease-in-out infinite;
  clip-path: polygon(0 24%, 100% 0, 76% 100%, 14% 82%);
  height: 118px;
  right: 13%;
  top: 118px;
  width: 88px;
}

.shard-two {
  animation: shardFloat 13s ease-in-out infinite reverse;
  bottom: 148px;
  clip-path: polygon(18% 0, 100% 36%, 64% 100%, 0 76%);
  height: 88px;
  left: 5%;
  width: 78px;
}

.burst {
  animation: pulsePop 4.8s ease-in-out infinite;
  background: var(--ink);
  clip-path: polygon(50% 0, 59% 32%, 90% 12%, 72% 43%, 100% 50%, 72% 57%, 90% 88%, 59% 68%, 50% 100%, 41% 68%, 10% 88%, 28% 57%, 0 50%, 28% 43%, 10% 12%, 41% 32%);
  filter:
    drop-shadow(3px 0 0 #080814)
    drop-shadow(-3px 0 0 #080814)
    drop-shadow(0 3px 0 #080814)
    drop-shadow(0 -3px 0 #080814)
    drop-shadow(0 12px 26px rgba(84, 199, 255, 0.24));
  height: 72px;
  opacity: 0.94;
  width: 72px;
}

.burst-one {
  left: 27%;
  top: 126px;
}

.burst-two {
  animation-delay: 0.8s;
  bottom: 94px;
  right: 4%;
  transform: scale(1.25) rotate(10deg);
}

.burst-three {
  animation-delay: 1.2s;
  height: 46px;
  left: 14%;
  top: 74%;
  width: 46px;
}

.burst-four {
  animation-delay: 1.7s;
  height: 58px;
  right: 24%;
  top: 16%;
  width: 58px;
}

.burst-five {
  animation-delay: 2.1s;
  bottom: 24%;
  height: 38px;
  left: 3%;
  width: 38px;
}

.network {
  border: 1px solid rgba(255, 43, 132, 0.32);
  height: 270px;
  opacity: 0.62;
  transform: rotate(22deg);
  width: 430px;
}

.network::before,
.network::after {
  background:
    radial-gradient(circle, rgba(255, 43, 132, 0.96) 0 4px, transparent 5px),
    linear-gradient(32deg, transparent 0 24%, rgba(255, 43, 132, 0.36) 24% 25%, transparent 25% 49%, rgba(84, 199, 255, 0.28) 49% 50%, transparent 50% 74%, rgba(255, 43, 132, 0.32) 74% 75%, transparent 75% 100%);
  background-size: 96px 76px, 100% 100%;
  content: "";
  inset: -24px;
  position: absolute;
}

.network-one {
  animation: networkMove 16s ease-in-out infinite;
  left: 2%;
  top: 24px;
}

.network-two {
  animation: networkMove 18s ease-in-out infinite reverse;
  bottom: 48px;
  right: -110px;
}

@keyframes floatDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-10deg);
  }

  50% {
    transform: translate3d(16px, -24px, 0) rotate(8deg);
  }
}

@keyframes floatSpin {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(18deg);
  }

  50% {
    transform: translate3d(-18px, 24px, 0) rotate(34deg);
  }
}

@keyframes shardFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(6deg);
  }

  50% {
    transform: translate3d(-14px, 20px, 0) rotate(-8deg);
  }
}

@keyframes pulsePop {
  0%,
  100% {
    transform: scale(0.95) rotate(-8deg);
  }

  50% {
    transform: scale(1.12) rotate(8deg);
  }
}

@keyframes networkMove {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(18deg);
  }

  50% {
    transform: translate3d(20px, 16px, 0) rotate(24deg);
  }
}

.product-hero {
  align-items: center;
  display: grid;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(28px, 6vw, 68px);
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  margin: 0 auto;
  max-width: 1280px;
  min-width: 0;
  position: relative;
  width: 100%;
  z-index: 3;
}

.hero-copy {
  max-width: 880px;
  min-width: 0;
}

.eyebrow {
  color: var(--acid);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero h1,
.page-title h1 {
  font-size: clamp(3.2rem, 9.5vw, 9.6rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.86;
  margin: 0 0 22px;
  max-width: 1040px;
  overflow-wrap: break-word;
  text-transform: uppercase;
}

.page-title h1 {
  font-size: clamp(2.45rem, 6vw, 5.8rem);
}

.hero p,
.page-title p,
.card p,
.metric span,
.table-wrap td,
.status-note,
.section-heading p,
.muted {
  color: var(--muted);
  line-height: 1.58;
}

.hero p {
  color: rgba(255, 247, 232, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 720px;
}

.hero-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    var(--panel);
  border: 1px solid rgba(84, 199, 255, 0.35);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  display: grid;
  gap: 16px;
  padding: 20px;
  position: relative;
  min-width: 0;
}

.hero-panel::before {
  background: linear-gradient(90deg, var(--rose), var(--acid));
  color: white;
  content: "VIP ACCESS";
  font-size: 0.72rem;
  font-weight: 950;
  padding: 7px 12px;
  position: absolute;
  right: 14px;
  top: -14px;
}

.hero-panel h2 {
  font-size: 1.45rem;
  margin: 0;
  text-transform: uppercase;
}

.ops-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.ops-list li {
  align-items: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 42px minmax(0, 1fr);
  list-style: none;
  padding: 12px;
}

.ops-list b {
  align-items: center;
  background: #09060b;
  border: 1px solid rgba(84, 199, 255, 0.4);
  border-radius: 8px;
  color: var(--acid);
  display: grid;
  font-size: 0.78rem;
  height: 38px;
  place-items: center;
  width: 38px;
}

.ops-list strong {
  color: var(--ink);
  font-size: 0.94rem;
}

.ops-list span {
  color: var(--muted);
  font-size: 0.84rem;
  min-width: 0;
}

.headline-strip {
  background: linear-gradient(90deg, #ff2b84, #54c7ff);
  color: white;
  display: flex;
  font-weight: 950;
  gap: 34px;
  overflow: hidden;
  padding: 13px 0;
  text-transform: uppercase;
  white-space: nowrap;
  width: 100vw;
}

.headline-strip span {
  animation: ticker 24s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

.event-lineup {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.lineup-list {
  display: grid;
  gap: 12px;
}

.lineup-card {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(170px, auto) auto;
  overflow: hidden;
  padding: 18px;
  position: relative;
}

.lineup-card::before {
  background: linear-gradient(135deg, rgba(255, 43, 132, 0.28), rgba(84, 199, 255, 0.2));
  clip-path: polygon(50% 0, 60% 35%, 100% 22%, 72% 52%, 96% 86%, 58% 70%, 50% 100%, 42% 70%, 4% 86%, 28% 52%, 0 22%, 40% 35%);
  content: "";
  height: 86px;
  position: absolute;
  right: -24px;
  top: -26px;
  transform: rotate(10deg);
  width: 86px;
}

.lineup-card > * {
  position: relative;
  z-index: 1;
}

.lineup-tag {
  color: var(--gold);
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 950;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.lineup-card h3 {
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 2.2rem);
  font-weight: 950;
  line-height: 1;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.lineup-card p,
.lineup-meta span {
  color: var(--muted);
  margin: 0;
}

.lineup-meta {
  display: grid;
  gap: 6px;
}

.lineup-meta strong {
  color: var(--acid);
  font-size: 0.95rem;
}

.split-showcase {
  align-items: center;
  display: grid;
  gap: clamp(24px, 5vw, 64px);
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
}

.split-showcase h2 {
  font-size: clamp(2.4rem, 6vw, 5.8rem);
  font-weight: 950;
  line-height: 0.9;
  margin: 0 0 16px;
  text-transform: uppercase;
}

.poster-card {
  align-content: end;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(180deg, rgba(7, 6, 11, 0.06), rgba(7, 6, 11, 0.74)),
    url("https://images.unsplash.com/photo-1608889175638-9322300c46e8?auto=format&fit=crop&w=1000&q=82") center / cover;
  border: 1px solid var(--line-hot);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: grid;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.poster-card::before {
  background: repeating-linear-gradient(135deg, rgba(255, 214, 68, 0.7) 0 7px, rgba(255, 49, 111, 0.7) 7px 14px);
  content: "";
  height: 14px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.poster-card span,
.poster-card strong {
  color: var(--ink);
  font-size: clamp(2.6rem, 8vw, 6.4rem);
  font-weight: 950;
  line-height: 0.82;
}

.poster-card small {
  color: var(--gold);
  font-weight: 950;
  text-transform: uppercase;
}

.pass-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.pass-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 220px;
  overflow: hidden;
  padding: 20px;
  position: relative;
}

.pass-card::after {
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.72) 0 2px, transparent 3px),
    radial-gradient(circle, rgba(84, 199, 255, 0.55) 0 2px, transparent 3px);
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px;
  content: "";
  inset: auto -28px -28px auto;
  height: 88px;
  opacity: 0.18;
  position: absolute;
  transform: rotate(-12deg);
  width: 112px;
}

.pass-card.featured {
  background: linear-gradient(180deg, rgba(255, 214, 68, 0.16), rgba(255, 49, 111, 0.08)), var(--panel);
  border-color: var(--line-hot);
}

.pass-card p {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.pass-card h3 {
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 950;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.pass-card strong {
  color: var(--acid);
  display: block;
  font-size: 2rem;
  font-weight: 950;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.pass-card span {
  color: var(--muted);
  line-height: 1.5;
}

.actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.play-button {
  align-items: center;
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(255, 43, 132, 0.08) 44%, transparent 45%),
    rgba(255, 43, 132, 0.12);
  border: 2px solid var(--rose);
  border-radius: 999px;
  box-shadow: 0 0 0 10px rgba(255, 43, 132, 0.14), 0 18px 44px rgba(255, 43, 132, 0.24);
  display: inline-flex;
  height: 62px;
  justify-content: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
  width: 62px;
}

.play-button:hover {
  box-shadow: 0 0 0 14px rgba(255, 43, 132, 0.14), 0 22px 52px rgba(84, 199, 255, 0.22);
  transform: translateY(-2px);
}

.play-button span {
  border-bottom: 11px solid transparent;
  border-left: 17px solid var(--ink);
  border-top: 11px solid transparent;
  display: block;
  margin-left: 4px;
}

.button {
  align-items: center;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-weight: 950;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  text-transform: uppercase;
  white-space: nowrap;
}

.button.primary {
  background: var(--rose);
  box-shadow: 0 18px 48px rgba(255, 43, 132, 0.32);
  color: white;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  color: var(--ink);
}

.button.compact {
  font-size: 0.82rem;
  min-height: 38px;
  padding: 0 14px;
}

.section,
.page {
  overflow: hidden;
  padding: clamp(42px, 6vw, 86px) clamp(16px, 5vw, 68px);
  position: relative;
}

.section::before,
.page::before {
  background: var(--ink);
  clip-path: polygon(50% 0, 59% 32%, 92% 10%, 71% 43%, 100% 50%, 71% 57%, 92% 90%, 59% 68%, 50% 100%, 41% 68%, 8% 90%, 29% 57%, 0 50%, 29% 43%, 8% 10%, 41% 32%);
  content: "";
  filter:
    drop-shadow(2px 0 0 #060617)
    drop-shadow(-2px 0 0 #060617)
    drop-shadow(0 2px 0 #060617)
    drop-shadow(0 -2px 0 #060617)
    drop-shadow(0 18px 36px rgba(255, 43, 132, 0.2));
  height: 78px;
  opacity: 0.2;
  pointer-events: none;
  position: absolute;
  right: clamp(14px, 6vw, 84px);
  top: clamp(18px, 4vw, 42px);
  transform: rotate(15deg);
  width: 78px;
  z-index: 0;
}

.section-inner,
.page-inner {
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.band {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.02);
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
}

.band::after {
  background: repeating-linear-gradient(103deg, rgba(84, 199, 255, 0) 0 24px, rgba(84, 199, 255, 0.18) 24px 30px, rgba(255, 43, 132, 0.18) 30px 34px, rgba(84, 199, 255, 0) 34px 54px);
  bottom: -70px;
  content: "";
  height: 220px;
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
  right: -120px;
  transform: rotate(-6deg);
  width: 520px;
  z-index: 0;
}

.section-heading {
  margin: 0 0 30px;
  max-width: 850px;
}

.section-heading h2 {
  font-size: clamp(2.15rem, 5vw, 5rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 0.92;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card,
.metric,
.table-wrap,
.auth-panel,
.sidebar {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.metric,
.table-wrap,
.auth-panel,
.sidebar {
  overflow: hidden;
  position: relative;
}

.metric::after,
.auth-panel::after,
.table-wrap::after,
.sidebar::after {
  background: var(--ink);
  clip-path: polygon(50% 0, 60% 33%, 92% 12%, 70% 43%, 100% 50%, 70% 57%, 92% 88%, 60% 67%, 50% 100%, 40% 67%, 8% 88%, 30% 57%, 0 50%, 30% 43%, 8% 12%, 40% 33%);
  content: "";
  filter:
    drop-shadow(2px 0 0 #050527)
    drop-shadow(-2px 0 0 #050527)
    drop-shadow(0 2px 0 #050527)
    drop-shadow(0 -2px 0 #050527);
  height: 58px;
  opacity: 0.08;
  pointer-events: none;
  position: absolute;
  right: 16px;
  top: 14px;
  transform: rotate(18deg);
  width: 58px;
}

.card {
  min-height: 188px;
  overflow: hidden;
  padding: 24px;
  position: relative;
}

.card::before {
  background: var(--ink);
  clip-path: polygon(50% 0, 59% 31%, 88% 12%, 70% 42%, 100% 50%, 70% 58%, 88% 88%, 59% 69%, 50% 100%, 41% 69%, 12% 88%, 30% 58%, 0 50%, 30% 42%, 12% 12%, 41% 31%);
  content: "";
  filter:
    drop-shadow(2px 0 0 #050527)
    drop-shadow(-2px 0 0 #050527)
    drop-shadow(0 2px 0 #050527)
    drop-shadow(0 -2px 0 #050527);
  height: 44px;
  opacity: 0.16;
  position: absolute;
  right: 16px;
  top: 16px;
  transform: rotate(11deg);
  width: 44px;
}

.card::after {
  background: linear-gradient(90deg, var(--rose), var(--gold), var(--acid));
  bottom: 0;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card h2,
.card h3 {
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 950;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.feature {
  display: grid;
  gap: 10px;
}

.feature span,
.step-index {
  align-items: center;
  background: rgba(255, 214, 68, 0.14);
  border: 1px solid var(--line-hot);
  border-radius: 8px;
  color: var(--gold);
  display: grid;
  font-weight: 950;
  height: 40px;
  place-items: center;
  width: 46px;
}

.role-card {
  min-height: 230px;
}

.role-card:nth-child(1)::after { background: var(--rose); }
.role-card:nth-child(2)::after { background: var(--gold); }
.role-card:nth-child(3)::after { background: var(--acid); }
.role-card:nth-child(4)::after { background: var(--violet); }

.metric {
  min-height: 122px;
  padding: 20px;
}

.metric strong {
  color: var(--ink);
  display: block;
  font-size: clamp(1.7rem, 3vw, 2.9rem);
  font-weight: 950;
  letter-spacing: 0;
  margin-top: 9px;
}

.metric.ok {
  border-top: 4px solid var(--green);
}

.metric.warn {
  border-top: 4px solid var(--gold);
}

.metric.danger {
  border-top: 4px solid var(--danger);
}

.page-title {
  margin: 0 auto 32px;
  max-width: 1280px;
  position: relative;
  z-index: 2;
}

.page-title.compact {
  align-items: end;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.layout {
  align-items: start;
  display: grid;
  gap: 20px;
  grid-template-columns: 270px minmax(0, 1fr);
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
  z-index: 2;
}

.sidebar {
  display: grid;
  gap: 7px;
  padding: 12px;
  position: sticky;
  top: 84px;
}

.sidebar-label {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 950;
  padding: 8px 10px 4px;
  text-transform: uppercase;
}

.sidebar a {
  border-radius: 8px;
  color: var(--muted);
  font-weight: 900;
  min-height: 42px;
  padding: 11px 12px;
}

.sidebar a.active,
.sidebar a:hover {
  background: var(--gold);
  color: #09060b;
}

.table-wrap {
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  min-width: 760px;
  width: 100%;
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 15px 16px;
  text-align: left;
  vertical-align: top;
}

th {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

td span,
td small {
  color: var(--muted);
}

.pill {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 950;
  padding: 6px 10px;
  text-transform: uppercase;
}

.pill.ok {
  background: rgba(98, 242, 154, 0.13);
  color: var(--green);
}

.pill.warn {
  background: rgba(255, 214, 68, 0.14);
  color: var(--gold);
}

.pill.danger {
  background: rgba(255, 92, 109, 0.14);
  color: var(--danger);
}

.alert {
  border-radius: 8px;
  font-weight: 900;
  margin-bottom: 16px;
  padding: 14px 16px;
}

.alert.ok {
  background: rgba(98, 242, 154, 0.12);
  border: 1px solid rgba(98, 242, 154, 0.28);
  color: var(--green);
}

.alert.danger {
  background: rgba(255, 92, 109, 0.12);
  border: 1px solid rgba(255, 92, 109, 0.28);
  color: var(--danger);
}

.auth-page {
  display: grid;
  min-height: calc(100vh - 72px);
  padding: clamp(24px, 5vw, 72px);
  place-items: center;
}

.auth-panel {
  max-width: 540px;
  padding: clamp(24px, 5vw, 44px);
  width: 100%;
}

.auth-panel.wide {
  max-width: 800px;
}

.auth-panel h1 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  font-weight: 950;
  line-height: 0.95;
  margin: 0 0 14px;
  text-transform: uppercase;
}

.form {
  display: grid;
  gap: 15px;
}

.form label {
  color: var(--ink);
  display: grid;
  font-size: 0.9rem;
  font-weight: 900;
  gap: 8px;
}

.form input,
.form select,
.form textarea,
.inline-form input,
.inline-form select {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 46px;
  padding: 10px 12px;
  width: 100%;
}

.form input::placeholder,
.inline-form input::placeholder,
.form textarea::placeholder {
  color: rgba(255, 247, 232, 0.46);
}

.form textarea {
  resize: vertical;
}

.form-card {
  min-height: 0;
}

.grid-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.full {
  grid-column: 1 / -1;
}

.event-card {
  display: grid;
  gap: 18px;
  min-height: 0;
}

.event-card header {
  display: grid;
  gap: 10px;
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.event-stage {
  align-items: center;
  background: rgba(255, 214, 68, 0.1);
  border: 1px dashed var(--line-hot);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
}

.event-stage strong {
  color: var(--gold);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-step {
  align-items: start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 14px;
  grid-template-columns: 50px minmax(0, 1fr);
  padding: 18px;
}

.timeline-step h3 {
  color: var(--ink);
  margin: 0 0 4px;
  text-transform: uppercase;
}

.timeline-step p {
  margin: 0;
}

.table-link {
  color: var(--gold);
  display: inline-block;
  font-weight: 950;
  margin-top: 8px;
  text-transform: uppercase;
}

.inline-form {
  display: grid;
  gap: 8px;
  min-width: 300px;
}

.inline-form .button {
  justify-content: center;
}

.score-row {
  align-items: end;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(180px, 1fr) 120px minmax(180px, 1fr);
  padding: 14px 0;
}

.score-row span {
  color: var(--muted);
  display: block;
  margin-top: 4px;
}

.ticket-box {
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
  padding: 12px;
}

.ticket-box img {
  background: white;
  border-radius: 8px;
  height: 112px;
  padding: 8px;
  width: 112px;
}

.certificate {
  background: var(--panel);
  border: 1px solid var(--line-hot);
  border-top: 8px solid var(--gold);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 900px;
  padding: clamp(28px, 6vw, 66px);
}

.certificate h1 {
  font-size: clamp(2rem, 5vw, 4.8rem);
  font-weight: 950;
  line-height: 0.95;
  margin: 0 0 20px;
  text-transform: uppercase;
}

.live-activity-region {
  bottom: 18px;
  display: grid;
  gap: 10px;
  left: 18px;
  max-width: min(370px, calc(100vw - 36px));
  pointer-events: none;
  position: fixed;
  z-index: 90;
}

.live-toast {
  background: rgba(7, 6, 11, 0.94);
  border: 1px solid var(--line-hot);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: white;
  opacity: 0;
  padding: 14px 16px;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.live-toast.visible {
  opacity: 1;
  transform: translateY(0);
}

.live-toast span {
  color: var(--gold);
  display: block;
  font-size: 0.72rem;
  font-weight: 950;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.live-toast p {
  color: var(--ink);
  line-height: 1.45;
  margin: 0;
}

.live-social-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.live-social-proof span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  padding: 7px 10px;
}

.status-note {
  background: rgba(255, 214, 68, 0.09);
  border: 1px solid var(--line-hot);
  border-radius: 8px;
  margin: 0;
  padding: 14px 16px;
}

.site-footer {
  margin-top: 24px;
}

.admin-board {
  display: grid;
  gap: 18px;
}

.operation-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.operation-strip div {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 15px;
}

.operation-strip span {
  color: var(--gold);
  display: block;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.operation-strip strong {
  color: var(--ink);
  display: block;
  margin-top: 8px;
}

.admin-page {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 43, 132, 0.16), transparent 28%),
    radial-gradient(circle at 12% 28%, rgba(84, 199, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 42%);
}

.admin-hero {
  align-items: end;
  background:
    linear-gradient(135deg, rgba(255, 43, 132, 0.14), transparent 36%),
    linear-gradient(90deg, rgba(84, 199, 255, 0.1), rgba(255, 255, 255, 0.025)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  max-width: 1280px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 42px);
}

.admin-hero::after {
  background: repeating-linear-gradient(104deg, transparent 0 24px, rgba(255, 43, 132, 0.22) 24px 30px, rgba(84, 199, 255, 0.18) 30px 34px, transparent 34px 54px);
  content: "";
  height: 170px;
  opacity: 0.5;
  position: absolute;
  right: -70px;
  top: -28px;
  transform: rotate(-8deg);
  width: 360px;
  z-index: 0;
}

.admin-hero > * {
  position: relative;
  z-index: 1;
}

.admin-hero h1 {
  font-size: clamp(2.7rem, 6vw, 6.4rem);
  max-width: 920px;
}

.admin-hero p {
  max-width: 720px;
}

.admin-hero-actions {
  align-items: stretch;
  display: grid;
  flex: 0 0 auto;
  gap: 10px;
  min-width: 190px;
}

.admin-hero .alert {
  flex-basis: 100%;
}

.admin-layout {
  gap: clamp(18px, 3vw, 28px);
  grid-template-columns: minmax(238px, 280px) minmax(0, 1fr);
}

.admin-sidebar {
  align-self: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
    var(--panel);
  gap: 14px;
  padding: 14px;
}

.sidebar-head {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: 42px minmax(0, 1fr);
  padding: 6px 6px 16px;
}

.sidebar-mark {
  background: linear-gradient(135deg, var(--rose), var(--acid));
  border-radius: 8px;
  color: var(--void);
  display: grid;
  font-weight: 950;
  height: 42px;
  place-items: center;
  width: 42px;
}

.sidebar-head strong,
.sidebar-head small,
.sidebar a span,
.sidebar a small {
  display: block;
}

.sidebar-head strong {
  color: var(--ink);
  font-size: 0.94rem;
  line-height: 1;
}

.sidebar-head small,
.sidebar a small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.sidebar-group {
  display: grid;
  gap: 7px;
}

.admin-sidebar .sidebar-label {
  color: var(--acid);
  padding: 0 8px;
}

.admin-sidebar a {
  border: 1px solid transparent;
  display: grid;
  gap: 3px;
  min-height: 54px;
  padding: 10px 12px;
}

.admin-sidebar a.active,
.admin-sidebar a:hover {
  background: linear-gradient(90deg, var(--rose), rgba(84, 199, 255, 0.45));
  border-color: rgba(255, 255, 255, 0.28);
  color: white;
}

.admin-sidebar a.active small,
.admin-sidebar a:hover small {
  color: rgba(255, 255, 255, 0.78);
}

.admin-board {
  min-width: 0;
}

.admin-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.admin-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)),
    var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.admin-panel::before,
.admin-action-card::before,
.admin-form-panel::before,
.jury-rubric::before {
  background: var(--ink);
  clip-path: polygon(50% 0, 59% 31%, 88% 12%, 70% 42%, 100% 50%, 70% 58%, 88% 88%, 59% 69%, 50% 100%, 41% 69%, 12% 88%, 30% 58%, 0 50%, 30% 42%, 12% 12%, 41% 31%);
  content: "";
  filter:
    drop-shadow(2px 0 0 #050527)
    drop-shadow(-2px 0 0 #050527)
    drop-shadow(0 2px 0 #050527)
    drop-shadow(0 -2px 0 #050527);
  height: 54px;
  opacity: 0.11;
  pointer-events: none;
  position: absolute;
  right: 18px;
  top: 18px;
  transform: rotate(12deg);
  width: 54px;
}

.panel-heading {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-height: 82px;
  padding: 18px 20px;
  position: relative;
  z-index: 1;
}

.panel-heading h2 {
  color: var(--ink);
  font-size: clamp(1.35rem, 2.6vw, 2rem);
  font-weight: 950;
  line-height: 0.98;
  margin: 0;
  text-transform: uppercase;
}

.panel-heading .eyebrow {
  margin-bottom: 6px;
}

.panel-badge {
  background: linear-gradient(90deg, rgba(255, 43, 132, 0.22), rgba(84, 199, 255, 0.2));
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  flex: 0 0 auto;
  font-size: 0.76rem;
  font-weight: 950;
  padding: 8px 11px;
  text-transform: uppercase;
}

.admin-table {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  z-index: 1;
}

.admin-table table {
  min-width: 820px;
}

.admin-table th {
  background: rgba(255, 255, 255, 0.075);
  color: var(--acid);
}

.admin-table td {
  background: rgba(5, 5, 39, 0.22);
}

.admin-table tr:hover td {
  background: rgba(255, 255, 255, 0.055);
}

.compact-table table {
  min-width: 620px;
}

.metrics-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric small {
  color: rgba(255, 255, 255, 0.48);
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  margin-top: 8px;
  text-transform: uppercase;
}

.admin-flow div {
  background:
    linear-gradient(135deg, rgba(255, 43, 132, 0.13), transparent 52%),
    var(--panel);
  min-height: 92px;
}

.admin-form-panel {
  padding: clamp(18px, 3vw, 30px);
}

.form-section {
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  padding: 18px;
}

.form-section-title {
  align-items: center;
  display: grid;
  gap: 12px;
  grid-template-columns: 44px minmax(0, 1fr);
}

.form-section-title span {
  background: #080819;
  border: 1px solid rgba(84, 199, 255, 0.4);
  border-radius: 8px;
  color: var(--acid);
  display: grid;
  font-weight: 950;
  height: 42px;
  place-items: center;
}

.form-section-title strong,
.form-section-title small {
  display: block;
}

.form-section-title strong {
  color: var(--ink);
  font-size: 1rem;
  text-transform: uppercase;
}

.form-section-title small {
  color: var(--muted);
}

.form-section-grid {
  display: grid;
  gap: 15px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.qr-console {
  display: grid;
  gap: 18px;
  max-width: 760px;
  padding: 0;
}

.qr-console .form,
.qr-console .alert,
.operator-notes {
  margin: 0 20px;
}

.qr-console .form {
  padding-top: 2px;
}

.qr-console .alert {
  margin-bottom: 0;
}

.operator-notes {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 10px;
  padding: 0 0 20px;
}

.operator-notes div {
  align-items: center;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 10px;
  grid-template-columns: 34px minmax(0, 1fr);
  padding: 10px;
}

.operator-notes span {
  color: var(--acid);
  font-weight: 950;
}

.operator-notes strong {
  color: var(--ink);
  font-size: 0.9rem;
}

.admin-action-card,
.admin-selector-card,
.insight-card,
.jury-rubric {
  min-height: 0;
}

.admin-action-card {
  display: grid;
  gap: 16px;
}

.jury-rubric {
  padding: 0;
}

.jury-rubric > p,
.jury-rubric > form {
  padding: 0 20px 20px;
}

.empty-state {
  color: var(--muted);
}

.review-form {
  grid-template-columns: minmax(160px, 0.8fr) minmax(170px, 1fr) auto;
  min-width: 520px;
}

.score-row {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 8px;
  grid-template-columns: minmax(210px, 1fr) 130px minmax(220px, 1fr);
  padding: 12px;
}

.score-row + .score-row {
  margin-top: -4px;
}

.insight-list {
  display: grid;
  gap: 10px;
}

.insight-list p {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  padding: 12px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .layout,
  .grid,
  .grid.two,
  .grid.three,
  .admin-layout,
  .admin-grid,
  .admin-grid.two,
  .admin-grid.three,
  .metrics-grid,
  .event-lineup,
  .split-showcase,
  .pass-grid,
  .operation-strip {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .comic-atmosphere {
    z-index: 1;
  }

  .comic-speed,
  .comic-star-three,
  .comic-star-four,
  .comic-spark-two {
    display: none;
  }

  .comic-star-one {
    height: 58px;
    left: -34px;
    opacity: 0.58;
    top: 36%;
    width: 58px;
  }

  .comic-star-two {
    height: 70px;
    right: -24px;
    top: 58%;
    width: 70px;
  }

  .comic-spark-one {
    height: 26px;
    left: 78%;
    top: 34%;
    width: 26px;
  }

  .topbar {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    max-width: 100vw;
    overflow: visible;
    padding: 14px 16px;
    width: 100%;
  }

  .brand {
    min-width: 0;
  }

  .nav-toggle {
    flex: 0 0 44px;
    display: inline-flex;
    justify-self: auto;
    left: min(calc(100vw - 60px), 330px);
    position: fixed;
    right: auto;
    top: 14px;
    z-index: 91;
  }

  .nav {
    background: rgba(7, 6, 11, 0.98);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: none;
    justify-content: stretch;
    left: 16px;
    padding: 8px;
    position: fixed;
    top: 72px;
    width: min(calc(100vw - 32px), 358px);
  }

  .nav-open .nav {
    display: grid;
  }

  .nav a,
  .nav-form button {
    border-radius: 8px;
    justify-content: flex-start;
    width: 100%;
  }

  .hero {
    min-height: auto;
    overflow: hidden;
    padding: 44px 20px 52px;
  }

  .hero-grid,
  .hero-copy,
  .hero-panel {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .hero h1,
  .page-title h1 {
    font-size: clamp(2.35rem, 13vw, 3.55rem);
    line-height: 0.9;
  }

  .hero .eyebrow {
    font-size: 0.68rem;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero p {
    font-size: 1rem;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero .button {
    width: 100%;
  }

  .hero-panel {
    overflow: hidden;
    padding: 18px;
    width: 100%;
  }

  .hero-panel * {
    max-width: 100%;
  }

  .hero-panel::before {
    right: 10px;
  }

  .ops-list li {
    align-items: start;
    gap: 10px;
    grid-template-columns: 34px minmax(0, 1fr);
    min-width: 0;
    padding: 10px;
  }

  .ops-list b {
    height: 34px;
    width: 34px;
  }

  .ops-list strong,
  .ops-list span {
    display: block;
    font-size: 0.8rem;
    line-height: 1.4;
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
    word-break: break-word;
  }

  .play-button {
    height: 54px;
    justify-self: center;
    width: 54px;
  }

  .cube-one {
    height: 100px;
    left: -56px;
    top: 118px;
    width: 100px;
  }

  .cube-two,
  .cube-three,
  .network-two {
    display: none;
  }

  .burst-one {
    left: 72%;
    top: 92px;
  }

  .burst-two {
    bottom: 165px;
    right: -12px;
  }

  .burst-three {
    bottom: 36%;
    left: 4%;
  }

  .burst-four,
  .burst-five {
    display: none;
  }

  .network-one {
    left: -80px;
    top: 20px;
  }

  .page-title.compact {
    align-items: stretch;
    display: grid;
  }

  .page {
    max-width: 100vw;
    overflow-x: hidden;
    padding: 42px 24px 56px;
    width: auto;
  }

  .page .page-title,
  .page .page-inner,
  .page .layout {
    margin-left: 0;
    margin-right: 0;
    max-width: calc(100vw - 48px);
    width: calc(100vw - 48px);
  }

  .admin-page .page-title,
  .admin-page .layout {
    max-width: calc(100vw - 48px);
    width: calc(100vw - 48px);
  }

  .admin-hero {
    align-items: stretch;
    display: grid;
    gap: 18px;
    padding: 22px;
  }

  .admin-hero-actions {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .admin-hero-actions .button {
    width: 100%;
  }

  .admin-sidebar {
    position: relative;
    top: auto;
  }

  .sidebar-head {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .sidebar-mark {
    height: 38px;
    width: 38px;
  }

  .admin-sidebar a {
    min-height: 48px;
  }

  .panel-heading {
    align-items: start;
    display: grid;
    gap: 10px;
  }

  .panel-badge {
    justify-self: start;
  }

  .form-section-grid,
  .review-form,
  .score-row {
    grid-template-columns: 1fr;
  }

  .review-form {
    min-width: 0;
  }

  .form-section {
    padding: 14px;
  }

  .qr-console .form,
  .qr-console .alert,
  .operator-notes,
  .jury-rubric > p,
  .jury-rubric > form {
    margin-left: 14px;
    margin-right: 14px;
    padding-left: 0;
    padding-right: 0;
  }

  .admin-table table {
    min-width: 720px;
  }

  .compact-table table {
    min-width: 560px;
  }

  .public-page .page-title,
  .public-page .page-inner {
    max-width: calc(100vw - 72px);
    width: calc(100vw - 72px);
  }

  .page-inner,
  .page-title,
  .layout,
  .grid,
  .card,
  .event-card,
  .auth-panel {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .page-title > *,
  .card > *,
  .event-card > *,
  .event-card header,
  .event-meta,
  .event-stage,
  .live-social-proof {
    min-width: 0;
  }

  .page-title p,
  .card p,
  .event-card h2,
  .event-card p,
  .event-stage,
  .event-stage span,
  .live-social-proof span {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .event-meta .pill,
  .live-social-proof span {
    display: block;
    min-width: 0;
    text-align: center;
    white-space: normal;
    width: 100%;
  }

  .event-meta,
  .live-social-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .event-stage {
    align-items: start;
    display: grid;
    grid-template-columns: 1fr;
  }

  .event-card .actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .event-card .button {
    width: 100%;
  }

  .admin-page .admin-hero,
  .admin-page .admin-layout,
  .admin-page .admin-sidebar,
  .admin-page .admin-board,
  .admin-page .admin-panel,
  .admin-page .card {
    box-sizing: border-box;
    max-width: calc(100vw - 64px) !important;
    min-width: 0;
    width: calc(100vw - 64px) !important;
  }

  .admin-hero h1 {
    font-size: clamp(1.95rem, 8.6vw, 2.35rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .admin-hero p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .grid-form,
  .score-row {
    grid-template-columns: 1fr;
  }

  table {
    min-width: 680px;
  }

  .lineup-card {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .ticket-box {
    align-items: flex-start;
  }
}

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