:root {
  --ink: #14283a;
  --ink-deep: #0b1722;
  --paper: #fbf3df;
  --white: #fffdf8;
  --gold: #f4bd35;
  --gold-deep: #d59a16;
  --terra: #a94d35;
  --lime: #c9f63b;
  --muted: #aebcc7;
  --line: rgba(20, 40, 58, .18);
  --display: "Fraunces", Georgia, serif;
  --body: "Newsreader", Georgia, serif;
  --mono: "IBM Plex Mono", monospace;
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--body);
  font-size: 18px;
  overflow-x: hidden;
}
main { position: relative; overflow: clip; }
a { color: inherit; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
section[id] { scroll-margin-top: 76px; }
button:focus-visible, a:focus-visible, input:focus-visible {
  outline: 3px solid var(--ink-deep);
  outline-offset: 4px;
  box-shadow: 0 0 0 3px var(--gold);
}
.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;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--lime);
  color: var(--ink);
  font: 600 .8rem var(--mono);
  padding: 10px 14px;
  border-radius: 6px;
}
.skip-link:focus { transform: none; }

.site-head {
  position: fixed;
  z-index: 60;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px clamp(20px, 4vw, 64px);
  background: linear-gradient(to bottom, rgba(20, 40, 58, .97), rgba(20, 40, 58, .8), transparent);
  transition: background .25s ease, transform .25s ease;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 650 clamp(.92rem, 1.4vw, 1.08rem) var(--display);
  text-decoration: none;
}
.brand-mark {
  width: 46px;
  height: 46px;
  display: block;
  overflow: hidden;
  transform: rotate(-3deg);
  border: 2px solid rgba(244, 189, 53, .58);
  border-radius: 11px;
  background: var(--paper);
  box-shadow: 4px 4px 0 rgba(244, 189, 53, .17);
}
.brand-mark img { display: block; width: 100%; height: 100%; object-fit: cover; }
.site-head nav { display: flex; align-items: center; gap: clamp(18px, 3vw, 36px); }
.site-head nav a {
  color: #cbd5dd;
  text-decoration: none;
  font: 600 .7rem var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.site-head nav a:hover { color: var(--gold); }
.site-head .nav-cta {
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid var(--gold);
}
.site-head .nav-cta:hover { color: var(--white); background: transparent; }

.idea-current {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4200px;
  z-index: 8;
  pointer-events: none;
  overflow: hidden;
}
.idea-current svg { width: 100%; height: 100%; overflow: visible; }
.idea-current path { fill: none; stroke-linecap: round; }
.current-ghost {
  stroke: rgba(244, 189, 53, .12);
  stroke-width: 3;
  stroke-dasharray: 7 16;
}
.current-live {
  stroke: var(--gold);
  stroke-width: 4;
  filter: drop-shadow(0 0 8px rgba(244, 189, 53, .35));
}
.current-dot {
  fill: var(--lime);
  stroke: var(--ink-deep);
  stroke-width: 4;
  filter: drop-shadow(0 0 10px rgba(201, 246, 59, .72));
}

.eyebrow, .mono-note {
  font: 600 .67rem/1.5 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow { color: var(--gold); }
.eyebrow.dark { color: var(--terra); }
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(201, 246, 59, .13);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(100svh, 920px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .72fr);
  gap: clamp(42px, 5.5vw, 86px);
  align-items: center;
  padding: 114px max(6vw, 26px) 88px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: min(52vw, 780px);
  aspect-ratio: 1;
  top: -29%;
  right: -12%;
  border: 1px solid rgba(244, 189, 53, .2);
  border-radius: 42% 58% 62% 38% / 48% 40% 60% 52%;
  animation: slow-turn 28s linear infinite;
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -3;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(201, 246, 59, .07), transparent 16%),
    radial-gradient(circle at 18% 70%, rgba(201, 104, 75, .12), transparent 24%),
    linear-gradient(145deg, var(--ink-deep), var(--ink) 54%, #19354c);
}
@keyframes slow-turn { to { transform: rotate(360deg); } }
.hero-noise {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.13'/%3E%3C/svg%3E");
}
.hero-copy { position: relative; z-index: 12; max-width: 760px; }
.hero h1 {
  margin: 18px 0 24px;
  max-width: 15ch;
  font: 750 clamp(3.2rem, 6.5vw, 7.5rem)/.9 var(--display);
  font-variation-settings: "SOFT" 100, "WONK" 1;
  letter-spacing: -.055em;
}
.dangerous {
  position: relative;
  z-index: 0;
  color: var(--paper);
  white-space: nowrap;
}
.dangerous::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: -.03em;
  right: -.05em;
  bottom: .03em;
  height: .24em;
  background: var(--terra);
  transform: rotate(-1.2deg);
}
.creative-word { position: relative; color: var(--gold); white-space: nowrap; }
.orbit-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  right: -.19em;
  top: .16em;
  background: var(--lime);
  box-shadow: 0 0 18px rgba(201, 246, 59, .7);
  animation: jitter 2.6s ease-in-out infinite;
}
@keyframes jitter {
  0%, 100% { transform: translate(0, 0); }
  22% { transform: translate(8px, -6px); }
  48% { transform: translate(-2px, 5px); }
  72% { transform: translate(5px, 2px); }
}
.hero-lede {
  max-width: 50ch;
  margin: 0 0 28px;
  color: #c5d0d8;
  font-size: clamp(1.14rem, 1.7vw, 1.42rem);
  line-height: 1.5;
}
.hero-audience {
  max-width: 67ch;
  margin: 18px 0 0 19px;
  color: #9babb7;
  font: 600 .64rem/1.55 var(--mono);
  letter-spacing: .055em;
  text-transform: uppercase;
}
.hero-audience strong { color: var(--gold); font-size: .78rem; }
.signup {
  display: flex;
  width: min(100%, 590px);
  padding: 6px;
  border-radius: 999px;
  background: var(--paper);
  border: 2px solid var(--gold);
  box-shadow: 7px 7px 0 rgba(244, 189, 53, .17);
}
.signup input {
  min-width: 0;
  flex: 1;
  padding: 12px 14px 12px 19px;
  color: var(--ink);
  background: transparent;
  border: 0;
}
.signup input::placeholder { color: #536574; }
.signup .form-trap { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.signup[hidden] { display: none; }
.signup button:disabled { cursor: wait; opacity: .72; transform: none; box-shadow: none; }
.signup button, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 13px 23px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: var(--paper);
  background: var(--ink);
  cursor: pointer;
  text-decoration: none;
  font: 600 .75rem var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s var(--ease), background .2s ease, color .2s ease, box-shadow .2s ease;
}
.signup button:hover, .button:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--gold); }
.form-note, .form-result {
  margin: 12px 0 0 19px;
  color: #8295a4;
  font: .65rem var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.form-result { color: var(--lime); min-height: 1.2em; }

.lab-note-card {
  position: relative;
  z-index: 12;
  min-height: 480px;
  padding: clamp(31px, 4vw, 52px);
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink-deep);
  border-radius: 9px 28px 14px 18px;
  box-shadow: 18px 20px 0 var(--gold), 27px 31px 0 rgba(11, 23, 34, .6);
  transform: rotate(.7deg);
}
.lab-note-card::after {
  content: "";
  position: absolute;
  inset: 11px;
  border: 1px dashed rgba(20, 40, 58, .18);
  border-radius: 4px 22px 9px 13px;
  pointer-events: none;
}
.tape {
  position: absolute;
  z-index: 2;
  width: 112px;
  height: 31px;
  top: -16px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  background: rgba(224, 214, 180, .88);
  border-left: 1px dashed rgba(20, 40, 58, .16);
  border-right: 1px dashed rgba(20, 40, 58, .16);
}
.lab-note-label {
  position: relative;
  z-index: 2;
  margin: 0;
  font: 600 .64rem/1.4 var(--mono);
  letter-spacing: .12em;
  color: var(--terra);
}
.lab-note-card h2 {
  position: relative;
  z-index: 2;
  max-width: 13ch;
  margin: 31px 0 27px;
  font: 650 clamp(2rem, 3.15vw, 3.45rem)/.98 var(--display);
  letter-spacing: -.035em;
}
.lab-note-finding {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lab-note-finding p {
  margin: 0;
  padding: 15px;
  border: 1.5px solid var(--ink);
  background: var(--white);
  font-size: .96rem;
  line-height: 1.35;
}
.lab-note-finding p:last-child { background: rgba(201, 246, 59, .55); transform: rotate(1deg); }
.lab-note-finding strong {
  display: block;
  margin-bottom: 7px;
  color: var(--terra);
  font: 600 .58rem var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.lab-note-footer {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 25px;
}
.lab-note-footer > a {
  color: var(--ink);
  font: 600 .66rem var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  text-underline-offset: 5px;
}
.lab-note-footer > span {
  display: inline-block;
  padding: 6px 8px;
  color: var(--terra);
  border: 2px solid var(--terra);
  font: 600 .56rem var(--mono);
  letter-spacing: .1em;
  transform: rotate(-2deg);
}
.down-cue {
  position: absolute;
  z-index: 14;
  bottom: 24px;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  transform: translateX(-50%);
  color: #7f93a2;
  text-decoration: none;
  font: 600 .6rem var(--mono);
  letter-spacing: .14em;
}
.down-cue span:last-child { color: var(--gold); font-size: 1.1rem; }

.paper-section {
  position: relative;
  z-index: 10;
  color: var(--ink);
  background: var(--paper);
}
.notes-section {
  padding: clamp(86px, 8vw, 128px) max(6vw, 26px) clamp(95px, 9vw, 145px);
  border-radius: 55px 55px 0 0;
  box-shadow: 0 -18px 0 rgba(244, 189, 53, .12);
}
.notes-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  pointer-events: none;
  background-image: linear-gradient(rgba(20, 40, 58, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 40, 58, .06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(to bottom, black, transparent 50%);
}
.fresh-head h2, .join-copy h2, .notes-copy h2 {
  margin: 0;
  font: 700 clamp(3rem, 6.5vw, 6.7rem)/.91 var(--display);
  letter-spacing: -.055em;
}
.notes-shell {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
}
.notes-copy h2 { max-width: 9ch; font-size: clamp(3.2rem, 5.7vw, 5.8rem); }
.notes-copy > p:last-child {
  max-width: 37ch;
  margin: 30px 0 0;
  font-size: clamp(1.12rem, 1.7vw, 1.42rem);
  line-height: 1.5;
}
.notes-portal {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 22px;
  min-height: 430px;
  padding: clamp(32px, 5vw, 62px);
  color: var(--ink);
  background: var(--gold);
  border: 3px solid var(--ink);
  border-radius: 18px;
  box-shadow: 13px 13px 0 var(--ink);
  text-decoration: none;
  transform: rotate(1deg);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.notes-portal:hover { transform: rotate(0) translateY(-7px); box-shadow: 17px 18px 0 var(--terra); }
.portal-count { grid-row: 1 / 3; font: 750 clamp(4.5rem, 8vw, 7.4rem)/.8 var(--display); }
.portal-label { align-self: end; font: 600 .62rem var(--mono); letter-spacing: .13em; }
.portal-map {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 36px 0 25px;
}
.portal-map i { padding: 7px 9px; background: var(--paper); border: 1.5px solid var(--ink); font: 600 .58rem var(--mono); letter-spacing: .08em; font-style: normal; }
.notes-portal strong { grid-column: 1 / -1; max-width: 9ch; font: 650 clamp(2.7rem, 5vw, 5rem)/.91 var(--display); letter-spacing: -.045em; }
.portal-action { grid-column: 1 / -1; align-self: end; margin-top: 30px; font: 600 .68rem var(--mono); letter-spacing: .1em; text-transform: uppercase; text-decoration: underline 3px var(--paper); text-underline-offset: 6px; }

.fresh-section {
  position: relative;
  z-index: 10;
  padding: clamp(92px, 9vw, 145px) max(6vw, 26px);
  background: var(--ink);
  overflow: hidden;
}
.fresh-section::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  left: -210px;
  top: 34%;
  border: 60px solid rgba(201, 104, 75, .09);
  border-radius: 50%;
}
.fresh-head {
  position: relative;
  max-width: 1170px;
  margin: 0 auto 70px;
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 30px 8vw;
  align-items: end;
}
.fresh-head .eyebrow { grid-column: 1 / -1; margin-bottom: -17px; }
.fresh-head h2 { max-width: 9ch; color: var(--paper); }
.fresh-head > p:last-child { max-width: 34ch; color: #b9c6cf; font-size: 1.25rem; line-height: 1.5; }
.issue-stack {
  position: relative;
  max-width: 1120px;
  min-height: 615px;
  margin: 0 auto;
}
.issue {
  position: absolute;
  width: min(70%, 720px);
  min-height: 355px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 4vw, 52px);
  color: var(--ink);
  background: var(--paper);
  border: 2px solid var(--ink-deep);
  border-radius: 13px;
  box-shadow: 14px 14px 0 var(--gold);
  text-decoration: none;
  transition: transform .35s var(--ease), z-index 0s .12s;
}
.issue:hover { z-index: 5; transform: rotate(0) translateY(-14px); transition-delay: 0s; }
.issue-one { left: 0; top: 0; transform: rotate(-3deg); }
.issue-two { right: 0; top: 106px; transform: rotate(2.5deg); background: #fff8e9; box-shadow: 14px 14px 0 var(--terra); }
.issue-three { left: 18%; top: 234px; transform: rotate(-.7deg); background: #f5edda; box-shadow: 14px 14px 0 var(--lime); }
.issue-meta { color: var(--terra); font: 600 .66rem var(--mono); letter-spacing: .13em; }
.issue strong { max-width: 17ch; margin: 34px 0 22px; font: 650 clamp(2rem, 3.8vw, 3.6rem)/.96 var(--display); letter-spacing: -.04em; }
.issue-note { max-width: 45ch; line-height: 1.42; }
.read-link { margin-top: auto; padding-top: 28px; font: 600 .68rem var(--mono); letter-spacing: .08em; text-transform: uppercase; text-decoration: underline 3px var(--gold); text-underline-offset: 5px; }
.archive-link {
  display: inline-block;
  width: fit-content;
  margin: 0;
  color: var(--gold);
  font: 600 .7rem var(--mono);
  letter-spacing: .12em;
  text-underline-offset: 6px;
}
.fresh-actions {
  max-width: 1120px;
  margin: 58px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.button-gold {
  color: var(--ink);
  background: var(--gold);
  border-color: var(--gold);
}
.button-gold:hover { color: var(--paper); background: transparent; }

.manifesto {
  min-height: 0;
  display: block;
  padding: clamp(105px, 10vw, 150px) max(7vw, 30px) clamp(92px, 9vw, 135px);
  overflow: hidden;
}
.manifesto::before {
  content: "";
  position: absolute;
  width: 48vw;
  height: 48vw;
  min-width: 500px;
  min-height: 500px;
  border: 2px dashed rgba(20, 40, 58, .16);
  border-radius: 44% 56% 35% 65%;
  transform: rotate(20deg);
}
.manifesto-tag {
  position: relative;
  z-index: 2;
  width: fit-content;
  margin: 0 auto 42px;
  color: var(--terra);
  font: 600 .65rem var(--mono);
  letter-spacing: .12em;
}
.manifesto blockquote { position: relative; z-index: 2; max-width: 1040px; margin: 0 auto; text-align: center; }
.manifesto blockquote p { margin: 0; font: 650 clamp(2.7rem, 5.2vw, 5.8rem)/.94 var(--display); letter-spacing: -.052em; }
.manifesto blockquote em { color: var(--terra); text-decoration: underline 8px var(--gold); text-underline-offset: 2px; }
.manifesto-bridge {
  position: relative;
  z-index: 2;
  margin: 58px auto 20px;
  text-align: center;
  color: var(--terra);
  font: 600 .66rem var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.beliefs {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.beliefs p {
  margin: 0;
  padding: 20px;
  background: rgba(255, 253, 248, .72);
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--gold);
  font: 600 .74rem/1.55 var(--mono);
  letter-spacing: .045em;
}
.beliefs p:nth-child(2) { transform: rotate(1deg); box-shadow-color: var(--terra); }
.beliefs p:nth-child(3) { transform: rotate(-1deg); box-shadow-color: var(--lime); }
.beliefs span { display: block; margin-bottom: 13px; color: var(--terra); font-size: .62rem; }
.manifesto-cta {
  position: relative;
  z-index: 2;
  display: block;
  width: fit-content;
  margin: 42px auto 0;
  color: var(--ink);
  font: 600 .69rem var(--mono);
  letter-spacing: .08em;
  text-underline-offset: 6px;
}
.handwritten {
  position: absolute;
  right: 7vw;
  top: 75px;
  color: var(--ink);
  background: var(--lime);
  padding: 5px 11px;
  font: italic 1.1rem var(--body);
  transform: rotate(5deg);
}

.join-section {
  position: relative;
  z-index: 10;
  padding: clamp(72px, 8vw, 112px) max(6vw, 26px);
  background: var(--terra);
}
.join-card {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  padding: clamp(36px, 5vw, 64px);
  color: var(--ink);
  background: var(--paper);
  border: 3px solid var(--ink);
  border-radius: 23px;
  box-shadow: 16px 16px 0 var(--ink);
}
.join-copy h2 { max-width: 11ch; font-size: clamp(2.8rem, 5vw, 5.5rem); }
.join-copy > p:last-child { margin: 23px 0 0; color: var(--terra); font: italic 500 1.45rem var(--display); }
.signup-final { border-color: var(--ink); box-shadow: 7px 7px 0 var(--gold); }
.dark-note { color: #536574; }
.dark-result { color: #365000; }
.secondary-exit {
  display: inline-block;
  margin: 33px 0 0 19px;
  color: var(--ink);
  font: 600 .67rem var(--mono);
  letter-spacing: .05em;
  text-underline-offset: 5px;
}

footer {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  padding: 28px max(4vw, 22px);
  color: #8295a4;
  background: var(--ink-deep);
  font: .62rem var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
}

@media (max-width: 1050px) {
  .hero { grid-template-columns: 1fr; padding-top: 126px; }
  .hero-copy { max-width: 790px; }
  .lab-note-card { width: min(680px, 93%); justify-self: end; min-height: 430px; }
  .notes-shell { grid-template-columns: 1fr; max-width: 820px; }
  .notes-copy h2 { max-width: 11ch; }
  .join-card { grid-template-columns: 1fr; }
}

@media (max-height: 800px) and (min-width: 1051px) {
  .hero { padding-top: 88px; padding-bottom: 48px; }
  .hero h1 { margin-top: 11px; margin-bottom: 17px; font-size: clamp(3rem, 5.55vw, 5.7rem); }
  .hero-lede { margin-bottom: 18px; font-size: 1.08rem; }
  .lab-note-card { min-height: 420px; padding-block: 34px; }
  .lab-note-card h2 { margin-block: 24px 22px; font-size: clamp(2rem, 2.7vw, 3rem); }
  .down-cue { display: none; }
}

@media (max-width: 760px) {
  body { font-size: 17px; }
  section[id] { scroll-margin-top: 66px; }
  .site-head { min-height: 66px; padding: 10px 17px; }
  .brand > span:last-child { display: none; }
  .site-head nav { gap: 13px; }
  .site-head nav > a:not(.nav-cta) { display: none; }
  .site-head .nav-cta { padding: 10px 13px; }
  .idea-current { display: none; }
  .hero {
    min-height: auto;
    gap: 66px;
    padding: 105px 19px 105px;
  }
  .hero h1 { font-size: clamp(3rem, 13.8vw, 4.3rem); max-width: 11ch; }
  .hero-lede { font-size: 1.15rem; }
  .hero-audience { margin-left: 4px; font-size: .59rem; }
  .signup { flex-direction: column; border-radius: 18px; padding: 6px; }
  .signup input { min-height: 52px; padding-left: 14px; text-align: center; }
  .signup button { width: 100%; }
  .form-note, .form-result { margin-left: 4px; text-align: center; }
  .lab-note-card { width: calc(100% - 14px); min-height: 0; padding: 31px 26px; box-shadow: 10px 12px 0 var(--gold), 16px 19px 0 rgba(11, 23, 34, .6); }
  .lab-note-card h2 { max-width: 12ch; font-size: clamp(2.35rem, 10.5vw, 3.3rem); }
  .lab-note-finding { grid-template-columns: 1fr; }
  .down-cue { display: none; }
  .notes-section { border-radius: 30px 30px 0 0; padding-inline: 18px; }
  .notes-copy h2 { max-width: 10ch; font-size: clamp(3.25rem, 14.5vw, 5rem); }
  .notes-portal { min-height: 390px; padding: 31px 25px; box-shadow: 9px 10px 0 var(--ink); transform: rotate(.5deg); }
  .portal-count { font-size: 4.5rem; }
  .notes-portal strong { font-size: clamp(2.8rem, 13vw, 4.3rem); }
  .fresh-section { padding-inline: 18px; }
  .fresh-head { display: block; }
  .fresh-head .eyebrow { margin: 0 0 20px; }
  .fresh-head h2 { max-width: 8ch; font-size: clamp(3.6rem, 15vw, 5rem); }
  .fresh-head > p:last-child { margin-top: 25px; }
  .issue-stack { min-height: 0; display: grid; gap: 28px; }
  .issue { position: relative; inset: auto; width: 100%; min-height: 350px; transform: rotate(-1deg); box-shadow: 9px 9px 0 var(--gold); }
  .issue-two { transform: rotate(1deg); box-shadow: 9px 9px 0 var(--terra); }
  .issue-three { transform: rotate(-.5deg); box-shadow: 9px 9px 0 var(--lime); }
  .issue strong { font-size: 2.35rem; }
  .fresh-actions { flex-direction: column-reverse; align-items: stretch; }
  .fresh-actions .button { width: 100%; }
  .fresh-actions .archive-link { align-self: center; text-align: center; line-height: 1.5; }
  .manifesto { min-height: 0; padding: 100px 20px 92px; }
  .manifesto-tag { margin-bottom: 34px; text-align: center; }
  .manifesto blockquote p { font-size: clamp(2.85rem, 13vw, 4.8rem); }
  .manifesto blockquote em { text-decoration-thickness: 6px; }
  .manifesto-bridge { margin-top: 48px; }
  .beliefs { position: relative; inset: auto; width: 100%; grid-template-columns: 1fr; transform: none; }
  .beliefs p { transform: none !important; }
  .handwritten { top: 50px; right: 18px; font-size: .95rem; }
  .join-section { padding-inline: 18px; }
  .join-card { padding: 38px 21px; box-shadow: 10px 10px 0 var(--ink); }
  .join-copy h2 { font-size: clamp(3rem, 13vw, 4.7rem); }
  .secondary-exit { margin-left: 0; line-height: 1.5; }
  footer { text-align: right; }
}

@media (max-width: 420px) {
  .site-head { width: 100vw; }
  .site-head .nav-cta { font-size: .57rem; padding-inline: 11px; }
  .hero h1 { font-size: clamp(2.85rem, 13.2vw, 3.45rem); line-height: .94; }
  .hero-lede { max-width: 100%; overflow-wrap: anywhere; }
  .dangerous, .creative-word { white-space: normal; }
}

@media (max-width: 350px) {
  .hero h1 { font-size: 3rem; }
  .site-head .nav-cta { font-size: .59rem; }
  .lab-note-card h2 { font-size: 2.45rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .current-live { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; opacity: .55; }
  .current-dot { display: none; }
  .issue, .lab-note-card, .notes-portal { transform: none !important; }
}
