:root {
  --green: #65ff1f;
  --green-bright: #8fff3a;
  --green-deep: #1bb900;
  --ink: #080a08;
  --paper: #f5f6f1;
  --gray: #d8dad4;
  --line: rgba(8, 10, 8, 0.22);
  --display: "Archivo Black", Impact, sans-serif;
  --body: "Space Grotesk", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 30;
  opacity: 0.045;
  pointer-events: none;
  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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.top-tape {
  height: 32px;
  overflow: hidden;
  color: var(--green);
  background: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.top-tape-track,
.marquee-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: tape 22s linear infinite;
}

.top-tape-track {
  height: 32px;
  gap: 28px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.14em;
}

.top-tape-track i {
  color: #fff;
  font-style: normal;
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 0 4vw;
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--display);
  font-size: 23px;
  letter-spacing: -0.06em;
}

.brand-mark {
  display: grid;
  width: 38px;
  aspect-ratio: 1;
  place-items: center;
  color: var(--ink);
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 3px 3px 0 var(--ink);
  line-height: 1;
}

.desktop-nav {
  display: flex;
  gap: 34px;
}

.desktop-nav a,
.footer-brand + p,
footer > a:last-child {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--green-deep);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.header-cta {
  justify-self: end;
  padding: 13px 18px;
  color: #fff;
  background: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.header-cta:hover {
  box-shadow: 1px 1px 0 var(--green);
  transform: translate(3px, 3px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  min-height: calc(100vh - 120px);
  grid-template-columns: 0.88fr 1.12fr;
  border-bottom: 2px solid var(--ink);
}

.hero-copy {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px) 6vw;
  background:
    radial-gradient(circle at 20% 20%, rgba(101,255,31,.13) 0 2px, transparent 2.5px) 0 0 / 18px 18px,
    var(--paper);
}

.eyebrow,
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 50%;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  margin: 30px 0 26px;
  font-family: var(--display);
  font-size: clamp(58px, 7.2vw, 126px);
  line-height: 0.83;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}

.hero h1 em {
  position: relative;
  display: inline-block;
  color: var(--green-deep);
  font-style: normal;
}

.hero h1 em::after {
  position: absolute;
  right: -8px;
  bottom: -8px;
  left: 2px;
  height: 10px;
  content: "";
  background: var(--green);
  clip-path: polygon(0 45%, 100% 0, 97% 100%, 2% 80%);
  z-index: -1;
}

.hero-intro {
  max-width: 520px;
  margin: 0;
  font-size: clamp(17px, 1.4vw, 22px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 17px 20px;
  border: 2px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.button span {
  font-size: 20px;
}

.button-dark {
  min-width: 190px;
  color: #fff;
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--green);
  transition: transform 150ms ease, box-shadow 150ms ease;
}

.button-dark:hover {
  box-shadow: 1px 1px 0 var(--green);
  transform: translate(4px, 4px);
}

.text-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  margin-left: 8px;
  color: var(--green-deep);
}

.hero-art {
  position: relative;
  min-width: 0;
  padding: clamp(18px, 2.2vw, 38px);
  overflow: hidden;
  background: var(--green);
  border-left: 2px solid var(--ink);
}

.hero-art::before,
.flip-zone::before,
.lock-art::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.25;
  pointer-events: none;
  background: repeating-conic-gradient(from 0deg at 50% 50%, transparent 0deg 8deg, rgba(0,0,0,.18) 8deg 10deg);
}

.art-frame {
  position: relative;
  height: calc(100% - 26px);
  min-height: 540px;
  overflow: hidden;
  background: #fff;
  border: 2px solid var(--ink);
  box-shadow: 10px 10px 0 var(--ink);
}

.art-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 700ms cubic-bezier(.2,.8,.2,1);
}

.art-frame:hover img {
  transform: scale(1.035);
}

.art-sticker {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 108px;
  aspect-ratio: 1;
  place-items: center;
  padding: 14px;
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 5px 5px 0 var(--ink);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  transform: rotate(8deg);
}

.art-sticker b {
  font-family: var(--display);
  font-size: 24px;
  letter-spacing: -0.06em;
}

.art-caption {
  position: absolute;
  right: 38px;
  bottom: 7px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.marquee {
  overflow: hidden;
  color: var(--ink);
  background: var(--green);
  border-bottom: 2px solid var(--ink);
}

.marquee-track {
  gap: 32px;
  padding: 15px 0 14px;
  animation-duration: 26s;
}

.marquee span {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: -0.03em;
}

.marquee i {
  font-size: 18px;
  font-style: normal;
}

.section {
  padding: clamp(80px, 10vw, 160px) 6vw;
}

.section-label::before {
  width: 36px;
  height: 2px;
  content: "";
  background: currentColor;
}

.thesis {
  background: var(--paper);
}

.thesis-grid {
  display: grid;
  align-items: start;
  gap: 8vw;
  grid-template-columns: 1.15fr 0.85fr;
  margin-top: 58px;
}

.thesis h2,
.manifesto-opening h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 6.4vw, 110px);
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.thesis h2 span,
.manifesto-opening h2 span {
  color: var(--green-deep);
}

.thesis-copy {
  padding-top: 10px;
}

.thesis-copy p {
  max-width: 560px;
  margin: 0 0 22px;
  font-size: 18px;
  line-height: 1.65;
}

.thesis-copy .lead {
  padding-bottom: 22px;
  border-bottom: 2px solid var(--ink);
  font-family: var(--display);
  font-size: clamp(25px, 2.6vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.path-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
}

.path-card {
  position: relative;
  min-height: 330px;
  padding: 24px;
  overflow: hidden;
  border: 2px solid var(--ink);
}

.path-card.muted {
  color: #454842;
  background: var(--gray);
}

.path-card.hot {
  background: var(--green);
  box-shadow: 8px 8px 0 var(--ink);
  transform: rotate(-1deg);
}

.path-number {
  font-size: 11px;
  font-weight: 700;
}

.path-card h3 {
  margin: 54px 0 10px;
  font-family: var(--display);
  font-size: clamp(34px, 4vw, 70px);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.path-card p {
  margin: 0;
  font-weight: 600;
}

.tiny-chart,
.treadmill {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  height: 70px;
  border-bottom: 2px solid currentColor;
}

.tiny-chart span {
  position: absolute;
  inset: 5px 5px 0;
  display: block;
  border-top: 4px solid currentColor;
  clip-path: polygon(0 73%, 16% 65%, 29% 69%, 45% 50%, 56% 53%, 72% 34%, 84% 39%, 100% 10%, 100% 17%, 84% 47%, 73% 42%, 58% 61%, 46% 58%, 30% 78%, 17% 73%, 0 84%);
  background: currentColor;
}

.rocket span {
  clip-path: polygon(0 90%, 14% 88%, 27% 82%, 42% 84%, 55% 67%, 67% 69%, 78% 43%, 88% 33%, 96% 1%, 100% 35%, 91% 27%, 82% 51%, 70% 78%, 58% 76%, 45% 94%, 29% 91%, 15% 98%, 0 100%);
}

.treadmill {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.treadmill span {
  padding-bottom: 20px;
  font-family: var(--display);
  letter-spacing: .4em;
}

.flip-zone {
  position: relative;
  display: grid;
  min-height: 820px;
  overflow: hidden;
  color: var(--ink);
  background: var(--green);
  border-block: 2px solid var(--ink);
  grid-template-columns: .8fr 1.2fr;
}

.flip-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7vw 6vw;
  border-right: 2px solid var(--ink);
}

.dark-label {
  margin-bottom: 36px;
}

.flip-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(64px, 8.5vw, 146px);
  line-height: 0.78;
  letter-spacing: -0.08em;
}

.flip-copy > p {
  max-width: 430px;
  margin: 38px 0;
  font-size: 18px;
  line-height: 1.6;
}

.flip-readout {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 22px;
  border-top: 2px solid var(--ink);
}

.flip-readout span {
  font-family: var(--display);
  font-size: 42px;
  letter-spacing: -0.05em;
}

.flip-readout small {
  max-width: 120px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.coin-stage {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  padding: 60px 4vw;
  perspective: 1300px;
}

.coin-button {
  width: min(37vw, 470px);
  min-width: 280px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  perspective: 1300px;
}

.coin-button:focus-visible {
  outline: 4px solid #fff;
  outline-offset: 12px;
}

.coin {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  transform-style: preserve-3d;
  transition: transform 1.5s cubic-bezier(.13,.71,.27,1);
  will-change: transform;
}

.coin-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 36% 28%, rgba(255,255,255,.85), transparent 9%),
    radial-gradient(circle, var(--green-bright) 0 52%, #4ee60b 53% 64%, #179d00 65% 70%, #55e917 71% 76%, #0b5e00 77% 78%, #42cf08 79% 100%);
  border: 7px solid var(--ink);
  border-radius: 50%;
  box-shadow: inset 0 0 0 9px rgba(255,255,255,.3), inset -22px -28px 0 rgba(0,0,0,.16), 13px 17px 0 var(--ink);
  backface-visibility: hidden;
}

.coin-face::before {
  position: absolute;
  inset: 9%;
  content: "";
  border: 4px dashed rgba(5,77,0,.45);
  border-radius: 50%;
}

.coin-face b {
  position: relative;
  z-index: 1;
  color: #7fff32;
  font-family: var(--display);
  font-size: clamp(130px, 18vw, 280px);
  line-height: .72;
  letter-spacing: -0.12em;
  -webkit-text-stroke: 8px var(--ink);
  filter: drop-shadow(8px 10px 0 rgba(0,0,0,.35));
}

.coin-face small {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: .45em;
}

.coin-back {
  transform: rotateY(180deg);
}

.coin-back b {
  font-size: clamp(58px, 8.5vw, 120px);
  letter-spacing: -0.08em;
  -webkit-text-stroke-width: 4px;
}

.coin-edge {
  position: absolute;
  top: 4%;
  bottom: 4%;
  left: 50%;
  width: 26px;
  background: repeating-linear-gradient(0deg, #0f7000 0 8px, #7dff3b 8px 14px);
  border: 4px solid var(--ink);
  transform: translateX(-50%) rotateY(90deg);
}

.coin-shadow {
  position: absolute;
  bottom: 124px;
  width: min(34vw, 430px);
  height: 48px;
  opacity: .32;
  background: var(--ink);
  border-radius: 50%;
  filter: blur(12px);
  transition: transform 400ms ease, opacity 400ms ease;
}

.coin-stage.is-flipping .coin-shadow {
  opacity: .13;
  transform: scale(.68);
}

.flip-result {
  min-height: 28px;
  margin: 36px 0 4px;
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.flip-hint {
  margin: 0;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .16em;
}

.manifesto {
  color: #fff;
  background: var(--ink);
}

.manifesto .section-label {
  color: var(--green);
}

.manifesto-opening {
  display: grid;
  align-items: start;
  gap: 5vw;
  grid-template-columns: .35fr 1.65fr;
  margin: 70px 0 90px;
}

.manifesto-opening > p {
  margin: 10px 0 0;
  color: var(--green);
  font-family: var(--display);
  font-size: 24px;
  text-transform: uppercase;
}

.manifesto-image {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 100px;
  border: 2px solid var(--green);
}

.manifesto-image img {
  width: 100%;
  max-height: 780px;
  object-fit: cover;
}

.image-callout {
  position: absolute;
  right: -24px;
  bottom: -30px;
  padding: 22px 26px;
  color: var(--ink);
  background: var(--green);
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 #fff;
  font-family: var(--display);
  font-size: clamp(17px, 2vw, 28px);
  line-height: .95;
  transform: rotate(-2deg);
}

.story-stack {
  max-width: 1180px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.28);
}

.story-line {
  display: grid;
  gap: 4vw;
  grid-template-columns: 70px 1fr;
  padding: 38px 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
}

.story-line span {
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
}

.story-line p {
  max-width: 900px;
  margin: 0;
  font-size: clamp(25px, 3vw, 47px);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.story-line.final-line p {
  color: var(--green);
  font-family: var(--display);
  text-transform: uppercase;
}

.lock-in {
  display: grid;
  min-height: 760px;
  min-width: 0;
  overflow: hidden;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--ink);
}

.lock-art {
  position: relative;
  overflow: hidden;
  background: url("content.png") center / cover no-repeat;
  border-right: 2px solid var(--ink);
}

.lock-art::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(100deg, rgba(101,255,31,.1), transparent 55%);
}

.lock-copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 7vw;
  background: var(--paper);
}

.lock-copy > p {
  margin: 0 0 24px;
  color: var(--green-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
}

.lock-copy h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(100px, 13vw, 220px);
  line-height: .68;
  letter-spacing: -.09em;
}

.lock-copy span {
  max-width: 500px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 2px solid var(--ink);
  font-size: 15px;
  line-height: 1.55;
}

.finale {
  position: relative;
  display: flex;
  min-height: 680px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at center, rgba(255,255,255,.8) 0 1px, transparent 2px) 0 0 / 13px 13px,
    var(--green);
  text-align: center;
}

.finale::before {
  position: absolute;
  width: 920px;
  aspect-ratio: 1;
  content: "";
  border: 2px solid rgba(8,10,8,.2);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(8,10,8,.05), 0 0 0 160px rgba(8,10,8,.04), 0 0 0 240px rgba(8,10,8,.03);
}

.finale p,
.finale span {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
}

.final-one {
  position: relative;
  z-index: 1;
  margin: 10px 0 24px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(150px, 28vw, 460px);
  line-height: .85;
  letter-spacing: -.11em;
  text-shadow: 10px 10px 0 #fff;
  transition: transform 200ms ease;
}

.final-one:hover {
  transform: rotate(-2deg) scale(1.03);
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 130px;
  padding: 30px 4vw;
  color: #fff;
  background: var(--ink);
}

.footer-brand {
  color: #fff;
}

footer > p {
  margin: 0;
  text-align: center;
}

footer > a:last-child {
  justify-self: end;
  color: var(--green);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

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

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

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    width: 42px;
    height: 42px;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    padding: 0;
    background: var(--green);
    border: 2px solid var(--ink);
    cursor: pointer;
  }

  .menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: flex;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    color: #fff;
    background: var(--ink);
    transition: max-height 240ms ease;
  }

  .mobile-nav.is-open {
    max-height: 300px;
  }

  .mobile-nav a {
    padding: 20px 4vw;
    border-bottom: 1px solid rgba(255,255,255,.18);
    font-family: var(--display);
    text-decoration: none;
    text-transform: uppercase;
  }

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

  .hero-copy {
    min-height: 680px;
  }

  .hero-art {
    min-height: 680px;
    border-top: 2px solid var(--ink);
    border-left: 0;
  }

  .thesis-grid,
  .manifesto-opening {
    grid-template-columns: 1fr;
  }

  .thesis-copy {
    max-width: 670px;
  }

  .path-cards {
    grid-template-columns: 1fr;
  }

  .path-card {
    min-height: 290px;
  }

  .flip-zone {
    grid-template-columns: 1fr;
  }

  .flip-copy {
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  .coin-stage {
    min-height: 720px;
  }

  .coin-button {
    width: min(68vw, 470px);
  }

  .coin-shadow {
    width: min(62vw, 430px);
  }

  .lock-in {
    grid-template-columns: 1fr;
  }

  .lock-art {
    min-height: 640px;
    border-right: 0;
    border-bottom: 2px solid var(--ink);
  }

  footer {
    gap: 28px;
    grid-template-columns: 1fr auto;
  }

  footer > p {
    display: none;
  }
}

@media (max-width: 620px) {
  .top-tape {
    height: 28px;
  }

  .site-header {
    padding-inline: 20px;
  }

  .hero-copy,
  .section,
  .flip-copy,
  .lock-copy {
    padding-right: 22px;
    padding-left: 22px;
  }

  .hero-copy {
    min-height: 610px;
    padding-block: 64px;
  }

  .hero h1 {
    font-size: clamp(52px, 17vw, 84px);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-art {
    min-height: 490px;
    padding: 16px;
  }

  .art-frame {
    min-height: 440px;
    box-shadow: 6px 6px 0 var(--ink);
  }

  .art-sticker {
    width: 88px;
  }

  .art-caption {
    display: none;
  }

  .thesis-grid {
    margin-top: 40px;
  }

  .thesis h2,
  .manifesto-opening h2 {
    font-size: clamp(42px, 14vw, 68px);
  }

  .path-cards {
    margin-top: 54px;
  }

  .flip-copy h2 {
    font-size: clamp(70px, 23vw, 110px);
  }

  .coin-stage {
    min-height: 570px;
    padding-inline: 12px;
  }

  .coin-button {
    width: min(78vw, 350px);
    min-width: 0;
  }

  .coin-face {
    box-shadow: inset 0 0 0 6px rgba(255,255,255,.3), inset -15px -19px 0 rgba(0,0,0,.16), 8px 11px 0 var(--ink);
  }

  .coin-face b {
    font-size: clamp(115px, 39vw, 180px);
    -webkit-text-stroke-width: 5px;
  }

  .coin-back b {
    font-size: clamp(50px, 18vw, 88px);
    -webkit-text-stroke-width: 3px;
  }

  .coin-shadow {
    bottom: 104px;
  }

  .manifesto-opening {
    margin: 46px 0 62px;
  }

  .manifesto-image {
    margin-bottom: 78px;
  }

  .image-callout {
    right: -4px;
    bottom: -42px;
    padding: 16px;
    box-shadow: 4px 4px 0 #fff;
  }

  .story-line {
    gap: 12px;
    grid-template-columns: 36px 1fr;
    padding: 30px 0;
  }

  .lock-art {
    min-height: 460px;
  }

  .lock-copy {
    min-height: 560px;
    padding-block: 80px;
  }

  .lock-copy h2 {
    font-size: clamp(88px, 32vw, 150px);
  }

  .finale {
    min-height: 540px;
  }

  .final-one {
    font-size: clamp(130px, 41vw, 230px);
    text-shadow: 6px 6px 0 #fff;
  }

  footer {
    padding-inline: 20px;
  }

  footer > a:last-child {
    font-size: 9px;
  }
}
