:root {
  color-scheme: light;
  --bg: oklch(0.975 0.012 235);
  --surface: oklch(1 0 0);
  --surface-strong: oklch(0.94 0.028 235);
  --ink: oklch(0.25 0.055 242);
  --muted: oklch(0.49 0.045 242);
  --primary: oklch(0.48 0.12 240);
  --primary-dark: oklch(0.34 0.105 244);
  --deep-blue: oklch(0.22 0.075 246);
  --line: oklch(0.84 0.025 240);
  --member-color: oklch(0.68 0.09 265);
  --radius: 14px;
  --page: min(1280px, calc(100% - 40px));
  --font: "Noto Sans SC", "Yu Gothic", "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 10% 18%, oklch(0.25 0.05 230 / 0.38), transparent 26rem),
    var(--bg);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.75;
}

main > section,
main [id] {
  scroll-margin-top: 86px;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, transparent 49.9%, oklch(0.3 0 0 / 0.1) 50%, transparent 50.1%);
  content: "";
  pointer-events: none;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 8px 14px;
  transform: translateY(-160%);
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: var(--page);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  padding: 10px max(20px, calc((100vw - 1280px) / 2));
  border-bottom: 1px solid transparent;
  transition:
    background 280ms ease,
    border-color 280ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  background: oklch(0.09 0 0 / 0.88);
  backdrop-filter: blur(16px);
}

.brand img {
  width: 104px;
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
}

.site-nav a,
.nav-toggle {
  position: relative;
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--primary);
  content: "";
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: var(--bg);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  transform: scale(1.03);
  animation: hero-image-in 1.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(0.07 0 0 / 0.97) 0%, oklch(0.07 0 0 / 0.84) 31%, transparent 70%),
    linear-gradient(0deg, oklch(0.07 0 0 / 0.7), transparent 42%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  width: var(--page);
  min-height: 100dvh;
  padding-top: 80px;
}

.hero-logo {
  width: clamp(160px, 18vw, 260px);
  margin-bottom: clamp(22px, 4vw, 50px);
  filter: brightness(0) invert(1);
  animation: hero-copy-in 900ms 200ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-kicker {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: clamp(0.84rem, 1.1vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  animation: hero-copy-in 900ms 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  color: white;
  font-size: clamp(3.2rem, 8vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.03;
  text-wrap: balance;
  animation: hero-copy-in 900ms 400ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-intro {
  max-width: 34rem;
  margin: 24px 0 28px;
  color: oklch(0.9 0.018 220);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.9;
  text-wrap: pretty;
  animation: hero-copy-in 900ms 520ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 2px solid var(--primary);
  border-radius: 999px;
  background: var(--primary-dark);
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease;
  animation: hero-copy-in 900ms 620ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.primary-link:hover {
  transform: translateY(-2px);
  background: var(--primary);
}

.primary-link:active {
  transform: translateY(0) scale(0.98);
}

.hero-note {
  position: absolute;
  right: 20px;
  bottom: 16px;
  z-index: 2;
  margin: 0;
  color: oklch(0.78 0 0);
  font-size: 0.72rem;
}

.band {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
  padding-block: clamp(90px, 12vw, 170px);
}

.band-art {
  position: relative;
  align-self: start;
}

.band-art::before {
  position: absolute;
  inset: -18px 18px 18px -18px;
  z-index: -1;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  content: "";
  opacity: 0.6;
}

.band-art img {
  width: 100%;
  aspect-ratio: 0.7;
  border-radius: var(--radius);
  object-fit: cover;
}

.band-art p,
.member-image-caption {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.section-mark {
  margin: 0 0 16px;
  color: var(--primary);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.band h2,
.section-heading h2,
.anime h2,
.sources h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.6vw, 4.5rem);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.12;
  text-wrap: balance;
}

.lead {
  margin: 28px 0;
  color: oklch(0.9 0.015 220);
  font-size: clamp(1.04rem, 1.4vw, 1.2rem);
  line-height: 1.95;
}

.band-facts {
  margin: 42px 0 34px;
}

.band-facts div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.band-facts div:last-child {
  border-bottom: 1px solid var(--line);
}

.band-facts dt {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
}

.band-facts dd {
  margin: 0;
  color: var(--muted);
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 28px;
}

.inline-links a,
.text-link {
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
  text-underline-offset: 6px;
  transition: color 180ms ease;
}

.inline-links a:hover,
.text-link:hover {
  color: var(--primary);
}

.members {
  padding-block: clamp(80px, 11vw, 160px);
  background:
    linear-gradient(180deg, transparent, oklch(0.18 0.025 230 / 0.4) 25%, oklch(0.14 0.02 230 / 0.45) 75%, transparent);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.35fr) minmax(300px, 1fr);
  gap: 36px;
  align-items: start;
  margin-bottom: clamp(40px, 6vw, 80px);
}

.section-heading .section-mark {
  margin-top: 12px;
}

.member-stage {
  display: grid;
  grid-template-columns: minmax(300px, 1.2fr) minmax(300px, 0.8fr);
  min-height: 680px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface);
}

.member-portrait-wrap {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 45%, color-mix(in oklch, var(--member-color) 24%, transparent), transparent 45%),
    oklch(0.985 0.006 220);
}

.member-portrait-wrap::after {
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(transparent, var(--surface));
  content: "";
  pointer-events: none;
}

.member-portrait {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  object-position: center;
  transition:
    opacity 180ms ease,
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.member-stage.is-changing .member-portrait {
  transform: scale(1.015);
  opacity: 0.28;
}

.member-index {
  position: absolute;
  top: -38px;
  left: 18px;
  z-index: 2;
  color: color-mix(in oklch, var(--member-color) 45%, transparent);
  font-size: clamp(8rem, 17vw, 15rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 1;
}

.member-image-caption {
  position: absolute;
  right: 18px;
  bottom: 12px;
  z-index: 3;
}

.member-detail {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 72px);
  transition: opacity 180ms ease;
}

.member-stage.is-changing .member-detail {
  opacity: 0.25;
}

.member-title-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.member-role {
  margin: 0;
  padding: 5px 11px;
  border-radius: 999px;
  background: var(--member-color);
  color: oklch(0.1 0 0);
  font-size: 0.8rem;
  font-weight: 900;
}

.member-jp {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.member-detail h3 {
  margin: 20px 0 0;
  font-size: clamp(3.3rem, 6vw, 6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.member-roman {
  margin: 8px 0 28px;
  color: var(--member-color);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.member-summary {
  max-width: 38rem;
  margin: 0;
  color: oklch(0.86 0.018 220);
  font-size: 1.02rem;
}

.member-meta {
  width: 100%;
  margin: 32px 0;
}

.member-meta div {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.member-meta dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.member-meta dd {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 750;
}

.member-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 12px;
  scrollbar-width: none;
}

.member-tabs::-webkit-scrollbar {
  display: none;
}

.member-tab {
  min-height: 62px;
  padding: 10px 12px;
  border: 0;
  border-bottom: 2px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.member-tab span {
  display: block;
  color: inherit;
  font-size: 0.66rem;
  font-weight: 850;
}

.member-tab:hover,
.member-tab.is-active {
  border-color: var(--member-color);
  background: color-mix(in oklch, var(--member-color) 8%, transparent);
  color: var(--ink);
}

.member-tab:active {
  transform: translateY(1px);
}

.anime {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(430px, 1.28fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: start;
  padding-block: clamp(90px, 12vw, 170px);
}

.anime-copy {
  position: sticky;
  top: 110px;
}

.anime-copy > p:not(.section-mark) {
  color: var(--muted);
}

.still-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 12px;
}

.still {
  position: relative;
  min-height: 250px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--surface);
  color: white;
  cursor: zoom-in;
}

.still-wide {
  grid-column: 1 / -1;
  min-height: 360px;
}

.still img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition:
    transform 600ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 300ms ease;
}

.still::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, oklch(0.05 0 0 / 0.86));
  content: "";
}

.still span {
  position: absolute;
  right: 18px;
  bottom: 14px;
  left: 18px;
  z-index: 2;
  font-size: 0.82rem;
  font-weight: 750;
  text-align: left;
}

.still:hover img {
  transform: scale(1.035);
  filter: saturate(1.12);
}

.cast {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--surface);
}

.cast-list {
  display: grid;
  gap: 26px;
}

.cast-row {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(300px, 1.22fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  padding-block: 24px;
}

.cast-row + .cast-row {
  border-top: 1px solid var(--line);
}

.cast-row:nth-child(even) .cast-images {
  order: 2;
}

.cast-row:nth-child(even) .cast-copy {
  padding-left: clamp(0px, 6vw, 90px);
}

.cast-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: var(--radius);
  background: oklch(0.2 0.02 220);
}

.cast-images img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  filter: saturate(0.86);
  transition:
    filter 260ms ease,
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1);
}

.cast-row:hover .cast-images img {
  transform: scale(1.018);
  filter: saturate(1);
}

.cast-copy > p:first-child {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.cast-copy h3 {
  margin: 0 0 18px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
}

.cast-copy p:last-child {
  max-width: 48rem;
  margin: 0;
  color: var(--muted);
}

.sources {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
  padding-block: clamp(90px, 12vw, 170px);
}

.sources-copy > p:last-child {
  color: var(--muted);
}

.source-links {
  display: grid;
}

.source-links a {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 6px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition:
    padding 220ms ease,
    color 220ms ease;
}

.source-links a:first-child {
  border-top: 1px solid var(--line);
}

.source-links a:hover {
  padding-left: 14px;
  color: var(--primary);
}

.source-links strong {
  font-size: 1.08rem;
}

.source-links span {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  gap: 24px;
  align-items: center;
  width: var(--page);
  margin-inline: auto;
  padding-block: 36px;
  border-top: 1px solid var(--line);
}

.site-footer img {
  width: 120px;
  filter: brightness(0) invert(1);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.site-footer a {
  font-size: 0.78rem;
  font-weight: 800;
  text-underline-offset: 5px;
}

.lightbox {
  width: min(1100px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
}

.lightbox::backdrop {
  background: oklch(0.03 0 0 / 0.92);
  backdrop-filter: blur(10px);
}

.lightbox img {
  width: 100%;
  max-height: 82dvh;
  border-radius: var(--radius);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: -48px;
  right: 0;
  min-height: 36px;
  padding: 0 16px;
  border: 1px solid oklch(0.7 0 0 / 0.5);
  border-radius: 999px;
  background: oklch(0.12 0 0);
  color: white;
  cursor: pointer;
}

.reveal {
  transform: translateY(22px);
  opacity: 0.76;
  transition:
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 700ms ease;
}

.reveal.is-visible {
  transform: translateY(0);
  opacity: 1;
}

@keyframes hero-image-in {
  from {
    transform: scale(1.1);
    filter: brightness(0.5);
  }
  to {
    transform: scale(1.03);
    filter: brightness(1);
  }
}

@keyframes hero-copy-in {
  from {
    transform: translateY(18px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 980px) {
  :root {
    --page: min(100% - 28px, 760px);
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, oklch(0.07 0 0 / 0.93), oklch(0.07 0 0 / 0.5)),
      linear-gradient(0deg, oklch(0.07 0 0 / 0.88), transparent 65%);
  }

  .band,
  .anime,
  .sources {
    grid-template-columns: 1fr;
  }

  .band-art {
    width: min(70%, 480px);
  }

  .member-stage {
    grid-template-columns: 1fr;
  }

  .member-portrait-wrap,
  .member-portrait {
    min-height: 540px;
  }

  .member-tabs {
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    width: var(--page);
    overflow-x: auto;
  }

  .anime-copy {
    position: static;
  }

  .cast-row {
    gap: 30px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 62px;
    padding-inline: 14px;
  }

  .nav-toggle {
    display: block;
    cursor: pointer;
  }

  .site-nav {
    position: absolute;
    top: 62px;
    right: 12px;
    display: none;
    width: min(240px, calc(100vw - 24px));
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: oklch(0.12 0.012 220 / 0.98);
  }

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

  .site-nav a {
    padding: 9px 10px;
  }

  .site-nav a::after {
    display: none;
  }

  .brand img {
    width: 90px;
  }

  .hero {
    min-height: 92dvh;
  }

  .hero-copy {
    justify-content: flex-end;
    min-height: 92dvh;
    padding-bottom: 58px;
  }

  .hero-image {
    object-position: 54% center;
  }

  .hero-shade {
    background: linear-gradient(0deg, oklch(0.07 0 0 / 0.97) 0%, oklch(0.07 0 0 / 0.62) 58%, transparent 100%);
  }

  .hero-logo {
    width: 132px;
    margin-bottom: 18px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }

  .hero-intro {
    margin-block: 16px 20px;
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .hero-note {
    display: none;
  }

  .band-art {
    width: calc(100% - 12px);
    margin-left: 12px;
  }

  .section-heading {
    display: block;
  }

  .member-stage {
    min-height: 0;
  }

  .member-portrait-wrap,
  .member-portrait {
    min-height: 420px;
  }

  .member-detail {
    padding: 28px 22px 34px;
  }

  .member-detail h3 {
    font-size: clamp(3rem, 16vw, 4.8rem);
  }

  .member-tabs {
    width: calc(100% - 14px);
    margin-right: 0;
    margin-left: 14px;
    padding-right: 14px;
  }

  .still-grid {
    grid-template-columns: 1fr;
  }

  .still,
  .still-wide {
    grid-column: auto;
    min-height: 250px;
  }

  .cast-row {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-block: 30px;
  }

  .cast-row:nth-child(even) .cast-images,
  .cast-row:nth-child(even) .cast-copy {
    order: initial;
    padding-left: 0;
  }

  .cast-copy h3 {
    font-size: 3.1rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

.discography {
  padding-block: clamp(90px, 12vw, 170px);
}

.discography-heading,
.moments-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.3fr) minmax(320px, 0.9fr) minmax(240px, 0.55fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: start;
  margin-bottom: clamp(40px, 6vw, 76px);
}

.discography-heading h2,
.moments-heading h2,
.words-heading h2 {
  margin: 0;
  font-size: clamp(2.3rem, 4.8vw, 4.8rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-wrap: balance;
}

.discography-heading > p:last-child,
.moments-heading > p:last-child,
.words-heading > p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
}

.album-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr 0.9fr;
  gap: 14px;
}

.album {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 180ms ease;
}

.album-main {
  grid-row: span 2;
}

.album:nth-child(4) {
  grid-column: 2 / -1;
  grid-template-columns: minmax(190px, 0.75fr) minmax(240px, 1.25fr);
  grid-template-rows: 1fr;
}

.album:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.album img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.album-main img {
  min-height: 520px;
}

.album span {
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 20px;
}

.album small {
  color: var(--primary);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.album strong {
  font-size: clamp(1.5rem, 2.8vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.album em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

.words {
  padding-block: clamp(90px, 11vw, 155px);
  background:
    radial-gradient(circle at 88% 12%, oklch(0.57 0.12 235 / 0.3), transparent 24rem),
    var(--deep-blue);
  color: white;
}

.words-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.28fr) minmax(320px, 0.9fr) minmax(260px, 0.55fr);
  gap: clamp(22px, 5vw, 70px);
  align-items: start;
  margin-bottom: clamp(46px, 7vw, 86px);
}

.words-heading > p:last-child {
  color: oklch(0.82 0.03 235);
}

.word-stories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.word-story {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
  background: oklch(0.16 0.055 246);
}

.word-story-wide {
  grid-column: 1 / -1;
  min-height: 560px;
}

.word-story img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.8);
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.word-story:hover img {
  transform: scale(1.025);
}

.word-story::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, oklch(0.08 0.04 246 / 0.98), transparent 75%);
  content: "";
}

.word-story div {
  position: absolute;
  right: clamp(22px, 5vw, 70px);
  bottom: clamp(24px, 5vw, 66px);
  left: clamp(22px, 5vw, 70px);
  z-index: 1;
  max-width: 60rem;
}

.word-story p {
  margin: 0 0 8px;
  color: oklch(0.79 0.1 225);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.06em;
}

.word-story blockquote {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4.5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  text-wrap: balance;
}

.word-story span {
  display: block;
  max-width: 54rem;
  color: oklch(0.84 0.025 235);
  font-size: 0.9rem;
}

.moments {
  padding-block: clamp(90px, 12vw, 165px);
}

.moment-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  grid-template-rows: repeat(2, minmax(250px, 1fr));
  gap: 12px;
}

.moment {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--deep-blue);
  color: white;
  cursor: zoom-in;
}

.moment-large {
  grid-row: 1 / -1;
  min-height: 530px;
}

.moment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 650ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 250ms ease;
}

.moment::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 55%, oklch(0.08 0.04 246 / 0.88));
  content: "";
}

.moment span {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 1;
  font-size: 0.82rem;
  font-weight: 800;
  text-align: left;
}

.moment:hover img {
  transform: scale(1.025);
  filter: saturate(1.1);
}

@media (max-width: 980px) {
  .discography-heading,
  .moments-heading,
  .words-heading {
    grid-template-columns: 1fr;
  }

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

  .album-main,
  .album:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .album-main img,
  .album img {
    min-height: 300px;
  }
}

@media (max-width: 720px) {
  .album-grid,
  .word-stories,
  .moment-grid {
    grid-template-columns: 1fr;
  }

  .album img,
  .album-main img {
    min-height: 280px;
  }

  .word-story,
  .word-story-wide {
    grid-column: auto;
    min-height: 430px;
  }

  .word-story blockquote {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .moment-grid {
    grid-template-rows: auto;
  }

  .moment,
  .moment-large {
    grid-row: auto;
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    transform: none;
    opacity: 1;
  }
}

/* Blue-and-white uniform theme */
body {
  background:
    radial-gradient(circle at 12% 9%, oklch(0.88 0.06 230 / 0.55), transparent 30rem),
    linear-gradient(180deg, oklch(0.985 0.008 235), var(--bg));
}

body::before {
  background: linear-gradient(90deg, transparent 49.9%, oklch(0.55 0.08 240 / 0.08) 50%, transparent 50.1%);
}

.site-header {
  color: var(--deep-blue);
}

.site-header.is-scrolled {
  border-color: oklch(0.8 0.04 240 / 0.65);
  background: oklch(0.22 0.075 246 / 0.94);
}

.site-footer img {
  filter: brightness(0) invert(1);
}

.site-header .brand img {
  filter: none;
}

.site-header.is-scrolled .brand img {
  filter: brightness(0) invert(1);
}

.site-header.is-scrolled .site-nav a,
.site-header.is-scrolled .nav-toggle {
  color: white;
}

.hero {
  min-height: 100dvh;
  background: oklch(0.96 0.025 235);
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: 54%;
  background:
    linear-gradient(90deg, oklch(0.98 0.014 235) 0%, oklch(0.98 0.014 235 / 0.95) 68%, transparent 100%),
    radial-gradient(circle at 20% 35%, oklch(0.83 0.08 235 / 0.7), transparent 40%);
  content: "";
}

.hero-image {
  right: 0;
  left: auto;
  width: 64%;
  height: 100%;
  object-position: center 58%;
  filter: saturate(1.03) contrast(1.02);
}

.hero-shade {
  display: none;
}

.hero-copy {
  color: var(--ink);
}

.hero-logo {
  width: clamp(170px, 20vw, 285px);
  margin-bottom: clamp(22px, 3vw, 42px);
  filter: none;
}

.hero h1 {
  color: var(--deep-blue);
}

.hero-intro {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-link {
  border-color: var(--primary-dark);
  background: var(--primary-dark);
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--primary);
  border-radius: 999px;
  color: var(--primary-dark);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.secondary-link:hover {
  transform: translateY(-2px);
  background: oklch(0.91 0.045 235);
}

.hero-note {
  color: var(--deep-blue);
}

.band {
  padding-block: clamp(100px, 12vw, 170px);
}

.band-art img {
  aspect-ratio: 0.81;
  object-position: center top;
}

.band-facts dd,
.band-art p,
.member-image-caption,
.source-links span,
.site-footer p {
  color: var(--muted);
}

.lead {
  color: oklch(0.34 0.055 242);
}

.music {
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 11vw, 150px) 0;
  background:
    radial-gradient(circle at 88% 14%, oklch(0.6 0.13 235 / 0.34), transparent 26rem),
    var(--deep-blue);
  color: white;
}

.music::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(oklch(1 0 0 / 0.06) 1px, transparent 1px),
    linear-gradient(90deg, oklch(1 0 0 / 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 75%);
  pointer-events: none;
}

.music-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(360px, 1.15fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
  padding-bottom: clamp(70px, 9vw, 120px);
}

.music-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.06;
  text-wrap: balance;
}

.music-copy .lead {
  color: oklch(0.87 0.025 235);
}

.music-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
}

.music-links a {
  color: white;
  font-size: 0.86rem;
  font-weight: 800;
  text-underline-offset: 6px;
}

.offline-player {
  padding: 20px;
  border-radius: var(--radius);
  background: oklch(1 0 0 / 0.96);
  color: var(--ink);
  box-shadow: 0 8px 0 oklch(0.1 0.04 245 / 0.25);
}

.now-playing {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: end;
  padding: 16px;
  border-radius: 10px;
  background: oklch(0.94 0.035 235);
}

.now-playing img {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 7px 0 oklch(0.48 0.12 240 / 0.22);
}

.now-playing-copy {
  display: grid;
  gap: 8px;
  padding-bottom: 4px;
}

.now-playing-copy small {
  color: var(--primary);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.now-playing-copy p {
  max-width: 28ch;
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.45;
}

.now-playing-copy strong {
  color: var(--muted);
  font-size: 0.75rem;
}

.player-progress {
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.player-progress span {
  color: var(--muted);
  font-size: 0.65rem;
  font-variant-numeric: tabular-nums;
}

.player-progress span:last-child {
  text-align: right;
}

.player-progress input,
.player-controls input {
  accent-color: var(--primary);
  cursor: pointer;
}

.player-controls {
  display: grid;
  grid-template-columns: auto auto auto 1fr;
  gap: 8px;
  align-items: center;
  margin: 12px 0 18px;
}

.player-controls button {
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 850;
  cursor: pointer;
}

.player-controls button:hover,
.player-controls button:focus-visible {
  border-color: var(--primary);
  color: var(--primary);
}

.player-controls .play-toggle {
  min-width: 72px;
  border-color: var(--primary);
  background: var(--primary);
  color: white;
}

.player-controls .play-toggle:hover,
.player-controls .play-toggle:focus-visible {
  background: var(--deep-blue);
  color: white;
}

.player-controls label {
  display: flex;
  justify-content: end;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
}

.player-controls label input {
  width: min(92px, 18vw);
}

.local-playlist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  max-height: 262px;
  margin: 0;
  padding: 0 4px 0 0;
  overflow-y: auto;
  list-style: none;
  scrollbar-color: var(--primary) transparent;
}

.local-track {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 7px;
  width: 100%;
  padding: 10px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: oklch(0.97 0.012 235);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.local-track:hover,
.local-track.is-active {
  border-color: var(--primary);
  background: oklch(0.92 0.045 235);
}

.local-track span {
  color: var(--primary);
  font-size: 0.65rem;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.local-track strong {
  overflow: hidden;
  font-size: 0.75rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.offline-player .player-local-note {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.player-topline {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.player-topline span {
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.player-topline strong {
  font-size: 1.5rem;
}

.track-strip {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid oklch(1 0 0 / 0.2);
}

.track-strip span {
  padding: 18px 16px;
  border-right: 1px solid oklch(1 0 0 / 0.2);
  color: oklch(0.9 0.025 235);
  font-size: 0.76rem;
  font-weight: 800;
  text-align: center;
}

.video {
  padding-block: clamp(90px, 12vw, 170px);
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.48fr) minmax(260px, 0.52fr);
  gap: 14px;
}

.video-screen {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--deep-blue);
  box-shadow: 0 8px 0 oklch(0.55 0.08 240 / 0.28);
}

.video-screen iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-fallback {
  margin: 0;
  padding: 12px 16px;
  color: oklch(0.84 0.025 235);
  font-size: 0.72rem;
}

.video-fallback a {
  color: white;
  font-weight: 800;
  text-underline-offset: 4px;
}

.video-playlist {
  display: grid;
  align-content: start;
  gap: 8px;
}

.video-item {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 82px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.video-item:hover,
.video-item.is-active {
  transform: translateX(-4px);
  border-color: var(--primary);
  background: oklch(0.93 0.035 235);
}

.video-item img {
  width: 112px;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  object-fit: cover;
}

.video-item span {
  display: grid;
  gap: 3px;
}

.video-item small {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 750;
}

.video-item strong {
  font-size: 0.9rem;
}

.members {
  background:
    linear-gradient(180deg, transparent, oklch(0.9 0.045 235 / 0.72) 25%, oklch(0.95 0.025 235) 75%, transparent);
}

.member-stage {
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 8px 0 oklch(0.55 0.08 240 / 0.22);
}

.member-portrait-wrap::after {
  background: linear-gradient(transparent, oklch(1 0 0 / 0.9));
}

.member-summary {
  color: oklch(0.36 0.05 242);
}

.member-role {
  color: white;
}

.anime-copy > p:not(.section-mark),
.cast-copy p:last-child,
.sources-copy > p:last-child {
  color: var(--muted);
}

.still {
  background: var(--deep-blue);
}

.cast {
  background:
    radial-gradient(circle at 10% 5%, oklch(0.52 0.11 235 / 0.35), transparent 28rem),
    var(--deep-blue);
  color: white;
}

.cast .section-mark,
.cast-copy > p:first-child {
  color: oklch(0.79 0.1 225);
}

.cast-copy p:last-child {
  color: oklch(0.82 0.03 235);
}

.cast-row + .cast-row {
  border-color: oklch(1 0 0 / 0.18);
}

.sources {
  padding-block: clamp(90px, 12vw, 160px);
}

.source-links a:hover {
  background: oklch(0.93 0.035 235);
}

.site-footer {
  width: 100%;
  padding: 36px max(20px, calc((100vw - 1280px) / 2));
  border-top: 0;
  background: var(--deep-blue);
  color: white;
}

.site-footer p {
  color: oklch(0.82 0.03 235);
}

@media (max-width: 980px) {
  .hero::before {
    width: 72%;
  }

  .hero-image {
    width: 72%;
    object-position: center 56%;
  }

  .music-inner,
  .video-layout {
    grid-template-columns: 1fr;
  }

  .video-playlist {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 720px) {
  .site-nav {
    background: oklch(0.22 0.075 246 / 0.98);
  }

  .hero {
    min-height: 94dvh;
  }

  .hero::before {
    inset: auto 0 0;
    width: 100%;
    height: 67%;
    background: linear-gradient(0deg, oklch(0.98 0.014 235) 45%, oklch(0.98 0.014 235 / 0.88) 72%, transparent);
  }

  .hero-image {
    width: 100%;
    height: 68%;
    object-position: center 56%;
  }

  .hero-copy {
    justify-content: flex-end;
    min-height: 94dvh;
    padding-bottom: 38px;
  }

  .hero-logo {
    width: 145px;
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 4rem);
  }

  .hero-intro {
    max-width: 31rem;
    color: var(--muted);
  }

  .hero-actions {
    gap: 8px;
  }

  .primary-link,
  .secondary-link {
    min-height: 44px;
    padding-inline: 15px;
    font-size: 0.78rem;
  }

  .track-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .video-playlist {
    grid-template-columns: 1fr;
  }

  .video-item:hover,
  .video-item.is-active {
    transform: none;
  }

  .offline-player {
    padding: 14px;
  }

  .now-playing {
    grid-template-columns: 96px 1fr;
    gap: 14px;
    padding: 12px;
  }

  .now-playing-copy p {
    font-size: 0.88rem;
  }

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

  .player-controls button {
    padding-inline: 8px;
  }

  .player-controls label {
    grid-column: 1 / -1;
    justify-content: space-between;
  }

  .player-controls label input {
    width: calc(100% - 46px);
  }

  .local-playlist {
    grid-template-columns: 1fr;
    max-height: 300px;
  }
}
