:root {
  --bg: #080909;
  --bg-deep: #020303;
  --paper: #e7e4dc;
  --paper-dark: #c9c6bd;
  --ink: #151515;
  --muted: #6f706d;
  --medical-green: #8fd4c2;
  --warning-red: #a61318;
  --warning-bright: #e01b24;
  --line: rgba(30, 30, 30, 0.25);
  --line-light: rgba(231, 228, 220, 0.18);
  --max: 1240px;
  --display: Impact, "Arial Black", "Helvetica Neue", sans-serif;
  --body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", system-ui, sans-serif;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 18px;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 82% 16%, rgba(143, 212, 194, 0.08), transparent 23rem),
    linear-gradient(180deg, #0b0d0d 0%, var(--bg-deep) 100%);
  color: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.88;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  opacity: 0.22;
  pointer-events: none;
  background:
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, 0.012) 3px 4px),
    radial-gradient(circle at 12% 14%, rgba(255, 255, 255, 0.04) 0 1px, transparent 2px);
  background-size: auto, 11px 13px;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

img,
svg,
video,
canvas {
  display: block;
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid var(--medical-green);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-150%);
  padding: 10px 16px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 800;
  transition: transform 0.2s ease;
}

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

.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(2, 3, 3, 0.97) 0%, rgba(2, 3, 3, 0.76) 42%, rgba(2, 3, 3, 0.4) 70%, rgba(2, 3, 3, 0.8) 100%),
    linear-gradient(180deg, rgba(2, 3, 3, 0.08), var(--bg-deep)),
    url("../images/relapse-hero.jpg") center / cover no-repeat,
    linear-gradient(135deg, #111716 0%, #050707 60%, #160506 100%);
  border-bottom: 2px solid rgba(224, 27, 36, 0.5);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(143, 212, 194, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 212, 194, 0.035) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 170px;
  background: linear-gradient(180deg, transparent, var(--bg-deep));
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.1;
  pointer-events: none;
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 5px),
    radial-gradient(circle at 70% 25%, rgba(166, 19, 24, 0.5), transparent 20%);
  mix-blend-mode: screen;
}

.site-header {
  position: relative;
  z-index: 4;
  display: flex;
  width: min(100% - 40px, 1450px);
  margin: 0 auto;
  padding: 22px 0;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-bottom: 1px solid rgba(231, 228, 220, 0.22);
}

.site-brand {
  display: grid;
  gap: 0;
  line-height: 1.15;
}

.site-brand strong {
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: 0.03em;
}

.site-brand span {
  color: var(--medical-green);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.global-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(16px, 2.2vw, 34px);
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.global-nav a {
  position: relative;
}

.global-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  transform: scaleX(0);
  background: var(--warning-bright);
  transform-origin: left;
  transition: transform 0.22s ease;
}

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

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.86fr);
  gap: clamp(34px, 5vw, 82px);
  width: min(100% - 44px, 1240px);
  min-height: 655px;
  margin: 0 auto;
  padding: 62px 0 104px;
  align-items: center;
}

.patient-card {
  display: inline-grid;
  gap: 4px;
  min-width: min(100%, 350px);
  margin-bottom: 26px;
  padding: 12px 16px;
  border: 1px solid rgba(231, 228, 220, 0.44);
  border-radius: 6px;
  background: rgba(2, 3, 3, 0.72);
  box-shadow: inset 0 0 30px rgba(143, 212, 194, 0.05);
  font-family: ui-monospace, "Cascadia Mono", "Courier New", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}

.patient-card span {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.alert-text {
  color: var(--warning-bright);
  text-shadow: 0 0 14px rgba(224, 27, 36, 0.7);
}

.eyebrow,
.section-code {
  margin: 0 0 8px;
  color: var(--warning-red);
  font-family: ui-monospace, "Cascadia Mono", "Courier New", monospace;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.section-code.light {
  color: var(--medical-green);
}

.hero h1 {
  margin: 0;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(5rem, 10vw, 9.2rem);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.8;
  text-transform: uppercase;
  text-shadow:
    0 6px 0 rgba(0, 0, 0, 0.64),
    0 18px 42px rgba(0, 0, 0, 0.9);
}

.hero h1 > span {
  display: block;
  margin-bottom: 0.08em;
  color: var(--paper-dark);
  font-size: 0.43em;
  letter-spacing: 0.04em;
  line-height: 0.95;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
}

.hero h1::after {
  content: "";
  display: block;
  width: min(100%, 525px);
  height: 8px;
  margin-top: 18px;
  background: var(--warning-red);
  box-shadow: 0 0 25px rgba(224, 27, 36, 0.74);
}

.hero-seo-title {
  width: fit-content;
  margin: 20px 0 0;
  padding: 7px 10px;
  border-left: 4px solid var(--medical-green);
  background: rgba(2, 3, 3, 0.72);
  color: #f0eee7;
  font-size: clamp(0.92rem, 1.3vw, 1.08rem);
  font-weight: 900;
  line-height: 1.5;
}

.lead {
  max-width: 630px;
  margin: 26px 0 0;
  color: #f5f3ed;
  font-size: clamp(1.16rem, 2.25vw, 1.7rem);
  font-weight: 800;
  line-height: 1.58;
  letter-spacing: 0.03em;
  text-shadow: 0 5px 22px #000;
}

.hero-actions,
.share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  min-height: 50px;
  padding: 12px 22px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(231, 228, 220, 0.45);
  border-radius: 3px;
  background: rgba(8, 9, 9, 0.86);
  color: var(--paper);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
  font-weight: 900;
  line-height: 1.35;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-3px);
  border-color: var(--medical-green);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.44);
}

.btn.primary {
  border-color: rgba(255, 255, 255, 0.3);
  background: linear-gradient(180deg, var(--warning-bright), #8d0d12);
  color: #fff;
}

.btn.secondary {
  background: var(--paper);
  color: var(--ink);
}

.hero-specimen {
  position: relative;
  min-height: 520px;
}

.album-art-placeholder {
  position: absolute;
  top: 28px;
  left: 12px;
  display: grid;
  width: min(77%, 415px);
  aspect-ratio: 1;
  overflow: hidden;
  padding: 20px;
  place-items: end start;
  border: 1px solid rgba(231, 228, 220, 0.56);
  background:
    radial-gradient(circle at 65% 35%, rgba(224, 27, 36, 0.76) 0 2px, transparent 3px),
    radial-gradient(circle at 50% 48%, rgba(231, 228, 220, 0.15), transparent 34%),
    repeating-radial-gradient(circle at 62% 40%, rgba(224, 27, 36, 0.33) 0 1px, transparent 1px 6px),
    #050606;
  background-size: 9px 9px, auto, auto, auto;
  box-shadow: 18px 28px 70px rgba(0, 0, 0, 0.7), 0 0 34px rgba(166, 19, 24, 0.2);
  transform: rotate(-1.2deg);
}

.album-art-placeholder::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(231, 228, 220, 0.28);
  pointer-events: none;
}

.album-art-placeholder::after {
  content: "PARENTAL ADVISORY";
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 92px;
  padding: 4px;
  border: 3px solid var(--paper);
  color: var(--paper);
  font: 900 0.65rem/1 var(--body);
  text-align: center;
}

.album-art-placeholder strong {
  position: relative;
  z-index: 2;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(2.9rem, 5vw, 4.6rem);
  line-height: 0.82;
  text-shadow: 4px 4px 0 #000;
}

.album-art-placeholder small {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  color: var(--medical-green);
  font: 700 0.6rem/1 var(--body);
  letter-spacing: 0.12em;
}

.specimen-code {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  color: var(--paper);
  font: 800 0.68rem/1 ui-monospace, monospace;
}

.pixel-field {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background:
    linear-gradient(125deg, transparent 42%, rgba(224, 27, 36, 0.16) 42% 58%, transparent 58%),
    repeating-linear-gradient(90deg, transparent 0 3px, rgba(255, 255, 255, 0.06) 3px 4px);
  clip-path: polygon(35% 10%, 88% 4%, 98% 57%, 75% 100%, 18% 84%, 4% 37%);
}

.chart-card {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  width: 210px;
  min-height: 270px;
  padding: 52px 18px 18px;
  gap: 9px;
  border: 1px solid #aaa69a;
  background:
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(20, 20, 20, 0.16) 24px 25px),
    #d8d5cc;
  color: #292929;
  box-shadow: 12px 20px 42px rgba(0, 0, 0, 0.55);
  font: 700 0.65rem/1.35 ui-monospace, monospace;
  transform: rotate(2.5deg);
}

.chart-card::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 34px;
  width: 140px;
  height: 38px;
  border-radius: 4px 4px 10px 10px;
  background: linear-gradient(#5d5f5c, #1b1d1c);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.barcode,
.case-barcode {
  display: block;
  height: 44px;
  margin-top: 12px;
  background: repeating-linear-gradient(90deg, #171717 0 2px, transparent 2px 4px, #171717 4px 5px, transparent 5px 8px);
}

.pill-bottle {
  position: absolute;
  right: 20px;
  bottom: 10px;
  display: grid;
  width: 122px;
  height: 190px;
  padding: 52px 12px 20px;
  place-content: center;
  border: 5px solid rgba(183, 94, 6, 0.65);
  border-radius: 18px 18px 22px 22px;
  background: linear-gradient(90deg, rgba(132, 51, 0, 0.75), rgba(230, 130, 29, 0.74), rgba(99, 34, 0, 0.8));
  box-shadow: inset 0 0 18px rgba(255, 203, 112, 0.25), 10px 22px 34px rgba(0, 0, 0, 0.58);
  color: var(--ink);
  text-align: center;
}

.pill-bottle::before {
  content: "";
  position: absolute;
  top: -13px;
  right: -8px;
  left: -8px;
  height: 38px;
  border-radius: 8px 8px 4px 4px;
  background: repeating-linear-gradient(90deg, #cf7919 0 5px, #f0a33f 5px 9px);
  box-shadow: 0 4px 0 #9b500e;
}

.pill-bottle::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: 25px;
  left: -5px;
  height: 76px;
  z-index: -1;
  background: var(--paper);
}

.pill-bottle span,
.pill-bottle small {
  position: relative;
  z-index: 2;
}

.pill-bottle span {
  font-family: var(--display);
  font-size: 1.25rem;
}

.pill-bottle small {
  font-size: 0.58rem;
  font-weight: 900;
}

.hero-ecg {
  position: absolute;
  right: 0;
  bottom: 92px;
  left: 0;
  z-index: 1;
  display: flex;
  height: 34px;
  align-items: center;
  color: var(--warning-bright);
  filter: drop-shadow(0 0 8px rgba(224, 27, 36, 0.9));
  opacity: 0.82;
}

.hero-ecg::before,
.hero-ecg::after,
.hero-ecg span {
  content: "";
  flex: 1;
  height: 2px;
  background: currentColor;
}

.hero-ecg i {
  width: 24px;
  height: 34px;
  border-left: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  transform: skew(-30deg) rotate(-50deg);
}

.hero-ecg b {
  width: 16px;
  height: 22px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skew(-30deg) rotate(-50deg);
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  z-index: 3;
  display: grid;
  gap: 6px;
  transform: translateX(-50%);
  place-items: center;
  color: var(--paper);
  font: 800 0.66rem/1 var(--body);
  letter-spacing: 0.16em;
}

.scroll-hint i {
  width: 13px;
  height: 13px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  animation: scroll-cue 1.5s ease-in-out infinite;
}

@keyframes scroll-cue {
  50% { transform: translateY(6px) rotate(45deg); }
}

.breadcrumb {
  position: relative;
  z-index: 5;
  width: 100%;
  padding: 12px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 0.82rem;
}

.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  margin-left: 10px;
  color: var(--warning-red);
  font-weight: 900;
}

.breadcrumb a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.breadcrumb a:hover {
  color: var(--warning-red);
  text-decoration-color: currentColor;
}

.overview-section {
  position: relative;
  color: var(--ink);
  background:
    linear-gradient(rgba(21, 21, 21, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 21, 21, 0.035) 1px, transparent 1px),
    linear-gradient(110deg, #ece9e1, #d8d5cc);
  background-size: 32px 32px, 32px 32px, auto;
  border-bottom: 1px solid rgba(21, 21, 21, 0.24);
}

.overview-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.65fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.overview-copy h2 {
  max-width: 820px;
  margin: 0 0 20px;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1;
}

.overview-copy h2::after {
  content: "";
  display: block;
  width: 94px;
  height: 6px;
  margin-top: 16px;
  background: var(--warning-red);
}

.overview-lead {
  max-width: 850px;
  margin: 0;
  font-size: clamp(1.05rem, 1.55vw, 1.24rem);
  font-weight: 800;
  line-height: 1.78;
}

.overview-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 30px 0 0;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid rgba(21, 21, 21, 0.3);
}

.overview-facts div {
  min-width: 0;
  padding: 14px 12px;
}

.overview-facts div + div {
  border-left: 1px solid rgba(21, 21, 21, 0.25);
}

.overview-facts dt {
  color: var(--warning-red);
  font: 900 0.7rem/1.4 ui-monospace, "Cascadia Mono", monospace;
}

.overview-facts dd {
  margin: 3px 0 0;
  font-weight: 900;
  line-height: 1.45;
}

.article-utility {
  padding-left: clamp(22px, 3vw, 38px);
  border-left: 1px solid rgba(21, 21, 21, 0.3);
}

.article-meta {
  display: grid;
  gap: 7px;
  margin: 0 0 28px;
  padding: 0 0 22px;
  border-bottom: 2px solid var(--ink);
}

.article-meta div {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 12px;
}

.article-meta dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
}

.article-meta dd {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 900;
}

.article-meta a,
.inline-link {
  color: #7d0d12;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contents-nav > p {
  margin: 0 0 12px;
  color: var(--warning-red);
  font: 900 0.74rem/1 ui-monospace, "Cascadia Mono", monospace;
}

.contents-nav ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  counter-reset: contents;
  list-style: none;
}

.contents-nav li {
  counter-increment: contents;
}

.contents-nav a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  padding: 8px 0;
  border-bottom: 1px solid rgba(21, 21, 21, 0.18);
  font-size: 0.86rem;
  font-weight: 800;
  line-height: 1.5;
}

.contents-nav a::before {
  content: counter(contents, decimal-leading-zero);
  color: var(--warning-red);
  font: 900 0.68rem/1.8 ui-monospace, "Cascadia Mono", monospace;
}

.contents-nav a:hover {
  color: var(--warning-red);
}

.section-inner {
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 92px) 0;
}

.paper-section,
.paper-grid,
.purchase-section {
  position: relative;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(114, 81, 52, 0.08) 0 1px, transparent 1.5px),
    radial-gradient(circle at 80% 74%, rgba(166, 19, 24, 0.08) 0 2px, transparent 3px),
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(21, 21, 21, 0.035) 30px 31px),
    linear-gradient(105deg, #ebe8df, var(--paper) 48%, #d8d5cc);
  background-size: 13px 17px, 29px 31px, auto, auto;
}

.paper-section::after,
.purchase-section::after {
  content: "";
  position: absolute;
  top: 9%;
  right: 2.5%;
  width: 120px;
  height: 44px;
  opacity: 0.18;
  border: 4px solid var(--warning-red);
  transform: rotate(-8deg);
  pointer-events: none;
}

.paper-section::before {
  content: "CONFIDENTIAL";
  position: absolute;
  top: 10%;
  right: 3%;
  z-index: 1;
  color: var(--warning-red);
  font: 900 0.85rem/1 var(--body);
  letter-spacing: 0.08em;
  transform: rotate(-8deg);
  pointer-events: none;
}

#about::before,
#about::after {
  content: none;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.42fr);
  gap: clamp(36px, 6vw, 82px);
  align-items: start;
}

.longform {
  max-width: 850px;
}

.longform h2,
.paper-card h2,
.timeline-section h2,
.refill-section h2,
.purchase-section h2,
.themes-section h2 {
  margin: 0 0 18px;
  padding-left: 16px;
  border-left: 6px solid var(--warning-red);
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: uppercase;
}

.longform p {
  margin: 0 0 1.45em;
}

.article-lead {
  margin: 0 0 1.6em;
  font-size: clamp(1.08rem, 1.7vw, 1.3rem);
  font-weight: 900;
  line-height: 1.75;
}

.medical-note {
  position: relative;
  margin: 34px 0 38px;
  padding: 24px 24px 22px 170px;
  border: 1px solid rgba(21, 21, 21, 0.28);
  background: rgba(255, 255, 255, 0.36);
  box-shadow: 8px 9px 0 rgba(21, 21, 21, 0.08);
}

.medical-note p {
  margin: 0;
}

.stamp {
  position: absolute;
  top: 28px;
  left: 20px;
  display: grid;
  width: 125px;
  height: 56px;
  place-items: center;
  border: 4px double var(--warning-red);
  color: var(--warning-red);
  font-family: var(--display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  transform: rotate(-5deg);
}

.case-file {
  position: sticky;
  top: 22px;
  width: 100%;
  margin: 40px 0 0;
  padding: 54px 24px 30px;
  border: 1px solid rgba(21, 21, 21, 0.45);
  background:
    repeating-linear-gradient(0deg, transparent 0 29px, rgba(21, 21, 21, 0.15) 29px 30px),
    #d5d1c7;
  box-shadow: var(--shadow);
  transform: rotate(1deg);
}

.case-file > p {
  margin: 0 0 22px;
  font: 900 0.7rem/1 var(--body);
  letter-spacing: 0.11em;
}

.case-clip {
  position: absolute;
  top: -20px;
  left: 50%;
  width: 150px;
  height: 48px;
  border-radius: 5px 5px 16px 16px;
  background: linear-gradient(#686a67, #1d1f1e);
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.4);
  transform: translateX(-50%);
}

.case-file dl,
.case-file dl div {
  display: grid;
}

.case-file dl {
  gap: 10px;
  margin: 0;
}

.case-file dl div {
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 8px;
}

.case-file dt {
  font: 900 0.65rem/1.4 ui-monospace, monospace;
}

.case-file dd {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
}

.case-stamp {
  display: block;
  width: fit-content;
  margin: 28px 0 0 auto;
  padding: 8px 12px;
  border: 4px double var(--warning-red);
  color: var(--warning-red);
  font-family: var(--display);
  font-size: 1.2rem;
  line-height: 0.9;
  text-align: center;
  transform: rotate(-7deg);
}

.diagnostic-section {
  position: relative;
  min-height: 590px;
  overflow: hidden;
  background:
    linear-gradient(rgba(143, 212, 194, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 212, 194, 0.06) 1px, transparent 1px),
    radial-gradient(circle at center, #10201d, #020303 70%);
  background-size: 28px 28px, 28px 28px, auto;
}

.monitor-shell {
  position: relative;
  display: grid;
  width: min(100% - 44px, 1180px);
  min-height: 620px;
  margin: 0 auto;
  padding: 48px clamp(20px, 5vw, 70px);
  align-content: center;
  justify-items: center;
  gap: 22px;
  background: rgba(1, 7, 6, 0.58);
  box-shadow: inset 0 0 90px #000;
}

.monitor-topbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  padding: 13px 18px;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(143, 212, 194, 0.24);
  color: var(--medical-green);
  font: 800 0.68rem/1 ui-monospace, monospace;
  letter-spacing: 0.1em;
}

.relapse-vortex {
  position: relative;
  width: 100%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  isolation: isolate;
  background: #020202;
  box-shadow: inset 0 0 80px #000;
}

.vortex-poster,
#relapse-vortex-canvas,
.vortex-vignette {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.vortex-poster {
  z-index: 1;
  object-fit: contain;
  opacity: 0.16;
  filter: saturate(1.15) contrast(1.14);
  transform: scale(1.03);
  transition:
    opacity 1.6s ease-in-out,
    filter 1.6s ease-in-out,
    transform 1.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.no-js .vortex-poster {
  opacity: 1;
  filter: none;
  transform: none;
}

#relapse-vortex-canvas {
  z-index: 2;
  max-width: none;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}

.diagnostic-section.vortex-ready #relapse-vortex-canvas {
  opacity: 1;
}

.vortex-vignette {
  z-index: 3;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.78) 100%);
  background-size: 100% 4px, auto;
  transition: opacity 1.6s ease-in-out;
}

.diagnostic-section.is-revealing .vortex-poster,
.diagnostic-section.is-complete .vortex-poster {
  opacity: 1;
  filter: none;
  transform: none;
}

.diagnostic-section.is-revealing #relapse-vortex-canvas,
.diagnostic-section.is-revealing .vortex-vignette,
.diagnostic-section.is-complete #relapse-vortex-canvas,
.diagnostic-section.is-complete .vortex-vignette {
  opacity: 0;
}

.diagnostic-copy {
  position: relative;
  width: min(100%, 900px);
  min-height: 126px;
  text-align: center;
}

.diagnostic-status {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: 0;
  opacity: 0;
  color: var(--warning-bright);
  font: 900 clamp(1.3rem, 3vw, 2.4rem)/1.2 ui-monospace, monospace;
  letter-spacing: 0.08em;
  text-shadow: 0 0 20px rgba(224, 27, 36, 0.72);
}

.diagnostic-copy h2 {
  max-width: 800px;
  margin: 48px auto 0;
  opacity: 0;
  color: var(--paper);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.55;
  transform: translateY(14px);
}

.diagnostic-section.is-running .status-one {
  animation: status-one 8.2s ease 1 both;
}

.diagnostic-section.is-running .status-two {
  animation: status-two 8.2s ease 1 both;
}

.diagnostic-section.is-running .diagnostic-copy h2 {
  animation: final-copy 8.2s ease 1 both;
}

@keyframes status-one {
  0%, 11% { opacity: 0; }
  17%, 34% { opacity: 1; }
  42%, 100% { opacity: 0; }
}

@keyframes status-two {
  0%, 42% { opacity: 0; }
  49%, 68% { opacity: 1; }
  75%, 100% { opacity: 0; }
}

@keyframes final-copy {
  0%, 72% { opacity: 0; transform: translateY(14px); }
  84%, 100% { opacity: 1; transform: translateY(0); }
}

.diagnostic-section.is-complete .diagnostic-copy h2 {
  opacity: 1;
  transform: none;
}

.paper-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background-color: #3c3c3a;
}

.paper-card {
  min-width: 0;
  padding: clamp(44px, 6vw, 76px) max(22px, calc((100vw - var(--max)) / 2));
  background:
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(21, 21, 21, 0.035) 30px 31px),
    linear-gradient(105deg, #ebe8df, #d7d4cb);
}

.paper-card:first-child {
  padding-left: max(22px, calc((100vw - var(--max)) / 2));
  padding-right: clamp(24px, 5vw, 64px);
}

.paper-card:last-child {
  padding-right: max(22px, calc((100vw - var(--max)) / 2));
  padding-left: clamp(24px, 5vw, 64px);
}

.paper-card h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.info-list,
.info-list div {
  display: grid;
}

.info-list {
  margin: 0;
}

.info-list div {
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 15px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
}

.info-list dt {
  font-weight: 900;
}

.info-list dd {
  min-width: 0;
  margin: 0;
  overflow-wrap: anywhere;
}

.check-list,
.recording-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li,
.recording-list li {
  position: relative;
  margin: 0;
  padding: 10px 0 10px 34px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  top: 10px;
  left: 2px;
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border: 2px solid var(--warning-red);
  color: var(--warning-red);
  font-size: 0.78rem;
  line-height: 1;
}

.japan-performance {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  border-top: 1px solid rgba(231, 228, 220, 0.16);
  border-bottom: 1px solid rgba(231, 228, 220, 0.16);
  background:
    linear-gradient(rgba(231, 228, 220, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231, 228, 220, 0.035) 1px, transparent 1px),
    linear-gradient(112deg, #121313 0%, #070909 58%, #140607 100%);
  background-size: 30px 30px, 30px 30px, auto;
}

.japan-performance-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
  gap: clamp(44px, 7vw, 96px);
  align-items: center;
}

.japan-performance-copy h2 {
  max-width: 780px;
  margin: 0 0 24px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 5rem;
  line-height: 0.98;
}

.japan-performance-copy h2 span {
  display: block;
  color: var(--warning-bright);
}

.japan-performance-copy > p:not(.section-code):not(.japan-performance-source) {
  max-width: 780px;
  color: #d5d5d0;
}

.japan-performance-lead {
  margin: 0 0 22px;
  color: #fff !important;
  font-size: 1.25rem;
  font-weight: 900;
}

.japan-performance-source {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  margin: 28px 0 0;
  color: #aeb1ad;
  font-size: 0.72rem;
}

.japan-performance-source a {
  color: var(--medical-green);
  font-weight: 800;
  text-underline-offset: 3px;
}

.japan-chart-summary {
  min-width: 0;
  padding: clamp(26px, 4vw, 44px) 0;
  border-top: 1px solid rgba(231, 228, 220, 0.28);
  border-bottom: 1px solid rgba(231, 228, 220, 0.28);
}

.japan-chart-rank {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  padding: 0 clamp(20px, 3vw, 34px) 28px;
  border-bottom: 4px solid var(--warning-bright);
}

.japan-chart-rank p {
  grid-column: 1 / -1;
  margin: 0 0 10px;
  color: var(--medical-green);
  font: 900 0.76rem/1 ui-monospace, monospace;
}

.japan-chart-rank strong {
  color: #fff;
  font-family: var(--display);
  font-size: 9rem;
  line-height: 0.72;
}

.japan-chart-rank strong span {
  color: var(--warning-bright);
  font-size: 0.42em;
  vertical-align: top;
}

.japan-chart-rank time {
  padding-bottom: 4px;
  color: #c9cbc7;
  font: 800 0.78rem/1 ui-monospace, monospace;
}

.japan-chart-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.japan-chart-stats div {
  min-width: 0;
  padding: 22px clamp(20px, 3vw, 34px);
  border-bottom: 1px solid rgba(231, 228, 220, 0.16);
}

.japan-chart-stats div:nth-child(even) {
  border-left: 1px solid rgba(231, 228, 220, 0.16);
}

.japan-chart-stats dt {
  margin-bottom: 7px;
  color: #9a9d99;
  font: 900 0.66rem/1 ui-monospace, monospace;
}

.japan-chart-stats dd {
  margin: 0;
  color: #fff;
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
}

.japan-chart-stats .japan-chart-record {
  grid-column: 1 / -1;
  border-bottom: 0;
  border-left: 0;
}

.japan-chart-stats .japan-chart-record dd {
  max-width: 460px;
  color: var(--warning-bright);
  font-family: var(--body);
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .japan-performance-copy h2 {
    font-size: 4.25rem;
  }

  .japan-chart-rank strong {
    font-size: 8rem;
  }
}

@media (max-width: 900px) {
  .japan-performance-layout {
    grid-template-columns: 1fr;
  }

  .japan-performance-copy h2 {
    font-size: 4rem;
  }

  .japan-chart-summary {
    width: min(100%, 620px);
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .japan-performance-copy h2 {
    font-size: 3.1rem;
  }

  .japan-chart-rank {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .japan-chart-rank time {
    padding-bottom: 0;
  }

  .japan-chart-rank strong {
    font-size: 6.6rem;
  }

  .japan-chart-stats {
    grid-template-columns: 1fr;
  }

  .japan-chart-stats dd {
    font-size: 2.2rem;
  }

  .japan-chart-stats div:nth-child(even) {
    border-left: 0;
  }
}

.dark-section,
.featured-section,
.critics-section {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background:
    linear-gradient(rgba(143, 212, 194, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 212, 194, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(166, 19, 24, 0.13), transparent 25rem),
    #050707;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.dark-section h2,
.featured-section h2,
.critics-section h2 {
  margin: 0 0 24px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  text-transform: uppercase;
}

.dark-section h2::after,
.featured-section h2::after,
.critics-section h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 5px;
  margin-top: 13px;
  background: var(--warning-bright);
}

.recording-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: start;
}

.recording-layout p {
  color: #d2d3ce;
}

.recording-intro {
  width: min(100%, 980px);
  justify-self: center;
}

.recording-lead {
  max-width: 82ch;
  margin-bottom: 0;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
}

.recording-copy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, 0.7fr);
  gap: clamp(34px, 5vw, 72px);
  width: min(100%, 980px);
  align-items: start;
  justify-self: center;
}

.recording-copy p:first-child {
  margin-top: 0;
}

.recording-copy p:last-child {
  margin-bottom: 0;
}

.recording-list {
  margin-top: 0;
}

.recording-list li {
  border-color: var(--line-light);
}

.recording-list li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 5px;
  width: 15px;
  height: 3px;
  background: var(--medical-green);
  box-shadow: 0 0 10px rgba(143, 212, 194, 0.7);
}

.sobriety-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  border-top: 1px solid rgba(21, 21, 21, 0.22);
  border-bottom: 1px solid rgba(21, 21, 21, 0.22);
  background:
    linear-gradient(rgba(21, 21, 21, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 21, 21, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 30px 30px;
}

.sobriety-layout {
  display: grid;
  gap: clamp(32px, 5vw, 58px);
}

.sobriety-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: end;
  padding-bottom: clamp(28px, 4vw, 44px);
  border-bottom: 3px solid var(--ink);
}

.sobriety-intro h2 {
  max-width: 760px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.04;
}

.sobriety-lead {
  max-width: 46rem;
  margin: 0;
  color: #383a37;
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
  font-weight: 800;
  line-height: 1.9;
}

.sobriety-photo,
.reassessment-photo {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #151616;
}

.sobriety-photo img,
.reassessment-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: center;
}

.sobriety-phases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(21, 21, 21, 0.28);
  border-bottom: 1px solid rgba(21, 21, 21, 0.28);
}

.sobriety-phases article {
  min-width: 0;
  padding: clamp(24px, 3vw, 38px);
}

.sobriety-phases article + article {
  border-left: 1px solid rgba(21, 21, 21, 0.28);
}

.sobriety-phase-code {
  margin: 0 0 12px;
  color: var(--warning-red);
  font: 900 0.68rem/1.4 ui-monospace, "Cascadia Mono", "Courier New", monospace;
  letter-spacing: 0.08em;
}

.sobriety-phases h3 {
  margin: 0 0 16px;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.35;
}

.sobriety-phases article > p:last-child {
  margin: 0;
  color: #454744;
}

.sobriety-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 4vw, 48px);
  padding-left: 20px;
  border-left: 5px solid var(--warning-red);
}

.sobriety-notes p {
  margin: 0;
  color: #4c4e4a;
  font-size: 0.9rem;
}

.sobriety-notes .inline-link {
  color: var(--warning-red);
  text-decoration-color: rgba(166, 19, 24, 0.45);
}

.studio-monitor {
  min-width: 0;
  padding: 28px;
  border: 10px solid #1b1d1c;
  background:
    linear-gradient(rgba(143, 212, 194, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 212, 194, 0.08) 1px, transparent 1px),
    #07100e;
  background-size: 22px 22px;
  box-shadow: inset 0 0 60px #000, 0 24px 60px rgba(0, 0, 0, 0.5);
}

.monitor-label {
  color: var(--warning-bright);
  font: 900 0.75rem/1 ui-monospace, monospace;
  letter-spacing: 0.12em;
}

.wave-bars {
  display: flex;
  height: 155px;
  margin: 24px 0;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-top: 1px solid rgba(143, 212, 194, 0.18);
  border-bottom: 1px solid rgba(143, 212, 194, 0.18);
}

.wave-bars i {
  display: block;
  width: 9px;
  height: 18%;
  background: var(--medical-green);
  box-shadow: 0 0 10px rgba(143, 212, 194, 0.6);
}

.wave-bars i:nth-child(2n) { height: 45%; }
.wave-bars i:nth-child(3n) { height: 78%; }
.wave-bars i:nth-child(5n) { height: 28%; }
.wave-bars i:nth-child(7n) { height: 92%; }

.studio-monitor dl {
  margin: 0;
}

.studio-monitor dl div {
  display: flex;
  padding: 5px 0;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgba(143, 212, 194, 0.15);
  font: 800 0.67rem/1.5 ui-monospace, monospace;
}

.studio-monitor dd {
  margin: 0;
  color: var(--medical-green);
  text-align: right;
}

.timeline-section::before,
.timeline-section::after {
  display: none;
}

.medical-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, minmax(135px, 1fr));
  gap: 0;
  margin: 48px 0 0;
  padding: 0 0 14px;
  overflow-x: auto;
  list-style: none;
  scrollbar-color: var(--warning-red) rgba(21, 21, 21, 0.15);
}

.medical-timeline::before {
  content: "";
  position: absolute;
  top: 52px;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--ink);
}

.medical-timeline li {
  position: relative;
  min-width: 0;
  padding: 0 16px;
  text-align: center;
}

.medical-timeline li::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  margin: 16px auto 20px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--warning-red);
  box-shadow: 0 0 0 2px var(--ink);
}

.medical-timeline time {
  display: block;
  height: 36px;
  color: var(--warning-red);
  font: 900 0.73rem/1.25 ui-monospace, monospace;
  overflow-wrap: anywhere;
}

.medical-timeline strong,
.medical-timeline span {
  display: block;
}

.medical-timeline strong {
  min-height: 52px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.medical-timeline span {
  color: #4d4e4b;
  font-size: 0.77rem;
  line-height: 1.65;
}

.tracklist-layout {
  display: grid;
  grid-template-columns: minmax(200px, 0.35fr) minmax(0, 1fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: center;
}

.clipboard-art {
  position: relative;
  display: grid;
  min-height: 490px;
  padding: 60px 40px;
  place-content: center;
  border: 1px solid rgba(231, 228, 220, 0.3);
  background:
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(21, 21, 21, 0.16) 34px 35px),
    #cbc8bf;
  color: var(--ink);
  box-shadow: 16px 24px 55px rgba(0, 0, 0, 0.62);
  transform: rotate(-2deg);
}

.clipboard-art .clip {
  position: absolute;
  top: -21px;
  left: 50%;
  width: 160px;
  height: 56px;
  border-radius: 7px 7px 20px 20px;
  background: linear-gradient(#777976, #262827);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.45);
  transform: translateX(-50%);
}

.clipboard-art strong {
  color: var(--warning-red);
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  line-height: 0.85;
  writing-mode: vertical-rl;
}

.clipboard-art small {
  margin-top: 22px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: 0.12em;
}

.vertical-barcode {
  position: absolute;
  right: 22px;
  bottom: 28px;
  width: 42px;
  height: 160px;
  background: repeating-linear-gradient(90deg, #171717 0 2px, transparent 2px 5px);
}

.tracklist-layout h2 span {
  display: inline-block;
  color: var(--medical-green);
  font-family: var(--body);
  font-size: 0.9rem;
  letter-spacing: 0;
}

.tracklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 38px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.tracklist li {
  min-width: 0;
  padding: 0;
  border-bottom: 1px solid rgba(231, 228, 220, 0.16);
}

.track-link {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 8px;
  min-width: 0;
  padding: 9px 8px;
  align-items: center;
  color: inherit;
  line-height: 1.45;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.track-link:hover {
  background: rgba(224, 27, 36, 0.12);
  color: #fff;
}

.track-link:focus-visible {
  outline: 2px solid var(--warning-bright);
  outline-offset: -2px;
}

.track-number {
  color: var(--warning-bright);
  font: 900 0.78rem/1.8 ui-monospace, monospace;
}

.track-title {
  min-width: 0;
  overflow-wrap: anywhere;
}

.track-destination {
  color: var(--warning-bright);
  font: 900 0.68rem/1 ui-monospace, monospace;
  white-space: nowrap;
}

.refill-section::before {
  content: "REFILL";
}

.refill-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(350px, 0.75fr);
  gap: clamp(38px, 6vw, 85px);
  align-items: center;
}

.refill-note {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 28px;
  align-items: center;
  color: var(--warning-red);
  font: 900 0.82rem/1.4 ui-monospace, monospace;
}

.refill-note strong {
  padding: 6px 9px;
  border: 2px solid currentColor;
}

.refill-list {
  margin: 0;
  padding: 22px 26px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 9px 10px 0 rgba(21, 21, 21, 0.1);
  list-style: none;
}

.refill-list li {
  min-width: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
}

.refill-track-link {
  grid-template-columns: 34px minmax(0, 1fr) auto auto;
  gap: 6px;
}

.refill-list .track-number {
  color: var(--warning-red);
  font: 900 0.74rem/1 ui-monospace, monospace;
}

.refill-list .track-destination {
  color: var(--warning-red);
}

.refill-list .track-link:hover {
  background: rgba(166, 19, 24, 0.1);
  color: var(--ink);
}

.refill-list small {
  padding: 3px 5px;
  border: 1px solid var(--warning-red);
  color: var(--warning-red);
  font-size: 0.58rem;
  line-height: 1.2;
}

.featured-section {
  padding: 0;
}

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

.song-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(231, 228, 220, 0.17);
  background: rgba(3, 5, 5, 0.78);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.song-card:hover {
  transform: translateY(-5px);
  border-color: rgba(143, 212, 194, 0.5);
}

.song-card:last-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(300px, 320px) minmax(0, 1fr);
  align-items: start;
}

.song-visual {
  position: relative;
  display: grid;
  min-height: 190px;
  overflow: hidden;
  place-items: center;
  border-bottom: 1px solid rgba(231, 228, 220, 0.18);
  background:
    linear-gradient(rgba(143, 212, 194, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 212, 194, 0.08) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(166, 19, 24, 0.36), #020303 65%);
  background-size: 24px 24px, 24px 24px, auto;
}

.song-visual::before,
.song-visual::after {
  content: "";
  position: absolute;
}

.song-visual::before {
  right: 0;
  left: 0;
  height: 2px;
  background: var(--medical-green);
  box-shadow:
    30px -5px 0 -1px var(--medical-green),
    70px -5px 0 -1px var(--medical-green),
    88px -34px 0 1px var(--medical-green),
    102px 37px 0 1px var(--medical-green),
    120px -5px 0 -1px var(--medical-green);
  opacity: 0.5;
}

.song-visual::after {
  inset: 0;
  background: linear-gradient(120deg, transparent 35%, rgba(255, 255, 255, 0.06), transparent 60%);
}

.song-visual span {
  z-index: 1;
  color: rgba(231, 228, 220, 0.82);
  font-family: var(--display);
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  letter-spacing: 0.05em;
  text-shadow: 0 0 22px rgba(224, 27, 36, 0.65);
}

.song-visual.confession {
  background:
    repeating-linear-gradient(0deg, transparent 0 29px, rgba(21, 21, 21, 0.15) 29px 30px),
    #d2cfc6;
}

.song-visual.confession span,
.song-visual.introspection span {
  color: var(--warning-red);
  text-shadow: none;
}

.song-visual.introspection {
  background: radial-gradient(circle at 70% 18%, rgba(231, 228, 220, 0.9), transparent 4%, rgba(143, 212, 194, 0.25) 12%, #030404 54%);
}

.song-visual.identity {
  background:
    linear-gradient(90deg, #070909 49.5%, var(--warning-red) 49.5% 50.5%, #160507 50.5%);
}

.song-body {
  padding: 24px 26px 28px;
}

.song-type {
  margin: 0 0 8px;
  color: var(--warning-bright);
  font: 900 0.68rem/1.4 ui-monospace, monospace;
  letter-spacing: 0.1em;
}

.song-body h3 {
  display: flex;
  min-width: 0;
  margin: 0 0 12px;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.song-body h3 span {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--warning-bright);
  color: var(--warning-bright);
  font: 900 0.78rem/1 ui-monospace, monospace;
}

.song-body > p:last-child {
  margin: 0;
  color: #d0d1cc;
  font-size: 0.94rem;
}

.purchase-section::before {
  content: "DISPENSED";
}

.purchase-lead {
  margin: 0 0 28px;
  font-weight: 800;
}

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

.shop-card {
  min-width: 0;
  padding: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 8px 9px 0 rgba(21, 21, 21, 0.1);
}

.shop-kicker {
  margin: 0 0 6px;
  color: var(--warning-red);
  font: 900 0.66rem/1.4 ui-monospace, monospace;
  letter-spacing: 0.08em;
}

.shop-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 1;
}

.rakuten-logo {
  color: #b51118;
}

.shop-card .btn {
  width: 100%;
  margin-top: 10px;
}

.amazon-btn {
  background: #161616;
  color: #fff;
}

.rakuten-btn {
  background: #b51118;
  color: #fff;
}

.affiliate-notice {
  margin: 24px 0 0;
  color: #555653;
  font-size: 0.78rem;
  text-align: center;
}

.critics-section {
  background:
    linear-gradient(rgba(143, 212, 194, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 212, 194, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 20% 20%, rgba(166, 19, 24, 0.16), transparent 25rem),
    #030404;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.score-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 660px;
  margin: 30px 0 38px;
  border: 1px solid rgba(231, 228, 220, 0.24);
}

.score-board > div {
  display: grid;
  padding: 22px;
  place-items: center;
  background: rgba(0, 0, 0, 0.36);
}

.score-board > div + div {
  border-left: 1px solid rgba(231, 228, 220, 0.24);
}

.score-board span,
.score-board small {
  color: var(--medical-green);
  font: 800 0.66rem/1.4 ui-monospace, monospace;
  letter-spacing: 0.08em;
}

.score-board strong {
  color: var(--warning-bright);
  font-family: var(--display);
  font-size: 4.6rem;
  line-height: 1;
}

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

.evaluation-grid article {
  min-width: 0;
  padding: 28px;
  border: 1px solid rgba(231, 228, 220, 0.17);
  background: rgba(0, 0, 0, 0.28);
}

.evaluation-grid h3 {
  margin: 0 0 14px;
  color: var(--paper);
  font-size: 1.3rem;
}

.evaluation-grid article > p:last-child {
  margin: 0;
  color: #cfd0cc;
}

.evaluation-tag {
  margin: 0 0 7px;
  color: var(--warning-bright);
  font: 900 0.68rem/1.4 ui-monospace, monospace;
  letter-spacing: 0.1em;
}

.reassessment-analysis {
  margin-top: clamp(34px, 5vw, 58px);
  padding: clamp(32px, 5vw, 54px) 0;
  border-top: 3px solid rgba(231, 228, 220, 0.82);
  border-bottom: 1px solid rgba(231, 228, 220, 0.22);
}

.reassessment-analysis h3 {
  max-width: 100%;
  margin: 0 0 14px;
  color: var(--paper);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.08;
}

.reassessment-title-tail {
  display: inline-block;
  white-space: nowrap;
}

.reassessment-lead {
  max-width: 820px;
  margin: 0;
  color: #d5d6d1;
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  font-weight: 800;
}

.reassessment-photo {
  margin-top: clamp(26px, 4vw, 42px);
}

.rhyme-analysis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: clamp(28px, 4vw, 42px) 0;
  border-top: 1px solid rgba(231, 228, 220, 0.2);
}

.rhyme-analysis div {
  min-width: 0;
  padding: 24px clamp(20px, 3vw, 32px);
  border-bottom: 1px solid rgba(231, 228, 220, 0.2);
}

.rhyme-analysis div:nth-child(even) {
  border-left: 1px solid rgba(231, 228, 220, 0.2);
}

.rhyme-analysis dt {
  margin-bottom: 9px;
  color: var(--medical-green);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.1;
}

.rhyme-analysis dd {
  margin: 0;
  color: #c9cac6;
}

.reassessment-conclusion {
  max-width: 980px;
  margin: 0;
  color: #d5d6d1;
}

.themes-section::before {
  content: "TRANSITION";
}

.themes-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.68fr);
  gap: clamp(38px, 6vw, 84px);
  align-items: center;
}

.theme-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.theme-tags li {
  padding: 9px 12px;
  border: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.2);
  font-size: 0.83rem;
  font-weight: 900;
  transform: rotate(-1deg);
}

.theme-tags li:nth-child(2n) {
  color: var(--warning-red);
  border-color: var(--warning-red);
  transform: rotate(1deg);
}

.faq-section {
  position: relative;
  color: var(--paper);
  background:
    linear-gradient(rgba(143, 212, 194, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 212, 194, 0.035) 1px, transparent 1px),
    #050707;
  background-size: 34px 34px;
  border-top: 1px solid rgba(143, 212, 194, 0.18);
}

.faq-section h2,
.resource-section h2 {
  margin: 0 0 26px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
}

.faq-list {
  border-top: 2px solid var(--medical-green);
}

.faq-list details {
  border-bottom: 1px solid rgba(231, 228, 220, 0.2);
}

.faq-list summary {
  padding: 20px 44px 20px 0;
  color: #f2f0e9;
  cursor: pointer;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
  font-weight: 900;
  line-height: 1.55;
}

.faq-list summary::marker {
  color: var(--warning-bright);
}

.faq-list details[open] summary {
  color: var(--medical-green);
}

.faq-list p {
  max-width: 920px;
  margin: 0;
  padding: 0 0 22px 28px;
  color: #cfd1cc;
}

.resource-section {
  position: relative;
  color: var(--ink);
  background:
    repeating-linear-gradient(0deg, transparent 0 30px, rgba(21, 21, 21, 0.035) 30px 31px),
    linear-gradient(105deg, #ebe8df, var(--paper) 48%, #d8d5cc);
}

.resource-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.62fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.related-links {
  display: grid;
  border-top: 2px solid var(--ink);
}

.related-links a {
  position: relative;
  display: grid;
  gap: 3px;
  padding: 17px 38px 17px 0;
  border-bottom: 1px solid rgba(21, 21, 21, 0.24);
  background: linear-gradient(90deg, transparent, transparent);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.related-links a::after {
  content: "↗";
  position: absolute;
  top: 17px;
  right: 8px;
  color: var(--warning-red);
  font-weight: 900;
}

.related-links a:hover {
  padding-left: 10px;
  color: var(--warning-red);
}

.related-links strong {
  font-size: 1rem;
  line-height: 1.5;
}

.related-links span {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.references {
  padding-left: clamp(22px, 3vw, 38px);
  border-left: 1px solid rgba(21, 21, 21, 0.3);
}

.references h2 {
  font-size: clamp(2rem, 3.3vw, 3.1rem);
}

.references ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 1.35em;
}

.references li {
  padding-left: 5px;
  font-size: 0.85rem;
  font-weight: 800;
  line-height: 1.55;
}

.references a {
  text-decoration: underline;
  text-decoration-color: rgba(125, 13, 18, 0.5);
  text-underline-offset: 3px;
}

.references a:hover {
  color: var(--warning-red);
}

.references > p:last-child {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.album-navigation {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(100% - 44px, var(--max));
  margin: clamp(46px, 7vw, 84px) auto 0;
  border: 1px solid rgba(231, 228, 220, 0.22);
}

.album-link {
  display: grid;
  min-width: 0;
  min-height: 150px;
  padding: 22px;
  place-content: center;
  background: rgba(4, 6, 6, 0.82);
  text-align: center;
  transition: background 0.2s ease;
}

.album-link + .album-link {
  border-left: 1px solid rgba(231, 228, 220, 0.22);
}

a.album-link:hover {
  background: rgba(166, 19, 24, 0.3);
}

.album-link span {
  color: var(--medical-green);
  font: 800 0.64rem/1.4 ui-monospace, monospace;
  letter-spacing: 0.1em;
}

.album-link strong {
  margin: 4px 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.album-link small {
  color: #aeb0ab;
}

.album-link.current {
  position: relative;
  background: var(--warning-red);
}

.album-link.current span {
  color: #fff;
}

.share-section {
  width: min(100% - 44px, 760px);
  margin: 0 auto;
  padding: 58px 0 20px;
  text-align: center;
}

.share-section h2 {
  margin: 0;
  font-size: 1.35rem;
}

.share-actions {
  justify-content: center;
  margin-top: 18px;
}

.copy-status {
  min-height: 1.8em;
  margin: 13px 0 0;
  color: var(--medical-green);
  font-size: 0.83rem;
  font-weight: 800;
}

.x-share {
  background: var(--paper);
  color: var(--ink);
}

.home-actions {
  display: flex;
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
  padding: 28px 0 62px;
  justify-content: center;
}

.site-footer {
  border-top: 1px solid rgba(231, 228, 220, 0.18);
  background: #010202;
  color: #a6a8a4;
}

.site-footer > div {
  display: flex;
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
  padding: 28px 0 12px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.5rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.78rem;
}

.site-footer nav a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer > p {
  width: min(100% - 44px, var(--max));
  margin: 0 auto;
  padding: 0 0 28px;
  font-size: 0.74rem;
}

.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  width: 48px;
  height: 48px;
  opacity: 0;
  visibility: hidden;
  place-items: center;
  border: 1px solid rgba(231, 228, 220, 0.55);
  border-radius: 0;
  background: var(--warning-red);
  color: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  transform: translateY(10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.ad-section {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: 34px clamp(18px, 4vw, 64px);
  overflow: hidden;
  background: #090a0a;
  text-align: center;
}

.ad-label {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  line-height: 1.4;
}

.ad-placeholder {
  width: 100%;
  max-width: 970px;
  min-height: 250px;
  margin-inline: auto;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.ad-placeholder .adsbygoogle {
  display: block;
  width: 100%;
  max-width: 100%;
}

.ad-desktop {
  display: block;
}

.ad-mobile {
  display: none;
}

.fade-up,
.slide-left,
.slide-right {
  opacity: 1;
  transform: none;
}

/* Editorial photography */
.hero-editorial,
.case-file-photo figure,
.recording-photo,
.tracklist-photo,
.refill-photo,
.song-visual,
.themes-photo {
  margin: 0;
}

.hero-editorial {
  position: absolute;
  top: 16px;
  right: 0;
  width: min(100%, 560px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(231, 228, 220, 0.42);
  background: #090a09;
  box-shadow: 18px 28px 70px rgba(0, 0, 0, 0.72), 0 0 38px rgba(166, 19, 24, 0.22);
  transform: rotate(0.8deg);
}

.hero-editorial::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 10px solid rgba(3, 4, 4, 0.18);
  box-shadow: inset 0 0 55px rgba(0, 0, 0, 0.24);
  pointer-events: none;
}

.hero-editorial img,
.case-file-photo img,
.recording-photo img,
.tracklist-photo img,
.refill-photo img,
.song-visual img,
.themes-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-file-photo {
  position: sticky;
  top: 22px;
  width: 100%;
  margin: 40px 0 0;
}

.case-file-photo figure {
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: #080808;
  box-shadow: 18px 30px 70px rgba(0, 0, 0, 0.34);
}

.case-file-photo img {
  filter: contrast(1.05) saturate(0.96);
}

.recording-photo,
.tracklist-photo {
  width: min(100%, 520px);
  overflow: hidden;
  border: 1px solid rgba(231, 228, 220, 0.28);
  background: #090a09;
  box-shadow: 16px 24px 56px rgba(0, 0, 0, 0.58);
  transform: rotate(0.8deg);
}

.recording-photo {
  width: min(100%, 980px);
  justify-self: center;
  aspect-ratio: 343 / 193;
  border: 0;
  background: #050606;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.56);
  transform: none;
}

.recording-photo img {
  object-position: center;
}

.tracklist-photo {
  aspect-ratio: 1;
  transform: rotate(-1deg);
}

.refill-side {
  display: grid;
  min-width: 0;
  gap: 22px;
}

.refill-photo {
  aspect-ratio: 1;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.28);
  background: #19120f;
  box-shadow: 10px 12px 0 rgba(21, 21, 21, 0.12);
}

.refill-photo img {
  object-position: center;
}

.song-visual {
  display: block;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid rgba(231, 228, 220, 0.18);
  background: #050606;
}

.song-visual::before,
.song-visual::after {
  content: none;
}

.song-visual img {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.song-card:hover .song-visual img {
  filter: contrast(1.05) saturate(1.04);
  transform: scale(1.025);
}

.visual-3am img {
  object-position: center;
}

.visual-wide-awake img {
  object-position: 50% 50%;
}

.visual-deja-vu img {
  object-position: 50% 43%;
}

.visual-beautiful {
  background: #0b0d0d;
}

.visual-beautiful img {
  object-fit: cover;
  object-position: center top;
}

.song-card:hover .visual-beautiful img {
  transform: none;
}

.visual-my-darling img {
  object-position: 50% 42%;
}

.song-card:last-child .song-visual {
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  align-self: start;
}

.themes-support {
  display: grid;
  min-width: 0;
  gap: 22px;
}

.themes-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.28);
  background: #2a1b15;
  box-shadow: 10px 12px 0 rgba(21, 21, 21, 0.1);
}

.themes-photo img {
  object-position: 50% 49%;
}

.js .fade-up {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .slide-left {
  opacity: 0;
  transform: translateX(-45px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js .slide-right {
  opacity: 0;
  transform: translateX(45px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.js .fade-up.is-visible,
.js .slide-left.is-visible,
.js .slide-right.is-visible {
  opacity: 1;
  transform: none;
}

.article-layout > *,
.paper-grid > *,
.recording-layout > *,
.tracklist-layout > *,
.refill-layout > *,
.song-grid > *,
.themes-layout > *,
.album-navigation > * {
  min-width: 0;
}

h1,
h2,
h3,
p,
li,
dd,
dt,
a,
button {
  overflow-wrap: anywhere;
}

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  }

  .hero-specimen {
    transform: scale(0.92);
    transform-origin: right center;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 300px;
    gap: 44px;
  }
}

@media (max-width: 900px) {
  .sobriety-intro,
  .sobriety-phases,
  .sobriety-notes {
    grid-template-columns: 1fr;
  }

  .sobriety-phases article + article {
    border-top: 1px solid rgba(21, 21, 21, 0.28);
    border-left: 0;
  }

  .global-nav a:nth-child(3),
  .global-nav a:nth-child(4) {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 54px;
  }

  .hero-specimen {
    width: min(100%, 620px);
    min-height: 470px;
    transform: none;
  }

  .article-layout,
  .recording-layout,
  .recording-copy-grid,
  .tracklist-layout,
  .refill-layout,
  .themes-layout,
  .overview-layout,
  .resource-layout {
    grid-template-columns: 1fr;
  }

  .article-utility,
  .references {
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid rgba(21, 21, 21, 0.3);
    border-left: 0;
  }

  .case-file {
    position: relative;
    top: auto;
    max-width: 480px;
    margin: 10px auto 0;
  }

  .case-file-photo {
    position: relative;
    top: auto;
    max-width: 560px;
    margin: 10px auto 0;
  }

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

  .paper-card,
  .paper-card:first-child,
  .paper-card:last-child {
    padding: 52px max(22px, calc((100vw - var(--max)) / 2));
  }

  .studio-monitor {
    max-width: 620px;
    margin: 0 auto;
  }

  .recording-photo,
  .tracklist-photo,
  .refill-side,
  .themes-support {
    width: min(100%, 620px);
    margin-inline: auto;
    justify-self: center;
  }

  .recording-photo {
    width: 100%;
    aspect-ratio: 343 / 193;
  }

  .clipboard-art {
    width: min(100%, 430px);
    min-height: 390px;
    margin: 0 auto;
  }

  .clipboard-art strong {
    writing-mode: horizontal-tb;
  }

  .album-navigation {
    grid-template-columns: 1fr;
  }

  .album-link {
    min-height: 130px;
  }

  .album-link + .album-link {
    border-top: 1px solid rgba(231, 228, 220, 0.22);
    border-left: 0;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 15.5px;
    line-height: 1.82;
  }

  .site-header {
    width: min(100% - 30px, 1450px);
  }

  .global-nav {
    gap: 14px;
  }

  .hero-inner,
  .section-inner,
  .monitor-shell,
  .album-navigation,
  .share-section,
  .home-actions,
  .site-footer > div,
  .site-footer > p {
    width: min(100% - 30px, var(--max));
  }

  .hero h1 {
    font-size: clamp(4.4rem, 18vw, 7rem);
  }

  .hero-specimen {
    min-height: 420px;
  }

  .album-art-placeholder {
    width: min(74%, 370px);
  }

  .chart-card {
    width: 190px;
  }

  .pill-bottle {
    right: 7px;
    transform: scale(0.88);
    transform-origin: right bottom;
  }

  .diagnostic-section {
    min-height: 520px;
  }

  .monitor-shell {
    min-height: 610px;
    padding-inline: 15px;
  }

  .relapse-vortex {
    aspect-ratio: 4 / 5;
  }

  .medical-timeline {
    grid-template-columns: 1fr;
    gap: 0;
    overflow: visible;
  }

  .medical-timeline::before {
    top: 0;
    right: auto;
    bottom: 0;
    left: 11px;
    width: 2px;
    height: auto;
  }

  .medical-timeline li {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    padding: 0 0 24px 42px;
    text-align: left;
  }

  .medical-timeline li::before {
    position: absolute;
    top: 5px;
    left: 4px;
    margin: 0;
  }

  .medical-timeline time {
    grid-row: 1 / span 2;
    height: auto;
    padding-right: 12px;
  }

  .medical-timeline strong {
    min-height: 0;
  }

  .tracklist,
  .song-grid,
  .shop-grid,
  .evaluation-grid,
  .rhyme-analysis {
    grid-template-columns: 1fr;
  }

  .rhyme-analysis div:nth-child(even) {
    border-left: 0;
  }

  .song-card:last-child {
    grid-column: auto;
    display: block;
  }

  .song-card:last-child .song-visual {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .score-board {
    max-width: none;
  }

  .ad-desktop {
    display: none;
  }

  .ad-mobile {
    display: block;
  }
}

@media (max-width: 520px) {
  .site-header {
    align-items: flex-start;
  }

  .site-brand strong {
    font-size: 1.2rem;
  }

  .site-brand span {
    font-size: 0.52rem;
  }

  .global-nav {
    display: grid;
    gap: 7px;
    text-align: right;
  }

  .global-nav a:nth-child(2) {
    display: none;
  }

  .hero-inner {
    padding: 42px 0 92px;
  }

  .patient-card {
    min-width: 0;
    width: 100%;
    font-size: 0.69rem;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 18vw, 5.25rem);
  }

  .hero h1::after {
    height: 6px;
  }

  .hero-actions,
  .share-actions {
    display: grid;
    width: 100%;
  }

  .btn {
    width: 100%;
  }

  .hero-specimen {
    min-height: 370px;
  }

  .hero-editorial {
    top: 10px;
    right: 0;
    width: min(100%, 370px);
  }

  .album-art-placeholder {
    top: 24px;
    left: 0;
    width: min(78%, 310px);
  }

  .chart-card {
    width: 155px;
    min-height: 220px;
    padding: 48px 12px 14px;
    font-size: 0.53rem;
  }

  .chart-card::before {
    left: 23px;
    width: 108px;
  }

  .pill-bottle {
    width: 102px;
    height: 160px;
  }

  .album-art-placeholder strong {
    font-size: 2.55rem;
  }

  .album-art-placeholder small {
    display: none;
  }

  .breadcrumb {
    padding-inline: 15px;
  }

  .section-inner {
    padding: 50px 0;
  }

  .longform h2,
  .overview-copy h2,
  .paper-card h2,
  .sobriety-intro h2,
  .timeline-section h2,
  .refill-section h2,
  .purchase-section h2,
  .themes-section h2,
  .dark-section h2,
  .featured-section h2,
  .critics-section h2,
  .faq-section h2,
  .resource-section h2 {
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .overview-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .overview-facts div:nth-child(3) {
    border-top: 1px solid rgba(21, 21, 21, 0.25);
    border-left: 0;
  }

  .overview-facts div:nth-child(4) {
    border-top: 1px solid rgba(21, 21, 21, 0.25);
  }

  .paper-section::before,
  .paper-section::after,
  .purchase-section::before,
  .purchase-section::after {
    display: none;
  }

  .medical-note {
    padding: 90px 18px 20px;
  }

  .stamp {
    top: 18px;
    left: 18px;
  }

  .case-file {
    padding-inline: 18px;
  }

  .info-list div {
    grid-template-columns: 1fr;
    gap: 1px;
  }

  .info-list dd {
    padding-bottom: 4px;
  }

  .medical-timeline li {
    grid-template-columns: 88px minmax(0, 1fr);
    padding-left: 37px;
  }

  .tracklist {
    column-gap: 0;
  }

  .refill-note {
    align-items: stretch;
  }

  .refill-note strong {
    width: 100%;
    text-align: center;
  }

  .refill-note > span {
    width: 100%;
    text-align: center;
  }

  .refill-list {
    padding: 16px;
  }

  .track-link {
    grid-template-columns: 30px minmax(0, 1fr) auto;
    gap: 6px;
    padding-inline: 5px;
  }

  .track-destination > span {
    display: none;
  }

  .refill-track-link {
    grid-template-columns: 30px minmax(0, 1fr) auto;
  }

  .refill-list small {
    grid-row: 2;
    grid-column: 2;
    width: fit-content;
  }

  .refill-list .track-destination {
    grid-row: 1;
    grid-column: 3;
  }

  .score-board {
    grid-template-columns: 1fr;
  }

  .score-board > div + div {
    border-top: 1px solid rgba(231, 228, 220, 0.24);
    border-left: 0;
  }

  .theme-tags li {
    width: 100%;
    text-align: center;
  }

  .site-footer > div {
    display: grid;
  }

  .site-footer nav {
    gap: 13px;
  }

  .to-top {
    right: 13px;
    bottom: 13px;
    width: 44px;
    height: 44px;
  }

  .ad-section {
    padding: 18px 10px;
  }

  .ad-placeholder {
    min-height: 250px;
    padding: 8px;
  }
}

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

  .js .fade-up,
  .js .slide-left,
  .js .slide-right {
    opacity: 1 !important;
    transform: none !important;
  }

  .diagnostic-status {
    display: none;
  }

  .diagnostic-copy h2 {
    opacity: 1 !important;
    transform: none !important;
  }

  .diagnostic-section #relapse-vortex-canvas {
    display: none;
  }

  .diagnostic-section .vortex-poster {
    z-index: 4;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .diagnostic-section .vortex-vignette {
    display: none;
  }
}
