:root {
  --bg: #08111f;
  --panel: rgba(14, 26, 49, 0.58);
  --panel-strong: rgba(9, 18, 35, 0.8);
  --line: rgba(255, 255, 255, 0.18);
  --text: #fff7ef;
  --muted: #d1d5e4;
  --gold: #ffd755;
  --lime: #c4ff5b;
  --orange: #ff7b4f;
  --blue: #6da8ff;
  --pink: #ff6dc9;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --radius-xl: 40px;
  --radius-lg: 28px;
  --radius-md: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 10;
  padding: 12px 16px;
  border-radius: 14px;
  background: #fff7ef;
  color: #08111f;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.08), transparent 10%),
    radial-gradient(circle at 90% 12%, rgba(255, 255, 255, 0.06), transparent 12%),
    conic-gradient(from 210deg at 50% 50%, rgba(255, 109, 201, 0.08), rgba(109, 168, 255, 0.05), rgba(255, 123, 79, 0.08), rgba(255, 215, 85, 0.06), rgba(255, 109, 201, 0.08)),
    radial-gradient(circle at 14% 18%, rgba(255, 123, 79, 0.22), transparent 22%),
    radial-gradient(circle at 84% 16%, rgba(109, 168, 255, 0.28), transparent 20%),
    radial-gradient(circle at 54% 58%, rgba(255, 215, 85, 0.18), transparent 24%),
    radial-gradient(circle at 50% 100%, rgba(255, 109, 201, 0.14), transparent 30%),
    linear-gradient(180deg, #112a55 0%, #09111f 46%, #060913 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 92%);
}

.poster-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.1;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.4) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.3) 0 1px, transparent 1px);
  background-size: 22px 22px, 28px 28px, 32px 32px;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 18% 24%, rgba(255, 123, 79, 0.12), transparent 16%),
    radial-gradient(circle at 78% 20%, rgba(109, 168, 255, 0.14), transparent 18%),
    radial-gradient(circle at 52% 72%, rgba(255, 215, 85, 0.08), transparent 24%);
  mix-blend-mode: screen;
}

body.ready .reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal {
  opacity: 0;
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.2, 0.7, 0, 1);
}

.reveal-up {
  transform: translate3d(0, 36px, 0);
}

.reveal-down {
  transform: translate3d(0, -24px, 0);
}

.ambient {
  position: fixed;
  width: 34rem;
  height: 34rem;
  filter: blur(80px);
  opacity: 0.38;
  pointer-events: none;
  z-index: 0;
}

.ambient-left {
  top: 8rem;
  left: -12rem;
  background: radial-gradient(circle, rgba(255, 135, 89, 0.72), transparent 60%);
}

.ambient-right {
  top: 4rem;
  right: -12rem;
  background: radial-gradient(circle, rgba(114, 169, 255, 0.75), transparent 60%);
}

body.dev-mode .ambient-left {
  background: radial-gradient(circle, rgba(190, 245, 100, 0.7), transparent 60%);
}

body.dev-mode .ambient-right {
  background: radial-gradient(circle, rgba(255, 216, 111, 0.75), transparent 60%);
}

body.party-mode {
  background:
    radial-gradient(circle at 14% 18%, rgba(190, 245, 100, 0.22), transparent 22%),
    radial-gradient(circle at 84% 16%, rgba(255, 135, 89, 0.3), transparent 20%),
    radial-gradient(circle at 54% 58%, rgba(114, 169, 255, 0.22), transparent 24%),
    linear-gradient(180deg, #1f0f35 0%, #08111f 48%, #070410 100%);
}

body.party-mode .speaker-orbit {
  border-color: rgba(255, 135, 89, 0.4);
}

body.party-mode .speaker-core {
  box-shadow: 0 24px 80px rgba(255, 135, 89, 0.3);
}

body.party-mode .marquee-track,
body.party-mode .corner-badge {
  animation-duration: 8s;
}

.info-page {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}

.info-shell {
  width: min(920px, 100%);
  position: relative;
  z-index: 1;
}

.info-card {
  margin-top: 20px;
  padding: 32px;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(21, 34, 62, 0.72), rgba(9, 18, 35, 0.62));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(125%);
}

.info-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.site-header,
.site-footer,
.hero-shell,
.chaos-grid,
.voice-section,
.faq-section,
.download-band,
.marquee-strip {
  width: min(1180px, calc(100% - 32px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  margin-top: 14px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(16, 26, 49, 0.78), rgba(8, 16, 31, 0.66));
  backdrop-filter: blur(20px) saturate(120%);
  box-shadow: var(--shadow);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  object-fit: cover;
}

.site-nav,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.site-nav a:hover,
.footer-links a:hover,
.brand:hover {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.nav-cta::before,
.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02) 36%, transparent 60%);
  pointer-events: none;
}

.nav-cta::after,
.button::after {
  content: "↗";
  position: relative;
  z-index: 1;
  font-size: 0.92rem;
  opacity: 0.82;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-cta {
  min-height: 48px;
  padding: 0 18px 0 20px;
  border-radius: 18px;
  color: #101622;
  border: 1px solid rgba(255, 228, 151, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 243, 196, 0.94), rgba(255, 205, 126, 0.92));
  box-shadow:
    0 12px 24px rgba(255, 198, 105, 0.16),
    inset 0 -8px 14px rgba(201, 128, 35, 0.1);
  font-size: 0.88rem;
}

.page {
  padding-bottom: 48px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 22px;
  align-items: stretch;
  padding-top: 16px;
}

.hero-copy,
.hero-stage,
.feature-panel,
.voice-card,
.download-band,
.site-footer {
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(21, 34, 62, 0.68), rgba(9, 18, 35, 0.58));
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(125%);
}

.hero-copy {
  padding: 28px;
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -8% -18% auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 215, 85, 0.18), transparent 70%);
  pointer-events: none;
}

.eyebrow,
.panel-kicker {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  border: 2px solid rgba(255, 216, 111, 0.22);
  background: rgba(255, 216, 111, 0.08);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.sticker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.sticker {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 2px solid rgba(8, 17, 31, 0.45);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.22);
}

.sticker-hot {
  color: #361200;
  background: linear-gradient(135deg, #ffd764, #ff8d5b);
  transform: rotate(-5deg);
}

.sticker-cold {
  color: #08162d;
  background: linear-gradient(135deg, #7bceff, #6da8ff);
  transform: rotate(4deg);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Avenir Next Condensed", "Arial Narrow", sans-serif;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

h1 {
  margin-top: 16px;
  font-size: clamp(3.3rem, 7vw, 5.8rem);
  max-width: 9ch;
  text-wrap: balance;
  text-shadow: 0 4px 0 rgba(0, 0, 0, 0.18);
  line-height: 0.9;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h3 {
  font-size: 1.55rem;
}

.hero-lead,
.hero-supporting,
.feature-panel p,
.voice-card p,
.download-copy p,
.site-footer p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.72;
}

.hero-lead {
  max-width: 58ch;
  font-size: 0.98rem;
  line-height: 1.6;
}

.hero-supporting {
  max-width: 60ch;
  margin-top: 10px;
  font-size: 0.96rem;
  line-height: 1.58;
}

.hero-actions,
.stat-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.button {
  min-height: 54px;
  padding: 0 22px 0 24px;
  border-radius: 20px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.button:hover,
.nav-cta:hover,
.speaker-face:hover {
  transform: translateY(-2px);
}

.button:hover::after,
.nav-cta:hover::after {
  transform: translate3d(3px, -2px, 0);
  opacity: 1;
}

.button-primary {
  color: #101622;
  border: 1px solid rgba(255, 228, 151, 0.42);
  background:
    linear-gradient(135deg, rgba(255, 225, 125, 1), rgba(255, 161, 110, 0.96) 62%, rgba(255, 105, 109, 0.88));
  box-shadow:
    0 20px 36px rgba(255, 173, 97, 0.28),
    inset 0 -14px 18px rgba(198, 76, 31, 0.14);
}

.hero-actions .button-primary {
  min-height: 60px;
  padding: 0 28px 0 30px;
  border-radius: 22px;
  font-size: 0.96rem;
  box-shadow:
    0 24px 44px rgba(255, 154, 86, 0.34),
    0 10px 18px rgba(255, 214, 103, 0.16),
    inset 0 -16px 20px rgba(198, 76, 31, 0.18);
}

.hero-actions .button-primary::after {
  font-size: 1rem;
}

.site-header .nav-cta::after {
  opacity: 0.72;
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(129, 190, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(18, 31, 57, 0.92), rgba(9, 17, 31, 0.84));
  box-shadow:
    0 18px 32px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.button-large {
  min-height: 62px;
  padding: 0 30px 0 32px;
  font-size: 0.96rem;
}

.stat-pill {
  padding: 9px 13px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  --pointer-x: 50%;
  --pointer-y: 38%;
  --pointer-shift-x: 0px;
  --pointer-shift-y: 0px;
  padding: 22px;
  border-radius: 52px;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1400px;
  background:
    radial-gradient(circle at top right, rgba(109, 168, 255, 0.2), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 123, 79, 0.16), transparent 30%),
    linear-gradient(145deg, rgba(22, 38, 69, 0.86), rgba(8, 17, 31, 0.9));
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 214, 104, 0.18), transparent 16%),
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(120, 182, 255, 0.16), transparent 26%),
    linear-gradient(130deg, rgba(255, 255, 255, 0.05), transparent 20%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03), transparent 55%);
  pointer-events: none;
  transition: background-position 120ms ease;
}

.corner-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  padding: 10px 14px;
  border: 2px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--pink), var(--orange));
  color: #fff5fb;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transform: rotate(7deg);
}

.stage-caption {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 216, 111, 0.09);
  border: 2px solid rgba(255, 216, 111, 0.18);
  color: #fff0bf;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  align-self: flex-start;
  font-size: 0.95rem;
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.8s infinite;
}

.quote {
  position: absolute;
  max-width: 180px;
  padding: 14px 16px;
  border-radius: 22px;
  font-weight: 800;
  line-height: 1.3;
  box-shadow: var(--shadow);
  transition: transform 260ms ease;
  will-change: transform;
  border: 2px solid rgba(0, 0, 0, 0.14);
}

.quote-green {
  top: 82px;
  left: 20px;
  background: linear-gradient(135deg, #a0e553, #5ea81b);
  color: #163104;
  transform: rotate(-6deg);
}

.quote-orange {
  top: 80px;
  right: 20px;
  background: linear-gradient(135deg, #ffae7b, #ef5b31);
  color: #fff4ef;
  transform: rotate(6deg);
}

.quote-blue {
  bottom: 108px;
  right: 8px;
  background: linear-gradient(135deg, #8ec0ff, #4c7eff);
  color: #041431;
  transform: rotate(-4deg);
}

.speaker-face {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 430px);
  aspect-ratio: 1 / 1;
  margin: 34px auto 18px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 220ms ease;
  will-change: transform;
}

.speaker-face::after {
  content: "";
  position: absolute;
  inset: 13%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateZ(18px);
}

.speaker-orbit {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.16);
  transform: translateZ(10px);
}

.orbit-one {
  animation: spin 24s linear infinite;
}

.orbit-two {
  inset: 10%;
  border-color: rgba(255, 216, 111, 0.28);
  animation: spinReverse 18s linear infinite;
}

.speaker-core {
  position: relative;
  z-index: 2;
  width: 72%;
  aspect-ratio: 1 / 1;
  padding: 26px;
  border-radius: 34%;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(145deg, #1a2e57, #0e1932 42%, #224987 100%);
  border: 2px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.44), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transform: translate3d(var(--pointer-shift-x), var(--pointer-shift-y), 54px);
  transition: transform 140ms ease;
}

.speaker-core img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 28px;
}

.speaker-shadow {
  position: absolute;
  width: 58%;
  height: 14%;
  bottom: 18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.52), transparent 68%);
  filter: blur(14px);
  transform: translateZ(0);
}

.speaker-hint {
  position: absolute;
  bottom: 0;
  z-index: 3;
  display: grid;
  gap: 4px;
  width: min(300px, 78%);
  padding: 14px 16px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(10, 18, 34, 0.94), rgba(19, 31, 55, 0.88));
  text-align: center;
  transform: translateZ(72px);
  color: var(--text);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.26);
}

.speaker-hint strong {
  font-size: 0.96rem;
  color: #fff7ef;
  letter-spacing: 0.01em;
}

.speaker-hint span {
  color: #d6deef;
  font-size: 0.84rem;
}

.speaker-face.is-playing .orbit-two {
  border-color: rgba(190, 245, 100, 0.7);
  animation-duration: 1s;
}

.speaker-face.is-playing .speaker-core {
  animation: thump 480ms ease;
}

.event-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 2px;
}

.event-tags span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.stage-details {
  display: grid;
  gap: 12px;
  width: min(100%, 420px);
  margin: 14px auto 0;
}

.stage-detail-card {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(11, 19, 35, 0.82), rgba(21, 34, 61, 0.72));
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.2);
}

.stage-detail-card strong {
  color: #fff7ef;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
}

.stage-detail-card span {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.84rem;
}

.marquee-strip {
  overflow: hidden;
  margin-top: 18px;
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
}

.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 14px 18px;
  animation: marquee 24s linear infinite;
  color: var(--muted);
  font-weight: 700;
}

.marquee-track span::after {
  content: "•";
  margin-left: 18px;
  color: var(--gold);
}

.chaos-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
  margin-top: 18px;
}

.feature-panel {
  padding: 28px;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.feature-panel h3,
.voice-card h3,
.download-copy h2,
.feature-large h2 {
  color: #fff7ef;
}

.feature-panel::after,
.voice-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -34px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
}

.feature-large {
  grid-row: span 2;
  background:
    radial-gradient(circle at top right, rgba(255, 216, 111, 0.16), transparent 30%),
    linear-gradient(160deg, rgba(28, 46, 82, 0.82), rgba(10, 18, 35, 0.78));
}

.voice-section {
  margin-top: 18px;
  padding: 30px;
  border-radius: 36px;
  border: 2px solid rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at top left, rgba(114, 169, 255, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(20, 34, 61, 0.72), rgba(8, 16, 31, 0.68));
  box-shadow: var(--shadow);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 20px;
  margin-top: 18px;
  padding: 30px;
  border-radius: 36px;
  border: 2px solid rgba(255, 255, 255, 0.13);
  background:
    radial-gradient(circle at top right, rgba(255, 109, 201, 0.12), transparent 24%),
    linear-gradient(145deg, rgba(20, 34, 61, 0.72), rgba(8, 16, 31, 0.68));
  box-shadow: var(--shadow);
}

.faq-intro {
  max-width: 30rem;
}

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

.faq-item {
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  line-height: 1.7;
}

.voice-intro {
  max-width: 650px;
}

.voice-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.voice-card {
  padding: 22px;
  border-radius: 24px;
  transform: rotate(var(--tilt, 0deg));
}

.voice-card:nth-child(1) { --tilt: -2deg; }
.voice-card:nth-child(2) { --tilt: 1deg; }
.voice-card:nth-child(3) { --tilt: -1deg; }
.voice-card:nth-child(4) { --tilt: 2deg; }

.voice-badge {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 216, 111, 0.22), rgba(114, 169, 255, 0.22));
  font-size: 1.5rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.download-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  padding: 30px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top center, rgba(255, 216, 111, 0.16), transparent 26%),
    radial-gradient(circle at bottom left, rgba(255, 123, 79, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(26, 42, 75, 0.86), rgba(9, 17, 32, 0.82));
}

.download-copy {
  color: var(--text);
}

.download-copy {
  max-width: 680px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 22px 26px;
  margin: 18px auto 30px;
  border-radius: 32px;
}

.site-footer p {
  margin: 6px 0 0;
}

.secret-toast {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 40;
  min-width: 260px;
  max-width: calc(100% - 32px);
  padding: 14px 18px;
  border: 1px solid rgba(255, 216, 111, 0.2);
  border-radius: 18px;
  background: rgba(8, 16, 30, 0.92);
  color: var(--text);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 18px);
  transition: opacity 220ms ease, transform 220ms ease;
  text-align: center;
  font-weight: 700;
  border: 2px solid rgba(255, 216, 111, 0.2);
}

.click-burst-layer {
  position: fixed;
  inset: 0;
  z-index: 45;
  pointer-events: none;
  overflow: hidden;
}

.click-burst {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 3px solid rgba(255, 215, 85, 0.9);
  transform: translate(-50%, -50%) scale(0.2);
  opacity: 0.9;
  animation: burst 520ms ease-out forwards;
}

.click-burst::before,
.click-burst::after {
  content: "";
  position: absolute;
  inset: 50%;
  width: 40px;
  height: 4px;
  margin-left: -20px;
  margin-top: -2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 123, 79, 0), rgba(255, 123, 79, 0.92), rgba(255, 123, 79, 0));
}

.click-burst::after {
  transform: rotate(90deg);
  background: linear-gradient(90deg, rgba(109, 168, 255, 0), rgba(109, 168, 255, 0.92), rgba(109, 168, 255, 0));
}

.secret-toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255, 216, 111, 0.62); }
  70% { box-shadow: 0 0 0 14px rgba(255, 216, 111, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 216, 111, 0); }
}

@keyframes thump {
  0% { transform: translateZ(54px) scale(1); }
  40% { transform: translateZ(70px) scale(1.03); }
  100% { transform: translateZ(54px) scale(1); }
}

@keyframes burst {
  0% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(0.2);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(4.2);
  }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes spinReverse {
  from { transform: rotate(360deg); }
  to { transform: rotate(0deg); }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-40%); }
}

@media (max-width: 1080px) {
  .hero-shell,
  .chaos-grid,
  .voice-cards,
  .faq-section,
  .download-band {
    grid-template-columns: 1fr;
  }

  .download-band {
    display: grid;
  }

  .feature-large {
    grid-row: auto;
  }
}

@media (max-width: 780px) {
  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    border-radius: 28px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero-copy,
  .hero-stage,
  .voice-section,
  .download-band {
    padding: 22px;
  }

  .hero-stage {
    padding-bottom: 18px;
  }

  h1 {
    max-width: none;
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .quote {
    position: static;
    max-width: none;
    transform: none;
    margin-top: 12px;
  }

  .speaker-face {
    width: min(100%, 360px);
    margin: 18px auto 12px;
  }

  .speaker-hint {
    width: min(320px, 88%);
  }

  .event-tags {
    gap: 10px;
  }

  .event-tags span {
    padding: 8px 12px;
  }

  .stage-details {
    width: 100%;
    margin-top: 16px;
  }
}
