:root {
  --ink: #11120f;
  --muted: #64665d;
  --paper: #f3f2eb;
  --paper-bright: #fbfaf4;
  --acid: #dfff00;
  --blue: #3155ff;
  --coral: #ff6b4a;
  --line: rgba(17, 18, 15, 0.18);
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 50;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--acid);
  transform: translateY(-200%);
}

.skip-link:focus {
  transform: none;
}

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  height: 4px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: left;
}

.draft-banner {
  display: flex;
  padding: 0.7rem 1rem;
  color: white;
  background: var(--coral);
  justify-content: center;
  gap: 0.7rem;
  font-size: 0.76rem;
  letter-spacing: 0.02em;
}

.draft-banner strong,
.eyebrow {
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.utility-bar {
  color: rgba(255, 255, 255, 0.7);
  background: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.utility-bar > div {
  display: flex;
  width: min(1380px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 0.55rem 0;
  justify-content: space-between;
}

.utility-edition {
  padding-left: 1rem;
  color: var(--acid);
}

.site-header {
  position: relative;
  z-index: 30;
  display: grid;
  width: min(1380px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 1.25rem 0;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.72rem;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  color: var(--ink);
  background: var(--acid);
  border-radius: 0.3rem;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  transform: rotate(-4deg);
}

.brand-name {
  font-family: var(--display);
  font-size: 1.18rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: uppercase;
}

.brand-name span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.site-nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.4rem;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 0.65rem 0.85rem;
  color: white;
  background: var(--ink);
  font-size: 0.72rem;
  font-weight: 750;
  text-decoration: none;
  text-transform: uppercase;
}

.header-cta span {
  color: var(--acid);
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero {
  display: grid;
  width: min(1380px, calc(100% - 3rem));
  min-height: min(47rem, calc(100vh - 7.5rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 7rem) 0;
  grid-template-columns: minmax(0, 1.12fr) minmax(24rem, 0.72fr);
  gap: clamp(3rem, 8vw, 9rem);
  align-items: center;
}

.hero-copy {
  max-width: 54rem;
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--blue);
  font-size: 0.68rem;
}

.hero h1,
.article-header h1,
.about-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.5rem, 8.1vw, 8.7rem);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero-intro {
  max-width: 37rem;
  margin: 2rem 0 2.25rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.45;
}

.button-link {
  display: inline-flex;
  padding: 0.85rem 1.05rem;
  color: white;
  background: var(--blue);
  align-items: center;
  gap: 2rem;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.button-link:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

.retail-display {
  position: relative;
  min-height: 32rem;
  padding: 1.25rem;
  overflow: hidden;
  color: white;
  background: var(--blue);
  box-shadow: 1.4rem 1.4rem 0 var(--acid);
  transform: rotate(1.5deg);
}

.display-topline {
  position: relative;
  z-index: 2;
  display: flex;
  padding-bottom: 0.8rem;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.display-stage {
  position: relative;
  display: grid;
  height: 23rem;
  place-items: center;
}

.display-disc {
  position: absolute;
  width: 17rem;
  height: 17rem;
  background: var(--coral);
  border-radius: 50%;
}

.display-word {
  position: relative;
  z-index: 2;
  color: var(--paper-bright);
  font-family: var(--display);
  font-size: clamp(5rem, 8vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1;
  transform: rotate(-7deg);
}

.display-sticker {
  position: absolute;
  right: 0.25rem;
  bottom: 1.5rem;
  z-index: 3;
  display: grid;
  width: 6.6rem;
  height: 6.6rem;
  color: var(--ink);
  background: var(--acid);
  border-radius: 50%;
  place-items: center;
  font-size: 0.65rem;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transform: rotate(9deg);
}

.display-barcode {
  display: flex;
  height: 4.3rem;
  padding: 0.55rem;
  background: white;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.3rem;
}

.display-barcode span {
  flex: 1;
  background: var(--ink);
}

.display-barcode span:nth-child(2),
.display-barcode span:nth-child(5) {
  flex: 0.35;
}

.display-barcode span:nth-child(4) {
  flex: 1.8;
}

.signal-strip {
  overflow: hidden;
  color: var(--ink);
  background: var(--acid);
  border-block: 1px solid var(--ink);
}

.signal-strip > div {
  display: flex;
  width: max-content;
  min-width: 100%;
  padding: 0.85rem 2rem;
  justify-content: space-around;
  gap: clamp(1.5rem, 5vw, 5rem);
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.signal-strip i {
  color: var(--blue);
  font-style: normal;
}

.section {
  width: min(1380px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 8.5rem) 0;
}

.section-heading {
  display: flex;
  margin-bottom: 3.25rem;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 6vw, 6.3rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.86;
  text-transform: uppercase;
}

.section-heading > p {
  max-width: 30rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.5rem;
}

.story-card {
  display: grid;
  min-height: 35rem;
  overflow: hidden;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  grid-column: span 6;
  grid-template-rows: 15rem 1fr;
  text-decoration: none;
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.story-card:first-child {
  grid-column: span 8;
}

.story-card:hover {
  box-shadow: 0.7rem 0.7rem 0 var(--ink);
  transform: translate(-0.3rem, -0.3rem);
}

.story-visual {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, transparent 49.7%, rgba(255, 255, 255, 0.26) 50%, transparent 50.3%),
    linear-gradient(var(--blue), var(--blue));
}

.story-visual::before,
.story-visual::after {
  position: absolute;
  content: "";
}

.story-visual::before {
  top: -7rem;
  right: 10%;
  width: 17rem;
  height: 17rem;
  background: var(--acid);
  border-radius: 50%;
}

.story-visual::after {
  bottom: -5rem;
  left: 8%;
  width: 13rem;
  height: 13rem;
  background: var(--coral);
  transform: rotate(35deg);
}

.visual-code {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  color: white;
  font-family: var(--display);
  font-size: 7rem;
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.visual-scan {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 4;
  width: 5rem;
  height: 5rem;
  background: repeating-linear-gradient(90deg, white 0 4px, transparent 4px 8px);
  border: 0.45rem solid white;
}

.visual-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 3;
  padding: 0.35rem 0.5rem;
  color: var(--ink);
  background: white;
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.story-content {
  display: flex;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  flex-direction: column;
}

.story-meta {
  display: flex;
  margin-bottom: 2rem;
  color: var(--muted);
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-card h3 {
  max-width: 17ch;
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-transform: uppercase;
}

.story-card p {
  max-width: 40rem;
  margin: 0;
  color: var(--muted);
}

.story-link {
  display: flex;
  margin-top: auto;
  padding-top: 2rem;
  justify-content: space-between;
  border-bottom: 2px solid var(--ink);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-link span {
  font-size: 1.1rem;
}

.retail-note {
  display: grid;
  padding: clamp(4rem, 8vw, 8rem) max(1.5rem, calc((100vw - 1380px) / 2));
  color: white;
  background: var(--ink);
  grid-template-columns: 0.35fr 1.3fr auto;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.retail-note .eyebrow {
  color: var(--acid);
}

.retail-note > p:nth-child(2) {
  max-width: 18ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5.4rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.94;
  text-transform: uppercase;
}

.retail-note a {
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--acid);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.article-header {
  display: grid;
  width: min(1380px, calc(100% - 3rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7.5rem) 0 5rem;
  grid-template-columns: minmax(0, 1.35fr) minmax(17rem, 0.5fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: end;
}

.article-header h1 {
  max-width: 10ch;
  font-size: clamp(4rem, 7.7vw, 8.5rem);
}

.article-deck {
  max-width: 46rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.article-meta {
  display: flex;
  margin-top: 2.25rem;
  color: var(--muted);
  gap: 1.5rem;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-art {
  position: relative;
  min-height: 25rem;
  overflow: hidden;
  color: white;
  background: var(--blue);
  box-shadow: 1rem 1rem 0 var(--acid);
}

.article-art::before {
  position: absolute;
  top: 22%;
  left: 50%;
  width: 14rem;
  height: 14rem;
  background: var(--coral);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.article-art-number {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  font-family: var(--display);
  font-size: 6rem;
  font-weight: 900;
  letter-spacing: -0.08em;
  transform: translate(-50%, -50%) rotate(-8deg);
}

.article-art-label {
  position: absolute;
  top: 1.2rem;
  left: 1.2rem;
  z-index: 3;
  font-size: 0.6rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.article-art-code {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  left: 1.2rem;
  height: 4rem;
  background: repeating-linear-gradient(90deg, white 0 5px, transparent 5px 10px);
  border-block: 0.5rem solid white;
}

.article-shell {
  display: grid;
  width: min(1060px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 5rem 0 8rem;
  grid-template-columns: minmax(0, 1fr) minmax(13rem, 0.34fr);
  gap: clamp(3rem, 9vw, 7rem);
  border-top: 1px solid var(--line);
}

.prose {
  min-width: 0;
}

.prose p,
.prose li {
  font-family: var(--serif);
  font-size: clamp(1.16rem, 1.8vw, 1.32rem);
  line-height: 1.78;
}

.prose p {
  margin: 0 0 1.7rem;
}

.prose > p:first-child::first-letter {
  float: left;
  margin: 0.08em 0.12em 0 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: 5.1rem;
  font-weight: 900;
  line-height: 0.76;
}

.prose h2 {
  margin: 4.5rem 0 1.3rem;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-transform: uppercase;
}

.prose ul {
  margin: 2rem 0 2.5rem;
  padding-left: 1.4rem;
}

.prose li {
  margin-bottom: 0.8rem;
  padding-left: 0.5rem;
}

.prose li::marker {
  color: var(--blue);
}

.prose blockquote {
  margin: 4rem 0;
  padding: 2.5rem;
  color: white;
  background: var(--blue);
  box-shadow: 0.8rem 0.8rem 0 var(--acid);
}

.prose blockquote p {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.1rem, 4vw, 3.5rem);
  font-style: normal;
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  text-transform: uppercase;
}

.prose blockquote cite {
  display: block;
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.callout {
  margin: 3.5rem 0;
  padding: 2rem;
  background: var(--acid);
  border: 1px solid var(--ink);
}

.callout strong {
  display: block;
  margin-bottom: 0.6rem;
  color: var(--ink);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.callout p {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.06rem;
}

.citation {
  margin-left: 0.15rem;
  color: var(--blue);
  font-family: var(--sans);
  font-size: 0.62em;
  font-weight: 850;
  text-decoration: none;
  vertical-align: super;
}

.article-aside {
  color: var(--muted);
  font-size: 0.8rem;
}

.aside-box {
  position: sticky;
  top: 2rem;
  padding: 1.4rem;
  background: var(--paper-bright);
  border-top: 5px solid var(--blue);
}

.aside-box h2 {
  margin-top: 0;
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tag-list {
  display: flex;
  padding: 0;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
}

.tag-list li {
  padding: 0.32rem 0.55rem;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 10rem;
}

.sources {
  margin-top: 5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.sources h2 {
  margin-top: 0;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sources ol {
  padding-left: 1.2rem;
}

.sources li {
  margin-bottom: 0.8rem;
  font-family: var(--sans);
  font-size: 0.86rem;
  line-height: 1.5;
}

.sources a {
  text-decoration-color: var(--blue);
  text-underline-offset: 0.2em;
}

.about-hero {
  display: grid;
  width: min(1250px, calc(100% - 3rem));
  min-height: 72vh;
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 10rem) 0;
  grid-template-columns: 1.05fr 0.7fr;
  gap: clamp(4rem, 10vw, 10rem);
  align-items: center;
}

.about-hero h1 {
  max-width: 7ch;
  font-size: clamp(5rem, 10vw, 10rem);
}

.about-copy {
  padding: 2rem;
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--ink);
  box-shadow: 1rem 1rem 0 var(--blue);
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

.about-copy p:first-child {
  margin-top: 0;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.site-footer {
  color: white;
  background: var(--blue);
}

.footer-inner {
  display: grid;
  width: min(1380px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 5rem 0 3rem;
  grid-template-columns: 1fr auto;
  gap: 3rem;
}

.footer-kicker {
  margin: 0 0 1.2rem;
  color: var(--acid);
  font-size: 0.67rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-title {
  max-width: 15ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.88;
  text-transform: uppercase;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 0.8rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.footer-nav a:hover {
  color: var(--acid);
}

.footer-bottom {
  display: flex;
  width: min(1380px, calc(100% - 3rem));
  margin: 0 auto;
  padding: 1.3rem 0 2rem;
  color: rgba(255, 255, 255, 0.55);
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.not-found {
  display: grid;
  min-height: 70vh;
  padding: 2rem;
  place-items: center;
  text-align: center;
}

.not-found h1 {
  margin: 0;
  color: var(--blue);
  font-family: var(--display);
  font-size: clamp(8rem, 22vw, 19rem);
  font-weight: 900;
  letter-spacing: -0.1em;
  line-height: 0.8;
}

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

  .header-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr 0.7fr;
  }

  .retail-display {
    min-height: 27rem;
  }

  .display-stage {
    height: 18rem;
  }

  .display-disc {
    width: 13rem;
    height: 13rem;
  }

  .article-header {
    grid-template-columns: 1fr 0.45fr;
  }
}

@media (max-width: 700px) {
  .utility-bar > div,
  .site-header,
  .hero,
  .section,
  .article-header,
  .article-shell,
  .about-hero,
  .footer-inner,
  .footer-bottom {
    width: min(100% - 2rem, 1380px);
  }

  .utility-edition {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    display: none;
    min-width: 12rem;
    padding: 1.25rem;
    background: var(--paper-bright);
    border: 1px solid var(--ink);
    box-shadow: 0.5rem 0.5rem 0 var(--acid);
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav[data-open] {
    display: flex;
  }

  .hero {
    padding: 4rem 0 5rem;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(4rem, 17vw, 6.5rem);
  }

  .retail-display {
    width: calc(100% - 1rem);
    min-height: 28rem;
    box-shadow: 0.8rem 0.8rem 0 var(--acid);
  }

  .signal-strip > div {
    justify-content: flex-start;
  }

  .section-heading,
  .retail-note {
    display: block;
  }

  .section-heading > p {
    margin-top: 1.5rem;
  }

  .story-card,
  .story-card:first-child {
    min-height: 33rem;
    grid-column: 1 / -1;
  }

  .retail-note {
    padding: 5rem 1rem;
  }

  .retail-note .eyebrow,
  .retail-note > p:nth-child(2) {
    margin-bottom: 2rem;
  }

  .article-header,
  .article-shell,
  .about-hero {
    grid-template-columns: 1fr;
  }

  .article-header h1 {
    font-size: clamp(3.8rem, 16vw, 6.5rem);
  }

  .article-art {
    min-height: 20rem;
  }

  .article-aside {
    grid-row: 1;
  }

  .aside-box {
    position: static;
  }

  .prose blockquote,
  .callout {
    margin-right: -0.5rem;
    margin-left: -0.5rem;
  }

  .about-hero h1 {
    font-size: clamp(5rem, 23vw, 8rem);
  }

  .about-copy {
    box-shadow: 0.7rem 0.7rem 0 var(--blue);
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .draft-banner {
    align-items: center;
    flex-direction: column;
    gap: 0;
    text-align: center;
  }
}

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

  * {
    transition: none !important;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .site-footer,
  .article-aside,
  .reading-progress,
  .article-art {
    display: none;
  }

  body {
    background: white;
  }

  .article-header,
  .article-shell {
    display: block;
  }
}
