:root {
  --ink: #090a0d;
  --ink-soft: #15171c;
  --charcoal: #22242a;
  --paper: #e9e2d6;
  --paper-bright: #f6f3ed;
  --muted: #aeb2ba;
  --red: #b31319;
  --red-bright: #db2730;
  --navy: #172436;
  --blue: #315f86;
  --teal: #0eaaa5;
  --teal-dark: #077c79;
  --orange: #f7a600;
  --line: rgba(255,255,255,.16);
  --max: 1240px;
  --header-h: 68px;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-display: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", sans-serif;
  --font-mono: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); overflow-x: clip; }
body { margin: 0; background: var(--ink); color: #f6f4ee; font-family: var(--font-body); font-size: 17px; line-height: 1.8; overflow-x: clip; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration-thickness: 1px; text-underline-offset: .2em; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 4px; }
::selection { background: var(--red); color: white; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 9999; top: 8px; left: 8px; padding: .7rem 1rem; background: white; color: black; transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; z-index: 1000; inset: 0 0 auto; min-height: var(--header-h); padding: 0 clamp(18px, 3vw, 48px); display: flex; align-items: center; justify-content: space-between; gap: 24px; background: rgba(7,8,10,.88); border-bottom: 1px solid var(--line); backdrop-filter: blur(14px); }
.brand { display: flex; align-items: center; gap: 12px; color: white; text-decoration: none; min-width: 0; }
.brand img { width: 43px; height: 34px; object-fit: contain; }
.brand span { font-family: var(--font-mono); font-size: 11px; letter-spacing: .13em; line-height: 1.3; color: var(--muted); }
.brand b { color: #fff; }
.global-nav { display: flex; align-items: center; gap: clamp(16px, 2.4vw, 36px); }
.global-nav a { position: relative; padding: 23px 0 19px; color: #d5d7db; text-decoration: none; font: 700 12px/1 var(--font-mono); letter-spacing: .08em; }
.global-nav a::after { content: ""; position: absolute; inset: auto 50% 0; height: 3px; background: var(--red-bright); transition: inset .2s ease; }
.global-nav a:hover::after, .global-nav a.is-active::after { inset-inline: 0; }
.menu-toggle { display: none; width: 46px; height: 44px; padding: 10px; border: 1px solid var(--line); background: transparent; color: white; }
.menu-toggle i { display: block; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }

.section { position: relative; padding: clamp(76px, 9vw, 142px) 0; }
.section-inner { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section-label { margin: 0 0 1rem; color: var(--red-bright); font: 700 12px/1.4 var(--font-mono); letter-spacing: .16em; text-transform: uppercase; }
h1, h2, h3 { overflow-wrap: normal; word-break: normal; line-break: strict; text-wrap: balance; }
h2 { margin: 0 0 1.2rem; font-family: var(--font-display); font-size: clamp(3rem, 6vw, 6.8rem); font-weight: 900; line-height: .92; letter-spacing: .01em; text-transform: uppercase; }
h3 { line-height: 1.16; }
p, li, dd { text-wrap: pretty; }
code, pre, .browser-bar span { overflow-wrap: anywhere; }
.heading-chunk { display: inline-block; max-width: 100%; white-space: normal; }
.heading-chunk + .heading-chunk { margin-left: .16em; }
.nowrap-title { display: inline-block; max-width: 100%; white-space: nowrap; }
.section-lead { max-width: 800px; margin: 0 0 1.4rem; font-size: clamp(1.15rem, 2vw, 1.55rem); line-height: 1.62; font-weight: 700; }
.button { min-height: 48px; padding: .88rem 1.25rem; display: inline-flex; align-items: center; justify-content: center; border: 1px solid transparent; text-decoration: none; font-weight: 800; line-height: 1.2; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--red); color: white; }
.button-primary:hover { background: var(--red-bright); }
.button-ghost { border-color: rgba(255,255,255,.4); color: white; background: rgba(0,0,0,.18); }
.button-light { background: white; color: var(--ink); }
.text-link { font-weight: 800; color: #fff; text-decoration-color: var(--red); }
.interpretation { padding: 1rem 1.2rem; border-left: 5px solid var(--red); background: rgba(179,19,25,.08); }
.note-box { padding: 1rem; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.04); }
figure { margin: 0; }
figcaption { margin-top: .7rem; color: #878c95; font: 700 10px/1.5 var(--font-mono); letter-spacing: .1em; text-transform: uppercase; }

.hero { position: relative; min-height: 100svh; padding-top: var(--header-h); display: grid; grid-template-columns: minmax(0, 46%) minmax(0, 54%); background: #050607; isolation: isolate; overflow: hidden; }
.hero::before { content: ""; position: absolute; z-index: 3; inset: var(--header-h) 54% 0 0; pointer-events: none; background-image: repeating-linear-gradient(0deg, transparent 0 3px, rgba(255,255,255,.018) 4px); mix-blend-mode: screen; }
.hero-copy { position: relative; z-index: 5; padding: clamp(54px, 8vw, 130px) clamp(24px, 5vw, 86px) 76px; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(125deg, #050607 0%, #101218 72%, #1a0b0d 100%); }
.eyebrow { margin: 0 0 2rem; display: flex; flex-wrap: wrap; gap: 10px; color: #a9adb4; font: 700 10px/1.2 var(--font-mono); letter-spacing: .14em; }
.eyebrow span { padding: .45rem .65rem; border: 1px solid rgba(255,255,255,.17); }
.hero-logo { width: min(100%, 530px); margin: 0 0 1.1rem; mix-blend-mode: screen; }
.hero h1 { margin: 0; font-family: var(--font-display); font-size: clamp(2.25rem, 5vw, 5.5rem); line-height: .9; letter-spacing: .02em; text-transform: uppercase; }
.hero h1 > span { color: #c1c4ca; font-size: .48em; letter-spacing: .16em; }
.hero h1 small { display: block; margin-top: .75rem; color: #8c9199; font: 700 clamp(.72rem, 1vw, .9rem)/1.4 var(--font-body); letter-spacing: .08em; text-transform: none; }
.hero-lead { margin: clamp(26px, 5vh, 48px) 0 12px; font-size: clamp(1.8rem, 3.7vw, 3.8rem); font-weight: 900; line-height: 1.15; letter-spacing: -.04em; }
.hero-summary { max-width: 630px; margin: 0 0 2rem; color: #c7c9ce; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-meta { margin: 2rem 0 0; color: #858a94; font: 700 10px/1.5 var(--font-mono); letter-spacing: .1em; }
.hero-visual { position: relative; min-height: 100%; background: #251b1a; overflow: hidden; }
.hero-visual picture, .hero-visual img { width: 100%; height: 100%; }
.hero-visual img { object-fit: cover; object-position: 46% center; filter: contrast(1.05) saturate(.84); }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(5,6,7,.44), transparent 28%), linear-gradient(0deg, rgba(5,6,7,.45), transparent 32%); pointer-events: none; }
.hero-visual figcaption { position: absolute; z-index: 2; bottom: 34px; right: 28px; margin: 0; color: rgba(255,255,255,.64); }
.hero-ticker { position: absolute; z-index: 7; inset: auto 0 0; height: 25px; overflow: hidden; background: var(--red); color: white; font: 800 10px/25px var(--font-mono); letter-spacing: .15em; white-space: nowrap; }
.hero-ticker span { display: inline-block; min-width: 200%; animation: ticker 26s linear infinite; }
@keyframes ticker { to { transform: translateX(-50%); } }

.paper-section { background: var(--paper); color: #171719; }
.overview-grid { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: clamp(36px, 7vw, 96px); align-items: center; }
.overview-section h2 { color: #15161a; }
.album-cover-card { position: relative; max-width: 500px; justify-self: end; padding: 15px 15px 52px; background: #f8f5ef; box-shadow: 0 25px 65px rgba(0,0,0,.24); transform: rotate(1deg); }
.album-cover-card figcaption { color: #555a61; }
.fact-grid { grid-column: 1 / -1; margin: 1rem 0 0; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 2px solid #18191c; border-bottom: 2px solid #18191c; }
.fact-grid div { padding: 1.2rem; border-right: 1px solid rgba(0,0,0,.22); }
.fact-grid div:nth-child(3n) { border-right: 0; }
.fact-grid div:nth-child(-n+3) { border-bottom: 1px solid rgba(0,0,0,.22); }
.fact-grid dt { font: 800 10px/1.3 var(--font-mono); letter-spacing: .12em; color: #6f1015; }
.fact-grid dd { margin: .45rem 0 0; font-weight: 800; line-height: 1.35; }

.index-section { padding-block: 62px; background: #fff; color: #121317; }
.index-layout { display: grid; grid-template-columns: .35fr 1fr; gap: 6vw; }
.index-section h2 { margin: 0; font-size: clamp(3.5rem, 7vw, 7rem); }
.index-list { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); list-style: none; border-top: 1px solid #c7c8ca; }
.index-list li { border-bottom: 1px solid #c7c8ca; }
.index-list a { min-height: 76px; padding: .85rem .7rem; display: flex; align-items: center; gap: .75rem; text-decoration: none; font-size: .86rem; font-weight: 800; }
.index-list a:hover { background: #e9f4f2; }
.index-list span { color: var(--teal-dark); font: 800 11px/1 var(--font-mono); }

.re-series-section { background: linear-gradient(120deg, #111318, #22252d); }
.split-heading { display: grid; grid-template-columns: .86fr 1.14fr; gap: clamp(40px, 8vw, 120px); align-items: start; }
.split-heading h2 { max-width: 680px; }
.prose { max-width: 750px; }
.prose p:first-child { margin-top: 0; font-size: 1.22rem; }
.prose i { font-style: normal; font-weight: 900; color: #fff; }

.re-timeline-section { position: relative; padding: 0; background: #0a0b0e; overflow-x: clip; overflow-y: visible; }
.re-timeline-section::before { content: "RE"; position: absolute; inset: 7rem -1vw auto auto; color: rgba(255,255,255,.025); font: 900 min(46vw, 680px)/.7 var(--font-display); }
.timeline-intro { position: relative; z-index: 1; padding-block: clamp(76px, 9vw, 120px) clamp(38px, 5vw, 72px); text-align: center; }
.timeline-intro h2 { display: flex; align-items: center; justify-content: center; flex-wrap: nowrap; gap: clamp(8px, 2vw, 35px); font-size: clamp(3.8rem, 12vw, 11rem); white-space: nowrap; }
.timeline-intro h2 span:first-child { color: #8c1b20; }
.timeline-intro h2 span:nth-of-type(2) { color: #6c9cc6; }
.timeline-intro h2 span:last-child { color: #e9e4da; }
.timeline-intro h2 i { color: #555a62; font-family: var(--font-body); font-size: .35em; font-style: normal; }
.timeline-intro > p:last-child { max-width: 800px; margin-inline: auto; color: #b7bbc3; }
.time-scroll { position: relative; z-index: 2; }
.time-stage { position: relative; width: 100%; max-width: 100%; min-width: 0; min-height: 760px; padding: clamp(22px, 3vw, 44px) clamp(20px, 4vw, 68px) 34px; display: grid; grid-template-rows: auto minmax(0, 1fr) auto; gap: 14px; overflow: clip; isolation: isolate; border-block: 1px solid rgba(255,255,255,.16); background: #08090c; }
.time-stage-topline { position: relative; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.62); font: 800 10px/1.3 var(--font-mono); letter-spacing: .12em; }
.time-stage-topline strong { color: #f5f2eb; }
.time-panels { position: relative; display: grid; gap: 30px; min-height: 620px; }
.time-panel { position: relative; min-height: 620px; padding: clamp(34px, 5vw, 76px); display: grid; grid-template-columns: minmax(280px, .8fr) minmax(300px, 1.2fr); gap: clamp(36px, 7vw, 100px); align-items: center; overflow: clip; }
.time-stage-topline, .time-panels, .time-panel, .time-panel > *, .era-copy, .time-progress, .time-progress li { min-width: 0; }
.era-panel figure { position: relative; z-index: 2; width: 100%; max-width: 460px; box-shadow: 0 28px 70px rgba(0,0,0,.46); }
.era-panel figure img { width: 100%; aspect-ratio: 1; object-fit: contain; }
.era-copy { position: relative; z-index: 2; max-width: 680px; }
.era-copy h3 { margin: 0 0 .5rem; font: 900 clamp(4rem, 10vw, 9rem)/.78 var(--font-display); letter-spacing: .02em; }
.era-status { margin: 0 0 .7rem; font: 800 12px/1 var(--font-mono); letter-spacing: .2em; }
.era-copy ul { margin: 1.6rem 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; list-style: none; }
.era-copy li { padding: .35rem .65rem; border: 1px solid currentColor; font-size: .78rem; font-weight: 800; }
.era-copy a { font-weight: 900; }
.era-year { position: absolute; z-index: 0; inset: auto -2vw -7vw auto; font: 900 min(25vw, 380px)/1 var(--font-display); color: rgba(255,255,255,.055); }
.era-relapse { background: radial-gradient(circle at 15% 20%, #5c1015, transparent 36%), #160b0d; border-top: 9px solid #7c151b; }
.era-relapse .era-status { color: #da4248; }
.era-recovery { background: linear-gradient(145deg, #132638, #315f86 54%, #c16b19 140%); border-top: 9px solid #e28524; }
.era-recovery .era-status { color: #ef9c3e; }
.era-revival { background: linear-gradient(135deg, #13151a 0%, #24364b 52%, #620f14 120%); border-top: 9px solid var(--red); }
.era-revival .era-status { color: #e33b42; }
.era-emblem { width: 64px; height: 46px; object-fit: contain; margin-bottom: 14px; }
.time-progress { position: relative; z-index: 30; margin: 0; padding: 0; display: flex; justify-content: flex-end; gap: 8px; list-style: none; }
.time-progress button { min-width: 92px; min-height: 46px; padding: .45rem .65rem; display: flex; align-items: baseline; justify-content: space-between; gap: .55rem; border: 1px solid rgba(255,255,255,.28); background: rgba(5,6,8,.76); color: rgba(255,255,255,.66); cursor: pointer; font-family: var(--font-mono); }
.time-progress button:hover { border-color: rgba(255,255,255,.68); color: #fff; }
.time-progress button span { color: #ea3a43; font-size: .6rem; }
.time-progress button strong { font-size: .78rem; }
.time-progress button.is-current { border-color: #ca1c24; background: #b31319; color: #fff; }
.time-progress button.is-current span { color: #fff; }
.time-meter { position: absolute; z-index: 30; inset: auto 0 0; height: 5px; overflow: hidden; background: rgba(255,255,255,.09); }
.time-meter span { display: block; width: 0; height: 100%; background: #e22932; transform-origin: left center; }
.timeline-comparison { position: relative; z-index: 2; padding: 44px 0 100px; }
.timeline-comparison div { display: grid; grid-template-columns: 100px 1fr auto 1fr auto 1fr; gap: 12px; align-items: center; padding: 1.1rem 0; border-top: 1px solid rgba(255,255,255,.16); }
.timeline-comparison div:last-child { border-bottom: 1px solid rgba(255,255,255,.16); }
.timeline-comparison b { color: #e63b42; font: 800 11px/1 var(--font-mono); }
.timeline-comparison span { font-size: .86rem; line-height: 1.45; }
.timeline-comparison i { color: #656b75; font-style: normal; }

.ad-section { position: relative; min-height: 180px; padding: 34px 20px; background: #f2efe8; color: #4d5056; }
.ad-placeholder { width: min(100%, 970px); min-height: 112px; margin: auto; display: grid; align-content: start; overflow: hidden; }
.ad-placeholder > span { margin-bottom: 8px; text-align: center; font-size: 10px; color: #72757b; }
.ad-section.is-ad-empty { display: none; min-height: 0; padding: 0; }

.making-section { background: #111318; }
.making-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(44px, 7vw, 100px); align-items: start; }
.making-copy { padding-top: clamp(4px, 2vw, 28px); }
.making-copy .section-lead { max-width: 790px; }
.making-image { border: 1px solid rgba(255,255,255,.18); padding: 12px; background: #07080a; }
.making-image img { width: 100%; filter: contrast(1.05); }
.making-dossier { margin-top: clamp(58px, 8vw, 110px); }
.production-route { margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); list-style: none; border-top: 1px solid rgba(255,255,255,.24); border-bottom: 1px solid rgba(255,255,255,.24); }
.production-route li { min-width: 0; padding: clamp(22px, 3vw, 38px) clamp(16px, 2.2vw, 30px); border-left: 1px solid rgba(255,255,255,.15); }
.production-route li:first-child { border-left: 0; }
.production-route time { display: block; margin-bottom: 1.4rem; color: var(--red-bright); font: 900 clamp(1.35rem, 2.4vw, 2.45rem)/1 var(--font-display); white-space: nowrap; }
.production-route b, .production-blueprint span { color: #90959e; font: 800 9px/1.4 var(--font-mono); letter-spacing: .13em; }
.production-route h3 { margin: .65rem 0 .8rem; font-size: clamp(1.05rem, 1.7vw, 1.35rem); line-height: 1.25; }
.production-route p { margin: 0; color: #b9bdc5; font-size: .86rem; line-height: 1.75; }
.production-blueprint { margin-top: clamp(48px, 6vw, 82px); display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); }
.production-blueprint article { min-width: 0; padding: clamp(26px, 4vw, 52px); background: #0b0d11; }
.production-blueprint article:nth-child(2), .production-blueprint article:nth-child(3) { background: #15181e; }
.production-blueprint h3 { margin: 1rem 0; font-size: clamp(1.35rem, 2.4vw, 2.05rem); line-height: 1.25; }
.production-blueprint p { margin: 0; color: #c0c3c9; line-height: 1.85; }
.making-conclusion { margin-top: clamp(34px, 5vw, 58px); padding: clamp(25px, 4vw, 42px); display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; border-left: 7px solid var(--red); background: rgba(255,255,255,.055); }
.making-conclusion p { margin: 0; font-size: clamp(1rem, 1.6vw, 1.17rem); line-height: 1.85; }
.making-conclusion .text-link { white-space: nowrap; }

.pharma-section { padding: 0; background: #f8faf8; color: #353a3e; overflow: hidden; }
.pharma-header { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 5px solid var(--orange); }
.pharma-brand { display: flex; align-items: center; gap: 12px; color: var(--teal-dark); font: 900 1.15rem/1 var(--font-body); }
.pharma-brand img { width: 42px; height: 34px; object-fit: contain; background: #0a0a0b; }
.pharma-brand small { display: block; margin-top: 5px; color: #777; font: 700 8px/1 var(--font-mono); letter-spacing: .12em; }
.pharma-header > p { display: flex; gap: 34px; color: #777; font-size: .8rem; font-style: italic; }
.pharma-intro { padding-top: clamp(74px, 9vw, 130px); }
.pharma-section .section-label { color: var(--teal-dark); }
.pharma-intro h2 { max-width: 1050px; color: #3f4244; font-family: var(--font-body); font-size: clamp(3.2rem, 6.5vw, 6rem); font-weight: 900; letter-spacing: -.07em; text-transform: none; }
.pharma-intro h2 span { display: block; margin-top: .5rem; color: var(--teal-dark); font-size: .28em; letter-spacing: -.02em; }
.pharma-intro > p:last-child { max-width: 880px; font-size: 1.06rem; }
.pharma-warning { max-width: 850px; padding: 1rem 1.2rem; border: 2px solid #e5b537; background: #fff8d9; }
.pharma-grid { padding-block: 42px 64px; display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(30px, 5vw, 68px); align-items: center; }
.pharma-ad { width: min(100%, 560px); justify-self: center; padding: 12px; background: white; box-shadow: 0 22px 55px rgba(13,90,87,.18); }
.pharma-results { padding: clamp(24px, 3.5vw, 42px); background: white; border-top: 7px solid var(--orange); box-shadow: 0 14px 36px rgba(0,0,0,.08); }
.pharma-results dl { margin: 1rem 0 0; border-top: 1px solid #d5dcda; }
.pharma-results dl div { padding: .9rem 0; display: grid; grid-template-columns: 105px 1fr; gap: 1rem; border-bottom: 1px solid #d5dcda; }
.pharma-results dt { color: var(--teal-dark); font: 800 10px/1.5 var(--font-mono); }
.pharma-results dd { margin: 0; font-size: .88rem; font-weight: 700; line-height: 1.55; }
.pharma-archive { padding-block: 62px; display: grid; grid-template-columns: minmax(300px, .9fr) minmax(300px, 1.1fr); gap: clamp(36px, 6vw, 82px); align-items: start; border-top: 1px solid #d7dedc; }
.browser-record { max-width: 590px; padding: 0 12px 16px; background: #e8ecec; border: 1px solid #abb5b5; box-shadow: 0 32px 65px rgba(0,0,0,.17); }
.browser-bar { height: 42px; margin-inline: -12px; padding: 0 12px; display: flex; align-items: center; gap: 7px; background: #31363a; color: #d7d9db; }
.browser-bar i { width: 9px; height: 9px; border-radius: 50%; background: #8e969c; }
.browser-bar span { margin-left: 8px; font: 700 9px/1 var(--font-mono); letter-spacing: .08em; }
.browser-record a { position: relative; display: block; height: clamp(480px, 42vw, 550px); overflow: hidden; background: white; }
.browser-record img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.archive-image-link::after { content: ""; position: absolute; inset: auto 0 0; height: 34%; pointer-events: none; background: linear-gradient(transparent, rgba(5,7,8,.88)); }
.archive-image-link > span { position: absolute; z-index: 2; right: 18px; bottom: 16px; padding: .55rem .75rem; color: white; background: rgba(7,8,10,.82); font: 800 10px/1.2 var(--font-mono); text-decoration: none; }
.browser-record figcaption { color: #4c5257; text-transform: none; }
.safety-sheet { position: relative; padding: clamp(26px, 3.5vw, 46px); background: white; border-top: 8px solid var(--teal); box-shadow: 0 18px 55px rgba(0,0,0,.1); }
.document-code { color: #7b8185; font: 700 10px/1.5 var(--font-mono); letter-spacing: .11em; }
.safety-sheet h3 { margin: 1rem 0; color: var(--teal-dark); font-size: clamp(1.9rem, 3.5vw, 3.5rem); letter-spacing: -.04em; }
.campaign-timeline { margin: 1.4rem 0 0; padding: 0; list-style: none; border-top: 1px solid #d5dcda; }
.campaign-timeline li { padding: .8rem 0; display: grid; grid-template-columns: 58px 1fr; gap: 14px; border-bottom: 1px solid #d5dcda; }
.campaign-timeline time { color: var(--teal-dark); font: 900 11px/1.5 var(--font-mono); }
.campaign-timeline span { font-size: .84rem; line-height: 1.55; }
.signal-break { position: relative; height: 60px; display: grid; place-items: center; background: #07090b; color: #f4f1e9; overflow: hidden; }
.signal-break::before { content: ""; position: absolute; inset: 0; opacity: .35; background-image: repeating-linear-gradient(0deg, transparent 0 2px, #fff 3px); }
.signal-break span { position: relative; z-index: 2; padding: .4rem .9rem; background: var(--red); font: 800 11px/1 var(--font-mono); letter-spacing: .15em; }
.promo-evidence { padding-block: 54px; display: grid; grid-template-columns: 1fr; gap: 24px; }
.promo-evidence figure { padding: 10px; background: #121418; box-shadow: 0 18px 40px rgba(0,0,0,.18); }
.promo-evidence .tv-frame { width: min(100%, 720px); margin-inline: auto; }
.promo-evidence figcaption { color: #b5b8bd; }
.tv-frame { position: relative; }
.tv-frame::after { content: ""; position: absolute; inset: 10px 10px 34px; pointer-events: none; background: repeating-linear-gradient(0deg, transparent 0 3px, rgba(0,0,0,.15) 4px); }
.identity-reveal { position: relative; min-height: 390px; padding: 48px 24px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; background: radial-gradient(circle at 50% 25%, #20242c, #050607 64%); color: #f4f2ed; overflow: hidden; }
.identity-reveal::before { content: ""; position: absolute; inset: 0; opacity: .16; background: linear-gradient(110deg, transparent 44%, var(--red) 45% 46%, transparent 47%), repeating-linear-gradient(0deg, transparent 0 4px, #fff 5px); }
.identity-reveal > * { position: relative; z-index: 1; }
.identity-reveal > p, .identity-reveal > span { font: 700 10px/1.5 var(--font-mono); letter-spacing: .16em; color: #aeb2b9; }
.identity-reveal img { width: min(82vw, 690px); margin: 1.15rem 0; mix-blend-mode: screen; }
.identity-reveal h3 { margin: 0 0 1.2rem; font-size: clamp(1.65rem, 3.5vw, 3.5rem); line-height: 1.25; }

.beard-section { background: var(--paper); color: #121318; }
.beard-intro { text-align: center; }
.beard-intro h2 { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 5vw, 74px); font-size: clamp(5rem, 15vw, 13rem); }
.beard-intro h2 i { color: var(--red); font-family: var(--font-body); font-size: .35em; font-style: normal; }
.beard-intro > p:last-child { font-size: 1.18rem; font-weight: 800; }
.beard-comparison { display: grid; grid-template-columns: 1fr 100px 1fr; gap: 30px; align-items: center; margin-top: 56px; }
.beard-card { background: #f7f4ee; box-shadow: 0 24px 58px rgba(0,0,0,.15); }
.beard-card figure { aspect-ratio: 1.25; overflow: hidden; background: #222; }
.beard-card picture { display: block; width: 100%; height: 100%; }
.beard-card img { width: 100%; height: 100%; object-fit: cover; }
.beard-2013 img { object-position: center 28%; }
.beard-2017 img { object-position: 48% 22%; }
.beard-card > div { padding: clamp(24px, 4vw, 46px); }
.beard-card time { color: var(--red); font: 900 clamp(4rem, 8vw, 8rem)/.8 var(--font-display); }
.beard-card h3 { margin: 1rem 0 .7rem; font-size: 1rem; letter-spacing: .1em; }
.beard-arrow { color: var(--red); text-align: center; font: 900 3rem/1 var(--font-display); }
.beard-arrow span { display: block; margin-bottom: .8rem; color: #5d6168; font: 800 9px/1 var(--font-mono); letter-spacing: .15em; }
.beard-section > .interpretation { margin-top: 48px; background: rgba(179,19,25,.06); }

.themes-section { background: #0d0f13; }
.theme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 48px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); }
.theme-grid article { min-height: 260px; padding: clamp(24px, 3.3vw, 46px); background: #16191f; }
.theme-grid span { color: var(--red-bright); font: 900 3.2rem/1 var(--font-display); }
.theme-grid h3 { margin: 1.4rem 0 .7rem; font-size: 1.25rem; }
.theme-grid p { margin: 0; color: #b4b8c0; font-size: .9rem; }

.featured-section { padding-bottom: 0; background: #f3f0e9; color: #121317; }
.feature-major { padding-block: clamp(70px, 9vw, 130px); }
.walk-feature { margin-top: 60px; background: linear-gradient(135deg, #d7f0eb, #5ca9a2); color: #053c3a; }
.feature-major-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 7vw, 100px); align-items: center; }
.track-number { color: #067c77; font: 800 11px/1.4 var(--font-mono); letter-spacing: .13em; }
.feature-major h3 { margin: 0 0 1rem; font: 900 clamp(4rem, 10vw, 9rem)/.84 var(--font-display); letter-spacing: .01em; }
.feature-tagline { font-size: clamp(1.25rem, 3vw, 2.3rem); font-weight: 900; }
.walk-feature figure { max-width: 580px; justify-self: end; padding: 14px 14px 46px; background: #f7f7f4; transform: rotate(2deg); box-shadow: 0 30px 65px rgba(0,0,0,.2); }
.castle-feature { position: relative; background: linear-gradient(120deg, #101217, #2a1216); color: #f5f1ea; }
.castle-feature::before { content: ""; position: absolute; inset: 0; opacity: .12; background: repeating-linear-gradient(90deg, transparent 0 59px, #fff 60px); }
.castle-story { position: relative; display: grid; grid-template-columns: 1fr 150px 1fr; gap: 34px; align-items: center; }
.castle-column > span, .arose-column > span { color: var(--red-bright); font: 900 clamp(4rem, 10vw, 9rem)/1 var(--font-display); }
.castle-story h3 { margin: 0; font: 900 clamp(3.8rem, 8vw, 7.5rem)/.9 var(--font-display); }
.castle-story a { color: #fff; font-weight: 900; }
.track-actions { margin-top: 1.3rem; display: flex; flex-wrap: wrap; align-items: center; gap: 13px; }
.castle-story .official-track-link { padding: .82rem 0; }
.castle-story .translation-link { min-width: min(100%, 300px); padding: .9rem 1rem; display: inline-flex; flex-direction: column; gap: .3rem; border: 1px solid rgba(255,255,255,.34); background: rgba(188,20,28,.26); text-decoration: none; transition: border-color .2s ease, background-color .2s ease, transform .2s ease; }
.castle-story .translation-link:hover { border-color: #fff; background: #a7131a; transform: translateY(-2px); }
.translation-link span { color: #f2a3a7; font: 800 8px/1.2 var(--font-mono); letter-spacing: .12em; }
.translation-link strong { font-size: .92rem; line-height: 1.35; }
.story-bridge { display: grid; justify-items: center; color: #b7bbc3; font: 700 9px/1 var(--font-mono); letter-spacing: .13em; }
.story-bridge i { width: 4px; height: 160px; margin: 1rem 0; background: linear-gradient(var(--red), #ddd, var(--red)); box-shadow: 0 0 18px rgba(219,39,48,.7); }
.feature-grid { padding-block: 90px 120px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-grid article { min-height: 340px; padding: clamp(24px, 3vw, 42px); display: flex; flex-direction: column; background: white; border-top: 7px solid var(--red); box-shadow: 0 14px 36px rgba(0,0,0,.08); }
.feature-grid article > p:first-child { margin: 0; color: #777d84; font: 800 10px/1 var(--font-mono); letter-spacing: .1em; }
.feature-grid h3 { margin: 1rem 0 .2rem; font: 900 clamp(2.1rem, 4vw, 3.8rem)/.95 var(--font-display); }
.feature-grid h3, .tracklist b { overflow-wrap: normal; word-break: keep-all; white-space: nowrap; }
.feature-grid h3 { font-size: clamp(1.8rem, 3.7vw, 3.6rem); }
.feature-grid article > span { color: var(--red); font-size: .82rem; font-weight: 900; }
.feature-grid article > p:not(:first-child) { font-size: .88rem; }
.feature-grid a { margin-top: auto; color: #811015; font-weight: 900; }
.feature-grid .framed-card { background: #181a20; color: white; }
.feature-grid .framed-card a { color: #ff7279; }

.tracklist-section { background: #0b0c0f; }
.tracklist-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(44px, 7vw, 100px); align-items: start; }
.tracklist { margin: 3rem 0 0; padding: 0; list-style: none; border-top: 2px solid #fff; }
.tracklist li { min-width: 0; display: grid; grid-template-columns: 56px 1fr; border-bottom: 1px solid rgba(255,255,255,.17); }
.tracklist li > span { padding: 1rem .7rem; color: var(--red-bright); font: 900 1.25rem/1 var(--font-display); border-right: 1px solid rgba(255,255,255,.17); }
.tracklist a { min-width: 0; padding: .8rem 1rem; display: flex; align-items: baseline; justify-content: space-between; gap: 14px; text-decoration: none; }
.tracklist a:hover { background: rgba(179,19,25,.18); }
.tracklist b { font-size: 1rem; line-height: 1.4; }
.tracklist small { color: #9ba0a8; text-align: right; line-height: 1.35; }
.track-note { color: #aeb2b9; font-size: .84rem; }
.back-cover { position: sticky; top: calc(var(--header-h) + 26px); padding: 12px; border: 1px solid rgba(255,255,255,.18); background: #17191e; }
.back-cover img { width: 100%; }

.contributors-section { background: var(--paper); color: #141519; }
.contributors-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(44px, 7vw, 100px); align-items: center; }
.contributors-grid > figure { padding: 12px; background: #f9f6ef; box-shadow: 0 22px 54px rgba(0,0,0,.15); }
.credit-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin: 2rem 0; }
.credit-columns h3 { color: var(--red); font: 800 11px/1.4 var(--font-mono); letter-spacing: .1em; }
.credit-columns ul { margin: 0; padding-left: 1.1rem; columns: 1; }

.reception-section { background: linear-gradient(135deg, #17191e, #272b34); }
.score-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 54px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.18); }
.score-card { min-height: 320px; padding: 30px; background: #111318; }
.score-card > span { color: #989da6; font: 800 10px/1.4 var(--font-mono); letter-spacing: .11em; }
.score-card strong { display: block; margin: 1.1rem 0 0; color: #fff; font: 900 clamp(4rem, 8vw, 7.5rem)/.8 var(--font-display); }
.score-card small { display: block; margin-top: .8rem; color: var(--red-bright); font-weight: 800; }
.score-card p { margin-top: 1.5rem; color: #b7bbc2; font-size: .86rem; }
.meta-score { background: var(--red); }
.meta-score small, .meta-score p, .meta-score > span { color: white; }
.critical-balance { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 24px; }
.critical-balance article { padding: clamp(24px, 4vw, 46px); border: 1px solid rgba(255,255,255,.18); }
.critical-balance h3 { margin-top: 0; font-size: 1.4rem; }
.critical-balance li { margin-block: .5rem; color: #c3c6cc; }

.division-section { background: #f5f2eb; color: #17181c; }
.division-section blockquote { margin: 2rem 0 0; padding: 1.5rem 1.5rem 1.5rem 2rem; border-left: 8px solid var(--red); background: #e7e1d6; font-size: 1.12rem; font-weight: 800; }
.positive-reading { margin-top: 2rem; padding: 1.35rem 1.5rem; border: 1px solid #c6bfb2; border-left: 6px solid var(--red); background: #fff; }
.positive-reading h3 { margin: 0 0 .65rem; font-size: 1.05rem; }
.positive-reading p { margin: 0; font-size: .9rem; line-height: 1.7; }
.kamikaze-section { background: #101216; }
.kamikaze-grid { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(44px, 8vw, 120px); align-items: center; }
.redacted-document { position: relative; min-height: 520px; padding: clamp(28px, 5vw, 64px); display: flex; flex-direction: column; justify-content: center; background: #e7e1d4; color: #101114; box-shadow: 0 28px 70px rgba(0,0,0,.3); transform: rotate(-1deg); overflow: hidden; }
.redacted-document::before { content: "CONFIDENTIAL"; position: absolute; inset: 40% auto auto 6%; color: rgba(179,19,25,.15); font: 900 clamp(4rem, 8vw, 8rem)/1 var(--font-display); transform: rotate(-22deg); }
.redacted-document p { font: 800 10px/1.4 var(--font-mono); letter-spacing: .1em; }
.redacted-document h3 { margin: 1rem 0 2rem; font: 900 clamp(2.25rem, 4.9vw, 5rem)/.92 var(--font-display); letter-spacing: -.01em; }
.redacted-document span { position: relative; z-index: 1; display: block; margin: .45rem 0; padding: .55rem; font: 700 11px/1.5 var(--font-mono); }
.redacted-document .redact { width: fit-content; max-width: 100%; padding: .55rem .75rem; color: #f4f1ea; background: #1a1b1f; box-shadow: inset 4px 0 0 var(--red); overflow-wrap: normal; word-break: normal; }
.redacted-document .short { width: fit-content; }
.redacted-document .visible { margin-top: 1.4rem; color: #8a1116; border: 2px solid #8a1116; }
.redacted-document b { align-self: flex-end; margin-top: 2rem; padding: .5rem; color: var(--red); border: 4px solid var(--red); font: 900 1.3rem/1 var(--font-mono); transform: rotate(-5deg); }

.japan-section { background: var(--navy); }
.japan-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(44px, 8vw, 120px); align-items: start; }
.japan-grid dl { margin: 0; border-top: 2px solid white; }
.japan-grid dl div { padding: 1rem 0; display: grid; grid-template-columns: 1fr auto; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.24); }
.japan-grid dt { color: #a8b6c7; }
.japan-grid dd { margin: 0; font-weight: 900; }
.summary-section { background: #e5dfd3; color: #141519; }
.summary-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: clamp(44px, 8vw, 120px); align-items: center; }
.summary-grid figure { padding: 12px; background: #f8f5ee; box-shadow: 0 24px 55px rgba(0,0,0,.16); }
.summary-grid p:not(.section-label) { max-width: 760px; }

.listen-section { background: #0d0f12; }
.listen-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 44px; }
.listen-grid a { min-height: 130px; padding: 1.4rem; display: flex; flex-direction: column; justify-content: space-between; border: 1px solid rgba(255,255,255,.22); text-decoration: none; background: #17191e; }
.listen-grid a:hover { background: var(--red); border-color: var(--red); }
.listen-grid b { font-size: 1.25rem; }
.listen-grid span { color: #aeb2ba; font-size: .8rem; }
.listen-grid a:hover span { color: white; }
.commerce-note, .source-note { color: #9da1a9; font-size: .78rem; }

.faq-section { background: #f4f1ea; color: #15161a; }
.faq-list { max-width: 980px; margin: 48px auto 0; border-top: 2px solid #15161a; }
.faq-list details { border-bottom: 1px solid #a9aaad; }
.faq-list summary { position: relative; padding: 1.35rem 3rem 1.35rem 0; cursor: pointer; font-size: 1.05rem; font-weight: 900; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: .3rem; top: 50%; color: var(--red); font: 900 2rem/1 var(--font-display); transform: translateY(-50%); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { margin: 0; padding: 0 3rem 1.5rem 0; }
.faq-source-note { display: block; margin-top: .75rem; color: #686b70; font-size: .78rem; line-height: 1.55; }

.resources-section { background: #17191e; }
.resource-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 8vw, 120px); }
.resource-links, .reference-list { margin: 2rem 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.22); }
.resource-links a { padding: 1rem 0; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-bottom: 1px solid rgba(255,255,255,.22); text-decoration: none; }
.resource-links a:hover b { color: #ff6670; }
.resource-links span { color: #9ba0a8; font-size: .78rem; }
.reference-list li { border-bottom: 1px solid rgba(255,255,255,.18); }
.reference-list a { padding: .75rem 0; display: block; color: #c8cbd1; font-size: .84rem; }
.reference-list .reference-category { padding: 1.15rem 0 .55rem; color: #ff737b; border-bottom-color: rgba(219,39,48,.45); font: 800 10px/1.4 var(--font-mono); letter-spacing: .14em; }

.album-navigation { display: grid; grid-template-columns: repeat(4, 1fr); background: #07080a; border-block: 1px solid rgba(255,255,255,.18); }
.album-navigation > * { min-height: 230px; padding: clamp(24px, 4vw, 52px); display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid rgba(255,255,255,.18); text-decoration: none; }
.album-navigation > *:last-child { border-right: 0; }
.album-navigation a:hover { background: #1b1e24; }
.album-navigation small { color: #8f949c; font: 700 9px/1.4 var(--font-mono); letter-spacing: .12em; }
.album-navigation b { font: 900 clamp(1.45rem, 2.45vw, 2.8rem)/.94 var(--font-display); overflow-wrap: normal; word-break: normal; }
.album-navigation span { color: #c2c5ca; font-size: .8rem; }
.album-navigation img { width: min(240px, 85%); mix-blend-mode: screen; }
.album-navigation div { background: #460b0f; }

.share-section { padding: 58px 0; background: var(--paper); color: #141519; }
.share-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.share-section h2 { margin: 0; font-family: var(--font-body); font-size: clamp(1.7rem, 3vw, 2.8rem); text-transform: none; }
.share-actions { position: relative; display: flex; flex-wrap: wrap; gap: 10px; }
.copy-button { border-color: #1a1b1e; background: white; color: #17181a; }
.x-share { background: #15161a; color: white; }
.copy-status { position: absolute; top: calc(100% + 4px); right: 0; margin: 0; font-size: .75rem; }

.site-footer { padding: 56px clamp(20px, 5vw, 80px); display: grid; grid-template-columns: 1fr auto; gap: 18px 40px; align-items: end; background: #050607; color: #8d929b; font-size: .72rem; }
.footer-brand { display: flex; align-items: center; gap: 16px; color: white; font-weight: 900; }
.footer-brand img { width: 48px; height: 38px; object-fit: contain; }
.footer-brand small { display: block; color: #80858f; font: 700 9px/1.4 var(--font-mono); }
.site-footer p { margin: 0; }
.site-footer p:last-child { grid-column: 1 / -1; }

.motion-ready .reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.motion-ready .reveal.is-visible { opacity: 1; transform: none; }

@media (min-width: 901px) and (prefers-reduced-motion: no-preference) {
  .js.has-re-timeline .time-scroll { height: 360vh; }
  .js.has-re-timeline .time-stage { position: sticky; top: var(--header-h); height: calc(100svh - var(--header-h)); min-height: 620px; }
  .js.has-re-timeline .time-scroll[data-active-era="2009"] .time-stage { background: radial-gradient(circle at 17% 23%, rgba(116,19,26,.9), transparent 36%), linear-gradient(145deg, #070708, #180a0d 70%, #ece9df 190%); }
  .js.has-re-timeline .time-scroll[data-active-era="2010"] .time-stage { background: radial-gradient(circle at 78% 18%, rgba(235,142,39,.35), transparent 30%), linear-gradient(145deg, #0d1f31, #315f86 58%, #b65f18 135%); }
  .js.has-re-timeline .time-scroll[data-active-era="2017"] .time-stage { background: radial-gradient(circle at 16% 20%, rgba(160,30,36,.38), transparent 34%), linear-gradient(135deg, #12151b, #25374d 54%, #630f15 128%); }
  .js.has-re-timeline .time-panels { display: block; height: 100%; min-height: 0; }
  .js.has-re-timeline .time-panel { position: absolute; inset: 0; min-height: 0; height: 100%; padding: clamp(18px, 2.5vw, 42px); grid-template-columns: minmax(250px, .78fr) minmax(320px, 1.22fr); background: transparent; border-top: 0; opacity: 0; visibility: hidden; pointer-events: none; transform: translate3d(3vw, 0, 0) scale(.99); transition: opacity .38s ease, transform .46s cubic-bezier(.2,.7,.2,1), visibility 0s linear .46s; }
  .js.has-re-timeline .time-panel.is-active { opacity: 1; visibility: visible; pointer-events: auto; transform: none; transition-delay: 0s; }
  .js.has-re-timeline .era-panel figure { width: min(42vh, 440px); max-width: 100%; margin-inline: auto; }
  .js.has-re-timeline .era-panel figure img { max-height: min(50vh, 500px); }
  .js.has-re-timeline .era-copy h3 { font-size: clamp(4rem, 7.2vw, 8rem); }
}

@media (min-width: 901px) and (max-height: 760px) and (prefers-reduced-motion: no-preference) {
  .js.has-re-timeline .time-stage { padding-top: 16px; gap: 9px; }
  .js.has-re-timeline .time-stage-topline { font-size: 9px; }
  .js.has-re-timeline .time-panel { padding-block: 8px; }
  .js.has-re-timeline .era-panel figure { width: min(43vh, 355px); }
  .js.has-re-timeline .era-panel figure img { max-height: 43vh; }
  .js.has-re-timeline .era-copy h3 { font-size: clamp(3.5rem, 6.2vw, 6.4rem); }
  .js.has-re-timeline .era-copy > p:not(.era-status) { margin-block: .55rem; font-size: .9rem; line-height: 1.58; }
  .js.has-re-timeline .era-copy ul { margin-block: .75rem; }
  .js.has-re-timeline .time-progress button { min-height: 42px; }
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 50% 50%; }
  .hero-copy { padding-inline: 34px; }
  .index-layout { grid-template-columns: 1fr; }
  .index-list { grid-template-columns: repeat(3, 1fr); }
  .score-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .listen-grid, .album-navigation { grid-template-columns: repeat(2, 1fr); }
  .album-navigation > *:nth-child(2n) { border-right: 0; }
  .album-navigation > *:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.18); }
}

@media (max-width: 900px) {
  :root { --header-h: 62px; }
  body { font-size: 16px; }
  .menu-toggle { display: block; }
  .global-nav { position: absolute; inset: var(--header-h) 0 auto; padding: 10px 20px 22px; display: none; flex-direction: column; align-items: stretch; gap: 0; background: #08090b; border-bottom: 1px solid var(--line); }
  .global-nav.is-open { display: flex; }
  .global-nav a { padding: 16px 4px; border-bottom: 1px solid var(--line); }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] i:nth-of-type(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { min-height: 72svh; padding: 60px 24px 62px; }
  .hero::before { inset: var(--header-h) 0 45% 0; }
  .hero-visual { min-height: min(84vw, 720px); }
  .hero-visual img { object-position: center 36%; }
  .hero-visual figcaption { bottom: 32px; }
  .overview-grid, .making-grid, .pharma-grid, .pharma-archive, .feature-major-grid, .tracklist-layout, .contributors-grid, .kamikaze-grid, .japan-grid, .summary-grid, .resource-grid { grid-template-columns: 1fr; }
  .album-cover-card { justify-self: center; }
  .making-image { order: -1; }
  .production-route { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .production-route li:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255,255,255,.15); }
  .production-route li:nth-child(4) { border-top: 1px solid rgba(255,255,255,.15); }
  .making-conclusion { grid-template-columns: 1fr; }
  .making-conclusion .text-link { white-space: normal; }
  .timeline-intro h2 { font-size: clamp(2.7rem, 10.5vw, 5.6rem); }
  .time-scroll, .js.has-re-timeline .time-scroll { height: auto; }
  .time-stage, .js.has-re-timeline .time-stage { position: relative; top: auto; height: auto; min-height: 0; padding: 22px 18px 28px; gap: 20px; }
  .time-panels, .js.has-re-timeline .time-panels { display: grid; height: auto; min-height: 0; gap: 54px; }
  .time-panel, .js.has-re-timeline .time-panel { position: relative; inset: auto; min-height: 560px; opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .time-panel + .time-panel::before { content: "↓"; position: absolute; top: -44px; left: 50%; color: #e04a52; font: 900 25px/1 var(--font-mono); transform: translateX(-50%); }
  .time-progress { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .time-progress button { width: 100%; min-width: 0; }
  .time-meter { display: none; }
  .pharma-grid { padding-bottom: 52px; }
  .safety-sheet, .back-cover { position: static; }
  .pharma-archive { padding-block: 52px; }
  .browser-record { max-width: 660px; justify-self: center; }
  .beard-comparison { grid-template-columns: 1fr; }
  .beard-arrow { transform: rotate(90deg); }
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
  .castle-story { grid-template-columns: 1fr; }
  .story-bridge { transform: rotate(90deg); margin-block: -22px; }
  .story-bridge i { height: 110px; }
  .feature-major-grid figure { justify-self: center; }
  .tracklist-copy { order: 2; }
  .back-cover { max-width: 720px; justify-self: center; }
  .album-navigation > * { min-height: 180px; }
}

@media (max-width: 720px) {
  .section-inner { width: min(calc(100% - 30px), var(--max)); }
  .section { padding-block: 72px; }
  .production-route, .production-blueprint { grid-template-columns: 1fr; }
  .production-route li { border-left: 0; border-top: 1px solid rgba(255,255,255,.15); }
  .production-route li:first-child { border-top: 0; }
  .production-blueprint article:nth-child(odd), .production-blueprint article:nth-child(even) { background: #0f1217; }
  .track-actions { align-items: stretch; flex-direction: column; }
  .castle-story .official-track-link, .castle-story .translation-link { width: 100%; }
  h2 { font-size: clamp(2.7rem, 14vw, 5.2rem); }
  .fact-grid { grid-template-columns: 1fr 1fr; }
  .fact-grid div, .fact-grid div:nth-child(3n) { border-right: 1px solid rgba(0,0,0,.22); border-bottom: 1px solid rgba(0,0,0,.22); }
  .fact-grid div:nth-child(2n) { border-right: 0; }
  .index-list { grid-template-columns: 1fr 1fr; }
  .split-heading { grid-template-columns: 1fr; gap: 26px; }
  .timeline-intro h2 { gap: 4px; font-size: clamp(2.4rem, 12vw, 5.4rem); }
  .time-stage { padding-inline: 15px; }
  .time-panel, .js.has-re-timeline .time-panel { min-height: 0; grid-template-columns: 1fr; padding: 30px 20px 44px; gap: 26px; }
  .era-panel figure { max-width: min(100%, 430px); margin-inline: auto; }
  .era-copy h3 { font-size: clamp(4rem, 19vw, 7rem); }
  .era-year { bottom: -1rem; font-size: 32vw; }
  .timeline-comparison { padding-bottom: 72px; }
  .timeline-comparison div { grid-template-columns: 1fr; gap: 6px; }
  .timeline-comparison i { transform: rotate(90deg); justify-self: start; margin-left: .5rem; }
  .timeline-comparison b { margin-bottom: .5rem; }
  .pharma-header { padding-block: 12px; align-items: flex-start; }
  .pharma-header > p { margin: 0; display: grid; gap: 2px; text-align: right; font-size: .66rem; }
  .pharma-intro { padding-top: 72px; }
  .pharma-intro h2 { font-size: clamp(2.9rem, 14vw, 5.3rem); }
  .promo-evidence { padding-block: 44px; }
  .identity-reveal { min-height: 390px; padding-block: 48px; }
  .beard-intro h2 { gap: 12px; font-size: clamp(4.2rem, 21vw, 8rem); }
  .theme-grid, .feature-grid, .listen-grid { grid-template-columns: 1fr; }
  .feature-grid article { min-height: 300px; }
  .feature-major h3 { font-size: clamp(3.6rem, 18vw, 7rem); }
  .score-grid, .critical-balance { grid-template-columns: 1fr; }
  .score-card { min-height: 260px; }
  .credit-columns { grid-template-columns: 1fr 1fr; gap: 18px; }
  .share-inner { align-items: flex-start; flex-direction: column; }
  .share-actions { width: 100%; }
  .share-actions .button { flex: 1; }
  .album-navigation { grid-template-columns: 1fr; }
  .album-navigation > * { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .album-navigation > *:last-child { border-bottom: 0; }
  .site-footer { grid-template-columns: 1fr; }
  .site-footer p:last-child { grid-column: auto; }
}

@media (max-width: 520px) {
  .brand span { display: none; }
  .hero-copy { min-height: 680px; padding-top: 48px; }
  .hero-logo { width: 100%; }
  .hero h1 { font-size: clamp(2.4rem, 14vw, 4.4rem); }
  .hero-lead { font-size: clamp(1.75rem, 9.5vw, 2.7rem); }
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 112vw; }
  .hero-visual img { object-position: 48% center; }
  .fact-grid, .index-list { grid-template-columns: 1fr; }
  .fact-grid div, .fact-grid div:nth-child(2n), .fact-grid div:nth-child(3n) { border-right: 0; }
  .timeline-intro h2 { font-size: clamp(2.6rem, 15vw, 4.8rem); }
  .time-stage-topline { align-items: flex-start; flex-direction: column; gap: 4px; }
  .time-progress button { padding-inline: .4rem; }
  .time-progress button strong { font-size: .7rem; }
  .pharma-header { min-height: 68px; }
  .pharma-brand span { font-size: .82rem; }
  .pharma-brand img { width: 34px; height: 28px; }
  .pharma-results dl div { grid-template-columns: 1fr; gap: .25rem; }
  .browser-record a { height: 500px; }
  .safety-sheet { padding: 24px 18px; }
  .safety-sheet dl div { grid-template-columns: 1fr; gap: .25rem; }
  .beard-card figure { aspect-ratio: 1; }
  .credit-columns { grid-template-columns: 1fr; }
  .tracklist li { grid-template-columns: 44px 1fr; }
  .tracklist li > span { padding-inline: .45rem; }
  .tracklist a { align-items: flex-start; flex-direction: column; gap: 2px; }
  .tracklist small { text-align: left; }
  .redacted-document { min-height: 430px; padding-inline: 22px; }
  .redacted-document h3 { font-size: clamp(1.65rem, 8vw, 2.4rem); }
  .resource-links a { align-items: flex-start; flex-direction: column; gap: 2px; }
  .album-navigation b { font-size: 2.2rem; }
  .share-actions { display: grid; grid-template-columns: 1fr; }
  .copy-status { position: static; grid-column: 1 / -1; }
}

@media (max-width: 390px) {
  .section-inner { width: calc(100% - 24px); }
  .hero-copy { padding-inline: 18px; }
  .hero-summary { font-size: .92rem; }
  .timeline-intro h2 { font-size: 12vw; }
  .timeline-intro h2 i { font-size: .28em; }
  .time-progress button { overflow: hidden; }
  .beard-intro h2 { font-size: 19vw; }
  .pharma-intro h2 { letter-spacing: -.08em; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-ticker span { transform: none !important; }
  .motion-ready .reveal { opacity: 1; transform: none; }
  .js.has-re-timeline .time-scroll { height: auto; }
  .js.has-re-timeline .time-stage { position: relative; top: auto; height: auto; min-height: 0; }
  .js.has-re-timeline .time-panels { display: grid; height: auto; min-height: 0; gap: 30px; }
  .js.has-re-timeline .time-panel { position: relative; inset: auto; min-height: 620px; opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
}

@media print {
  .site-header, .hero-actions, .ad-section, .share-section, .album-navigation, .menu-toggle { display: none !important; }
  body { background: white; color: black; }
  .hero { min-height: 0; display: block; background: white; color: black; }
  .hero-copy { min-height: 0; background: white; color: black; }
  .hero-visual { display: none; }
  .section { padding-block: 34px; break-inside: avoid; }
  .time-scroll, .js.has-re-timeline .time-scroll { height: auto !important; }
  .time-stage, .js.has-re-timeline .time-stage { position: relative !important; top: auto !important; height: auto !important; }
  .time-panel, .js.has-re-timeline .time-panel { position: relative !important; opacity: 1 !important; visibility: visible !important; transform: none !important; }
}
