:root {
  --paper: #f3f2f2;
  --surface: #e9e8e8;
  --surface-light: #faf8f7;
  --ink: #201e1d;
  --night: #2d2b2b;
  --night-deep: #171615;
  --red: #ec3013;
  --red-dark: #ae1800;
  --red-light: #ff9783;
  --line: rgba(32, 30, 29, 0.38);
  --line-light: rgba(243, 242, 242, 0.25);
  --muted: #686463;
  --font-display: "Archivo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Consolas, monospace;
  --shell: 1360px;
  --gutter: clamp(20px, 4vw, 64px);
  --section-space: clamp(72px, 8vw, 124px);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 76px;
  background: var(--paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(32, 30, 29, 0.025) 1px, transparent 1px) 0 0 / 80px 80px,
    var(--paper);
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.shell {
  width: min(100%, var(--shell));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 10px 14px;
  color: #fff;
  background: var(--red-dark);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  width: 100%;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 242, 242, 0.94);
  border-bottom: 2px solid var(--line);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(243, 242, 242, 0.98);
  box-shadow: 0 8px 30px rgba(32, 30, 29, 0.09);
}

.nav-shell {
  display: flex;
  align-items: center;
  width: min(100%, var(--shell));
  min-height: 72px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: none;
  color: var(--ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-logo {
  display: block;
  width: 30px;
  height: 30px;
  flex: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  margin-left: auto;
}

.site-nav > a {
  position: relative;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 180ms ease;
}

.site-nav > a:hover::after,
.site-nav > a[aria-current="true"]::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 42px;
  padding: 10px 14px;
  color: #fff;
  background: var(--red);
  transition: background 160ms ease;
}

.nav-cta:hover {
  background: var(--red-dark);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  margin-left: auto;
  padding: 0 10px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  margin: 6px 0;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-4px) rotate(-45deg);
}

.dark-section {
  color: var(--paper);
  background:
    linear-gradient(rgba(243, 242, 242, 0.035) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(90deg, rgba(243, 242, 242, 0.035) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--night);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--night);
}

.hero::before {
  position: absolute;
  top: -180px;
  left: 48%;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(236, 48, 19, 0.16);
  content: "";
  transform: rotate(45deg);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 11fr) minmax(380px, 9fr);
  gap: clamp(44px, 6vw, 92px);
  align-items: center;
  padding-top: clamp(64px, 8vw, 120px);
  padding-bottom: clamp(52px, 7vw, 96px);
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.eyebrow,
.section-label,
.product-meta,
.source-note,
.benchmark-note {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 28px;
}

.eyebrow.light,
.section-label.light {
  color: var(--red-light);
}

.status-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--red);
  box-shadow: 0 0 0 0 rgba(236, 48, 19, 0.55);
  animation: status-pulse 2.2s infinite;
}

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(236, 48, 19, 0.55); }
  50% { box-shadow: 0 0 0 9px rgba(236, 48, 19, 0); }
}

.hero h1 {
  max-width: 13ch;
  margin-bottom: 30px;
  font-size: clamp(48px, 5.2vw, 78px);
  line-height: 0.99;
  letter-spacing: -0.052em;
}

.hero h1 em {
  color: var(--red-light);
  font-style: normal;
}

.hero-lede {
  max-width: 59ch;
  margin-bottom: 34px;
  color: rgba(243, 242, 242, 0.76);
  font-size: clamp(16px, 1.4vw, 18px);
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 48px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button-primary {
  color: #fff;
  background: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
}

.button-outline-light {
  color: var(--paper);
  border-color: rgba(243, 242, 242, 0.72);
  background: transparent;
}

.button-outline-light:hover {
  color: var(--night);
  background: var(--paper);
  border-color: var(--paper);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 600px;
  margin: 50px 0 0;
  padding-top: 23px;
  border-top: 1px solid var(--line-light);
}

.hero-stats div {
  min-width: 0;
}

.hero-stats dt {
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 600;
  line-height: 1.2;
}

.hero-stats dd {
  margin: 7px 0 0;
  color: rgba(243, 242, 242, 0.5);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero-stats sup {
  color: var(--red-light);
}

.telemetry-figure {
  position: relative;
  z-index: 1;
  margin: 0;
}

.telemetry-frame {
  position: relative;
  overflow: hidden;
  border: 2px solid rgba(243, 242, 242, 0.3);
  background: var(--night-deep);
  box-shadow: 20px 20px 0 rgba(236, 48, 19, 0.08);
}

.telemetry-frame::before,
.telemetry-frame::after {
  position: absolute;
  z-index: 2;
  width: 28px;
  height: 28px;
  border-color: var(--red);
  pointer-events: none;
  content: "";
}

.telemetry-frame::before {
  top: 9px;
  left: 9px;
  border-top: 2px solid;
  border-left: 2px solid;
}

.telemetry-frame::after {
  right: 9px;
  bottom: 9px;
  border-right: 2px solid;
  border-bottom: 2px solid;
}

#telemetry-canvas {
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 7;
}

.telemetry-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-content: center;
  padding: 30px;
  font-family: var(--font-mono);
  text-align: center;
}

.telemetry-fallback span {
  color: rgba(243, 242, 242, 0.55);
  font-size: 11px;
}

.telemetry-fallback strong {
  margin-top: 18px;
  color: var(--red-light);
  font-size: 16px;
}

.telemetry-figure figcaption {
  margin-top: 13px;
  color: rgba(243, 242, 242, 0.5);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.benchmark-note {
  position: relative;
  margin-top: -28px;
  margin-bottom: 0;
  padding-bottom: 20px;
  color: rgba(243, 242, 242, 0.4);
  letter-spacing: 0.02em;
  text-transform: none;
}

.capability-strip {
  overflow: hidden;
  color: var(--ink);
  background: var(--red);
  border-bottom: 2px solid var(--ink);
}

.capability-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  min-width: 100%;
  padding: 12px 0;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  animation: ticker 28s linear infinite;
}

.capability-track span {
  white-space: nowrap;
}

.capability-track i {
  width: 7px;
  height: 7px;
  background: var(--ink);
  transform: rotate(45deg);
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.ruled-section {
  border-bottom: 2px solid var(--line);
}

.problem-grid {
  display: grid;
  grid-template-columns: minmax(240px, 5fr) minmax(0, 7fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: start;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.section-label {
  margin-bottom: 17px;
  color: var(--red-dark);
}

.mega-stat {
  margin: 0;
  color: var(--red);
  font-size: clamp(104px, 13vw, 190px);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.mega-stat span {
  font-size: 0.42em;
  vertical-align: top;
  letter-spacing: -0.04em;
}

.problem-copy {
  padding-top: 26px;
}

.problem-copy h2 {
  max-width: 20ch;
  margin-bottom: 24px;
  font-size: clamp(32px, 3.4vw, 50px);
  line-height: 1.05;
}

.problem-copy > p:not(.source-note) {
  max-width: 61ch;
  margin-bottom: 23px;
  color: var(--muted);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.75;
}

.source-note {
  color: var(--muted);
  letter-spacing: 0.02em;
  text-transform: none;
}

.section-heading {
  max-width: 790px;
  margin-bottom: 54px;
}

.section-heading h2,
.work-intro h2,
.industries h2,
.about h2,
.contact h2 {
  margin-bottom: 22px;
  font-size: clamp(36px, 4.2vw, 58px);
  line-height: 1.04;
}

.section-heading > p:not(.section-label),
.work-intro > p:not(.section-label),
.industries-grid > div > p,
.about-grid > div > p,
.contact-copy > p:not(.section-label) {
  max-width: 61ch;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}

.guarantee .shell,
.services .shell,
.work .shell,
.products .shell {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 0 28px;
  padding: 0;
  border-top: 2px solid var(--line);
  border-left: 2px solid var(--line);
  list-style: none;
}

.step-grid li {
  position: relative;
  min-height: 300px;
  padding: clamp(24px, 2.5vw, 36px);
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
  transition: color 180ms ease, background 180ms ease;
}

.step-grid li::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 8px;
  height: 8px;
  background: var(--red);
  content: "";
}

.step-grid li:hover {
  color: var(--paper);
  background: var(--night);
}

.step-grid li:hover p {
  color: rgba(243, 242, 242, 0.68);
}

.step-number,
.service-index,
.timeline > li > span,
.difference-list > li > span {
  color: var(--red-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.step-grid h3 {
  margin: 62px 0 15px;
  font-size: 23px;
  line-height: 1.15;
}

.step-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  transition: color 180ms ease;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--red-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: end;
  max-width: none;
}

.split-heading > p {
  margin-bottom: 4px;
}

.service-list {
  border-top: 2px solid var(--line);
}

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(55px, 100px) minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: start;
  padding: 38px 20px 38px 0;
  border-bottom: 2px solid var(--line);
  transition: background 180ms ease, padding 180ms ease;
}

.service-row::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  background: var(--red);
  content: "";
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition: transform 180ms ease;
}

.service-row:hover {
  padding-left: 22px;
  background: rgba(236, 48, 19, 0.045);
}

.service-row:hover::before {
  transform: scaleY(1);
}

.service-row.featured-service {
  background: rgba(236, 48, 19, 0.055);
}

.service-row h3 {
  margin: -4px 0 0;
  font-size: clamp(21px, 2vw, 29px);
  line-height: 1.13;
}

.service-body > p:first-child {
  max-width: 61ch;
  margin-bottom: 14px;
  color: var(--muted);
  line-height: 1.72;
}

.outcome {
  margin: 0;
  color: var(--red-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  line-height: 1.7;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}

.service-cta {
  max-width: 67ch;
  margin: 30px 0 0;
  font-size: 16px;
}

.service-cta a {
  color: var(--red-dark);
  font-weight: 700;
}

.products {
  border-bottom: 2px solid var(--night);
}

.section-heading.light h2,
.section-heading.light > p:not(.section-label) {
  color: var(--paper);
}

.section-heading.light > p:not(.section-label) {
  color: rgba(243, 242, 242, 0.7);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 2px solid var(--line-light);
  border-left: 2px solid var(--line-light);
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto auto 180px auto auto auto;
  gap: 14px;
  min-height: 610px;
  padding: clamp(27px, 3vw, 44px);
  overflow: hidden;
  border-right: 2px solid var(--line-light);
  border-bottom: 2px solid var(--line-light);
  color: var(--paper);
  text-decoration: none;
  transition: background 180ms ease;
}

.product-card::before {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(236, 48, 19, 0.26);
  content: "";
  transform: rotate(45deg) scale(0.7);
  transition: transform 300ms ease, background 300ms ease;
}

.product-card:hover {
  background: #252322;
}

.product-card:hover::before {
  background: rgba(236, 48, 19, 0.08);
  transform: rotate(45deg) scale(1.08);
}

.product-meta {
  color: var(--red-light);
}

.product-card h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1;
}

.product-one-liner {
  max-width: 31ch;
  margin: 0;
  color: rgba(243, 242, 242, 0.9);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.product-card > p:not(.product-one-liner) {
  max-width: 58ch;
  margin: 0;
  color: rgba(243, 242, 242, 0.64);
  font-size: 14px;
  line-height: 1.72;
}

.product-visual {
  position: relative;
  height: 150px;
  margin: 8px 0;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background:
    linear-gradient(rgba(243, 242, 242, 0.08) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(90deg, rgba(243, 242, 242, 0.08) 1px, transparent 1px) 0 0 / 24px 24px,
    var(--night-deep);
}

.industrial-visual::before,
.industrial-visual::after,
.industrial-visual span,
.industrial-visual i,
.industrial-visual b {
  position: absolute;
  width: 9px;
  height: 9px;
  background: var(--paper);
  content: "";
  transform: rotate(45deg);
}

.industrial-visual::before { top: 28%; left: 19%; }
.industrial-visual::after { top: 64%; left: 68%; }
.industrial-visual span { top: 52%; left: 39%; background: var(--red); box-shadow: 0 0 0 10px rgba(236, 48, 19, 0.12); }
.industrial-visual i { top: 20%; left: 72%; }
.industrial-visual b { top: 70%; left: 24%; }

.industrial-visual {
  background:
    linear-gradient(27deg, transparent 46%, rgba(243, 242, 242, 0.18) 47%, rgba(243, 242, 242, 0.18) 48%, transparent 49%),
    linear-gradient(153deg, transparent 46%, rgba(243, 242, 242, 0.18) 47%, rgba(243, 242, 242, 0.18) 48%, transparent 49%),
    var(--night-deep);
  background-size: 72px 46px;
}

.org-visual span,
.org-visual i,
.org-visual b,
.org-visual em {
  position: absolute;
  width: 82px;
  height: 42px;
  border: 1px solid rgba(243, 242, 242, 0.48);
  background: var(--night-deep);
  content: "";
}

.org-visual span { top: 18px; left: calc(50% - 41px); border-color: var(--red); }
.org-visual i { bottom: 18px; left: 9%; }
.org-visual b { bottom: 18px; left: calc(50% - 41px); }
.org-visual em { right: 9%; bottom: 18px; }

.org-visual::before {
  position: absolute;
  top: 59px;
  left: 15%;
  width: 70%;
  height: 47px;
  border-top: 1px solid rgba(243, 242, 242, 0.35);
  border-right: 1px solid rgba(243, 242, 242, 0.35);
  border-left: 1px solid rgba(243, 242, 242, 0.35);
  content: "";
}

.wellness-visual::before,
.wellness-visual::after,
.wellness-visual span,
.wellness-visual i,
.wellness-visual b {
  position: absolute;
  border: 1px solid rgba(243, 242, 242, 0.4);
  border-radius: 50%;
  content: "";
}

.wellness-visual::before { inset: 18px auto auto calc(50% - 58px); width: 116px; height: 116px; border-color: var(--red); }
.wellness-visual::after { inset: 41px auto auto calc(50% - 35px); width: 70px; height: 70px; }
.wellness-visual span { inset: 62px auto auto calc(50% - 14px); width: 28px; height: 28px; background: var(--red); border: 0; }
.wellness-visual i { top: 27px; left: 18%; width: 9px; height: 9px; background: var(--paper); }
.wellness-visual b { right: 18%; bottom: 27px; width: 9px; height: 9px; background: var(--paper); }

.trybelle-visual span {
  position: absolute;
  top: 18px;
  left: 20%;
  width: 86px;
  height: 114px;
  border: 1px solid rgba(243, 242, 242, 0.5);
  background: linear-gradient(135deg, transparent 49%, rgba(236, 48, 19, 0.8) 50%, transparent 52%);
}

.trybelle-visual i,
.trybelle-visual b {
  position: absolute;
  right: 18%;
  width: 92px;
  height: 24px;
  border: 1px solid rgba(243, 242, 242, 0.4);
  content: "";
}

.trybelle-visual i { top: 43px; background: var(--red); border-color: var(--red); }
.trybelle-visual b { bottom: 43px; }

.product-proof {
  color: rgba(243, 242, 242, 0.42);
  font-family: var(--font-mono);
  font-size: 10px;
  line-height: 1.6;
  text-transform: uppercase;
  letter-spacing: 0.035em;
}

.product-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 17px;
  border-top: 1px solid var(--line-light);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
}

.product-link b {
  color: var(--red-light);
  font-size: 18px;
  transition: transform 180ms ease;
}

.product-card:hover .product-link b {
  transform: translate(4px, -4px);
}

.products-close {
  margin: 38px 0 0;
  color: var(--paper);
  font-size: 19px;
  font-weight: 700;
}

.work-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.65fr);
  column-gap: clamp(40px, 8vw, 128px);
  align-items: end;
  margin-bottom: 62px;
}

.work-intro .section-label,
.work-intro h2 {
  grid-column: 1;
}

.work-intro > p:not(.section-label) {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  margin-bottom: 8px;
}

.timeline {
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--line);
  list-style: none;
}

.timeline > li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(65px, 130px) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 70px);
  padding: 30px 0;
  border-bottom: 2px solid var(--line);
}

.timeline > li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100px;
  width: 1px;
  background: rgba(32, 30, 29, 0.17);
  content: "";
}

.timeline h3 {
  margin: 0 0 8px;
  font-size: 23px;
}

.timeline h3 small {
  margin-left: 8px;
  color: var(--red-dark);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.timeline p {
  max-width: 69ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.honest-scope {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1fr);
  gap: clamp(44px, 8vw, 128px);
  margin-top: 86px;
  padding: clamp(32px, 4vw, 58px);
  color: var(--paper);
  background: var(--night);
}

.honest-scope h3 {
  max-width: 17ch;
  margin-bottom: 20px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.honest-scope > div > p:not(.section-label) {
  color: rgba(243, 242, 242, 0.66);
  line-height: 1.72;
}

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

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

.faq-list summary {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary span {
  color: var(--red-light);
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: -4px 42px 20px 0;
  color: rgba(243, 242, 242, 0.65);
  font-size: 14px;
  line-height: 1.7;
}

.industries-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(44px, 8vw, 128px);
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 35px 0 0;
  padding: 0;
  list-style: none;
}

.industry-tags li {
  padding: 8px 11px;
  border: 1px solid var(--red);
  color: var(--red-dark);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 160ms ease, background 160ms ease;
}

.industry-tags li:hover {
  color: #fff;
  background: var(--red);
}

.difference-list {
  margin: 0;
  padding: 0;
  border-top: 2px solid var(--line);
  list-style: none;
}

.difference-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 2px solid var(--line);
}

.difference-list h3 {
  margin: 0 0 3px;
  font-size: 18px;
}

.difference-list p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.contact {
  background: var(--surface-light);
}

.contact-promise {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin: 37px 0;
  padding-top: 22px;
  border-top: 2px solid var(--line);
}

.contact-promise span {
  width: 10px;
  height: 10px;
  margin-top: 8px;
  flex: none;
  background: var(--red);
}

.contact-promise p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-promise strong {
  color: var(--ink);
}

.direct-email {
  color: var(--red-dark);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
}

.form-panel {
  padding: clamp(24px, 4vw, 52px);
  border: 2px solid var(--line);
  background: var(--paper);
  box-shadow: 18px 18px 0 var(--surface);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 18px;
}

.field {
  min-width: 0;
}

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

.field label,
.label-row {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field label span:not(.optional) {
  color: var(--red-dark);
}

.field .optional {
  color: #8a8583;
  font-size: 8px;
}

.label-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.label-row label {
  margin: 0;
}

.character-count {
  flex: none;
  color: #8a8583;
  font-size: 9px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 11px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: var(--surface);
  caret-color: var(--red);
  font-size: 14px;
  transition: border-color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}

.field textarea {
  min-height: 145px;
  resize: vertical;
  line-height: 1.55;
}

.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: rgba(32, 30, 29, 0.66);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--red);
  background: #fff;
  box-shadow: inset 4px 0 0 var(--red);
}

.field input:user-invalid,
.field textarea:user-invalid {
  border-color: var(--red-dark);
}

.field textarea::placeholder {
  color: #87817f;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-button {
  width: 100%;
  margin-top: 24px;
  border: 0;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.submit-button.is-loading .button-arrow {
  animation: spin 900ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-family: var(--font-mono);
  font-size: 9px;
  line-height: 1.55;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.form-status {
  display: none;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  border-color: var(--red);
  color: var(--ink);
  background: #ffe0d9;
}

.form-status.is-error {
  border-color: var(--red-dark);
  color: var(--red-dark);
  background: #fff2ef;
}

.poster {
  color: #fff;
  background:
    linear-gradient(135deg, transparent 0 48%, rgba(255, 255, 255, 0.11) 48.15% 48.5%, transparent 48.65%),
    var(--red);
  background-size: 90px 90px;
}

.poster-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
  padding-top: clamp(70px, 8vw, 120px);
  padding-bottom: clamp(70px, 8vw, 120px);
}

.poster-label {
  color: #fff;
}

.poster h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(50px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.poster-grid > div:last-child > p {
  max-width: 27ch;
  margin-bottom: 31px;
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 800;
  line-height: 1.22;
}

.button-outline-white {
  color: #fff;
  border-color: #fff;
}

.button-outline-white:hover {
  color: var(--red-dark);
  background: #fff;
}

.site-footer {
  color: var(--paper);
  background: var(--night-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, minmax(140px, 0.65fr));
  gap: 42px 28px;
  padding-top: 66px;
  padding-bottom: 52px;
}

.brand-light {
  color: var(--paper);
}

.brand-light .brand-logo {
  padding: 2px;
  background: var(--paper);
}

.footer-brand > p {
  max-width: 34ch;
  margin: 18px 0 0;
  color: rgba(243, 242, 242, 0.54);
  font-size: 13px;
  line-height: 1.7;
}

.footer-grid nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.footer-grid nav p {
  margin-bottom: 8px;
  color: rgba(243, 242, 242, 0.4);
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid nav a {
  color: rgba(243, 242, 242, 0.74);
  font-size: 13px;
  text-decoration: none;
}

.footer-grid nav a:hover {
  color: var(--red-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 26px;
  padding-bottom: 28px;
  border-top: 1px solid var(--line-light);
  color: rgba(243, 242, 242, 0.42);
  font-family: var(--font-mono);
  font-size: 10px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: inherit;
  text-decoration: none;
}

.legal-header {
  border-bottom: 2px solid var(--line);
}

.legal-main {
  min-height: 65vh;
}

.legal-hero {
  padding-top: clamp(70px, 9vw, 130px);
  padding-bottom: clamp(48px, 7vw, 90px);
  color: var(--paper);
  background: var(--night);
}

.legal-hero h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 0.98;
}

.legal-hero p:last-child {
  margin: 22px 0 0;
  color: rgba(243, 242, 242, 0.62);
  font-family: var(--font-mono);
  font-size: 11px;
}

.legal-content {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) minmax(0, 1fr);
  gap: clamp(36px, 8vw, 120px);
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
}

.legal-aside {
  color: var(--red-dark);
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
}

.legal-copy {
  max-width: 760px;
}

.legal-copy section {
  padding: 32px 0;
  border-top: 2px solid var(--line);
}

.legal-copy section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-copy h2 {
  margin-bottom: 15px;
  font-size: 25px;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-copy a {
  color: var(--red-dark);
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms cubic-bezier(0.2, 0.75, 0.25, 1), transform 600ms cubic-bezier(0.2, 0.75, 0.25, 1);
}

.js [data-reveal-delay="1"] { transition-delay: 90ms; }
.js [data-reveal-delay="2"] { transition-delay: 180ms; }
.js [data-reveal-delay="3"] { transition-delay: 270ms; }

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

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
  }

  .hero h1 {
    font-size: clamp(44px, 5.4vw, 62px);
  }

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

  .step-grid li {
    min-height: 250px;
  }

  .service-row {
    grid-template-columns: 70px minmax(230px, 0.78fr) minmax(0, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.4fr repeat(3, minmax(120px, 0.6fr));
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 64px;
  }

  .nav-shell {
    min-height: 64px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 64px;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-auto-rows: min-content;
    align-content: start;
    gap: 0;
    padding: 18px var(--gutter) 42px;
    overflow-y: auto;
    background: var(--paper);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 220ms ease, visibility 220ms;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .site-nav > a {
    padding: 18px 0;
    border-bottom: 2px solid var(--line);
    font-size: 20px;
  }

  .site-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 24px;
    padding: 16px;
    color: #fff;
    border: 0;
    font-size: 15px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

  .hero h1 {
    max-width: 15ch;
    font-size: clamp(48px, 9vw, 72px);
  }

  .telemetry-figure {
    width: min(100%, 680px);
  }

  .benchmark-note {
    margin-top: 0;
  }

  .problem-grid,
  .industries-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .mega-stat {
    font-size: clamp(118px, 23vw, 180px);
  }

  .problem-copy {
    padding-top: 0;
  }

  .split-heading,
  .work-intro {
    grid-template-columns: 1fr;
  }

  .work-intro .section-label,
  .work-intro h2,
  .work-intro > p:not(.section-label) {
    grid-column: 1;
    grid-row: auto;
  }

  .service-row {
    grid-template-columns: 55px minmax(0, 1fr);
    gap: 14px 24px;
  }

  .service-body {
    grid-column: 2;
  }

  .honest-scope {
    grid-template-columns: 1fr;
  }

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

  .poster h2 {
    max-width: 14ch;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  :root {
    --gutter: 20px;
    --section-space: 70px;
  }

  body {
    background-size: 48px 48px;
  }

  .brand {
    font-size: 15px;
  }

  .hero-grid {
    padding-top: 56px;
  }

  .hero::before {
    left: 64%;
    width: 420px;
    height: 420px;
  }

  .hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .hero-lede {
    font-size: 16px;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats div:last-child {
    grid-column: 1 / -1;
  }

  .telemetry-frame {
    box-shadow: 10px 10px 0 rgba(236, 48, 19, 0.1);
  }

  .capability-track {
    animation-duration: 22s;
  }

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

  .step-grid li {
    min-height: 230px;
  }

  .service-row {
    grid-template-columns: 1fr;
    padding: 28px 0;
  }

  .service-row h3,
  .service-body {
    grid-column: 1;
  }

  .service-row:hover {
    padding-left: 14px;
  }

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

  .product-card {
    min-height: 560px;
  }

  .timeline > li {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .timeline > li::before {
    left: 38px;
  }

  .timeline h3 small {
    display: block;
    margin: 7px 0 0;
  }

  .honest-scope {
    margin-top: 62px;
    padding: 28px 20px;
  }

  .form-panel {
    padding: 26px 18px;
    box-shadow: 9px 9px 0 var(--surface);
  }

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

  .field-wide {
    grid-column: auto;
  }

  .label-row {
    display: block;
  }

  .character-count {
    display: block;
    margin-top: 3px;
  }

  .poster h2 {
    font-size: clamp(47px, 14vw, 68px);
  }

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

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .legal-content {
    grid-template-columns: 1fr;
  }
}

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

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

  .capability-track {
    animation: none;
  }

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