:root {
  --void: #050712;
  --ink: #080d1f;
  --panel: rgba(10, 16, 40, 0.72);
  --cyan: #3ce8ff;
  --cyan-soft: #7ef6ff;
  --mint: #6ef5e8;
  --violet: #7a4dff;
  --magenta: #a56bff;
  --crimson: #e31b2a;
  --shirt: #d41828;
  --paper: #eef4ff;
  --muted: #8ea0c8;
  --line: rgba(60, 232, 255, 0.22);
  --shadow: 0 30px 80px rgba(2, 4, 16, 0.55);
  --radius: 28px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

html, body {
  min-height: 100%;
  background: var(--void);
  color: var(--paper);
  font-family: "Sora", sans-serif;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

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

button, a {
  font: inherit;
}

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(1200px 700px at 12% -10%, rgba(60, 232, 255, 0.16), transparent 55%),
    radial-gradient(900px 600px at 92% 8%, rgba(122, 77, 255, 0.2), transparent 50%),
    radial-gradient(700px 500px at 70% 100%, rgba(227, 27, 42, 0.1), transparent 55%),
    linear-gradient(180deg, #070b1c 0%, #050712 42%, #0a0720 100%);
}

#spark-field {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  mix-blend-mode: screen;
}

.bloom-cyan {
  width: 420px;
  height: 420px;
  left: 8%;
  top: 16%;
  background: rgba(60, 232, 255, 0.28);
  animation: bloom-drift 16s ease-in-out infinite;
}

.bloom-violet {
  width: 520px;
  height: 520px;
  right: 4%;
  top: 8%;
  background: rgba(122, 77, 255, 0.26);
  animation: bloom-drift 22s ease-in-out infinite reverse;
}

.bloom-red {
  width: 280px;
  height: 280px;
  left: 42%;
  bottom: 6%;
  background: rgba(227, 27, 42, 0.18);
  animation: bloom-drift 18s ease-in-out infinite 1.4s;
}

.studio-grid {
  position: absolute;
  inset: auto 0 -8%;
  height: 48vh;
  background-image:
    linear-gradient(rgba(60, 232, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(60, 232, 255, 0.08) 1px, transparent 1px);
  background-size: 70px 70px;
  transform: perspective(500px) rotateX(58deg);
  mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 80%);
  animation: grid-crawl 18s linear infinite;
}

.scanlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0 2px,
    rgba(255, 255, 255, 0.015) 2px 3px
  );
  opacity: 0.35;
}

.grain {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain-shift 0.8s steps(2) infinite;
}

.cursor-lamp {
  position: fixed;
  width: 320px;
  height: 320px;
  margin: -160px 0 0 -160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60, 232, 255, 0.12), transparent 68%);
  transform: translate(-200px, -200px);
  transition: opacity 0.4s ease;
}

.nav, main, footer, .mobile-sheet {
  position: relative;
  z-index: 1;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 5vw;
  backdrop-filter: blur(18px);
  background: rgba(5, 7, 18, 0.55);
  border-bottom: 1px solid rgba(60, 232, 255, 0.08);
}

.nav.is-scrolled {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-disc {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(60, 232, 255, 0.45);
  box-shadow: 0 0 18px rgba(60, 232, 255, 0.28);
  animation: disc-glow 3.6s ease-in-out infinite;
}

.brand-disc img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: "Cinzel", serif;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.brand-ticker {
  font-family: "Tektur", sans-serif;
  font-size: 11px;
  color: var(--cyan);
  letter-spacing: 0.18em;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.nav-links a:hover {
  color: var(--paper);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(8, 13, 31, 0.7);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.icon-btn img {
  width: 18px;
  height: 18px;
}

.icon-current {
  filter: invert(82%) sepia(38%) saturate(749%) hue-rotate(149deg) brightness(104%) contrast(103%);
}

.icon-btn:hover {
  transform: translateY(-2px);
  border-color: var(--cyan);
  box-shadow: 0 0 18px rgba(60, 232, 255, 0.28);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 16px;
  height: 1.5px;
  background: var(--paper);
  display: block;
}

.mobile-sheet {
  position: sticky;
  top: 78px;
  z-index: 19;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 18px 5vw 22px;
  background: rgba(5, 7, 18, 0.94);
  border-bottom: 1px solid var(--line);
}

.mobile-sheet[hidden] {
  display: none;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 48px;
  padding: 48px 5vw 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan-soft);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  margin-bottom: 22px;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--crimson);
  box-shadow: 0 0 12px var(--crimson);
  animation: pulse 1.6s ease-in-out infinite;
}

h1 {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 22px;
}

.title-sir {
  font-family: "Cinzel", serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #d7def4;
}

.title-nips {
  font-family: "Tektur", sans-serif;
  font-size: clamp(46px, 7vw, 92px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #f4feff 0%, #3ce8ff 48%, #7a4dff 120%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 40px rgba(60, 232, 255, 0.18);
  animation: title-sheen 7s linear infinite;
}

.lede {
  max-width: 34rem;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 26px;
}

.chip-row, .cta-row, .ca-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-soft);
  background: rgba(60, 232, 255, 0.05);
}

.ca-bar {
  margin: 22px 0 18px;
  padding: 10px 12px 10px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(8, 13, 31, 0.72);
  width: fit-content;
  max-width: 100%;
}

.ca-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

#ca-value {
  font-family: "JetBrains Mono", monospace;
  font-size: 13px;
  color: var(--paper);
  word-break: break-all;
}

.copy-btn, .btn, .btn-mini {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
}

.copy-btn {
  background: rgba(60, 232, 255, 0.12);
  color: var(--cyan-soft);
  padding: 8px 12px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.copy-btn:hover, .copy-btn.is-copied {
  background: rgba(60, 232, 255, 0.24);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  font-family: "Tektur", sans-serif;
  letter-spacing: 0.04em;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn img {
  width: 16px;
  height: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, #3ce8ff, #2aa3ff 45%, #7a4dff);
  color: #061018;
  box-shadow: 0 0 24px rgba(60, 232, 255, 0.28);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border: 1px solid var(--line);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(60, 232, 255, 0.2);
}

.btn-mini {
  margin-top: 14px;
  padding: 8px 14px;
  background: rgba(60, 232, 255, 0.1);
  color: var(--cyan-soft);
  border: 1px solid var(--line);
}

.hero-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.arc-halo {
  position: absolute;
  width: min(92%, 560px);
  height: auto;
  color: var(--cyan);
  animation: halo-spin 28s linear infinite;
}

.halo-ring {
  fill: none;
  stroke: url(#halo-grad);
  stroke-width: 2;
  opacity: 0.55;
}

.halo-ring-b {
  stroke-dasharray: 8 14;
  animation: dash-crawl 10s linear infinite;
}

.halo-arc {
  fill: none;
  stroke: url(#halo-grad);
  stroke-width: 7;
  stroke-linecap: round;
  filter: drop-shadow(0 0 8px #3ce8ff);
}

.halo-arc-b {
  opacity: 0.55;
}

.floor-ring {
  position: absolute;
  width: min(78%, 430px);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(60, 232, 255, 0.35);
  box-shadow:
    0 0 30px rgba(60, 232, 255, 0.18),
    inset 0 0 30px rgba(122, 77, 255, 0.12);
  animation: ring-pulse 3.4s ease-in-out infinite;
}

.floor-ring-slow {
  width: min(90%, 510px);
  animation-duration: 5.2s;
  opacity: 0.5;
}

.stage-plate {
  width: min(78%, 420px);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 2;
  box-shadow:
    0 0 0 1px rgba(60, 232, 255, 0.28),
    0 20px 60px rgba(0, 0, 0, 0.45),
    0 0 50px rgba(60, 232, 255, 0.16);
  animation: plate-float 6s ease-in-out infinite;
}

.stage-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eq {
  position: absolute;
  bottom: 18px;
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 46px;
  z-index: 3;
}

.eq i {
  width: 4px;
  height: 12px;
  border-radius: 99px;
  background: linear-gradient(to top, var(--violet), var(--cyan));
  animation: eq 1.1s ease-in-out infinite;
}

.eq i:nth-child(odd) { animation-duration: 0.85s; }
.eq i:nth-child(3n) { animation-duration: 1.35s; background: linear-gradient(to top, var(--shirt), var(--cyan)); }
.eq i:nth-child(1) { animation-delay: 0.05s; }
.eq i:nth-child(2) { animation-delay: 0.15s; }
.eq i:nth-child(3) { animation-delay: 0.25s; }
.eq i:nth-child(4) { animation-delay: 0.08s; }
.eq i:nth-child(5) { animation-delay: 0.22s; }
.eq i:nth-child(6) { animation-delay: 0.12s; }
.eq i:nth-child(7) { animation-delay: 0.3s; }
.eq i:nth-child(8) { animation-delay: 0.18s; }
.eq i:nth-child(9) { animation-delay: 0.04s; }
.eq i:nth-child(10) { animation-delay: 0.28s; }
.eq i:nth-child(11) { animation-delay: 0.16s; }
.eq i:nth-child(12) { animation-delay: 0.1s; }

.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(8, 13, 31, 0.55);
  padding: 14px 0;
}

.ticker-track {
  display: flex;
  gap: 38px;
  width: max-content;
  animation: ticker 28s linear infinite;
  font-family: "Tektur", sans-serif;
  letter-spacing: 0.16em;
  font-size: 13px;
  color: var(--cyan-soft);
}

.ticker-track span + span::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 38px;
  border-radius: 50%;
  background: var(--shirt);
  box-shadow: 0 0 10px var(--shirt);
  transform: translateY(-1px);
}

.section {
  padding: 110px 5vw;
}

.section-head {
  margin-bottom: 42px;
  max-width: 720px;
}

.kicker {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 12px;
}

h2 {
  font-family: "Cinzel", serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.15;
}

.about-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px 36px;
}

.pull {
  grid-row: span 2;
  padding: 36px;
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(60, 232, 255, 0.08), rgba(122, 77, 255, 0.08)),
    rgba(8, 13, 31, 0.7);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.pull::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--cyan), var(--shirt));
}

.pull p {
  font-family: "Cinzel", serif;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.45;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 16px;
}

.facts {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
}

.facts li {
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(8, 13, 31, 0.55);
}

.facts span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.trait-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  grid-column: 1 / -1;
}

.trait {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(8, 13, 31, 0.58);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.trait:hover {
  transform: translateY(-6px);
  border-color: rgba(60, 232, 255, 0.45);
  box-shadow: 0 16px 40px rgba(60, 232, 255, 0.12);
}

.trait-mark {
  font-family: "Tektur", sans-serif;
  color: var(--cyan);
  letter-spacing: 0.12em;
}

.trait h3, .cue h3, .join-board h3 {
  font-family: "Cinzel", serif;
  margin: 10px 0 8px;
}

.trait p, .cue p, .join-board p, .footer p {
  color: var(--muted);
  line-height: 1.7;
}

.setlist {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  counter-reset: none;
}

.cue {
  position: relative;
  padding: 26px 22px 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(8, 13, 31, 0.62);
  overflow: hidden;
}

.cue::after {
  content: "";
  position: absolute;
  inset: auto 16px 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  transform: scaleX(0);
  transform-origin: left;
  animation: cue-line 3.2s ease-in-out infinite;
}

.cue:nth-child(2)::after { animation-delay: 0.4s; }
.cue:nth-child(3)::after { animation-delay: 0.8s; }
.cue:nth-child(4)::after { animation-delay: 1.2s; }

.cue-num {
  font-family: "Tektur", sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--cyan-soft);
}

.text-link img {
  width: 16px;
  height: 16px;
}

.monitor {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #05070f;
  box-shadow: var(--shadow), 0 0 40px rgba(60, 232, 255, 0.08);
}

.monitor-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  color: var(--muted);
  background: rgba(8, 13, 31, 0.95);
  border-bottom: 1px solid var(--line);
}

.monitor-lights {
  display: flex;
  gap: 6px;
}

.monitor-lights i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.monitor-lights i:nth-child(1) { background: #e31b2a; }
.monitor-lights i:nth-child(2) { background: #f0c14b; }
.monitor-lights i:nth-child(3) { background: #3ce8ff; box-shadow: 0 0 8px #3ce8ff; }

#dex-frame {
  width: 100%;
  height: min(72vh, 680px);
  border: 0;
  background: #0b0e14;
}

.poster {
  margin: 0 0 28px;
  aspect-ratio: 3 / 1;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow), 0 0 50px rgba(60, 232, 255, 0.12);
}

.poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  animation: poster-drift 18s ease-in-out infinite alternate;
}

.join-board {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(8, 13, 31, 0.7);
}

.join-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 32px 5vw 40px;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--line);
}

.footer-brand span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}

.footer-links {
  display: flex;
  gap: 16px;
  color: var(--cyan-soft);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.9s ease forwards;
}

.hero-copy { animation: rise 1s ease both; }
.hero-stage { animation: rise 1.15s ease both 0.12s; }
.section-head, .pull, .about-copy, .trait, .cue, .monitor, .poster, .join-board {
  animation: rise 0.9s ease both;
}

.trait:nth-child(2) { animation-delay: 0.08s; }
.trait:nth-child(3) { animation-delay: 0.16s; }
.cue:nth-child(2) { animation-delay: 0.08s; }
.cue:nth-child(3) { animation-delay: 0.16s; }
.cue:nth-child(4) { animation-delay: 0.24s; }

@keyframes bloom-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(30px, -24px, 0) scale(1.08); }
}

@keyframes grid-crawl {
  to { background-position: 0 70px, 70px 0; }
}

@keyframes grain-shift {
  to { transform: translate3d(-2%, 1%, 0); }
}

@keyframes disc-glow {
  0%, 100% { box-shadow: 0 0 12px rgba(60, 232, 255, 0.2); }
  50% { box-shadow: 0 0 22px rgba(60, 232, 255, 0.5); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.55; }
}

@keyframes title-sheen {
  0% { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(18deg); }
}

@keyframes halo-spin {
  to { transform: rotate(360deg); }
}

@keyframes dash-crawl {
  to { stroke-dashoffset: -180; }
}

@keyframes ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.06); opacity: 1; }
}

@keyframes plate-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes eq {
  0%, 100% { height: 8px; }
  50% { height: 42px; }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes cue-line {
  0%, 100% { transform: scaleX(0); }
  40%, 70% { transform: scaleX(1); }
}

@keyframes poster-drift {
  from { transform: scale(1.02) translateX(0); }
  to { transform: scale(1.08) translateX(-1.5%); }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1080px) {
  .hero,
  .about-layout,
  .setlist,
  .footer,
  .join-board {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .trait-grid,
  .setlist {
    grid-template-columns: 1fr 1fr;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .join-board,
  .footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .hero-stage {
    min-height: 420px;
  }

  .trait-grid,
  .setlist,
  .facts {
    grid-template-columns: 1fr;
  }

  .poster {
    border-radius: 18px;
  }

  .ca-bar {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
