@font-face {
  font-family: "Bricolage Grotesque";
  src: url("bricolage-grotesque-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("ibm-plex-mono-400-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Mono";
  src: url("ibm-plex-mono-500-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

:root {
  --ink: #0B0D0C;
  --paper: #F2F0E8;
  --signal: #DFFF43;
  --cobalt: #315BFF;
  --fog: #9A9D96;
  --page-pad: clamp(1.25rem, 4vw, 4rem);
  --max-width: 88rem;
  --scroll-progress: 0;
  color-scheme: dark;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  min-width: 20rem;
  overflow-x: clip;
  background: var(--ink);
  color: var(--paper);
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(242, 240, 232, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 240, 232, 0.038) 1px, transparent 1px);
  background-size: 3rem 3rem;
  content: "";
  pointer-events: none;
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 5px;
}

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

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

ol,
ul {
  margin: 0;
  padding: 0;
}

.container {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  padding-inline: var(--page-pad);
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 1000;
  padding: 0.8rem 1rem;
  transform: translateY(-200%);
  background: var(--signal);
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: 3px;
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
  background: var(--signal);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  padding-inline: var(--page-pad);
  border-bottom: 1px solid rgba(242, 240, 232, 0.16);
  background: rgba(11, 13, 12, 0.86);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  min-height: 2.75rem;
  padding-block: 0.55rem;
  text-decoration: none;
}

.wordmark > span:first-child {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.wordmark-role,
.primary-nav,
.eyebrow,
.section-kicker,
.mono-note,
.stage-label,
.case-coordinate,
.ledger-label,
.evidence-frame figcaption,
.stamp-index,
.footer-path {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wordmark-role {
  color: var(--fog);
  font-size: 0.62rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.7rem;
}

.nav-link {
  position: relative;
  text-decoration: none;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: -0.35rem;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--signal);
  content: "";
  transition: transform 220ms ease;
}

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

.nav-contact {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.7rem 1rem;
  background: var(--paper);
  color: var(--ink);
  text-decoration: none;
  transition: background-color 220ms ease, transform 220ms ease;
}

.nav-contact:hover {
  transform: translateY(-2px);
  background: var(--signal);
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 8.5rem;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  top: 18%;
  right: -12rem;
  z-index: -1;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(49, 91, 255, 0.55);
  border-radius: 50%;
  box-shadow: inset 0 0 0 6rem rgba(49, 91, 255, 0.035), inset 0 0 0 12rem rgba(49, 91, 255, 0.025);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: end;
  width: 100%;
  min-height: 34rem;
  padding-bottom: 4rem;
}

.hero-copy {
  grid-column: 1 / 10;
  max-width: 72rem;
}

.eyebrow {
  margin-bottom: 1.5rem;
  color: var(--fog);
  font-size: clamp(0.65rem, 1vw, 0.78rem);
}

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

h1 {
  max-width: 68rem;
  font-size: clamp(4rem, 8.3vw, 7.8rem);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.87;
}

h1 em {
  color: var(--signal);
  font-style: normal;
  font-weight: 200;
}

.hero-lede {
  max-width: 42rem;
  margin-top: 2.3rem;
  color: rgba(242, 240, 232, 0.78);
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-top: 2.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 3.5rem;
  padding: 0.95rem 1.2rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.button:hover {
  transform: translateY(-4px);
}

.button-signal {
  min-width: 17rem;
  background: var(--signal);
  color: var(--ink);
  box-shadow: 8px 8px 0 var(--cobalt);
}

.button-signal:hover {
  box-shadow: 4px 4px 0 var(--cobalt);
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--paper);
  font-size: 0.9rem;
}

.identity-stamp {
  position: absolute;
  right: var(--page-pad);
  bottom: 4rem;
  width: 10.5rem;
}

.portrait-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 1px solid rgba(242, 240, 232, 0.35);
  background: var(--cobalt);
}

.portrait-wrap::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11, 13, 12, 0.28));
  content: "";
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) contrast(1.08);
}

.identity-stamp figcaption {
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  margin-top: 0.8rem;
  color: var(--fog);
  font-size: 0.68rem;
  line-height: 1.45;
}

.stamp-index {
  color: var(--signal);
  font-size: 0.58rem;
}

.hero-coordinates {
  position: absolute;
  top: 50%;
  right: -8.5rem;
  display: flex;
  align-items: center;
  width: 28rem;
  transform: rotate(90deg);
  transform-origin: center;
  color: var(--fog);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.55rem;
  letter-spacing: 0.1em;
}

.hero-coordinates i {
  width: 2.6rem;
  height: 1px;
  margin-inline: 0.6rem;
  background: rgba(242, 240, 232, 0.25);
}

.metric-rail {
  display: grid;
  grid-template-columns: 0.82fr 1fr 1.2fr;
  width: 100%;
  padding-top: 1.4rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(242, 240, 232, 0.28);
}

.hero-metric {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 1rem;
  min-height: 5.2rem;
  padding: 0.7rem 1.6rem 0.5rem 0;
  border-right: 1px solid rgba(242, 240, 232, 0.18);
}

.hero-metric:not(:first-child) {
  padding-left: 1.6rem;
}

.hero-metric:last-child {
  border-right: 0;
}

.hero-metric strong {
  color: var(--paper);
  font-size: clamp(2.15rem, 3.8vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.hero-metric:last-child strong {
  font-size: clamp(1.7rem, 2.8vw, 3rem);
}

.hero-metric span {
  color: var(--fog);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.62rem;
  line-height: 1.45;
  text-transform: uppercase;
}

.system-section,
.scope-section {
  position: relative;
  padding-block: clamp(7rem, 12vw, 11rem);
}

.system-section {
  border-top: 1px solid rgba(242, 240, 232, 0.14);
}

.section-heading,
.proof-heading {
  display: grid;
  grid-template-columns: 2fr 7fr 3fr;
  gap: 2rem;
  align-items: start;
}

.section-kicker,
.mono-note {
  color: var(--fog);
  font-size: 0.67rem;
}

.section-heading h2,
.proof-heading h2,
.scope-heading h2,
.contact-section h2 {
  font-size: clamp(3rem, 6.3vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.section-heading > p:last-child,
.proof-heading > p:last-child,
.scope-heading > p:last-child {
  color: var(--fog);
  font-size: 1rem;
}

.funnel-layout {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 2rem;
  margin-top: clamp(5rem, 9vw, 9rem);
}

.funnel-aside {
  position: sticky;
  top: 9rem;
  align-self: start;
  max-width: 18rem;
  padding-left: 1.5rem;
  border-left: 3px solid var(--cobalt);
}

.funnel-aside > p:nth-child(2) {
  margin-top: 1.2rem;
  color: rgba(242, 240, 232, 0.7);
}

.funnel-key {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 2rem;
}

.funnel-key span {
  width: 0.65rem;
  height: 0.65rem;
  background: var(--signal);
  box-shadow: 0 0 0 5px rgba(223, 255, 67, 0.1);
}

.funnel-key small {
  color: var(--fog);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
}

.funnel-stages {
  position: relative;
  list-style: none;
}

.funnel-stages::before {
  position: absolute;
  top: 1.8rem;
  bottom: 1.8rem;
  left: 1.75rem;
  width: 1px;
  background: linear-gradient(var(--cobalt), var(--signal));
  content: "";
}

.funnel-stage {
  position: relative;
  display: grid;
  grid-template-columns: 3.5rem 1fr;
  gap: 2.1rem;
  min-height: 12rem;
  padding-bottom: 3.5rem;
  list-style: none;
}

.funnel-stage:last-child {
  min-height: 0;
  padding-bottom: 0;
}

.stage-number {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border: 1px solid var(--cobalt);
  background: var(--ink);
  color: var(--signal);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.68rem;
}

.stage-label {
  margin-bottom: 0.7rem;
  color: var(--cobalt);
  font-size: 0.65rem;
}

.funnel-stage h3 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
}

.funnel-stage p:last-child {
  max-width: 35rem;
  color: rgba(242, 240, 232, 0.65);
}

.proof-section {
  position: relative;
  padding-block: clamp(7rem, 12vw, 11rem);
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}

.proof-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 0.55rem;
  background: var(--cobalt);
  content: "";
}

.proof-heading .section-kicker {
  color: var(--cobalt);
}

.proof-heading > p:last-child {
  color: rgba(11, 13, 12, 0.62);
}

.feature-case {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  margin-top: clamp(6rem, 11vw, 10rem);
  padding-top: 2rem;
  border-top: 1px solid rgba(11, 13, 12, 0.28);
}

.feature-case-reverse {
  grid-template-columns: 5fr 7fr;
}

.evidence-frame {
  position: relative;
  margin: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
  box-shadow: 14px 14px 0 var(--cobalt);
}

.evidence-frame img {
  width: 100%;
  height: auto;
}

.evidence-frame figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0.6rem 0.8rem;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.55rem;
}

.evidence-frame-dark {
  border-color: var(--cobalt);
  box-shadow: -14px 14px 0 var(--signal);
}

.case-coordinate {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(11, 13, 12, 0.3);
  color: var(--cobalt);
  font-size: 0.62rem;
}

.case-copy h3 {
  margin-top: 1.5rem;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.case-intro {
  max-width: 30rem;
  margin-top: 1.5rem;
  color: rgba(11, 13, 12, 0.65);
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2.2rem;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.case-metrics-four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-metrics > div {
  padding: 1rem 0.8rem 1rem 0;
  border-right: 1px solid rgba(11, 13, 12, 0.25);
}

.case-metrics > div:not(:first-child) {
  padding-left: 0.8rem;
}

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

.case-metrics-four > div:nth-child(2) {
  border-right: 0;
}

.case-metrics-four > div:nth-child(n + 3) {
  border-top: 1px solid rgba(11, 13, 12, 0.25);
}

.case-metrics dt {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-metrics dd {
  margin-top: 0.45rem;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1;
}

.case-metric-accent {
  background: var(--signal);
}

.ledger-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2rem;
  margin-top: clamp(7rem, 12vw, 12rem);
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--ink);
}

.ledger-heading .mono-note {
  color: var(--cobalt);
}

.ledger-heading > p:last-child {
  max-width: 34rem;
  font-size: 1.25rem;
}

.case-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2px;
  background: var(--ink);
}

.ledger-case {
  padding: 1.5rem;
  background: var(--paper);
}

.ledger-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--fog);
}

.ledger-visual::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(11, 13, 12, 0.3);
  content: "";
  pointer-events: none;
}

.ledger-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.03);
  transition: filter 300ms ease, transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.ledger-case:hover .ledger-visual img {
  transform: scale(1.025);
  filter: grayscale(0) contrast(1);
}

.ledger-visual > span {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  background: var(--signal);
  color: var(--ink);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
}

.ledger-label {
  margin-top: 1.3rem;
  color: var(--cobalt);
  font-size: 0.62rem;
}

.ledger-case h3 {
  margin-top: 0.7rem;
  font-size: clamp(2.7rem, 4vw, 4.2rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.ledger-case h3 small {
  display: block;
  margin-top: 0.55rem;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
}

.ledger-case ul {
  margin-top: 2rem;
  border-top: 1px solid rgba(11, 13, 12, 0.25);
  list-style: none;
}

.ledger-case li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid rgba(11, 13, 12, 0.18);
  font-size: 0.78rem;
}

.ledger-case li span {
  color: rgba(11, 13, 12, 0.58);
}

.ledger-case li strong {
  text-align: right;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 2rem;
}

.scope-heading {
  grid-column: 1 / 6;
  position: sticky;
  top: 9rem;
  align-self: start;
}

.scope-heading h2 {
  margin-top: 1.3rem;
}

.scope-heading > p:last-child {
  max-width: 28rem;
  margin-top: 1.8rem;
}

.scope-list {
  grid-column: 7 / -1;
  list-style: none;
}

.scope-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: center;
  min-height: 5.8rem;
  border-top: 1px solid rgba(242, 240, 232, 0.22);
}

.scope-list li:last-child {
  border-bottom: 1px solid rgba(242, 240, 232, 0.22);
}

.scope-list span {
  color: var(--cobalt);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.65rem;
}

.scope-list strong {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -0.025em;
}

.niche-band {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 3fr 9fr;
  gap: 2rem;
  margin-top: clamp(5rem, 9vw, 8rem);
  padding-top: 1.5rem;
  border-top: 1px solid var(--signal);
}

.niche-band > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.niche-band span {
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(242, 240, 232, 0.28);
  color: rgba(242, 240, 232, 0.8);
  font-size: 0.85rem;
}

.contact-section {
  padding-block: clamp(5rem, 9vw, 8rem);
  background: var(--signal);
  color: var(--ink);
}

.contact-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 4rem;
  align-items: end;
}

.contact-section .section-kicker {
  margin-bottom: 1.2rem;
  color: var(--cobalt);
}

.contact-section h2 {
  max-width: 48rem;
}

.contact-copy p {
  max-width: 29rem;
  font-size: 1.15rem;
}

.button-ink {
  min-width: 20rem;
  margin-top: 2rem;
  background: var(--ink);
  color: var(--paper);
  box-shadow: 8px 8px 0 var(--cobalt);
}

.button-ink:hover {
  box-shadow: 4px 4px 0 var(--cobalt);
}

.site-footer {
  padding-block: 2rem;
  border-top: 1px solid rgba(242, 240, 232, 0.18);
  color: var(--fog);
  font-size: 0.72rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: center;
}

.footer-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  color: var(--paper);
}

.footer-path {
  justify-self: end;
  font-size: 0.58rem;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 550ms ease-out, transform 550ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .funnel-stage:nth-child(2),
.motion-ready .ledger-case:nth-child(2) {
  transition-delay: 90ms;
}

.motion-ready .funnel-stage:nth-child(3),
.motion-ready .ledger-case:nth-child(3) {
  transition-delay: 180ms;
}

@media (max-width: 75rem) {
  .hero-copy {
    grid-column: 1 / 11;
  }

  .identity-stamp {
    width: 8rem;
  }

  .hero-coordinates {
    display: none;
  }

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

  .ledger-case:last-child {
    grid-column: 1 / -1;
  }

  .ledger-case:last-child .ledger-visual {
    aspect-ratio: 16 / 7;
  }
}

@media (max-width: 60rem) {
  .hero {
    min-height: auto;
    padding-top: 8rem;
  }

  .hero-grid {
    min-height: 38rem;
  }

  .hero-copy {
    grid-column: 1 / 12;
    padding-right: 5rem;
  }

  h1 {
    font-size: clamp(3.8rem, 10vw, 6rem);
  }

  .identity-stamp {
    right: var(--page-pad);
    bottom: 3rem;
    width: 6.5rem;
  }

  .identity-stamp figcaption {
    display: none;
  }

  .metric-rail {
    grid-template-columns: 1fr 1fr;
  }

  .hero-metric:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(242, 240, 232, 0.18);
  }

  .section-heading,
  .proof-heading {
    grid-template-columns: 1fr 3fr;
  }

  .section-heading > p:last-child,
  .proof-heading > p:last-child {
    grid-column: 2;
  }

  .feature-case,
  .feature-case-reverse {
    grid-template-columns: 1fr;
  }

  .feature-case-reverse .case-copy {
    order: 2;
  }

  .feature-case-reverse .evidence-frame {
    order: 1;
  }

  .scope-heading {
    grid-column: 1 / 7;
  }

  .scope-list {
    grid-column: 7 / -1;
  }

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

@media (max-width: 44rem) {
  :root {
    --page-pad: 1.25rem;
  }

  html {
    scroll-padding-top: 4.5rem;
  }

  .site-header {
    min-height: 4.5rem;
  }

  .wordmark-role,
  .nav-link {
    display: none;
  }

  .primary-nav {
    gap: 0;
  }

  .nav-contact {
    padding: 0.58rem 0.72rem;
    font-size: 0.62rem;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero-grid {
    display: block;
    min-height: 0;
    padding-bottom: 4rem;
  }

  .hero-copy {
    padding-right: 0;
  }

  h1 {
    font-size: clamp(3.25rem, 15vw, 4.2rem);
    line-height: 0.9;
  }

  .hero-lede {
    margin-top: 1.8rem;
    font-size: 1rem;
  }

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

  .button-signal,
  .button-ink {
    width: calc(100% - 0.5rem);
    min-width: 0;
  }

  .text-link {
    align-self: flex-start;
  }

  .identity-stamp {
    position: relative;
    right: auto;
    bottom: auto;
    width: 5.8rem;
    margin-top: 3rem;
    margin-left: auto;
  }

  .hero::after {
    top: 18rem;
    right: -16rem;
    width: 30rem;
    height: 30rem;
  }

  .metric-rail {
    grid-template-columns: 1fr;
    padding-bottom: 0;
  }

  .hero-metric,
  .hero-metric:not(:first-child) {
    grid-column: auto;
    min-height: 5.5rem;
    padding: 1rem 0;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(242, 240, 232, 0.18);
  }

  .hero-metric strong,
  .hero-metric:last-child strong {
    font-size: 2.5rem;
  }

  .system-section,
  .scope-section,
  .proof-section {
    padding-block: 6rem;
  }

  .section-heading,
  .proof-heading {
    display: block;
  }

  .section-heading h2,
  .proof-heading h2,
  .scope-heading h2,
  .contact-section h2 {
    margin-top: 1.3rem;
    font-size: clamp(2.8rem, 13vw, 3.8rem);
  }

  .section-heading > p:last-child,
  .proof-heading > p:last-child {
    margin-top: 1.5rem;
  }

  .funnel-layout {
    display: block;
    margin-top: 4.5rem;
  }

  .funnel-aside {
    position: static;
    max-width: none;
    margin-bottom: 4rem;
  }

  .funnel-stages::before {
    left: 1.35rem;
  }

  .funnel-stage {
    grid-template-columns: 2.7rem 1fr;
    gap: 1.2rem;
    min-height: 13rem;
  }

  .stage-number {
    width: 2.7rem;
    height: 2.7rem;
  }

  .feature-case,
  .feature-case-reverse {
    gap: 2.5rem;
    margin-top: 5rem;
  }

  .evidence-frame,
  .evidence-frame-dark {
    box-shadow: 7px 7px 0 var(--cobalt);
  }

  .evidence-frame-dark {
    box-shadow: -7px 7px 0 var(--signal);
  }

  .case-copy h3 {
    font-size: 3rem;
  }

  .case-coordinate {
    flex-direction: column;
    gap: 0.3rem;
  }

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

  .case-metrics > div,
  .case-metrics > div:not(:first-child) {
    padding: 1rem 0;
    border-top: 1px solid rgba(11, 13, 12, 0.2);
    border-right: 0;
  }

  .case-metrics > div:first-child {
    border-top: 0;
  }

  .case-metric-accent {
    padding-inline: 0.8rem !important;
  }

  .ledger-heading {
    display: block;
    margin-top: 6rem;
  }

  .ledger-heading > p:last-child {
    margin-top: 1rem;
    font-size: 1.05rem;
  }

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

  .ledger-case,
  .ledger-case:last-child {
    grid-column: auto;
    padding: 1.2rem 0;
  }

  .ledger-case:last-child .ledger-visual,
  .ledger-visual {
    aspect-ratio: 4 / 3;
  }

  .scope-grid {
    display: block;
  }

  .scope-heading {
    position: static;
  }

  .scope-list {
    margin-top: 4rem;
  }

  .scope-list li {
    min-height: 5rem;
  }

  .niche-band {
    display: block;
    margin-top: 5rem;
  }

  .niche-band > div {
    margin-top: 1.3rem;
  }

  .contact-section {
    padding-block: 5rem;
  }

  .contact-grid {
    display: block;
  }

  .contact-copy {
    margin-top: 2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .footer-path {
    justify-self: start;
  }
}

@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;
  }

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .scroll-progress {
    display: none;
  }
}
