:root {
  --paper: #efe5d3;
  --paper-light: #f8f2e8;
  --paper-deep: #dbc6a6;
  --ink: #151311;
  --muted: #6f665b;
  --kraft: #c8a778;
  --red: #a43c32;
  --border: 3px solid var(--ink);
  --shadow: 8px 8px 0 var(--ink);
  --display: "Bowlby One SC", Impact, sans-serif;
  --mono: "IBM Plex Mono", "Courier New", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% 15%, rgb(255 255 255 / 0.5) 0 1px, transparent 2px),
    radial-gradient(circle at 70% 65%, rgb(70 55 35 / 0.07) 0 1px, transparent 2px),
    linear-gradient(100deg, transparent 0 48%, rgb(116 91 58 / 0.035) 49% 50%, transparent 51% 100%),
    var(--paper);
  background-size: 19px 21px, 27px 31px, 100% 100%, auto;
  font-family: var(--mono);
  line-height: 1.5;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  content: "";
  opacity: 0.24;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.14'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

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

button,
a {
  font: inherit;
}

button {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible {
  outline: 4px solid var(--red);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border: var(--border);
  background: var(--paper-light);
  transform: translateY(-180%);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section-shell,
.site-header,
.site-footer {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 22px 0;
  border-bottom: 2px solid var(--ink);
}

.wordmark {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.site-header nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 0.75rem;
  font-weight: 700;
}

.site-header nav a,
.text-action {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.site-header nav a:hover,
.text-action:hover {
  color: var(--red);
}

.status-row {
  display: flex;
  gap: 8px;
}

.status-row span {
  padding: 6px 9px;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  font-size: 0.68rem;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 720px;
  align-items: center;
  gap: clamp(40px, 8vw, 110px);
  padding: 82px 0 92px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.eyebrow::before {
  content: "✦ ";
  color: var(--red);
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 720px;
  margin-bottom: 28px;
  font-size: clamp(4.4rem, 8.1vw, 8rem);
}

h1 span,
.manifesto-final span {
  color: var(--red);
}

.hero-deck {
  margin-bottom: 30px;
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 600;
}

.hero-actions,
.stage-actions,
.stage-secondary-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button,
.icon-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: var(--border);
  cursor: pointer;
  font-weight: 700;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.button {
  padding: 12px 18px;
}

.button:hover,
.icon-button:hover {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--ink);
}

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

.button-primary:hover {
  background: var(--red);
}

.button-ghost,
.icon-button {
  background: var(--paper-light);
}

.microcopy {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-art {
  position: relative;
  max-width: 620px;
  justify-self: end;
  transform: rotate(1.2deg);
}

.paper-frame {
  position: relative;
  border: var(--border);
  background: var(--paper-light);
  box-shadow: var(--shadow);
}

.paper-frame-hero {
  padding: 16px;
}

.paper-frame-hero img {
  aspect-ratio: 1;
  width: 100%;
  object-fit: cover;
}

.tape {
  position: absolute;
  z-index: 2;
  width: 92px;
  height: 30px;
  border: 1px solid rgb(73 55 33 / 0.25);
  background: rgb(226 205 157 / 0.82);
  box-shadow: inset 0 0 16px rgb(255 255 255 / 0.3);
}

.tape-left {
  top: -12px;
  left: -26px;
  transform: rotate(-33deg);
}

.tape-right {
  right: -28px;
  bottom: 45px;
  transform: rotate(-18deg);
}

.specimen-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 18px 0 0 16px;
  font-size: 0.75rem;
}

.specimen-label strong {
  text-align: right;
}

.ticker {
  overflow: hidden;
  border-block: var(--border);
  background: var(--ink);
  color: var(--paper-light);
  transform: none;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 28px;
  padding: 14px 0;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  animation: ticker 24s linear infinite;
}

.ticker-track i {
  color: var(--red);
  font-style: normal;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.banner-strip {
  padding: 118px 0 80px;
}

.banner-frame {
  position: relative;
  padding: 12px;
  border: var(--border);
  background: var(--paper-light);
  box-shadow: var(--shadow);
  transform: rotate(-0.5deg);
}

.banner-frame img {
  width: 100%;
}

.banner-tape {
  top: -14px;
  left: 50%;
  transform: translateX(-50%) rotate(2deg);
}

.banner-strip > p {
  margin: 24px 0 0;
  text-align: center;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.story {
  padding: 92px 0 132px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 52px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.6rem);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.story-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 12px 12px 24px;
  border: var(--border);
  background: var(--paper-light);
  box-shadow: 6px 6px 0 var(--ink);
}

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

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

.story-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: saturate(0.9);
}

.story-card > div {
  padding: 22px 12px 0;
}

.story-card h3 {
  margin-bottom: 6px;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.2vw, 2rem);
  line-height: 1;
}

.story-card p {
  margin: 0;
  font-size: 0.82rem;
}

.story-number {
  position: absolute;
  top: -18px;
  right: 14px;
  z-index: 2;
  padding: 5px 9px;
  border: 2px solid var(--ink);
  background: var(--red);
  color: var(--paper-light);
  font-weight: 700;
}

.hat-section {
  padding: 112px 0 132px;
  border-block: var(--border);
  background: var(--paper-deep);
}

.hat-heading {
  align-items: end;
}

.section-note {
  max-width: 250px;
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 600;
}

.hat-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(290px, 0.85fr);
  gap: clamp(32px, 7vw, 90px);
  align-items: center;
  margin-bottom: 70px;
}

.stage-visual {
  position: relative;
  padding: 18px;
  border: var(--border);
  background: var(--paper-light);
  box-shadow: var(--shadow);
  transform: rotate(-0.8deg);
}

.stage-visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.stage-tape-one {
  top: -15px;
  left: 12%;
  transform: rotate(-8deg);
}

.stage-tape-two {
  right: -28px;
  bottom: 18%;
  transform: rotate(76deg);
}

.stage-index {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.stage-copy h3 {
  margin-bottom: 18px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.8vw, 5rem);
  line-height: 0.95;
}

.stage-copy > p:not(.stage-index, .toast) {
  max-width: 450px;
  margin-bottom: 28px;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 600;
}

.icon-button {
  width: 50px;
  padding: 0;
  font-size: 1.25rem;
}

.stage-secondary-actions {
  margin-top: 26px;
  gap: 24px;
}

.text-action {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
}

.toast {
  min-height: 22px;
  margin: 14px 0 0;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
}

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

.hat-card {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 9px 9px 16px;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  cursor: pointer;
  text-align: left;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 150ms ease, box-shadow 150ms ease, background 150ms ease;
}

.hat-card:nth-child(3n + 1) {
  transform: rotate(-0.7deg);
}

.hat-card:nth-child(3n + 2) {
  transform: rotate(0.5deg);
}

.hat-card:hover,
.hat-card.is-active {
  background: #f9edcf;
  transform: translate(3px, 3px) rotate(0deg);
  box-shadow: 1px 1px 0 var(--ink);
}

.hat-card.is-active::after {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 4px 7px;
  content: "CURRENT META";
  border: 2px solid var(--ink);
  background: var(--red);
  color: white;
  font-size: 0.56rem;
  font-weight: 700;
}

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

.hat-card strong,
.hat-card span {
  display: block;
  padding-inline: 7px;
}

.hat-card strong {
  margin-top: 13px;
  font-family: var(--display);
  font-size: 0.95rem;
  line-height: 1.05;
}

.hat-card span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.66rem;
}

.manifesto {
  padding: 140px 0;
  text-align: center;
}

.manifesto > p:not(.eyebrow) {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 7.2vw, 7.5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.manifesto-final {
  margin-top: 34px !important;
}

.manifesto small {
  display: block;
  margin-top: 30px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 34px 0 46px;
  border-top: var(--border);
  font-size: 0.68rem;
  font-weight: 700;
}

.site-footer p {
  margin: 0;
}

.site-footer p:last-child {
  justify-self: end;
  text-align: right;
}

.noscript {
  margin: 0;
  padding: 14px;
  background: var(--red);
  color: white;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 550ms ease, transform 550ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr 0.9fr;
    min-height: auto;
    gap: 48px;
  }

  h1 {
    font-size: clamp(4rem, 9vw, 6rem);
  }

  .story-grid {
    gap: 18px;
  }

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

@media (max-width: 740px) {
  .section-shell,
  .site-header,
  .site-footer {
    width: min(100% - 28px, 1240px);
  }

  .status-row span:first-child {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 64px 0 78px;
  }

  .hero-art {
    width: calc(100% - 16px);
    max-width: 560px;
    justify-self: center;
  }

  h1 {
    font-size: clamp(3.8rem, 18vw, 6.4rem);
  }

  .hero-deck {
    font-size: 1rem;
  }

  .banner-strip {
    padding: 92px 0 56px;
  }

  .banner-frame {
    padding: 7px;
    overflow-x: auto;
  }

  .banner-frame img {
    min-width: 760px;
  }

  .banner-strip > p {
    font-size: 0.64rem;
  }

  .story {
    padding: 74px 0 105px;
  }

  .section-heading,
  .hat-heading {
    display: block;
    margin-bottom: 40px;
  }

  .section-heading h2 {
    font-size: clamp(3.1rem, 16vw, 5rem);
  }

  .section-note {
    margin-top: 18px;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .story-card {
    max-width: 540px;
    margin-inline: auto;
  }

  .hat-section {
    padding: 88px 0 110px;
  }

  .hat-stage {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .stage-copy h3 {
    font-size: clamp(2.6rem, 13vw, 4.5rem);
  }

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

  .hat-card {
    box-shadow: 3px 3px 0 var(--ink);
  }

  .hat-card strong {
    font-size: 0.76rem;
  }

  .hat-card span {
    display: none;
  }

  .manifesto {
    padding: 105px 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer p:last-child {
    justify-self: center;
    text-align: center;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 3.55rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    display: grid;
  }

  .stage-actions {
    display: grid;
    grid-template-columns: 48px 1fr 48px;
  }

  .stage-actions .button {
    min-width: 0;
    padding-inline: 8px;
    font-size: 0.75rem;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 740px) {
  .tape-left { left: -4px; }
  .tape-right { right: -4px; }
  .ticker { transform: none; }
}
/* DESIGN REFINEMENT V2 */
:root {
  --paper: #eee3d0;
  --paper-light: #fbf7ee;
  --paper-deep: #d9c39f;
  --red: #ad382e;
  --border: 2px solid var(--ink);
  --shadow: 0 26px 70px rgb(31 24 17 / 0.18), 7px 7px 0 var(--ink);
  --display: "Anton", "Arial Narrow", Impact, sans-serif;
}

body {
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.28), transparent 22%),
    linear-gradient(110deg, rgb(255 255 255 / 0.18), transparent 55%),
    var(--paper);
}

body::before {
  opacity: 0.11;
}

.site-header {
  padding-block: 25px;
  border-bottom: 1px solid rgb(21 19 17 / 0.65);
}

.wordmark {
  font-size: 1.45rem;
  letter-spacing: 0.015em;
}

.status-row span {
  padding: 6px 10px;
  border: 1px solid rgb(21 19 17 / 0.55);
  background: rgb(251 247 238 / 0.62);
}

.hero {
  grid-template-columns: 0.92fr 1.08fr;
  min-height: 760px;
  padding: 92px 0 106px;
}

h1,
h2 {
  line-height: 0.88;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(5rem, 9.1vw, 9rem);
}

h1 span,
.verdict-line strong {
  color: var(--red);
}

.button,
.icon-button {
  border: 2px solid var(--ink);
  box-shadow: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.icon-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgb(21 19 17 / 0.16);
}

.hero-art {
  transform: rotate(0.7deg);
}

.paper-frame,
.banner-frame {
  border: 1px solid rgb(21 19 17 / 0.8);
}

.ticker {
  border-block: 1px solid var(--ink);
}

.banner-frame {
  transform: rotate(-0.25deg);
}

.story {
  padding: 104px 0 142px;
}

.story-grid {
  gap: 24px;
}

.story-card {
  border: 1px solid rgb(21 19 17 / 0.75);
  box-shadow: 0 18px 45px rgb(40 31 21 / 0.12), 4px 4px 0 rgb(21 19 17 / 0.92);
}

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

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

.hat-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--ink);
  background: #181512;
  color: var(--paper-light);
}

.hat-section::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.16;
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgb(255 255 255 / 0.08) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 0 49.8%, rgb(255 255 255 / 0.06) 50%, transparent 50.2%);
  background-size: 72px 72px;
}

.hat-section .section-shell {
  position: relative;
  z-index: 1;
}

.hat-section .eyebrow,
.hat-section .section-note {
  color: #cfc4b4;
}

.stage-visual {
  border: 1px solid var(--paper-light);
}

.hat-section .stage-copy > p:not(.stage-index, .toast) {
  color: #d7ccbd;
}

.hat-section .icon-button,
.hat-section .button-primary {
  border-color: var(--paper-light);
}

.hat-section .button-primary {
  background: var(--paper-light);
  color: var(--ink);
}

.hat-section .button-primary:hover {
  background: var(--red);
  color: white;
}

.hat-section .icon-button {
  background: transparent;
  color: var(--paper-light);
}

.hat-section .text-action {
  color: var(--paper-light);
}

.hat-card {
  color: var(--ink);
}

.manifesto {
  padding: 138px 0 126px;
  text-align: left;
}

.manifesto-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: 60px;
  padding-bottom: 54px;
  border-bottom: 2px solid var(--ink);
}

.manifesto-head h2 {
  margin: 0;
  font-size: clamp(4.8rem, 9vw, 9.2rem);
}

.manifesto-thesis {
  max-width: 420px;
  margin: 0 0 8px auto;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 600;
}

.manifesto-list {
  border-bottom: 2px solid var(--ink);
}

.manifesto-step {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: baseline;
  gap: 26px;
  padding: 29px 0 25px;
  border-bottom: 1px solid rgb(21 19 17 / 0.34);
}

.manifesto-step:last-child {
  border-bottom: 0;
}

.manifesto-step span,
.manifesto-step em {
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.manifesto-step span {
  color: var(--red);
}

.manifesto-step em {
  color: var(--muted);
}

.manifesto-step strong {
  font-family: var(--display);
  font-size: clamp(3rem, 6.2vw, 6rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.015em;
}

.manifesto-verdict {
  position: relative;
  overflow: hidden;
  margin-top: 64px;
  padding: clamp(30px, 5vw, 64px);
  background: var(--ink);
  color: var(--paper-light);
  box-shadow: 9px 9px 0 var(--red);
}

.manifesto-verdict::after {
  position: absolute;
  right: -0.04em;
  bottom: -0.42em;
  content: "12";
  color: rgb(255 255 255 / 0.045);
  font-family: var(--display);
  font-size: clamp(15rem, 35vw, 34rem);
  line-height: 1;
}

.verdict-kicker {
  position: relative;
  z-index: 1;
  margin-bottom: 40px;
  color: #cfc4b4;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.verdict-line {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 34px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 8.6vw, 8.6rem);
  line-height: 0.86;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.verdict-line strong {
  font-weight: 400;
}

.manifesto-verdict small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 38px;
  color: #cfc4b4;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .verdict-line {
    font-size: clamp(3.6rem, 8.4vw, 6rem);
  }
}

@media (max-width: 740px) {
  .hero {
    padding: 70px 0 84px;
  }

  h1 {
    font-size: clamp(4.2rem, 19vw, 6.7rem);
  }

  .manifesto {
    padding: 100px 0 94px;
  }

  .manifesto-head {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-bottom: 38px;
  }

  .manifesto-head h2 {
    font-size: clamp(4rem, 18vw, 7rem);
  }

  .manifesto-thesis {
    margin-left: 0;
  }

  .manifesto-step {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 8px 12px;
    padding: 24px 0 20px;
  }

  .manifesto-step strong {
    font-size: clamp(2.7rem, 13vw, 5rem);
  }

  .manifesto-step em {
    grid-column: 2;
  }

  .manifesto-verdict {
    margin-top: 46px;
  }

  .verdict-line {
    flex-direction: column;
    gap: 4px;
    font-size: clamp(3.7rem, 17vw, 6rem);
    white-space: normal;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 4.05rem;
  }
}
/* LOOP REVISION V2.1 */
@media (max-width: 740px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .manifesto .eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
  }
}
/* USER COLOR REVISION V2.2 */
.hat-section {
  background: var(--paper-deep);
  color: var(--ink);
}

.hat-section::before {
  opacity: 0.08;
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgb(21 19 17 / 0.12) 50%, transparent 50.2%),
    linear-gradient(0deg, transparent 0 49.8%, rgb(21 19 17 / 0.09) 50%, transparent 50.2%);
}

.hat-section .eyebrow,
.hat-section .section-note,
.hat-section .stage-copy > p:not(.stage-index, .toast) {
  color: var(--muted);
}

.stage-visual,
.hat-section .icon-button,
.hat-section .button-primary {
  border-color: var(--ink);
}

.hat-section .button-primary {
  background: var(--ink);
  color: var(--paper-light);
}

.hat-section .button-primary:hover {
  background: var(--red);
  color: white;
}

.hat-section .icon-button {
  background: var(--paper-light);
  color: var(--ink);
}

.hat-section .text-action {
  color: var(--ink);
}
/* MANIFESTO REDESIGN V3 */
.manifesto-v3 {
  padding: 132px 0 112px;
}

.manifesto-v3-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: clamp(54px, 9vw, 120px);
  padding-bottom: 112px;
}

.manifesto-v3-copy h2 {
  margin: 0;
  font-size: clamp(6rem, 12.2vw, 11.8rem);
  line-height: 0.78;
  letter-spacing: -0.025em;
}

.manifesto-v3-copy h2 span {
  color: var(--red);
}

.manifesto-v3-deck {
  max-width: 560px;
  margin: 38px 0 30px;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 600;
}

.manifesto-v3-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.manifesto-v3-facts span {
  padding: 7px 10px;
  border: 1px solid rgb(21 19 17 / 0.65);
  background: rgb(251 247 238 / 0.55);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.manifesto-specimen {
  position: relative;
  width: min(100%, 470px);
  justify-self: end;
  margin: 0;
  padding: 12px 12px 18px;
  border: 2px solid var(--ink);
  background: var(--paper-light);
  box-shadow: 0 28px 60px rgb(46 34 22 / 0.15), 7px 7px 0 var(--ink);
  transform: rotate(1.1deg);
}

.manifesto-specimen img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-bottom: 1px solid var(--ink);
}

.manifesto-specimen figcaption {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 5px 0;
  font-size: 0.62rem;
}

.manifesto-specimen figcaption span {
  color: var(--muted);
}

.manifesto-specimen figcaption strong {
  max-width: 190px;
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1;
  text-align: right;
}

.specimen-tape {
  top: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(-5deg);
}

.specimen-stamp {
  position: absolute;
  right: -38px;
  bottom: 86px;
  display: grid;
  width: 124px;
  aspect-ratio: 1;
  place-content: center;
  border: 4px double var(--red);
  border-radius: 50%;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-align: center;
  transform: rotate(-12deg);
}

.manifesto-cycle-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  padding-top: 28px;
  border-top: 2px solid var(--ink);
}

.manifesto-cycle-heading .eyebrow,
.manifesto-cycle-heading > p {
  margin-bottom: 0;
}

.manifesto-cycle-heading > p:last-child {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.manifesto-cycle {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px;
  margin-top: 42px;
}

.cycle-card {
  position: relative;
  min-width: 0;
  padding: 10px 10px 24px;
  border: 1px solid rgb(21 19 17 / 0.82);
  background: var(--paper-light);
  box-shadow: 4px 4px 0 var(--ink);
}

.cycle-card:nth-child(1) {
  transform: rotate(-0.6deg);
}

.cycle-card:nth-child(2) {
  transform: rotate(0.45deg);
}

.cycle-card:nth-child(3) {
  transform: rotate(-0.25deg);
}

.cycle-card:not(:last-child)::after {
  position: absolute;
  top: 46%;
  right: -38px;
  z-index: 3;
  display: grid;
  width: 42px;
  aspect-ratio: 1;
  place-content: center;
  border: 2px solid var(--ink);
  border-radius: 50%;
  content: "→";
  background: var(--red);
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
}

.cycle-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-block: 1px solid var(--ink);
}

.cycle-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 3px 10px;
}

.cycle-meta span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 700;
}

.cycle-meta em {
  font-size: 0.66rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.cycle-card h3 {
  margin: 20px 8px 5px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  font-weight: 400;
  line-height: 0.95;
}

.cycle-card > p {
  margin: 0 8px;
  color: var(--muted);
  font-size: 0.76rem;
}

.manifesto-finale {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 56px;
  margin-top: 112px;
  padding: 52px 0 46px;
  border-block: 3px solid var(--ink);
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 0.2), transparent);
}

.finale-note {
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.finale-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 30px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.8rem, 9.2vw, 9rem);
  line-height: 0.84;
  letter-spacing: -0.02em;
}

.finale-line strong {
  color: var(--red);
  font-weight: 400;
}

.manifesto-finale small {
  display: block;
  margin-top: 26px;
  color: var(--muted);
}

.finale-seal {
  display: grid;
  width: 148px;
  aspect-ratio: 1;
  place-content: center;
  border: 3px solid var(--red);
  border-radius: 50%;
  color: var(--red);
  text-align: center;
  transform: rotate(8deg);
}

.finale-seal span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.finale-seal strong {
  font-family: var(--display);
  font-size: 3.4rem;
  font-weight: 400;
  line-height: 0.92;
}

@media (max-width: 980px) {
  .manifesto-v3-intro {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
    gap: 44px;
  }

  .specimen-stamp {
    right: -18px;
  }

  .manifesto-cycle {
    gap: 26px;
  }

  .cycle-card:not(:last-child)::after {
    right: -31px;
    width: 36px;
  }

  .finale-line {
    font-size: clamp(4rem, 8.6vw, 6rem);
  }
}

@media (max-width: 740px) {
  .manifesto-v3 {
    padding: 96px 0 82px;
  }

  .manifesto-v3-intro {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-bottom: 90px;
  }

  .manifesto-v3-copy h2 {
    font-size: clamp(5rem, 24vw, 7.2rem);
  }

  .manifesto-specimen {
    width: calc(100% - 14px);
    max-width: 470px;
    justify-self: center;
  }

  .specimen-stamp {
    right: -8px;
    bottom: 72px;
    width: 104px;
    font-size: 0.62rem;
  }

  .manifesto-cycle-heading {
    display: block;
  }

  .manifesto-cycle-heading > p:last-child {
    margin-top: 12px;
  }

  .manifesto-cycle {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .cycle-card {
    width: min(100%, 430px);
    margin-inline: auto;
  }

  .cycle-card:not(:last-child)::after {
    top: auto;
    right: auto;
    bottom: -38px;
    left: 50%;
    width: 38px;
    content: "↓";
    transform: translateX(-50%);
  }

  .cycle-card h3 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }

  .manifesto-finale {
    grid-template-columns: 1fr;
    gap: 38px;
    margin-top: 88px;
    padding: 44px 0 38px;
  }

  .finale-line {
    display: block;
    font-size: clamp(4.1rem, 20vw, 6.5rem);
  }

  .finale-line span,
  .finale-line strong {
    display: block;
  }

  .finale-seal {
    width: 122px;
    justify-self: end;
  }

  .finale-seal strong {
    font-size: 2.8rem;
  }
}
/* LOOP REVISION V3.1 */
@media (max-width: 740px) {
  .manifesto-cycle {
    gap: 48px;
  }

  .cycle-card {
    display: grid;
    grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
    grid-template-rows: auto 1fr auto;
    width: min(100%, 430px);
    padding: 8px;
  }

  .cycle-meta {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .cycle-card img {
    grid-column: 1;
    grid-row: 2 / 4;
    align-self: stretch;
    height: 100%;
    min-height: 150px;
  }

  .cycle-card h3 {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    margin: 14px 10px 5px;
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .cycle-card > p {
    grid-column: 2;
    grid-row: 3;
    margin: 0 10px 14px;
  }
}
/* MANIFESTO REFINED V2.3 */
.manifesto-refined {
  padding: 118px 0 104px;
}

.manifesto-refined .manifesto-head {
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
  gap: clamp(40px, 8vw, 104px);
  padding-bottom: 36px;
  border-bottom-width: 1px;
}

.manifesto-refined .manifesto-head h2 {
  max-width: 760px;
  font-size: clamp(5rem, 8.8vw, 8.8rem);
  line-height: 0.82;
  letter-spacing: -0.018em;
}

.manifesto-refined .manifesto-thesis {
  max-width: 360px;
  margin-bottom: 2px;
  font-size: clamp(0.9rem, 1.35vw, 1.08rem);
  line-height: 1.48;
}

.manifesto-refined .manifesto-list {
  border-bottom-width: 1px;
}

.manifesto-refined .manifesto-step {
  grid-template-columns: 58px minmax(0, 1fr) auto;
  gap: 22px;
  padding: 22px 0 19px;
}

.manifesto-refined .manifesto-step strong {
  font-size: clamp(3.15rem, 5.4vw, 5.3rem);
  line-height: 0.88;
}

.manifesto-refined .manifesto-step span,
.manifesto-refined .manifesto-step em {
  font-size: 0.62rem;
}

.manifesto-refined .manifesto-verdict {
  margin: 38px clamp(0px, 1.8vw, 26px) 0;
  padding: 21px 28px 19px;
  border: 1px solid rgb(255 255 255 / 0.08);
  background: #171512;
  box-shadow: 3px 3px 0 var(--red);
}

.manifesto-refined .manifesto-verdict::after {
  right: 0.02em;
  bottom: -0.48em;
  font-size: clamp(10rem, 19vw, 18rem);
}

.manifesto-refined .verdict-kicker {
  margin-bottom: 11px;
  font-size: 0.56rem;
}

.manifesto-refined .verdict-line {
  gap: 24px;
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 0.86;
}

.manifesto-refined .manifesto-verdict small {
  margin-top: 10px;
  font-size: 0.64rem;
}

@media (max-width: 740px) {
  .manifesto-refined {
    padding: 88px 0 78px;
  }

  .manifesto-refined .manifesto-head {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-bottom: 30px;
  }

  .manifesto-refined .manifesto-head h2 {
    font-size: clamp(4.25rem, 18vw, 6.4rem);
  }

  .manifesto-refined .manifesto-thesis {
    max-width: none;
    margin: 0;
  }

  .manifesto-refined .manifesto-step {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 7px 10px;
    padding: 20px 0 17px;
  }

  .manifesto-refined .manifesto-step strong {
    font-size: clamp(2.75rem, 13.5vw, 4.5rem);
  }

  .manifesto-refined .manifesto-step em {
    grid-column: 2;
  }

  .manifesto-refined .manifesto-verdict {
    margin: 30px 0 0;
    padding: 21px 18px 18px;
    box-shadow: 3px 3px 0 var(--red);
  }

  .manifesto-refined .verdict-line {
    display: block;
    font-size: clamp(3.25rem, 15vw, 5.2rem);
    white-space: normal;
  }

  .manifesto-refined .verdict-line span,
  .manifesto-refined .verdict-line strong {
    display: block;
  }
}
/* COMIC HAND TYPOGRAPHY V4 */
:root {
  --display: "Bangers", "Comic Sans MS", cursive;
  --mono: "Patrick Hand", "Comic Sans MS", cursive;
  --label: "Patrick Hand SC", "Comic Sans MS", cursive;
}

body {
  font-family: var(--mono);
  font-size: 1.04rem;
  line-height: 1.42;
  letter-spacing: 0.012em;
}

.site-header nav,
.status-row,
.eyebrow,
.story-number,
.specimen-label,
.ticker,
.button,
.icon-button,
.text-action,
.microcopy,
.section-note,
.stage-index,
.hat-card,
.manifesto-step span,
.manifesto-step em,
.verdict-kicker,
.manifesto-verdict small,
.site-footer {
  font-family: var(--label);
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.024em;
}

.wordmark {
  letter-spacing: 0.055em;
}

.eyebrow {
  margin-bottom: 15px;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
}

.hero-copy {
  min-width: 0;
}

#hero-title {
  max-width: none;
  margin-bottom: 23px;
  font-size: clamp(4.7rem, 7.3vw, 7.2rem);
  line-height: 0.9;
  letter-spacing: 0.026em;
}

.hero-title-line {
  display: block;
  color: var(--red);
  white-space: nowrap;
}

.hero-title-line-primary {
  color: var(--ink);
}

.hero-deck {
  font-size: clamp(1.2rem, 1.8vw, 1.48rem);
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: 0.022em;
}

.button,
.icon-button,
.text-action {
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0.035em;
}

.section-heading h2,
.hat-heading h2 {
  line-height: 0.94;
  letter-spacing: 0.026em;
}

.story-card h3,
.stage-copy h3 {
  line-height: 0.96;
  letter-spacing: 0.028em;
}

.story-card p,
.stage-copy > p:not(.stage-index, .toast),
.hat-card span {
  font-size: 1.02rem;
  line-height: 1.28;
}

.manifesto-refined .manifesto-head h2 {
  font-size: clamp(4.8rem, 7.5vw, 7.5rem);
  line-height: 0.92;
  letter-spacing: 0.027em;
}

.manifesto-refined .manifesto-thesis {
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
  font-weight: 400;
  line-height: 1.32;
  letter-spacing: 0.02em;
}

.manifesto-refined .manifesto-step {
  align-items: center;
}

.manifesto-refined .manifesto-step strong {
  font-size: clamp(3.1rem, 4.7vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: 0.03em;
}

.manifesto-refined .manifesto-step span,
.manifesto-refined .manifesto-step em {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
}

.manifesto-refined .verdict-line {
  font-size: clamp(3.1rem, 4.65vw, 4.7rem);
  line-height: 0.93;
  letter-spacing: 0.032em;
}

.manifesto-refined .verdict-kicker,
.manifesto-refined .manifesto-verdict small {
  letter-spacing: 0.055em;
}

@media (max-width: 980px) {
  #hero-title {
    font-size: clamp(4.1rem, 7.9vw, 5.5rem);
  }
}

@media (max-width: 740px) {
  #hero-title {
    font-size: clamp(4rem, 20vw, 5.2rem);
    line-height: 0.91;
  }

  .manifesto-refined .manifesto-head h2 {
    font-size: clamp(4rem, 17.5vw, 6rem);
    line-height: 0.93;
  }

  .manifesto-refined .manifesto-step strong {
    font-size: clamp(2.8rem, 13vw, 4.2rem);
  }

  .manifesto-refined .verdict-line {
    font-size: clamp(3.1rem, 14.6vw, 4.8rem);
    line-height: 0.92;
  }
}

@media (max-width: 350px) {
  #hero-title {
    font-size: 3.7rem;
  }
}