:root {
  color-scheme: dark;
  --bg: #070a10;
  --bg-2: #0b111c;
  --surface: rgba(14, 19, 29, 0.70);
  --surface-strong: rgba(17, 24, 36, 0.88);
  --surface-soft: rgba(255, 255, 255, 0.052);
  --ink: #f7f9ff;
  --muted: #a7b0c0;
  --muted-2: #6f7b8d;
  --line: rgba(255, 255, 255, 0.105);
  --line-strong: rgba(255, 255, 255, 0.18);
  --accent: #49a8ff;
  --accent-2: #61e6b5;
  --accent-3: #f2c16b;
  --danger: #ff7c7c;
  --mx: 68vw;
  --my: 18vh;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --shadow-soft: 0 24px 90px rgba(0, 0, 0, 0.44);
  --shadow-card: 0 18px 54px rgba(0, 0, 0, 0.28);
  font-family: "Outfit", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-height: 100dvh;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(520px circle at var(--mx) var(--my), rgba(73, 168, 255, 0.18), transparent 62%),
    linear-gradient(180deg, rgba(7, 10, 16, 0), rgba(7, 10, 16, 0.72) 72%, #070a10 100%);
  transition: background 220ms ease;
}

button, input, select { font: inherit; }
a { color: inherit; }
button { cursor: pointer; }

.visual-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(73, 168, 255, 0.18), transparent 36rem),
    radial-gradient(circle at 88% 18%, rgba(97, 230, 181, 0.14), transparent 34rem),
    linear-gradient(135deg, #07101a 0%, #080b12 48%, #060912 100%);
}
.field-grid {
  position: absolute;
  inset: -12%;
  opacity: 0.34;
  transform: perspective(900px) rotateX(62deg) translateY(-18%);
  transform-origin: center top;
  background-image:
    linear-gradient(rgba(255,255,255,0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.075) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 56%, transparent 100%);
  animation: gridDrift 18s linear infinite;
}
.noise-layer {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: radial-gradient(#fff 0.7px, transparent 0.7px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
}
.light-orb {
  position: absolute;
  width: 44rem;
  height: 44rem;
  border-radius: 999px;
  filter: blur(32px);
  opacity: 0.32;
  animation: orbFloat 18s ease-in-out infinite;
}
.orb-blue { left: -10rem; top: -12rem; background: radial-gradient(circle, rgba(73,168,255,0.70), transparent 64%); }
.orb-green { right: -16rem; top: 4rem; background: radial-gradient(circle, rgba(97,230,181,0.50), transparent 64%); animation-delay: -7s; }
.orb-amber { left: 34%; bottom: -24rem; background: radial-gradient(circle, rgba(242,193,107,0.26), transparent 66%); animation-delay: -12s; }
.radar-disc {
  position: absolute;
  right: clamp(-130px, -7vw, -40px);
  top: 82px;
  width: clamp(380px, 44vw, 660px);
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.58;
  background:
    repeating-radial-gradient(circle, rgba(255,255,255,0.12) 0 1px, transparent 1px 58px),
    conic-gradient(from 210deg, transparent 0 58%, rgba(73,168,255,0.28) 64%, transparent 74%);
  mask-image: radial-gradient(circle, transparent 0 17%, #000 18% 72%, transparent 73%);
  animation: radarSpin 22s linear infinite;
}
.radar-disc span {
  position: absolute;
  inset: 49.7% 8% auto 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(160,204,255,0.54), transparent);
  transform-origin: center;
}
.radar-disc span:nth-child(2) { transform: rotate(60deg); }
.radar-disc span:nth-child(3) { transform: rotate(120deg); }
.waveform {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4vh;
  width: 100%;
  height: 38vh;
  opacity: 0.32;
}
.waveform path {
  fill: none;
  stroke: rgba(97,230,181,0.32);
  stroke-width: 2;
  stroke-dasharray: 12 22;
  animation: dash 16s linear infinite;
}
.waveform path:nth-child(2) { stroke: rgba(73,168,255,0.25); animation-direction: reverse; }

.shell {
  position: relative;
  z-index: 2;
  width: min(1360px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0 76px;
}

.topbar {
  position: sticky;
  top: 14px;
  z-index: 8;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 999px;
  background: rgba(9, 13, 20, 0.66);
  backdrop-filter: blur(26px) saturate(1.5);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.10);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  padding-left: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: -0.03em;
}
.brand-mark {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: url("/favicon.svg?v=20260428k") center / cover no-repeat;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.22), 0 10px 22px rgba(0,0,0,0.32), 0 0 24px rgba(73,168,255,0.18);
}
.page-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 999px;
  background: rgba(255,255,255,0.045);
}
.page-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 750;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
.page-nav a:hover { color: var(--ink); background: rgba(255,255,255,0.08); transform: translateY(-1px); }
.page-nav a.active { color: #06101c; background: linear-gradient(135deg, #eaf6ff, #8dd0ff 45%, #61e6b5); box-shadow: 0 12px 30px rgba(73,168,255,0.20); }
.week-pill {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  min-height: 40px;
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.11);
}
.week-pill span { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; }
.week-pill strong { color: var(--ink); font-size: 0.9rem; font-weight: 800; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: stretch;
  margin-bottom: 18px;
}
.hero-copy, .hero-panel, .controls, .metric-strip, .panel {
  border: 1px solid rgba(255,255,255,0.12);
  background: linear-gradient(180deg, rgba(18, 25, 38, 0.78), rgba(10, 15, 24, 0.66));
  backdrop-filter: blur(26px) saturate(1.4);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.10);
}
.hero-copy {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 5vw, 64px);
  border-radius: var(--radius-xl);
}
.hero-copy::before {
  content: "";
  position: absolute;
  right: -92px;
  top: -92px;
  width: 340px;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(255,255,255,0.16) 0 1px, transparent 1px 32px),
    conic-gradient(from 180deg, rgba(73,168,255,0.42), transparent 46%, rgba(97,230,181,0.28), transparent 78%);
  mask-image: radial-gradient(circle, transparent 0 18%, #000 19% 75%, transparent 76%);
  opacity: 0.46;
  animation: radarSpin 18s linear infinite;
}
.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto 34px 28px 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(73,168,255,0.62), rgba(97,230,181,0.55), transparent);
}
.eyebrow {
  position: relative;
  margin: 0 0 13px;
  color: var(--accent-2);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
h1, h2 { margin: 0; letter-spacing: -0.065em; line-height: 0.94; }
h1 { position: relative; max-width: 820px; font-size: clamp(2.8rem, 5.8vw, 6.35rem); font-weight: 880; }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.7rem); font-weight: 850; }
.lede { position: relative; max-width: 660px; margin: 24px 0 0; color: var(--muted); font-size: clamp(1.03rem, 1.5vw, 1.22rem); line-height: 1.56; letter-spacing: -0.01em; }
.hero-panel {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: 28px;
  border-radius: var(--radius-xl);
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: 22px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.09);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), transparent),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(255,255,255,0.035) 22px 23px);
  opacity: 0.9;
}
.hero-panel::after {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -48px;
  bottom: -48px;
  border-radius: 50%;
  border: 28px solid rgba(73,168,255,0.12);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08), 0 0 40px rgba(73,168,255,0.12);
}
.panel-label, .hero-panel strong, .hero-panel span { position: relative; z-index: 1; }
.panel-label { margin: 0; color: var(--accent); font-size: 0.78rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.10em; }
.hero-panel strong { display: block; max-width: 300px; font-size: 2rem; line-height: 1.03; letter-spacing: -0.055em; font-weight: 860; }
.hero-panel span { color: var(--muted); }

.controls {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(280px, 1.45fr) auto;
  gap: 12px;
  margin: 18px 0;
  padding: 14px;
  border-radius: var(--radius-lg);
}
label span { display: block; margin-bottom: 7px; color: var(--muted); font-size: 0.73rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.08em; }
label small { display: block; margin-top: 6px; color: var(--muted-2); font-size: 0.72rem; }
select, input, button {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  outline: none;
  color: var(--ink);
  background: rgba(255,255,255,0.058);
  padding: 0 14px;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}
select { color-scheme: dark; }
select:focus, input:focus { border-color: rgba(73,168,255,0.60); background: rgba(255,255,255,0.09); box-shadow: 0 0 0 4px rgba(73,168,255,0.13); }
input::placeholder { color: #667486; }
button { align-self: start; margin-top: 23px; color: #07101a; background: linear-gradient(135deg, #f0f8ff, #86cbff 48%, #66e7b9); border-color: transparent; font-weight: 850; box-shadow: 0 14px 34px rgba(73,168,255,0.18); }
button:hover { transform: translateY(-1px); box-shadow: 0 18px 44px rgba(73,168,255,0.24); }
button:active { transform: translateY(1px) scale(0.99); }

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-bottom: 22px;
  border-radius: var(--radius-lg);
}
.metric-strip article { position: relative; padding: 22px 24px; border-right: 1px solid rgba(255,255,255,0.105); }
.metric-strip article:last-child { border-right: 0; }
.metric-strip article::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0.75;
}
.metric-strip span { color: var(--muted); font-size: 0.86rem; }
.metric-strip strong { display: block; margin-top: 5px; font-size: 2.25rem; font-weight: 880; letter-spacing: -0.055em; font-variant-numeric: tabular-nums; }
.notice { margin: 0 0 18px; padding: 14px 16px; border: 1px solid rgba(242,193,107,0.30); border-radius: 18px; color: #f8d99c; background: rgba(242,193,107,0.09); }
.hidden { display: none; }

.dashboard-grid { display: grid; grid-template-columns: minmax(0, 1fr); gap: 18px; }
.panel { border-radius: var(--radius-xl); padding: 26px; }
.panel-large { padding: clamp(22px, 2.5vw, 32px); }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 18px; margin-bottom: 22px; }
.source-chip { display: inline-flex; align-items: center; min-height: 32px; padding: 0 12px; border: 1px solid rgba(255,255,255,0.12); border-radius: 999px; color: var(--muted); background: rgba(255,255,255,0.055); font-size: 0.78rem; white-space: nowrap; }
.chart-split { display: grid; gap: 28px; }
.chart-block { display: grid; gap: 16px; }
.chart-block + .chart-block { padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.11); }
.chart-block-head { display: flex; align-items: end; justify-content: space-between; gap: 16px; }
.chart-block-head h3 { margin: 0; font-size: clamp(1.35rem, 2vw, 1.9rem); line-height: 1; letter-spacing: -0.04em; }
.chart-block-head span { color: var(--muted); font-size: 0.86rem; }

.release-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; perspective: 1000px; }
.chart-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.release-card, .chart-row, .pick-card { color: inherit; text-decoration: none; animation: rise 460ms cubic-bezier(.16,1,.3,1) both; animation-delay: min(calc(var(--i, 0) * 28ms), 420ms); }
.release-card {
  --rx: 0deg;
  --ry: 0deg;
  --spot-x: 50%;
  --spot-y: 0%;
  position: relative;
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 15px;
  min-height: 150px;
  padding: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 25px;
  background:
    radial-gradient(240px circle at var(--spot-x) var(--spot-y), rgba(255,255,255,0.13), transparent 56%),
    linear-gradient(180deg, rgba(255,255,255,0.073), rgba(255,255,255,0.034));
  box-shadow: var(--shadow-card), inset 0 1px 0 rgba(255,255,255,0.075);
  transform: rotateX(var(--rx)) rotateY(var(--ry)) translateY(0);
  transform-style: preserve-3d;
  transition: transform 190ms ease, border-color 190ms ease, background 190ms ease, box-shadow 190ms ease;
}
.release-card::before { content: ""; position: absolute; inset: 0; opacity: 0; background: linear-gradient(135deg, rgba(73,168,255,0.18), transparent 38%, rgba(97,230,181,0.12)); transition: opacity 190ms ease; }
.release-card:hover { border-color: rgba(128,205,255,0.34); box-shadow: 0 26px 68px rgba(0,0,0,0.42), 0 0 0 1px rgba(73,168,255,0.08); transform: rotateX(var(--rx)) rotateY(var(--ry)) translateY(-4px); }
.release-card:hover::before { opacity: 1; }
.chart-card {
  grid-template-columns: 118px minmax(0, 1fr);
  min-height: 166px;
  padding: 13px;
}
.chart-card .cover-large { width: 118px; min-height: 140px; }
.rank-plate {
  position: absolute;
  z-index: 3;
  left: 18px;
  top: 18px;
  min-width: 62px;
  display: grid;
  gap: 1px;
  padding: 7px 9px 8px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 15px;
  background: rgba(7, 11, 18, 0.78);
  backdrop-filter: blur(18px) saturate(1.35);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.13), 0 14px 30px rgba(0,0,0,0.30);
}
.rank-plate span {
  color: rgba(222, 230, 242, 0.70);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}
.rank-plate strong {
  color: var(--ink);
  font-family: "SF Mono", "JetBrains Mono", ui-monospace, Menlo, Monaco, Consolas, monospace;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.95;
  font-variant-numeric: tabular-nums;
}
.cover { position: relative; z-index: 1; display: grid; place-items: center; overflow: hidden; border: 1px solid rgba(255,255,255,0.12); background: linear-gradient(180deg, #222c3b, #121924); box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 14px 28px rgba(0,0,0,0.22); }
.cover-large { width: 104px; min-height: 126px; border-radius: 20px; }
.cover-small { width: 58px; height: 58px; border-radius: 14px; }
.cover img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 480ms cubic-bezier(.16,1,.3,1); }
.release-card:hover .cover img { transform: scale(1.065); }
.cover span { color: rgba(245,247,251,0.48); font-weight: 860; letter-spacing: -0.06em; }
.cover-large span { font-size: 1.55rem; }
.release-body { position: relative; z-index: 1; min-width: 0; padding: 4px 4px 4px 0; }
.release-topline { display: flex; justify-content: space-between; gap: 10px; margin-bottom: 11px; color: var(--muted-2); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.055em; }
.card-title { margin: 0 0 7px; font-weight: 850; letter-spacing: -0.04em; font-size: 1.05rem; line-height: 1.12; }
.card-meta { margin: 0; color: var(--muted); line-height: 1.34; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 13px; }
.tag { color: var(--muted); border: 1px solid rgba(255,255,255,0.11); border-radius: 999px; padding: 4px 8px; font-size: 0.68rem; background: rgba(255,255,255,0.045); }

.chart-list { display: grid; gap: 4px; }
.chart-row { --rx: 0deg; --ry: 0deg; display: grid; grid-template-columns: 34px 54px minmax(0, 1fr); gap: 12px; align-items: center; padding: 10px 8px; border-radius: 18px; transform: rotateX(var(--rx)) rotateY(var(--ry)); transition: background 180ms ease, transform 180ms ease; }
.chart-row:hover { background: rgba(73,168,255,0.08); transform: rotateX(var(--rx)) rotateY(var(--ry)) translateY(-2px); }
.display-rank { color: var(--muted-2); font-weight: 850; font-variant-numeric: tabular-nums; }
.thumb { width: 54px; height: 54px; border-radius: 14px; object-fit: cover; background: #222938; }
.thumb-empty { border: 1px solid var(--line); }
.chart-copy { min-width: 0; }
.chart-title { margin: 0 0 3px; font-weight: 790; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; letter-spacing: -0.02em; }
.chart-artist { margin: 0; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.chart-source { display: inline-block; margin-top: 4px; color: var(--muted-2); font-size: 0.74rem; }

.shortlist-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.pick-card { --rx: 0deg; --ry: 0deg; display: grid; grid-template-columns: 58px 58px minmax(0, 1fr); gap: 14px; align-items: center; padding: 12px; border: 1px solid rgba(255,255,255,0.11); border-radius: 22px; background: rgba(255,255,255,0.055); box-shadow: var(--shadow-card); transform: rotateX(var(--rx)) rotateY(var(--ry)); transition: background 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.pick-card:hover { transform: rotateX(var(--rx)) rotateY(var(--ry)) translateY(-2px); border-color: rgba(73,168,255,0.28); background: rgba(255,255,255,0.085); box-shadow: 0 16px 42px rgba(0,0,0,0.30); }
.pick-rank span { display: block; color: var(--muted-2); font-size: 0.78rem; }
.pick-rank strong { display: block; margin-top: 3px; color: var(--accent); font-size: 1.42rem; letter-spacing: -0.045em; font-weight: 850; font-variant-numeric: tabular-nums; }

.skeleton-grid::before, .skeleton-list::before { content: ""; grid-column: 1 / -1; min-height: 240px; border-radius: 24px; background: linear-gradient(90deg, rgba(255,255,255,0.035), rgba(255,255,255,0.09), rgba(255,255,255,0.035)); background-size: 240% 100%; animation: shimmer 1.45s ease-in-out infinite; }
.skeleton-list::before { min-height: 520px; }
.empty-state { grid-column: 1 / -1; padding: 28px; border: 1px dashed var(--line-strong); border-radius: 22px; color: var(--muted); background: rgba(255,255,255,0.045); }

@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }
@keyframes rise { from { opacity: 0; transform: translateY(12px) scale(0.985); } to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes gridDrift { from { background-position: 0 0, 0 0; } to { background-position: 0 58px, 58px 0; } }
@keyframes orbFloat { 0%, 100% { transform: translate3d(0,0,0) scale(1); } 50% { transform: translate3d(24px,-30px,0) scale(1.05); } }
@keyframes radarSpin { to { transform: rotate(360deg); } }
@keyframes dash { to { stroke-dashoffset: -340; } }

@media (max-width: 1180px) {
  .release-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .chart-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .chart-card { grid-template-columns: 104px minmax(0, 1fr); }
  .chart-card .cover-large { width: 104px; min-height: 126px; }
  .hero { grid-template-columns: minmax(0, 1fr) 320px; }
}
@media (max-width: 920px) {
  .shell { width: min(100% - 24px, 760px); }
  .topbar { grid-template-columns: 1fr; justify-items: stretch; border-radius: 28px; }
  .brand, .week-pill, .page-nav { justify-self: center; }
  .hero, .controls { grid-template-columns: 1fr; }
  button { margin-top: 0; }
  .release-grid, .chart-grid, .shortlist-grid { grid-template-columns: 1fr; }
  .hero-copy, .hero-panel { min-height: auto; }
}
@media (max-width: 680px) {
  .shell { width: min(100% - 18px, 560px); padding-top: 12px; }
  h1 { font-size: 2.72rem; }
  .hero-copy, .hero-panel, .panel { border-radius: 28px; padding: 20px; }
  .metric-strip { grid-template-columns: 1fr; }
  .metric-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
  .metric-strip article:last-child { border-bottom: 0; }
  .release-card, .chart-card { grid-template-columns: 86px minmax(0, 1fr); }
  .cover-large, .chart-card .cover-large { width: 86px; min-height: 106px; }
  .rank-plate { left: 15px; top: 15px; min-width: 52px; padding: 6px 7px 7px; border-radius: 13px; }
  .rank-plate strong { font-size: 1.18rem; }
  .chart-block-head { align-items: start; flex-direction: column; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
}
