@font-face {
  font-family: "Wave Mono";
  src: local("Menlo"), local("Monaco");
  font-display: swap;
}

:root {
  --ink: #242424;
  --ink-soft: #4a4a47;
  --paper: #ececeb;
  --paper-deep: #dddeda;
  --mint: #b7e5cf;
  --mint-bright: #cbf4df;
  --bubblegum: #ee7eac;
  --bubblegum-dark: #c8497e;
  --line: rgba(36, 36, 36, 0.24);
  --unit: clamp(1rem, 2vw, 2rem);
  --mono: "Wave Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 14px;
  line-height: 1.45;
  overflow-x: hidden;
}

::selection {
  color: var(--ink);
  background: var(--mint);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
mark {
  color: inherit;
  background: var(--bubblegum);
  padding: 0 0.06em;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-180%);
  transition: transform 160ms ease;
}
.skip-link:focus {
  transform: translateY(0);
}

.page-shell {
  width: 100%;
  overflow: hidden;
}
.site-header {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 88px;
  padding: 1rem clamp(1rem, 4vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(236, 236, 235, 0.92);
  backdrop-filter: blur(12px);
}
.wordmark {
  display: inline-flex;
  align-items: baseline;
  width: max-content;
  font-family: var(--sans);
  font-size: clamp(1.25rem, 2vw, 2rem);
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 1;
}
.wordmark span:first-child {
  padding: 0.15em 0.18em 0.12em 0.14em;
  background: var(--ink);
  color: var(--paper);
}
.wordmark span:nth-child(2) {
  padding: 0.15em 0.2em 0.12em 0.1em;
  background: var(--bubblegum);
  color: var(--ink);
}
.wordmark sup {
  margin-left: 0.35rem;
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0;
}
.nav-links {
  display: flex;
  gap: clamp(1.25rem, 3vw, 3.5rem);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
.nav-links a,
.header-cta,
.text-link,
footer a {
  border-bottom: 1px solid transparent;
}
.nav-links a:hover,
.header-cta:hover,
.text-link:hover,
footer a:hover {
  border-color: currentColor;
}
.header-cta {
  justify-self: end;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
.header-cta span {
  color: var(--bubblegum-dark);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  gap: clamp(2rem, 5vw, 6rem);
  min-height: calc(100vh - 88px);
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 4.5rem)
    clamp(3rem, 6vw, 6rem);
  background:
    linear-gradient(rgba(36, 36, 36, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(36, 36, 36, 0.055) 1px, transparent 1px),
    var(--paper);
  background-size: 32px 32px;
}
.hero::before {
  content: "WF / 001";
  position: absolute;
  right: 1.2rem;
  bottom: 1rem;
  color: rgba(36, 36, 36, 0.45);
  font-size: 0.62rem;
  writing-mode: vertical-rl;
}
.hero-copy {
  align-self: center;
  position: relative;
  z-index: 2;
}
.eyebrow {
  margin: 0 0 1.75rem;
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.status-dot {
  display: inline-block;
  width: 0.65rem;
  height: 0.65rem;
  margin-right: 0.65rem;
  background: var(--bubblegum);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(238, 126, 172, 0.18);
}
h1,
h2,
h3 {
  margin: 0;
  font-family: var(--sans);
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.87;
  text-transform: uppercase;
}
h1 {
  max-width: 850px;
  font-size: clamp(4rem, 8.5vw, 9.4rem);
}
h1 mark {
  display: inline-block;
  transform: rotate(-1deg);
}
.hero-lede {
  max-width: 620px;
  margin: 2.5rem 0 0;
  font-family: var(--sans);
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
  line-height: 1.35;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2.5rem;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  transition:
    transform 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}
.button:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 0 var(--bubblegum);
}
.button-dark {
  color: var(--paper);
  background: var(--ink);
}
.text-link {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.field-figure {
  position: relative;
  align-self: center;
  aspect-ratio: 1 / 1.08;
  max-height: 710px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--mint);
  box-shadow: 14px 14px 0 rgba(36, 36, 36, 0.13);
}
.field-grid {
  position: absolute;
  inset: 0;
  opacity: 0.42;
  background-image: radial-gradient(var(--ink) 0.8px, transparent 0.8px);
  background-size: 12px 12px;
  mask-image: radial-gradient(circle at 24% 66%, black, transparent 76%);
}
.field-figure::after {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px dashed rgba(36, 36, 36, 0.42);
  pointer-events: none;
}
.figure-label {
  position: absolute;
  z-index: 5;
  padding: 0.35rem 0.5rem;
  background: var(--paper);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}
.figure-label-top {
  top: 1.2rem;
  left: 1.2rem;
}
.figure-label-side {
  right: 0.65rem;
  top: 50%;
  writing-mode: vertical-rl;
  background: transparent;
}
.wave-origin {
  position: absolute;
  left: 23%;
  top: 68%;
  width: 10px;
  height: 10px;
}
.wave-origin i {
  position: absolute;
  z-index: 4;
  inset: -4px;
  border-radius: 50%;
  background: var(--ink);
  box-shadow: 0 0 0 5px var(--bubblegum);
}
.wave-origin span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10rem;
  height: 10rem;
  border: 2px solid rgba(36, 36, 36, 0.58);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 4s linear infinite;
}
.wave-origin span:nth-child(2) {
  animation-delay: -1s;
}
.wave-origin span:nth-child(3) {
  animation-delay: -2s;
}
.wave-origin span:nth-child(4) {
  animation-delay: -3s;
}
@keyframes pulse {
  from {
    width: 1rem;
    height: 1rem;
    opacity: 0.85;
  }
  to {
    width: 38rem;
    height: 38rem;
    opacity: 0;
  }
}
.wall {
  position: absolute;
  z-index: 3;
  background: var(--ink);
  box-shadow: 7px 7px 0 rgba(238, 126, 172, 0.55);
}
.wall-a {
  left: 47%;
  top: 30%;
  width: 5%;
  height: 46%;
}
.wall-b {
  left: 47%;
  top: 30%;
  width: 34%;
  height: 5%;
}
.listener {
  position: absolute;
  z-index: 4;
  right: 14%;
  top: 21%;
  width: 28px;
  height: 28px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}
.listener::before,
.listener::after {
  content: "";
  position: absolute;
  background: var(--ink);
}
.listener::before {
  left: 50%;
  top: -11px;
  width: 1px;
  height: 48px;
}
.listener::after {
  top: 50%;
  left: -11px;
  height: 1px;
  width: 48px;
}
.listener span {
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--bubblegum);
}
.route-line {
  position: absolute;
  z-index: 2;
  left: 24%;
  top: 32%;
  width: 61%;
  height: 38%;
  border-top: 2px dashed var(--bubblegum-dark);
  border-right: 2px dashed var(--bubblegum-dark);
  border-radius: 0 18rem 0 0;
  transform: rotate(-8deg);
}
.figure-readout {
  position: absolute;
  z-index: 5;
  left: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  grid-template-columns: auto auto;
  gap: 0.25rem 1.25rem;
  padding: 0.65rem 0.75rem;
  color: var(--paper);
  background: var(--ink);
  font-size: 0.58rem;
}
.figure-readout strong {
  color: var(--mint);
  font-weight: 400;
}

.signal-strip {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 56px;
  padding: 0 clamp(1rem, 4vw, 4.5rem);
  border-block: 1px solid var(--ink);
  background: var(--bubblegum);
  white-space: nowrap;
  overflow: hidden;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
}
.signal-strip i {
  width: 1.25rem;
  height: 1px;
  background: var(--ink);
}
.signal-strip b {
  margin-left: auto;
  font-size: 1.2rem;
}

.manifesto {
  padding: clamp(5rem, 10vw, 10rem) clamp(1rem, 4vw, 4.5rem);
}
.section-index {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--ink);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}
.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  gap: clamp(3rem, 10vw, 10rem);
  align-items: end;
  margin-top: clamp(3rem, 7vw, 7rem);
}
.manifesto h2,
.how h2,
.result h2,
.access h2 {
  font-size: clamp(3rem, 7vw, 7.8rem);
}
.manifesto h2 em {
  position: relative;
  display: inline-block;
  color: var(--bubblegum-dark);
  font-style: normal;
}
.manifesto h2 em::after {
  content: "";
  position: absolute;
  left: -2%;
  right: -3%;
  bottom: -0.12em;
  height: 0.15em;
  background: var(--mint);
  transform: rotate(-1deg);
}
.manifesto-copy {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  line-height: 1.45;
}
.manifesto-copy p {
  margin: 0;
}
.manifesto-copy p + p {
  margin-top: 1.5rem;
}

.how {
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 4vw, 4.5rem);
  color: var(--paper);
  background: var(--ink);
}
.section-index-light {
  border-color: rgba(236, 236, 235, 0.5);
}
.how-heading {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 0.35fr);
  gap: 4rem;
  align-items: end;
  margin: 4rem 0 5rem;
}
.how-heading mark {
  color: var(--ink);
  background: var(--mint);
}
.how-heading p {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.15rem;
  line-height: 1.45;
}
.tier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(236, 236, 235, 0.5);
}
.tier-card {
  position: relative;
  min-height: 570px;
  padding: 1.3rem;
  overflow: hidden;
  color: var(--ink);
}
.tier-card + .tier-card {
  border-left: 1px solid var(--ink);
}
.tier-bake {
  background: var(--paper);
}
.tier-update {
  background: var(--mint);
}
.tier-react {
  background: var(--bubblegum);
}
.tier-meta {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--ink);
  font-size: 0.62rem;
}
.tier-card h3 {
  margin-top: 2rem;
  font-size: clamp(2rem, 3.2vw, 3.6rem);
  line-height: 0.93;
}
.tier-card p {
  max-width: 30rem;
  min-height: 5.5rem;
  margin: 1.3rem 0;
  font-family: var(--sans);
  font-size: 1rem;
}
.tier-tag {
  display: inline-block;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--ink);
  font-size: 0.58rem;
}
.tier-icon {
  position: relative;
  height: 245px;
  margin: 2rem 0 0;
}
.tier-icon i,
.tier-icon b {
  position: absolute;
  display: block;
}
.tier-icon-bake i {
  border: 1px solid var(--ink);
}
.tier-icon-bake i:nth-child(1) {
  inset: 10% 10% 18%;
}
.tier-icon-bake i:nth-child(2) {
  inset: 20% 20% 28%;
  background-image: radial-gradient(var(--ink) 1px, transparent 1px);
  background-size: 9px 9px;
}
.tier-icon-bake i:nth-child(3) {
  left: 13%;
  right: 13%;
  top: 44%;
  height: 1px;
  background: var(--bubblegum-dark);
  transform: rotate(27deg);
}
.tier-icon-bake i:nth-child(4) {
  left: 13%;
  right: 13%;
  top: 44%;
  height: 1px;
  background: var(--bubblegum-dark);
  transform: rotate(-27deg);
}
.tier-icon-bake b {
  width: 18px;
  height: 18px;
  left: 50%;
  top: 44%;
  background: var(--bubblegum);
  transform: translate(-50%, -50%);
}
.tier-icon-update i {
  width: 31%;
  aspect-ratio: 1;
  border: 1px solid var(--ink);
  background-image: linear-gradient(
    45deg,
    transparent 47%,
    var(--ink) 48%,
    var(--ink) 52%,
    transparent 53%
  );
}
.tier-icon-update i:nth-child(1) {
  left: 6%;
  top: 13%;
}
.tier-icon-update i:nth-child(2) {
  left: 35%;
  top: 13%;
  background-color: var(--bubblegum);
}
.tier-icon-update i:nth-child(3) {
  left: 64%;
  top: 13%;
}
.tier-icon-update b {
  left: 41%;
  top: 52%;
  width: 20%;
  height: 35%;
  border: 2px dashed var(--bubblegum-dark);
}
.tier-icon-react i {
  left: 49%;
  top: 45%;
  border: 1px solid var(--ink);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.tier-icon-react i:nth-child(1) {
  width: 45px;
  height: 45px;
}
.tier-icon-react i:nth-child(2) {
  width: 95px;
  height: 95px;
}
.tier-icon-react i:nth-child(3) {
  width: 150px;
  height: 150px;
}
.tier-icon-react i:nth-child(4) {
  width: 210px;
  height: 210px;
  border-style: dashed;
}
.tier-icon-react b {
  left: 49%;
  top: 45%;
  width: 18px;
  height: 18px;
  background: var(--mint);
  transform: translate(-50%, -50%) rotate(45deg);
}

.result {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  min-height: 780px;
}
.result-art {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  border-right: 1px solid var(--ink);
  background: var(--mint);
}
.result-art::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(var(--ink) 1px, transparent 1px);
  background-size: 13px 13px;
}
.sound-room {
  position: absolute;
  z-index: 2;
  border: 16px solid var(--ink);
  border-right-width: 8px;
}
.room-a {
  left: 28%;
  top: 15%;
  width: 43%;
  height: 32%;
  border-bottom-color: transparent;
}
.room-b {
  left: 42%;
  top: 46%;
  width: 29%;
  height: 35%;
  border-top-width: 8px;
}
.room-c {
  left: 12%;
  top: 47%;
  width: 31%;
  height: 21%;
  border-right-color: transparent;
}
.sound-source,
.sound-listener {
  position: absolute;
  z-index: 4;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
.sound-source {
  left: 17%;
  bottom: 22%;
  background: var(--bubblegum);
  box-shadow: 0 0 0 8px var(--ink);
}
.sound-listener {
  right: 18%;
  top: 25%;
  border: 5px solid var(--ink);
  background: var(--paper);
}
.sound-ray {
  position: absolute;
  z-index: 3;
  height: 2px;
  transform-origin: left;
  border-top: 2px dashed var(--bubblegum-dark);
}
.ray-a {
  left: 18%;
  bottom: 23%;
  width: 67%;
  transform: rotate(-44deg);
}
.ray-b {
  left: 18%;
  bottom: 23%;
  width: 56%;
  transform: rotate(-14deg);
}
.ray-c {
  left: 18%;
  bottom: 23%;
  width: 52%;
  transform: rotate(-78deg);
}
.result-art small {
  position: absolute;
  z-index: 5;
  font-size: 0.58rem;
}
.result-art small:first-of-type {
  left: 12%;
  bottom: 14%;
}
.result-art small:last-of-type {
  right: 11%;
  top: 18%;
}
.result-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 6rem);
}
.result-copy mark {
  display: inline-block;
}
.result-copy ul {
  list-style: none;
  padding: 0;
  margin: 4rem 0 0;
  border-top: 1px solid var(--ink);
}
.result-copy li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
}
.result-copy li span {
  font-family: var(--mono);
  font-size: 0.62rem;
}

.access {
  position: relative;
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: clamp(2rem, 7vw, 7rem);
  align-items: center;
  padding: clamp(5rem, 10vw, 10rem) clamp(1rem, 7vw, 7rem);
  overflow: hidden;
  background: var(--bubblegum);
}
.access::before {
  content: "WAVEFIELD";
  position: absolute;
  right: -2%;
  top: 47%;
  color: rgba(236, 236, 235, 0.18);
  font-family: var(--sans);
  font-size: 18vw;
  font-weight: 900;
  letter-spacing: -0.1em;
  transform: translateY(-50%);
  pointer-events: none;
}
.access-copy,
.access-stamp {
  position: relative;
  z-index: 2;
}
.access-stamp {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: clamp(180px, 22vw, 300px);
  aspect-ratio: 1;
  border: 2px solid var(--ink);
  border-radius: 50%;
  text-align: center;
  transform: rotate(-7deg);
}
.access-stamp::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px dashed var(--ink);
  border-radius: 50%;
}
.access-stamp b {
  font-family: var(--sans);
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 1;
  letter-spacing: -0.1em;
}
.access-stamp span {
  font-size: 0.55rem;
  letter-spacing: 0.14em;
}
.access-copy {
  max-width: 980px;
}
.access-copy h2 mark {
  color: var(--ink);
  background: var(--mint);
}
.access-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 2rem 0;
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}
.email-form {
  margin-top: 3rem;
  max-width: 830px;
}
.email-form label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
}
.email-row {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 2px solid var(--ink);
  background: var(--paper);
}
.email-row input {
  min-width: 0;
  padding: 1.15rem;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}
.email-row input::placeholder {
  color: #76766f;
}
.email-row input:focus-visible {
  box-shadow: inset 0 0 0 3px var(--mint);
}
.email-row button {
  min-width: 210px;
  padding: 1.15rem 1.4rem;
  border: 0;
  border-left: 2px solid var(--ink);
  color: var(--paper);
  background: var(--ink);
  cursor: pointer;
}
.email-row button:hover {
  color: var(--ink);
  background: var(--mint);
}
.email-row button[style*="display: none"] {
  display: none !important;
}
.email-row .loading {
  align-items: center;
  justify-content: center;
  cursor: wait;
}
.form-message {
  min-height: 1.4rem;
  margin: 0.6rem 0 0 !important;
  font-family: var(--mono) !important;
  font-size: 0.58rem !important;
  letter-spacing: 0.06em;
}
.form-message.d-none {
  display: block;
}
.form-message.is-error {
  color: #651a36;
}
.form-message.is-success {
  display: inline-block;
  padding: 0.35rem 0.5rem;
  background: var(--mint);
}
.ml-error input {
  box-shadow: inset 0 0 0 3px #651a36;
}
.ml-form-embedSubmitLoad {
  display: inline-block;
  width: 20px;
  height: 20px;
}
.ml-form-embedSubmitLoad::after {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  margin: 1px;
  border: 4px solid var(--paper);
  border-color: var(--paper) var(--paper) var(--paper) transparent;
  border-radius: 50%;
  animation: ml-form-embed-submit-load 1.2s linear infinite;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
@keyframes ml-form-embed-submit-load {
  to {
    transform: rotate(360deg);
  }
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: end;
  gap: 2rem;
  padding: 2.5rem clamp(1rem, 4vw, 4.5rem);
  color: var(--paper);
  background: var(--ink);
}
.footer-mark span:first-child {
  background: var(--paper);
  color: var(--ink);
}
footer p {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
}
.footer-meta {
  color: #aaa;
}
footer > a:last-child {
  font-size: 0.62rem;
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .field-figure {
    width: min(100%, 680px);
    justify-self: center;
  }
  .tier-cards {
    grid-template-columns: 1fr;
  }
  .tier-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr auto auto;
    gap: 0 2rem;
    min-height: 390px;
  }
  .tier-card + .tier-card {
    border-left: 0;
    border-top: 1px solid var(--ink);
  }
  .tier-meta {
    grid-column: 1 / -1;
  }
  .tier-icon {
    grid-row: 2 / 5;
    margin: 1.5rem 0 0;
  }
  .tier-card h3 {
    grid-column: 2;
    align-self: end;
  }
  .tier-card p,
  .tier-tag {
    grid-column: 2;
  }
  .result {
    grid-template-columns: 1fr;
  }
  .result-art {
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }
  footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
  }
  .nav-links {
    display: none;
  }
  .header-cta {
    font-size: 0.6rem;
  }
  .hero {
    padding-top: 3.5rem;
  }
  h1 {
    font-size: clamp(3.35rem, 17vw, 6.5rem);
  }
  .hero-lede {
    font-size: 1.05rem;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.2rem;
  }
  .field-figure {
    aspect-ratio: 1 / 1.14;
  }
  .signal-strip {
    justify-content: center;
  }
  .signal-strip span:nth-of-type(-n + 4),
  .signal-strip i {
    display: none;
  }
  .signal-strip b {
    margin-left: 0;
  }
  .section-index span:last-child {
    display: none;
  }
  .manifesto-grid,
  .how-heading,
  .access {
    grid-template-columns: 1fr;
  }
  .manifesto h2,
  .how h2,
  .result h2,
  .access h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }
  .manifesto-copy {
    max-width: 34rem;
  }
  .tier-card {
    display: block;
    min-height: 520px;
  }
  .tier-card p {
    min-height: auto;
  }
  .tier-icon {
    height: 220px;
  }
  .result-art {
    min-height: 520px;
  }
  .access-stamp {
    width: 180px;
  }
  .email-row {
    grid-template-columns: 1fr;
  }
  .email-row button {
    border-left: 0;
    border-top: 2px solid var(--ink);
  }
  footer {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 430px) {
  body {
    font-size: 13px;
  }
  .wordmark {
    font-size: 1.1rem;
  }
  .header-cta {
    max-width: 6rem;
    text-align: right;
  }
  .hero {
    padding-inline: 0.8rem;
  }
  .field-figure {
    box-shadow: 8px 8px 0 rgba(36, 36, 36, 0.13);
  }
  .figure-readout {
    display: none;
  }
  .wall-a {
    left: 45%;
  }
  .wall-b {
    left: 45%;
  }
  .listener {
    right: 11%;
  }
  .manifesto,
  .how,
  .result-copy,
  .access {
    padding-inline: 1rem;
  }
  .result-art {
    min-height: 430px;
  }
  .sound-room {
    border-width: 10px;
  }
}

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