:root {
  --paper: #f3ebda;
  --paper-deep: #e7dcc6;
  --cream: #fffaf1;
  --white: #fffcf6;
  --ink: #1b1714;
  --ink-soft: #3b342e;
  --navy: #102a5c;
  --arc: #1d4ea6;
  --sky: #c9def4;
  --sky-pale: #e7f1fb;
  --yellow: #f3c22b;
  --yellow-hot: #ffd85a;
  --line: 3px solid var(--ink);
  --shadow: 5px 5px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
  --font-display: "Archivo Black", "Arial Black", Impact, sans-serif;
  --font-label: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Figtree", "Segoe UI", system-ui, sans-serif;
  --font-hand: "Caveat", "Segoe Print", "Comic Sans MS", cursive;
  --header-h: 78px;
  --radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
  overflow-x: clip;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  min-height: 100%;
  overflow-x: clip;
}

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

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

button {
  font: inherit;
  cursor: pointer;
  color: inherit;
  background: none;
  border: 0;
}

code {
  font-family: ui-monospace, "Cascadia Code", "SFMono-Regular", Menlo, Consolas, monospace;
}

:focus-visible {
  outline: 3px solid var(--arc);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 200;
  background: var(--yellow);
  color: var(--ink);
  border: var(--line);
  padding: 0.55rem 0.9rem;
  font-family: var(--font-label);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skip-link:focus {
  top: 12px;
}

.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;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(29, 78, 166, 0.08), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(243, 194, 43, 0.12), transparent 24%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(27, 23, 20, 0.015) 3px,
      rgba(27, 23, 20, 0.015) 4px
    );
}

::selection {
  background: var(--yellow);
  color: var(--ink);
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.55rem 1.05rem;
  border: var(--line);
  box-shadow: var(--shadow-sm);
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-label);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
  user-select: none;
}

.btn-lg {
  min-height: 52px;
  padding: 0.8rem 1.35rem;
  font-size: 1.18rem;
}

.btn-buy {
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--ink);
}

.btn-navy {
  background: var(--navy);
  color: var(--cream);
}

.btn-ghost {
  background: var(--white);
}

.btn-copy {
  background: var(--sky-pale);
  flex-shrink: 0;
  min-width: 108px;
}

.btn:active,
.btn.is-pressed {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--ink);
}

@media (hover: hover) and (pointer: fine) {
  .btn-buy:hover,
  .header-actions .btn-buy:hover,
  .cta-panel .btn-buy:hover {
    background: var(--yellow-hot);
    transform: translate(-1px, -2px) rotate(-0.4deg);
    box-shadow: 7px 8px 0 var(--ink);
  }

  .btn-navy:hover {
    background: var(--arc);
    transform: translate(-1px, -1px);
    box-shadow: 5px 5px 0 var(--ink);
  }

  .btn-ghost:hover,
  .btn-copy:hover {
    background: var(--sky);
    transform: translate(-1px, -1px);
  }
}

.icon-x {
  width: 0.95rem;
  height: 0.95rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(243, 235, 218, 0.92);
  border-bottom: 4px solid var(--ink);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 241, 0.96);
  box-shadow: 0 8px 0 rgba(27, 23, 20, 0.08);
}

.header-inner {
  width: min(1180px, 100%);
  padding: 0 16px;
  margin: 0 auto;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-right: auto;
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border: 3px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  background: var(--navy);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.brand-ticker {
  font-family: var(--font-label);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--arc);
  font-size: 0.92rem;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1.05rem;
}

.nav-desktop a {
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .nav-desktop a:hover::after,
  .nav-desktop a:focus-visible::after {
    transform: scaleX(1);
  }
}

.header-end {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
  flex-shrink: 0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -5px;
}

.nav-toggle-bars::after {
  top: 5px;
}

.nav-mobile {
  display: none;
  border-top: 3px solid var(--ink);
  background: var(--cream);
  padding: 0.8rem 1rem 1rem;
}

.nav-mobile a {
  display: block;
  padding: 0.75rem 0.4rem;
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 1.2rem;
  border-bottom: 2px dashed rgba(27, 23, 20, 0.18);
}

.nav-mobile .btn {
  width: 100%;
  margin-top: 0.8rem;
  border-bottom: var(--line);
}

/* Hero — comic cover */

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 1.4rem auto 0;
  position: relative;
  z-index: 1;
}

.hero-cover {
  background: var(--cream);
  border: 4px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
  overflow: visible;
  position: relative;
}

.hero-masthead {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.4rem 1rem;
  background: var(--navy);
  color: var(--cream);
  padding: 0.55rem 1rem;
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.92rem;
  border-bottom: 4px solid var(--ink);
}

.mast-dot {
  opacity: 0.55;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(280px, 1.08fr);
  grid-template-areas: "copy stage";
  gap: 0.5rem 0.2rem;
  align-items: center;
  padding: 1.4rem 1.4rem 0.4rem;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(201, 222, 244, 0.55), transparent 32%),
    linear-gradient(180deg, rgba(255, 250, 241, 0.2), transparent 40%);
}

.hero-copy {
  grid-area: copy;
  position: relative;
  z-index: 2;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-label);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--arc);
  font-size: 0.92rem;
  margin-bottom: 0.7rem;
}

.kicker-line {
  flex: 1;
  height: 2px;
  max-width: 72px;
  background: var(--ink);
  transform: rotate(-2deg);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 6.4rem);
  line-height: 0.86;
  letter-spacing: -0.03em;
  position: relative;
  width: fit-content;
}

.title-underline {
  display: block;
  width: min(100%, 340px);
  height: 16px;
  color: var(--arc);
  margin-top: 0.15rem;
}

.underline-path {
  stroke-dasharray: 360;
  stroke-dashoffset: 360;
}

.is-underlined .underline-path {
  animation: draw-line 0.9s ease forwards 0.15s;
}

.hero-ticker {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--arc);
  letter-spacing: 0.02em;
  margin: 0.45rem 0 0.85rem;
}

.hero-hook {
  font-family: var(--font-label);
  font-weight: 800;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  letter-spacing: 0.08em;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 0.85rem;
}

.hero-support {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 28ch;
  margin-bottom: 1.3rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-stage {
  grid-area: stage;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 420px;
  padding: 1.5rem 0.5rem 0;
}

.parallax {
  --px: 0px;
  --py: 0px;
}

.stage-sunburst {
  position: absolute;
  width: min(120%, 560px);
  aspect-ratio: 1;
  left: 50%;
  top: 46%;
  transform: translate(calc(-50% + var(--px)), calc(-50% + var(--py)));
  background: repeating-conic-gradient(
    from 8deg,
    var(--yellow-hot) 0 7deg,
    var(--sky) 7deg 9deg,
    var(--cream) 9deg 16deg
  );
  border-radius: 50%;
  opacity: 0.55;
  z-index: 0;
  mask-image: radial-gradient(circle, black 34%, transparent 72%);
}

.stage-blob {
  position: absolute;
  z-index: 0;
  border: 3px solid var(--ink);
}

.stage-blob-a {
  width: 58%;
  height: 62%;
  right: 4%;
  top: 12%;
  background: var(--navy);
  border-radius: 42% 58% 50% 50%;
  opacity: 0.9;
  transform: translate(var(--px), var(--py));
}

.stage-blob-b {
  width: 38%;
  height: 30%;
  left: 8%;
  bottom: 18%;
  background: var(--sky);
  border-radius: 60% 40% 55% 45%;
  transform: rotate(-12deg) translate(var(--px), var(--py));
}

.stage-halftone {
  position: absolute;
  inset: 8% 6% 6% 10%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.22;
  background-image: radial-gradient(circle, var(--ink) 1.1px, transparent 1.2px);
  background-size: 8px 8px;
  mask-image: radial-gradient(circle at 50% 45%, black 20%, transparent 70%);
  transform: translate(var(--px), var(--py));
}

.deco-star {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 18px;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  filter: drop-shadow(2px 2px 0 var(--ink));
  transform: translate(var(--px), var(--py));
}

.star-a {
  top: 12%;
  left: 10%;
  width: 22px;
  height: 22px;
}

.star-b {
  top: 22%;
  right: 8%;
  background: var(--cream);
  border: 0;
}

.star-c {
  bottom: 24%;
  left: 6%;
  width: 14px;
  height: 14px;
  background: var(--navy);
}

.motion-marks {
  position: absolute;
  left: 0;
  top: 10%;
  width: 90px;
  height: 58%;
  z-index: 2;
  overflow: visible;
  transform: translate(var(--px), var(--py));
}

.motion-marks path {
  fill: none;
  stroke: var(--ink);
  stroke-width: 3;
  stroke-linecap: round;
  opacity: 0.7;
}

.hero-mascot {
  position: relative;
  z-index: 4;
  width: auto;
  height: auto;
  max-width: min(100%, 520px);
  max-height: min(680px, 78vh);
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(8px 14px 0 rgba(16, 42, 92, 0.18));
}

.speech-cover {
  grid-area: stage;
  justify-self: start;
  align-self: start;
  position: relative;
  z-index: 6;
  max-width: 13rem;
  margin: 6% 0 0 1%;
}

.speech-inline {
  display: none;
}

.speech-bubble {
  position: relative;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 28px 28px 28px 10px;
  padding: 0.7rem 0.95rem 0.85rem;
  font-family: var(--font-hand);
  font-size: 1.45rem;
  line-height: 1.15;
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(-3deg);
  animation: bubble-float 4.2s ease-in-out infinite;
  pointer-events: none;
}

.speech-tail {
  position: absolute;
  right: 22%;
  bottom: -14px;
  width: 18px;
  height: 18px;
  background: var(--white);
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  transform: rotate(38deg);
}

.stamp {
  position: absolute;
  right: 2%;
  bottom: 8%;
  z-index: 6;
  width: 108px;
  height: 108px;
  border: 3px dashed var(--arc);
  color: var(--arc);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-label);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.78rem;
  line-height: 1.15;
  transform: rotate(12deg) translate(var(--px), var(--py));
  background: rgba(255, 250, 241, 0.72);
}

.hero-ticker-tape {
  border-top: 4px solid var(--ink);
  background: var(--yellow);
  overflow: hidden;
  white-space: nowrap;
}

.tape-track {
  display: inline-flex;
  width: max-content;
  gap: 1.6rem;
  padding: 0.45rem 0;
  font-family: var(--font-label);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: marquee 22s linear infinite;
}

.tape-track span + span::before {
  content: " ★ ";
  color: var(--navy);
}

/* CA newspaper strip */

.ca-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 1.4rem auto 0;
  position: relative;
  z-index: 1;
}

.ca-inner {
  background:
    repeating-linear-gradient(
      180deg,
      transparent 0 26px,
      rgba(29, 78, 166, 0.06) 26px 27px
    ),
    var(--white);
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 var(--navy);
  padding: 0.95rem 1.15rem 1.1rem;
  display: grid;
  gap: 0.55rem;
}

.ca-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
}

.ca-kicker {
  font-family: var(--font-label);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 0.95rem;
}

.ca-note {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  color: var(--arc);
  transform: rotate(-2deg);
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.ca-value {
  flex: 1;
  font-size: clamp(1.05rem, 2.4vw, 1.7rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  overflow-wrap: anywhere;
  word-break: break-word;
  background: var(--paper);
  border: 3px solid var(--ink);
  padding: 0.55rem 0.7rem;
}

.btn-copy.is-copied {
  background: var(--yellow);
}

/* Story panels */

.story,
.chart,
.why,
.stats,
.cta,
.gallery {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.story,
.why,
.chart {
  padding: 4.2rem 0 1rem;
}

.section-head {
  margin-bottom: 1.4rem;
}

.section-kicker,
.why-kicker,
.cta-kicker,
.stat-label {
  font-family: var(--font-label);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--arc);
  font-size: 0.9rem;
}

.section-title,
.cta-panel h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.issue-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.05fr;
  grid-template-rows: auto auto;
  grid-template-areas:
    "one one two"
    "three four two";
  gap: 12px;
}

.panel {
  position: relative;
  background: var(--white);
  border: 4px solid var(--ink);
  box-shadow: 5px 5px 0 var(--ink);
  padding: 1.2rem 1.15rem 1.4rem;
  overflow: hidden;
}

.panel-1 {
  grid-area: one;
  min-height: 210px;
  background: linear-gradient(180deg, var(--white), var(--sky-pale));
}

.panel-2 {
  grid-area: two;
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 320px;
}

.panel-3 {
  grid-area: three;
  background: #fff6d6;
}

.panel-4 {
  grid-area: four;
  background: var(--navy);
  color: var(--cream);
  box-shadow: 5px 5px 0 var(--yellow);
}

.panel-4 .panel-no,
.panel-4 h3 {
  color: var(--yellow);
}

.panel-no {
  font-family: var(--font-label);
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  margin-bottom: 0.55rem;
}

.panel h3 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.02;
  margin-bottom: 0.7rem;
  max-width: 16ch;
}

.panel p {
  font-size: 1.02rem;
  color: inherit;
}

.panel-3 .panel-quiet {
  font-family: var(--font-hand);
  font-size: 1.8rem;
  margin-top: 0.4rem;
}

.halftone-corner {
  position: absolute;
  right: -10px;
  bottom: -10px;
  width: 92px;
  height: 92px;
  background-image: radial-gradient(circle, var(--ink) 1.15px, transparent 1.25px);
  background-size: 7px 7px;
  opacity: 0.18;
  pointer-events: none;
}

.panel-4 .halftone-corner {
  background-image: radial-gradient(circle, var(--yellow) 1.15px, transparent 1.25px);
  opacity: 0.28;
}

.scribble {
  display: block;
  width: 84px;
  height: 10px;
  margin-top: 0.8rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 84 10'%3E%3Cpath d='M2 6 C 16 2, 28 8, 42 5 C 56 2, 68 8, 82 4' fill='none' stroke='%231b1714' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E")
    no-repeat center / contain;
}

/* Centerfold */

.gallery {
  padding: 3.5rem 0 1rem;
}

.centerfold-caption {
  font-family: var(--font-hand);
  font-size: 1.4rem;
  margin-bottom: 0.55rem;
  color: var(--ink-soft);
}

.centerfold {
  border: 5px solid var(--ink);
  box-shadow:
    8px 8px 0 var(--navy),
    inset 0 0 0 10px var(--paper-deep);
  background: var(--paper-deep);
  padding: 10px;
  position: relative;
}

.centerfold::before,
.centerfold::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 18px;
  pointer-events: none;
}

.centerfold::before {
  left: 0;
  background: linear-gradient(90deg, rgba(27, 23, 20, 0.12), transparent);
}

.centerfold::after {
  right: 0;
  background: linear-gradient(270deg, rgba(27, 23, 20, 0.08), transparent);
}

.centerfold img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: var(--cream);
}

/* Why */

.why-spread {
  display: grid;
  gap: 2.4rem;
  padding: 1.2rem 0 2.4rem;
}

.why-display {
  display: grid;
  gap: 0.35rem;
}

.why-line {
  position: relative;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.035em;
  width: fit-content;
}

.why-indent {
  margin-left: clamp(0px, 8vw, 120px);
}

.hand-arrow {
  position: absolute;
  width: 120px;
  height: 42px;
  overflow: visible;
}

.hand-arrow path {
  fill: none;
  stroke: var(--arc);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.arrow-a {
  right: -108px;
  top: 18%;
  transform: rotate(8deg);
}

.arrow-b {
  left: -20px;
  bottom: -28px;
  transform: rotate(-6deg);
}

.why-copy {
  max-width: 38rem;
  margin-top: 0.6rem;
}

.why-name {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.why-lead {
  font-family: var(--font-label);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.35rem;
}

.why-body {
  margin-top: 1rem;
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 46ch;
}

/* Chart monitor */

.monitor {
  position: relative;
  background: #d8c9ae;
  border: 5px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  padding: 1.1rem 1.1rem 1.25rem;
}

.monitor-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.monitor-label {
  font-family: var(--font-label);
  font-weight: 800;
  letter-spacing: 0.16em;
  background: var(--navy);
  color: var(--cream);
  padding: 0.28rem 0.7rem;
  border: 3px solid var(--ink);
}

.monitor-note {
  font-family: var(--font-hand);
  font-size: 1.2rem;
}

.monitor-screen {
  background: var(--white);
  border: 4px solid var(--ink);
  min-height: 460px;
  height: 62vh;
  max-height: 640px;
}

.monitor-screen iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  background: var(--white);
}

.screw {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 44%, var(--ink) 44% 56%, transparent 56%),
    linear-gradient(45deg, transparent 44%, var(--ink) 44% 56%, transparent 56%),
    #cfc0a6;
  border: 2px solid var(--ink);
}

.screw-tl {
  top: 8px;
  left: 8px;
}
.screw-tr {
  top: 8px;
  right: 8px;
}
.screw-bl {
  bottom: 8px;
  left: 8px;
}
.screw-br {
  bottom: 8px;
  right: 8px;
}

.chart-action {
  display: flex;
  justify-content: center;
  margin-top: 1.2rem;
}

/* Stats */

.stats {
  padding: 3.5rem 0 1.5rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.stat-block {
  border: 4px solid var(--ink);
  background: var(--white);
  box-shadow: 5px 5px 0 var(--ink);
  padding: 1.2rem 1rem 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 3rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.stat-block .stat-label {
  display: block;
  margin-bottom: 0.45rem;
}

.stat-yellow {
  background: var(--yellow);
  transform: rotate(-0.8deg);
}

.stat-navy {
  background: var(--navy);
  color: var(--cream);
  transform: rotate(0.7deg);
}

.stat-navy .stat-label {
  color: var(--yellow);
}

/* CTA */

.cta {
  padding: 3.2rem 0 4.5rem;
  display: grid;
  place-items: center;
  min-height: 420px;
  position: relative;
}

.cta-burst {
  position: absolute;
  width: min(920px, 100%);
  aspect-ratio: 1;
  background: repeating-conic-gradient(
    from 0deg,
    var(--yellow) 0 5deg,
    transparent 5deg 14deg
  );
  opacity: 0.28;
  mask-image: radial-gradient(circle, black 18%, transparent 62%);
  z-index: 0;
}

.cta-panel {
  position: relative;
  z-index: 1;
  text-align: center;
  background: var(--white);
  border: 5px solid var(--ink);
  box-shadow: 10px 10px 0 var(--navy);
  padding: 2.2rem 1.5rem 2rem;
  max-width: 720px;
  width: 100%;
}

.cta-panel p {
  margin: 0.85rem auto 1.3rem;
  max-width: 34ch;
  font-size: 1.12rem;
}

/* Footer */

.site-footer {
  border-top: 4px solid var(--ink);
  background: var(--cream);
  position: relative;
  z-index: 1;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 1.4rem 0 1.6rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 2px solid var(--ink);
}

.footer-brand p {
  font-family: var(--font-label);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.15;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  gap: 1.1rem;
  font-family: var(--font-label);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-tag {
  justify-self: end;
  font-family: var(--font-hand);
  font-size: 1.25rem;
}

/* Reveals */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition-delay: var(--delay, 0ms);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Animations */

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes bubble-float {
  0%,
  100% {
    transform: rotate(-3deg) translateY(0);
  }
  50% {
    transform: rotate(-1.5deg) translateY(-8px);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Tablet */

@media (max-width: 980px) {
  .hero-layout {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 0.2rem;
  }

  .speech-cover {
    display: none;
  }

  .speech-inline {
    display: block;
    margin: 0 0 0.85rem auto;
    max-width: min(100%, 14rem);
    font-size: 1.25rem;
  }

  .hero-stage {
    order: 1;
    min-height: 0;
    padding-top: 0.15rem;
  }

  .hero-copy {
    order: 2;
  }

  .hero-mascot {
    max-height: min(520px, 62vh);
    max-width: min(100%, 420px);
  }

  .stamp {
    display: none;
  }

  .issue-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "one two"
      "three four";
  }

  .arrow-a,
  .stage-blob-b,
  .star-c {
    display: none;
  }

  .why-indent {
    margin-left: 0;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-tag {
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 40px auto;
    align-items: center;
    gap: 6px;
    padding: 0 8px;
  }

  .brand {
    min-width: 0;
    margin-right: 0;
  }

  .header-end {
    display: contents;
    margin-left: 0;
  }

  .nav-desktop,
  .header-actions .btn-ghost {
    display: none !important;
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
    width: 40px;
    min-width: 40px;
    min-height: 40px;
    box-shadow: 2px 2px 0 var(--ink);
  }

  .header-actions {
    flex-shrink: 0;
  }

  .header-actions .btn-buy {
    padding: 0.4rem 0.7rem;
    box-shadow: 2px 2px 0 var(--ink);
  }

  .brand-logo {
    width: 40px;
    height: 40px;
  }

  .nav-mobile:not([hidden]) {
    display: block;
  }

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

  .stat-yellow,
  .stat-navy {
    transform: none;
  }
}

/* Mobile */

@media (max-width: 640px) {
  :root {
    --header-h: 70px;
  }

  .header-inner {
    width: 100%;
    padding: 0 8px;
  }

  .brand-ticker {
    display: none;
  }

  .brand-name {
    font-size: 0.98rem;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .header-actions .btn-buy {
    min-height: 40px;
    padding: 0.35rem 0.62rem;
    font-size: 0.95rem;
  }

  .hero,
  .ca-strip,
  .story,
  .chart,
  .why,
  .stats,
  .cta,
  .gallery {
    width: calc(100% - 20px);
  }

  .hero-cover {
    box-shadow: 6px 6px 0 var(--ink);
  }

  .hero-masthead {
    letter-spacing: 0.1em;
    font-size: 0.78rem;
  }

  .hero-layout {
    padding: 1rem 0.85rem 0.2rem;
  }

  .hero-support {
    max-width: none;
  }

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

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

  .hero-stage {
    padding: 0.2rem 0 0;
  }

  .hero-mascot {
    max-width: 100%;
    max-height: none;
    width: 100%;
    height: auto;
  }

  .speech-inline {
    margin: 0 auto 0.75rem 0;
    max-width: 100%;
    font-size: 1.15rem;
  }

  .stage-sunburst,
  .motion-marks,
  .star-b {
    display: none;
  }

  .ca-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-copy {
    width: 100%;
  }

  .issue-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "one"
      "two"
      "three"
      "four";
  }

  .centerfold {
    padding: 6px;
    box-shadow: 5px 5px 0 var(--navy);
  }

  .monitor-screen {
    min-height: 360px;
    height: 70vh;
  }

  .cta-panel {
    padding: 1.5rem 1rem 1.4rem;
    box-shadow: 6px 6px 0 var(--navy);
  }

  .cta-panel .btn {
    width: 100%;
  }

  .arrow-b {
    display: none;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js .reveal,
  .js .reveal.is-visible,
  .reveal,
  .reveal.is-visible {
    opacity: 1;
    transform: none;
  }

  .speech-bubble {
    transform: rotate(-3deg);
  }

  .tape-track {
    animation: none;
  }
}
