/* Mobile first: base rules are the phone layout; min-width queries add wider layouts.
   Breakpoints: 700px (tablet), 900px (two columns), 1100px (desktop headline lockup). */

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.6;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--ink); text-decoration-color: var(--accent); text-decoration-thickness: 3px; text-underline-offset: 5px; }
a:hover { color: var(--ink-hover); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.wrap { max-width: var(--page-max); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Buttons and tags ---------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 125%;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}
.button:hover { background: var(--ink-hover); color: var(--paper); }
.button--small { height: 38px; padding: 0 9px; font-size: 12px; font-weight: 800; font-stretch: 115%; box-shadow: 4px 4px 0 var(--accent); }
.button--large { height: 64px; padding: 0 32px; font-size: 22px; box-shadow: 6px 6px 0 var(--accent); }
@media (min-width: 400px) {
  .button--small { height: 40px; padding: 0 12px; font-size: 13px; }
}
@media (min-width: 700px) {
  .button--small { height: 50px; padding: 0 26px; font-size: 18px; box-shadow: 5px 5px 0 var(--accent); }
  .button--large { height: 76px; padding: 0 44px; font-size: 28px; box-shadow: 7px 7px 0 var(--accent); }
}

/* Slanted label, borrowed from the New Consensus logo */
.tag {
  display: inline-block;
  margin: 0;
  padding: 6px 14px 8px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 95%;
  font-size: clamp(15px, 13px + 0.6vw, 22px);
  line-height: 1.2;
  transform: skewY(var(--tag-skew));
}
.tag--outline { border: 3px solid var(--ink); background: transparent; color: var(--ink); }
.tag--highlight { background: var(--highlight); color: var(--ink); }

/* ---------- Header ---------- */
.site-header__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 10px 12px; min-height: 64px; padding-block: 12px; }
.wordmark {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px 0.35em;
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 140%;
  font-size: clamp(12px, 7px + 1.18vw, 24px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  text-decoration: none;
}
.wordmark__name { white-space: nowrap; }
.wordmark__ai { padding: 0.12em 0.35em 0.18em; background: var(--ink); color: var(--paper); transform: skewY(var(--tag-skew)); }
/* Phones and tablets: wordmark and button on top, page links on a second row */
.site-nav { order: 3; display: flex; flex-wrap: wrap; gap: 4px 22px; width: 100%; }
.site-nav a { font-weight: 700; font-size: 16px; }
.site-nav a[aria-current="page"] { text-decoration-color: var(--ink); }
@media (min-width: 1000px) {
  .site-header__inner { flex-wrap: nowrap; gap: 28px; min-height: 100px; }
  .site-nav { order: 0; width: auto; margin-left: auto; gap: 28px; }
  .site-nav a { font-size: 18px; }
  .site-header__cta { order: 1; }
}

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-block: clamp(20px, 3vw, 48px) clamp(56px, 8vw, 112px); }
.hero__inner { position: relative; display: flex; flex-direction: column; gap: clamp(24px, 3.4vw, 48px); }
.hero__inner > .tag { align-self: flex-start; }
.hero__dots {
  position: absolute;
  right: -25vw;
  bottom: -30vw;
  width: 70vw;
  aspect-ratio: 1;
  background-image: radial-gradient(circle, var(--accent) 0 36%, transparent 38%);
  background-size: 14px 14px;
  -webkit-mask-image: radial-gradient(closest-side, #000 25%, transparent 100%);
  mask-image: radial-gradient(closest-side, #000 25%, transparent 100%);
}
@media (min-width: 1100px) {
  .hero__dots { right: -11%; bottom: -30%; width: 640px; background-size: 18px 18px; }
}

/* Headline. Phones: three wide lines, then a giant condensed "Everyone".
   Sizes are tied to the content width so the longest line always fits. */
.headline { margin: 0; display: flex; flex-direction: column; gap: 4px; font-family: var(--font-display); font-weight: 900; }
.headline__row { position: relative; display: flex; flex-direction: column; }
.headline__lead,
.headline__key { position: relative; }
.headline__lead {
  display: flex;
  flex-direction: column;
  font-stretch: 150%;
  font-size: min(calc((100vw - 2 * var(--gutter)) / 10.4), 80px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-shadow: var(--misregister);
}
.headline__row--key .headline__lead { display: block; }
.headline__key {
  font-stretch: 50%;
  font-size: min(calc((100vw - 2 * var(--gutter)) / 3.05), 260px);
  line-height: 0.82;
  letter-spacing: -0.01em;
  text-shadow: 0.02em 0.016em 0 var(--accent);
}
/* The squiggle under "Everyone", drawn as its own layer: a text-decoration would pick up
   the word's misregistration shadow and double into a braid on wide screens. */
.headline__key::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.11em;
  height: 0.1em;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 8'%3E%3Cpath d='M0 4Q5 0 10 4T20 4' fill='none' stroke='%23000' stroke-width='2.6'/%3E%3C/svg%3E") left center / auto 100% repeat-x;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 8'%3E%3Cpath d='M0 4Q5 0 10 4T20 4' fill='none' stroke='%23000' stroke-width='2.6'/%3E%3C/svg%3E") left center / auto 100% repeat-x;
}
.headline__sun {
  position: absolute;
  z-index: -1; /* behind both headline rows so the words overprint it */
  top: 50%;
  right: -18vw;
  width: 64vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sun);
  transform: translateY(-72%);
}
/* Small highlighted aside under a headline, e.g. "(and how about the rest of the economy too)" */
.aside-note {
  position: relative;
  display: block;
  margin: 0;
  font-family: var(--font-mono);
  font-weight: 500;
  font-stretch: 100%;
  font-size: clamp(15px, 12px + 1vw, 26px);
  line-height: 1.6;
  letter-spacing: -0.01em;
  text-shadow: none;
}
.aside-note span {
  padding: 3px 8px;
  background: var(--highlight);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
.headline .aside-note { margin-top: clamp(16px, 2.5vw, 26px); }
.page-title .aside-note { margin-top: clamp(14px, 2vw, 24px); }
@media (min-width: 1100px) {
  .headline { gap: 18px; }
  .headline__row { flex-direction: row; align-items: flex-end; align-items: last baseline; column-gap: 28px; }
  .headline__lead,
  .headline__row--key .headline__lead { display: flex; font-size: min(7.2vw, 104px); line-height: 0.96; }
  .headline__key { font-size: min(17.36vw, 250px); line-height: 0.78; text-shadow: var(--misregister); }
  .headline__sun { right: 3.5%; width: min(37.5vw, 540px); transform: translateY(calc(-50% - min(4.9vw, 70px))); }
}

.hero__footer { position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 24px; }
.hero__intro { margin: 0; max-width: 37rem; font-size: var(--text-intro); line-height: 1.5; text-wrap: pretty; }
@media (min-width: 900px) {
  .hero__footer { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 64px; }
}

/* ---------- Origin: where AI's power comes from ---------- */
.origin { padding-block: clamp(8px, 2vw, 24px) var(--section-space); }
.origin__inner {
  display: grid;
  gap: clamp(20px, 3vw, 32px);
  padding-top: clamp(32px, 5vw, 64px);
  border-top: 3px dashed var(--ink);
}
.origin__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 120%;
  font-size: clamp(32px, 14px + 4.2vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: var(--misregister);
}
.origin__text { margin: 0; max-width: 40rem; font-size: var(--text-intro); line-height: 1.55; text-wrap: pretty; }
.origin__text mark {
  padding: 0 4px;
  background: var(--highlight);
  color: var(--ink);
  font-weight: 700;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}
@media (min-width: 900px) {
  .origin__inner { grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); align-items: center; column-gap: 72px; }
}

/* ---------- Stakes: two futures, then the letter ---------- */
.stakes { overflow: hidden; background: var(--accent-tint); padding-block: var(--section-space) calc(var(--section-space) + 16px); }
.stakes__inner { display: flex; flex-direction: column; gap: clamp(56px, 8vw, 112px); }

.futures { display: grid; gap: 44px; }
.future { display: flex; flex-direction: column; gap: 16px; }
.future > .tag { align-self: flex-start; font-size: clamp(16px, 14px + 0.4vw, 19px); }
.future__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 75%;
  font-size: clamp(44px, 30px + 2.4vw, 64px);
  line-height: 0.95;
}
.future__title span { display: block; }
.future__text { margin: 0; max-width: 34rem; font-size: clamp(17px, 16px + 0.2vw, 19px); line-height: 1.55; }
.future--everyone {
  margin-right: 10px;
  padding: clamp(28px, 3vw, 40px);
  background: var(--ink);
  color: var(--paper);
  box-shadow: clamp(6px, 0.8vw, 10px) clamp(6px, 0.8vw, 10px) 0 var(--accent);
  transform: rotate(1deg);
}
@media (min-width: 900px) {
  .futures { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: center; gap: 64px; }
}

.stakes__reading { display: flex; flex-direction: column; gap: clamp(28px, 4vw, 56px); }
.stakes__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 130%;
  font-size: clamp(34px, 12px + 6vw, 96px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
@media (min-width: 900px) {
  .stakes__reading { align-items: center; }
  .stakes__title { max-width: 900px; text-align: center; }
}

.letter {
  width: 100%;
  max-width: 880px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: clamp(24px, 4.5vw, 64px);
  background: var(--paper);
  box-shadow: clamp(6px, 0.8vw, 10px) clamp(6px, 0.8vw, 10px) 0 var(--ink);
}
.letter p { margin: 0; text-wrap: pretty; }
@media (min-width: 900px) { .letter { font-size: 21px; } }
.letter mark {
  padding: 0 4px;
  background: var(--highlight);
  color: var(--ink);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

/* The three "Pause… / Stop…" questions, set as pause and stop buttons */
.refusals { margin: 8px 0; padding: 0; list-style: none; border-block: 3px dashed var(--ink); }
.refusal { display: grid; grid-template-columns: auto minmax(0, 1fr); align-items: start; gap: clamp(14px, 2vw, 22px); padding-block: clamp(16px, 2vw, 22px); }
.refusal + .refusal { border-top: 2px dashed var(--ink); }
.refusal__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(40px, 5vw, 54px);
  aspect-ratio: 1;
  background: var(--accent);
  color: var(--ink);
}
.refusal__icon svg {
  width: 62%;
  height: 62%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.refusal__text { display: flex; flex-direction: column; gap: 4px; }
.refusal__first { font-family: var(--font-display); font-weight: 900; font-size: clamp(18px, 16px + 0.4vw, 22px); line-height: 1.15; }
.refusal__second { font-family: var(--font-display); font-weight: 700; font-stretch: 80%; font-size: clamp(24px, 19px + 0.9vw, 32px); line-height: 1.05; text-wrap: balance; }

/* ---------- Questions: why control matters, and the questions to answer ---------- */
.questions { overflow: hidden; background: var(--ink); color: var(--paper); padding-block: var(--section-space); }
.questions__inner { display: flex; flex-direction: column; gap: clamp(56px, 8vw, 104px); }

.warning { display: grid; gap: 16px; }
.warning__lede {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 130%;
  font-size: clamp(38px, 16px + 4.4vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-shadow: var(--misregister);
}
.warning__lede em { font-style: normal; color: var(--highlight); }
.warning__text { margin: 0; max-width: 38rem; font-size: clamp(19px, 16px + 0.6vw, 24px); line-height: 1.5; }
@media (min-width: 900px) {
  .warning { grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: end; gap: 64px; }
}

/* A giant condensed "If" dropped into the statement, echoing "If Anyone Owns AI" */
.big-if {
  margin: 0;
  max-width: 1120px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(25px, 12px + 2.4vw, 46px);
  line-height: 1.16;
  letter-spacing: -0.01em;
  text-wrap: pretty;
}
.big-if__if {
  float: left;
  margin: 0.05em 0.1em 0 -0.02em;
  color: var(--highlight);
  font-weight: 900;
  font-stretch: 50%;
  font-size: 4.2em;
  line-height: 0.74;
  text-shadow: 0.035em 0.03em 0 var(--accent);
}
@media (min-width: 900px) { .big-if__if { font-size: 5.4em; } }

.questions__title {
  margin: 0 0 clamp(24px, 3vw, 44px);
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 130%;
  font-size: clamp(32px, 12px + 4.4vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: var(--misregister);
}
.question-list { margin: 0; padding: 0; list-style: none; display: grid; column-gap: 64px; }
.question-list li {
  padding-block: clamp(16px, 2vw, 24px);
  border-top: 2px dashed var(--paper-rule);
  font-family: var(--font-display);
  font-weight: 700;
  font-stretch: 80%;
  font-size: clamp(24px, 18px + 1.1vw, 34px);
  line-height: 1.08;
  text-wrap: balance;
}
.question-list li:last-child { border-bottom: 2px dashed var(--paper-rule); }
/* Two columns read top to bottom, so follow-up questions stay next to the question they follow */
@media (min-width: 900px) {
  .question-list { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: repeat(5, auto); grid-auto-flow: column; }
  .question-list li:nth-child(5) { border-bottom: 2px dashed var(--paper-rule); }
}

/* ---------- Sign-up ---------- */
.signup { padding-block: var(--section-space); }
.signup__sheet { border: 3px solid var(--ink); }
.signup__body { display: flex; flex-direction: column; gap: clamp(28px, 3.5vw, 48px); padding: clamp(24px, 4.5vw, 64px); }
.signup__title {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 150%;
  font-size: clamp(52px, 8px + 12.5vw, 190px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  text-shadow: var(--misregister);
}
.signup__grid { display: grid; gap: 40px; }
.signup__intro { margin: 0; max-width: 30rem; font-size: var(--text-intro); line-height: 1.55; }
.facts { display: flex; flex-wrap: wrap; gap: 20px 48px; margin: 28px 0 0; }
.facts dt { font-family: var(--font-mono); font-weight: 700; font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.facts dd { margin: 6px 0 0; font-family: var(--font-display); font-weight: 800; font-stretch: 70%; font-size: clamp(34px, 26px + 1.6vw, 48px); line-height: 1; text-transform: uppercase; }
.facts .facts__email { font-family: var(--font-body); font-weight: 700; font-size: clamp(18px, 16px + 0.4vw, 22px); line-height: 1.4; text-transform: none; overflow-wrap: anywhere; }
.form { display: flex; flex-direction: column; gap: 24px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-weight: 700; font-size: 16px; }
.field input {
  height: 52px;
  padding: 0 2px;
  border: 0;
  border-bottom: 4px solid var(--ink);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font: 400 clamp(20px, 18px + 0.3vw, 24px) var(--font-body);
}
.field input::placeholder { color: var(--placeholder); }
.form .button { align-self: flex-start; margin-top: 4px; }
.form .button:disabled { opacity: 0.7; cursor: progress; }
.form__trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form__status { margin: 0; min-height: 1.6em; font-weight: 700; }
.form__done {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 75%;
  font-size: clamp(32px, 26px + 1.4vw, 44px);
  line-height: 1;
}
.form__done:focus { outline: none; }
@media (min-width: 900px) {
  .signup__sheet { border-width: 4px; }
  .signup__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 96px; }
}

/* Tear-off tabs along the bottom of the flyer: 6 on phones, 9 on tablets, 12 on desktop */
.tabs { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); border-top: 3px dashed var(--ink); }
.tab { display: flex; align-items: center; justify-content: center; height: clamp(136px, 11vw, 160px); }
.tab + .tab { border-left: 2px dashed var(--ink); }
.tab span { writing-mode: vertical-rl; transform: rotate(180deg); font-family: var(--font-display); font-weight: 700; font-stretch: 80%; font-size: clamp(14px, 12px + 0.3vw, 17px); letter-spacing: 0.02em; }
.tab:nth-child(n+7) { display: none; }
@media (min-width: 700px) {
  .tabs { grid-template-columns: repeat(9, minmax(0, 1fr)); }
  .tab:nth-child(n+7) { display: flex; }
  .tab:nth-child(n+10) { display: none; }
}
@media (min-width: 1100px) {
  .tabs { grid-template-columns: repeat(12, minmax(0, 1fr)); border-top-width: 4px; }
  .tab:nth-child(n+10) { display: flex; }
}

/* ---------- Footer ---------- */
.site-footer__inner { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; padding-block: 8px 48px; }
.site-footer__right { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 40px; }
.site-footer__host { display: flex; align-items: center; gap: 16px; }
.site-footer__host span { font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.site-footer__host img { width: clamp(130px, 11vw, 158px); }
.site-footer .wordmark { font-size: clamp(15px, 12px + 0.6vw, 20px); }
@media (min-width: 700px) {
  .site-footer__inner { flex-direction: row; align-items: center; justify-content: space-between; padding-block: 24px 40px; }
}

/* ---------- Inner pages (About, Propose a session) ---------- */
.page-intro { position: relative; overflow: hidden; padding-block: clamp(24px, 4vw, 56px) clamp(48px, 7vw, 96px); }
.page-intro__inner { position: relative; display: flex; flex-direction: column; gap: clamp(20px, 3vw, 36px); }
.page-intro__inner > .tag { align-self: flex-start; }
.page-intro__sun {
  position: absolute;
  z-index: -1;
  top: -80px;
  right: -26vw;
  width: 58vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--sun);
}
.page-title {
  position: relative;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  font-stretch: 130%;
  font-size: clamp(40px, 12px + 7vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.02em;
  text-wrap: balance;
  text-shadow: var(--misregister);
}
.page-lede { position: relative; margin: 0; max-width: 40rem; font-size: var(--text-intro); line-height: 1.5; text-wrap: pretty; }
@media (min-width: 900px) {
  .page-intro__sun { top: -140px; right: -60px; width: min(40vw, 520px); }
}

.about { padding-block: 0 var(--section-space); }
.about__inner { display: grid; align-items: start; gap: clamp(40px, 6vw, 72px); }
.prose { display: flex; flex-direction: column; gap: 18px; max-width: 42rem; }
.prose h2 { margin: 24px 0 0; font-family: var(--font-display); font-weight: 900; font-stretch: 120%; font-size: clamp(28px, 18px + 2.2vw, 48px); line-height: 1; letter-spacing: -0.01em; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0; text-wrap: pretty; }
.details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-right: 10px;
  padding: clamp(24px, 3vw, 40px);
  border: 4px solid var(--ink);
  background: var(--paper);
  box-shadow: clamp(6px, 0.8vw, 10px) clamp(6px, 0.8vw, 10px) 0 var(--accent);
}
.details__title { margin: 0; font-family: var(--font-display); font-weight: 900; font-stretch: 120%; font-size: clamp(26px, 20px + 1vw, 34px); line-height: 1; }
.facts--stacked { display: grid; gap: 18px; margin: 0; }
.cta-row { display: flex; flex-wrap: wrap; gap: 16px 20px; }
.cta-row .button { height: 58px; padding: 0 22px; font-size: 19px; box-shadow: 5px 5px 0 var(--accent); }
.cta-row .button--outline { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 3px var(--ink), 5px 5px 0 var(--accent); }
.cta-row .button--outline:hover { background: var(--accent-tint); color: var(--ink); }
@media (min-width: 900px) {
  .about__inner { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }
}

.proposal { padding-block: 0 var(--section-space); }
.proposal__sheet {
  max-width: 880px;
  margin-right: 10px;
  padding: clamp(24px, 4.5vw, 56px);
  border: 4px solid var(--ink);
  background: var(--paper);
  box-shadow: clamp(6px, 0.8vw, 10px) clamp(6px, 0.8vw, 10px) 0 var(--accent);
}
.form--wide { gap: 30px; }
.field__optional { font-weight: 400; }
.field__hint { margin: 0; font-size: 15px; line-height: 1.4; }
.field textarea,
.field select {
  width: 100%;
  border: 3px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
}
.field textarea { min-height: 150px; padding: 12px 14px; font-size: clamp(18px, 17px + 0.2vw, 20px); line-height: 1.5; resize: vertical; }
.field select { height: 56px; padding: 0 12px; font-size: 18px; }
.field textarea:focus,
.field select:focus { outline: 3px solid var(--accent); outline-offset: 2px; }
.choices { min-width: 0; margin: 0; padding: 0; border: 0; }
.choices legend { margin-bottom: 10px; padding: 0; font-weight: 700; font-size: 16px; }
.choice-row { display: flex; flex-wrap: wrap; gap: 10px; }
.choice { position: relative; }
.choice input { position: absolute; inset: 0; margin: 0; opacity: 0; cursor: pointer; }
.choice span {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 16px;
  border: 3px solid var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-stretch: 110%;
  font-size: 17px;
}
.choice input:checked + span { background: var(--ink); color: var(--paper); box-shadow: 4px 4px 0 var(--accent); }
.choice input:focus-visible + span { outline: 3px solid var(--accent); outline-offset: 3px; }
