:root {
  --ink: #070807;
  --ink-soft: #0d0e0e;
  --paper: #f3eee8;
  --paper-dim: #b9b2b8;
  --line: rgba(243, 238, 232, 0.16);
  --line-strong: rgba(243, 238, 232, 0.34);
  --magenta: #d94bee;
  --cyan: #72d8df;
  --acid: #a6e83e;
  --violet: #7163d8;
  --error: #ff8fba;
  --mono: "Cascadia Mono", "SFMono-Regular", Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  --page-pad: clamp(1.25rem, 4vw, 4.75rem);
  --max-width: 112rem;
  --copy-size: clamp(0.96rem, 1.05vw, 1.05rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background: var(--ink);
}

body {
  min-width: 19rem;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--paper);
  background: var(--ink);
  font-family: var(--mono);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body > main,
.site-footer {
  position: relative;
  z-index: 1;
}

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

a {
  color: inherit;
  text-underline-offset: 0.25em;
  text-decoration-thickness: 1px;
}

button,
input {
  font: inherit;
}

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

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

.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;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.page-noise {
  position: fixed;
  z-index: 20;
  inset: 0;
  opacity: 0.075;
  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='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  width: min(100%, var(--max-width));
  min-height: 6.75rem;
  padding: 1.6rem var(--page-pad);
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  min-width: 0;
  margin-left: auto;
  align-items: center;
  gap: clamp(1.1rem, 2.3vw, 2.8rem);
  font-size: 0.72rem;
  letter-spacing: 0.09em;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 2.75rem;
  padding: 0.55rem 0;
  align-items: center;
  color: var(--paper-dim);
  text-decoration: none;
  transition: color 180ms ease;
  white-space: nowrap;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0.25rem;
  left: 0;
  height: 1px;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 0.45rem var(--cyan);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--paper);
}

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

.hero {
  position: relative;
  display: grid;
  width: min(100%, var(--max-width));
  padding: clamp(3.2rem, 7vw, 7.5rem) var(--page-pad) clamp(5rem, 8vw, 9rem);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.38fr) minmax(19rem, 0.72fr);
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.hero.hero--single {
  grid-template-columns: minmax(0, 1fr);
}

.hero--single .hero__copy {
  width: min(100%, 74rem);
  margin-inline: auto;
}

.hero__copy {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.eyebrow,
.section-index {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  color: var(--paper-dim);
  font-family: var(--mono);
  font-size: clamp(0.72rem, 0.8vw, 0.8rem);
  letter-spacing: 0.11em;
  line-height: 1.3;
  text-transform: uppercase;
}

.title {
  position: relative;
  max-width: 10ch;
  margin: clamp(1.4rem, 3vw, 2.6rem) 0 0;
  font-family: var(--mono);
  font-size: clamp(3.45rem, 7.7vw, 9rem);
  font-weight: 500;
  letter-spacing: -0.095em;
  line-height: 0.78;
  text-transform: uppercase;
  text-shadow:
    2px 0 0 rgba(217, 75, 238, 0.72),
    -2px 0 0 rgba(114, 216, 223, 0.65);
}

.title__fallback {
  display: block;
}

.title__fallback > span {
  display: block;
  white-space: nowrap;
}

.title__fallback > span:last-child {
  margin-left: 0.68em;
}

.stitch-title__canvas {
  display: none;
  width: 100%;
}

.stitch-title.is-stitch-ready .title__fallback {
  display: none;
}

.stitch-title.is-stitch-ready .stitch-title__canvas {
  display: block;
}

.stitch-title__svg {
  display: block;
  width: min(100%, 48rem);
  height: auto;
  overflow: visible;
  filter: none;
}

.stitch-title--small {
  position: relative;
  width: min(100%, var(--stitch-title-width, 30rem));
  min-width: 0;
  max-width: 100%;
  aspect-ratio: var(--stitch-title-aspect, auto);
  color: var(--paper);
  letter-spacing: 0;
  text-shadow: none;
}

.stitch-title--small > .title__fallback {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-size: clamp(0.92rem, 1.3vw, 1.25rem);
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.stitch-title--small .title__fallback > span:last-child {
  margin-left: 0;
}

.stitch-title--small .stitch-title__svg {
  width: min(100%, var(--stitch-title-width, 30rem));
  max-width: 100%;
}

#newsletter-title {
  --stitch-title-width: 25rem;
  --stitch-title-aspect: 368 / 72;
}

#living-archive-title {
  --stitch-title-width: 27.54rem;
  --stitch-title-aspect: 328 / 72;
}

#witnessing-title {
  --stitch-title-width: 29.58rem;
  --stitch-title-aspect: 352 / 72;
}

#phrc-title {
  --stitch-title-width: 20.06rem;
  --stitch-title-aspect: 240 / 72;
}

#gratitude-title {
  --stitch-title-width: 27.54rem;
  --stitch-title-aspect: 328 / 32;
}

#public-space-title {
  --stitch-title-width: 23.46rem;
  --stitch-title-aspect: 280 / 72;
}

#support-panel-title {
  --stitch-title-width: 15.3rem;
  --stitch-title-aspect: 184 / 72;
}

.stitch-title__x,
.stitch-counter__x {
  fill: none;
  stroke-dasharray: 1;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 1;
}

.stitch-title__x {
  stroke-width: 0.72;
}

.stitch-node {
  stroke-dashoffset: 0;
}

.stitch-node[data-sew-pending] {
  stroke-dashoffset: 1;
}

.stitch-trim-mask {
  mask-type: alpha;
}

.stitch-trim__x {
  fill: none;
  stroke: #fff;
  stroke-width: 1.15;
  stroke-dasharray: 1;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  forced-color-adjust: none;
  transition: stroke-dashoffset 210ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

.stitch-trim__x[data-unsew-level] {
  transition-duration: 70ms;
}

.stitch-trim__x[data-unsew-level][data-trim-phase="1"] {
  transition-delay: 12ms;
}

.stitch-trim__x[data-unsew-level][data-trim-phase="2"] {
  transition-delay: 24ms;
}

.stitch-trim__x[data-unsew-level][data-trim-phase="3"] {
  transition-delay: 36ms;
}

.stitch-trim__x[data-unsew-level="1"] {
  stroke-dashoffset: 0.18;
}

.stitch-trim__x[data-unsew-level="2"] {
  stroke-dashoffset: 0.44;
}

.stitch-trim__x[data-unsew-level="3"] {
  stroke-dashoffset: 0.72;
}

.stitch-trim__x[data-unsew-level="4"] {
  stroke-dashoffset: 1;
}

.stitch-counter__canvas {
  display: none;
  width: 100%;
}

.countdown__value.is-stitch-counter-ready .countdown__fallback {
  display: none;
}

.countdown__value.is-stitch-counter-ready .stitch-counter__canvas {
  display: block;
}

.stitch-counter__svg {
  display: block;
  width: min(100%, 8.5rem);
  height: auto;
  overflow: visible;
  filter:
    drop-shadow(-0.5px 0 rgba(114, 216, 223, 0.62))
    drop-shadow(0.5px 0 rgba(217, 75, 238, 0.55))
    drop-shadow(0 0 0.45rem rgba(243, 238, 232, 0.22));
}

.stitch-counter__x {
  stroke-width: 0.78;
}

.countdown__unit--seconds .stitch-counter__svg {
  filter:
    drop-shadow(0 0 0.34rem rgba(114, 216, 223, 0.5))
    drop-shadow(0 0 0.75rem rgba(114, 216, 223, 0.22));
}

.hero__statement {
  display: grid;
  max-width: 58rem;
  margin-top: clamp(3.2rem, 6.7vw, 7rem);
  grid-template-columns: minmax(16rem, 1.1fr) minmax(14rem, 0.9fr);
  gap: clamp(1.8rem, 4vw, 4rem);
  align-items: end;
}

.headline {
  max-width: 42rem;
  margin: 0;
  color: var(--paper-dim);
  font-family: var(--mono);
  font-size: var(--copy-size);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.55;
}

.intro {
  max-width: 35rem;
  margin: 0;
  color: var(--paper-dim);
  font-size: var(--copy-size);
  line-height: 1.65;
}

.screening {
  max-width: 62rem;
  margin-top: clamp(4rem, 7vw, 7.5rem);
  border-top: 1px solid var(--line-strong);
}

.screening__topline {
  display: flex;
  min-height: 4.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
}

.screening__topline h2 {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(0.72rem, 0.84vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.screening__status {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--acid);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line-strong);
}

.countdown__unit {
  min-width: 0;
  padding: clamp(1.2rem, 2.5vw, 2.5rem) clamp(0.4rem, 1.5vw, 1.5rem) 1.15rem;
  border-right: 1px solid var(--line);
}

.countdown__unit:first-child {
  padding-left: 0;
}

.countdown__unit:last-child {
  padding-right: 0;
  border-right: 0;
}

.countdown__value {
  display: block;
  overflow: hidden;
  font-family: var(--mono);
  font-size: clamp(2.5rem, 5.15vw, 5.6rem);
  font-variant-numeric: tabular-nums;
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 1;
  text-shadow: 0 0 1.25rem rgba(243, 238, 232, 0.2);
}

.countdown__unit--seconds .countdown__value {
  color: var(--cyan);
  text-shadow: 0 0 1.35rem rgba(114, 216, 223, 0.35);
}

.countdown__value.is-changing {
  animation: digit-focus 360ms cubic-bezier(0.2, 0.75, 0.3, 1);
}

.countdown__unit > span {
  display: block;
  margin-top: 0.7rem;
  color: var(--paper-dim);
  font-family: var(--mono);
  font-size: clamp(0.68rem, 0.72vw, 0.74rem);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.event-details {
  display: grid;
  margin: 0;
  grid-template-columns: 1.25fr 0.7fr 1fr;
  border-bottom: 1px solid var(--line);
}

.event-details > div {
  min-width: 0;
  padding: 1.35rem clamp(0.8rem, 1.4vw, 1.4rem) 1.5rem;
  border-right: 1px solid var(--line);
}

.event-details > div:first-child {
  padding-left: 0;
}

.event-details > div:last-child {
  padding-right: 0;
  border-right: 0;
}

.event-details dt {
  margin-bottom: 0.35rem;
  color: var(--paper-dim);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.event-details dd {
  margin: 0;
  font-family: var(--mono);
  font-size: clamp(0.78rem, 1vw, 1rem);
  line-height: 1.35;
  text-transform: uppercase;
}

.screening.is-ended .screening__status {
  color: var(--magenta);
}

.screening.is-pending .screening__status {
  color: var(--cyan);
}

.newsletter {
  position: relative;
  isolation: isolate;
  display: grid;
  width: min(100%, 68rem);
  max-width: 68rem;
  padding: clamp(2rem, 4vw, 4rem);
  margin-top: clamp(4rem, 7vw, 7rem);
  grid-template-columns: minmax(13rem, 0.72fr) minmax(19rem, 1.28fr);
  gap: clamp(2rem, 4vw, 4.5rem);
  border: 0;
  background:
    linear-gradient(120deg, rgba(114, 216, 223, 0.08), transparent 42%),
    linear-gradient(300deg, rgba(217, 75, 238, 0.055), transparent 48%),
    rgba(13, 14, 14, 0.94);
  box-shadow: none;
}

.newsletter__intro,
.signup-form {
  position: relative;
  z-index: 1;
}

.newsletter__intro .section-index {
  color: var(--cyan);
}

.newsletter__intro h2 {
  margin: 1.25rem 0 0;
  font-family: var(--mono);
  font-size: clamp(1.85rem, 3.2vw, 3.35rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
  text-transform: uppercase;
}

.newsletter__intro h2.stitch-title--small {
  width: min(100%, var(--stitch-title-width, 25rem));
  max-width: 25rem;
  letter-spacing: 0;
  text-shadow: none;
}

.newsletter__intro .stitch-title--newsletter .stitch-title__svg {
  width: min(100%, var(--stitch-title-width, 25rem));
  max-width: 25rem;
}

.newsletter__intro > p:last-child {
  max-width: 21rem;
  margin: 1.3rem 0 0;
  color: var(--paper-dim);
  font-size: 0.95rem;
}

.signup-form {
  min-width: 0;
}

.signup-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
}

.field label {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--paper-dim);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  min-height: 3.75rem;
  padding: 0.8rem 1rem;
  color: var(--paper);
  border: 1px solid var(--line-strong);
  border-right: 0;
  border-radius: 0;
  outline: 0;
  background: rgba(7, 8, 7, 0.76);
  font-family: var(--mono);
  font-size: 0.92rem;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input::placeholder {
  color: #777177;
}

.field input:hover {
  border-color: rgba(243, 238, 232, 0.58);
}

.field input:focus-visible {
  position: relative;
  z-index: 2;
  border-color: var(--cyan);
  box-shadow: 0 0 0 2px var(--ink), 0 0 0 4px rgba(114, 216, 223, 0.58), 0 0 1rem rgba(114, 216, 223, 0.22);
}

.field input[aria-invalid="true"] {
  border-color: var(--error);
}

.field__error {
  display: block;
  min-height: 1.35rem;
  padding-top: 0.35rem;
  color: var(--error);
  font-family: var(--mono);
  font-size: 0.65rem;
}

.submit-button {
  display: inline-flex;
  min-height: 3.75rem;
  padding: 0.8rem 1rem;
  margin-top: 1.25rem;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--ink);
  border: 1px solid var(--paper);
  border-radius: 0;
  outline: 0;
  background: var(--paper);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.submit-button__arrow {
  font-size: 1rem;
  font-weight: 400;
}

.submit-button:hover {
  color: var(--paper);
  background: var(--magenta);
  border-color: var(--magenta);
  box-shadow: 0 0 1.1rem rgba(217, 75, 238, 0.38);
}

.submit-button:focus-visible {
  box-shadow: 0 0 0 2px var(--ink), 0 0 0 4px var(--paper), 0 0 1rem var(--magenta);
}

.submit-button:active {
  transform: translateY(1px);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.submit-button.is-loading .submit-button__arrow {
  animation: loading-pulse 650ms ease-in-out infinite alternate;
}

.consent {
  display: grid;
  margin-top: 0.7rem;
  grid-template-columns: 1rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  color: var(--paper-dim);
  cursor: pointer;
  font-size: 0.72rem;
  line-height: 1.45;
}

.consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.consent__box {
  position: relative;
  display: block;
  width: 1rem;
  height: 1rem;
  margin-top: 0.05rem;
  border: 1px solid var(--line-strong);
  background: var(--ink);
}

.consent input:checked + .consent__box {
  border-color: var(--acid);
  background: var(--acid);
  box-shadow: 0 0 0.65rem rgba(166, 232, 62, 0.3);
}

.consent input:checked + .consent__box::after {
  position: absolute;
  top: 0.02rem;
  left: 0.23rem;
  color: var(--ink);
  content: "×";
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
}

.consent input:focus-visible + .consent__box {
  box-shadow: 0 0 0 2px var(--ink), 0 0 0 4px var(--cyan);
}

.consent input[aria-invalid="true"] + .consent__box {
  border-color: var(--error);
  box-shadow: 0 0 0 1px var(--error);
}

.consent-error {
  display: block;
  min-height: 1.2rem;
  margin: 0.35rem 0 0 1.7rem;
  color: var(--error);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.form-note,
.form-status {
  margin: 1.15rem 0 0;
  color: #8e878e;
  font-size: 0.72rem;
}

.form-status {
  min-height: 1.4rem;
  color: var(--paper-dim);
  font-family: var(--mono);
}

.form-status[data-state="success"] {
  color: var(--acid);
}

.form-status[data-state="error"] {
  color: var(--error);
}

.form-status[data-state="preview"] {
  color: var(--cyan);
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.manifesto-main {
  width: min(100%, var(--max-width));
  margin: 0 auto;
}

.manifesto {
  padding: 0 var(--page-pad);
}

.manifesto-hero {
  position: relative;
  isolation: isolate;
  min-height: min(46rem, 82vh);
  padding: clamp(4rem, 9vw, 9rem) 0 clamp(5rem, 10vw, 10rem);
  overflow: hidden;
  border-bottom: 1px solid var(--line-strong);
}

.manifesto-hero > .section-index {
  margin-top: clamp(3rem, 8vw, 7rem);
}

.manifesto-title {
  position: relative;
  z-index: 1;
  max-width: 9ch;
  margin: 1.2rem 0 0;
  font-family: var(--mono);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 500;
  letter-spacing: -0.09em;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow:
    2px 0 0 rgba(217, 75, 238, 0.72),
    -2px 0 0 rgba(114, 216, 223, 0.65);
}

.manifesto-title .title__fallback > span:last-child {
  margin-left: 0;
}

.manifesto-title .stitch-title__svg {
  width: min(100%, 42rem);
}

.manifesto-lede {
  position: relative;
  z-index: 1;
  max-width: 54rem;
  margin: clamp(2.5rem, 5vw, 5rem) 0 0;
  color: var(--paper-dim);
  font-size: var(--copy-size);
  line-height: 1.5;
}

.manifesto-lede::first-line {
  color: var(--paper);
}

.manifesto-body {
  width: min(100%, 78rem);
  margin: 0 auto;
}

.manifesto-section {
  display: grid;
  padding: clamp(4.5rem, 9vw, 9rem) 0;
  grid-template-columns: minmax(9rem, 0.36fr) minmax(0, 1fr);
  column-gap: clamp(2rem, 7vw, 8rem);
  border-bottom: 1px solid var(--line);
}

.manifesto-section > .section-index {
  grid-column: 1;
  grid-row: 1 / span 8;
  align-self: start;
}

.manifesto-section > h2,
.manifesto-section > p:not(.section-index) {
  grid-column: 2;
}

.manifesto-section h2,
.support-panel h2 {
  max-width: 16ch;
  margin: 0 0 clamp(2rem, 4vw, 3.5rem);
  font-family: var(--mono);
  font-size: clamp(2rem, 4.5vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
  text-transform: uppercase;
  text-shadow: 0 0 1.4rem rgba(243, 238, 232, 0.1);
}

.manifesto-section h2.stitch-title--small,
.support-panel h2.stitch-title--small {
  width: min(100%, var(--stitch-title-width, 30rem));
  max-width: 100%;
  letter-spacing: 0;
  text-shadow: none;
}

.manifesto-section .stitch-title--small .stitch-title__svg,
.support-panel .stitch-title--small .stitch-title__svg {
  width: min(100%, var(--stitch-title-width, 30rem));
}

.manifesto-section > p:not(.section-index) {
  max-width: 44rem;
  margin: 0 0 1.65rem;
  color: var(--paper-dim);
  font-size: var(--copy-size);
  line-height: 1.82;
}

.manifesto-section > p:last-child {
  margin-bottom: 0;
}

.support-panel {
  position: relative;
  isolation: isolate;
  display: grid;
  width: min(100%, 78rem);
  padding: clamp(2rem, 5vw, 5.5rem);
  margin: clamp(6rem, 12vw, 12rem) auto clamp(6rem, 11vw, 11rem);
  overflow: hidden;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  border: 1px solid var(--line-strong);
  background:
    linear-gradient(125deg, rgba(217, 75, 238, 0.05), transparent 45%),
    rgba(13, 14, 14, 0.88);
  box-shadow: 0 0 5rem rgba(113, 99, 216, 0.07);
}

.support-panel__copy {
  position: relative;
  z-index: 2;
}

.support-panel__copy h2 {
  margin-top: 1.5rem;
}

.support-panel__copy > p:not(.section-index) {
  max-width: 34rem;
  margin: 0 0 1.5rem;
  color: var(--paper-dim);
  font-size: var(--copy-size);
  line-height: 1.7;
}

.phrc-link {
  display: inline-block;
  max-width: 100%;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: inherit;
  overflow-wrap: anywhere;
}

.site-footer {
  display: grid;
  width: min(100%, var(--max-width));
  min-height: 8rem;
  padding: 2rem var(--page-pad);
  margin: 0 auto;
  grid-template-columns: 1fr 1fr auto;
  gap: 1.2rem;
  align-items: center;
  color: var(--paper-dim);
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--cyan);
}

.noscript-message {
  position: fixed;
  z-index: 50;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 0.75rem;
  text-align: center;
}

.legal-page,
.success-page {
  min-height: 100vh;
  padding: var(--page-pad);
}

.simple-header {
  display: flex;
  width: min(100%, 78rem);
  padding-bottom: 1.5rem;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.simple-header a {
  text-decoration: none;
}

.legal-content,
.success-content {
  width: min(100%, 48rem);
  padding: clamp(4rem, 10vw, 9rem) 0;
  margin: 0 auto;
}

.legal-content h1,
.success-content h1 {
  margin: 1.5rem 0 2.5rem;
  font-family: var(--mono);
  font-size: clamp(2.5rem, 7vw, 6rem);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.95;
  text-transform: uppercase;
  text-shadow: 2px 0 var(--magenta), -2px 0 var(--cyan);
}

.legal-content h2 {
  margin: 2.5rem 0 0.7rem;
  font-family: var(--mono);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

.legal-content p,
.success-content p {
  color: var(--paper-dim);
}

.legal-alert {
  padding: 1rem;
  margin: 2rem 0;
  color: var(--ink);
  background: var(--acid);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.simple-button {
  display: inline-block;
  padding: 0.85rem 1rem;
  margin-top: 1.5rem;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--mono);
  font-size: 0.7rem;
  text-decoration: none;
  text-transform: uppercase;
}

.has-motion .newsletter,
.has-motion .manifesto-section,
.has-motion .support-panel {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(2rem);
  transition: opacity 700ms ease, filter 700ms ease, transform 700ms ease;
}

.has-motion .newsletter.is-visible,
.has-motion .manifesto-section.is-visible,
.has-motion .support-panel.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@keyframes digit-focus {
  from {
    opacity: 0.45;
    filter: blur(3px);
    transform: translateY(-0.1em);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes loading-pulse {
  to {
    opacity: 0.25;
  }
}

@media (min-width: 80rem) and (orientation: landscape) {
  .home-page .hero {
    padding-top: clamp(3rem, 5vw, 6rem);
  }

  .home-page .hero--single .hero__copy {
    display: grid;
    width: 100%;
    grid-template-columns: minmax(26rem, 0.9fr) minmax(34rem, 1.1fr);
    grid-template-areas:
      "eyebrow screening"
      "title screening"
      "statement screening"
      "updates updates";
    column-gap: clamp(3rem, 5vw, 6rem);
    row-gap: clamp(1.5rem, 2.5vw, 2.75rem);
    align-items: start;
  }

  .home-page .hero__copy > .eyebrow {
    grid-area: eyebrow;
  }

  .home-page .title {
    margin-top: 0;
    grid-area: title;
  }

  .home-page .hero__statement {
    max-width: none;
    margin-top: 0;
    grid-area: statement;
    grid-template-columns: 1fr;
    gap: clamp(0.9rem, 1.2vw, 1.25rem);
  }

  .home-page .newsletter {
    width: 100%;
    max-width: none;
    padding: clamp(1.75rem, 2.5vw, 2.75rem);
    margin-top: 0;
    grid-area: updates;
    grid-template-columns: minmax(13rem, 0.72fr) minmax(19rem, 1.28fr);
    align-self: start;
  }

  .home-page .screening {
    width: 100%;
    max-width: none;
    margin-top: clamp(1rem, 2vw, 2rem);
    grid-area: screening;
  }
}

@media (min-width: 100rem) and (orientation: landscape) {
  .home-page .newsletter {
    grid-template-columns: minmax(12rem, 0.75fr) minmax(19rem, 1.25fr);
  }
}

@media (max-width: 76rem) {
  .hero {
    grid-template-columns: minmax(0, 1.25fr) minmax(18rem, 0.75fr);
    gap: clamp(2.5rem, 5vw, 5rem);
  }

  .title {
    font-size: clamp(3.45rem, 7.3vw, 7rem);
  }

  .hero__statement {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .intro {
    max-width: 40rem;
  }

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

@media (max-width: 60rem) {
  .site-header {
    min-height: 5.4rem;
    gap: 0.5rem;
  }

  .site-nav {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: clamp(0.6rem, 2.5vw, 1.25rem);
  }

  .manifesto-hero {
    min-height: auto;
  }

  .manifesto-section {
    grid-template-columns: minmax(7rem, 0.3fr) minmax(0, 1fr);
    column-gap: 2.5rem;
  }

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

  .hero__copy {
    width: 100%;
  }

  .title {
    max-width: none;
    font-size: clamp(3.6rem, 13vw, 7.5rem);
  }

  .title__fallback > span:last-child {
    margin-left: 0.52em;
  }

  .hero__statement {
    max-width: 48rem;
    grid-template-columns: 1fr;
  }

  .screening,
  .newsletter {
    max-width: none;
  }

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

}

@media (max-width: 44rem) {
  :root {
    --page-pad: clamp(1.25rem, 5.5vw, 2rem);
  }

  .site-header {
    min-height: 4.75rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    gap: 0.4rem;
  }

  .site-nav {
    gap: clamp(0.35rem, 1.8vw, 0.7rem);
  }

  .site-nav a {
    font-size: clamp(0.56rem, 2.45vw, 0.66rem);
    letter-spacing: 0.035em;
  }

  .hero {
    padding-top: 2.7rem;
    gap: 4.5rem;
  }

  .title {
    margin-top: 1.7rem;
    font-size: clamp(2.75rem, 14.5vw, 4.75rem);
    line-height: 0.82;
  }

  .title__fallback > span:last-child {
    margin-left: 0.12em;
  }

  .manifesto {
    padding: 0 var(--page-pad);
  }

  .manifesto-hero {
    padding-top: 3.5rem;
    padding-bottom: 5rem;
  }

  .manifesto-title {
    font-size: clamp(2.7rem, 13vw, 4.75rem);
  }

  .manifesto-lede {
    margin-top: 2.5rem;
  }

  .manifesto-section {
    padding: 4.5rem 0;
    grid-template-columns: 1fr;
  }

  .manifesto-section > .section-index,
  .manifesto-section > h2,
  .manifesto-section > p:not(.section-index) {
    grid-column: 1;
  }

  .manifesto-section > .section-index {
    grid-row: auto;
    margin-bottom: 1.25rem;
  }

  .manifesto-section h2,
  .support-panel h2 {
    margin-bottom: 2rem;
  }

  .support-panel {
    padding: 1.5rem;
    margin-top: 5rem;
    margin-bottom: 6rem;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero__statement {
    margin-top: 3.4rem;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .headline {
    max-width: 30ch;
    line-height: 1.5;
  }

  .screening {
    margin-top: 4.2rem;
  }

  .screening__topline {
    min-height: 4rem;
  }

  .countdown__unit {
    padding: 1.25rem 0.45rem 1rem;
  }

  .countdown__unit:first-child {
    padding-left: 0;
  }

  .countdown__value {
    font-size: clamp(2.2rem, 12.5vw, 3.6rem);
  }

  .countdown__unit > span {
    overflow: hidden;
    font-size: 0;
  }

  .countdown__unit > span::after {
    font-size: 0.68rem;
  }

  .countdown__unit:nth-child(1) > span::after {
    content: "D";
  }

  .countdown__unit:nth-child(2) > span::after {
    content: "H";
  }

  .countdown__unit:nth-child(3) > span::after {
    content: "MIN";
  }

  .countdown__unit:nth-child(4) > span::after {
    content: "SEC";
  }

  .event-details {
    grid-template-columns: 1.25fr 0.65fr;
  }

  .event-details > div:nth-child(2) {
    border-right: 0;
  }

  .event-details > div:last-child {
    padding: 1rem 0 1.25rem;
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .newsletter {
    padding: 1.5rem;
    margin-top: 4.5rem;
    grid-template-columns: 1fr;
    gap: 2.3rem;
  }

  .signup-form__row {
    grid-template-columns: 1fr;
  }

  .field input {
    border-right: 1px solid var(--line-strong);
  }

  .submit-button {
    width: 100%;
    margin-top: 0.3rem;
  }

  .site-footer {
    padding-top: 2.2rem;
    padding-bottom: 2.2rem;
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .site-footer a {
    margin-top: 1rem;
  }

}

@media (max-width: 23rem) {
  .site-header {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }

  .site-nav {
    gap: 0.2rem;
  }

  .site-nav a {
    padding-inline: 0.18rem;
    font-size: 0.54rem;
    letter-spacing: 0;
  }

  .countdown__value {
    font-size: 2rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .stitch-title__x,
  .stitch-counter__x,
  .stitch-trim__x {
    stroke-dashoffset: 0 !important;
    opacity: 1 !important;
    transition: none !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --paper-dim: #ded8dd;
    --line: rgba(243, 238, 232, 0.42);
    --line-strong: rgba(243, 238, 232, 0.72);
  }

  .page-noise {
    display: none;
  }

  .stitch-title__svg,
  .stitch-counter__svg {
    filter: none;
  }

  .stitch-title__x,
  .stitch-counter__x {
    stroke: currentColor;
  }
}

@media (forced-colors: active) {
  .stitch-title__svg,
  .stitch-counter__svg {
    filter: none;
  }

  .stitch-title__x,
  .stitch-counter__x {
    stroke: CanvasText;
  }

  .stitch-trim__x {
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }
}
