@font-face {
  font-family: "Unbounded";
  src: url("../fonts/unbounded-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("../fonts/ibm-plex-mono-latin-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #0b0b0d;
  --paper: #f4f0e6;
  --paper-deep: #e7e1d3;
  --white: #fffdf7;
  --lime: #c8ff31;
  --blue: #4657ff;
  --orange: #ff5b37;
  --line: rgba(11, 11, 13, 0.22);
  --line-light: rgba(244, 240, 230, 0.25);
  --shell: min(100% - 48px, 1440px);
  --section-y: clamp(88px, 10vw, 168px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: 0;
  background: var(--paper);
}

html.menu-open,
html.menu-open body {
  overflow: hidden;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.18em;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

::selection {
  color: var(--ink);
  background: var(--lime);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: "Unbounded", "Arial Black", sans-serif;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  color: var(--ink);
  background: var(--lime);
  border: 2px solid var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.mono,
.eyebrow,
.section-label,
.status-line,
.nav-link,
.button,
.fact-label,
.legal-kicker,
.toc-title,
.footer-heading {
  font-family: "IBM Plex Mono", Consolas, monospace;
  font-weight: 500;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 50;
  color: var(--paper);
  background: var(--ink);
  border-bottom: 1px solid rgba(244, 240, 230, 0.24);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(260px, 3fr) minmax(420px, 6fr) minmax(180px, 3fr);
  align-items: stretch;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  min-height: 64px;
  color: var(--paper);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  color: var(--paper);
  flex: none;
}

.brand-word {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(14px, 1.3vw, 18px);
  font-weight: 720;
  letter-spacing: -0.025em;
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  border-left: 1px solid rgba(244, 240, 230, 0.24);
}

.nav-link {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 88px;
  padding: 0 18px;
  color: var(--paper);
  border-right: 1px solid rgba(244, 240, 230, 0.24);
  font-size: 11px;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-link:hover,
.nav-link:active {
  color: var(--ink);
  background: var(--lime);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 88px;
  color: var(--ink);
  background: var(--lime);
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.header-cta:hover,
.header-cta:active {
  color: var(--paper);
  background: var(--blue);
}

.menu-button {
  display: none;
  width: 64px;
  min-height: 64px;
  padding: 0;
  color: var(--paper);
  background: transparent;
  border: 0;
  border-left: 1px solid rgba(244, 240, 230, 0.24);
  cursor: pointer;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 24px;
  height: 2px;
  margin: auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.menu-icon::before {
  transform: translateY(-7px);
}

.menu-icon::after {
  transform: translateY(5px);
}

.menu-button[aria-expanded="true"] .menu-icon {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-icon::before {
  transform: translateY(0) rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-icon::after {
  transform: translateY(-2px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 45;
  inset: 64px 0 0;
  color: var(--paper);
  background: var(--blue);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-inner {
  display: grid;
  height: 100%;
  padding: 28px 24px 32px;
  align-content: space-between;
}

.mobile-menu-nav {
  display: grid;
}

.mobile-menu-nav a {
  padding: 15px 0;
  border-bottom: 1px solid rgba(244, 240, 230, 0.34);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(25px, 8vw, 42px);
  font-weight: 650;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.mobile-menu-meta {
  margin: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 54px;
  padding: 0 20px;
  border: 2px solid currentColor;
  font-size: 12px;
  text-decoration: none;
  transition: transform 180ms var(--ease), color 180ms ease, background-color 180ms ease;
}

.button::after {
  content: "↗";
  font-size: 18px;
  line-height: 1;
}

.button:hover {
  transform: translate(-3px, -3px);
}

.button-dark {
  color: var(--paper);
  background: var(--ink);
}

.button-dark:hover,
.button-dark:active {
  color: var(--ink);
  background: var(--lime);
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.button-light:hover,
.button-light:active {
  color: var(--paper);
  background: var(--blue);
}

.button-ghost {
  color: var(--ink);
  background: transparent;
}

.button-ghost:hover,
.button-ghost:active {
  background: var(--orange);
}

.hero {
  position: relative;
  min-height: calc(100svh - 88px);
  overflow: clip;
  border-bottom: 1px solid var(--ink);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 0;
  background: var(--line);
  content: "";
}

.hero::before {
  top: 0;
  bottom: 0;
  left: calc(50% - min(100% - 48px, 1440px) / 6);
  width: 1px;
}

.hero::after {
  right: 0;
  bottom: 112px;
  left: 0;
  height: 1px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 9fr) minmax(300px, 3fr);
  min-height: calc(100svh - 88px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: clamp(42px, 7vw, 98px) clamp(28px, 5vw, 76px) 32px 0;
}

.eyebrow,
.section-label {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 28px;
  font-size: 12px;
}

.eyebrow::before,
.section-label::before {
  width: 10px;
  height: 10px;
  background: var(--orange);
  content: "";
}

.hero-title {
  max-width: 950px;
  margin: 0;
  font-size: clamp(50px, 7.35vw, 118px);
  font-weight: 790;
  line-height: 0.92;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.hero-title span {
  display: block;
}

.hero-title .title-accent {
  width: fit-content;
  margin-top: 0.13em;
  padding: 0.08em 0.14em 0.11em;
  color: var(--paper);
  background: var(--blue);
  transform: rotate(-1.2deg);
  transform-origin: left center;
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  padding-top: clamp(52px, 9vw, 132px);
}

.hero-body {
  max-width: 660px;
  margin: 0;
  font-size: clamp(18px, 1.65vw, 25px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero-stage {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  border-left: 1px solid var(--ink);
  box-shadow: 100vw 0 0 var(--ink);
}

.hero-stage::before,
.hero-stage::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
}

.hero-stage::before {
  opacity: 0.58;
  background-image:
    linear-gradient(to right, transparent calc(25% - 1px), rgba(244, 240, 230, 0.2) 25%, transparent calc(25% + 1px)),
    linear-gradient(to bottom, transparent calc(25% - 1px), rgba(244, 240, 230, 0.2) 25%, transparent calc(25% + 1px));
  background-size: 25% 25%;
}

.hero-stage::after {
  inset: auto 0 0;
  height: 18px;
  background: var(--lime);
}

.system-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(84%, 360px);
  aspect-ratio: 1;
  border: 1px solid rgba(244, 240, 230, 0.44);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.system-orbit::before,
.system-orbit::after {
  position: absolute;
  border: 1px solid rgba(244, 240, 230, 0.34);
  border-radius: 50%;
  content: "";
}

.system-orbit::before {
  inset: 14%;
}

.system-orbit::after {
  inset: 31%;
  background: var(--blue);
  border-color: var(--paper);
}

.orbit-axis,
.orbit-axis::before {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 116%;
  height: 1px;
  background: rgba(244, 240, 230, 0.34);
  content: "";
  transform: translate(-50%, -50%) rotate(24deg);
}

.orbit-axis::before {
  width: 100%;
  transform: translate(-50%, -50%) rotate(90deg);
}

.stage-mark {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  width: 22%;
  color: var(--paper);
  transform: translate(-50%, -50%);
}

.stage-marker {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 18px;
  background: var(--orange);
  border: 3px solid var(--ink);
  border-radius: 50%;
}

.stage-marker-one {
  top: 25%;
  right: 14%;
}

.stage-marker-two {
  bottom: 18%;
  left: 18%;
  background: var(--lime);
}

.stage-coordinate {
  position: absolute;
  z-index: 2;
  right: 20px;
  bottom: 36px;
  margin: 0;
  writing-mode: vertical-rl;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifesto {
  color: var(--paper);
  background: var(--ink);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: 3fr 9fr;
  border-right: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.manifesto-index {
  padding: var(--section-y) 28px;
  border-right: 1px solid var(--line-light);
}

.manifesto-index .section-label {
  position: sticky;
  top: 120px;
}

.manifesto-copy {
  padding: var(--section-y) clamp(28px, 6vw, 96px);
}

.statement {
  max-width: 1140px;
  margin-bottom: 54px;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(39px, 5.8vw, 92px);
  font-weight: 560;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.statement .lime-block {
  display: inline;
  padding: 0 0.08em;
  color: var(--ink);
  background: var(--lime);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.manifesto-detail {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.8fr);
  gap: clamp(36px, 9vw, 140px);
  align-items: end;
  padding-top: 42px;
  border-top: 1px solid var(--line-light);
}

.manifesto-detail p {
  max-width: 690px;
  margin: 0;
  color: rgba(244, 240, 230, 0.82);
  font-size: clamp(18px, 1.5vw, 23px);
}

.detail-stamp {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px;
  color: var(--ink);
  background: var(--orange);
  transform: rotate(1.6deg);
}

.detail-stamp strong {
  font-family: "Unbounded", sans-serif;
  font-size: 40px;
}

.detail-stamp span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  line-height: 1.45;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.capabilities {
  padding: var(--section-y) 0;
}

.section-head {
  display: grid;
  grid-template-columns: 3fr 9fr;
  margin-bottom: clamp(54px, 7vw, 104px);
}

.section-head .section-label {
  padding-right: 28px;
}

.section-title {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(45px, 6.3vw, 98px);
  font-weight: 660;
  text-transform: uppercase;
}

.capability-list {
  border-top: 2px solid var(--ink);
}

.capability-item {
  display: grid;
  grid-template-columns: 1.2fr 6.1fr 4.7fr;
  gap: 24px;
  align-items: center;
  min-height: 188px;
  padding: 28px 0;
  border-bottom: 1px solid var(--ink);
}

.capability-number {
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.capability-item h3 {
  margin: 0;
  font-size: clamp(25px, 3vw, 46px);
  font-weight: 620;
}

.capability-item p {
  max-width: 420px;
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
}

.process {
  color: var(--ink);
  background: var(--lime);
  border-block: 2px solid var(--ink);
}

.process-inner {
  display: grid;
  grid-template-columns: 4.5fr 7.5fr;
}

.process-intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 690px;
  padding: var(--section-y) clamp(28px, 5vw, 72px) var(--section-y) 0;
  border-right: 1px solid var(--ink);
}

.process-intro h2 {
  margin: 0;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 690;
  text-transform: uppercase;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-step {
  position: relative;
  min-height: 345px;
  padding: 40px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.process-step:nth-child(2n) {
  border-right: 0;
}

.process-step:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.process-step::after {
  position: absolute;
  top: 40px;
  right: 40px;
  width: 13px;
  height: 13px;
  background: var(--orange);
  content: "";
}

.process-step:nth-child(2)::after,
.process-step:nth-child(3)::after {
  background: var(--blue);
}

.process-number {
  display: block;
  margin-bottom: 82px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 14px;
}

.process-step h3 {
  margin-bottom: 18px;
  font-size: clamp(25px, 2.4vw, 38px);
  font-weight: 650;
}

.process-step p {
  max-width: 330px;
  margin: 0;
  font-size: 16px;
}

.facts {
  padding: var(--section-y) 0;
  color: var(--paper);
  background: var(--blue);
}

.facts .section-label::before {
  background: var(--lime);
}

.facts-title {
  max-width: 1200px;
  margin: 0 0 clamp(58px, 8vw, 124px);
  font-size: clamp(46px, 7vw, 108px);
  font-weight: 680;
  text-transform: uppercase;
}

.facts-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(244, 240, 230, 0.52);
  border-bottom: 1px solid rgba(244, 240, 230, 0.52);
}

.fact {
  display: grid;
  grid-template-rows: auto minmax(108px, 1fr) auto;
  min-height: 280px;
  padding: 34px 24px;
  border-right: 1px solid rgba(244, 240, 230, 0.52);
}

.fact:last-child {
  border-right: 0;
}

.fact-index {
  display: block;
  margin-bottom: 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
}

.fact-value {
  display: block;
  align-self: center;
  margin: 24px 0;
  font-family: "Unbounded", sans-serif;
  font-size: clamp(34px, 3vw, 54px);
  font-weight: 740;
  line-height: 1;
}

.fact:nth-child(2) .fact-value {
  font-size: clamp(32px, 2.65vw, 48px);
}

.fact-label {
  display: block;
  align-self: end;
  max-width: 190px;
  color: rgba(244, 240, 230, 0.78);
  font-size: 11px;
  line-height: 1.45;
}

.contact {
  padding: clamp(72px, 7vw, 112px) 0 0;
  background: var(--orange);
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 28px;
  padding-bottom: clamp(72px, 7vw, 112px);
}

.contact-copy h2 {
  max-width: 980px;
  margin-bottom: 34px;
  font-size: clamp(48px, 6.2vw, 102px);
  font-weight: 720;
  text-transform: uppercase;
}

.contact-copy p {
  max-width: 630px;
  margin-bottom: 52px;
  font-size: clamp(18px, 1.55vw, 24px);
}

.email-link {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(19px, 3vw, 48px);
  font-weight: 620;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.email-link::after {
  content: "↗";
  font-size: 1em;
  transition: transform 180ms var(--ease);
}

.email-link:hover::after {
  transform: translate(6px, -6px);
}

.site-footer {
  color: var(--paper);
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 4fr 3fr 2fr 3fr;
  border-right: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.footer-block {
  min-height: 290px;
  padding: 34px 28px;
  border-right: 1px solid var(--line-light);
}

.footer-block:last-child {
  border-right: 0;
}

.footer-heading {
  display: block;
  margin-bottom: 36px;
  color: rgba(244, 240, 230, 0.56);
  font-size: 10px;
}

.footer-company {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 650;
}

.footer-address,
.footer-registration {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-links a {
  width: fit-content;
  color: var(--paper);
  font-size: 13px;
}

.footer-links a:hover,
.footer-links a:active {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  border-top: 1px solid var(--line-light);
  font-family: "IBM Plex Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.legal-main {
  background: var(--paper);
}

.legal-hero {
  color: var(--paper);
  background: var(--blue);
  border-bottom: 2px solid var(--ink);
}

.legal-hero-inner {
  display: grid;
  grid-template-columns: 3fr 9fr;
  min-height: 460px;
}

.legal-hero-side {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 54px 28px 38px 0;
  border-right: 1px solid rgba(244, 240, 230, 0.42);
}

.legal-kicker {
  font-size: 11px;
}

.legal-count {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(54px, 8vw, 118px);
  font-weight: 730;
  line-height: 0.86;
}

.legal-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  padding: 54px 0 38px clamp(30px, 7vw, 100px);
}

.legal-hero h1 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(46px, 7vw, 106px);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}

.effective-date {
  margin: 42px 0 0;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.legal-layout {
  display: grid;
  grid-template-columns: 3fr 9fr;
}

.legal-toc {
  padding: 76px 28px 76px 0;
  border-right: 1px solid var(--ink);
}

.legal-toc-inner {
  position: sticky;
  top: 32px;
}

.toc-title {
  display: block;
  margin-bottom: 24px;
  font-size: 10px;
}

.toc-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.toc-list a {
  display: block;
  padding: 5px 0;
  color: rgba(11, 11, 13, 0.72);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  line-height: 1.35;
  text-decoration: none;
}

.toc-list a:hover,
.toc-list a:active {
  color: var(--blue);
  text-decoration: underline;
}

.mobile-toc {
  display: none;
}

.legal-content {
  max-width: 980px;
  padding: 76px 0 120px clamp(30px, 7vw, 100px);
}

.legal-section {
  margin-bottom: 78px;
  scroll-margin-top: 30px;
  content-visibility: auto;
  contain-intrinsic-size: auto 560px;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  max-width: 820px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--ink);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 630;
}

.legal-section h3 {
  margin: 38px 0 16px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  font-weight: 760;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.legal-section p,
.legal-section li {
  max-width: 76ch;
}

.legal-section p {
  margin-bottom: 18px;
}

.legal-section ul {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding-left: 1.3em;
}

.company-card {
  max-width: 720px;
  margin: 28px 0;
  padding: 24px;
  color: var(--paper);
  background: var(--ink);
  border-left: 10px solid var(--lime);
}

.company-card p {
  margin: 0;
}

.company-card a {
  color: var(--lime);
}

.legal-crosslinks {
  padding: 62px 0;
  color: var(--paper);
  background: var(--blue);
}

.legal-crosslinks h2 {
  margin-bottom: 34px;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 650;
}

.crosslink-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(244, 240, 230, 0.5);
}

.crosslink-grid a {
  min-height: 130px;
  padding: 24px;
  border-right: 1px solid rgba(244, 240, 230, 0.5);
  border-bottom: 1px solid rgba(244, 240, 230, 0.5);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(16px, 2vw, 25px);
  line-height: 1.25;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.crosslink-grid a:first-child {
  border-left: 1px solid rgba(244, 240, 230, 0.5);
}

.crosslink-grid a:hover,
.crosslink-grid a:active,
.crosslink-grid a[aria-current="page"] {
  color: var(--ink);
  background: var(--lime);
}

.not-found {
  display: grid;
  min-height: calc(100svh - 88px);
  color: var(--paper);
  background: var(--blue);
  place-items: stretch;
}

.not-found-inner {
  display: grid;
  grid-template-columns: 4fr 8fr;
  min-height: 100%;
}

.not-found-code {
  display: flex;
  align-items: flex-end;
  padding: 50px 34px 42px 0;
  border-right: 1px solid rgba(244, 240, 230, 0.48);
  font-family: "Unbounded", sans-serif;
  font-size: clamp(100px, 17vw, 280px);
  font-weight: 760;
  line-height: 0.7;
  letter-spacing: -0.09em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.not-found-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(52px, 8vw, 120px) 0 42px clamp(32px, 7vw, 104px);
}

.not-found-copy h1 {
  max-width: 900px;
  margin-bottom: 32px;
  font-size: clamp(50px, 8.5vw, 132px);
  font-weight: 720;
  text-transform: uppercase;
}

.not-found-copy p {
  max-width: 540px;
  margin-bottom: 42px;
  font-size: clamp(18px, 1.8vw, 25px);
}

.not-found-orbit {
  position: relative;
  width: 160px;
  aspect-ratio: 1;
  margin-left: auto;
  border: 1px solid rgba(244, 240, 230, 0.6);
  border-radius: 50%;
}

.not-found-orbit::before,
.not-found-orbit::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  transform: translate(-50%, -50%);
}

.not-found-orbit::before {
  width: 1px;
  height: 130%;
  background: rgba(244, 240, 230, 0.55);
  transform: translate(-50%, -50%) rotate(45deg);
}

.not-found-orbit::after {
  width: 30px;
  height: 30px;
  background: var(--lime);
  border: 4px solid var(--ink);
}

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 40px, 1440px);
  }

  .desktop-nav .nav-link {
    padding-inline: 12px;
    font-size: 10px;
  }

  .header-cta {
    min-width: 130px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 9fr) minmax(280px, 3fr);
  }

  .hero-bottom {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .capability-item {
    grid-template-columns: 0.8fr 5fr 4fr 0.8fr;
  }
}

@media (max-width: 899px) {
  :root {
    --shell: min(100% - 32px, 760px);
    --section-y: clamp(72px, 14vw, 112px);
  }

  html {
    scroll-padding-top: 74px;
  }

  body {
    font-size: 16px;
  }

  .site-header {
    position: sticky;
    top: 0;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 64px;
  }

  .brand {
    min-height: 64px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero {
    min-height: auto;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-grid {
    display: block;
    min-height: 0;
  }

  .hero-copy {
    min-height: calc(100svh - 64px);
    padding: 44px 0 24px;
  }

  .hero-title {
    font-size: clamp(48px, 13.8vw, 92px);
  }

  .hero-bottom {
    padding-top: 58px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-actions .button {
    min-width: 0;
  }

  .hero-stage {
    min-height: min(88vw, 620px);
    border-top: 1px solid var(--ink);
    border-left: 0;
  }

  .manifesto-grid,
  .section-head,
  .contact-grid,
  .legal-hero-inner,
  .legal-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .manifesto-index {
    padding: 54px 0 0;
    border-right: 0;
  }

  .manifesto-index .section-label {
    position: static;
  }

  .manifesto-copy {
    padding: 28px 0 var(--section-y);
  }

  .manifesto-detail {
    grid-template-columns: 1fr;
  }

  .section-head .section-label {
    padding-right: 0;
  }

  .capability-item {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    min-height: 0;
    padding: 30px 0;
  }

  .capability-item p {
    grid-column: 2;
  }

  .process-inner {
    grid-template-columns: minmax(0, 1fr);
  }

  .process-intro,
  .process-steps,
  .contact-copy {
    min-width: 0;
  }

  .process-intro {
    min-height: 550px;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .facts-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fact:nth-child(2) {
    border-right: 0;
  }

  .fact:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(244, 240, 230, 0.52);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-block:nth-child(2) {
    border-right: 0;
  }

  .footer-block:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .legal-hero-side {
    flex-direction: row;
    align-items: center;
    padding: 36px 0 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 240, 230, 0.42);
  }

  .legal-count {
    font-size: 42px;
  }

  .legal-hero-copy {
    padding: 48px 0 42px;
  }

  .legal-toc {
    display: none;
  }

  .mobile-toc {
    display: block;
    margin-bottom: 56px;
    border-top: 2px solid var(--ink);
    border-bottom: 2px solid var(--ink);
  }

  .mobile-toc summary {
    min-height: 54px;
    padding: 14px 0;
    font-family: "IBM Plex Mono", monospace;
    font-size: 11px;
    letter-spacing: 0.07em;
    cursor: pointer;
    text-transform: uppercase;
  }

  .mobile-toc .toc-list {
    padding-bottom: 20px;
  }

  .legal-content {
    max-width: none;
    padding: 68px 0 100px;
  }

  .crosslink-grid {
    grid-template-columns: 1fr;
  }

  .crosslink-grid a,
  .crosslink-grid a:first-child {
    min-height: 100px;
    border-left: 1px solid rgba(244, 240, 230, 0.5);
  }

  .not-found {
    min-height: calc(100svh - 64px);
  }

  .not-found-inner {
    grid-template-columns: 1fr;
  }

  .not-found-code {
    min-height: 170px;
    padding: 28px 0 20px;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 240, 230, 0.48);
    font-size: clamp(90px, 29vw, 180px);
    line-height: 0.8;
    writing-mode: initial;
    transform: none;
  }

  .not-found-copy {
    padding: 56px 0 36px;
  }
}

@media (max-width: 599px) {
  :root {
    --shell: min(100% - 24px, 520px);
  }

  .brand-word {
    font-size: 12px;
  }

  .hero-copy {
    min-height: calc(100svh - 64px);
    padding-top: 30px;
  }

  .eyebrow,
  .section-label {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .hero-title {
    font-size: clamp(42px, 13.4vw, 62px);
  }

  .hero-bottom {
    gap: 28px;
    padding-top: 42px;
  }

  .hero-body {
    font-size: 17px;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-stage {
    min-height: 102vw;
  }

  .stage-coordinate {
    right: 10px;
  }

  .statement {
    font-size: clamp(32px, 9.8vw, 48px);
  }

  .detail-stamp {
    grid-template-columns: 1fr;
  }

  .section-title,
  .facts-title {
    font-size: clamp(38px, 11.2vw, 58px);
  }

  .contact-copy h2 {
    font-size: clamp(28px, 8.6vw, 52px);
  }

  .capability-item {
    grid-template-columns: 42px 1fr;
  }

  .capability-item p {
    grid-column: 1 / -1;
  }

  .process-intro {
    min-height: 500px;
  }

  .process-intro h2 {
    font-size: clamp(32px, 9.4vw, 48px);
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:nth-child(2n),
  .process-step:nth-last-child(-n + 2) {
    min-height: 280px;
    padding: 28px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-number {
    margin-bottom: 62px;
  }

  .process-step::after {
    top: 28px;
    right: 20px;
  }

  .facts-grid {
    grid-template-columns: 1fr;
  }

  .fact,
  .fact:nth-child(2),
  .fact:nth-child(-n + 2) {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid rgba(244, 240, 230, 0.52);
  }

  .fact:last-child {
    border-bottom: 0;
  }

  .fact-index {
    margin-bottom: 46px;
  }

  .contact-grid {
    gap: 10px;
  }

  .email-link {
    font-size: clamp(16px, 5.7vw, 28px);
    overflow-wrap: anywhere;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-block,
  .footer-block:nth-child(2),
  .footer-block:nth-child(-n + 2) {
    min-height: 0;
    padding: 30px 20px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .footer-bottom {
    display: grid;
    gap: 10px;
    padding: 18px 0;
  }

  .legal-hero h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .legal-section {
    margin-bottom: 62px;
  }

  .legal-section h2 {
    font-size: clamp(26px, 8vw, 38px);
  }

  .company-card {
    padding: 20px;
    font-size: 14px;
  }

  .not-found-orbit {
    width: 110px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-menu,
  .site-footer,
  .legal-toc,
  .mobile-toc,
  .legal-crosslinks {
    display: none !important;
  }

  body,
  .legal-main {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .legal-hero {
    color: #000;
    background: #fff;
    border-bottom: 2px solid #000;
  }

  .legal-hero-inner,
  .legal-layout {
    display: block;
  }

  .legal-hero-side {
    display: none;
  }

  .legal-hero-copy,
  .legal-content {
    padding: 24px 0;
  }

  .legal-section {
    break-inside: avoid;
  }

  a {
    text-decoration: none;
  }
}
