@font-face {
  font-family: "Fredoka";
  src: url("../fonts/Fredoka-SemiBold.woff2") format("woff2"),
       url("../fonts/Fredoka-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Fredoka";
  src: url("../fonts/Fredoka-Regular.woff2") format("woff2"),
       url("../fonts/Fredoka-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Nunito Sans";
  src: url("../fonts/NunitoSans-Variable.ttf") format("truetype");
  font-weight: 200 1000;
  font-style: normal;
  font-display: swap;
}

:root, [data-theme="light"] {
  --ink: #1a2332;
  --ink-muted: rgba(26, 35, 50, 0.68);
  --soft-cloud: #f4f7fb;
  --white: #ffffff;
  --happy-blue: #2e9dc4;
  --happy-blue-soft: rgba(46, 157, 196, 0.12);
  --happy-blue-mid: rgba(46, 157, 196, 0.22);
  --cream: #f5f0e8;
  --line: rgba(26, 35, 50, 0.08);
  --shadow: 0 12px 36px rgba(26, 35, 50, 0.1);
  --shadow-sm: 0 4px 14px rgba(26, 35, 50, 0.06);
  --shadow-lift: 0 18px 44px rgba(26, 35, 50, 0.14);
  --page: var(--soft-cloud);
  --surface: var(--white);
  --text: var(--ink);
  --muted: var(--ink-muted);
  --accent: var(--happy-blue);
  --header-bg: rgba(244, 247, 251, 0.92);
  --footer-bg: #e8eef5;
  --hero-wash-1: rgba(46, 157, 196, 0.28);
  --hero-wash-2: rgba(46, 157, 196, 0.1);
  --hero-ink: #132033;
  --placeholder-art: #d5e4f0;
  --rail-fade: linear-gradient(90deg, var(--page), transparent);
  --search-bg: var(--white);
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 22px;
  --max: 1200px;
  --pad: 48px;
  --font-display: "Fredoka", "Nunito Sans", system-ui, sans-serif;
  --font-body: "Nunito Sans", system-ui, sans-serif;
}

[data-theme="dark"] {
  /* True black dark mode (user ask 2026-09-25) — intentional lift, not muddy grey */
  --page: #000000;
  --surface: #111111;
  --text: #f5f0e8;
  --muted: rgba(245, 240, 232, 0.72);
  --accent: #3aafd4;
  --happy-blue: #3aafd4;
  --happy-blue-soft: rgba(58, 175, 212, 0.18);
  --happy-blue-mid: rgba(58, 175, 212, 0.32);
  --cream: #f5f0e8;
  --line: rgba(245, 240, 232, 0.18);
  --shadow: 0 12px 36px rgba(0, 0, 0, 0.75);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.5);
  --shadow-lift: 0 18px 44px rgba(0, 0, 0, 0.8);
  --header-bg: rgba(0, 0, 0, 0.92);
  --footer-bg: #000000;
  --hero-wash-1: rgba(58, 175, 212, 0.34);
  --hero-wash-2: rgba(58, 175, 212, 0.14);
  --hero-ink: #000000;
  --placeholder-art: #1c1c1c;
  --rail-fade: linear-gradient(90deg, var(--page), transparent);
  --search-bg: #111111;
  --ink: #f5f0e8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--page);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
  min-height: 100vh;
  font-size: 16px;
  font-weight: 450;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font: inherit; }

/* —— Focus & motion —— */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.btn:focus-visible,
.theme-toggle:focus-visible,
.nav-toggle:focus-visible,
.hero-nav button:focus-visible,
.hero-dots button:focus-visible,
.social-btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
.nav a:focus-visible,
.mobile-nav a:focus-visible,
.link-more:focus-visible,
.footer-cols a:focus-visible,
.footer-bottom a:focus-visible,
.promo-strip a:focus-visible,
.tile:focus-visible,
.card:focus-visible,
.char-tile:focus-visible,
.music-row:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.wrap {
  max-width: calc(var(--max) + var(--pad) * 2);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line);
}
.site-header .inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 72px;
  max-width: calc(var(--max) + var(--pad) * 2);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}
.brand .wordmark {
  height: 30px;
  width: auto;
  display: block;
}
.brand .wordmark-dark { display: none; }
[data-theme="dark"] .brand .wordmark-light { display: none; }
[data-theme="dark"] .brand .wordmark-dark { display: block; }
.site-footer .brand .wordmark {
  height: 28px;
  opacity: 0.92;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
  flex-wrap: nowrap;
  flex: 1;
  min-width: 0;
}
.nav a {
  padding: 7px 10px;
  border-radius: 8px;
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.nav a:hover {
  color: var(--text);
  background: var(--happy-blue-soft);
}
.nav a[aria-current="page"] {
  color: var(--accent);
  background: var(--happy-blue-soft);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  flex-shrink: 0;
}

.search-affordance {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 36px;
  padding: 0 12px 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--search-bg);
  color: var(--muted);
  min-width: 148px;
  cursor: text;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.search-affordance:hover,
.search-affordance:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--happy-blue-soft);
}
.search-affordance input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 13px;
  font-weight: 550;
  color: var(--text);
  padding: 0;
  box-shadow: none;
}
.search-affordance input::placeholder { color: var(--muted); }
.search-affordance .search-icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--accent);
  display: grid;
  place-items: center;
}
.search-affordance .search-icon svg { width: 16px; height: 16px; }
[data-theme="dark"] .search-affordance {
  background: var(--search-bg);
  border-color: var(--line);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 650;
  font-family: inherit;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, box-shadow 0.15s, filter 0.15s;
}
.btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}
.btn-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { filter: brightness(1.07); box-shadow: var(--shadow-sm); }
.btn-primary.on-light {
  background: #fff;
  color: var(--hero-ink);
  border-color: #fff;
}
.btn-primary.on-light:hover { filter: none; background: var(--cream); }
.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}
.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
}
.btn-clear {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  padding: 9px 16px;
  border-radius: 999px;
}
.btn-clear:hover { filter: brightness(1.06); }
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  filter: none;
}

.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, border-color 0.15s;
}
.theme-toggle:hover { color: var(--accent); border-color: var(--accent); background: var(--happy-blue-soft); }
.nav-toggle:hover { border-color: var(--accent); color: var(--accent); background: var(--happy-blue-soft); }

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

/* —— Hero spotlight —— */
.hero-spotlight {
  position: relative;
  overflow: hidden;
  min-height: clamp(420px, 58vw, 560px);
  background: var(--hero-ink);
  color: #f5f0e8;
}
.hero-slides {
  position: relative;
  min-height: inherit;
}
.hero-slide {
  display: none;
  position: relative;
  min-height: inherit;
  padding: 72px 0 88px;
}
.hero-slide.is-active { display: block; }
.hero-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 70% at 82% 40%, var(--hero-wash-1), transparent 68%),
    radial-gradient(ellipse 40% 50% at 18% 80%, var(--hero-wash-2), transparent 60%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(46, 157, 196, 0.18), transparent 55%),
    linear-gradient(160deg, #152033 0%, #1a2a3c 45%, #132436 100%);
}
.hero-art::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -4%;
  top: -10%;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(46, 157, 196, 0.45), transparent 62%);
  filter: blur(4px);
  opacity: 0.95;
}
.hero-art::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 220px;
  right: 12%;
  top: 48%;
  border-radius: 55% 45% 60% 40%;
  background: linear-gradient(135deg, rgba(46, 157, 196, 0.35), transparent 70%);
  transform: rotate(-16deg);
  filter: blur(18px);
}
.hero-wisps {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-wisps span {
  position: absolute;
  border-radius: 50%;
  background: rgba(46, 157, 196, 0.2);
  filter: blur(28px);
}
.hero-wisps span:nth-child(1) { width: 200px; height: 120px; left: 8%; top: 18%; }
.hero-wisps span:nth-child(2) { width: 160px; height: 160px; right: 28%; bottom: 12%; background: rgba(46, 157, 196, 0.15); }
.hero-wisps span:nth-child(3) { width: 280px; height: 100px; left: 40%; top: 8%; background: rgba(245, 240, 232, 0.06); }

.hero-spotlight .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  min-height: inherit;
}
.hero-copy { max-width: 34rem; }
.hero-copy .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7ec8e3;
  margin-bottom: 18px;
}
.hero-copy h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.5rem, 4.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
  color: #f5f0e8;
  max-width: 12ch;
}
.hero-copy .lede {
  font-size: 1.125rem;
  color: rgba(245, 240, 232, 0.78);
  max-width: 38ch;
  margin-bottom: 28px;
  line-height: 1.6;
}
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-visual {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-poster-stack {
  position: relative;
  width: 100%;
  max-width: 380px;
  height: 280px;
  margin: 0 auto;
}
.hero-poster {
  position: absolute;
  width: 150px;
  height: 210px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  background:
    radial-gradient(circle at 40% 30%, var(--happy-blue-mid), transparent 55%),
    linear-gradient(160deg, #2a4a5e, #1a2e3c);
  overflow: hidden;
}
.hero-poster::after {
  content: "";
  position: absolute;
  inset: 18% 22%;
  border-radius: 50%;
  border: 2px dashed rgba(126, 200, 227, 0.45);
  background: rgba(46, 157, 196, 0.12);
}
.hero-poster.p1 { left: 8%; top: 24px; transform: rotate(-8deg); z-index: 1; }
.hero-poster.p2 { left: 50%; top: 0; transform: translateX(-50%) rotate(2deg); z-index: 3; width: 168px; height: 236px; background: radial-gradient(circle at 45% 35%, rgba(46, 157, 196, 0.45), transparent 55%), linear-gradient(165deg, #356978, #1e3a4a); }
.hero-poster.p3 { right: 6%; top: 36px; transform: rotate(9deg); z-index: 2; }

.hero-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.hero-dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(245, 240, 232, 0.35);
  cursor: pointer;
  padding: 0;
  transition: background 0.15s, transform 0.15s;
}
.hero-dots button[aria-selected="true"] {
  background: #f5f0e8;
  transform: scale(1.2);
}
.hero-dots button:hover { background: rgba(245, 240, 232, 0.7); }

.hero-nav {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  direction: ltr;
}
.hero-nav button {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid rgba(245, 240, 232, 0.35);
  background: rgba(0, 0, 0, 0.45);
  color: #f5f0e8;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  transition: background 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.hero-nav button svg {
  width: 18px;
  height: 18px;
  display: block;
  flex-shrink: 0;
}
.hero-nav button:hover {
  background: rgba(0, 0, 0, 0.65);
  border-color: rgba(245, 240, 232, 0.65);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}
.hero-nav button:active { transform: translateY(-50%) scale(0.96); }
/* Left = previous, right = next — fixed inset, balanced */
.hero-nav .hero-prev {
  left: 24px;
  right: auto;
}
.hero-nav .hero-next {
  right: 24px;
  left: auto;
}
@media (max-width: 960px) {
  .hero-nav .hero-prev { left: 12px; }
  .hero-nav .hero-next { right: 12px; }
  .hero-nav button { width: 42px; height: 42px; }
  .hero-nav button svg { width: 16px; height: 16px; }
}
[data-theme="light"] .hero-nav button {
  background: rgba(26, 35, 50, 0.55);
  border-color: rgba(255, 255, 255, 0.4);
  color: #fff;
}
[data-theme="light"] .hero-nav button:hover {
  background: rgba(26, 35, 50, 0.75);
}

[data-theme="dark"] .hero-art {
  background:
    radial-gradient(ellipse 55% 70% at 82% 40%, var(--hero-wash-1), transparent 68%),
    radial-gradient(ellipse 40% 50% at 18% 80%, var(--hero-wash-2), transparent 60%),
    radial-gradient(ellipse 70% 40% at 50% 100%, rgba(58, 175, 212, 0.22), transparent 55%),
    linear-gradient(160deg, #000000 0%, #050505 50%, #000000 100%);
}
[data-theme="dark"] .hero-art::before {
  background: radial-gradient(circle at 40% 40%, rgba(58, 175, 212, 0.4), transparent 62%);
}
[data-theme="dark"] .hero-art::after {
  background: linear-gradient(135deg, rgba(58, 175, 212, 0.28), transparent 70%);
}
[data-theme="dark"] .hero-wisps span { background: rgba(58, 175, 212, 0.22); }
[data-theme="dark"] .hero-wisps span:nth-child(2) { background: rgba(58, 175, 212, 0.16); }
[data-theme="dark"] .hero-wisps span:nth-child(3) { background: rgba(245, 240, 232, 0.05); }
[data-theme="dark"] .hero-poster {
  background:
    radial-gradient(circle at 40% 30%, var(--happy-blue-mid), transparent 55%),
    linear-gradient(160deg, #1a1a1a, #0a0a0a);
  border-color: rgba(245, 240, 232, 0.14);
}
[data-theme="dark"] .hero-poster.p2 {
  background:
    radial-gradient(circle at 45% 35%, rgba(58, 175, 212, 0.4), transparent 55%),
    linear-gradient(165deg, #222222, #0d0d0d);
}
[data-theme="dark"] .spotlight-art {
  background:
    radial-gradient(ellipse 60% 55% at 55% 40%, var(--hero-wash-1), transparent 70%),
    linear-gradient(150deg, #141414, #000000);
}

/* —— Rails —— */
.rail-section {
  padding: 48px 0 12px;
}
.rail-section .section-head {
  margin-bottom: 20px;
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
}
.section-head p {
  color: var(--muted);
  max-width: 42ch;
  font-size: 0.95rem;
  margin-top: 4px;
}
.link-more {
  color: var(--accent);
  font-weight: 650;
  font-size: 14px;
  white-space: nowrap;
}
.link-more:hover { text-decoration: underline; }

.rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 2px 24px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 4px;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  /* Soft edge fade so cards don't clip harshly on small screens */
  mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 12px, #000 calc(100% - 12px), transparent);
}
.rail::-webkit-scrollbar { height: 6px; }
.rail::-webkit-scrollbar-thumb {
  background: var(--happy-blue-mid);
  border-radius: 999px;
}

.tile {
  flex: 0 0 auto;
  width: 200px;
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: block;
  color: inherit;
}
.tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
  border-color: var(--happy-blue-mid);
}
[data-theme="dark"] .tile,
[data-theme="dark"] .card,
[data-theme="dark"] .char-tile,
[data-theme="dark"] .music-row,
[data-theme="dark"] .form-card,
[data-theme="dark"] .coming-panel,
[data-theme="dark"] .stat,
[data-theme="dark"] .news-empty,
[data-theme="dark"] .cta-band {
  background: var(--surface);
  border-color: var(--line);
}
.tile-poster {
  height: 260px;
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 50% 30%, var(--happy-blue-mid), transparent 60%),
    linear-gradient(165deg, var(--placeholder-art), var(--surface));
}
.tile-poster.landscape { height: 140px; }
.tile-poster .blob {
  position: absolute;
  border-radius: 50%;
  background: var(--happy-blue-mid);
  filter: blur(14px);
}
.tile-body { padding: 14px 14px 16px; }
.tile-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.tile-body p {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}
.tile-meta {
  margin-top: 10px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.tile.char { width: 168px; text-align: center; }
.tile.char .tile-poster {
  height: 168px;
  background:
    radial-gradient(circle at 50% 55%, var(--happy-blue-mid), transparent 55%),
    linear-gradient(180deg, var(--placeholder-art), var(--surface));
}
.tile.char .tile-poster::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  border-radius: 50%;
  border: 2px dashed rgba(46, 157, 196, 0.45);
  background: var(--happy-blue-soft);
}
.tile.music { width: 180px; }
.tile.music .tile-poster {
  height: 180px;
  background:
    linear-gradient(135deg, var(--happy-blue-mid), var(--happy-blue-soft)),
    var(--placeholder-art);
}
.tile.music .tile-poster::before {
  content: "♪";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 2rem;
  color: rgba(46, 157, 196, 0.55);
  font-weight: 700;
}
[data-theme="dark"] .tile.music .tile-poster::before { color: rgba(58, 175, 212, 0.55); }

/* —— Spotlight feature band —— */
.spotlight-band {
  padding: 56px 0;
  margin-top: 24px;
}
.spotlight-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  min-height: 340px;
}
.spotlight-copy {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.spotlight-copy .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
.spotlight-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.6rem, 2.5vw, 2.1rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  max-width: 18ch;
}
.spotlight-copy p {
  color: var(--muted);
  max-width: 42ch;
  margin-bottom: 22px;
}
.spotlight-art {
  position: relative;
  min-height: 280px;
  background:
    radial-gradient(ellipse 60% 55% at 55% 40%, var(--hero-wash-1), transparent 70%),
    linear-gradient(150deg, #1e3344, #152433);
}
.spotlight-art .ring {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(126, 200, 227, 0.35);
  border-radius: 50%;
  top: 22%;
  left: 22%;
}
.spotlight-art .ring2 {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(46, 157, 196, 0.25);
  border-radius: 50%;
  bottom: 18%;
  right: 20%;
  filter: blur(2px);
}
.spotlight-art .wisp {
  position: absolute;
  width: 240px;
  height: 120px;
  right: 10%;
  top: 15%;
  border-radius: 50%;
  background: rgba(46, 157, 196, 0.3);
  filter: blur(30px);
}

/* —— News strip —— */
.news-strip {
  padding: 40px 0 16px;
}
.news-empty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.news-empty h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 4px;
}
.news-empty p { color: var(--muted); font-size: 0.92rem; }

/* —— Shop teaser —— */
.shop-teaser {
  padding: 24px 0 56px;
}
.shop-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 36px 40px;
  border-radius: var(--radius-xl);
  border: 1px dashed rgba(46, 157, 196, 0.4);
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, var(--happy-blue-soft), transparent 55%),
    var(--surface);
}
.shop-card h2 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin-bottom: 6px;
}
.shop-card p { color: var(--muted); max-width: 48ch; font-size: 0.95rem; }

/* —— Generic sections / cards (inner pages) —— */
.section { padding: 56px 0; }
.section.tight { padding-top: 0; }

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  display: block;
  color: inherit;
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: var(--happy-blue-mid); }
.card-media {
  height: 140px;
  background:
    linear-gradient(145deg, var(--happy-blue-soft), transparent 55%),
    linear-gradient(220deg, var(--placeholder-art), var(--surface));
  position: relative;
}
.card-media.tall { height: 180px; }
.card-media.wide { height: 200px; }
.card-media .blob {
  position: absolute;
  border-radius: 50%;
  background: var(--happy-blue-mid);
  filter: blur(12px);
}
.card-body { padding: 18px 18px 20px; }
.card-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.card-body p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}
.card-meta {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 650;
  color: var(--accent);
}

.band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.feature-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.feature-copy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.85rem;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.feature-copy p { color: var(--muted); margin-bottom: 12px; max-width: 44ch; }
.feature-art {
  height: 280px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 60% 50% at 60% 40%, var(--hero-wash-1), transparent 70%),
    linear-gradient(160deg, var(--placeholder-art), var(--surface));
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.feature-art .ring {
  position: absolute;
  width: 160px;
  height: 160px;
  border: 2px solid var(--happy-blue-mid);
  border-radius: 50%;
  top: 20%;
  left: 18%;
}
.feature-art .ring2 {
  position: absolute;
  width: 90px;
  height: 90px;
  background: var(--happy-blue-soft);
  border-radius: 50%;
  bottom: 18%;
  right: 22%;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.pill {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--happy-blue-soft);
  color: var(--accent);
  font-size: 12.5px;
  font-weight: 650;
}

.page-hero {
  padding: 56px 0 36px;
  position: relative;
  overflow: hidden;
}
.page-hero .wash {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 90% 0%, var(--hero-wash-1), transparent 65%);
  pointer-events: none;
}
.page-hero .wrap { position: relative; }
.page-hero .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.page-hero .lede {
  color: var(--muted);
  max-width: 48ch;
  font-size: 1.05rem;
}

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.form-grid .full { grid-column: 1 / -1; }
label {
  display: block;
  font-size: 12.5px;
  font-weight: 650;
  color: var(--muted);
  margin-bottom: 6px;
}
input, textarea, select {
  width: 100%;
  padding: 11px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--page);
  color: var(--text);
  font: inherit;
  font-size: 14.5px;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--happy-blue-soft);
}
textarea { min-height: 120px; resize: vertical; }

.legal {
  max-width: 720px;
  padding-bottom: 80px;
}
.legal h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 28px 0 10px;
}
.legal p, .legal li {
  color: var(--muted);
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.legal ul { padding-left: 1.2em; list-style: disc; }
.legal a { color: var(--accent); font-weight: 600; }

.coming-panel {
  text-align: center;
  padding: 64px 32px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.coming-panel .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.coming-panel h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin-bottom: 10px;
}
.coming-panel p { color: var(--muted); max-width: 40ch; margin: 0 auto 20px; }

.news-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.news-item:first-child { padding-top: 0; }
.news-thumb {
  height: 100px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, var(--happy-blue-soft), transparent 60%),
    var(--placeholder-art);
  border: 1px solid var(--line);
}
.news-item time {
  font-size: 12px;
  font-weight: 650;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.news-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.news-item p { color: var(--muted); font-size: 0.92rem; }

.char-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.char-tile {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.char-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.char-avatar {
  height: 160px;
  background:
    radial-gradient(circle at 50% 55%, var(--happy-blue-mid), transparent 55%),
    linear-gradient(180deg, var(--placeholder-art), var(--surface));
  position: relative;
}
.char-avatar::after {
  content: "";
  position: absolute;
  width: 72px;
  height: 72px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  border-radius: 50%;
  border: 2px dashed rgba(46, 157, 196, 0.45);
  background: var(--happy-blue-soft);
}
.char-tile h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  padding: 14px 12px 4px;
}
.char-tile p {
  color: var(--muted);
  font-size: 0.85rem;
  padding: 0 14px 18px;
}

.music-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 10px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.music-row:hover { box-shadow: var(--shadow-sm); transform: translateY(-1px); }
.music-cover {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background:
    linear-gradient(135deg, var(--happy-blue-mid), var(--happy-blue-soft)),
    var(--placeholder-art);
  flex-shrink: 0;
}
.music-row h3 { font-size: 0.95rem; font-weight: 650; }
.music-row p { font-size: 0.82rem; color: var(--muted); }
.music-row .play {
  margin-left: auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 12px;
  background: var(--happy-blue-soft);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--accent);
  margin-bottom: 4px;
}
.stat span { font-size: 0.85rem; color: var(--muted); font-weight: 600; }

.cta-band {
  margin: 24px 0 0;
  padding: 40px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 80% 100% at 100% 50%, var(--hero-wash-1), transparent 55%),
    var(--surface);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 6px;
}
.cta-band p { color: var(--muted); font-size: 0.95rem; }

/* —— Footer —— */
.site-footer {
  margin-top: 24px;
  background: var(--footer-bg);
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.15fr 2.2fr;
  gap: 48px;
  margin-bottom: 36px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 14px;
  max-width: 34ch;
  line-height: 1.55;
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer-cols h4 {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.footer-cols a {
  display: block;
  font-size: 14px;
  color: var(--text);
  padding: 5px 0;
  font-weight: 550;
}
.footer-cols a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.footer-bottom-links {
  display: flex;
  gap: 18px;
}
.footer-bottom a:hover { color: var(--accent); }

/* —— Mobile nav panel —— */
.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--header-bg);
  padding: 12px var(--pad) 18px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav a {
  display: block;
  padding: 10px 8px;
  font-weight: 600;
  color: var(--muted);
  border-radius: 8px;
}
.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  color: var(--accent);
  background: var(--happy-blue-soft);
}
.mobile-search {
  margin-top: 8px;
  margin-bottom: 4px;
}

@media (max-width: 1100px) {
  .search-affordance { min-width: 120px; }
  .nav a { padding: 7px 8px; font-size: 13px; }
}

@media (max-width: 960px) {
  .nav, .search-affordance { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero-spotlight .wrap { grid-template-columns: 1fr; gap: 28px; padding-bottom: 24px; }
  .hero-visual { height: 240px; }
  .hero-poster { width: 120px; height: 168px; }
  .hero-poster.p2 { width: 136px; height: 190px; }
  .hero-slide { padding: 56px 0 72px; }
  .spotlight-card { grid-template-columns: 1fr; }
  .spotlight-copy { padding: 36px 28px; }
  .grid-4, .char-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .feature-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .news-empty, .shop-card { grid-template-columns: 1fr; flex-direction: column; align-items: flex-start; }
  .shop-card { display: flex; flex-direction: column; align-items: flex-start; }
  .news-item { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
  .stat-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  :root { --pad: 20px; }
  .site-header .inner { height: 64px; gap: 12px; }
  .grid-4, .char-grid, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .tile { width: 156px; }
  .tile.char { width: 132px; }
  .tile-poster { height: 210px; }
  .hero-copy h1 {
    max-width: none;
    font-size: clamp(2rem, 9vw, 2.6rem);
  }
  .hero-copy .lede { font-size: 1rem; }
  .hero-spotlight { min-height: 0; }
  .hero-slide { padding: 40px 0 64px; }
  .hero-visual { height: 200px; }
  .section-head { flex-wrap: wrap; align-items: flex-start; }
  .rail { gap: 12px; padding-bottom: 20px; }
  .btn-clear { display: none; }
}

/* —— Promo strip (under header) —— */
.promo-strip {
  position: sticky;
  top: 72px;
  z-index: 55;
  background: #1a3344;
  color: rgba(245, 240, 232, 0.92);
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 9px var(--pad);
  border-bottom: 1px solid rgba(245, 240, 232, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.promo-strip a {
  color: #f5f0e8;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s, opacity 0.15s;
}
.promo-strip a:hover { border-bottom-color: rgba(245, 240, 232, 0.65); opacity: 1; }
.promo-strip .sep { margin: 0 10px; opacity: 0.4; }
[data-theme="dark"] .promo-strip {
  background: rgba(0, 0, 0, 0.94);
  border-bottom: 1px solid var(--line);
  color: rgba(245, 240, 232, 0.88);
}
@media (max-width: 600px) {
  .promo-strip {
    top: 64px;
    font-size: 11px;
    letter-spacing: 0.06em;
    padding: 8px 12px;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .promo-strip::-webkit-scrollbar { display: none; }
  .promo-strip .sep { margin: 0 8px; }
}

/* —— Dark band (alternating entertainment section) —— */
.band-dark {
  background: #132033;
  color: #f5f0e8;
  padding: 56px 0;
  margin-top: 28px;
}
.band-dark .section-head h2 { color: #f5f0e8; }
.band-dark .section-head p { color: rgba(245, 240, 232, 0.68); }
.band-dark .link-more { color: #7ec8e3; }
.band-dark .promo-2 .card {
  background: #fff;
  color: #1a2332;
  border: none;
}
.band-dark .promo-2 .card-body p { color: rgba(26, 35, 50, 0.68); }
.band-dark .promo-2 .card-meta { color: #2e9dc4; }
[data-theme="dark"] .band-dark {
  background: #000000;
}
[data-theme="dark"] .band-dark .promo-2 .card {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--line);
}
[data-theme="dark"] .band-dark .promo-2 .card-body p { color: var(--muted); }
[data-theme="dark"] .band-dark .promo-2 .card-meta { color: var(--accent); }

.promo-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.promo-2 .card-media { height: 180px; }
.promo-2 .card-body h3 { font-size: 1.25rem; }
.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}
.section-head.center p { margin: 0 auto; }

/* —— Social follow —— */
.social-follow {
  text-align: center;
  padding: 40px 0 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 36px;
}
.social-follow h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 18px;
}
.social-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: none;
  opacity: 0.85;
  cursor: default;
}
[data-theme="dark"] .social-btn {
  background: #f5f0e8;
  color: #1a2332;
}
.social-note {
  margin-top: 14px;
  font-size: 0.82rem;
  color: var(--muted);
}

@media (max-width: 960px) {
  .promo-2 { grid-template-columns: 1fr; }
}
