:root {
  color-scheme: light;
  --paper: #f7f2e6;
  --paper-deep: #ebe3d2;
  --ink: #151611;
  --muted: #625e54;
  --line: rgba(21, 22, 17, 0.22);
  --signal: #6c4dff;
  --spark: #ff5a3d;
  --acid: #caff48;
  --white: #fffef9;
  --max: 1440px;
  --gutter: clamp(1.1rem, 4vw, 4.5rem);
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: linear-gradient(rgba(21, 22, 17, 0.025) 1px, transparent 1px);
  background-size: 100% 5px;
  content: "";
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
dl,
dd {
  margin-top: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-180%);
}

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

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

.site-header,
footer,
main > section {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--gutter);
  border-bottom: 1px solid var(--line);
}

.wordmark {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.75rem;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.wordmark-mark {
  position: relative;
  display: grid;
  width: 2.35rem;
  aspect-ratio: 1;
  place-items: center;
  border: 1.5px solid var(--ink);
  border-radius: 0.7rem;
  background: var(--signal);
  color: var(--white);
  font-size: 0.68rem;
  letter-spacing: -0.04em;
  transform: rotate(-4deg);
  transition: transform 160ms ease;
}

.wordmark:hover .wordmark-mark {
  transform: rotate(0deg);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2.4rem);
  font-size: 0.78rem;
  font-weight: 700;
}

.desktop-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  text-decoration: none;
}

.desktop-nav a:not(.nav-cta):hover {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}

.nav-cta {
  padding: 0.72rem 1rem;
  border: 1px solid var(--ink);
}

.nav-cta:hover {
  background: var(--ink);
  color: var(--white);
}

.mobile-menu {
  position: relative;
  display: none;
}

.mobile-menu > summary {
  display: inline-flex;
  min-width: 72px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 800;
  list-style: none;
}

.mobile-menu > summary::-webkit-details-marker {
  display: none;
}

.mobile-menu[open] > summary {
  background: var(--ink);
  color: var(--white);
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  display: grid;
  width: min(78vw, 280px);
  border: 1px solid var(--ink);
  background: var(--white);
}

.mobile-menu nav a {
  display: flex;
  min-height: 52px;
  align-items: center;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
  background: var(--acid);
}

.hero {
  display: grid;
  min-height: calc(100vh - 86px);
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 9vh, 8rem) var(--gutter);
}

.eyebrow,
.section-number,
.price-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  margin-right: 0.7rem;
  padding: 0.28rem 0.5rem;
  background: var(--acid);
}

h1 {
  max-width: 900px;
  margin: 1.6rem 0 1.8rem;
  font-family: var(--sans);
  font-size: clamp(3.9rem, 8vw, 8.25rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.84;
}

h1 em {
  color: var(--signal);
  font-family: var(--serif);
  font-weight: 400;
}

.hero-deck {
  max-width: 680px;
  margin-bottom: 2.2rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.7vw, 1.42rem);
  line-height: 1.48;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 1.8rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover {
  box-shadow: 5px 5px 0 var(--ink);
  transform: translate(-3px, -3px);
}

.button-primary {
  background: var(--acid);
}

.button-light {
  background: var(--white);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 750;
  text-underline-offset: 0.35em;
}

.availability {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.availability span {
  width: 0.55rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: #24a15e;
  box-shadow: 0 0 0 4px rgba(36, 161, 94, 0.13);
}

.campaign-board {
  display: grid;
  min-height: 100%;
  grid-template-rows: auto 1fr auto auto;
  border-left: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
}

.board-header,
.board-note {
  display: flex;
  justify-content: space-between;
  margin: 0;
  padding: 1.2rem 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-main {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(2rem, 4vw, 4.5rem) clamp(1.4rem, 3vw, 3rem);
}

.board-kicker {
  color: rgba(255, 255, 255, 0.62);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.board-statement {
  margin: 2rem 0 0;
  font-size: clamp(3.8rem, 7vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.78;
}

.board-statement strong {
  color: var(--acid);
  font-weight: inherit;
}

.board-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.board-metrics div {
  min-height: 100px;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.board-metrics div:last-child {
  border-right: 0;
}

.board-metrics dt {
  margin-bottom: 0.65rem;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.board-metrics dd {
  margin: 0;
  font-size: clamp(0.82rem, 1.3vw, 1.05rem);
  font-weight: 750;
}

.board-note {
  display: block;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 0;
  background: var(--signal);
  color: var(--white);
  text-align: center;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.proof-band p {
  margin: 0;
  padding: 1rem var(--gutter);
  border-right: 1px solid var(--line);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.proof-band p:last-child {
  border-right: 0;
}

.section-pad {
  padding: clamp(4.5rem, 10vw, 9rem) var(--gutter);
  border-bottom: 1px solid var(--line);
}

.section-number {
  color: var(--muted);
}

h2 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.6vw, 5.8rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.problem {
  display: grid;
  grid-template-columns: 0.38fr 1fr 0.9fr;
  gap: clamp(2rem, 5vw, 6rem);
}

.problem-copy p,
.pilot-heading p,
.process-heading p,
.standards-heading p {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.3rem);
}

.problem-answer {
  align-self: end;
  padding-top: 1.2rem;
  border-top: 2px solid var(--ink);
}

.problem-answer ol {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.problem-answer li {
  display: grid;
  grid-template-columns: 2.3rem 1fr;
  gap: 0.7rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line);
  font-weight: 650;
}

.problem-answer li span {
  color: var(--signal);
  font-size: 0.72rem;
  font-weight: 800;
}

.pilot {
  background: var(--white);
}

.pilot-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 3rem;
  align-items: end;
  margin: 2.5rem 0 4rem;
}

.pilot-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -1rem;
  color: var(--signal);
}

.pilot-heading h2,
.pilot-heading p {
  margin-bottom: 0;
}

.offer-ledger {
  border-top: 2px solid var(--ink);
}

.ledger-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.ledger-row span {
  padding: 1.05rem 0;
}

.ledger-row span:first-child {
  padding-right: 2rem;
  font-weight: 700;
}

.ledger-row span:last-child {
  padding-left: 2rem;
  border-left: 1px solid var(--line);
  color: var(--muted);
}

.ledger-head span {
  color: var(--muted) !important;
  font-size: 0.65rem;
  font-weight: 800 !important;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.price-strip {
  display: grid;
  grid-template-columns: 0.65fr 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: var(--acid);
}

.price-strip p {
  margin-bottom: 0;
}

.measurement {
  display: grid;
  grid-template-columns: 0.35fr minmax(0, 0.95fr) minmax(320px, 0.7fr);
  gap: clamp(2rem, 5vw, 5rem);
  background: var(--paper-deep);
}

.measurement-copy .eyebrow {
  color: var(--signal);
}

.measurement-copy h2 {
  margin-bottom: 1.6rem;
  font-size: clamp(2.6rem, 5vw, 5.2rem);
}

.measurement-copy > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.measurement-ledger {
  align-self: end;
  margin: 0;
  border-top: 2px solid var(--ink);
}

.measurement-ledger div {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.measurement-ledger dt {
  margin-bottom: 0.35rem;
  color: var(--signal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.measurement-ledger dd {
  margin: 0;
  font-weight: 650;
}

.price {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.price span {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.process {
  background: var(--ink);
  color: var(--white);
}

.process .section-number,
.process-heading p {
  color: rgba(255, 255, 255, 0.58);
}

.process-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: end;
  margin: 2.5rem 0 4rem;
}

.process-heading h2,
.process-heading p {
  margin-bottom: 0;
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 4rem 1fr auto;
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.process-num,
.process-time {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-list h3 {
  margin: 0 0 0.3rem;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.7vw, 2.5rem);
  font-weight: 400;
}

.process-list p {
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
}

.founder-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  margin-top: 2.5rem;
  border: 1px solid var(--ink);
}

.founder-portrait {
  position: relative;
  min-height: 480px;
  background: var(--acid);
  overflow: hidden;
}

.founder-portrait::after {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.45rem 0.6rem;
  background: var(--acid);
  content: "FOUNDER / OPERATOR";
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.09em;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.03);
}

.founder-copy {
  padding: clamp(2rem, 5vw, 5rem);
  border-left: 1px solid var(--ink);
}

.founder-copy h2 {
  font-size: clamp(2.3rem, 4.8vw, 4.8rem);
}

.founder-copy > p:not(.eyebrow) {
  max-width: 750px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
}

.standards {
  display: grid;
  grid-template-columns: 0.35fr 0.9fr 0.75fr;
  gap: clamp(2rem, 5vw, 5rem);
  background: var(--paper-deep);
}

.standards-list {
  align-self: end;
}

.standards-list p {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  gap: 0.8rem;
  margin: 0;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.standards-list span {
  color: var(--signal);
  font-size: 0.7rem;
  font-weight: 800;
}

.faq {
  display: grid;
  grid-template-columns: 0.35fr 1.65fr;
  gap: 3rem;
}

.faq-wrap h2 {
  margin-bottom: 2rem;
}

.faq details {
  border-top: 1px solid var(--ink);
}

.faq details:last-child {
  border-bottom: 1px solid var(--ink);
}

.faq summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.2rem;
  font-weight: 400;
}

.faq details[open] summary::after {
  content: "−";
}

.faq details p {
  max-width: 760px;
  padding: 0 3rem 1.5rem 0;
  color: var(--muted);
}

.closing {
  padding: clamp(5rem, 12vw, 12rem) var(--gutter);
  background: var(--signal);
  color: var(--white);
  text-align: center;
}

.closing h2 {
  max-width: 1050px;
  margin: 1.2rem auto 2.4rem;
  font-size: clamp(3rem, 7vw, 7.8rem);
}

.closing .button {
  background: var(--acid);
  color: var(--ink);
}

.closing .eyebrow,
.closing-note {
  color: rgba(255, 255, 255, 0.78);
}

.closing-note {
  margin: 1.3rem 0 0;
  font-size: 0.74rem;
  font-weight: 650;
}

footer {
  display: grid;
  grid-template-columns: 0.6fr 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem var(--gutter);
  background: var(--ink);
  color: var(--white);
  font-size: 0.74rem;
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
}

footer > div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-end;
}

footer a {
  color: inherit;
}

.footer-links a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.footer-mark {
  color: var(--white);
}

.footer-mark .wordmark-mark {
  border-color: var(--white);
}

.reveal {
  opacity: 1;
  transform: none;
}

/* Interior pages */

.page-main > section {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.page-hero {
  display: grid;
  min-height: 72vh;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  border-bottom: 1px solid var(--line);
}

.page-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 9vw, 8rem) var(--gutter);
}

.page-hero h1 {
  margin-bottom: 1.7rem;
  font-size: clamp(3.6rem, 7vw, 7.5rem);
}

.page-deck {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.4rem);
}

.about-hero-photo {
  position: relative;
  min-height: 620px;
  border-left: 1px solid var(--ink);
  background: var(--acid);
  overflow: hidden;
}

.about-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-photo p {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  margin: 0;
  padding: 0.55rem 0.7rem;
  background: var(--acid);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-grid,
.principles-grid {
  display: grid;
  grid-template-columns: 0.35fr minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.story-copy h2,
.principles-copy h2 {
  font-size: clamp(2.6rem, 5vw, 5.3rem);
}

.story-copy p,
.principles-copy p,
.legal-copy p,
.legal-copy li {
  color: var(--muted);
  font-size: clamp(1rem, 1.3vw, 1.14rem);
}

.operator-ledger {
  align-self: end;
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--ink);
  list-style: none;
}

.operator-ledger li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.operator-ledger span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--signal);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.principles-grid {
  background: var(--ink);
  color: var(--white);
}

.principles-grid .section-number,
.principles-copy p {
  color: rgba(255, 255, 255, 0.62);
}

.principles-list {
  align-self: end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.principles-list li {
  padding: 1rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  font-weight: 700;
}

.principles-list span {
  margin-right: 0.8rem;
  color: var(--acid);
  font-size: 0.7rem;
}

.application-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  min-height: calc(100vh - 86px);
  border-bottom: 1px solid var(--line);
}

.application-intro {
  padding: clamp(4rem, 8vw, 8rem) var(--gutter);
  background: var(--ink);
  color: var(--white);
}

.application-intro h1 {
  margin-bottom: 1.6rem;
  font-size: clamp(3.4rem, 6vw, 6.6rem);
}

.application-intro > p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
}

.fit-list {
  margin: 2.6rem 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  list-style: none;
}

.fit-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.application-form-wrap {
  padding: clamp(3rem, 7vw, 7rem) var(--gutter);
  background: var(--white);
}

.application-form-wrap h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2.4rem, 4vw, 4.3rem);
}

.form-note,
.privacy-note,
.form-status {
  color: var(--muted);
  font-size: 0.84rem;
}

.application-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 2.2rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 0.9rem;
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  background: var(--white);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.form-actions {
  display: flex;
  grid-column: 1 / -1;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.form-actions button {
  cursor: pointer;
}

.form-actions button[disabled] {
  cursor: wait;
  opacity: 0.65;
}

.form-status {
  min-height: 1.5rem;
  margin: 0;
}

.legal-hero,
.thanks-shell {
  padding: clamp(4rem, 9vw, 8rem) var(--gutter);
  border-bottom: 1px solid var(--line);
}

.legal-hero h1,
.thanks-shell h1 {
  max-width: 950px;
}

.legal-copy {
  max-width: 900px;
  padding: clamp(3rem, 7vw, 7rem) var(--gutter);
}

.legal-copy h2 {
  margin-top: 3rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.thanks-shell {
  display: grid;
  min-height: calc(100vh - 86px);
  place-content: center;
  text-align: center;
}

.thanks-shell p {
  max-width: 660px;
  margin-inline: auto;
  color: var(--muted);
  font-size: 1.15rem;
}

.thanks-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.7rem;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .campaign-board {
    min-height: 680px;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .problem,
  .standards,
  .measurement,
  .story-grid,
  .principles-grid {
    grid-template-columns: 0.3fr 1.7fr;
  }

  .problem-answer,
  .standards-list,
  .measurement-ledger,
  .operator-ledger,
  .principles-list {
    grid-column: 2;
  }

  .pilot-heading,
  .process-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .price-strip {
    grid-template-columns: 0.75fr 1.25fr;
  }

  .price-strip .button {
    grid-column: 1 / -1;
  }

  footer {
    grid-template-columns: 1fr 1fr;
  }

  footer > div {
    grid-column: 1 / -1;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .site-header {
    min-height: 72px;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero-copy {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  h1 {
    font-size: clamp(3.5rem, 16vw, 6rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .campaign-board {
    min-height: 580px;
  }

  .board-statement {
    font-size: clamp(3.5rem, 18vw, 6.5rem);
  }

  .proof-band {
    grid-template-columns: 1fr 1fr;
  }

  .proof-band p:nth-child(2) {
    border-right: 0;
  }

  .proof-band p:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .problem,
  .standards,
  .faq,
  .measurement,
  .story-grid,
  .principles-grid {
    grid-template-columns: 1fr;
  }

  .problem-answer,
  .standards-list,
  .measurement-ledger,
  .operator-ledger,
  .principles-list {
    grid-column: 1;
  }

  .pilot-heading {
    margin-bottom: 2.5rem;
  }

  .ledger-row {
    grid-template-columns: 1fr;
  }

  .ledger-row span:first-child {
    padding-right: 0;
  }

  .ledger-row span:last-child {
    padding-top: 0;
    padding-left: 0;
    border-left: 0;
  }

  .ledger-head span:last-child {
    display: none;
  }

  .price-strip {
    grid-template-columns: 1fr;
  }

  .price-strip .button {
    grid-column: 1;
  }

  .process-list li {
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
  }

  .process-time {
    grid-column: 2;
  }

  .founder-card {
    grid-template-columns: 1fr;
  }

  .founder-portrait {
    min-height: 300px;
  }

  .founder-copy {
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  footer {
    grid-template-columns: 1fr;
  }

  footer > div {
    grid-column: 1;
  }

  .page-hero,
  .application-shell {
    grid-template-columns: 1fr;
  }

  .about-hero-photo {
    min-height: 480px;
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .application-form {
    grid-template-columns: 1fr;
  }

  .field-full,
  .form-actions {
    grid-column: 1;
  }
}

@media (max-width: 480px) {
  .wordmark-mark {
    width: 2rem;
  }

  .mobile-menu > summary {
    min-width: 66px;
  }

  .hero-copy {
    padding-top: 3.6rem;
  }

  .eyebrow {
    line-height: 1.8;
  }

  .board-metrics {
    grid-template-columns: 1fr;
  }

  .board-metrics div {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }

  .board-metrics div:last-child {
    border-bottom: 0;
  }

  .proof-band {
    grid-template-columns: 1fr;
  }

  .proof-band p {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-band p:last-child {
    border-bottom: 0;
  }

  .section-pad {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: light;
  }
}
