/*
 * MMLP2 redesign layer
 * Direction: recovered evidence, photocopies, tape, red annotations.
 * The original stylesheet remains intact so shared navigation, advertising,
 * SEO-related layout hooks and utility behavior are preserved.
 */

:root {
  --ink: #0b0b0a;
  --coal: #181817;
  --deep: #060606;
  --paper: #d8d8d2;
  --paper-light: #f0f0eb;
  --paper-dark: #b9b9b2;
  --rust: #b31719;
  --orange: #b31719;
  --blue: #6c7375;
  --wood: #232322;
  --muted: #5c5c58;
  --line: rgba(0, 0, 0, .28);
  --shadow: 0 24px 65px rgba(0, 0, 0, .42);
  --sans: Impact, Haettenschweiler, "Arial Narrow Bold", "Arial Narrow", "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --body-sans: "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --mono: "Courier New", "Yu Gothic", monospace;
  --max: 1220px;
  --red: #d0181b;
  --copy: #ecece6;
}

html {
  background: var(--deep);
  color-scheme: dark;
  scroll-padding-top: 18px;
}

body {
  overflow-x: clip;
  background:
    radial-gradient(circle at 17% 11%, rgba(255, 255, 255, .035), transparent 21rem),
    #070707;
  color: #10100f;
  font-family: var(--body-sans);
}

.section-inner {
  width: min(calc(100% - 48px), var(--max));
}

.section-heading h2,
.section-copy h2,
.story-copy h2,
.making-copy h2,
.connection-copy h2,
.writing-copy h2,
.summary-box h2,
.faq-section h2,
.resource-layout h2 {
  max-width: 1000px;
  margin-block: .22em .38em;
  font-family: var(--sans);
  font-size: clamp(2.45rem, 5.8vw, 6.4rem);
  font-weight: 900;
  line-height: .9;
  letter-spacing: -.045em;
  text-transform: uppercase;
}

.section-heading > p:last-child,
.section-lead {
  max-width: 760px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.78;
}

.section-code {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  margin: 0;
  padding: .18rem .62rem;
  transform: rotate(-1.2deg);
  border: 2px solid currentColor;
  background: transparent;
  font-family: var(--mono);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.section-code::before {
  content: "✕";
  margin-right: .5rem;
  color: var(--red);
  font-family: Arial, sans-serif;
}

.paper-section {
  background:
    linear-gradient(90deg, transparent 0 11%, rgba(0, 0, 0, .055) 11.1%, transparent 11.2% 100%),
    repeating-linear-gradient(0deg, rgba(0, 0, 0, .018) 0 1px, transparent 1px 5px),
    var(--copy);
}

.paper-section::before {
  inset: 0;
  background:
    radial-gradient(circle at 8% 14%, rgba(0, 0, 0, .08) 0 1px, transparent 2px),
    radial-gradient(circle at 88% 66%, rgba(0, 0, 0, .09) 0 1px, transparent 2px);
  background-size: 29px 31px, 41px 37px;
  opacity: .25;
}

.dark-section {
  background:
    linear-gradient(103deg, transparent 0 6%, rgba(255, 255, 255, .025) 6.1% 6.25%, transparent 6.4%),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, .016) 0 1px, transparent 1px 6px),
    #0a0a0a;
  color: #eeeeea;
}

.dark-section::before {
  background: none;
}

.btn {
  min-height: 50px;
  border: 2px solid currentColor;
  border-radius: 0;
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .28);
  font-family: var(--mono);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.btn:hover {
  transform: translate(-2px, -2px) rotate(-.4deg);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, .3);
}

/* HERO — one full-bleed image, typography over the image */

.hero.hero-redesign {
  position: relative;
  min-height: max(780px, 100svh);
  overflow: clip;
  isolation: isolate;
  background: #050505;
  color: #f4f4ee;
}

.hero-media {
  position: absolute;
  z-index: -4;
  inset: 0;
  margin: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: 55% 45%;
  filter: grayscale(1) contrast(1.18) brightness(.73);
  transform: scale(1.035);
}

.hero-media figcaption {
  position: absolute;
  z-index: 4;
  right: clamp(18px, 3vw, 52px);
  bottom: clamp(22px, 4vh, 52px);
  display: flex;
  padding: .32rem .5rem;
  border: 1px solid rgba(255, 255, 255, .46);
  flex-direction: column;
  background: rgba(0, 0, 0, .7);
  color: #fff;
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: .08em;
}

.hero-backdrop {
  z-index: -3;
  filter: none;
  transform: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .94) 0, rgba(0, 0, 0, .82) 31%, rgba(0, 0, 0, .14) 63%, rgba(0, 0, 0, .38) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .88) 0, transparent 42%),
    linear-gradient(180deg, rgba(0, 0, 0, .74) 0, transparent 22%);
}

.hero::before {
  z-index: -1;
  inset: 0;
  opacity: .38;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(0deg, transparent 0 3px, rgba(255, 255, 255, .02) 3px 4px);
  mix-blend-mode: screen;
}

.hero-flash {
  position: absolute;
  z-index: 20;
  inset: 0;
  pointer-events: none;
  background: #fff;
  opacity: 0;
}

.site-header {
  z-index: 30;
  width: min(calc(100% - 64px), 1380px);
  min-height: 82px;
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.site-brand {
  transform: rotate(-1deg);
}

.site-brand strong {
  font-family: var(--sans);
  font-size: 1.25rem;
  letter-spacing: -.015em;
  text-transform: uppercase;
}

.site-brand span,
.global-nav a {
  font-family: var(--mono);
  letter-spacing: .08em;
}

.hero-inner {
  position: relative;
  z-index: 4;
  display: block;
  width: min(calc(100% - 64px), 1380px);
  min-height: calc(max(780px, 100svh) - 82px);
  padding: clamp(82px, 11vh, 135px) 0 128px;
}

.hero-copy {
  position: relative;
  width: min(79vw, 1060px);
  max-width: none;
}

.hero-case-line {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 2vw, 2rem);
  margin-bottom: 1.1rem;
}

.archive-stamp {
  margin: 0;
  padding: .32rem .7rem;
  transform: rotate(-2.2deg);
  border: 3px solid var(--red);
  background: rgba(8, 8, 8, .72);
  color: #fff;
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.archive-stamp span {
  display: inline;
  color: var(--red);
}

.eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, .76);
  font-family: var(--mono);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .085em;
}

.hero h1 {
  position: relative;
  width: min-content;
  margin: 0;
  color: #f5f5ef;
  font-family: var(--sans);
  font-size: clamp(4.2rem, 9.2vw, 10.2rem);
  font-weight: 900;
  line-height: .76;
  letter-spacing: -.065em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .66);
  text-transform: uppercase;
}

.hero h1 .title-line {
  display: block;
  white-space: nowrap;
}

.hero h1 .title-line-a {
  margin-left: clamp(0px, 3.2vw, 48px);
}

.hero h1 .title-line-b {
  position: relative;
  z-index: 2;
}

.hero h1 .title-two {
  position: absolute;
  z-index: 4;
  top: -.19em;
  right: -.48em;
  display: block;
  transform: rotate(8deg);
  color: var(--red);
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: .96em;
  line-height: 1;
  text-shadow: 3px 3px 0 #050505;
}

.title-tape {
  position: absolute;
  z-index: 5;
  top: 43%;
  left: clamp(170px, 30vw, 465px);
  display: block;
  padding: .58rem 1.2rem;
  transform: rotate(-4deg);
  background: rgba(205, 196, 160, .88);
  box-shadow: 0 2px 18px rgba(0, 0, 0, .26);
  color: #171612;
  font-family: var(--mono);
  font-size: clamp(.58rem, .8vw, .75rem);
  font-weight: 900;
  letter-spacing: .06em;
}

.title-tape::before,
.title-tape::after {
  content: "";
  position: absolute;
  top: 0;
  width: 20px;
  height: 100%;
  background: inherit;
  clip-path: polygon(40% 0, 100% 12%, 77% 31%, 100% 52%, 70% 72%, 100% 100%, 0 100%, 15% 0);
}

.title-tape::before {
  right: 99%;
}

.title-tape::after {
  left: 99%;
  transform: scaleX(-1);
}

.title-year-mark {
  position: absolute;
  top: 6%;
  right: 4%;
  transform: rotate(-10deg);
  border-bottom: 5px solid var(--red);
  color: var(--red);
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: clamp(2rem, 4.3vw, 5rem);
  font-weight: 900;
  line-height: 1;
}

.hero-jp {
  width: fit-content;
  max-width: 650px;
  margin: 2.4rem 0 .7rem 4vw;
  padding: .35rem .55rem;
  transform: rotate(.5deg);
  background: #ecece6;
  color: #111;
  font-family: var(--mono);
  font-size: .78rem;
  font-weight: 900;
}

.lead {
  max-width: 580px;
  margin: 0 0 1.5rem 4vw;
  color: rgba(255, 255, 255, .9);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  font-weight: 700;
  line-height: 1.7;
}

.hero-actions {
  margin-left: 4vw;
}

.hero-actions .primary {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.hero-actions .secondary {
  background: rgba(0, 0, 0, .56);
  color: #fff;
}

.hero-evidence {
  position: absolute;
  z-index: 7;
  right: 1.5%;
  bottom: 23%;
  width: clamp(160px, 16vw, 230px);
  padding: 1.2rem;
  transform: rotate(4deg);
  border: 2px solid #171717;
  background:
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(0, 0, 0, .11) 23px 24px),
    #dadad3;
  box-shadow: 12px 16px 0 rgba(0, 0, 0, .35);
  color: #131313;
  font-family: var(--mono);
}

.hero-evidence::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 34%;
  width: 68px;
  height: 29px;
  transform: rotate(-7deg);
  background: rgba(209, 199, 158, .78);
}

.hero-evidence span,
.hero-evidence small {
  display: block;
  font-size: .59rem;
  font-weight: 900;
  letter-spacing: .05em;
}

.hero-evidence strong {
  display: block;
  margin: .75rem 0;
  color: var(--red);
  font-family: var(--sans);
  font-size: clamp(1.4rem, 2.2vw, 2.2rem);
  line-height: .86;
  text-transform: uppercase;
}

.year-reel {
  z-index: 8;
  right: auto;
  bottom: 26px;
  left: clamp(24px, 4vw, 70px);
  transform: rotate(-1deg);
  border: 2px solid #fff;
  background: rgba(0, 0, 0, .84);
}

.year-reel > span {
  color: var(--red);
}

.year-reel strong {
  color: #fff;
  font-family: var(--sans);
}

.scroll-hint {
  right: auto;
  bottom: 34px;
  left: clamp(235px, 20vw, 330px);
  font-family: var(--mono);
}

.film-grain {
  opacity: .16;
  mix-blend-mode: screen;
}

.vhs-line {
  opacity: .32;
}

.is-booting .hero-media img {
  animation: hero-image-slip .82s steps(2, end) both;
}

.is-booting .hero h1 {
  animation: hero-title-jolt .78s steps(2, end) both;
}

.is-booting .hero-flash {
  animation: hero-flash .7s steps(1, end) both;
}

@keyframes hero-image-slip {
  0% { transform: scale(1.05) translateX(0); filter: grayscale(1) contrast(1.8) brightness(.48); }
  18% { transform: scale(1.05) translateX(14px); }
  30% { transform: scale(1.05) translateX(-9px); filter: grayscale(1) contrast(1.05) brightness(.88); }
  44% { transform: scale(1.05) translateX(4px); }
  100% { transform: scale(1.035) translateX(0); filter: grayscale(1) contrast(1.18) brightness(.73); }
}

@keyframes hero-title-jolt {
  0%, 16% { opacity: 0; transform: translateX(-16px) skewX(-7deg); }
  22% { opacity: 1; transform: translateX(13px) skewX(4deg); }
  28% { transform: translateX(-5px); }
  42% { opacity: .45; transform: translateX(8px); }
  48%, 100% { opacity: 1; transform: none; }
}

@keyframes hero-flash {
  0% { opacity: .55; }
  8% { opacity: 0; }
  19% { opacity: .22; }
  22%, 100% { opacity: 0; }
}

/* Overview and unified time archive */

.overview-section {
  z-index: 2;
  padding: clamp(6rem, 9vw, 10rem) 0 clamp(7rem, 11vw, 12rem);
}

.overview-section::after {
  content: "NOT NOSTALGIA";
  position: absolute;
  right: -1.4rem;
  bottom: 3.2rem;
  transform: rotate(-5deg);
  border: 5px solid var(--red);
  color: var(--red);
  font-family: var(--sans);
  font-size: clamp(1.3rem, 3vw, 3rem);
  font-weight: 900;
  line-height: 1;
  opacity: .82;
}

.overview-layout {
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .78fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
}

.section-copy {
  transform: translateY(2.5rem);
}

.fact-file {
  transform: rotate(1.4deg);
  border: 3px solid #111;
  background:
    linear-gradient(90deg, transparent 0 72%, rgba(180, 0, 0, .08) 72.3%, transparent 72.7%),
    repeating-linear-gradient(0deg, transparent 0 27px, rgba(0, 0, 0, .09) 27px 28px),
    #e7e7e0;
  box-shadow: 16px 20px 0 rgba(0, 0, 0, .18);
}

.fact-file::before {
  content: "VERIFIED";
  right: -18px;
  left: auto;
  width: auto;
  height: auto;
  padding: .35rem .7rem;
  transform: rotate(7deg);
  border: 3px solid var(--red);
  background: transparent;
  color: var(--red);
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 900;
}

.time-archive {
  position: relative;
  isolation: isolate;
  background: #090909;
}

.time-archive::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .025) 0 1px, transparent 1px) 0 0 / 41px 100%;
}

.why-section {
  padding: clamp(7rem, 10vw, 12rem) 0 5rem;
  background: transparent;
}

.why-section .section-heading {
  width: min(880px, 88%);
  margin-left: 4vw;
}

.why-section .section-heading h2 {
  transform: translateX(-4vw);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  margin-top: 4rem;
}

.archive-card {
  position: relative;
  min-height: 250px;
  border: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 24px, rgba(0, 0, 0, .09) 24px 25px),
    #d8d8d2;
  box-shadow: 11px 14px 0 rgba(0, 0, 0, .52);
  color: #111;
}

.archive-card:nth-child(1) {
  grid-column: 1 / span 5;
  transform: rotate(-1.2deg);
}

.archive-card:nth-child(2) {
  grid-column: 7 / span 6;
  transform: translateY(4rem) rotate(1.6deg);
}

.archive-card:nth-child(3) {
  grid-column: 2 / span 6;
  transform: translateY(2rem) rotate(.6deg);
}

.archive-card:nth-child(4) {
  grid-column: 9 / span 4;
  transform: translateY(6rem) rotate(-2deg);
}

.archive-card::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 28%;
  width: 78px;
  height: 28px;
  transform: rotate(-4deg);
  background: rgba(199, 190, 151, .8);
}

.archive-card::after {
  right: 18px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  border: 3px solid var(--red);
  background: transparent;
}

.archive-card h3 {
  font-family: var(--sans);
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: .92;
  text-transform: uppercase;
}

/* 2000 → 2013 scroll experience */

.timeline-section {
  position: relative;
  z-index: 4;
  margin-top: clamp(5rem, 10vw, 11rem);
  padding: 0 0 clamp(6rem, 10vw, 10rem);
  overflow: clip;
  background: #050505;
  color: #efefea;
}

.timeline-intro {
  padding: clamp(6rem, 10vw, 10rem) 0 3rem;
}

.timeline-intro .section-heading {
  width: min(100%, 1120px);
}

.timeline-intro h2 {
  display: flex;
  align-items: baseline;
  gap: clamp(.25rem, 1.2vw, 1.2rem);
  max-width: none;
  font-size: clamp(3.5rem, 9vw, 9rem);
  white-space: nowrap;
}

.timeline-intro h2 i {
  color: var(--red);
  font-family: var(--mono);
  font-size: .45em;
  font-style: normal;
}

.time-scroll {
  position: relative;
}

.time-stage {
  position: relative;
  width: 100%;
  min-height: 760px;
  padding: 3rem clamp(24px, 4vw, 70px) 5rem;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, .16);
  background:
    repeating-linear-gradient(0deg, transparent 0 4px, rgba(255, 255, 255, .017) 4px 5px),
    #080808;
}

.time-stage-topline {
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .5);
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
}

.time-panels {
  position: relative;
  min-height: 620px;
  margin-top: 1.5rem;
}

.time-panel {
  position: relative;
  display: grid;
  min-height: 620px;
  grid-template-columns: minmax(0, 1.38fr) minmax(310px, .74fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 7rem);
}

.time-visual {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  margin: 0;
  transform: rotate(-1deg);
  border: 8px solid #d6d6cf;
  box-shadow: 24px 29px 0 rgba(255, 255, 255, .06), 0 25px 70px rgba(0, 0, 0, .64);
  background: #111;
}

.time-visual::before,
.time-visual::after {
  content: "";
  position: absolute;
  z-index: 4;
  top: -20px;
  width: 98px;
  height: 34px;
  background: rgba(205, 196, 159, .8);
}

.time-visual::before {
  left: 12%;
  transform: rotate(-4deg);
}

.time-visual::after {
  right: 9%;
  transform: rotate(5deg);
}

.time-visual img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: grayscale(.92) contrast(1.12);
}

.time-year {
  position: absolute;
  z-index: 1;
  top: -2%;
  right: 0;
  color: rgba(255, 255, 255, .075);
  font-family: var(--sans);
  font-size: clamp(8rem, 21vw, 22rem);
  font-weight: 900;
  line-height: .8;
  letter-spacing: -.08em;
  pointer-events: none;
}

.time-copy {
  position: relative;
  z-index: 6;
  align-self: end;
  margin-bottom: 4rem;
  padding: clamp(1.3rem, 2.7vw, 2.6rem);
  transform: translateX(-7vw) rotate(.8deg);
  background:
    repeating-linear-gradient(0deg, transparent 0 25px, rgba(0, 0, 0, .1) 25px 26px),
    #e3e3dc;
  box-shadow: 16px 19px 0 rgba(0, 0, 0, .48);
  color: #111;
}

.time-copy::before {
  content: "";
  position: absolute;
  top: -16px;
  left: 42%;
  width: 88px;
  height: 28px;
  transform: rotate(-4deg);
  background: rgba(201, 191, 151, .82);
}

.time-kicker {
  margin: 0 0 .8rem;
  color: var(--red);
  font-family: var(--mono);
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .055em;
}

.time-copy h3 {
  margin: 0 0 1rem;
  font-family: var(--sans);
  font-size: clamp(2.1rem, 4.4vw, 5rem);
  line-height: .88;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.time-copy > p:last-of-type {
  margin-bottom: 1.2rem;
  font-size: .96rem;
  line-height: 1.75;
}

.era-words {
  display: flex;
  gap: .5rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  list-style: none;
}

.era-words li {
  padding: .18rem .5rem;
  transform: rotate(-1deg);
  border: 2px solid var(--red);
  color: var(--red);
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 900;
}

.cassette-reel {
  position: absolute;
  z-index: 3;
  top: 45.8%;
  width: 7.5%;
  aspect-ratio: 1;
  border: 2px dashed rgba(255, 255, 255, .46);
  border-radius: 50%;
  pointer-events: none;
}

.reel-left {
  left: 40.6%;
}

.reel-right {
  left: 56.1%;
}

.timeline-title-complete {
  position: absolute;
  z-index: 8;
  right: 1.5%;
  bottom: -2.6rem;
  display: flex;
  align-items: flex-end;
  gap: .5rem;
  transform: rotate(-2deg);
  color: #fff;
  font-family: var(--sans);
  font-weight: 900;
  line-height: .82;
  text-transform: uppercase;
}

.timeline-title-complete span {
  width: min-content;
  font-size: clamp(1.65rem, 3vw, 3.6rem);
}

.timeline-title-complete strong {
  color: var(--red);
  font-family: "Comic Sans MS", "Segoe Print", cursive;
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: .7;
}

.time-progress {
  position: absolute;
  z-index: 30;
  right: clamp(24px, 4vw, 70px);
  bottom: 1.5rem;
  display: flex;
  gap: .5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.time-progress button {
  display: flex;
  min-width: 78px;
  min-height: 44px;
  padding: .35rem .55rem;
  border: 1px solid rgba(255, 255, 255, .28);
  align-items: baseline;
  justify-content: space-between;
  gap: .45rem;
  background: rgba(0, 0, 0, .68);
  color: rgba(255, 255, 255, .58);
  cursor: pointer;
  font-family: var(--mono);
}

.time-progress button span {
  color: var(--red);
  font-size: .58rem;
}

.time-progress button strong {
  font-size: .74rem;
}

.time-progress button.is-current {
  border-color: var(--red);
  background: var(--red);
  color: #fff;
}

.time-progress button.is-current span {
  color: #fff;
}

.time-meter {
  position: absolute;
  z-index: 30;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, .08);
}

.time-meter span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--red);
  transition: width .18s linear;
}

.js.has-time-scroll .time-scroll {
  height: 330vh;
}

.js.has-time-scroll .time-stage {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
}

.js.has-time-scroll .time-panels {
  height: calc(100svh - 120px);
  min-height: 560px;
}

.js.has-time-scroll .time-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(5vw, 0, 0) scale(.985);
  transition: opacity .4s ease, transform .5s cubic-bezier(.2, .7, .2, 1), visibility .4s;
}

.js.has-time-scroll .time-panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
}

.js.has-time-scroll .time-panel.is-active .time-visual {
  animation: evidence-arrive .62s cubic-bezier(.16, .72, .18, 1) both;
}

.js.has-time-scroll .time-panel.is-active .time-copy {
  animation: note-arrive .55s .08s cubic-bezier(.16, .72, .18, 1) both;
}

.js.has-time-scroll .time-panel[data-era-panel="2000"].is-active .cassette-reel {
  animation: reel-spin 5.5s linear infinite;
}

.js.has-time-scroll .time-panel[data-era-panel="2013"].is-active .timeline-title-complete {
  animation: title-complete .7s .2s cubic-bezier(.16, .72, .18, 1) both;
}

@keyframes evidence-arrive {
  from { opacity: 0; transform: translateX(-7vw) rotate(-4deg) scale(.95); }
  to { opacity: 1; transform: translateX(0) rotate(-1deg) scale(1); }
}

@keyframes note-arrive {
  from { opacity: 0; transform: translateX(2vw) translateY(32px) rotate(4deg); }
  to { opacity: 1; transform: translateX(-7vw) translateY(0) rotate(.8deg); }
}

@keyframes reel-spin {
  to { transform: rotate(1turn); }
}

@keyframes title-complete {
  from { opacity: 0; transform: translateX(2rem) rotate(5deg); clip-path: inset(0 100% 0 0); }
  to { opacity: 1; transform: translateX(0) rotate(-2deg); clip-path: inset(0); }
}

.interpretation {
  position: relative;
  z-index: 3;
  width: min(92%, 930px);
  margin: -1.2rem 0 0 auto;
  padding: 1.5rem 1.7rem;
  transform: rotate(.5deg);
  border: 2px solid #111;
  background: #deded7;
  box-shadow: 12px 15px 0 rgba(0, 0, 0, .38);
  color: #111;
}

/* Remaining sections — uneven dossier rhythm */

.making-section {
  padding: clamp(7rem, 11vw, 12rem) 0;
  background: transparent;
}

.making-layout {
  grid-template-columns: minmax(0, .83fr) minmax(380px, 1.17fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.making-copy {
  transform: translateY(4rem);
}

.making-assets {
  min-height: 780px;
}

.photo-polaroid {
  width: 88%;
  transform: rotate(2.5deg);
  border: 12px solid #d8d8d1;
  background: #d8d8d1;
  box-shadow: 20px 24px 0 rgba(0, 0, 0, .55);
}

.cassette-photo {
  right: auto;
  left: -8%;
  bottom: 0;
  width: 72%;
  transform: rotate(-4deg);
  border: 10px solid #d8d8d1;
  background: #d8d8d1;
  box-shadow: 18px 22px 0 rgba(0, 0, 0, .45);
}

.ad-section {
  border-block: 1px dashed rgba(128, 128, 128, .42);
  background: #111;
}

.featured-section {
  padding: clamp(7rem, 10vw, 11rem) 0;
}

.featured-section .section-heading {
  width: min(950px, 94%);
  margin-left: auto;
}

.featured-section .section-heading h2 {
  transform: translateX(3vw);
}

.track-cards {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 2rem);
  align-items: start;
}

.track-card {
  position: relative;
  min-height: 280px;
  padding: clamp(1.25rem, 2.2vw, 2rem);
  border: 3px solid #111;
  background:
    repeating-linear-gradient(0deg, transparent 0 25px, rgba(0, 0, 0, .08) 25px 26px),
    #e2e2dc;
  box-shadow: 11px 13px 0 rgba(0, 0, 0, .18);
  transform-origin: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.track-card:nth-child(1),
.track-card:nth-child(5) {
  grid-column: span 7;
}

.track-card:nth-child(2),
.track-card:nth-child(6) {
  grid-column: span 5;
  transform: translateY(3rem) rotate(1deg);
}

.track-card:nth-child(3),
.track-card:nth-child(7) {
  grid-column: span 5;
  transform: rotate(-1deg);
}

.track-card:nth-child(4),
.track-card:nth-child(8) {
  grid-column: span 7;
  transform: translateY(2rem) rotate(.7deg);
}

.track-card::before {
  content: "PLAY / REVIEW";
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: -1.1rem;
  padding: .3rem .6rem;
  transform: rotate(-3deg);
  border: 2px solid var(--red);
  background: #e2e2dc;
  color: var(--red);
  font-family: var(--mono);
  font-size: .62rem;
  font-weight: 900;
  opacity: 0;
  transition: opacity .2s ease, transform .2s ease;
}

.track-card:hover,
.track-card:focus-within {
  transform: translate(-4px, -5px) rotate(-1.2deg);
  box-shadow: 17px 20px 0 rgba(0, 0, 0, .22);
}

.track-card:hover::before,
.track-card:focus-within::before {
  opacity: 1;
  transform: rotate(-3deg) translateY(-5px);
}

.track-card::after {
  width: 54px;
  height: 54px;
  border: 4px solid var(--red);
  border-radius: 50%;
  background: transparent;
}

.track-no {
  color: var(--red);
  font-family: var(--sans);
  font-size: 2.2rem;
}

.track-card h3 {
  font-family: var(--sans);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: .85;
  text-transform: uppercase;
}

.story-section,
.headlights-section,
.rapgod-section,
.contributors-section,
.connection-section,
.faq-section {
  position: relative;
  overflow: clip;
}

.story-section {
  padding: clamp(8rem, 12vw, 13rem) 0;
}

.story-layout {
  grid-template-columns: minmax(200px, .42fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 7vw, 8rem);
}

.story-number {
  transform: rotate(-4deg);
  border: 0;
  background: var(--red);
  box-shadow: 15px 18px 0 rgba(255, 255, 255, .07);
  font-family: var(--sans);
  font-size: clamp(2.1rem, 4.2vw, 4.7rem);
  line-height: .8;
}

.story-copy {
  max-width: 850px;
}

.story-copy h3 {
  display: inline-block;
  margin-top: 2rem;
  padding: .25rem .48rem;
  transform: rotate(-.5deg);
  background: #e5e5df;
  color: #111;
  font-family: var(--mono);
  font-size: 1rem;
}

.headlights-section {
  padding: clamp(7rem, 10vw, 11rem) 0;
}

.headlights-layout {
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  gap: clamp(3rem, 9vw, 10rem);
}

.memory-photo {
  transform: rotate(-3deg);
  border: 13px solid #d8d8d1;
  box-shadow: 19px 23px 0 rgba(0, 0, 0, .2);
}

.margin-note {
  transform: translateX(-4vw) rotate(-2deg);
  border-left: 0;
  border: 3px solid var(--red);
  background: transparent;
  color: var(--red);
  font-family: var(--mono);
  font-weight: 900;
}

.rapgod-section {
  padding: clamp(8rem, 11vw, 12rem) 0;
  background:
    linear-gradient(110deg, #080808 0 57%, #151515 57.1% 100%);
}

.rapgod-layout {
  grid-template-columns: minmax(0, 1.3fr) minmax(300px, .7fr);
  gap: clamp(3rem, 6vw, 7rem);
}

.rapgod-copy h2 {
  display: flex;
  flex-direction: column;
  gap: .22em;
}

.rap-kinetic {
  position: relative;
  display: inline-block;
  width: fit-content;
  color: #fff;
  font-size: 1.42em;
  letter-spacing: -.06em;
}

.rap-kinetic::before,
.rap-kinetic::after {
  content: attr(data-kinetic);
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
}

.rap-kinetic::before {
  color: var(--red);
  transform: translateX(-5px);
}

.rap-kinetic::after {
  color: #8fe6ff;
  transform: translateX(5px);
  mix-blend-mode: screen;
}

.rapgod-section.is-visible-kinetic .rap-kinetic::before,
.rapgod-section.is-visible-kinetic .rap-kinetic::after {
  animation: kinetic-slice .52s steps(2, end) 2;
}

@keyframes kinetic-slice {
  0%, 100% { opacity: 0; clip-path: inset(0); }
  18% { opacity: .75; clip-path: inset(10% 0 64% 0); }
  43% { opacity: .52; clip-path: inset(54% 0 16% 0); }
  71% { opacity: .7; clip-path: inset(30% 0 42% 0); }
}

.rapgod-photo {
  transform: rotate(3deg);
  border: 12px solid #deded8;
  box-shadow: 20px 24px 0 rgba(255, 255, 255, .065);
}

.tracklist-section {
  padding: clamp(7rem, 10vw, 11rem) 0;
}

.tracklist-section .section-heading {
  margin-left: 5vw;
}

.tracklist {
  transform: rotate(-.35deg);
  border: 3px solid #111;
  box-shadow: 18px 22px 0 rgba(0, 0, 0, .18);
  background: #e8e8e2;
}

.tracklist li {
  border-color: rgba(0, 0, 0, .3);
}

.tracklist li:nth-child(even) {
  background: rgba(0, 0, 0, .045);
}

.deluxe-divider {
  background: #111 !important;
  color: #fff;
}

.contributors-section {
  padding: clamp(8rem, 12vw, 13rem) 0;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: start;
}

.person-card {
  grid-column: span 4;
  min-height: 250px;
  border: 0;
  background: #e0e0da;
  color: #111;
  box-shadow: 10px 12px 0 rgba(255, 255, 255, .055);
}

.person-card:nth-child(3n+2) {
  transform: translateY(2.5rem) rotate(1deg);
}

.person-card:nth-child(4n) {
  grid-column: span 5;
  transform: rotate(-1.4deg);
}

.person-card:nth-child(7) {
  grid-column: span 3;
}

.person-card h3 {
  font-family: var(--sans);
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
  line-height: .9;
  text-transform: uppercase;
}

.person-role {
  color: var(--red);
}

.reception-section {
  padding: clamp(7rem, 10vw, 11rem) 0;
}

.result-grid {
  grid-template-columns: 1.15fr .85fr .85fr 1.15fr;
  align-items: start;
}

.result-card {
  min-height: 265px;
  border: 3px solid #111;
  background: #deded8;
  box-shadow: 10px 12px 0 rgba(0, 0, 0, .18);
}

.result-card:nth-child(2),
.result-card:nth-child(4) {
  transform: translateY(2.2rem) rotate(1deg);
}

.result-card > strong {
  color: var(--red);
  font-family: var(--sans);
  font-size: clamp(3.4rem, 7vw, 7rem);
}

.connection-section {
  padding: clamp(8rem, 12vw, 13rem) 0;
}

.connection-layout {
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
  gap: clamp(3rem, 8vw, 9rem);
}

.connection-photo {
  transform: translateY(7rem) rotate(3deg);
  border: 12px solid #deded8;
  box-shadow: 20px 24px 0 rgba(255, 255, 255, .06);
}

.connection-list > div {
  border-color: rgba(255, 255, 255, .24);
}

.writing-section {
  padding: clamp(7rem, 10vw, 11rem) 0;
}

.writing-layout {
  grid-template-columns: minmax(380px, 1.1fr) minmax(0, .9fr);
  gap: clamp(3rem, 9vw, 10rem);
}

.lyrics-paper {
  transform: rotate(-2.5deg);
  border: 12px solid #d2d2cb;
  box-shadow: 19px 23px 0 rgba(0, 0, 0, .2);
}

.writing-copy {
  transform: translateY(5rem);
}

.summary-section {
  padding: clamp(8rem, 12vw, 13rem) 0;
  background:
    linear-gradient(112deg, #080808 0 66%, #a80f12 66.2% 100%);
}

.summary-box {
  width: min(calc(100% - 48px), 1040px);
  margin-left: max(24px, 7vw);
  padding: clamp(2rem, 5vw, 5rem);
  transform: rotate(-.7deg);
  border: 3px solid #fff;
  background: rgba(0, 0, 0, .52);
  box-shadow: 18px 22px 0 rgba(255, 255, 255, .08);
}

.listen-section {
  padding: clamp(7rem, 10vw, 11rem) 0;
}

.streaming-links {
  transform: rotate(-.45deg);
}

.shop-card {
  border: 3px solid #111;
  background: #e1e1db;
  box-shadow: 10px 13px 0 rgba(0, 0, 0, .18);
}

.shop-card:nth-child(2) {
  transform: translateY(2rem) rotate(1deg);
}

.faq-section {
  padding: clamp(8rem, 12vw, 13rem) 0;
}

.faq-section h2 {
  transform: translateX(3vw);
}

.faq-list {
  width: min(100%, 950px);
  margin: 3rem 0 0 auto;
  border-top: 3px solid #fff;
}

.faq-list details {
  border-color: rgba(255, 255, 255, .22);
}

.resource-section {
  padding: clamp(7rem, 10vw, 11rem) 0;
}

.resource-layout {
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.references {
  transform: rotate(1deg);
  border: 3px solid #111;
  background: #deded8;
  box-shadow: 14px 17px 0 rgba(0, 0, 0, .18);
}

.album-navigation {
  border-block: 1px solid rgba(255, 255, 255, .18);
  background: #090909;
}

.share-section,
.home-actions,
.site-footer {
  background: #090909;
}

/* Responsive */

@media (max-width: 1100px) {
  .hero h1 {
    font-size: clamp(4rem, 9.4vw, 7.2rem);
  }

  .hero-evidence {
    right: 0;
    bottom: 18%;
  }

  .time-panel {
    grid-template-columns: minmax(0, 1.15fr) minmax(290px, .85fr);
    gap: 2rem;
  }

  .time-copy {
    transform: translateX(-3vw) rotate(.8deg);
  }

  @keyframes note-arrive {
    from { opacity: 0; transform: translateX(2vw) translateY(32px) rotate(4deg); }
    to { opacity: 1; transform: translateX(-3vw) translateY(0) rotate(.8deg); }
  }

  .person-card,
  .person-card:nth-child(4n),
  .person-card:nth-child(7) {
    grid-column: span 6;
  }
}

@media (max-width: 900px) {
  .section-inner {
    width: min(calc(100% - 34px), var(--max));
  }

  .site-header,
  .hero-inner {
    width: calc(100% - 34px);
  }

  .hero-backdrop {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .91) 0, rgba(0, 0, 0, .7) 46%, rgba(0, 0, 0, .2) 100%),
      linear-gradient(0deg, rgba(0, 0, 0, .92) 0, transparent 58%),
      linear-gradient(180deg, rgba(0, 0, 0, .7), transparent 22%);
  }

  .hero-inner {
    padding-top: 85px;
  }

  .hero-copy {
    width: 92%;
  }

  .hero-evidence {
    right: 2%;
    bottom: 17%;
  }

  .title-tape {
    top: 41%;
    left: 31%;
  }

  .overview-layout,
  .making-layout,
  .headlights-layout,
  .rapgod-layout,
  .connection-layout,
  .writing-layout,
  .resource-layout {
    grid-template-columns: 1fr;
  }

  .section-copy,
  .making-copy,
  .writing-copy {
    transform: none;
  }

  .fact-file {
    width: min(100%, 680px);
    margin-left: auto;
  }

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

  .archive-card:nth-child(n) {
    grid-column: auto;
    transform: none;
  }

  .archive-card:nth-child(even) {
    transform: translateY(2rem) rotate(1deg);
  }

  .timeline-intro h2 {
    font-size: clamp(3.2rem, 10vw, 6.8rem);
  }

  .time-stage {
    min-height: 720px;
    padding-inline: 24px;
  }

  .time-panel {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 0;
  }

  .time-visual {
    width: 82%;
  }

  .time-copy {
    width: 68%;
    margin: -5rem 0 1rem auto;
    transform: rotate(.8deg);
  }

  .timeline-title-complete {
    right: 2%;
    bottom: -1.4rem;
  }

  @keyframes note-arrive {
    from { opacity: 0; transform: translateY(32px) rotate(4deg); }
    to { opacity: 1; transform: translateY(0) rotate(.8deg); }
  }

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

  .track-card:nth-child(n) {
    grid-column: auto;
    transform: none;
  }

  .track-card:nth-child(even) {
    transform: translateY(2rem) rotate(1deg);
  }

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

  .person-card,
  .person-card:nth-child(n) {
    grid-column: auto;
  }

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

  .connection-photo {
    width: min(88%, 620px);
    margin-left: auto;
    transform: rotate(2deg);
  }
}

@media (max-width: 760px) {
  .hero.hero-redesign {
    min-height: max(720px, 100svh);
  }

  .hero-media img {
    object-position: 63% center;
  }

  .hero-backdrop {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, .83), rgba(0, 0, 0, .3)),
      linear-gradient(0deg, rgba(0, 0, 0, .96) 0 7%, rgba(0, 0, 0, .78) 34%, transparent 78%),
      linear-gradient(180deg, rgba(0, 0, 0, .72), transparent 25%);
  }

  .hero-inner {
    min-height: calc(max(720px, 100svh) - 72px);
    padding: 78px 0 145px;
  }

  .hero-copy {
    width: 100%;
  }

  .hero-case-line {
    align-items: flex-start;
    flex-direction: column;
    gap: .55rem;
  }

  .hero h1 {
    width: 100%;
    font-size: clamp(3rem, 13.4vw, 5.6rem);
    line-height: .8;
  }

  .hero h1 .title-line {
    white-space: normal;
  }

  .hero h1 .title-line-a {
    margin-left: 0;
  }

  .hero h1 .title-two {
    top: -.13em;
    right: .02em;
    font-size: .95em;
  }

  .title-tape {
    top: 43%;
    left: 30%;
    max-width: 52%;
    padding: .42rem .7rem;
    line-height: 1.2;
  }

  .title-year-mark {
    top: 3%;
    right: 4%;
    font-size: clamp(1.8rem, 9vw, 3.2rem);
  }

  .hero-jp,
  .lead,
  .hero-actions {
    margin-left: 0;
  }

  .hero-jp {
    margin-top: 2.2rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(100%, 540px);
  }

  .hero-actions .btn {
    width: auto;
  }

  .hero-evidence {
    display: none;
  }

  .hero-media figcaption {
    right: 14px;
    bottom: 24px;
  }

  .year-reel {
    right: auto;
    bottom: 24px;
    left: 14px;
  }

  .scroll-hint {
    display: none;
  }

  .timeline-intro h2 {
    align-items: flex-start;
    flex-direction: column;
    gap: 0;
    font-size: clamp(4rem, 20vw, 7rem);
    white-space: normal;
  }

  .timeline-intro h2 i {
    margin: -.1em 0 -.15em .5em;
    transform: rotate(90deg);
  }

  .js.has-time-scroll .time-scroll {
    height: auto;
  }

  .js.has-time-scroll .time-stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
    padding-block: 2rem 4rem;
  }

  .js.has-time-scroll .time-panels {
    display: grid;
    height: auto;
    min-height: 0;
    gap: 5rem;
  }

  .js.has-time-scroll .time-panel {
    position: relative;
    inset: auto;
    display: grid;
    min-height: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .time-panel {
    grid-template-columns: 1fr;
  }

  .time-panel + .time-panel {
    padding-top: 1rem;
    border-top: 1px dashed rgba(255, 255, 255, .28);
  }

  .time-visual {
    width: 100%;
    border-width: 6px;
  }

  .time-copy {
    width: 92%;
    margin: -2.2rem 0 0 auto;
    padding: 1.3rem;
    transform: rotate(.7deg);
  }

  .time-year {
    top: -1rem;
    font-size: clamp(7rem, 38vw, 12rem);
  }

  .time-progress,
  .time-meter {
    display: none;
  }

  .timeline-title-complete {
    position: relative;
    right: auto;
    bottom: auto;
    justify-content: flex-end;
    margin-top: 1.7rem;
  }

  .interpretation {
    width: 100%;
    margin-top: 3rem;
  }

  .track-cards,
  .people-grid,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .track-card:nth-child(n),
  .person-card:nth-child(n),
  .result-card:nth-child(n) {
    transform: none;
  }

  .track-card:nth-child(even),
  .person-card:nth-child(even),
  .result-card:nth-child(even) {
    transform: translateX(2vw) rotate(.7deg);
  }

  .story-layout {
    grid-template-columns: 1fr;
  }

  .story-number {
    width: min(86%, 420px);
  }

  .making-assets {
    min-height: 570px;
  }

  .summary-box {
    width: calc(100% - 34px);
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  body {
    font-size: 15px;
  }

  .section-inner {
    width: calc(100% - 28px);
  }

  .site-header,
  .hero-inner {
    width: calc(100% - 28px);
  }

  .hero h1 {
    font-size: clamp(2.75rem, 13.1vw, 4rem);
    letter-spacing: -.06em;
  }

  .archive-stamp {
    font-size: .56rem;
  }

  .eyebrow {
    max-width: 85%;
    font-size: .56rem;
  }

  .title-tape {
    top: 39%;
    left: 24%;
    max-width: 58%;
    font-size: .51rem;
  }

  .hero-jp {
    max-width: 88%;
    font-size: .65rem;
  }

  .lead {
    max-width: 92%;
    font-size: .94rem;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-media figcaption {
    display: none;
  }

  .year-reel {
    min-width: 164px;
  }

  .overview-section::after {
    right: -1rem;
    bottom: 2rem;
  }

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

  .archive-card:nth-child(n) {
    transform: none;
  }

  .archive-card:nth-child(even) {
    transform: translateX(2vw) rotate(.7deg);
  }

  .timeline-intro {
    padding-top: 5rem;
  }

  .time-stage {
    padding-inline: 14px;
  }

  .time-copy {
    width: 96%;
  }

  .time-copy h3 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .timeline-title-complete span {
    font-size: 1.35rem;
  }

  .timeline-title-complete strong {
    font-size: 4rem;
  }

  .making-assets {
    min-height: 480px;
  }

  .photo-polaroid {
    width: 94%;
  }

  .cassette-photo {
    left: 2%;
    width: 82%;
  }

  .rapgod-copy h2 {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .summary-box {
    width: calc(100% - 28px);
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .is-booting .hero-media img,
  .is-booting .hero h1,
  .is-booting .hero-flash,
  .js.has-time-scroll .time-panel.is-active .time-visual,
  .js.has-time-scroll .time-panel.is-active .time-copy,
  .js.has-time-scroll .time-panel[data-era-panel="2000"].is-active .cassette-reel,
  .js.has-time-scroll .time-panel[data-era-panel="2013"].is-active .timeline-title-complete,
  .rapgod-section.is-visible-kinetic .rap-kinetic::before,
  .rapgod-section.is-visible-kinetic .rap-kinetic::after {
    animation: none !important;
  }

  .js.has-time-scroll .time-scroll {
    height: auto;
  }

  .js.has-time-scroll .time-stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
  }

  .js.has-time-scroll .time-panels {
    display: grid;
    height: auto;
    min-height: 0;
    gap: 4rem;
  }

  .js.has-time-scroll .time-panel {
    position: relative;
    inset: auto;
    min-height: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .time-progress,
  .time-meter {
    display: none;
  }
}

@media print {
  .hero-flash,
  .time-progress,
  .time-meter {
    display: none !important;
  }

  .time-scroll,
  .js.has-time-scroll .time-scroll {
    height: auto !important;
  }

  .time-stage,
  .js.has-time-scroll .time-stage {
    position: relative !important;
    height: auto !important;
  }

  .time-panel,
  .js.has-time-scroll .time-panel {
    position: relative !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}
