:root {
  --ink: #111512;
  --ink-soft: #343a35;
  --paper: #f1f0e9;
  --paper-bright: #faf9f4;
  --line: #c9c9bf;
  --acid: #d9ff43;
  --acid-dark: #b8dd20;
  --orange: #ff6b2c;
  --mono: "DM Mono", monospace;
  --sans: "Manrope", system-ui, sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) { overflow: hidden; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 12px 16px;
  background: var(--acid);
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.page-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: .32;
  background-image: linear-gradient(rgba(17,21,18,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(17,21,18,.04) 1px, transparent 1px);
  background-size: 80px 80px;
}
.section-shell { width: var(--shell); margin-inline: auto; }
.site-header {
  width: var(--shell);
  height: 86px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font: 700 14px/1 var(--sans);
  letter-spacing: .12em;
  text-decoration: none;
}
.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--ink);
  background: var(--acid);
  font: 500 12px/1 var(--mono);
  letter-spacing: -.06em;
  box-shadow: 3px 3px 0 var(--ink);
}
.site-header nav { display: flex; align-items: center; gap: 32px; }
.site-header nav a {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.site-header nav a:not(.nav-cta):hover { text-decoration: underline; text-underline-offset: 5px; }
.nav-cta {
  padding: 12px 17px;
  color: var(--paper-bright);
  background: var(--ink);
}
.nav-cta:hover { background: var(--orange); }
.menu-button, .mobile-nav { display: none; }
.hero {
  min-height: 670px;
  padding: 98px 0 88px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 78px;
  align-items: center;
}
.eyebrow, .section-number {
  margin: 0 0 23px;
  font: 500 11px/1.4 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}
.eyebrow { display: flex; align-items: center; gap: 10px; }
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #66a911;
  box-shadow: 0 0 0 5px rgba(102,169,17,.12);
}
.hero h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(62px, 7.2vw, 108px);
  line-height: .91;
  letter-spacing: -.075em;
}
.hero h1 span { display: block; color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.hero-lead {
  max-width: 620px;
  margin: 32px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 30px; margin-top: 40px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 54px;
  padding: 0 23px;
  border: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.button:hover { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 var(--ink); }
.button-primary { background: var(--acid); }
.text-link {
  font: 600 13px/1 var(--sans);
  text-underline-offset: 5px;
}
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 25px;
  margin-top: 48px;
  color: #5a605b;
  font: 500 10px/1 var(--mono);
  letter-spacing: .04em;
  text-transform: uppercase;
}
.trust-line span::before { content: "✓"; margin-right: 7px; color: #588e10; font-weight: 700; }
.hero-visual {
  align-self: center;
  border: 1px solid var(--ink);
  background: #151916;
  color: #eef2eb;
  box-shadow: 12px 12px 0 var(--acid);
  transform: rotate(1deg);
}
.window-bar {
  height: 42px;
  padding: 0 13px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid #414840;
  color: #939b93;
  font: 400 9px/1 var(--mono);
  letter-spacing: .08em;
}
.window-dots { display: flex; gap: 6px; }
.window-dots i { width: 7px; height: 7px; border-radius: 50%; background: #596159; }
.window-dots i:first-child { background: var(--orange); }
.window-state { justify-self: end; color: var(--acid); }
.code-panel { padding: 36px 23px 32px; font: 400 12px/2.5 var(--mono); }
.line { display: flex; gap: 19px; white-space: nowrap; }
.line .ln { color: #505950; user-select: none; }
.line b { color: var(--acid); font-weight: 400; }
.line em { color: #ff9467; font-style: normal; }
.line.active { margin-inline: -23px; padding-inline: 23px; background: rgba(217,255,67,.06); }
.cursor { display: inline-block; width: 7px; height: 15px; margin-left: 3px; vertical-align: middle; background: var(--acid); animation: blink 1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.build-output {
  margin: 0 23px 23px;
  border: 1px solid #424a42;
  font: 400 9px/1 var(--mono);
}
.output-head, .output-row { display: flex; justify-content: space-between; padding: 11px 13px; }
.output-head { color: #687168; border-bottom: 1px solid #424a42; }
.output-row { border-bottom: 1px solid #292f29; color: #99a299; }
.output-row:last-child { border: 0; }
.output-row strong { color: var(--acid); font-weight: 500; }
.ticker { overflow: hidden; border-block: 1px solid var(--ink); background: var(--acid); }
.ticker div {
  width: max-content;
  padding: 14px 0;
  display: flex;
  gap: 29px;
  align-items: center;
  font: 500 10px/1 var(--mono);
  letter-spacing: .12em;
  animation: drift 35s linear infinite alternate;
}
.ticker i { font-style: normal; }
@keyframes drift { to { transform: translateX(calc(100vw - 100%)); } }
.section-block { padding-block: 125px; }
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr .7fr;
  gap: 100px;
  align-items: end;
  margin-bottom: 60px;
}
.section-heading h2 {
  max-width: 750px;
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1;
  letter-spacing: -.055em;
}
.section-heading > p {
  margin: 0;
  color: #545a55;
  font-size: 15px;
  line-height: 1.7;
}
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.project-card {
  min-width: 0;
  display: grid;
  border: 1px solid var(--ink);
  background: var(--paper-bright);
}
.project-featured {
  grid-column: span 2;
  grid-template-columns: 1.1fr .9fr;
}
.project-top {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding: 14px 17px;
  border-bottom: 1px solid var(--ink);
  font: 500 9px/1 var(--mono);
  letter-spacing: .09em;
  text-transform: uppercase;
}
.project-index { color: #737a73; }
.project-graphic { min-height: 280px; border-bottom: 1px solid var(--ink); background: var(--ink); }
.project-featured .project-graphic { min-height: 440px; border: 0; border-right: 1px solid var(--ink); }
.project-copy { padding: 30px; }
.project-featured .project-copy { display: flex; flex-direction: column; justify-content: center; padding: 45px; }
.project-kicker { margin: 0 0 12px; color: #606760; font: 500 10px/1.3 var(--mono); letter-spacing: .09em; text-transform: uppercase; }
.project-copy h3 { margin: 0; font-size: clamp(27px, 3vw, 42px); line-height: 1.08; letter-spacing: -.045em; }
.project-copy > p:not(.project-kicker) { margin: 22px 0 0; color: #535a54; font-size: 14px; line-height: 1.7; }
.tag-row { display: flex; flex-wrap: wrap; gap: 7px; margin: 27px 0; }
.tag-row span { padding: 7px 9px; border: 1px solid #bfc2bb; font: 500 9px/1 var(--mono); text-transform: uppercase; }
.project-copy > a { margin-top: auto; font-size: 12px; font-weight: 800; text-underline-offset: 5px; }
.scoreboard-graphic { padding: 60px 35px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 23px; color: var(--paper-bright); }
.score-team span { display: block; color: #838c84; font: 500 9px/1 var(--mono); }
.score-team strong { display: block; font-size: 62px; letter-spacing: -.08em; }
.score-team.right { text-align: right; }
.score-clock { padding: 12px; border: 1px solid #414942; color: var(--acid); font: 500 13px/1 var(--mono); }
.score-bars { grid-column: 1 / -1; height: 85px; display: flex; align-items: end; gap: 9px; border-bottom: 1px solid #4c544c; }
.score-bars i { flex: 1; height: 30%; background: var(--acid); }
.score-bars i:nth-child(2) { height: 48%; }.score-bars i:nth-child(3) { height: 39%; }.score-bars i:nth-child(4) { height: 81%; background: var(--orange); }.score-bars i:nth-child(5) { height: 63%; }.score-bars i:nth-child(6) { height: 74%; }.score-bars i:nth-child(7) { height: 92%; }
.parts-graphic { padding: 55px 38px; color: var(--paper-bright); }
.part-label { font: 500 9px/1 var(--mono); letter-spacing: .1em; color: var(--acid); }
.search-mock { margin-top: 26px; padding: 18px; display: flex; justify-content: space-between; border: 1px solid #657065; font: 500 12px/1 var(--mono); }
.search-mock b { color: var(--acid); }
.parts-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 35px; }
.parts-list i { aspect-ratio: 1; border: 1px solid #343b35; background: linear-gradient(135deg, #242a25, #171b18); }
.parts-list i:nth-child(2) { border-color: var(--acid); }
.radar-graphic { display: grid; place-items: center; position: relative; overflow: hidden; }
.radar-circle { position: relative; width: 170px; height: 170px; border: 1px solid #465047; border-radius: 50%; box-shadow: 0 0 0 37px #151916, 0 0 0 38px #333b34, 0 0 0 75px #151916, 0 0 0 76px #2a312b; }
.radar-circle::before, .radar-circle::after { content: ""; position: absolute; background: #3c453d; }
.radar-circle::before { width: 1px; height: 250px; left: 50%; top: -40px; }
.radar-circle::after { height: 1px; width: 250px; top: 50%; left: -40px; }
.radar-circle i { position: absolute; inset: 50% 50% 0 0; border-radius: 100% 0 0; background: conic-gradient(from 270deg, rgba(217,255,67,.4), transparent 80%); transform-origin: 100% 100%; animation: sweep 4s linear infinite; }
.radar-circle b, .radar-circle span { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 12px var(--acid); z-index: 2; }
.radar-circle b { left: 30px; top: 48px; }.radar-circle span { right: 32px; bottom: 42px; }
@keyframes sweep { to { transform: rotate(360deg); } }
.radar-hit { position: absolute; right: 25px; bottom: 22px; color: var(--acid); font: 500 9px/1 var(--mono); }
.services-section { color: var(--paper-bright); background: var(--ink); }
.section-heading.light > p { color: #aeb5ae; }
.service-list { border-top: 1px solid #4b514c; }
.service-list article {
  min-height: 156px;
  padding: 30px 0;
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  border-bottom: 1px solid #4b514c;
}
.service-number { align-self: start; padding-top: 7px; color: var(--acid); font: 500 10px/1 var(--mono); }
.service-list h3 { margin: 0; font-size: clamp(27px, 4vw, 48px); line-height: 1; letter-spacing: -.04em; }
.service-list p { max-width: 650px; margin: 15px 0 0; color: #aeb5ae; line-height: 1.65; }
.service-symbol { justify-self: end; color: var(--acid); font: 400 29px/1 var(--mono); }
.about-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.about-mark {
  align-self: start;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid var(--ink);
  background: var(--acid);
  font: 500 clamp(90px, 14vw, 200px)/1 var(--mono);
  letter-spacing: -.1em;
  box-shadow: 16px 16px 0 var(--ink);
}
.about-copy h2 { max-width: 700px; margin: 0; font-size: clamp(43px, 5vw, 72px); line-height: 1; letter-spacing: -.055em; }
.about-lead { margin: 35px 0 0; font-size: 21px; line-height: 1.55; font-weight: 600; }
.about-copy > p:not(.section-number):not(.about-lead) { color: #555c56; font-size: 15px; line-height: 1.8; }
.proof-button { margin-top: 22px; }
.principles { margin-top: 43px; border-top: 1px solid var(--line); }
.principles > div { padding: 20px 0; display: grid; grid-template-columns: 55px 1fr; border-bottom: 1px solid var(--line); }
.principles strong { color: #858b85; font: 500 10px/1.4 var(--mono); }
.principles span { display: grid; grid-template-columns: 180px 1fr; color: #5c635d; font-size: 13px; }
.principles b { color: var(--ink); }
.contact-section { padding: 125px 0; color: var(--paper-bright); background: var(--orange); }
.contact-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 110px; }
.contact-intro h2 { margin: 0; font-size: clamp(52px, 6vw, 82px); line-height: .95; letter-spacing: -.065em; }
.contact-intro > p:not(.section-number) { max-width: 510px; margin-top: 27px; line-height: 1.75; }
.email-link { display: inline-block; margin-top: 22px; font-size: 17px; font-weight: 800; text-underline-offset: 5px; }
.support-callout { margin-top: 60px; padding: 22px; border: 1px solid rgba(17,21,18,.55); background: rgba(255,255,255,.08); }
.support-callout > span { font: 500 9px/1 var(--mono); letter-spacing: .1em; text-transform: uppercase; }
.support-callout p { margin: 11px 0 17px; font-size: 13px; line-height: 1.55; }
.support-link, .footer-links button {
  padding: 0;
  border: 0;
  background: none;
  font-size: 12px;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 5px;
  cursor: pointer;
}
.contact-form { padding: 38px; color: var(--ink); background: var(--paper-bright); box-shadow: 11px 11px 0 var(--ink); }
.contact-form label { display: grid; gap: 9px; margin-bottom: 20px; font: 500 10px/1 var(--mono); letter-spacing: .05em; text-transform: uppercase; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid #aeb2aa;
  border-radius: 0;
  padding: 14px 13px;
  color: var(--ink);
  background: transparent;
  font: 500 14px/1.4 var(--sans);
  text-transform: none;
}
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 3px solid rgba(217,255,67,.8); border-color: var(--ink); }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-submit { width: 100%; margin-top: 4px; }
.form-note { margin: 14px 0 0; color: #727871; text-align: center; font-size: 10px; }
.notice { width: var(--shell); margin: 0 auto 35px; padding: 15px 18px; border: 1px solid var(--ink); color: var(--ink); background: var(--paper-bright); font-size: 13px; }
.notice-success { background: var(--acid); }
.public-work-cta { padding: 95px 0; border-top: 1px solid var(--ink); background: var(--acid); }
.public-work-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 90px; align-items: center; }
.public-work-layout h2 { max-width: 760px; margin: 0; font-size: clamp(42px, 5vw, 67px); line-height: 1; letter-spacing: -.055em; }
.public-work-layout > div > p:not(.section-number) { max-width: 720px; line-height: 1.7; }
.micro-support-card { padding: 25px; border: 1px solid var(--ink); background: var(--paper-bright); box-shadow: 9px 9px 0 var(--ink); }
.micro-label { display: block; margin-bottom: 14px; font: 500 9px/1 var(--mono); letter-spacing: .1em; }
.micro-project-field, .dialog-project-field, .support-project-field { display: grid; gap: 8px; font: 500 9px/1.3 var(--mono); letter-spacing: .06em; text-transform: uppercase; }
.micro-project-field { margin-bottom: 15px; }
.micro-project-field select, .dialog-project-field select, .support-project-field select, .support-project-field input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper-bright);
  font: 600 12px/1.3 var(--sans);
  text-transform: none;
}
.micro-support-card form + form { margin-top: 9px; }
.micro-support-card button { width: 100%; padding: 16px; display: flex; justify-content: space-between; border: 1px solid var(--ink); background: transparent; font-weight: 800; cursor: pointer; }
.micro-support-card button:hover { background: var(--acid); }
.micro-links { display: flex; justify-content: space-between; gap: 15px; margin-top: 18px; }
.micro-links a { font-size: 10px; font-weight: 800; text-underline-offset: 4px; }
.support-hero, .projects-hero { padding: 110px 0 75px; }
.support-hero h1, .projects-hero h1 { max-width: 1050px; margin: 0; font-size: clamp(60px, 8vw, 112px); line-height: .91; letter-spacing: -.075em; }
.support-hero h1 span, .projects-hero h1 span { color: transparent; -webkit-text-stroke: 1.5px var(--ink); }
.support-hero > p:last-child, .projects-hero > p { max-width: 720px; margin: 35px 0 0; color: #535a54; font-size: 18px; line-height: 1.7; }
.support-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding-bottom: 110px; }
.support-product { min-height: 430px; padding: 34px; display: flex; flex-direction: column; align-items: flex-start; border: 1px solid var(--ink); background: var(--paper-bright); }
.support-product.primary { background: var(--acid); }
.support-icon { align-self: flex-end; font: 500 11px/1 var(--mono); }
.support-product h2 { margin: 24px 0 0; font-size: clamp(45px, 5vw, 70px); line-height: 1; letter-spacing: -.06em; }
.support-product > strong { margin-top: 8px; font: 500 22px/1 var(--mono); }
.support-product > p:not(.project-kicker) { max-width: 500px; color: #545b55; line-height: 1.7; }
.support-project-field { width: 100%; margin-top: 13px; }
.support-product .button { width: 100%; margin-top: auto; }
.support-product.primary .button { background: var(--paper-bright); }
.support-explainer { padding: 100px 0; display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; border-top: 1px solid var(--ink); }
.support-explainer h2 { margin: 0; font-size: clamp(40px, 5vw, 65px); line-height: 1; letter-spacing: -.055em; }
.support-use-list { border-top: 1px solid var(--line); }
.support-use-list p { margin: 0; padding: 20px 0; display: grid; grid-template-columns: 170px 1fr; border-bottom: 1px solid var(--line); color: #5c635d; }
.support-use-list b { color: var(--ink); }
.projects-hero { padding-bottom: 110px; }
.projects-hero .hero-actions { margin-top: 38px; }
.public-project-list { display: grid; gap: 20px; padding-bottom: 120px; }
.public-project { display: grid; grid-template-columns: 220px 1fr; border: 1px solid var(--ink); background: var(--paper-bright); }
.featured-public-project { background: var(--acid); }
.public-project-meta { padding: 27px; display: flex; flex-direction: column; gap: 13px; border-right: 1px solid var(--ink); font: 500 9px/1 var(--mono); letter-spacing: .09em; }
.public-project-meta span:first-child { margin-bottom: auto; color: #686f68; font-size: 13px; }
.public-project-copy { padding: 45px; }
.public-project-copy h2 { max-width: 850px; margin: 0; font-size: clamp(35px, 4.5vw, 61px); line-height: 1.02; letter-spacing: -.055em; }
.public-project-copy > p:not(.project-kicker) { max-width: 760px; color: #515852; line-height: 1.75; }
.public-project-copy > a, .project-status { font-size: 12px; font-weight: 800; text-underline-offset: 5px; }
.public-project-copy .project-support-link { display: block; margin-top: 14px; color: #586057; font-size: 11px; }
.project-status { color: #626962; }
.projects-manifesto { padding: 115px 0; color: var(--paper-bright); background: var(--ink); }
.projects-manifesto h2 { max-width: 1000px; margin: 0; font-size: clamp(45px, 6vw, 80px); line-height: 1; letter-spacing: -.06em; }
.projects-manifesto p:not(.section-number) { max-width: 760px; margin: 30px 0; color: #aeb5ae; font-size: 17px; line-height: 1.75; }
.compact-footer { padding-top: 28px; }
.site-footer { padding: 75px max(24px, calc((100vw - 1180px) / 2)) 25px; color: var(--paper-bright); background: var(--ink); }
.site-footer .brand { color: var(--paper-bright); }
.site-footer .brand-mark { color: var(--ink); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 40px; align-items: start; padding-bottom: 65px; }
.footer-main > p { margin: 0; color: #9fa79f; font-size: 12px; line-height: 1.7; }
.footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-links a, .footer-links button { color: var(--paper-bright); font-size: 12px; }
.footer-bottom { padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid #3b423c; color: #7f877f; font: 400 9px/1.4 var(--mono); text-transform: uppercase; }
.support-dialog {
  width: min(520px, calc(100vw - 32px));
  padding: 38px;
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--paper-bright);
  box-shadow: 12px 12px 0 var(--acid);
}
.support-dialog::backdrop { background: rgba(10,13,11,.82); backdrop-filter: blur(4px); }
.support-dialog h2 { margin: 0; font-size: 45px; line-height: 1; letter-spacing: -.05em; }
.support-dialog > p:not(.section-number) { color: #5c635d; line-height: 1.6; }
.dialog-project-field { margin: 20px 0 4px; }
.dialog-close { position: absolute; right: 16px; top: 12px; border: 0; background: none; font: 400 28px/1 var(--mono); cursor: pointer; }
.support-options { display: grid; gap: 9px; margin: 26px 0 20px; }
.support-options button { width: 100%; padding: 17px; display: flex; justify-content: space-between; border: 1px solid var(--ink); background: var(--paper); font-weight: 700; cursor: pointer; }
.support-options button:hover { background: var(--acid); }
.support-dialog small { display: block; color: #737a73; line-height: 1.5; }
.simple-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: var(--ink); }
.simple-card { max-width: 650px; padding: 60px; border: 1px solid var(--ink); background: var(--paper-bright); box-shadow: 13px 13px 0 var(--acid); }
.simple-card h1 { margin: 28px 0 18px; font-size: clamp(48px, 7vw, 76px); line-height: .95; letter-spacing: -.06em; }
.simple-card p:not(.section-number) { margin-bottom: 30px; color: #565d57; line-height: 1.7; }
.legal-content { width: min(760px, calc(100vw - 48px)); margin: 90px auto 130px; }
.legal-content h1 { margin: 0 0 25px; font-size: clamp(48px, 7vw, 80px); line-height: .95; letter-spacing: -.06em; }
.legal-content h2 { margin-top: 42px; font-size: 24px; letter-spacing: -.03em; }
.legal-content p { color: #535a54; line-height: 1.75; }
.legal-content .text-link { display: inline-block; margin-top: 40px; }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  :root { --shell: min(100% - 32px, 700px); }
  .site-header nav { display: none; }
  .menu-button { display: block; border: 0; background: none; font: 500 11px/1 var(--mono); text-transform: uppercase; cursor: pointer; }
  .mobile-nav { position: absolute; z-index: 20; left: 16px; right: 16px; top: 75px; padding: 12px; border: 1px solid var(--ink); background: var(--paper-bright); box-shadow: 6px 6px 0 var(--ink); }
  .mobile-nav:not([hidden]) { display: grid; }
  .mobile-nav a { padding: 13px; text-decoration: none; font-size: 13px; font-weight: 700; }
  .hero { padding: 75px 0; grid-template-columns: 1fr; gap: 65px; }
  .hero-visual { width: min(100%, 570px); }
  .section-heading { grid-template-columns: 1fr; gap: 25px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-featured { grid-template-columns: 1fr; }
  .project-featured .project-graphic { min-height: 330px; border-right: 0; border-bottom: 1px solid var(--ink); }
  .about-section, .contact-layout { grid-template-columns: 1fr; gap: 70px; }
  .public-work-layout, .support-explainer { grid-template-columns: 1fr; gap: 50px; }
  .public-project { grid-template-columns: 140px 1fr; }
  .about-mark { width: min(75%, 420px); }
  .contact-layout { gap: 55px; }
}

@media (max-width: 650px) {
  .site-header { height: 72px; }
  .hero { min-height: 0; padding: 65px 0 75px; }
  .hero h1 { font-size: clamp(56px, 18vw, 80px); }
  .hero-lead { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .trust-line { flex-direction: column; }
  .line { font-size: 9px; gap: 10px; }
  .code-panel { padding-inline: 15px; overflow: hidden; }
  .line.active { margin-inline: -15px; padding-inline: 15px; }
  .section-block, .contact-section { padding-block: 85px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-featured { grid-column: auto; }
  .project-graphic, .project-featured .project-graphic { min-height: 260px; }
  .scoreboard-graphic { padding: 35px 18px; gap: 12px; }
  .score-team strong { font-size: 42px; }
  .project-copy, .project-featured .project-copy { padding: 27px; }
  .service-list article { grid-template-columns: 42px 1fr; }
  .service-symbol { display: none; }
  .service-list p { font-size: 13px; }
  .about-mark { width: calc(100% - 16px); }
  .principles span { grid-template-columns: 1fr; gap: 7px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 25px 20px; box-shadow: 7px 7px 0 var(--ink); }
  .footer-main { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .public-work-cta { padding-block: 75px; }
  .micro-links { flex-direction: column; }
  .support-hero, .projects-hero { padding: 75px 0 60px; }
  .support-grid { grid-template-columns: 1fr; padding-bottom: 80px; }
  .support-product { min-height: 380px; padding: 27px; }
  .support-explainer { padding-block: 75px; }
  .support-use-list p { grid-template-columns: 1fr; gap: 8px; }
  .public-project { grid-template-columns: 1fr; }
  .public-project-meta { min-height: 95px; flex-direction: row; border-right: 0; border-bottom: 1px solid var(--ink); }
  .public-project-meta span:first-child { margin: 0 auto 0 0; }
  .public-project-copy { padding: 29px 24px; }
  .simple-card { padding: 37px 27px; }
}

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