/* ══════════════════════════════════════════════════════════════════
   CYNDI WANG — 先锋粉丝站
   Y2K 糖果色 × 液态金属银。基底走珠光浅色，避开性冷淡暗黑。
   ══════════════════════════════════════════════════════════════════ */

:root {
  /* 色板 */
  --ink:        #17101C;   /* 深梅墨 — 正文色，对珠光底高对比 */
  --ink-soft:   #4A3D55;
  --night:      #140B1B;   /* Hero 夜底 — 让液态金属字真正立起来 */
  --night-2:    #2A1638;
  --pearl:      #F4EEF3;   /* 珠光底 */
  --pearl-hi:   #FFFDFE;
  --sakura:     #FF8FC0;
  --sakura-lt:  #FFC9E0;
  --lilac:      #B49CFF;
  --ice:        #9FE3F5;
  --honey:      #FFD79A;
  --silver-a:   #E8E4EC;
  --silver-b:   #9E97AD;

  /* 层级 —— 特效层永远在这个刻度里，且永不接收指针事件 */
  --z-aurora: 0;
  --z-grid:   1;
  --z-body:   10;
  --z-grain:  60;
  --z-intro:  70;
  --z-nav:    100;
  --nav-height: 75px;

  --edge:  1px solid color-mix(in oklab, var(--ink) 12%, transparent);
  --shadow-lift: 0 24px 60px -24px color-mix(in oklab, var(--ink) 45%, transparent);

  --font-display: "Anton", "Arial Narrow", Impact, sans-serif;
  --font-ui: "Inter", "Microsoft YaHei", "PingFang SC", system-ui, sans-serif;
  --font-mono: "Space Mono", ui-monospace, "Cascadia Mono", monospace;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }

body {
  margin: 0;
  background: var(--pearl);
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3 { margin: 0; font-weight: 800; letter-spacing: -0.02em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--sakura); outline-offset: 6px; }
#home:focus { outline: none; }

.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.dim { color: var(--ink-soft); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* Lucide 注入的 SVG 统一走 currentColor 描边 */
svg.lucide { width: 1em; height: 1em; stroke-width: 1.75; flex: none; }

/* ══ 特效层 ══════════════════════════════════════════════════════
   红线：三层全部 pointer-events:none，且钉在内容层之下/之上但不可交互。 */
.fx {
  position: fixed;
  inset: 0;
  pointer-events: none;   /* ← 不可移除 */
  user-select: none;
}

.fx--aurora { z-index: var(--z-aurora); overflow: hidden; }
.blob {
  position: absolute;
  display: block;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.62;
  will-change: transform;
}
.blob--sakura { width: 46vw; height: 46vw; left: -8vw;  top: -10vw;
  background: radial-gradient(circle at 35% 35%, var(--sakura), transparent 68%);
  animation: drift-a 26s ease-in-out infinite; }
.blob--lilac  { width: 40vw; height: 40vw; right: -6vw; top: 4vw;
  background: radial-gradient(circle at 60% 40%, var(--lilac), transparent 68%);
  animation: drift-b 32s ease-in-out infinite; }
.blob--ice    { width: 34vw; height: 34vw; left: 26vw;  top: 34vw;
  background: radial-gradient(circle at 50% 50%, var(--ice), transparent 70%);
  animation: drift-c 29s ease-in-out infinite; }
.blob--chrome { width: 52vw; height: 30vw; right: -10vw; bottom: -12vw;
  background: linear-gradient(120deg, var(--silver-a), var(--silver-b), transparent 72%);
  opacity: 0.4;
  animation: drift-b 38s ease-in-out infinite reverse; }

@keyframes drift-a { 50% { transform: translate3d(6vw, 5vw, 0) scale(1.12); } }
@keyframes drift-b { 50% { transform: translate3d(-7vw, 4vw, 0) scale(0.9); } }
@keyframes drift-c { 50% { transform: translate3d(4vw, -6vw, 0) scale(1.08); } }

/* 细网格 —— 给珠光底一点工业刻度感 */
.fx--grid {
  z-index: var(--z-grid);
  background-image:
    linear-gradient(color-mix(in oklab, var(--ink) 5%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in oklab, var(--ink) 5%, transparent) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, #000 40%, transparent 100%);
}

/* 颗粒 —— 压住渐变的塑料感 */
.fx--grain {
  z-index: var(--z-grain);
  opacity: 0.34;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.42'/%3E%3C/svg%3E");
}

/* ══ 液态金属文字 ══
   金属渐变只有在夜底上才成立。压到珠光浅底上必然糊掉（实测不可读），
   所以浅色语境换一套"深色抛光金属"，保住质感的同时把明度压回可读区间。 */
.chrome {
  background: linear-gradient(168deg,
      #FFFFFF 0%, var(--silver-a) 14%, var(--sakura-lt) 30%,
      var(--lilac) 44%, #FFFFFF 57%, var(--silver-b) 70%,
      var(--sakura) 85%, #FFFFFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section:not(.section--dark) .chrome {
  background: linear-gradient(168deg,
      #1B1123 0%, #46344F 16%, #7E6790 30%, #241730 46%,
      #5B4670 62%, #9A7FAE 78%, #2A1B33 92%, #4A3A58 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ══ 手写开场 ══
   原字迹置于全局颗粒层上方，保持已验收的干净边缘。 */
.intro {
  position: relative;
  z-index: var(--z-intro);
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 28px;
  padding: 30px 40px 32px;
  color: #E8DCEF;
  background: radial-gradient(120% 90% at 30% 20%, #2A1734, #150D1D 70%);
}
.intro__masthead { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.intro__wordmark { font-family: var(--font-display); font-size: 22px; letter-spacing: .06em; }
.intro__masthead .mono { color: #B6A5C2; font-size: 10px; }
.intro__letter { display: grid; justify-items: center; align-content: center; gap: 24px; min-width: 0; }
.intro__dedication { color: #B6A5C2; font-size: 12px; letter-spacing: .34em; }
.intro__handwriting {
  position: relative;
  width: min(560px, 58svh, 100%);
  aspect-ratio: 756 / 761;
}
.intro__still { display: block; width: 100%; height: 100%; object-fit: contain; }
.intro__handwriting.is-loading .intro__still,
.intro__handwriting.is-ready .intro__still { visibility: hidden; }
.intro__animation { position: absolute; inset: 0; pointer-events: none; }
.intro__animation .note { display: block; width: 100%; height: 100%; }
.intro__animation .pen { stroke-dashoffset: 1000; }
.intro__animation .is-writing .pen {
  animation: intro-write var(--dur) cubic-bezier(.5,.05,.35,1) var(--delay) forwards;
}
@keyframes intro-write { to { stroke-dashoffset: 0; } }
.intro__foot { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 24px; }
.intro__edition { color: #B6A5C2; font-size: 9px; letter-spacing: .16em; }
.intro__enter { display: grid; justify-items: center; gap: 10px; padding: 12px 24px; font-size: 13px; letter-spacing: .15em; }
.intro__enter-meta { display: flex; align-items: center; gap: 12px; font-size: 9px; color: #B6A5C2; }
.intro__enter-meta svg { width: 16px; height: 16px; transition: transform .25s; }
.intro__enter:hover .intro__enter-meta svg { transform: translateY(4px); }
.intro__enter:hover { color: var(--sakura-lt); }
.intro__replay {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 8px 0 8px 12px;
  border: 0;
  background: transparent;
  color: #B6A5C2;
  font: 12px var(--font-ui);
  cursor: pointer;
}
.intro__replay[hidden] { display: none; }
.intro__replay:hover { color: var(--pearl-hi); }

/* ══ 导航 ══
   横跨夜底 Hero 与珠光内容区，配色必须随滚动切换，否则总有一段读不出来。 */
.nav {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 18px 40px;
  background: color-mix(in oklab, var(--pearl) 72%, transparent);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: var(--edge);
  transition: background .4s, border-color .4s, color .4s;
}
.nav.is-dark {
  color: var(--pearl);
  background: var(--night);
  border-bottom-color: color-mix(in oklab, var(--pearl) 16%, transparent);
}
.nav.is-dark .nav__wordmark em { color: color-mix(in oklab, var(--pearl) 60%, transparent); }
.nav.is-dark .nav__glyph { background: linear-gradient(145deg, var(--pearl-hi), var(--silver-a)); color: var(--night); }
.nav.is-dark .nav__links a:hover { border-bottom-color: var(--pearl); }
.nav.is-dark .btn--ghost { border-color: color-mix(in oklab, var(--pearl) 30%, transparent); }
.nav.is-dark .btn--ghost:hover { background: color-mix(in oklab, var(--pearl) 14%, transparent); }
.nav.is-dark .mono { color: color-mix(in oklab, var(--pearl) 78%, transparent); }
.nav__mark { display: flex; align-items: center; gap: 12px; }
/* 巡演原版 CW 花体徽标。用 mask 而非 img，图形才能跟随导航主题换色 */
.nav__glyph {
  width: 38px; height: 38px;
  background: currentColor;
  -webkit-mask: url("assets/svg/cw-monogram.svg") center / contain no-repeat;
          mask: url("assets/svg/cw-monogram.svg") center / contain no-repeat;
}
.nav__wordmark {
  font-family: var(--font-display);
  font-size: 19px;
  letter-spacing: 0.06em;
}
.nav__wordmark em { font-style: normal; color: var(--ink-soft); }

.nav__links { display: flex; gap: 26px; }
.nav__links a {
  display: flex; align-items: baseline; gap: 7px;
  font-size: 14px; font-weight: 500;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
  transition: border-color .25s, color .25s;
}
.nav__links a:hover { border-bottom-color: var(--ink); }
.idx {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--sakura);
  letter-spacing: 0.1em;
}

.nav__meta { display: flex; align-items: center; gap: 16px; }

/* ══ 按钮 ══ */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-ui);
  font-size: 14px; font-weight: 600;
  /* button 不继承父级 color（UA 样式给了 ButtonText），夜底上不写这行就是黑字隐身 */
  color: inherit;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .22s cubic-bezier(.2,.8,.3,1), background .22s, color .22s, box-shadow .22s;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid {
  background: var(--ink);
  color: var(--pearl-hi);
  box-shadow: var(--shadow-lift);
}
.btn--solid:hover { background: #2C1E38; }
.btn--line { border-color: color-mix(in oklab, var(--ink) 28%, transparent); }
.btn--line:hover { background: var(--pearl-hi); }
.btn--ghost {
  background: transparent;
  border-color: color-mix(in oklab, var(--ink) 18%, transparent);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  padding: 8px 14px;
}
.btn--ghost:hover { background: var(--pearl-hi); }

/* 夜底语境下按钮整体反相，否则墨底按钮压在夜底上几乎看不见 */
.hero .btn--solid { background: var(--pearl-hi); color: var(--night); }
.hero .btn--solid:hover { background: #FFFFFF; }
.hero .btn--line { border-color: color-mix(in oklab, var(--pearl) 34%, transparent); color: var(--pearl); }
.hero .btn--line:hover { background: color-mix(in oklab, var(--pearl) 12%, transparent); }

/* ══ 通用副标 ══ */
.eyebrow {
  display: flex; align-items: center; gap: 10px;
  color: var(--ink-soft);
}
.eyebrow .rule {
  width: 54px; height: 1px;
  background: color-mix(in oklab, var(--ink) 30%, transparent);
}

/* ══ HERO ══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  z-index: var(--z-body);
  min-height: calc(100vh - var(--nav-height));
  min-height: calc(100svh - var(--nav-height));
  padding: 56px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--night);
  color: var(--pearl);
  overflow: hidden;
}

/* Hero 自带的糖果光晕。全局 aurora 在夜底之下会被盖住，所以这里独立一层。
   同样是纯装饰 —— pointer-events:none。 */
.hero__fx { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero__fx span {
  position: absolute; display: block; border-radius: 50%;
  filter: blur(100px); mix-blend-mode: screen; will-change: transform;
}
.hero__fx .g1 { width: 44vw; height: 44vw; left: -6vw; top: -12vw;
  background: radial-gradient(circle at 40% 40%, var(--sakura), transparent 66%);
  opacity: .95; animation: drift-a 26s ease-in-out infinite; }
.hero__fx .g2 { width: 40vw; height: 40vw; right: 6vw; top: -8vw;
  background: radial-gradient(circle at 50% 50%, var(--lilac), transparent 66%);
  opacity: .88; animation: drift-b 32s ease-in-out infinite; }
.hero__fx .g3 { width: 36vw; height: 36vw; left: 22vw; bottom: -16vw;
  background: radial-gradient(circle at 50% 50%, var(--ice), transparent 68%);
  opacity: .68; animation: drift-c 29s ease-in-out infinite; }
.hero__fx .g4 { width: 30vw; height: 22vw; right: 16vw; bottom: -12vw;
  background: radial-gradient(circle at 50% 50%, var(--honey), transparent 70%);
  opacity: .24; animation: drift-a 34s ease-in-out infinite reverse; }

/* 非对称三栏：巨幅大字锚死左边缘，中栏承载竖排铭牌与规格，视觉卡收右。
   中栏存在的意义是消灭"洞" —— 大字与卡片之间的空隙必须有信息密度，
   否则读起来是排版事故而不是留白。 */
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, max-content) minmax(0, 1fr) minmax(0, 380px);
  grid-template-areas:
    "eyebrow eyebrow card"
    "type    side    card"
    "lede    side    card"
    "stats   side    card";
  align-items: start;
  column-gap: 40px;
  row-gap: 22px;
  max-width: 1720px;
  width: 100%;
  margin: 0 auto;
}

.hero .eyebrow { grid-area: eyebrow; color: color-mix(in oklab, var(--pearl) 66%, transparent); }
.hero .eyebrow .rule { background: color-mix(in oklab, var(--pearl) 34%, transparent); }

.hero__type {
  grid-area: type;
  position: relative;
  font-family: var(--font-display);
  font-weight: 400;
  /* 巨幅：1920 视口下约 365px。再大就会把 CTA 挤出首屏（实测 403px 时 CTA 越界） */
  font-size: clamp(3.5rem, 19vw, 23rem);
  line-height: 0.80;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.line { display: block; }
/* 星标做成上标，紧贴 WANG 的字肩 —— 之前用 flex 居中会让它孤零零浮在字旁边 */
.line--2 { padding-left: 0.06em; }
.line--2 .chrome { display: inline; }
.star {
  font-size: 0.15em;
  color: var(--sakura);
  vertical-align: top;
  margin-left: 0.14em;
  animation: spin 9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══ Hero 中栏 ══ */
.hero__side {
  grid-area: side;
  align-self: center;
  display: flex;
  align-items: center;
  gap: 34px;
  padding-left: 4px;
}

/* 中文竖排铭牌 */
.hero__cn {
  writing-mode: vertical-rl;
  font-family: var(--font-ui);
  font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: 0.5em;
  color: color-mix(in oklab, var(--pearl) 62%, transparent);
  border-right: 1px solid color-mix(in oklab, var(--pearl) 20%, transparent);
  padding-right: 0.34em;
}

.spec { list-style: none; margin: 0; padding: 0; display: grid; gap: 13px; }
.spec li {
  display: flex; align-items: center; gap: 9px;
  color: color-mix(in oklab, var(--pearl) 60%, transparent);
}
.spec i { color: var(--sakura); font-size: 13px; }

.hero__lede { grid-area: lede; max-width: 44ch; margin-top: 10px; }
.hero__lede p { color: color-mix(in oklab, var(--pearl) 74%, transparent); font-size: 16.5px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.hero__cta [data-current-track-link] { max-width: 100%; }

.hero__stats { grid-area: stats; display: flex; gap: 46px; margin: 10px 0 0; }
.hero__stats dt { color: color-mix(in oklab, var(--pearl) 58%, transparent); }
.hero__stats dd {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1;
}

/* 视觉卡：加内容层次（编号条 / 光泽反射 / 波形），避免读成"图片没加载" */
.hero__card {
  grid-area: card;
  margin: 0;
  align-self: center;
  border: 1px solid color-mix(in oklab, var(--pearl) 20%, transparent);
  border-radius: 22px;
  padding: 13px;
  background: color-mix(in oklab, var(--pearl) 9%, transparent);
  backdrop-filter: blur(10px);
  box-shadow: 0 30px 70px -30px #000;
}
.hero__card-art {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  background: var(--night-2);
}
.hero__card-art img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* 斜切高光，模拟唱片塑封的反射 —— 保持克制，太强会读成一道脏斜杠 */
.hero__card-art::before {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(104deg, transparent 40%,
              rgba(255,255,255,.22) 47%, rgba(255,255,255,.05) 51%, transparent 58%);
  z-index: 2;
}
.hero__card figcaption {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 4px 2px;
  color: color-mix(in oklab, var(--pearl) 76%, transparent);
}
.hero__card .dim { color: color-mix(in oklab, var(--pearl) 48%, transparent); }

/* Card waveform follows the listening room's actual audible state. */
.wave {
  display: flex; align-items: flex-end; gap: 3px;
  height: 42px; padding: 14px 4px 0;
}
.wave i {
  flex: 1; display: block;
  height: 20%;
  background: linear-gradient(180deg, var(--sakura), var(--lilac));
  border-radius: 2px;
  animation: pulse 1.4s ease-in-out infinite;
  animation-play-state: paused;
}
html[data-audio-playing="true"] .wave i { animation-play-state: running; }
@keyframes pulse { 0%,100% { height: 18%; } 50% { height: 100%; } }

/* 滚动提示收到右下角 —— 左下角已被 stats 占据，同放会重叠 */
.scroll-cue {
  position: absolute;
  right: 40px; bottom: 26px;
  display: flex; align-items: center; gap: 8px;
  color: color-mix(in oklab, var(--pearl) 62%, transparent);
}
.scroll-cue i { animation: bob 2.2s ease-in-out infinite; }
@keyframes bob { 50% { transform: translateY(5px); } }

/* ══ Sugar Monster 漂浮点缀 ══
   巡演原版 3D 角色。纯装饰层，同样不接收指针事件。 */
.float {
  position: absolute;
  pointer-events: none;
  user-select: none;
  z-index: 1;
  filter: drop-shadow(0 26px 34px rgba(0,0,0,.45));
  will-change: transform;
}
/* 定位避开照片卡边缘 —— 压在卡角上会读成碰撞而不是层次 */
.float--crown { width: 122px; left: 50.5%; top: 20%;  animation: bobbing 7s ease-in-out infinite; }
.float--star  { width: 150px; left: 60%;   bottom: 11%; animation: bobbing 9s ease-in-out infinite reverse; }
@keyframes bobbing {
  50% { transform: translateY(-16px) rotate(4deg); }
}

/* ══ 封面台面 ══
   art--* 渐变原本是生成式唱片套；真封面接进来后它降级为加载失败时的兜底色板，
   不删。封面加载失败时仍保留对应专辑的色板。 */
.art {
  position: relative;
  overflow: hidden;
  /* 内部 z-index 只在本层生效，否则 .art__cover 会跨出去压到兄弟节点上 */
  isolation: isolate;
  background: var(--silver-a);
}
/* 巨幅年份，压在封面右下角当版式元素 */
.art::before {
  content: attr(data-tag);
  position: absolute;
  right: 5%;
  bottom: -0.16em;
  font-family: var(--font-display);
  font-size: 78px;
  line-height: 0.8;
  letter-spacing: -0.035em;
  color: rgba(255, 255, 255, 0.42);
  mix-blend-mode: soft-light;
  pointer-events: none;
}
.tile--xl .art::before  { font-size: 168px; }
.tile--wide .art::before,
.tile--tall .art::before { font-size: 108px; }
/* 斜切高光 + 颗粒：压住纯渐变的塑料感 */
.art::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(104deg, transparent 38%, rgba(255,255,255,.30) 46%,
                    rgba(255,255,255,.06) 51%, transparent 60%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  opacity: 0.75;
  pointer-events: none;
}
/* 兜底色板。真封面就位前它们承担辨识度，就位后只在图片加载失败时露出。 */
.art--sugar  { background:
  radial-gradient(circle at 22% 20%, #FFFFFF 0%, transparent 38%),
  radial-gradient(circle at 74% 68%, #FF5FA6 0%, transparent 52%),
  linear-gradient(150deg, var(--sakura-lt) 5%, var(--sakura) 55%, #C9569B 100%); }
.art--lilac  { background:
  radial-gradient(circle at 72% 22%, #FFFFFF 0%, transparent 34%),
  radial-gradient(circle at 20% 80%, #5B3FC4 0%, transparent 55%),
  linear-gradient(205deg, #C9B6FF 0%, var(--lilac) 45%, #6C4FD8 100%); }
.art--ice    { background:
  radial-gradient(circle at 28% 26%, #FFFFFF 0%, transparent 36%),
  radial-gradient(circle at 78% 74%, #1F86C9 0%, transparent 56%),
  linear-gradient(160deg, #D6F4FD 0%, var(--ice) 42%, #3FA9D8 100%); }
.art--honey  { background:
  radial-gradient(circle at 34% 24%, #FFFFFF 0%, transparent 38%),
  radial-gradient(circle at 76% 76%, #E8781F 0%, transparent 54%),
  linear-gradient(140deg, #FFEFC9 0%, var(--honey) 46%, #F0913A 100%); }
.art--mint   { background:
  radial-gradient(circle at 26% 76%, #FFFFFF 0%, transparent 38%),
  radial-gradient(circle at 74% 24%, #16A98C 0%, transparent 54%),
  linear-gradient(170deg, #CFF6E6 0%, #7FD9C0 44%, #2E9E86 100%); }
.art--chrome { background:
  linear-gradient(115deg, #FFFFFF 4%, var(--silver-a) 20%, #7C7490 38%,
                  #FFFFFF 52%, #B9AFC9 66%, #6E6683 82%, #FFFFFF 100%); }

/* ══ 真实专辑封面 ══
   封面一律 1:1，格子不是（2x2 / 1x2 / 2x1 / 1x1 四种）。非方格上直接
   object-fit:cover 会切掉标题字和人像 —— 所以同一张图放大模糊铺底，
   清晰的正方形再 contain 居中压上去，读成"唱片摆在有色台面上"。
   台面色由封面自身决定，不再需要手动给每格锁主色域。 */
.art--cover::before { content: none; }   /* 真图就位，巨幅占位字符必须不透过来 */

.art__bed,
.art__cover {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

/* 底板：scale 过冲是为了让 blur 的软边落在 .art 的 overflow 之外，
   否则四周会露出一圈没被填满的透明羽化。 */
.art__bed {
  z-index: 0;
  object-fit: cover;
  filter: blur(26px) saturate(1.25) brightness(0.96);
  transform: scale(1.22);
  transition: filter .4s ease, transform .4s cubic-bezier(.2,.8,.3,1);
}

/* 封面区已经按列宽切成正方形，所以这里满幅铺开，不再留内边距。
   投影只在 xl 上有意义 —— 只有那一格的 .art 盒子不是正方形，封面是真的
   浮在台面上；其余格子封面贴边，投影会被 overflow 裁掉，纯属浪费合成层。 */
.art__cover {
  z-index: 1;
  object-fit: contain;
  transition: transform .34s cubic-bezier(.2,.8,.3,1), filter .34s ease;
}
.tile--xl .art__cover {
  padding: 26px;
  filter: drop-shadow(0 16px 30px rgba(23, 16, 28, .38));
}

/* 塑封反光压在整块台面上（z-index 2 才盖得住封面），刻意做弱 ——
   之前踩过一次「高光条过强成脏斜杠」，压在真实人像上更容易读成污渍。 */
.art--cover::after {
  background-image: linear-gradient(104deg, transparent 40%, rgba(255,255,255,.22) 47%,
                    rgba(255,255,255,.05) 52%, transparent 62%);
  opacity: 0.28;
  z-index: 2;
}

/* hover 微交互：封面微抬 + 台面收紧模糊。纯 CSS。 */
.tile:hover .art__cover { transform: scale(1.035); }
.tile--xl:hover .art__cover { filter: drop-shadow(0 24px 42px rgba(23, 16, 28, .5)); }
.tile:hover .art__bed {
  filter: blur(20px) saturate(1.45) brightness(1.0);
  transform: scale(1.28);
}

/* ══ 跑马灯 ══ */
.ticker {
  position: relative;
  z-index: var(--z-body);
  overflow: hidden;
  padding: 16px 0;
  border-block: var(--edge);
  background: color-mix(in oklab, var(--pearl-hi) 55%, transparent);
}
.ticker__track {
  display: flex; align-items: center; gap: 34px;
  width: max-content;
  font-family: var(--font-display);
  font-size: 34px;
  text-transform: uppercase;
  animation: marquee 26s linear infinite;
}
.ticker__track i { font-size: 16px; color: var(--sakura); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ══ 区块 ══ */
.section {
  position: relative;
  z-index: var(--z-body);
  padding: 120px 40px;
  max-width: 1720px;
  margin: 0 auto;
}
.section__head { margin-bottom: 48px; }
.section__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.5rem, 6vw, 5.6rem);
  line-height: 1;
  margin-top: 12px;
  display: flex; align-items: baseline; gap: 0.3em; flex-wrap: wrap;
}
.section__title .chrome { font-size: 0.42em; }
.section__note { margin-top: 14px; color: var(--ink-soft); max-width: 52ch; }

.section--dark {
  position: relative;
  max-width: none;
  background: var(--night);
  color: var(--pearl);
  overflow: hidden;
}
/* 夜色区也要有糖果光，否则读成一块死黑板 */
.section--dark::before,
.section--dark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 0;
}
.section--dark::before {
  width: 46vw; height: 46vw; left: -10vw; top: -18vw;
  background: radial-gradient(circle at 50% 50%, var(--sakura), transparent 66%);
  opacity: .5;
}
.section--dark::after {
  width: 42vw; height: 42vw; right: -8vw; bottom: -20vw;
  background: radial-gradient(circle at 50% 50%, var(--lilac), transparent 66%);
  opacity: .45;
}
.section--dark > * { position: relative; z-index: 1; }
.section--dark .section__note,
.section--dark .eyebrow { color: color-mix(in oklab, var(--pearl) 68%, transparent); }

/* ══ Bento ══ */
/* --col 要按 .bento 的实际宽度算，但容器查询单位解析的是最近的祖先容器、
   元素查不到自己，所以容器声明必须挂在外层的 section 上。缺了这句，
   100cqw 会退化成视口宽度，行高会算出偏大的值。 */
#discography { container-type: inline-size; }
.bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  /* 列宽由容器实测反推，而不是写死像素：封面是 1:1 的，只要 .art 不是正方形，
     contain 就会按短边收缩，格子里必然留出模糊空档。--col 让每种跨度下的
     封面区都精确等于一个列宽。--body 是文案条的标称高度，实际更高时
     .art 会用 flex 让出空间，不会撑破行高。 */
  --col: calc((100cqw - 54px) / 4);      /* 4 列 3 道 18px 间距 */
  --body: 114px;
  grid-auto-rows: calc(var(--col) + var(--body));
  /* 13 张专辑 + 混合跨度必然留洞，dense 让后续小图回填空位 */
  grid-auto-flow: row dense;
  gap: 18px;
}
.tile {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: var(--edge);
  background: var(--pearl-hi);
  display: flex; flex-direction: column;
  transition: transform .3s cubic-bezier(.2,.8,.3,1), box-shadow .3s;
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.tile .art { flex: 1; }
.tile__body { padding: 14px 16px 16px; }
.tile__body h3 { font-size: 19px; margin-top: 4px; }
.tile__body p { color: var(--ink-soft); font-size: 13.5px; }
.tile--xl   { grid-column: span 2; grid-row: span 2; }
.tile--tall { grid-row: span 2; }
.tile--wide { grid-column: span 2; }
.tile__body h3 em { font-style: normal; font-weight: 500; color: var(--ink-soft); font-size: 0.8em; }

/* 宽格与高格：方形封面贴一端，剩下的整块交给放大的文案。
   两者的 .art 盒子本来是 2.6:1 / 1:2.3，方形封面居中只能填到 29% / 44%，
   两侧剩下的模糊读作填充物。切成两栏后封面填满，空出来的面积变成版面。 */
.tile--wide {
  display: grid;
  grid-template-columns: var(--col) minmax(0, 1fr);
}
.tile--tall {
  display: grid;
  grid-template-rows: var(--col) minmax(0, 1fr);
}
.tile--wide .art,
.tile--tall .art { grid-area: 1 / 1; }
/* 宽格的封面格是「一列宽 × 整行高」，仍然不是方的（397x509）。锁成 1:1 再垂直
   居中，封面就满幅了；上下让出的两条留给卡片珠光底，读作唱片搁在卡面上。 */
.tile--wide .art {
  aspect-ratio: 1 / 1;
  align-self: center;
  border-radius: 14px;
}
.tile--wide .tile__body { grid-area: 1 / 2; }
.tile--tall .tile__body { grid-area: 2 / 1; }
.tile--wide .tile__body,
.tile--tall .tile__body {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 32px;
}
/* 切成两栏后文案条得到一整块面积，但只有三行小字，剩下的白读作事故而非留白
   （Hero 中栏踩过同一个坑）。压一个巨幅年份进去补密度：极淡、贴右下、不抢标题。 */
.tile--wide .tile__body::before,
.tile--tall .tile__body::before {
  content: attr(data-year);
  position: absolute;
  right: -0.05em;
  bottom: -0.24em;
  font-family: var(--font-display);
  font-size: 156px;
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: color-mix(in oklab, var(--ink) 9%, transparent);
  pointer-events: none;
}
.tile--wide .tile__body > *,
.tile--tall .tile__body > * { position: relative; z-index: 1; }
.tile--wide .tile__body h3,
.tile--tall .tile__body h3 {
  font-size: 30px;
  line-height: 1.15;
  margin-top: 10px;
  /* 「CYNDILOVES2SING 爱。心凌」默认会断在「爱。」和「心凌」之间：
     CJK 逐字可断。keep-all 锁住中文串，balance 再把两行配平。 */
  word-break: keep-all;
  text-wrap: balance;
}
.tile--wide .tile__body p,
.tile--tall .tile__body p { font-size: 15px; margin-top: 8px; }

/* ══ SUGAR HIGH 巡演区 ══ */
.tour { max-width: 1720px; margin: 0 auto; }
.tour__head { text-align: center; margin-bottom: 22px; }
.tour__head .eyebrow { justify-content: center; }
.tour__wordmark {
  display: block;
  width: min(560px, 46vw);
  margin: 20px auto 0;
  /* 字形已在 sugar-high-light.svg 里改为珠光色，星芒保留原稿金黄。
     不用 filter 硬掰 —— invert+hue-rotate 会把金黄拧成红色。 */
  filter: drop-shadow(0 14px 30px rgba(0,0,0,.5));
}
.tour .section__note { margin: 18px auto 0; text-align: center; }

.monsters {
  list-style: none;
  margin: 58px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.monsters li {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 30px 12px 22px;
  border: 1px solid color-mix(in oklab, var(--pearl) 14%, transparent);
  border-radius: 20px;
  background: color-mix(in oklab, var(--pearl) 5%, transparent);
  transition: transform .32s cubic-bezier(.2,.8,.3,1), background .32s, border-color .32s;
}
.monsters li:hover {
  transform: translateY(-8px);
  background: color-mix(in oklab, var(--pearl) 11%, transparent);
  border-color: color-mix(in oklab, var(--sakura) 55%, transparent);
}
.monsters img {
  width: 100%; max-width: 168px; height: 168px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0,0,0,.4));
  transition: transform .32s cubic-bezier(.2,.8,.3,1);
}
.monsters li:hover img { transform: scale(1.08) rotate(-3deg); }
.monsters span { color: color-mix(in oklab, var(--pearl) 74%, transparent); }

.tour__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 58px 0 0;
  padding-top: 34px;
  border-top: 1px solid color-mix(in oklab, var(--pearl) 16%, transparent);
  text-align: center;
}
.tour__stats dt { color: color-mix(in oklab, var(--pearl) 56%, transparent); }
.tour__stats dd {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
}

.awards {
  list-style: none;
  margin: 40px 0 0; padding: 0;
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px;
}
.awards li {
  display: flex; align-items: center; gap: 9px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid color-mix(in oklab, var(--pearl) 20%, transparent);
  font-size: 13px;
  color: color-mix(in oklab, var(--pearl) 82%, transparent);
}
.awards i { color: var(--honey); }

/* ══ 光影画廊 ══ */
.stage__grid {
  display: grid;
  grid-template-columns: 1.07fr 1fr .9fr;
  align-items: start;
  gap: 32px;
}
.stage-card { display: block; min-width: 0; }
.stage-card:focus-visible { outline-color: var(--ink); border-radius: 3px; }
.stage-card--star { margin-top: 100px; }
.stage-card--drawing { margin-top: 38px; }
.stage-card__visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  background: #CDB39F;
}
.stage-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .6s cubic-bezier(.2,.8,.3,1);
}
/* The glow is below the visible controls and never participates in hit testing. */
.stage-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at 65% 20%, #FFFFFF45, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
}
.stage-card--star .stage-card__visual {
  aspect-ratio: 1;
  background: radial-gradient(circle at 35% 30%, #FFE5F0, #BCA6E8 70%, #8879BC);
}
.stage-card--star .stage-card__image { padding: 13%; }
.stage-card__orbit {
  position: absolute;
  inset: 13%;
  z-index: -1;
  border: 1px solid #FFFFFF88;
  border-radius: 50%;
  transform: rotate(-24deg) scaleY(.7);
  pointer-events: none;
}
.stage-card--drawing .stage-card__visual {
  aspect-ratio: 4 / 5;
  background: #E9E5ED;
}
.stage-card--drawing .stage-card__image { padding: 32px 28px 42px; mix-blend-mode: multiply; }
.stage-card__index {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 6px 9px;
  color: var(--pearl-hi);
  background: #211327D9;
  font-size: 9px;
  pointer-events: none;
}
.stage-card__expand {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--pearl-hi);
  color: var(--ink);
  pointer-events: none;
  transition: transform .3s, background .3s;
}
.stage-card__expand svg { width: 17px; height: 17px; }
.stage-card__caption { margin-top: 18px; padding-top: 16px; border-top: var(--edge); }
.stage-card__title { font-size: clamp(20px, 1.7vw, 28px); font-weight: 600; }
.stage-card__caption .mono {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 6px;
  color: var(--ink-soft);
  font-size: 10px;
}
.stage-card__caption svg { width: 18px; height: 18px; }
.stage__footnote { margin-top: 44px; text-align: right; color: var(--ink-soft); font-size: 9px; }
.stage-card:focus-visible .stage-card__visual::after { opacity: 1; }
@media (hover: hover) and (pointer: fine) {
  .stage-card:hover .stage-card__image { transform: scale(1.04); }
  .stage-card--star:hover .stage-card__image { transform: translateY(-6px) rotate(-5deg) scale(1.05); }
  .stage-card:hover .stage-card__visual::after { opacity: 1; }
  .stage-card:hover .stage-card__expand { transform: rotate(90deg); background: var(--sakura-lt); }
}

/* Native dialog supplies the top layer, focus containment, and Escape behavior. */
body.has-stage-viewer { overflow: hidden; }
.stage-viewer {
  width: min(1040px, calc(100% - 40px));
  max-width: none;
  max-height: calc(100svh - 40px);
  padding: 0;
  border: 1px solid #FFFFFF30;
  border-radius: 16px;
  color: var(--pearl);
  background: #1D1326;
  box-shadow: 0 30px 120px #0008;
}
.stage-viewer::backdrop { background: #100A16DB; backdrop-filter: blur(12px); }
.stage-viewer__panel { padding: 20px; }
.stage-viewer__header,
.stage-viewer__footer { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.stage-viewer__header { margin-bottom: 16px; }
.stage-viewer__header .mono { color: #D0BCD8; font-size: 10px; }
.stage-viewer__canvas {
  display: grid;
  place-items: center;
  min-height: 180px;
  height: min(62svh, 690px);
  border-radius: 8px;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 40%, #42314F, #2A1D35);
}
.stage-viewer__image { display: block; width: 100%; height: 100%; min-height: 0; object-fit: contain; }
.stage-viewer__image[hidden], .stage-viewer__message[hidden] { display: none; }
.stage-viewer__message { padding: 24px; color: #E0CFEB; text-align: center; }
.stage-viewer__footer { margin-top: 20px; }
.stage-viewer__copy h2 { font-size: 20px; }
.stage-viewer__copy p { max-width: 60ch; margin-top: 4px; font-size: 13px; color: #C3B1CF; }
.stage-viewer__controls { display: flex; gap: 10px; flex-shrink: 0; }
.icon-button {
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.icon-button svg { width: 18px; height: 18px; }
.icon-button:hover:not(:disabled) { background: #FFFFFF18; transform: translateY(-2px); }
.icon-button:disabled { opacity: .4; cursor: not-allowed; }

/* ══ 试听室 ══ */
.listening-room { max-width: 1640px; margin: 0 auto; }
.listening-room__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, 1fr);
  align-items: center;
  gap: 56px;
}
.music-player {
  min-width: 0;
  padding: 32px;
  border: 1px solid #FFFFFFA6;
  border-radius: 24px;
  background: linear-gradient(125deg, #FFFAFD, #EDE1ED 46%, #DBD4EB 80%, #F6EBF6);
  color: var(--ink);
  box-shadow: 0 32px 70px -32px #0009, inset 0 1px 0 #FFFFFF;
}
.music-player__masthead { display: flex; align-items: center; justify-content: space-between; gap: 16px; font-size: 9px; color: var(--ink-soft); }
.music-player__signal { display: inline-flex; align-items: center; gap: 7px; flex-shrink: 0; }
.music-player__signal > span:first-child { width: 6px; height: 6px; border-radius: 50%; background: #88738F; }
.music-player[data-player-state="playing"] .music-player__signal > span:first-child { background: #9B2670; box-shadow: 0 0 0 4px #B3408320; }
.music-player__record { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); align-items: center; gap: 30px; margin: 30px 0 24px; }
.music-player__sleeve { aspect-ratio: 1; padding: 8px; border: 1px solid #FFFFFFCC; border-radius: 10px; background: #FFFFFF70; box-shadow: 0 14px 32px -14px #39234455; }
.music-player__sleeve img { display: block; width: 100%; height: 100%; object-fit: contain; border-radius: 4px; }
.music-player__info { min-width: 0; }
.music-player__edition { color: var(--ink-soft); font-size: 9px; }
.music-player__title { margin-top: 12px; font-size: clamp(28px, 3.8vw, 60px); line-height: 1.2; letter-spacing: -.04em; overflow-wrap: anywhere; text-wrap: balance; }
.music-player__album { margin-top: 10px; color: var(--ink-soft); font-size: 13px; overflow-wrap: anywhere; }
.music-player__status { min-height: 2.8em; margin-top: 10px; font-size: 12px; color: var(--ink-soft); }
.music-player[data-player-state="error"] .music-player__status { color: #8D2358; }
.music-player__waveform { display: flex; align-items: center; gap: 3px; height: 62px; margin-top: 20px; pointer-events: none; }
.music-player__waveform span { flex: 1; height: var(--bar-height); border-radius: 2px; background: linear-gradient(#9C4C7E, #5C4281); transform: scaleY(.3); }
.music-player__waveform[data-active="true"] span { animation: music-wave .8s ease-in-out var(--bar-delay) infinite alternate; }
@keyframes music-wave { from { transform: scaleY(.25); } to { transform: scaleY(1); } }
.music-player__timeline { margin-top: 8px; }
.music-player__times { display: flex; justify-content: space-between; font-size: 10px; letter-spacing: .1em; color: var(--ink-soft); }
.music-player__transport { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 20px; padding-top: 22px; border-top: var(--edge); }
.music-player__buttons, .music-player__volume { display: flex; align-items: center; gap: 12px; }
.music-player__volume { width: 150px; }
.music-player .icon-button { border-color: #4A3D5530; }
.music-player .icon-button:hover:not(:disabled) { background: #FFFFFF80; }
.music-player button:focus-visible, .music-range:focus-visible { outline: 2px solid #6B397F; outline-offset: 4px; }
.music-player__play {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border: 1px solid #4A3D55;
  border-radius: 50%;
  background: var(--ink);
  color: var(--pearl-hi);
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
}
.music-player__play svg { width: 22px; height: 22px; }
.music-player__play:hover:not(:disabled) { transform: scale(1.05); box-shadow: 0 6px 20px #32233C40; }
.music-player__play:disabled { opacity: .42; cursor: not-allowed; }
.music-player .when-playing, .music-player .when-muted { display: none; }
.music-player[data-playing="true"] .when-playing, .music-player[data-muted="true"] .when-muted { display: block; }
.music-player[data-playing="true"] .when-paused, .music-player[data-muted="true"] .when-audible { display: none; }
.music-range { --range-progress: 0%; display: block; appearance: none; -webkit-appearance: none; width: 100%; min-width: 0; height: 32px; margin: 0; background: transparent; cursor: pointer; }
.music-range::-webkit-slider-runnable-track { height: 4px; border-radius: 4px; background: linear-gradient(to right, var(--ink) var(--range-progress), #74618140 var(--range-progress)); }
.music-range::-moz-range-track { height: 4px; border-radius: 4px; background: linear-gradient(to right, var(--ink) var(--range-progress), #74618140 var(--range-progress)); }
.music-range::-webkit-slider-thumb { appearance: none; -webkit-appearance: none; width: 14px; height: 14px; margin-top: -5px; border: 2px solid #F8F0F8; border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 1px #34224040; }
.music-range::-moz-range-thumb { width: 10px; height: 10px; border: 2px solid #F8F0F8; border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 1px #34224040; }
.music-range:disabled { opacity: .4; cursor: not-allowed; }
.music-range:disabled::-webkit-slider-thumb { visibility: hidden; }
.music-range:disabled::-moz-range-thumb { visibility: hidden; }
.music-queue { min-width: 0; }
.music-queue__header { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 20px; }
.music-queue__header h3 { font-size: 22px; font-weight: 500; }
.music-queue__header .mono { font-size: 9px; color: #C3AECF; }
.music-queue__list { list-style: none; margin: 0; padding: 0; }
.music-queue__list li + li { margin-top: 6px; }
.music-track { display: grid; grid-template-columns: 24px 56px minmax(0, 1fr) auto; align-items: center; gap: 14px; width: 100%; padding: 14px 12px; border: 1px solid transparent; border-radius: 10px; background: transparent; color: var(--pearl); font: inherit; text-align: left; cursor: pointer; transition: background .2s, border-color .2s; }
.music-track:hover { background: #FFFFFF0D; }
.music-track[aria-pressed="true"] { border-color: #DAA4D140; background: linear-gradient(100deg, #A06D9930, #55357720); }
.music-track__number { font-size: 10px; letter-spacing: .04em; color: #B49CC4; }
.music-track[aria-pressed="true"] .music-track__number { color: var(--sakura-lt); }
.music-track__cover { display: block; width: 56px; height: 56px; object-fit: contain; border-radius: 4px; }
.music-track__copy { display: grid; gap: 4px; min-width: 0; }
.music-track__title { font-size: 16px; overflow-wrap: anywhere; }
.music-track__year { color: #BDA6CB; font-size: 8px; letter-spacing: .1em; }
.music-track__state { color: #C9B3D6; font-size: 10px; white-space: nowrap; }
.music-queue__note { margin-top: 24px; padding-top: 20px; border-top: 1px solid #FFFFFF24; font-size: 12px; color: #C3AECF; }

/* ══ 页脚 ══ */
.foot {
  position: relative;
  z-index: var(--z-body);
  display: flex; justify-content: space-between;
  padding: 34px 40px;
  border-top: var(--edge);
}

@media (max-width: 1400px) {
  .hero__grid { grid-template-columns: minmax(0, 1fr) minmax(240px, 300px); grid-template-areas: "eyebrow eyebrow" "type card" "lede card" "side side" "stats stats"; gap: 26px; }
  .hero__side { display: block; width: 100%; padding: 20px 0 0; border-top: 1px solid #FFFFFF24; }
  .hero__cn { display: none; }
  .hero__side .spec { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
  .hero__side .spec .mono { font-size: 10px; letter-spacing: .06em; }
  .hero__type { font-size: 18vw; }
  .hero__lede p { font-size: 15px; }
}

@media (max-width: 1100px) {
  .nav { gap: 18px; padding: 16px 24px; }
  .nav__links { gap: 18px; }
  .nav__links a { font-size: 12px; }
  .nav__meta #clock { display: none; }
  /* At narrow widths every record owns a square cover and natural-height caption.
     Desktop span-two rows otherwise leave Honey with a 606 px empty text region. */
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: auto; --col: calc((100cqw - 18px) / 2); }
  .tile, .tile--wide, .tile--tall { display: flex; grid-column: auto; grid-row: auto; }
  .tile .art { flex: none; width: 100%; aspect-ratio: 1; border-radius: 0; }
  .tile--xl .art__cover { padding: 0; filter: none; }
  .tile__body, .tile--wide .tile__body, .tile--tall .tile__body { padding: 18px; justify-content: flex-start; }
  .tile--wide .tile__body h3, .tile--tall .tile__body h3 { font-size: 22px; margin-top: 6px; }
  .tile--wide .tile__body p, .tile--tall .tile__body p { font-size: 13.5px; margin-top: 4px; }
  .tile__body .mono { display: block; font-size: 9px; letter-spacing: .1em; }
  /* The complete date remains in the caption; oversized cropped years are decorative. */
  .tile--wide .tile__body::before, .tile--tall .tile__body::before { content: none; }
  .stage__grid { gap: 20px; }
  .stage-card--star { margin-top: 64px; }
  .stage-card__caption .mono { font-size: 8px; letter-spacing: .12em; }
  .listening-room__grid { grid-template-columns: minmax(0, 1fr); gap: 44px; }
  .music-player__record { grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); }
}

@media (max-width: 700px) {
  :root { --nav-height: 110px; }
  .intro { gap: 24px; padding: 24px; }
  .intro__wordmark { font-size: 19px; }
  .intro__masthead .mono { font-size: 8px; letter-spacing: .12em; }
  .intro__dedication { font-size: 11px; letter-spacing: .24em; }
  .intro__letter { gap: 20px; }
  .intro__foot { grid-template-columns: 1fr auto; align-items: center; gap: 12px; }
  .intro__edition { display: none; }
  .intro__enter { justify-self: start; justify-items: start; padding: 12px 0; font-size: 12px; }
  .intro__enter-meta { font-size: 8px; letter-spacing: .1em; }
  .intro__replay { font-size: 11px; }
  .nav { flex-wrap: wrap; gap: 12px 18px; padding: 14px 24px; }
  .nav__links { order: 3; width: 100%; justify-content: space-between; gap: 10px; }
  .nav__links .idx { display: none; }
  .nav__listen { display: none; }
  .nav__archive { min-height: 44px; }
  .nav__meta { gap: 10px; }
  .hero { padding: 40px 24px 66px; }
  .hero__grid { grid-template-columns: minmax(0, 1fr); grid-template-areas: "eyebrow" "type" "lede" "side" "card" "stats"; gap: 30px; }
  .hero__side .spec { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 12px; }
  .hero__side .spec .mono { font-size: 10px; letter-spacing: .04em; }
  .hero .eyebrow { flex-wrap: wrap; font-size: 8px; letter-spacing: .08em; }
  .hero .eyebrow .rule { width: 18px; }
  .hero__type { font-size: clamp(70px, 24vw, 168px); }
  .hero__lede { margin-top: 0; max-width: none; }
  .hero__cta { gap: 10px; }
  .hero__cta .btn { font-size: 12px; padding: 11px 16px; }
  .hero__card { width: min(100%, 360px); justify-self: center; }
  .hero__stats { justify-content: space-between; gap: 14px; }
  .hero__stats dd { font-size: 2rem; }
  .hero .float { display: none; }
  .scroll-cue { right: 24px; bottom: 20px; }
  .section { padding: 72px 24px; }
  .section__head { margin-bottom: 32px; }
  .section__note { font-size: 14px; }
  .bento { grid-template-columns: minmax(0, 1fr); grid-auto-rows: auto; gap: 20px; }
  .tile, .tile--wide, .tile--tall { display: flex; grid-column: auto; grid-row: auto; }
  .tile .art { flex: none; width: 100%; aspect-ratio: 1; border-radius: 0; }
  .tile__body, .tile--wide .tile__body, .tile--tall .tile__body { padding: 20px; }
  .tile--wide .tile__body h3, .tile--tall .tile__body h3 { font-size: 22px; margin-top: 6px; }
  .tour__wordmark { width: min(420px, 80vw); }
  .monsters { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 36px; }
  .monsters li { padding: 20px 10px; }
  .monsters li:last-child { grid-column: 1 / -1; }
  .monsters img { height: 130px; }
  .tour__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 30px; margin-top: 36px; }
  .tour__stats dd { font-size: 2.8rem; }
  .awards { gap: 8px; }
  .awards li { font-size: 11px; padding: 9px 12px; }
  .stage__grid { grid-template-columns: minmax(0, 1fr); gap: 38px; }
  .stage-card--star, .stage-card--drawing { margin-top: 0; }
  .stage-card__caption .mono { font-size: 9px; }
  .stage__footnote { text-align: left; font-size: 8px; }
  .stage-viewer { width: calc(100% - 20px); max-height: calc(100svh - 20px); }
  .stage-viewer__panel { padding: 14px; }
  .stage-viewer__header .mono { font-size: 8px; }
  .stage-viewer__canvas { height: 50svh; min-height: 100px; }
  .stage-viewer__footer { align-items: flex-start; flex-wrap: wrap; gap: 14px; }
  .stage-viewer__copy h2 { font-size: 18px; }
  .stage-viewer__copy p { font-size: 12px; }
  .stage-viewer__controls { margin-left: auto; }
  .music-player { padding: 20px; border-radius: 18px; }
  .music-player__masthead { font-size: 7px; letter-spacing: .08em; gap: 10px; }
  .music-player__record { grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 18px; margin: 26px 0 12px; }
  .music-player__sleeve { padding: 5px; }
  .music-player__title { font-size: 28px; margin-top: 8px; }
  .music-player__edition { font-size: 7px; letter-spacing: .08em; }
  .music-player__album { font-size: 11px; margin-top: 6px; }
  .music-player__waveform { height: 38px; gap: 2px; margin-top: 14px; }
  .music-player__waveform span:nth-child(n+33) { display: none; }
  .music-player__status { font-size: 10px; margin-top: 6px; }
  .music-player__transport { flex-wrap: wrap; justify-content: center; gap: 18px; padding-top: 20px; }
  .music-player__buttons { gap: 18px; }
  .music-player__volume { width: 100%; max-width: 200px; }
  .music-player__volume .icon-button { width: 40px; height: 40px; }
  .music-track { grid-template-columns: 18px 46px minmax(0, 1fr) auto; gap: 10px; padding: 12px 8px; }
  .music-track__cover { width: 46px; height: 46px; }
  .music-track__title { font-size: 15px; }
  .music-track__year { font-size: 7px; }
  .foot { flex-direction: column; gap: 10px; padding: 28px 24px; }
  .foot .mono { font-size: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .intro__animation .pen { stroke-dashoffset: 0; }
  .intro__replay { display: none; }
  .stage-card .stage-card__image, .stage-card .stage-card__expand { transform: none; }
  .music-player__waveform span { transform: scaleY(.5); }
}
