:root {
  --bg: #05050a;
  --panel: rgba(255, 255, 255, 0.075);
  --panel-strong: rgba(255, 255, 255, 0.13);
  --text: #fff;
  --muted: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.16);
  --pink: #ff3fd4;
  --cyan: #38d8ff;
  --gold: #ffd66b;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 63, 212, 0.18), transparent 34rem),
    linear-gradient(180deg, #05050a 0%, #0d0715 42%, #05050a 100%);
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem clamp(1rem, 4vw, 3rem);
  color: #fff;
  transition: background 220ms ease, backdrop-filter 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 5, 10, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  letter-spacing: 0.08em;
  line-height: 1;
  font-weight: 900;
}

.brand small {
  margin-top: 0.25rem;
  color: var(--cyan);
  font-size: 0.62rem;
  font-weight: 800;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.8rem, 2vw, 1.55rem);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.main-nav a {
  transition: color 180ms ease;
}

.main-nav a:hover {
  color: #fff;
}

.nav-cta {
  padding: 0.68rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle {
  display: none;
  width: 2.65rem;
  height: 2.65rem;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 1rem;
  height: 2px;
  margin: 0.15rem auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 7rem clamp(1rem, 4vw, 3rem) 5rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade,
.choice-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 10, 0.92), rgba(5, 5, 10, 0.34) 48%, rgba(5, 5, 10, 0.86)),
    linear-gradient(0deg, rgba(5, 5, 10, 0.9), transparent 45%);
  z-index: -1;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(5, 5, 10, 0.9), rgba(5, 5, 10, 0.22) 56%, rgba(5, 5, 10, 0.58)),
    linear-gradient(0deg, rgba(5, 5, 10, 0.72), transparent 58%);
}

.hero-content {
  width: min(46rem, 100%);
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  text-transform: uppercase;
  line-height: 0.87;
  font-size: clamp(4.2rem, 13vw, 10rem);
  font-weight: 900;
}

h1 span,
h1 strong {
  display: block;
}

h1 strong {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.82);
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5vw, 4.8rem);
  line-height: 0.96;
  font-weight: 900;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.75rem, 4vw, 3.6rem);
  line-height: 0.96;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-line {
  margin-bottom: 0.6rem;
  font-size: clamp(1.15rem, 2vw, 1.7rem);
  font-weight: 800;
}

.hero-subtitle,
.section-heading p,
.choice-copy span,
.newsletter p {
  color: var(--muted);
  font-size: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.choice-card:hover {
  transform: translateY(-3px);
}

.primary {
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  color: #fff;
}

.ghost,
.secondary {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
  color: #fff;
}

.secondary {
  background: linear-gradient(135deg, rgba(255, 214, 107, 0.24), rgba(255, 63, 212, 0.16));
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 1.8rem;
  width: 1.4rem;
  height: 2.3rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0.45rem;
  width: 0.28rem;
  height: 0.28rem;
  border-radius: 50%;
  background: #fff;
  transform: translateX(-50%);
  animation: scrollCue 1.35s infinite ease-in-out;
}

.section-pad {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
  padding: clamp(4.5rem, 9vw, 8rem) 0;
}

.section-heading {
  width: min(45rem, 100%);
  margin-inline: auto;
  text-align: center;
}

.compact {
  margin-bottom: 2rem;
}

.pill-grid,
.character-grid,
.music-layout {
  display: grid;
  gap: 1rem;
}

.pill-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}

.pill-card,
.character-card,
.player {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  backdrop-filter: blur(16px);
}

.pill-card {
  position: relative;
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 1.2rem;
  transition: transform 180ms ease, background 180ms ease;
}

.pill-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 5, 10, 0.88), rgba(5, 5, 10, 0.22) 62%),
    linear-gradient(90deg, rgba(5, 5, 10, 0.45), transparent);
  pointer-events: none;
}

.pill-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.pill-card:hover,
.character-card:hover {
  background: var(--panel-strong);
  transform: translateY(-3px);
}

.pill-card:hover img {
  transform: scale(1.04);
}

.pill-card span {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
}

.pill-card strong {
  position: relative;
  z-index: 1;
  max-width: 12rem;
  font-size: 1.35rem;
  line-height: 1.05;
}

.choice {
  width: min(1380px, calc(100% - 2rem));
}

.choice-title {
  margin-bottom: 2rem;
  text-align: center;
}

.choice-title h2 {
  font-size: clamp(3.8rem, 9vw, 7rem);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.choice-card {
  position: relative;
  min-height: clamp(32rem, 62vw, 44rem);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  transition: transform 220ms ease;
}

.choice-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.choice-card--audition {
  display: grid;
  grid-template-rows: 52% 48%;
}

.choice-card--audition > img:first-child {
  position: relative;
  grid-row: 1;
  height: 100%;
  object-position: center 18%;
}

.choice-card--audition .choice-overlay {
  display: none;
}

.choice-card--audition .choice-copy {
  position: relative;
  inset: auto;
  grid-row: 2;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: #17131f;
}

.choice-overlay {
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(5, 5, 10, 0.92), rgba(5, 5, 10, 0.08) 62%),
    linear-gradient(90deg, rgba(5, 5, 10, 0.34), transparent);
}

.choice-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: clamp(1.2rem, 4vw, 2.5rem);
}

.choice-copy p {
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.choice-copy span {
  display: block;
  max-width: 34rem;
  margin-bottom: 1.4rem;
}

.character-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  grid-auto-rows: auto;
}

.cast-group + .cast-group {
  margin-top: 2rem;
}

.cast-group h3 {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
  letter-spacing: 0.14em;
}

.character-card {
  align-self: start;
  height: fit-content;
  min-height: 0 !important;
  display: grid;
  grid-template-rows: auto auto;
  overflow: hidden;
  padding: 0;
  transition: transform 180ms ease, background 180ms ease;
}

.portrait {
  display: block;
  height: auto;
  overflow: hidden;
  background: #f4f2ef;
  border-bottom: 1px solid var(--line);
}

.portrait img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
}

.official-slot {
  display: grid;
  place-items: center;
  min-height: 12rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 50% 24%, color-mix(in srgb, var(--accent), transparent 20%), transparent 7rem);
  border-bottom: 1px solid var(--line);
}

.character-card strong {
  display: block;
  padding: 1rem;
  min-height: 0;
  background: var(--panel);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.cast-section .character-grid {
  align-items: start !important;
  grid-auto-rows: max-content !important;
}

.cast-section .character-card {
  align-self: start !important;
  height: auto !important;
  min-height: 0 !important;
  display: grid !important;
  grid-template-rows: auto auto !important;
}

.cast-section .portrait {
  height: auto !important;
}

.cast-section .portrait img {
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.staff-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.staff-list a {
  display: flex;
  min-height: 20rem;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  font-weight: 900;
  text-transform: uppercase;
}

.staff-list img {
  width: 100%;
  height: clamp(12.5rem, 19vw, 16rem);
  flex: 0 0 auto;
  object-fit: cover;
  object-position: center 20%;
  background: #f4f2ef;
  border-bottom: 1px solid var(--line);
}

.staff-list span {
  padding: 1rem;
}

.music-layout {
  grid-template-columns: repeat(3, 1fr);
}

.cover {
  position: relative;
  min-height: 22rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  overflow: hidden;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  background:
    linear-gradient(0deg, rgba(5, 5, 10, 0.86), transparent),
    var(--cover-image, radial-gradient(circle at 30% 10%, rgba(255, 63, 212, 0.7), transparent 10rem)),
    #111;
  background-position: center;
  background-size: cover;
  transition: transform 180ms ease, border-color 180ms ease;
}

.cover::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(5, 5, 10, 0.88), rgba(5, 5, 10, 0.12) 62%);
  pointer-events: none;
}

.cover img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 220ms ease;
}

.cover:hover img,
.cover.active img {
  transform: scale(1.04);
}

.cover:nth-child(2) {
  background:
    linear-gradient(0deg, rgba(5, 5, 10, 0.86), transparent),
    var(--cover-image, radial-gradient(circle at 70% 12%, rgba(255, 214, 107, 0.65), transparent 10rem)),
    #111;
  background-position: center;
  background-size: cover;
}

.cover:nth-child(3) {
  background:
    linear-gradient(0deg, rgba(5, 5, 10, 0.86), transparent),
    url("images/stage.png") center / cover;
}

.cover:hover,
.cover.active {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.42);
}

.cover span {
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.62);
  font-weight: 900;
}

.cover strong {
  position: relative;
  z-index: 2;
  font-size: 1.5rem;
}

.cover em {
  position: relative;
  z-index: 2;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.cover.is-coming-soon {
  cursor: default;
}

.cover.is-coming-soon strong {
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
}

.play-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.player {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem;
}

.play-button {
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #080811;
  cursor: pointer;
}

.player span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.wave {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  height: 2.4rem;
}

.wave i {
  width: 0.22rem;
  height: 40%;
  border-radius: 999px;
  background: var(--cyan);
  animation: wave 900ms infinite ease-in-out alternate;
}

.wave i:nth-child(2n) {
  animation-delay: 160ms;
  background: var(--pink);
}

.wave i:nth-child(3n) {
  animation-delay: 280ms;
  background: var(--gold);
}

.newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.8fr);
  align-items: end;
  gap: 2rem;
}

.signup {
  display: grid;
  gap: 0.75rem;
}

.signup input {
  width: 100%;
  min-height: 3.35rem;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  outline: 0;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.signup input.honeypot {
  display: none !important;
}

.signup input:focus {
  border-color: rgba(56, 216, 255, 0.7);
}

.signup button:disabled {
  cursor: wait;
  opacity: 0.6;
}

.signup span {
  min-height: 1.25rem;
  color: var(--gold);
  font-size: 0.9rem;
}

.signup span.is-success {
  color: var(--cyan);
}

.newsletter-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.newsletter-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 1rem !important;
  height: 1rem !important;
  min-height: 0 !important;
  padding: 0 !important;
  margin-top: 0.2rem;
  border-radius: 3px;
  accent-color: var(--cyan);
}

.newsletter-consent a {
  color: #fff;
  text-decoration: underline;
}

.site-footer {
  width: min(var(--max), calc(100% - 2rem));
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0 auto;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
}

/* Subpages */
.subpage {
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 63, 212, 0.16), transparent 28rem),
    radial-gradient(circle at 80% 10%, rgba(56, 216, 255, 0.12), transparent 30rem),
    var(--bg);
}

.subpage-main {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 8rem 0 4rem;
}

.subpage-hero {
  max-width: 58rem;
  margin-bottom: 3rem;
}

.subpage-hero h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.2rem, 8vw, 7rem);
}

.subpage-hero p {
  color: var(--muted);
  font-size: 1.05rem;
}

.page-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.page-card {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.page-card h2,
.page-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2.1rem);
}

.page-card .eyebrow {
  margin-bottom: 0.5rem;
}

.page-card p,
.legal-content p,
.legal-content li {
  color: var(--muted);
}

.page-card .button {
  align-self: flex-start;
}

.legal-content {
  display: grid;
  gap: 1rem;
  max-width: 58rem;
}

.legal-content section {
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.legal-content h2 {
  font-size: clamp(1.5rem, 3vw, 2.6rem);
}

.legal-content ul {
  margin-left: 1.25rem;
}

.contact-list {
  display: grid;
  gap: 0.75rem;
}

.contact-list a {
  color: #fff;
  font-weight: 900;
}

/* Informational subpages */
.legal-page,
.partner-page,
.contact-page {
  padding-top: 7.25rem;
  padding-bottom: 5rem;
}

.legal-hero,
.partner-hero,
.contact-hero {
  max-width: 52rem;
  margin-bottom: 2.5rem;
}

.legal-hero h1,
.partner-hero h1,
.contact-hero h1 {
  max-width: 48rem;
  font-size: clamp(3.2rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.legal-hero p,
.partner-hero p,
.contact-hero p {
  max-width: 42rem;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
}

.legal-intro {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(56, 216, 255, 0.28);
  border-radius: 12px;
  background: linear-gradient(100deg, rgba(56, 216, 255, 0.12), rgba(255, 63, 212, 0.08));
}

.legal-intro p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-intro a {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 900;
  white-space: nowrap;
}

.legal-intro-mark {
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 900;
}

.legal-content {
  max-width: 52rem;
  gap: 0.75rem;
}

.legal-content section {
  padding: 1.25rem 1.4rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
}

.legal-content h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
}

.legal-content p,
.legal-content li {
  font-size: 0.94rem;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.partner-card {
  display: flex;
  min-width: 0;
  min-height: 31rem;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.2);
}

.partner-card figure {
  height: 13rem;
  margin: 0;
  overflow: hidden;
}

.partner-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-card > div {
  flex: 1;
  padding: 1.35rem 1.35rem 0;
}

.partner-card h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 0.98;
}

.partner-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.93rem;
}

.partner-card .button {
  align-self: flex-start;
  margin: 0 1.35rem 1.35rem;
}

.partner-card-cartoon { background: linear-gradient(180deg, rgba(255, 63, 212, 0.14), rgba(255, 255, 255, 0.04)); }
.partner-card-brand { background: linear-gradient(180deg, rgba(56, 216, 255, 0.14), rgba(255, 255, 255, 0.04)); }
.partner-card-live { background: linear-gradient(180deg, rgba(255, 214, 107, 0.14), rgba(255, 255, 255, 0.04)); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contact-card {
  display: flex;
  min-width: 0;
  min-height: 15rem;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.contact-card-main {
  grid-column: span 2;
  background: linear-gradient(135deg, rgba(255, 63, 212, 0.18), rgba(56, 216, 255, 0.1));
}

.contact-number {
  display: block;
  margin-bottom: 1rem;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.contact-card h2 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.6rem, 2.7vw, 2.35rem);
  line-height: 1;
}

.contact-card p:not(.eyebrow) {
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  width: 100%;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 900;
  overflow-wrap: anywhere;
}

/* Social page */
.social-page {
  padding-top: 7.25rem;
  padding-bottom: 5rem;
}

.social-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(14rem, 19rem);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: 21rem;
  margin-bottom: 4rem;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background:
    linear-gradient(115deg, rgba(255, 63, 212, 0.2), transparent 48%),
    linear-gradient(290deg, rgba(56, 216, 255, 0.18), transparent 48%),
    #11101a;
}

.social-hero h1 {
  max-width: 44rem;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 6.4vw, 6rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

.social-hero p {
  max-width: 37rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.social-hero-mark {
  display: grid;
  place-items: center;
  gap: 1rem;
  min-height: 15rem;
  padding: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  background: rgba(5, 5, 10, 0.28);
  text-align: center;
}

.social-hero-mark img {
  width: min(100%, 11rem);
  justify-self: center;
  filter: drop-shadow(0 1rem 1.5rem rgba(255, 63, 212, 0.25));
}

.social-hero-mark span {
  color: #fff;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.social-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.social-section-heading .eyebrow {
  margin: 0;
}

.social-section-heading h2 {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 700;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.social-card {
  display: grid;
  grid-template-columns: minmax(10rem, 42%) minmax(0, 1fr);
  min-width: 0;
  min-height: 18rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease;
}

.social-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.34);
}

.social-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.social-card figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 5, 10, 0.42), transparent 60%),
    radial-gradient(circle at 25% 0%, rgba(255, 255, 255, 0.18), transparent 12rem);
}

.social-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.social-card:hover img {
  transform: scale(1.04);
}

.social-card-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.2rem, 2.5vw, 1.8rem);
}

.social-label {
  display: inline-flex;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.social-card h2 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.social-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

.social-card .button {
  margin-top: 1rem;
  white-space: normal;
}

.instagram-card {
  background:
    linear-gradient(180deg, rgba(255, 63, 212, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
}

.tiktok-card {
  background:
    linear-gradient(180deg, rgba(56, 216, 255, 0.15), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
}

.youtube-card {
  background:
    linear-gradient(180deg, rgba(255, 68, 96, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
}

.newsletter-card {
  background:
    linear-gradient(180deg, rgba(255, 214, 107, 0.16), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

@keyframes scrollCue {
  0%,
  100% { transform: translate(-50%, 0); opacity: 0.35; }
  50% { transform: translate(-50%, 0.8rem); opacity: 1; }
}

@keyframes wave {
  from { height: 22%; }
  to { height: 96%; }
}

@media (max-width: 880px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 5, 10, 0.92);
    backdrop-filter: blur(18px);
  }

  .site-header.is-open .main-nav {
    display: flex;
  }

  .main-nav a {
    padding: 0.7rem 0;
  }

  h1 {
    font-size: clamp(3.5rem, 17vw, 6rem);
  }

  .pill-grid,
  .choice-grid,
  .music-layout,
  .page-grid,
  .social-grid,
  .partner-grid,
  .contact-grid,
  .newsletter {
    grid-template-columns: 1fr;
  }

  .contact-card-main {
    grid-column: auto;
  }

  .social-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .social-hero-mark {
    min-height: 12rem;
  }

  .social-hero-mark img {
    width: min(15rem, 70vw);
  }

  .social-grid {
    gap: 1rem;
  }

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

  .choice-card {
    min-height: 33rem;
  }

  .choice-card--audition {
    grid-template-rows: 44% 56%;
  }

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

  .player {
    grid-template-columns: auto 1fr;
  }

  .wave {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .site-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .hero {
    align-items: end;
  }

  .choice-card {
    min-height: 29rem;
  }

  .character-grid,
  .staff-list {
    grid-template-columns: 1fr;
  }

  .staff-list img {
    height: 17rem;
    object-position: center 18%;
  }

  .social-page {
    padding-top: 6.5rem;
  }

  .legal-page,
  .partner-page,
  .contact-page {
    padding-top: 6.5rem;
  }

  .legal-hero h1,
  .partner-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.5rem);
  }

  .legal-intro {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .legal-intro a {
    grid-column: 2;
  }

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

  .partner-card figure {
    height: 11rem;
  }

  .social-hero {
    padding: 1.2rem;
    border-radius: 14px;
  }

  .social-hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
    line-height: 0.96;
  }

  .social-hero-mark {
    min-height: 9rem;
    padding: 1rem;
    gap: 0.5rem;
  }

  .social-hero-mark img {
    width: min(10rem, 52vw);
  }

  .social-section-heading {
    display: block;
  }

  .social-section-heading h2 {
    margin-top: 0.4rem;
  }

  .social-card {
    display: flex;
    flex-direction: column;
  }

  .social-card figure {
    height: 13rem;
  }

  .social-card-body {
    padding: 1rem;
  }

}
