@font-face {
  font-family: "KIdDOS";
  src:
    url("assets/fonts/KIdDOS-Regular.otf") format("opentype"),
    url("assets/fonts/KIdDOS-Regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --red: #ed1c19;
  --red-dark: #b7100d;
  --ink: #0a0a0a;
  --paper: #fff8e9;
  --paper-bright: #fffdf7;
  --pink: #f08abb;
  --brown: #9a5e3b;
  --grey: #d8d0c0;
  --font-doodle: "KIdDOS", "Comic Sans MS", "Comic Sans", cursive, sans-serif;
  --font-file: "Courier New", Courier, monospace;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  background: var(--ink);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-doodle);
  font-weight: 800;
}

body.dialog-open {
  overflow: hidden;
}

::selection {
  color: var(--paper-bright);
  background: var(--red);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

figure,
p,
h1,
h2,
h3 {
  margin-top: 0;
}

a {
  color: inherit;
}

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

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

button:focus-visible,
a:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 5px solid var(--pink);
  outline-offset: 5px;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 11px 14px 7px;
  color: var(--paper-bright);
  background: var(--ink);
  border: 4px solid var(--paper-bright);
  box-shadow: 5px 5px 0 var(--red);
  transform: translateY(-180%);
}

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

.masthead {
  position: relative;
  z-index: 30;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(14px, 2vw, 34px);
  min-height: 68px;
  padding: 8px clamp(14px, 2.2vw, 40px) 7px;
  color: var(--paper-bright);
  background: var(--ink);
  border-top: 8px solid var(--red);
  border-bottom: 4px solid var(--ink);
}

.mini-mark {
  font-size: clamp(23px, 2.2vw, 35px);
  line-height: 0.8;
  text-decoration: none;
  letter-spacing: -0.04em;
  transform: rotate(-2deg);
}

.mini-mark span {
  color: var(--red);
}

.scribble-nav {
  display: flex;
  justify-content: center;
  gap: clamp(12px, 2vw, 31px);
  min-width: 0;
}

.scribble-nav a {
  position: relative;
  color: var(--paper-bright);
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.scribble-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  border-bottom: 3px solid var(--red);
  transform: scaleX(0) rotate(-2deg);
  transform-origin: left;
  transition: transform 120ms ease;
}

.scribble-nav a:hover::after,
.scribble-nav a:focus-visible::after {
  transform: scaleX(1) rotate(-2deg);
}

.status-mini {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--grey);
  font-family: var(--font-file);
  font-size: clamp(10px, 0.85vw, 13px);
  line-height: 1.1;
  text-transform: uppercase;
  white-space: nowrap;
}

.status-mini span,
.record-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  background: var(--red);
  border: 2px solid currentColor;
  border-radius: 50% 43% 47% 40%;
}

.visual-section {
  position: relative;
  overflow: hidden;
  border-bottom: 7px solid var(--ink);
}

.section-inner {
  position: relative;
  width: min(1560px, calc(100% - clamp(24px, 4vw, 72px)));
  margin-inline: auto;
}

.section-heading {
  position: relative;
  z-index: 3;
}

.section-number {
  display: inline-block;
  margin: 0 0 17px;
  padding: 7px 11px 4px;
  color: var(--paper-bright);
  background: var(--ink);
  border: 3px solid var(--ink);
  box-shadow: 4px 5px 0 var(--red);
  font-family: var(--font-file);
  font-size: clamp(12px, 1vw, 16px);
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(-1deg);
}

.section-number.inverted {
  color: var(--ink);
  background: var(--paper-bright);
  border-color: var(--paper-bright);
  box-shadow: 4px 5px 0 var(--red-dark);
}

.section-heading h2 {
  margin: 0;
  max-width: 1100px;
  font-size: clamp(61px, 8.4vw, 142px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.68;
  text-transform: lowercase;
}

.section-heading h2 span {
  color: var(--red);
}

.heading-note {
  width: min(660px, 100%);
  margin: 24px 0 0;
  font-size: clamp(19px, 1.8vw, 29px);
  line-height: 0.93;
  transform: rotate(-1deg);
}

.heading-note.inverted {
  color: var(--paper-bright);
}

.doodle-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px 8px;
  border: 4px solid var(--ink);
  border-radius: 8px 14px 7px 12px / 12px 8px 15px 7px;
  box-shadow: 6px 7px 0 var(--ink);
  font-size: clamp(22px, 2vw, 32px);
  line-height: 0.82;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, color 120ms ease, background-color 120ms ease;
}

.doodle-button:hover,
.doodle-button:focus-visible {
  transform: translate(-2px, -2px) rotate(-1deg);
  box-shadow: 9px 10px 0 var(--ink);
}

.button-dark {
  color: var(--paper-bright);
  background: var(--ink);
  box-shadow: 6px 7px 0 var(--red);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 9px 10px 0 var(--red);
}

.button-paper {
  color: var(--ink);
  background: var(--paper-bright);
}

.button-red {
  color: var(--paper-bright);
  background: var(--red);
}

.asset-frame {
  position: relative;
}

.asset-fallback {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: inherit;
  padding: 28px;
  color: var(--paper-bright);
  background: var(--red);
  font-size: clamp(25px, 3vw, 48px);
  line-height: 0.8;
  text-align: center;
}

.asset-frame.is-missing > img {
  display: none;
}

.asset-frame.is-missing > .asset-fallback {
  display: flex;
}

/* Stock-pair notice: separate from the fictional hardware jokes. */
.stock-pair-banner { display:grid; grid-template-columns:auto minmax(0,1fr) auto; gap:24px; align-items:center; padding:19px clamp(18px,4vw,68px); background:var(--paper-bright); border-bottom:4px solid var(--ink); }
.stock-pair-label { padding-right:24px; border-right:2px dashed var(--ink); }
.stock-pair-label > span { display:block; font:700 11px/1.4 var(--font-file); letter-spacing:.05em; color:var(--red-dark); }
.stock-pair-label > strong { display:block; font:800 28px/1.2 Arial,sans-serif; white-space:nowrap; }
.stock-pair-label .stock-ticker { color:var(--red-dark); font-family:Arial,sans-serif; }
.stock-pair-label small { display:block; margin-top:4px; font:12px/1.4 Arial,sans-serif; }
.stock-pair-copy p { font-size:26px; line-height:1.1; margin:0 0 5px; }
.stock-pair-copy > span, .stock-pair-copy > small { display:block; font:14px/1.45 Arial,sans-serif; max-width:690px; }
.stock-pair-copy > small { margin-top:4px; font-size:12px; }
.stock-pair-banner > a { font:700 13px/1.4 Arial,sans-serif; padding:12px 10px; text-underline-offset:4px; white-space:nowrap; }
.stock-pair-faq p { font:16px/1.6 Arial,sans-serif; }
@media(max-width:760px) {
 .stock-pair-banner { grid-template-columns:minmax(0,1fr) auto; gap:12px; padding:16px 18px; }
 .stock-pair-label { border:0; padding:0; }
 .stock-pair-label > strong { font-size:25px; }
 .stock-pair-copy { grid-column:1/-1; grid-row:2; }
 .stock-pair-copy p { font-size:24px; }
 .stock-pair-copy > span { font-size:13px; }
 .stock-pair-banner > a { grid-column:2; grid-row:1; padding-right:0; }
}

/* HERO */
.hero-section {
  min-height: 110vh;
  padding: clamp(40px, 6vh, 82px) 0 0;
  background: var(--paper);
}

.hero-section::before {
  content: "SAVING… SAVING… SAVING…";
  position: absolute;
  top: 53%;
  left: -175px;
  color: var(--red);
  font-family: var(--font-file);
  font-size: 13px;
  letter-spacing: 0.35em;
  transform: rotate(-90deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(580px, 1.22fr);
  align-items: center;
  gap: clamp(32px, 4.5vw, 76px);
  min-height: min(850px, calc(100svh - 80px));
  padding: 0 8px clamp(55px, 8vh, 94px);
}

.hero-copy {
  position: relative;
  z-index: 3;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 17px 6px;
  padding: 8px 12px 5px;
  color: var(--paper-bright);
  background: var(--red);
  border: 4px solid var(--ink);
  box-shadow: 5px 6px 0 var(--ink);
  font-size: clamp(19px, 1.9vw, 30px);
  line-height: 0.85;
  transform: rotate(-2deg);
}

.hero-copy h1 {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0;
  font-size: clamp(104px, 13vw, 215px);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.67;
  white-space: nowrap;
  transform: rotate(-3deg) translateX(-0.02em);
}

.hero-copy h1 span {
  color: var(--red);
}

.hero-copy h1 strong {
  position: relative;
  color: var(--ink);
  font-weight: 900;
}

.hero-copy h1 strong::after {
  content: "";
  position: absolute;
  right: -0.02em;
  bottom: 0.01em;
  left: 0.03em;
  border-bottom: 7px solid var(--red);
  transform: rotate(2deg);
}

.hero-copy h2 {
  margin: 30px 0 0 5px;
  font-size: clamp(49px, 5.4vw, 88px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.72;
  text-transform: lowercase;
  transform: rotate(-1deg);
}

.hero-copy h2 em {
  position: relative;
  color: var(--red);
  font-style: normal;
}

.hero-copy h2 em::after {
  content: "";
  position: absolute;
  right: -4px;
  bottom: 0;
  left: 0;
  border-bottom: 4px solid var(--ink);
  transform: rotate(-1deg);
}

.hero-blurt {
  display: inline-block;
  max-width: 570px;
  margin: 25px 0 0 6px;
  padding: 8px 11px 4px;
  color: var(--paper-bright);
  background: var(--ink);
  font-size: clamp(20px, 2vw, 31px);
  line-height: 0.87;
  transform: rotate(1deg);
}

.support-copy {
  max-width: 620px;
  margin: 20px 0 0 5px;
  font-size: clamp(24px, 2.5vw, 39px);
  line-height: 0.88;
}

.support-copy strong {
  color: var(--red);
}

.dumb-instructions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 11px;
  margin: 24px 0 21px 5px;
  font-size: clamp(17px, 1.55vw, 25px);
  line-height: 0.9;
}

.dumb-instructions span {
  padding: 7px 10px 3px;
  border: 3px solid var(--ink);
  background: var(--paper-bright);
}

.dumb-instructions span:nth-child(1) {
  transform: rotate(-2deg);
}

.dumb-instructions span:nth-child(2) {
  color: var(--paper-bright);
  background: var(--ink);
  transform: rotate(1deg);
}

.dumb-instructions span:nth-child(3) {
  color: var(--paper-bright);
  background: var(--red);
  transform: rotate(-1deg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 17px;
  margin-left: 4px;
}

.hero-actions .doodle-button:nth-child(2) {
  transform: rotate(2deg);
}

.micro-note {
  margin: 19px 0 0 8px;
  color: var(--red-dark);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 0.9;
  transform: rotate(-1deg);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.art-board {
  position: relative;
  width: calc(100% - 20px);
  margin-left: 5px;
  padding: 11px;
  background: var(--paper-bright);
  border: 6px solid var(--ink);
  border-radius: 9px 17px 7px 15px / 14px 8px 16px 9px;
  box-shadow: 13px 14px 0 var(--red), 21px 22px 0 var(--ink);
  transform: rotate(0.8deg);
}

.file-label {
  position: absolute;
  top: -23px;
  left: 25px;
  z-index: 4;
  margin: 0;
  padding: 8px 11px 5px;
  color: var(--paper-bright);
  background: var(--ink);
  border: 3px solid var(--ink);
  font-family: var(--font-file);
  font-size: clamp(10px, 1.05vw, 16px);
  line-height: 1;
  transform: rotate(-2deg);
}

.hero-art {
  min-height: 330px;
  margin: 0;
  overflow: hidden;
  background: var(--red);
  border: 4px solid var(--ink);
}

.hero-art > img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--paper-bright);
}

.hero-art > .asset-fallback {
  aspect-ratio: 3 / 2;
}

.hero-art figcaption {
  position: absolute;
  right: 9px;
  bottom: 9px;
  left: 9px;
  z-index: 3;
  margin: 0;
  padding: 8px 10px 4px;
  color: var(--paper-bright);
  background: var(--ink);
  border: 2px solid var(--paper-bright);
  font-size: clamp(13px, 1.35vw, 21px);
  line-height: 0.86;
  text-align: center;
  transform: rotate(-0.5deg);
}

.hero-art figcaption span {
  color: var(--red);
}

.character-chip {
  position: absolute;
  right: -30px;
  bottom: -30px;
  z-index: 5;
  width: clamp(92px, 10vw, 150px);
  min-height: 105px;
  padding: 6px 6px 4px;
  background: var(--paper-bright);
  border: 4px solid var(--ink);
  box-shadow: 6px 7px 0 var(--red);
  transform: rotate(7deg);
}

.character-chip > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid var(--ink);
}

.character-chip > .asset-fallback {
  min-height: 88px;
  padding: 8px;
  font-size: 18px;
}

.character-chip b {
  display: block;
  margin-top: 4px;
  font-size: clamp(12px, 1.1vw, 17px);
  line-height: 0.85;
  text-align: center;
}

.character-chip.is-missing b {
  display: none;
}

.memory-teeth {
  position: absolute;
  right: -20px;
  top: 23%;
  display: grid;
  gap: 7px;
}

.memory-teeth i {
  display: block;
  width: 22px;
  height: 8px;
  background: var(--red);
  border: 2px solid var(--ink);
}

.hero-margin-note {
  position: absolute;
  right: 5%;
  bottom: -63px;
  margin: 0;
  color: var(--red);
  font-size: clamp(18px, 1.6vw, 26px);
  transform: rotate(4deg);
}

.banner-frame {
  width: min(1500px, calc(100% - clamp(24px, 4vw, 72px)));
  min-height: 190px;
  margin: 0 auto -4px;
  overflow: hidden;
  background: var(--ink);
  border: 6px solid var(--ink);
  border-bottom-width: 4px;
  transform: rotate(-0.5deg);
}

.banner-frame > img,
.banner-frame > .asset-fallback {
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}

.banner-frame figcaption {
  position: absolute;
  right: 18px;
  bottom: 15px;
  margin: 0;
  padding: 8px 12px 4px;
  color: var(--paper-bright);
  background: var(--red);
  border: 3px solid var(--ink);
  box-shadow: 4px 5px 0 var(--ink);
  font-size: clamp(16px, 1.5vw, 24px);
  line-height: 0.86;
  transform: rotate(1deg);
}

/* ORIGIN */
.origin-section {
  padding: clamp(85px, 11vw, 175px) 0 clamp(90px, 11vw, 170px);
  background: var(--paper-bright);
}

.origin-section::after {
  content: "THIS IS CANON (NO IT ISN'T)";
  position: absolute;
  right: -35px;
  top: 70px;
  padding: 9px 16px 5px;
  color: var(--paper-bright);
  background: var(--red);
  border: 4px solid var(--ink);
  font-family: var(--font-file);
  font-size: clamp(10px, 1vw, 15px);
  transform: rotate(6deg);
}

.origin-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(330px, 0.88fr);
  gap: clamp(44px, 6vw, 100px);
}

.origin-heading {
  grid-column: 1 / -1;
}

.origin-heading h2 {
  max-width: 1230px;
}

.origin-art {
  align-self: start;
  min-height: 360px;
  margin: 4px 0 0;
  padding: 10px;
  background: var(--paper-bright);
  border: 6px solid var(--ink);
  box-shadow: 14px 15px 0 var(--red), 22px 23px 0 var(--ink);
  transform: rotate(-1.5deg);
}

.origin-art > img,
.origin-art > .asset-fallback {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border: 3px solid var(--ink);
}

.origin-art figcaption {
  margin: 13px 4px 0;
  font-family: var(--font-file);
  font-size: clamp(12px, 1.1vw, 17px);
  line-height: 1.2;
  text-align: center;
}

.lore-beats {
  position: relative;
  display: grid;
  gap: 24px;
  align-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lore-beats::before {
  content: "";
  position: absolute;
  top: 7%;
  bottom: 7%;
  left: 42px;
  border-left: 6px solid var(--red);
  transform: rotate(-1deg);
}

.lore-beats li {
  position: relative;
  display: grid;
  grid-template-columns: 82px 1fr;
  align-items: center;
  gap: 17px;
  min-height: 150px;
  padding: 18px 17px 14px 6px;
  background: var(--paper);
  border-top: 5px solid var(--ink);
  border-bottom: 5px solid var(--ink);
}

.lore-beats li:nth-child(2) {
  margin-left: -25px;
  color: var(--paper-bright);
  background: var(--ink);
  border-color: var(--red);
  transform: rotate(1deg);
}

.beat-number {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  color: var(--paper-bright);
  background: var(--red);
  border: 5px solid var(--ink);
  border-radius: 48% 42% 47% 39%;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 51px;
  line-height: 0.75;
}

.lore-beats li:nth-child(2) .beat-number {
  color: var(--ink);
  background: var(--paper-bright);
  border-color: var(--red);
  box-shadow: 5px 5px 0 var(--red);
}

.lore-beats b {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: clamp(27px, 2.5vw, 40px);
  line-height: 0.82;
}

.lore-beats p {
  margin: 0;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 0.95;
}

/* FICTIONAL PACKAGES */
.products-section {
  padding: clamp(86px, 10vw, 150px) 0 clamp(105px, 12vw, 180px);
  color: var(--paper-bright);
  background: var(--ink);
}

.products-section::before {
  content: "NO CHECKOUT / NO STORE / NO PRODUCT";
  position: absolute;
  top: 24px;
  left: -12px;
  width: calc(100% + 24px);
  padding: 8px 0 5px;
  color: var(--ink);
  background: var(--paper-bright);
  border-block: 4px solid var(--red);
  font-family: var(--font-file);
  font-size: clamp(11px, 1.1vw, 17px);
  letter-spacing: 0.18em;
  text-align: center;
  transform: rotate(-0.6deg);
}

.products-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 20px;
}

.products-heading .section-number,
.products-heading h2 {
  grid-column: 1;
}

.products-heading h2 span {
  color: var(--red);
}

.products-heading .heading-note {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: end;
  max-width: 360px;
  padding: 17px 18px 12px;
  color: var(--ink);
  background: var(--paper-bright);
  border: 4px solid var(--red);
  box-shadow: 7px 8px 0 var(--red);
  transform: rotate(2deg);
}

.product-shelf {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(25px, 3.4vw, 55px);
  margin-top: clamp(75px, 9vw, 135px);
  padding: 0 clamp(2px, 2vw, 30px) 38px;
  border-bottom: 16px solid var(--paper-bright);
}

.product-shelf::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -30px;
  left: 0;
  border-bottom: 8px solid var(--red);
  transform: rotate(0.5deg);
}

.fake-pack {
  position: relative;
  flex: 1 1 0;
  max-width: 440px;
  min-height: 610px;
  padding: 28px 28px 24px;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-bright);
  border: 7px solid var(--paper-bright);
  box-shadow: 11px 12px 0 var(--red);
}

.fake-pack::before {
  content: "";
  position: absolute;
  top: -12px;
  right: 26%;
  width: 110px;
  height: 45px;
  background: var(--ink);
  border: 4px solid var(--paper-bright);
  transform: rotate(2deg);
}

.pack-ultra {
  transform: rotate(-3deg);
}

.pack-extreme {
  z-index: 2;
  min-height: 670px;
  color: var(--paper-bright);
  background: var(--red);
  border-color: var(--red);
  box-shadow: 12px 14px 0 var(--paper-bright);
  transform: rotate(1deg) translateY(-22px);
}

.pack-micro {
  min-height: 555px;
  transform: rotate(4deg);
}

.fiction-stamp {
  position: absolute;
  top: 22px;
  right: -42px;
  width: 190px;
  margin: 0;
  padding: 7px 0 4px;
  color: var(--paper-bright);
  background: var(--red);
  border-block: 3px solid var(--ink);
  font-family: var(--font-file);
  font-size: 11px;
  text-align: center;
  transform: rotate(35deg);
}

.pack-extreme .fiction-stamp {
  color: var(--ink);
  background: var(--paper-bright);
}

.pack-family {
  margin: 0 0 22px;
  color: var(--red);
  font-size: clamp(35px, 3.1vw, 50px);
  line-height: 0.8;
}

.pack-extreme .pack-family {
  color: var(--paper-bright);
}

.fake-pack h3 {
  margin: 0;
  font-size: clamp(58px, 5.5vw, 88px);
  letter-spacing: -0.05em;
  line-height: 0.66;
}

.fake-pack h3 span {
  color: var(--red);
}

.pack-extreme h3 {
  font-size: clamp(54px, 5vw, 81px);
}

.pack-extreme h3 span {
  display: block;
  color: var(--ink);
  font-size: 0.67em;
  letter-spacing: -0.04em;
  line-height: 0.8;
}

.pack-micro h3 span {
  color: var(--red);
}

.pack-wafer {
  position: relative;
  width: 63%;
  aspect-ratio: 0.85;
  margin: 45px auto 27px;
  padding: 24px 10px;
  color: var(--paper-bright);
  background: var(--ink);
  border: 5px solid var(--red);
  border-radius: 5px 24px 5px 5px;
  box-shadow: 8px 9px 0 var(--red);
  text-align: center;
}

.pack-wafer span {
  font-size: clamp(44px, 4.2vw, 70px);
}

.pack-wafer i,
.micro-wafer i {
  position: absolute;
  bottom: -18px;
  width: 13%;
  height: 27px;
  background: #f1bd31;
  border: 3px solid var(--ink);
}

.pack-wafer i:nth-of-type(1),
.micro-wafer i:nth-of-type(1) { left: 10%; }
.pack-wafer i:nth-of-type(2),
.micro-wafer i:nth-of-type(2) { left: 27%; }
.pack-wafer i:nth-of-type(3),
.micro-wafer i:nth-of-type(3) { left: 44%; }
.pack-wafer i:nth-of-type(4),
.micro-wafer i:nth-of-type(4) { left: 61%; }
.pack-wafer i:nth-of-type(5),
.micro-wafer i:nth-of-type(5) { left: 78%; }
.micro-wafer i:nth-of-type(6) { left: 86%; }

.delay-dial {
  position: relative;
  display: grid;
  place-items: center;
  width: 75%;
  aspect-ratio: 1;
  margin: 42px auto 25px;
  color: var(--ink);
  background: var(--paper-bright);
  border: 8px solid var(--ink);
  border-radius: 50% 44% 48% 45%;
}

.delay-dial b {
  position: absolute;
  top: 20%;
  left: 11%;
  font-family: var(--font-file);
  font-size: 12px;
}

.delay-dial i {
  display: block;
  width: 9px;
  height: 41%;
  background: var(--red);
  border: 3px solid var(--ink);
  transform: rotate(132deg) translateY(-18%);
  transform-origin: bottom;
}

.delay-dial strong {
  position: absolute;
  right: 4%;
  bottom: 14%;
  width: 57%;
  font-size: clamp(16px, 1.6vw, 24px);
  line-height: 0.75;
  text-align: center;
  transform: rotate(-8deg);
}

.micro-wafer {
  position: relative;
  width: 43%;
  aspect-ratio: 0.82;
  margin: 68px auto 39px;
  padding-top: 18%;
  color: var(--paper-bright);
  background: var(--ink);
  border: 5px solid var(--red);
  border-radius: 3px 19px 3px 3px;
  box-shadow: 6px 7px 0 var(--red);
  text-align: center;
}

.micro-wafer b {
  font-size: clamp(18px, 2vw, 30px);
  line-height: 0.7;
}

.micro-wafer i {
  width: 9%;
  height: 22px;
}

.pack-capacity {
  margin: 0 0 9px;
  padding-top: 16px;
  border-top: 6px solid currentColor;
  color: var(--red);
  font-family: var(--font-file);
  font-size: clamp(23px, 2.3vw, 36px);
  font-weight: 900;
  line-height: 1;
}

.pack-extreme .pack-capacity {
  color: var(--paper-bright);
}

.pack-joke {
  margin: 0 0 18px;
  font-size: clamp(23px, 2.1vw, 33px);
  line-height: 0.82;
}

.fake-pack small {
  display: block;
  font-family: var(--font-file);
  font-size: 11px;
  line-height: 1.2;
}

.shelf-scribble {
  width: max-content;
  max-width: 100%;
  margin: 54px 2% 0 auto;
  color: var(--red);
  font-size: clamp(21px, 2vw, 31px);
  transform: rotate(-2deg);
}

/* MEME WALL */
.gallery-section {
  padding: clamp(90px, 11vw, 170px) 0 clamp(110px, 12vw, 190px);
  background: var(--paper);
}

.gallery-section::after {
  content: "CLICK CLICK CLICK";
  position: absolute;
  top: 20%;
  right: -130px;
  color: var(--red);
  font-family: var(--font-file);
  font-size: 12px;
  letter-spacing: 0.35em;
  transform: rotate(90deg);
}

.gallery-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
}

.gallery-heading .section-number,
.gallery-heading h2 {
  grid-column: 1;
}

.gallery-heading .heading-note {
  grid-column: 2;
  grid-row: 1 / 3;
  max-width: 380px;
  padding: 18px 20px 13px;
  background: var(--paper-bright);
  border: 4px solid var(--ink);
  box-shadow: 8px 9px 0 var(--red);
  transform: rotate(2deg);
}

.meme-wall {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(35px, 5vw, 78px) clamp(22px, 3.2vw, 50px);
  margin-top: clamp(80px, 10vw, 145px);
}

.meme-tile {
  position: relative;
  margin: 0;
}

.meme-tile.tile-wide {
  width: calc(40% - 25px);
}

.meme-tile.tile-medium {
  width: calc(32% - 25px);
}

.meme-tile.tile-narrow {
  width: calc(27% - 25px);
}

.meme-tile:nth-child(4) {
  margin-top: -40px;
}

.meme-tile:nth-child(5) {
  margin-top: 40px;
}

.tilt-right {
  transform: rotate(1.5deg);
}

.tilt-left {
  transform: rotate(-1.3deg);
}

.image-stage {
  position: relative;
  display: block;
  width: 100%;
  min-height: 220px;
  padding: 8px;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-bright);
  border: 6px solid var(--ink);
  box-shadow: 11px 12px 0 var(--red);
  cursor: zoom-in;
}

.image-stage > img,
.image-stage > .asset-fallback {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid var(--ink);
}

.image-stage > .asset-fallback {
  min-height: 0;
}

.image-stage:disabled {
  cursor: not-allowed;
}

.zoom-note {
  position: absolute;
  right: 17px;
  bottom: 17px;
  padding: 7px 9px 4px;
  color: var(--paper-bright);
  background: var(--ink);
  border: 2px solid var(--paper-bright);
  font-size: clamp(13px, 1.2vw, 18px);
  line-height: 0.8;
  transform: rotate(-2deg);
}

.image-stage.is-missing .zoom-note {
  display: none;
}

.meme-tile figcaption {
  position: relative;
  z-index: 2;
  margin: 20px 4px 0;
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 0.9;
}

.meme-tile figcaption b,
.meme-tile figcaption span {
  display: block;
}

.meme-tile figcaption b {
  color: var(--red);
  font-size: 1.18em;
  line-height: 0.82;
}

.meme-tile figcaption a {
  display: inline-block;
  margin-top: 10px;
  padding: 7px 9px 4px;
  color: var(--paper-bright);
  background: var(--ink);
  border: 2px solid var(--ink);
  font-family: var(--font-file);
  font-size: 11px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.meme-tile figcaption a:hover,
.meme-tile figcaption a:focus-visible {
  color: var(--ink);
  background: var(--red);
}

.meme-tile figcaption a[aria-disabled="true"] {
  color: var(--ink);
  background: var(--grey);
  cursor: not-allowed;
  opacity: 0.7;
}

/* MEMORY DRAWER */
.memory-section {
  padding: clamp(95px, 11vw, 175px) 0 clamp(105px, 12vw, 190px);
  color: var(--paper-bright);
  background: var(--ink);
}

.memory-section::before {
  content: "D:IH";
  position: absolute;
  right: -0.08em;
  bottom: -0.2em;
  color: var(--red);
  font-family: var(--font-file);
  font-size: clamp(190px, 32vw, 560px);
  font-weight: 900;
  line-height: 0.7;
  opacity: 0.16;
}

.memory-scene {
  display: grid;
  grid-template-columns: minmax(300px, 0.56fr) minmax(660px, 1.44fr);
  align-items: center;
  gap: clamp(45px, 6vw, 95px);
}

.memory-heading h2 {
  font-size: clamp(65px, 7.2vw, 116px);
}

.memory-character {
  width: min(350px, 83%);
  min-height: 240px;
  margin: 55px auto 0;
  padding: 9px;
  color: var(--ink);
  background: var(--paper-bright);
  border: 6px solid var(--paper-bright);
  box-shadow: 11px 12px 0 var(--red);
  transform: rotate(-5deg);
}

.memory-character > img,
.memory-character > .asset-fallback {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 3px solid var(--ink);
}

.memory-character figcaption {
  margin: 8px 0 0;
  font-size: clamp(18px, 1.5vw, 25px);
  line-height: 0.8;
  text-align: center;
}

.memory-drawer {
  position: relative;
  z-index: 3;
  color: var(--ink);
  background: var(--paper-bright);
  border: 7px solid var(--paper-bright);
  box-shadow: 13px 14px 0 var(--red);
  transform: rotate(0.6deg);
}

.drawer-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(20px, 2.4vw, 38px) clamp(19px, 2.5vw, 40px) 17px;
  border-bottom: 7px solid var(--ink);
}

.drawer-kicker {
  margin: 0 0 7px;
  color: var(--red);
  font-family: var(--font-file);
  font-size: clamp(12px, 1.1vw, 17px);
  line-height: 1;
}

.drawer-header h3 {
  margin: 0;
  font-size: clamp(50px, 5.2vw, 83px);
  line-height: 0.65;
}

.file-total {
  margin: 0;
  color: var(--red);
  font-size: clamp(17px, 1.5vw, 24px);
  line-height: 0.76;
  text-align: right;
}

.file-total span {
  font-size: 1.5em;
}

.drawer-body {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.94fr);
  gap: 0;
}

.file-list {
  display: grid;
  align-content: start;
  padding: 13px;
  border-right: 6px solid var(--ink);
}

.memory-file {
  display: grid;
  grid-template-columns: 14px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-width: 0;
  padding: 14px 11px 10px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 4px solid var(--ink);
  font-family: var(--font-file);
  font-size: clamp(12px, 1.2vw, 18px);
  font-weight: 700;
  line-height: 1;
  text-align: left;
  cursor: pointer;
}

.file-icon {
  width: 10px;
  height: 10px;
  background: var(--red);
  border: 2px solid var(--ink);
}

.memory-file:hover,
.memory-file:focus-visible {
  color: var(--red);
}

.memory-file.is-selected {
  color: var(--paper-bright);
  background: var(--ink);
  box-shadow: 0 0 0 5px var(--red);
  transform: rotate(-0.5deg);
}

.memory-file.is-selected .file-icon {
  border-color: var(--paper-bright);
}

.file-name {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-size {
  color: var(--red);
  white-space: nowrap;
}

.memory-preview {
  min-height: 335px;
  padding: clamp(19px, 2.2vw, 34px);
  color: var(--paper-bright);
  background: var(--red);
  border: 10px solid var(--paper-bright);
  outline: 4px solid var(--ink);
  outline-offset: -10px;
}

.preview-topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 9px;
  border-bottom: 3px solid var(--paper-bright);
  font-size: clamp(13px, 1.2vw, 18px);
  line-height: 0.9;
}

.selected-file {
  margin: 21px 0 7px;
  overflow-wrap: anywhere;
  font-family: var(--font-file);
  font-size: clamp(12px, 1.1vw, 17px);
  line-height: 1.1;
}

.memory-joke {
  min-height: 88px;
  margin: 0;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 0.78;
}

.brain-meter {
  height: 20px;
  margin-top: 24px;
  padding: 3px;
  background: var(--paper-bright);
  border: 3px solid var(--ink);
}

.brain-meter span {
  display: block;
  width: 3%;
  min-width: 3px;
  height: 100%;
  background: var(--ink);
  transition: width 180ms ease;
}

.brain-left {
  margin: 8px 0 0;
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 0.9;
}

.drawer-warning {
  margin: 0;
  padding: 10px 15px 7px;
  color: var(--paper-bright);
  background: var(--ink);
  border-top: 5px solid var(--ink);
  font-family: var(--font-file);
  font-size: clamp(10px, 1vw, 14px);
  text-align: center;
}

.memory-preview.is-swapping {
  animation: preview-wobble 180ms steps(2, end);
}

.memory-drawer.is-called {
  animation: drawer-call 390ms ease-out;
}

@keyframes preview-wobble {
  50% { transform: translateX(5px) rotate(0.5deg); }
}

@keyframes drawer-call {
  0% { transform: rotate(0.6deg); }
  35% { transform: rotate(-1.5deg) translateY(-7px); }
  100% { transform: rotate(0.6deg); }
}

/* USB RITUAL */
.usb-section {
  padding: clamp(95px, 11vw, 175px) 0 clamp(110px, 13vw, 195px);
  background: var(--paper-bright);
}

.usb-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.7fr) minmax(500px, 1.05fr) minmax(220px, 0.45fr);
  align-items: center;
  gap: clamp(35px, 4.2vw, 68px);
}

.usb-heading h2 {
  font-size: clamp(63px, 7.3vw, 116px);
}

.usb-machine {
  position: relative;
  min-height: 610px;
  padding: clamp(28px, 4vw, 55px);
  background: var(--paper);
  border: 7px solid var(--ink);
  box-shadow: 14px 15px 0 var(--red), 23px 24px 0 var(--ink);
  transform: rotate(-1deg);
}

.usb-machine::before {
  content: "PORT TESTER / VERY SAFE";
  position: absolute;
  top: -18px;
  left: 26px;
  padding: 7px 10px 4px;
  color: var(--paper-bright);
  background: var(--ink);
  border: 3px solid var(--ink);
  font-family: var(--font-file);
  font-size: 12px;
}

.usb-port-scene {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  background: var(--red);
  border: 5px solid var(--ink);
}

.usb-label {
  position: absolute;
  top: 25px;
  left: 24px;
  z-index: 3;
  color: var(--paper-bright);
  font-family: var(--font-file);
  font-size: clamp(12px, 1.1vw, 16px);
  line-height: 1;
  transform: rotate(-4deg);
}

.usb-label small {
  color: var(--ink);
}

.usb-stick {
  position: absolute;
  top: 42%;
  left: 8%;
  z-index: 2;
  width: 43%;
  height: 87px;
  color: var(--paper-bright);
  background: var(--ink);
  border: 6px solid var(--paper-bright);
  box-shadow: 6px 7px 0 var(--ink);
  transform: translateY(-50%) rotate(-4deg);
  transform-origin: center;
  transition: transform 240ms ease;
}

.usb-stick::after {
  content: "";
  position: absolute;
  top: 14px;
  right: -58px;
  width: 52px;
  height: 50px;
  background: var(--grey);
  border: 5px solid var(--ink);
}

.usb-stick span {
  display: grid;
  place-items: center;
  height: 100%;
  color: var(--red);
  font-size: clamp(34px, 3.2vw, 53px);
  line-height: 0.8;
}

.usb-stick i {
  position: absolute;
  top: 27px;
  right: -48px;
  z-index: 2;
  width: 8px;
  height: 7px;
  background: var(--ink);
}

.usb-stick i:nth-of-type(1) { right: -45px; }
.usb-stick i:nth-of-type(2) { right: -32px; }
.usb-stick i:nth-of-type(3) { top: 39px; right: -45px; }
.usb-stick i:nth-of-type(4) { top: 39px; right: -32px; }

.usb-port {
  position: absolute;
  top: 50%;
  right: 8%;
  width: 27%;
  height: 110px;
  background: var(--ink);
  border: 7px solid var(--paper-bright);
  box-shadow: 7px 8px 0 var(--ink);
  transform: translateY(-50%) rotate(2deg);
}

.usb-port b {
  position: absolute;
  top: 27px;
  width: 13px;
  height: 37px;
  background: var(--paper-bright);
}

.usb-port b:first-child { left: 21%; }
.usb-port b:last-child { right: 21%; }

.usb-machine[data-state="try-1"] .usb-stick {
  transform: translate(29%, -50%) rotate(178deg);
}

.usb-machine[data-state="try-2"] .usb-stick {
  transform: translate(38%, -50%) rotate(-3deg);
}

.usb-machine[data-state="inserted"] .usb-stick {
  transform: translate(77%, -50%) rotate(1deg);
}

.try-marks {
  display: flex;
  gap: 9px;
  margin-top: 27px;
}

.try-mark {
  flex: 1 1 0;
  padding: 8px 6px 4px;
  color: var(--ink);
  background: var(--paper-bright);
  border: 3px solid var(--ink);
  font-family: var(--font-file);
  font-size: clamp(10px, 1vw, 14px);
  text-align: center;
  text-transform: uppercase;
}

.try-mark.is-done {
  color: var(--paper-bright);
  background: var(--red);
  text-decoration: line-through;
}

.usb-status {
  min-height: 58px;
  margin: 26px 0 5px;
  color: var(--red);
  font-size: clamp(29px, 3vw, 47px);
  line-height: 0.78;
}

.attempt-count {
  margin: 0;
  font-family: var(--font-file);
  font-size: 13px;
}

.usb-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 24px;
}

.usb-controls .doodle-button {
  font-size: clamp(20px, 1.8vw, 28px);
}

.usb-rulebook {
  align-self: end;
  margin-bottom: 26px;
  padding: 24px 21px 19px;
  background: var(--paper);
  border: 5px solid var(--ink);
  box-shadow: 9px 10px 0 var(--red);
  transform: rotate(4deg);
}

.usb-rulebook > b {
  display: block;
  padding-bottom: 9px;
  color: var(--red);
  border-bottom: 4px solid var(--ink);
  font-family: var(--font-file);
  font-size: clamp(12px, 1vw, 15px);
}

.usb-rulebook ol {
  margin: 19px 0;
  padding-left: 27px;
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 1.08;
}

.usb-rulebook p {
  margin: 0;
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 0.9;
}

/* CAPACITY */
.capacity-section {
  padding: clamp(95px, 11vw, 170px) 0 clamp(105px, 12vw, 185px);
  color: var(--paper-bright);
  background: var(--red);
}

.capacity-section::after {
  content: "128 KB 128 KB 128 KB 128 KB";
  position: absolute;
  right: -15px;
  bottom: 20px;
  color: var(--ink);
  font-family: var(--font-file);
  font-size: clamp(14px, 1.6vw, 25px);
  letter-spacing: 0.16em;
  opacity: 0.5;
  transform: rotate(-1deg);
}

.capacity-layout {
  display: grid;
  grid-template-columns: minmax(370px, 0.72fr) minmax(580px, 1.28fr);
  align-items: center;
  gap: clamp(55px, 8vw, 130px);
}

.capacity-heading h2 {
  font-size: clamp(65px, 7.5vw, 121px);
}

.capacity-heading h2 span {
  color: var(--ink);
}

.capacity-console {
  position: relative;
  padding: clamp(30px, 4vw, 62px);
  color: var(--ink);
  background: var(--paper-bright);
  border: 8px solid var(--ink);
  box-shadow: 15px 16px 0 var(--paper-bright), 25px 26px 0 var(--ink);
  transform: rotate(1deg);
}

.capacity-console::before {
  content: "BRAINROT PROPERTIES";
  position: absolute;
  top: -21px;
  left: 29px;
  padding: 8px 11px 4px;
  color: var(--paper-bright);
  background: var(--ink);
  font-family: var(--font-file);
  font-size: 13px;
}

.capacity-readout {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 20px;
  border-bottom: 7px solid var(--ink);
}

.capacity-readout span {
  max-width: 120px;
  font-family: var(--font-file);
  font-size: 13px;
  line-height: 1;
}

.capacity-readout output {
  color: var(--red);
  font-size: clamp(65px, 7vw, 112px);
  line-height: 0.65;
  white-space: nowrap;
}

.capacity-console > label {
  display: block;
  margin-top: 36px;
  font-size: clamp(24px, 2vw, 32px);
  line-height: 0.9;
}

.capacity-range-wrap {
  position: relative;
  height: 70px;
  margin-top: 5px;
}

.capacity-track {
  position: absolute;
  top: 26px;
  right: 0;
  left: 0;
  height: 26px;
  padding: 4px;
  background: var(--paper);
  border: 4px solid var(--ink);
}

.capacity-track span {
  display: block;
  width: 50%;
  height: 100%;
  background: var(--red);
}

#brainrot-capacity {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 70px;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: ew-resize;
}

#brainrot-capacity::-webkit-slider-runnable-track {
  height: 26px;
  background: transparent;
  border: 0;
}

#brainrot-capacity::-moz-range-track {
  height: 26px;
  background: transparent;
  border: 0;
}

#brainrot-capacity::-webkit-slider-thumb {
  width: 36px;
  height: 56px;
  margin-top: -15px;
  appearance: none;
  background: var(--ink);
  border: 5px solid var(--paper-bright);
  box-shadow: 4px 5px 0 var(--red);
}

#brainrot-capacity::-moz-range-thumb {
  width: 28px;
  height: 48px;
  background: var(--ink);
  border: 5px solid var(--paper-bright);
  border-radius: 0;
  box-shadow: 4px 5px 0 var(--red);
}

.range-labels {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  font-family: var(--font-file);
  font-size: clamp(9px, 0.9vw, 13px);
  line-height: 1.1;
  text-align: center;
}

.range-labels span:first-child { text-align: left; }
.range-labels span:last-child { text-align: right; }

.capacity-result {
  margin-top: 34px;
  padding: 22px 24px 17px;
  color: var(--paper-bright);
  background: var(--ink);
  border-left: 11px solid var(--red);
  transform: rotate(-0.6deg);
}

.capacity-result p {
  margin: 0;
  color: var(--red);
  font-size: clamp(29px, 3vw, 47px);
  line-height: 0.77;
}

.capacity-result span {
  display: block;
  margin-top: 10px;
  font-family: var(--font-file);
  font-size: 12px;
}

.capacity-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 25px;
}

.capacity-buttons button {
  padding: 10px 14px 6px;
  color: var(--ink);
  background: var(--paper-bright);
  border: 4px solid var(--ink);
  box-shadow: 4px 5px 0 var(--red);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 0.85;
  cursor: pointer;
}

.capacity-buttons button:hover,
.capacity-buttons button:focus-visible {
  color: var(--paper-bright);
  background: var(--ink);
}

.capacity-scrawl {
  position: absolute;
  right: 5%;
  bottom: -65px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(22px, 2vw, 32px);
  transform: rotate(3deg);
}

/* NEWS */
.news-section {
  padding: clamp(90px, 11vw, 170px) 0 clamp(110px, 13vw, 195px);
  background: var(--paper);
}

.news-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.35fr);
  align-items: end;
  gap: 40px;
}

.news-heading .section-number,
.news-heading h2 {
  grid-column: 1;
}

.news-heading .heading-note {
  grid-column: 2;
  grid-row: 1 / 3;
  max-width: 380px;
  padding: 20px 21px 15px;
  color: var(--paper-bright);
  background: var(--ink);
  border: 5px solid var(--red);
  box-shadow: 8px 9px 0 var(--red);
  transform: rotate(2deg);
}

.news-status-line {
  display: flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  max-width: 100%;
  margin: clamp(65px, 7vw, 105px) 0 26px;
  padding: 10px 13px 6px;
  color: var(--paper-bright);
  background: var(--ink);
  border: 3px solid var(--ink);
  font-family: var(--font-file);
  font-size: clamp(11px, 1vw, 15px);
  transform: rotate(-1deg);
}

.news-status-line p {
  margin: 0;
}

.news-list {
  margin: 0;
  padding: 0;
  border-top: 7px solid var(--ink);
  list-style: none;
  counter-reset: news;
}

.news-item {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  counter-increment: news;
  border-bottom: 7px solid var(--ink);
}

.news-item::before {
  content: counter(news, decimal-leading-zero);
  position: absolute;
  top: 19px;
  left: -5px;
  z-index: 2;
  padding: 6px 8px 3px;
  color: var(--paper-bright);
  background: var(--red);
  border: 3px solid var(--ink);
  font-family: var(--font-file);
  font-size: 12px;
  transform: translateX(-35%) rotate(-4deg);
}

.news-real,
.news-dih {
  min-height: 210px;
  padding: clamp(29px, 3.5vw, 54px);
}

.news-real {
  padding-left: clamp(38px, 4.3vw, 68px);
  background: var(--paper-bright);
  border-right: 6px solid var(--ink);
}

.news-dih {
  color: var(--paper-bright);
  background: var(--red);
}

.news-side-label {
  display: block;
  margin-bottom: 15px;
  font-family: var(--font-file);
  font-size: clamp(10px, 0.9vw, 13px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-real h3,
.news-dih p {
  margin: 0;
  font-size: clamp(29px, 3vw, 48px);
  line-height: 0.78;
}

.news-real h3 a {
  text-decoration-thickness: 3px;
  text-decoration-color: var(--red);
  text-underline-offset: 5px;
}

.news-real h3 a:hover,
.news-real h3 a:focus-visible {
  color: var(--red);
}

.news-fact {
  max-width: 760px;
  margin: 17px 0 0;
  padding: 13px 15px 10px;
  background: var(--paper);
  border-left: 6px solid var(--red);
  font-family: var(--font-file);
  font-size: clamp(12px, 1.05vw, 16px);
  font-weight: 700;
  line-height: 1.35;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 17px;
  margin-top: 18px;
  font-family: var(--font-file);
  font-size: clamp(10px, 0.9vw, 13px);
  line-height: 1.2;
}

.news-dih .news-side-label {
  color: var(--ink);
}

.news-dih p {
  font-size: clamp(33px, 3.5vw, 55px);
}

.news-fallback {
  padding: clamp(45px, 7vw, 105px);
  color: var(--paper-bright);
  background: var(--red);
  border-bottom: 7px solid var(--ink);
  text-align: center;
}

.news-fallback b {
  display: block;
  font-family: var(--font-file);
  font-size: clamp(14px, 1.4vw, 21px);
}

.news-fallback p {
  max-width: 750px;
  margin: 19px auto 0;
  font-size: clamp(32px, 4.6vw, 71px);
  line-height: 0.75;
}

.news-footnote {
  margin: 17px 0 0;
  font-family: var(--font-file);
  font-size: clamp(10px, 0.9vw, 13px);
  line-height: 1.25;
}

/* FAQ + FICTIONAL ROADMAP */
.faq-section {
  padding: clamp(95px, 11vw, 175px) 0 clamp(115px, 14vw, 210px);
  background: var(--paper-bright);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(390px, 0.93fr);
  gap: clamp(65px, 9vw, 145px);
}

.faq-heading h2 {
  font-size: clamp(68px, 7.8vw, 126px);
}

.faq-stack {
  margin-top: clamp(55px, 6vw, 90px);
  border-top: 6px solid var(--ink);
}

.faq-stack details {
  border-bottom: 6px solid var(--ink);
}

.faq-stack summary {
  position: relative;
  padding: 23px 62px 18px 8px;
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 40px);
  line-height: 0.85;
  list-style: none;
  cursor: pointer;
}

.faq-stack summary::-webkit-details-marker {
  display: none;
}

.faq-stack summary::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--paper-bright);
  background: var(--red);
  border: 4px solid var(--ink);
  box-shadow: 3px 4px 0 var(--ink);
  font-family: var(--font-file);
  font-size: 28px;
  transform: translateY(-56%) rotate(2deg);
}

.faq-stack details[open] summary {
  color: var(--red);
}

.faq-stack details[open] summary::after {
  content: "−";
  color: var(--red);
  background: var(--ink);
}

.faq-stack details p {
  margin: 0;
  padding: 0 60px 25px 28px;
  color: var(--red-dark);
  font-size: clamp(20px, 1.9vw, 30px);
  line-height: 0.95;
}

.roadmap-column {
  position: relative;
  align-self: start;
  margin-top: clamp(55px, 8vw, 130px);
  padding: clamp(30px, 4vw, 58px);
  color: var(--paper-bright);
  background: var(--ink);
  border: 7px solid var(--ink);
  box-shadow: 14px 15px 0 var(--red);
  transform: rotate(1.5deg);
}

.roadmap-column::before {
  content: "";
  position: absolute;
  inset: 13px -16px -17px 12px;
  z-index: -1;
  border: 5px solid var(--red);
  transform: rotate(-2deg);
}

.roadmap-kicker {
  display: inline-block;
  margin: 0 0 17px;
  padding: 7px 10px 4px;
  color: var(--ink);
  background: var(--paper-bright);
  font-family: var(--font-file);
  font-size: 12px;
  transform: rotate(-2deg);
}

.roadmap-column h3 {
  margin: 0;
  color: var(--red);
  font-size: clamp(50px, 5vw, 80px);
  line-height: 0.7;
}

.roadmap-track {
  position: relative;
  display: grid;
  gap: 24px;
  margin: 45px 0 0;
  padding: 0;
  list-style: none;
}

.roadmap-track::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 16px;
  left: 43px;
  border-left: 6px solid var(--red);
  transform: rotate(1deg);
}

.roadmap-track li {
  position: relative;
  padding: 5px 0 5px 91px;
}

.roadmap-track li::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 27px;
  z-index: 2;
  width: 27px;
  height: 27px;
  background: var(--paper-bright);
  border: 5px solid var(--red);
  border-radius: 50% 43% 48% 41%;
}

.roadmap-track span {
  display: inline-block;
  margin-bottom: 7px;
  padding: 4px 7px 2px;
  color: var(--ink);
  background: var(--paper-bright);
  font-family: var(--font-file);
  font-size: 11px;
}

.roadmap-track b {
  display: block;
  color: var(--red);
  font-size: clamp(26px, 2.5vw, 39px);
  line-height: 0.8;
}

.roadmap-track p {
  margin: 6px 0 0;
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 0.9;
}

.roadmap-note {
  margin: 39px 0 0;
  color: var(--grey);
  font-family: var(--font-file);
  font-size: 12px;
  text-align: right;
}

/* FOOTER */
.site-footer {
  display: grid;
  grid-template-columns: auto 1fr minmax(280px, 0.6fr);
  align-items: center;
  gap: clamp(25px, 4vw, 70px);
  min-height: 170px;
  padding: 35px clamp(20px, 4vw, 70px) 31px;
  color: var(--paper-bright);
  background: var(--ink);
  border-top: 9px solid var(--red);
}

.footer-mark {
  color: var(--red);
  font-size: clamp(40px, 4.2vw, 68px);
  line-height: 0.75;
  text-decoration: none;
  transform: rotate(-2deg);
}

.site-footer p {
  margin: 4px 0;
  font-family: var(--font-file);
  font-size: clamp(10px, 0.9vw, 13px);
  line-height: 1.3;
}

.footer-state {
  text-align: right;
}

.footer-state span {
  color: var(--red);
}

/* LIGHTBOX */
.meme-lightbox {
  width: min(1080px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  margin: auto;
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: var(--paper-bright);
  border: 7px solid var(--ink);
  box-shadow: 14px 15px 0 var(--red);
}

.meme-lightbox::backdrop {
  background: rgba(10, 10, 10, 0.87);
}

.lightbox-bar {
  position: sticky;
  top: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 11px 7px 16px;
  color: var(--paper-bright);
  background: var(--ink);
  border-bottom: 5px solid var(--red);
}

.lightbox-bar p {
  margin: 0;
  font-family: var(--font-file);
  font-size: 12px;
}

.lightbox-bar button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 36px;
  padding: 0;
  color: var(--paper-bright);
  background: var(--red);
  border: 3px solid var(--paper-bright);
  font-family: var(--font-file);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-body {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
  gap: 0;
}

.lightbox-body > img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--red);
  border-right: 6px solid var(--ink);
}

.lightbox-copy {
  align-self: center;
  padding: clamp(25px, 4vw, 55px);
}

.lightbox-copy h2 {
  margin: 0;
  color: var(--red);
  font-size: clamp(43px, 5vw, 76px);
  line-height: 0.7;
}

.lightbox-copy p {
  margin: 22px 0;
  font-size: clamp(21px, 2vw, 30px);
  line-height: 0.9;
}

.lightbox-copy a {
  display: inline-block;
  padding: 11px 14px 7px;
  color: var(--paper-bright);
  background: var(--ink);
  border: 4px solid var(--ink);
  box-shadow: 5px 6px 0 var(--red);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 0.85;
  text-decoration: none;
}

/* MID-SIZE */
@media (max-width: 1180px) {
  .masthead {
    grid-template-columns: auto 1fr;
  }

  .status-mini {
    display: none;
  }

  .scribble-nav {
    justify-content: flex-end;
  }

  .hero-grid {
    grid-template-columns: minmax(330px, 0.8fr) minmax(500px, 1.2fr);
  }

  .origin-layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.8fr);
    gap: 54px;
  }

  .product-shelf {
    gap: 24px;
  }

  .fake-pack {
    min-height: 560px;
    padding-inline: 19px;
  }

  .pack-extreme {
    min-height: 620px;
  }

  .memory-scene {
    grid-template-columns: minmax(260px, 0.46fr) minmax(600px, 1.54fr);
    gap: 45px;
  }

  .usb-layout {
    grid-template-columns: minmax(290px, 0.7fr) minmax(500px, 1.3fr);
  }

  .usb-rulebook {
    grid-column: 1 / -1;
    width: min(600px, 100%);
    margin: 10px auto 0;
  }

  .capacity-layout {
    grid-template-columns: minmax(330px, 0.65fr) minmax(500px, 1.35fr);
    gap: 70px;
  }
}

@media (max-width: 960px) {
  html {
    scroll-padding-top: 16px;
  }

  .section-inner {
    width: min(100% - 34px, 820px);
  }

  .masthead {
    position: relative;
  }

  .hero-grid,
  .origin-layout,
  .memory-scene,
  .usb-layout,
  .capacity-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 75px;
  }

  .hero-copy {
    width: min(690px, 100%);
  }

  .hero-copy h1 {
    font-size: clamp(110px, 23vw, 190px);
  }

  .hero-visual {
    width: min(780px, calc(100% - 18px));
    margin: 0 auto;
  }

  .banner-frame {
    width: calc(100% - 24px);
  }

  .origin-heading,
  .origin-art {
    grid-column: 1;
  }

  .origin-art {
    width: calc(100% - 22px);
    margin-inline: auto;
  }

  .lore-beats {
    margin-top: 35px;
  }

  .products-heading,
  .gallery-heading,
  .news-heading {
    display: block;
  }

  .products-heading .heading-note,
  .gallery-heading .heading-note,
  .news-heading .heading-note {
    width: min(480px, 90%);
    max-width: none;
    margin: 34px 0 0 auto;
  }

  .product-shelf {
    flex-wrap: wrap;
  }

  .fake-pack {
    flex: 1 1 calc(50% - 28px);
    min-width: 300px;
    max-width: 470px;
  }

  .pack-micro {
    min-height: 570px;
  }

  .meme-tile.tile-wide,
  .meme-tile.tile-medium,
  .meme-tile.tile-narrow {
    width: calc(50% - 26px);
  }

  .meme-tile:nth-child(4),
  .meme-tile:nth-child(5) {
    margin-top: 0;
  }

  .memory-heading {
    display: grid;
    grid-template-columns: 1fr 230px;
    gap: 0 35px;
    align-items: end;
  }

  .memory-heading .section-number,
  .memory-heading h2,
  .memory-heading .heading-note {
    grid-column: 1;
  }

  .memory-character {
    grid-column: 2;
    grid-row: 1 / 4;
    width: 100%;
    margin: 0;
  }

  .memory-drawer {
    margin-top: 65px;
  }

  .usb-layout,
  .capacity-layout {
    gap: 65px;
  }

  .usb-machine,
  .capacity-console {
    width: calc(100% - 26px);
    margin-inline: auto;
  }

  .usb-rulebook {
    grid-column: 1;
  }

  .capacity-scrawl {
    right: 8%;
    bottom: -45px;
  }

  .faq-layout {
    gap: 15px;
  }

  .roadmap-column {
    width: calc(100% - 28px);
    margin: 95px auto 0;
  }

  .site-footer {
    grid-template-columns: auto 1fr;
  }

  .footer-state {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 680px) {
  .masthead {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    min-height: 0;
    padding: 9px 13px 10px;
  }

  .mini-mark {
    font-size: 28px;
  }

  .scribble-nav {
    order: 2;
    justify-content: flex-start;
    width: 100%;
    gap: 12px 18px;
    overflow-x: auto;
    padding: 4px 2px 2px;
    scrollbar-width: thin;
  }

  .scribble-nav a {
    font-size: 14px;
  }

  .visual-section {
    border-bottom-width: 5px;
  }

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

  .section-heading h2 {
    font-size: clamp(54px, 18vw, 92px);
  }

  .heading-note {
    font-size: 20px;
  }

  .hero-section {
    min-height: 0;
    padding-top: 45px;
  }

  .hero-grid {
    width: calc(100% - 24px);
    gap: 63px;
    padding: 0 0 78px;
  }

  .eyebrow {
    margin-left: 1px;
    font-size: 19px;
  }

  .hero-copy h1 {
    font-size: clamp(79px, 25vw, 119px);
  }

  .hero-copy h2 {
    margin-top: 24px;
    font-size: clamp(43px, 14vw, 67px);
  }

  .hero-blurt,
  .support-copy {
    margin-left: 0;
  }

  .hero-actions {
    display: grid;
    width: calc(100% - 7px);
  }

  .doodle-button {
    width: 100%;
  }

  .art-board {
    width: calc(100% - 18px);
    padding: 7px;
    border-width: 5px;
    box-shadow: 9px 10px 0 var(--red), 15px 16px 0 var(--ink);
  }

  .hero-art {
    min-height: 210px;
  }

  .hero-art figcaption {
    right: 4px;
    bottom: 4px;
    left: 4px;
    font-size: 12px;
  }

  .file-label {
    top: -19px;
    left: 11px;
    max-width: 80%;
    overflow: hidden;
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .character-chip {
    right: -21px;
    bottom: -28px;
    width: 95px;
  }

  .hero-margin-note {
    display: none;
  }

  .banner-frame {
    width: 100%;
    min-height: 130px;
    border-right: 0;
    border-left: 0;
    transform: none;
  }

  .banner-frame figcaption {
    right: 8px;
    bottom: 8px;
    left: 8px;
    font-size: 14px;
    text-align: center;
  }

  .origin-section,
  .products-section,
  .gallery-section,
  .memory-section,
  .usb-section,
  .capacity-section,
  .news-section,
  .faq-section {
    padding-block: 85px 105px;
  }

  .origin-section::after {
    right: -70px;
    top: 31px;
    font-size: 9px;
  }

  .origin-art {
    width: calc(100% - 16px);
    min-height: 220px;
    padding: 6px;
    border-width: 5px;
    box-shadow: 9px 10px 0 var(--red), 15px 16px 0 var(--ink);
  }

  .lore-beats {
    gap: 18px;
  }

  .lore-beats::before {
    left: 31px;
  }

  .lore-beats li {
    grid-template-columns: 61px 1fr;
    gap: 11px;
    min-height: 134px;
    padding-right: 8px;
  }

  .lore-beats li:nth-child(2) {
    margin-left: -5px;
  }

  .beat-number {
    width: 57px;
    height: 57px;
    font-size: 39px;
  }

  .lore-beats b {
    font-size: 27px;
  }

  .lore-beats p {
    font-size: 17px;
  }

  .products-section::before {
    font-size: 8px;
    letter-spacing: 0.09em;
  }

  .products-heading .heading-note,
  .gallery-heading .heading-note,
  .news-heading .heading-note {
    width: calc(100% - 10px);
    margin-top: 28px;
  }

  .product-shelf {
    display: grid;
    gap: 50px;
    margin-top: 80px;
    padding-inline: 5px;
  }

  .fake-pack,
  .pack-extreme,
  .pack-micro {
    width: calc(100% - 17px);
    min-width: 0;
    min-height: 575px;
    margin-inline: auto;
    transform: rotate(-1deg);
  }

  .pack-extreme {
    min-height: 620px;
    transform: rotate(1deg);
  }

  .pack-micro {
    min-height: 555px;
    transform: rotate(-2deg);
  }

  .fake-pack h3,
  .pack-extreme h3 {
    font-size: clamp(61px, 19vw, 89px);
  }

  .pack-extreme h3 span {
    font-size: 0.56em;
  }

  .pack-wafer,
  .delay-dial {
    width: min(230px, 70%);
  }

  .micro-wafer {
    width: min(165px, 48%);
  }

  .meme-wall {
    gap: 58px;
    margin-top: 75px;
  }

  .meme-tile.tile-wide,
  .meme-tile.tile-medium,
  .meme-tile.tile-narrow {
    width: calc(100% - 18px);
    transform: rotate(-0.8deg);
  }

  .meme-tile:nth-child(even) {
    transform: rotate(0.8deg);
  }

  .image-stage {
    min-height: 240px;
    padding: 6px;
    border-width: 5px;
    box-shadow: 8px 9px 0 var(--red);
  }

  .memory-heading {
    display: block;
  }

  .memory-character {
    width: min(250px, 75%);
    margin-top: 48px;
  }

  .memory-drawer {
    width: calc(100% - 11px);
    margin: 65px auto 0;
    border-width: 5px;
    box-shadow: 9px 10px 0 var(--red);
  }

  .drawer-header {
    padding: 19px 14px 13px;
    border-bottom-width: 5px;
  }

  .drawer-header h3 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .drawer-body {
    grid-template-columns: 1fr;
  }

  .file-list {
    border-right: 0;
    border-bottom: 6px solid var(--ink);
  }

  .memory-file {
    grid-template-columns: 10px minmax(0, 1fr) auto;
    padding-inline: 7px;
    font-size: 10px;
  }

  .memory-preview {
    min-height: 290px;
    border-width: 7px;
    outline-offset: -7px;
  }

  .memory-joke {
    min-height: 75px;
    font-size: 34px;
  }

  .usb-machine,
  .capacity-console,
  .roadmap-column {
    width: calc(100% - 16px);
    padding: 25px 18px;
    border-width: 5px;
    box-shadow: 9px 10px 0 var(--red), 15px 16px 0 var(--ink);
  }

  .usb-port-scene {
    min-height: 230px;
  }

  .usb-stick {
    left: 4%;
    width: 42%;
    height: 70px;
    border-width: 4px;
  }

  .usb-stick::after {
    top: 9px;
    right: -45px;
    width: 40px;
    height: 42px;
    border-width: 4px;
  }

  .usb-stick i:nth-of-type(1) { top: 21px; right: -35px; }
  .usb-stick i:nth-of-type(2) { top: 21px; right: -24px; }
  .usb-stick i:nth-of-type(3) { top: 31px; right: -35px; }
  .usb-stick i:nth-of-type(4) { top: 31px; right: -24px; }

  .usb-port {
    right: 5%;
    width: 30%;
    height: 88px;
    border-width: 5px;
  }

  .usb-port b {
    top: 21px;
    width: 9px;
    height: 29px;
  }

  .usb-machine[data-state="try-1"] .usb-stick {
    transform: translate(15%, -50%) rotate(178deg);
  }

  .usb-machine[data-state="try-2"] .usb-stick {
    transform: translate(26%, -50%) rotate(-3deg);
  }

  .usb-machine[data-state="inserted"] .usb-stick {
    transform: translate(62%, -50%) rotate(1deg);
  }

  .usb-controls {
    display: grid;
  }

  .usb-rulebook {
    width: calc(100% - 18px);
  }

  .capacity-console {
    padding-block: 38px 28px;
    box-shadow: 9px 10px 0 var(--paper-bright), 15px 16px 0 var(--ink);
  }

  .capacity-readout {
    display: block;
  }

  .capacity-readout span {
    display: block;
    margin-bottom: 20px;
  }

  .capacity-readout output {
    font-size: clamp(67px, 21vw, 105px);
  }

  .range-labels {
    font-size: 8px;
  }

  .capacity-buttons {
    display: grid;
  }

  .capacity-scrawl {
    display: none;
  }

  .news-status-line {
    margin-top: 55px;
  }

  .news-item {
    grid-template-columns: 1fr;
  }

  .news-item::before {
    left: 3px;
    transform: translateX(0) rotate(-4deg);
  }

  .news-real,
  .news-dih {
    min-height: 0;
    padding: 42px 24px 35px;
  }

  .news-real {
    padding-top: 58px;
    border-right: 0;
    border-bottom: 5px solid var(--ink);
  }

  .news-real h3,
  .news-dih p {
    font-size: 34px;
  }

  .news-fallback {
    padding: 55px 22px;
  }

  .faq-stack summary {
    padding-right: 55px;
    font-size: 25px;
  }

  .faq-stack details p {
    padding-right: 25px;
    padding-left: 16px;
    font-size: 20px;
  }

  .roadmap-column {
    margin-top: 80px;
    box-shadow: 9px 10px 0 var(--red);
  }

  .roadmap-column::before {
    display: none;
  }

  .site-footer {
    display: block;
    min-height: 0;
    padding: 34px 18px;
  }

  .site-footer > div,
  .footer-state {
    margin-top: 26px;
  }

  .lightbox-body {
    grid-template-columns: 1fr;
  }

  .lightbox-body > img {
    border-right: 0;
    border-bottom: 5px solid var(--ink);
  }

  .meme-lightbox {
    border-width: 5px;
    box-shadow: 8px 9px 0 var(--red);
  }
}

@media (max-width: 390px) {
  .section-inner,
  .hero-grid {
    width: calc(100% - 18px);
  }

  .scribble-nav {
    gap: 13px;
  }

  .section-heading h2,
  .hero-copy h2 {
    font-size: 48px;
  }

  .hero-copy h1 {
    font-size: 76px;
  }

  .dumb-instructions {
    display: grid;
  }

  .dumb-instructions span {
    width: max-content;
    max-width: 100%;
  }

  .character-chip {
    right: -14px;
    width: 82px;
  }

  .lore-beats li {
    grid-template-columns: 53px 1fr;
  }

  .beat-number {
    width: 49px;
    height: 49px;
    font-size: 33px;
  }

  .lore-beats::before {
    left: 27px;
  }

  .fake-pack {
    padding: 25px 16px;
  }

  .memory-file {
    font-size: 9px;
  }

  .usb-stick span {
    font-size: 28px;
  }

  .try-mark {
    font-size: 8px;
  }

  .capacity-readout output {
    font-size: 63px;
  }

  .roadmap-column h3 {
    font-size: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* Exact user-selected card artwork; no generated replacement. */
.mini-mark:has(.selected-nav-logo) { display:flex; align-items:center; padding:4px 6px; background:var(--paper-bright); border-radius:5px; }
.selected-nav-logo { display:block; width:auto; height:60px; object-fit:contain; }
.footer-mark:has(.selected-footer-logo) { display:flex; align-items:center; gap:14px; }
.selected-footer-logo { display:block; width:auto; height:70px; padding:4px; background:var(--paper-bright); border-radius:5px; object-fit:contain; }
@media (max-width:600px) { .selected-nav-logo { height:48px; } .selected-footer-logo { height:58px; } }
