:root {
  --green: #b7ff00;
  --green-deep: #1f7d23;
  --ink: #070807;
  --paper: #f6f4e9;
  --white: #ffffff;
  --sage: #dce6d1;
  --rust: #bd4b22;
  --line: 3px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  font-weight: 800;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.safety-tape {
  min-height: 42px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--ink);
  color: var(--white);
  letter-spacing: .14em;
  text-transform: uppercase;
  font: 700 11px/1 "Courier New", Courier, monospace;
}
.safety-tape span[aria-hidden="true"] { color: var(--green); }

.site-header {
  position: relative;
  z-index: 20;
  min-height: 84px;
  padding: 0 clamp(20px, 4vw, 64px);
  border-bottom: var(--line) solid var(--ink);
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 1000;
  letter-spacing: -.04em;
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: var(--ink);
  border: 2px solid var(--ink);
  font: 1000 14px/1 Arial, Helvetica, sans-serif;
  overflow: hidden;
  transform: rotate(-4deg);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.site-header nav { display: flex; gap: clamp(18px, 3vw, 48px); }
.site-header nav a {
  position: relative;
  text-decoration: none;
  color: var(--ink);
  letter-spacing: .08em;
  text-transform: uppercase;
  font: 700 12px/1 "Courier New", Courier, monospace;
}
.site-header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 3px;
  background: var(--green-deep);
  transition: right .18s;
}
.site-header nav a:hover::after,
.site-header nav a:focus-visible::after { right: 0; }

.hero {
  isolation: isolate;
  min-height: calc(100svh - 126px);
  padding: clamp(52px, 8vh, 104px) clamp(20px, 5vw, 76px) 0;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.hero-word {
  position: absolute;
  z-index: -3;
  top: 49%;
  left: 49%;
  transform: translate(-50%, -50%);
  color: var(--green);
  letter-spacing: -.09em;
  white-space: nowrap;
  user-select: none;
  font-size: clamp(130px, 19.5vw, 350px);
  font-weight: 1000;
  line-height: .7;
}
.hero-copy {
  z-index: 4;
  align-self: center;
  min-width: 0;
  max-width: 640px;
  padding: 24px 0 56px;
}
.eyebrow {
  margin: 0 0 20px;
  color: var(--green-deep);
  letter-spacing: .13em;
  text-transform: uppercase;
  font: 700 12px/1 "Courier New", Courier, monospace;
}
.eyebrow-light { color: #cfff6f; }
.eyebrow-dark { color: var(--ink); }
.hero h1,
.safety-section h2,
.story-section h2,
.pfp-maker-section h2,
.meme-section h2,
.links-section h2 {
  margin: 0;
  letter-spacing: -.07em;
  text-transform: uppercase;
  font-weight: 1000;
}
.hero h1 {
  max-width: 690px;
  font-size: clamp(62px, 8.2vw, 136px);
  line-height: .78;
}
.hero-lede {
  max-width: 545px;
  margin: 30px 0 0;
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 700;
  line-height: 1.35;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 30px;
}
.action {
  min-width: 196px;
  min-height: 58px;
  padding: 0 20px;
  border: var(--line) solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  letter-spacing: -.02em;
  text-transform: uppercase;
  text-decoration: none;
  font: 900 14px/1 Arial, Helvetica, sans-serif;
}
.action-primary { background: var(--ink); color: var(--white); }
.action-secondary { margin-left: calc(var(--line) * -1); background: var(--white); color: var(--ink); }
.action.is-pending { color: #686861; cursor: not-allowed; }
.action:hover,
.action:focus-visible {
  position: relative;
  z-index: 2;
  background: var(--green);
  color: var(--ink);
  outline: 4px solid var(--ink);
  outline-offset: -8px;
}
.ownership-note {
  margin: 18px 0 0;
  font: 700 12px/1.45 "Courier New", Courier, monospace;
}

.mascot-stage {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: center;
  place-self: end center;
  width: min(48vw, 680px);
  height: min(68vh, 700px);
}
.mascot {
  position: relative;
  z-index: 3;
  width: min(45vw, 590px);
  height: auto;
  border-radius: 50%;
  filter: drop-shadow(20px 22px #07080735);
  transition: transform .24s cubic-bezier(.2, .8, .2, 1);
}
.green-block {
  position: absolute;
  z-index: 1;
  right: 3%;
  bottom: 1.5%;
  width: 61%;
  height: 46%;
  background: var(--green);
  transform: rotate(3deg);
}
.thought-cloud {
  position: absolute;
  z-index: 5;
  top: 2%;
  right: -4%;
  width: clamp(180px, 20vw, 300px);
  min-height: 130px;
  padding: 24px 28px;
  border: 5px solid var(--ink);
  border-radius: 49% 43% 54% 40% / 41% 54% 39% 50%;
  background: var(--white);
  color: var(--ink);
  display: grid;
  place-items: center;
  text-align: center;
  letter-spacing: -.05em;
  text-transform: uppercase;
  font: 900 clamp(18px, 2vw, 29px)/.95 Arial, Helvetica, sans-serif;
  transform: rotate(5deg);
}
.thought-cloud::before,
.thought-cloud::after {
  content: "";
  position: absolute;
  border: 4px solid var(--ink);
  background: var(--white);
  border-radius: 50%;
}
.thought-cloud::before { width: 31px; height: 25px; bottom: -34px; left: 20%; }
.thought-cloud::after { width: 15px; height: 12px; bottom: -57px; left: 12%; }

.contract-dock {
  grid-column: 1 / -1;
  width: calc(100% + clamp(40px, 10vw, 152px));
  min-height: 112px;
  margin-left: calc(-1 * clamp(20px, 5vw, 76px));
  padding: 20px clamp(20px, 5vw, 76px);
  border: 0;
  border-top: var(--line) solid var(--ink);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  text-align: left;
}
.contract-dock:hover,
.contract-dock:focus-visible {
  background: var(--green);
  color: var(--ink);
  outline: 6px solid var(--ink);
  outline-offset: -10px;
}
.contract-label,
.contract-command {
  letter-spacing: .11em;
  text-transform: uppercase;
  font: 700 11px/1.25 "Courier New", Courier, monospace;
}
.contract-dock code {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font: 800 clamp(20px, 2vw, 32px)/1 "Courier New", Courier, monospace;
}

.safety-section {
  position: relative;
  padding: clamp(90px, 12vw, 180px) clamp(20px, 6vw, 92px);
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(400px, 1.1fr);
  gap: clamp(50px, 8vw, 130px);
}
.section-number {
  position: absolute;
  top: 28px;
  right: 36px;
  color: var(--green);
  letter-spacing: -.08em;
  font-size: clamp(70px, 10vw, 150px);
  font-weight: 1000;
  line-height: 1;
}
.section-number-soft {
  color: var(--green-deep);
  opacity: .14;
}
.safety-message h2,
.story-section h2,
.pfp-maker-section h2,
.meme-section h2,
.links-section h2 {
  font-size: clamp(54px, 6.8vw, 112px);
  line-height: .82;
}
.safety-message > p:last-child {
  max-width: 650px;
  margin: 34px 0 0;
  color: #d6d6ce;
  font-size: clamp(17px, 1.6vw, 23px);
  font-weight: 700;
  line-height: 1.45;
}
.safety-rules {
  align-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
}
.safety-rules li {
  padding: 24px 0;
  border-top: 2px solid #444;
  display: grid;
  grid-template-columns: 48px 1fr auto;
  align-items: baseline;
  gap: 20px;
}
.safety-rules li:last-child { border-bottom: 2px solid #444; }
.safety-rules span,
.safety-rules p {
  margin: 0;
  color: #a0a097;
  text-transform: uppercase;
  font: 700 12px/1.25 "Courier New", Courier, monospace;
}
.safety-rules strong {
  text-transform: uppercase;
  font-size: clamp(18px, 1.7vw, 25px);
}

.story-section {
  position: relative;
  padding: clamp(90px, 12vw, 180px) clamp(20px, 6vw, 92px);
  border-bottom: var(--line) solid var(--ink);
  background: var(--paper);
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: clamp(60px, 10vw, 160px);
}
.story-heading { position: relative; }
.story-heading .section-number {
  top: -70px;
  left: -14px;
  right: auto;
}
.story-copy {
  align-self: end;
  padding-bottom: 6px;
}
.story-copy p {
  margin: 0;
  padding: 23px 0;
  border-top: 2px solid var(--ink);
  font-size: clamp(16px, 1.35vw, 20px);
  font-weight: 700;
  line-height: 1.5;
}
.story-copy p:last-child { border-bottom: 2px solid var(--ink); }
.story-copy .story-lede {
  color: var(--green-deep);
  letter-spacing: -.03em;
  font-size: clamp(22px, 2.25vw, 34px);
  line-height: 1.15;
}

.pfp-maker-section {
  padding: clamp(80px, 10vw, 150px) clamp(20px, 5vw, 76px) clamp(90px, 11vw, 165px);
  border-bottom: var(--line) solid var(--ink);
  background: var(--sage);
}
.pfp-maker-heading {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .55fr);
  align-items: end;
  gap: clamp(42px, 8vw, 120px);
}
.pfp-maker-heading h2 {
  font-size: clamp(58px, 7.2vw, 116px);
  line-height: .8;
}
.pfp-maker-heading > p {
  max-width: 540px;
  margin: 0 0 8px;
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 700;
  line-height: 1.42;
}
.pfp-maker-workbench {
  max-width: 1320px;
  margin: clamp(54px, 7vw, 92px) auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .92fr);
  align-items: start;
  gap: clamp(38px, 6vw, 88px);
}
.pfp-preview-column {
  min-width: 0;
  position: sticky;
  top: 24px;
}
.pfp-canvas-frame {
  position: relative;
  aspect-ratio: 1;
  width: 100%;
  border: 2px solid var(--ink);
  background: #c7d0c0;
  overflow: hidden;
}
#pfp-canvas {
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
  cursor: grab;
}
#pfp-canvas.is-dragging-cap {
  cursor: grabbing;
}
.pfp-preview-label {
  position: absolute;
  z-index: 2;
  padding: 8px 10px;
  background: var(--ink);
  color: var(--white);
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
  font: 700 10px/1 "Courier New", Courier, monospace;
}
.pfp-preview-label { top: 14px; left: 14px; }
.pfp-privacy {
  max-width: 660px;
  margin: 16px 0 0;
  font: 700 12px/1.45 "Courier New", Courier, monospace;
}
.pfp-privacy strong { color: var(--green-deep); }
.pfp-controls {
  min-width: 0;
  border-top: 1px solid #07080780;
}
.pfp-upload-zone {
  padding: 26px 0 30px;
  border-bottom: 1px solid #07080780;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 8px 18px;
}
.pfp-control-number {
  grid-row: 1 / span 2;
  color: var(--green-deep);
  letter-spacing: -.07em;
  font-size: 42px;
  font-weight: 1000;
  line-height: .9;
}
.pfp-upload-zone h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 29px);
  line-height: 1;
}
.pfp-upload-zone p,
.pfp-fit-help,
.pfp-export-note,
.pfp-status {
  margin: 8px 0 0;
  font: 700 11px/1.4 "Courier New", Courier, monospace;
}
.pfp-upload-zone .maker-button {
  grid-column: 2;
  margin-top: 12px;
}
.maker-button {
  min-height: 50px;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font: 900 14px/1 Arial, Helvetica, sans-serif;
  text-decoration: none;
}
.maker-button:hover,
.maker-button:focus-visible,
.visually-hidden:focus-visible + .maker-button {
  outline: 4px solid var(--ink);
  outline-offset: -7px;
}
.maker-button-green { background: var(--green); color: var(--ink); }
.maker-button-light { background: transparent; color: var(--ink); }
.maker-button-dark { background: var(--ink); color: var(--white); }
.pfp-fit-controls,
.pfp-finish-controls {
  margin: 0;
  padding: 28px 0 32px;
  border: 0;
  border-bottom: 1px solid #07080780;
}
.pfp-fit-controls legend,
.pfp-finish-controls legend {
  padding: 0;
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 900;
}
.pfp-fit-controls legend span,
.pfp-finish-controls legend span {
  width: 48px;
  color: var(--green-deep);
  letter-spacing: -.07em;
  vertical-align: -7px;
  display: inline-block;
  font-size: 42px;
  line-height: .9;
}
.pfp-fit-help { margin: 14px 0 25px 66px; }
.pfp-range-control { margin-top: 20px; }
.pfp-range-control label {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  font-weight: 800;
}
.pfp-range-control output {
  min-width: 46px;
  color: var(--green-deep);
  text-align: right;
  font: 700 12px/1 "Courier New", Courier, monospace;
}
.pfp-range-control input {
  width: 100%;
  min-height: 30px;
  margin: 0;
  accent-color: var(--green-deep);
  cursor: pointer;
}
.pfp-check-row {
  min-height: 48px;
  margin-top: 12px;
  padding: 10px 12px;
  border: 1px solid #07080773;
  background: #ffffff57;
  cursor: pointer;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 850;
}
.pfp-check-row input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--green-deep);
}
.pfp-check-row b {
  color: var(--green-deep);
  font: 900 12px/1 "Courier New", Courier, monospace;
}
.pfp-button-row {
  margin-top: 20px;
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 10px;
}
.pfp-status {
  min-height: 34px;
  margin: 18px 0 0;
  color: var(--green-deep);
}

.crew-wall {
  max-width: 1320px;
  margin: clamp(96px, 11vw, 160px) auto 0;
  padding: clamp(38px, 5vw, 72px);
  border: 2px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}
.crew-wall-heading {
  padding-bottom: clamp(28px, 4vw, 52px);
  border-bottom: 1px solid #515151;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 34px;
}
.crew-wall-heading h2 {
  margin: 0;
  color: var(--white);
  letter-spacing: -.075em;
  font-size: clamp(46px, 6vw, 92px);
  line-height: .82;
}
.crew-wall-heading > p {
  margin: 0 0 4px;
  color: #cfff6f;
  text-transform: uppercase;
  font: 800 12px/1.3 "Courier New", Courier, monospace;
}
.crew-wall-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.crew-wall-card {
  min-width: 0;
  background: #151515;
  border: 1px solid #4b4b4b;
}
.crew-wall-card img {
  aspect-ratio: 1;
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  background: #252525;
}
.crew-wall-card div {
  min-height: 48px;
  padding: 10px 12px;
  border-top: 5px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.crew-wall-card strong {
  color: var(--green);
  font: 900 12px/1 "Courier New", Courier, monospace;
}
.crew-wall-card span {
  min-width: 0;
  color: var(--white);
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font: 750 11px/1 "Courier New", Courier, monospace;
}
.crew-wall-note {
  margin: 26px 0 0;
  color: #8f8f8f;
  font: 700 10px/1.5 "Courier New", Courier, monospace;
}

.meme-section {
  padding: clamp(80px, 10vw, 150px) clamp(20px, 5vw, 76px) clamp(110px, 12vw, 180px);
  background: var(--white);
  overflow: hidden;
}
.meme-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}
.meme-note {
  margin: 0 4% 10px 0;
  color: var(--rust);
  font: 700 clamp(16px, 1.5vw, 22px)/1.15 "Comic Sans MS", cursive;
  transform: rotate(-5deg);
}
.meme-wall {
  max-width: 1320px;
  margin: clamp(60px, 8vw, 110px) auto 0;
  padding: 0 3vw;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
}
.meme {
  margin: 0;
  border: 5px solid var(--ink);
  background: var(--white);
  box-shadow: 14px 15px 0 var(--ink);
  position: relative;
}
.meme img {
  width: 100%;
  height: auto;
  display: block;
}
.meme figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 7px 9px;
  background: var(--white);
  color: var(--ink);
  text-transform: uppercase;
  font: 700 10px/1 "Courier New", Courier, monospace;
}
.meme-one { z-index: 1; grid-column: 1 / span 5; transform: rotate(-5deg); }
.meme-two { z-index: 3; grid-column: 5 / span 5; margin-top: 78px; transform: rotate(3deg); }
.meme-three { z-index: 2; grid-column: 9 / span 4; transform: rotate(-2deg); }

.links-section {
  display: grid;
  grid-template-columns: minmax(330px, .75fr) minmax(0, 1.25fr);
  background: var(--green);
  color: var(--ink);
}
.links-intro {
  min-height: 620px;
  padding: clamp(70px, 8vw, 120px) clamp(30px, 5vw, 76px);
  border-right: var(--line) solid var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
}
.links-intro .section-number {
  color: var(--ink);
  opacity: .22;
}
.link-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.link-list > a,
.link-list > span {
  min-height: 125px;
  padding: 20px clamp(24px, 4vw, 64px);
  border-bottom: var(--line) solid var(--ink);
  color: var(--ink);
  text-decoration: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 44px;
  align-items: center;
  gap: 24px;
}
.link-list > :first-child { border-top: var(--line) solid var(--ink); }
.link-list > a:hover,
.link-list > a:focus-visible {
  background: var(--white);
  color: var(--ink);
  outline: none;
}
.link-list > a > span,
.link-list > span > span {
  letter-spacing: -.06em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  font-size: clamp(34px, 4vw, 66px);
  font-weight: 1000;
}
.link-list small {
  letter-spacing: .08em;
  text-align: right;
  text-transform: uppercase;
  font: 700 11px/1.2 "Courier New", Courier, monospace;
}
.link-list b {
  text-align: right;
  font-size: 30px;
}
.pending-link {
  cursor: not-allowed;
  color: #1d2b15 !important;
  background: #b7ff0057;
}

.site-footer {
  min-height: 185px;
  padding: 38px clamp(20px, 5vw, 76px);
  border-top: var(--line) solid var(--ink);
  background: var(--ink);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1.2fr auto;
  align-items: center;
  gap: 40px;
}
.site-footer > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.site-footer strong {
  letter-spacing: -.05em;
  font-size: 28px;
}
.site-footer p,
.site-footer span {
  margin: 0;
  color: #aaa;
  font: 700 11px/1.45 "Courier New", Courier, monospace;
}
.copy-toast {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  max-width: calc(100vw - 40px);
  padding: 16px 20px;
  border: var(--line) solid var(--ink);
  background: var(--white);
  color: var(--ink);
  text-transform: uppercase;
  font: 900 13px/1.2 Arial, Helvetica, sans-serif;
  transition: transform .22s;
  transform: translateY(calc(100% + 40px));
}
body.is-copied .copy-toast { transform: translateY(0); }
body.is-copied .mascot { transform: translateY(-12px) rotate(-1deg); }
body.is-copied .thought-cloud { background: var(--green); color: var(--ink); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-word { font-size: 22vw; }
  .mascot-stage { width: 50vw; }
  .safety-section,
  .story-section,
  .pfp-maker-workbench { grid-template-columns: 1fr; }
  .pfp-preview-column { position: static; }
  .crew-wall-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .links-section { grid-template-columns: 1fr; }
  .links-intro {
    min-height: 420px;
    border-right: 0;
    border-bottom: var(--line) solid var(--ink);
  }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > span { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .safety-tape {
    min-height: 38px;
    padding: 0 12px;
    justify-content: center;
    font-size: 9px;
  }
  .safety-tape span:nth-child(n+4) { display: none; }
  .site-header {
    min-height: 70px;
    padding: 0 16px;
  }
  .brand-mark { width: 36px; height: 36px; }
  .site-header nav { display: none; }
  .hero {
    width: 100%;
    max-width: 100vw;
    min-height: calc(100svh - 108px);
    padding: 44px 18px 0;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    align-items: start;
  }
  .hero-word {
    top: 45%;
    left: 49%;
    font-size: 34vw;
    transform: translate(-50%, -50%) rotate(-90deg);
  }
  .hero-copy { padding: 0; }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(52px, 16.5vw, 74px);
    line-height: .82;
  }
  .hero-lede {
    max-width: 93%;
    margin-top: 20px;
    font-size: 16px;
  }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-top: 22px;
  }
  .action {
    min-width: 0;
    min-height: 54px;
    padding: 0 14px;
    font-size: 12px;
  }
  .action-secondary { margin-left: -3px; }
  .ownership-note { max-width: 88%; font-size: 10px; }
  .mascot-stage {
    width: 100%;
    height: 390px;
    margin-top: -8px;
  }
  .mascot {
    width: min(84vw, 410px);
    filter: drop-shadow(10px 12px #07080735);
  }
  .green-block { width: 65%; height: 42%; right: 3%; }
  .thought-cloud {
    top: 3%;
    right: 0;
    width: 148px;
    min-height: 88px;
    padding: 18px;
    border-width: 4px;
    font-size: 17px;
  }
  .contract-dock {
    width: auto;
    min-width: 0;
    min-height: 92px;
    margin-left: -18px;
    margin-right: -18px;
    padding: 14px 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 9px;
  }
  .contract-label { grid-column: 1 / -1; }
  .contract-dock code { font-size: 18px; }
  .contract-command { font-size: 9px; }
  .safety-section,
  .story-section { padding: 88px 18px; }
  .section-number {
    top: 18px;
    right: 18px;
    font-size: 74px;
  }
  .safety-message h2,
  .story-section h2,
  .pfp-maker-section h2,
  .meme-section h2,
  .links-section h2 { font-size: clamp(46px, 15vw, 72px); }
  .safety-rules li {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }
  .safety-rules li p { grid-column: 2; }
  .story-section { gap: 52px; }
  .story-heading .section-number { top: -48px; }
  .pfp-maker-section { padding: 78px 18px 96px; }
  .pfp-maker-heading { grid-template-columns: 1fr; gap: 30px; }
  .pfp-maker-heading > p { max-width: 92%; margin: 0; font-size: 16px; }
  .pfp-maker-workbench { gap: 36px; margin-top: 42px; }
  .pfp-preview-label { padding: 7px 8px; font-size: 8px; }
  .pfp-upload-zone {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 8px 12px;
  }
  .pfp-control-number,
  .pfp-fit-controls legend span,
  .pfp-finish-controls legend span {
    width: 40px;
    font-size: 36px;
  }
  .pfp-fit-help { margin-left: 52px; }
  .pfp-button-row { grid-template-columns: 1fr; }
  .crew-wall { padding: 30px 18px; }
  .crew-wall-heading { grid-template-columns: 1fr; align-items: start; }
  .crew-wall-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .meme-section { padding: 80px 18px 110px; }
  .meme-heading { align-items: start; }
  .meme-note { margin-right: 0; font-size: 13px; }
  .meme-wall {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 60px;
    padding: 0 9vw;
  }
  .meme {
    width: 100%;
    margin: 0;
    box-shadow: 9px 10px 0 var(--ink);
  }
  .meme-two { margin-top: -10px; }
  .meme-three { margin-top: -6px; }
  .links-intro {
    min-height: 380px;
    padding: 70px 18px 50px;
  }
  .link-list > a,
  .link-list > span {
    min-height: 96px;
    padding: 16px 18px;
    grid-template-columns: minmax(0, 1fr) 32px;
    gap: 12px;
  }
  .link-list small { display: none; }
  .link-list > a > span,
  .link-list > span > span { font-size: 34px; }
  .site-footer {
    padding: 42px 18px;
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .site-footer > span { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
