:root {
  --bg: #050505;
  --panel: #0a0a0a;
  --fg: #f5f5f2;
  --muted: #8b8b86;
  --line: #232323;
  --line2: #353535;
  --max: 1440px;
  --pad: clamp(20px, 4.4vw, 72px);
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
::selection {
  background: #f5f5f2;
  color: #050505;
}
.skip {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 999;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  border-radius: 3px;
}
.skip:focus {
  top: 12px;
}
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 76px;
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 5, 5, 0.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  width: max-content;
  font-weight: 740;
  letter-spacing: -0.07em;
  line-height: 1;
}
.wordmark-main {
  font-size: 23px;
}
.wordmark-main > span {
  display: inline-block;
  margin-left: 1px;
  font-weight: 400;
  background: linear-gradient(140deg, #fff 18%, #777 54%, #fff 84%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.wordmark-labs {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #8a8a85;
  font-weight: 650;
}
.nav-cta {
  transition: color 0.25s ease;
}
.nav-cta:hover {
  color: #fff;
}
.nav-cta {
  justify-self: end;
  font:
    600 11px / 1 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}
.nav-cta span {
  padding-left: 6px;
  color: #777;
}
.hero {
  position: relative;
  min-height: 100svh;
  padding: clamp(128px, 14vh, 172px) var(--pad) 38px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  grid-template-rows: 1fr auto;
  gap: 40px;
  max-width: var(--max);
  margin: auto;
}
.hero-grid {
  pointer-events: none;
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to right, #000 0, transparent 49%, #000 100%);
  -webkit-mask-image: linear-gradient(
    to right,
    #000 0,
    transparent 49%,
    #000 100%
  );
}
.hero-copy {
  align-self: center;
  position: relative;
  z-index: 2;
  max-width: 720px;
}
.eyebrow,
.kicker {
  font:
    550 10px / 1.5 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8c8c87;
}
.eyebrow {
  display: flex;
  gap: 9px;
  align-items: center;
}
.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f4f4f0;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.07);
}
.hero h1 {
  margin: 28px 0 28px;
  font-size: clamp(58px, 7.1vw, 118px);
  line-height: 0.82;
  letter-spacing: -0.075em;
  font-weight: 500;
  max-width: 820px;
}
.hero h1 span {
  color: #6e6e69;
  font-weight: 360;
}
.hero-lede {
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.65;
  color: #aaa;
  max-width: 590px;
  margin: 0;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 36px;
}
.button {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid var(--line2);
  font:
    600 10px / 1 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition:
    background 0.25s,
    color 0.25s,
    border 0.25s;
}
.button-light {
  background: #f2f2ef;
  color: #080808;
  border-color: #f2f2ef;
}
.button-light:hover {
  background: #050505;
  color: #fff;
}
.text-link {
  font:
    600 10px / 1 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9a9a95;
}
.text-link span {
  padding-left: 8px;
}
.text-link:hover {
  color: #fff;
}
.hero-visual {
  position: relative;
  z-index: 2;
  align-self: stretch;
  min-height: 560px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: radial-gradient(
    circle at 50% 45%,
    #161616 0,
    #080808 42%,
    #050505 72%
  );
  isolation: isolate;
}
.hero-visual:before,
.hero-visual:after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}
.hero-visual:before {
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.hero-visual:after {
  left: 50%;
  top: 0;
  height: 100%;
  width: 1px;
  background: rgba(255, 255, 255, 0.06);
}
#lab-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.visual-hud {
  position: absolute;
  z-index: 3;
  left: 32px;
  right: 32px;
  display: flex;
  justify-content: space-between;
  font:
    500 8px / 1 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.12em;
  color: #6f6f6b;
}
.hud-top {
  top: 32px;
}
.hud-bottom {
  bottom: 32px;
  justify-content: flex-start;
  gap: 22px;
}
.axis {
  position: absolute;
  z-index: 3;
  font:
    500 8px / 1 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  color: #555;
}
.axis-x {
  right: 24px;
  top: 50%;
}
.axis-y {
  left: 50%;
  bottom: 18px;
}
.hero-meta {
  grid-column: 1 / -1;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.hero-meta > div {
  display: flex;
  gap: 15px;
  align-items: baseline;
}
.hero-meta strong {
  font-size: 23px;
  font-weight: 500;
  letter-spacing: -0.04em;
}
.hero-meta span {
  font:
    500 9px / 1 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.ticker {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  height: 54px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  animation: ticker 30s linear infinite;
  will-change: transform;
}
.ticker span {
  font:
    550 10px / 1 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.15em;
  color: #888;
}
.ticker i {
  font-style: normal;
  font-size: 6px;
  color: #343434;
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.section {
  max-width: var(--max);
  margin: auto;
  padding: clamp(92px, 12vw, 180px) var(--pad);
}
.section-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "kicker kicker" "title body";
  gap: 26px 70px;
  margin-bottom: 70px;
}
.section-heading .kicker {
  grid-area: kicker;
}
.section-heading h2,
.portfolio h2,
.principles h2,
.contact h2 {
  grid-area: title;
  margin: 0;
  font-size: clamp(46px, 6vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.065em;
  font-weight: 450;
}
.section-heading > p:last-child {
  grid-area: body;
  align-self: end;
  max-width: 520px;
  color: #93938f;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}
.capability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.capability {
  position: relative;
  background: var(--bg);
  min-height: 700px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.capability:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.025),
    transparent 40%
  );
}
.cap-number {
  font:
    500 9px / 1 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  color: #60605c;
}
.cap-visual {
  height: 340px;
  margin: 38px 0;
  display: grid;
  place-items: center;
}
.software-visual {
  color: #7b7b77;
}
.software-visual svg {
  width: 92%;
  max-width: 520px;
  overflow: visible;
}
.flow-nodes circle {
  animation: node-pulse 2.8s ease-in-out infinite;
}
.flow-nodes circle:nth-child(3n) {
  animation-delay: -0.8s;
}
.flow-nodes circle:nth-child(2n) {
  animation-delay: -1.7s;
}
@keyframes node-pulse {
  50% {
    opacity: 0.25;
  }
}
.cap-copy {
  margin-top: auto;
  padding: 0 14px 14px;
}
.cap-label {
  font:
    550 9px / 1 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #6f6f6a;
  margin: 0 0 18px;
}
.cap-copy h3 {
  font-size: clamp(28px, 3vw, 46px);
  letter-spacing: -0.045em;
  font-weight: 460;
  line-height: 1.05;
  margin: 0 0 18px;
}
.cap-copy > p:not(.cap-label) {
  color: #8e8e89;
  line-height: 1.65;
  font-size: 14px;
  max-width: 520px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  padding: 18px 0 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
}
.tag-list li {
  font:
    500 8px / 1 ui-monospace,
    SFMono-Regular,
    Menlo,
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 8px 9px;
  border: 1px solid #262626;
  color: #757570;
}
.pcb-scene {
  position: relative;
  width: min(78%, 390px);
  aspect-ratio: 1;
  perspective: 800px;
  transform-style: preserve-3d;
}
.pcb-board {
  position: absolute;
  inset: 9%;
  border: 1px solid #666;
  background:
    linear-gradient(90deg, transparent 49.7%, #272727 50%, transparent 50.3%),
    linear-gradient(transparent 49.7%, #272727 50%, transparent 50.3%), #0b0b0b;
  background-size: 38px 38px;
  transform-style: preserve-3d;
  transform: rotateX(64deg) rotateZ(-29deg);
  animation: board-float 7s var(--ease) infinite alternate;
  box-shadow:
    0 0 0 1px #111,
    0 35px 65px #000;
}
.pcb-board:before,
.pcb-board:after {
  content: "";
  position: absolute;
  inset: 7%;
  border: 1px solid #2d2d2d;
}
.pcb-board:after {
  inset: 22%;
  border-color: #222;
}
.chip {
  position: absolute;
  border: 1px solid #888;
  background: #101010;
  box-shadow: 6px 8px 0 #030303;
}
.chip:before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid #303030;
}
.chip-a {
  left: 37%;
  top: 36%;
  width: 28%;
  height: 26%;
}
.chip-b {
  left: 12%;
  top: 18%;
  width: 18%;
  height: 14%;
}
.chip-c {
  right: 10%;
  bottom: 15%;
  width: 20%;
  height: 16%;
}
.trace {
  position: absolute;
  height: 1px;
  background: #777;
  transform-origin: left;
}
.t1 {
  left: 18%;
  top: 26%;
  width: 25%;
  transform: rotate(22deg);
}
.t2 {
  left: 63%;
  top: 49%;
  width: 27%;
  transform: rotate(-35deg);
}
.t3 {
  left: 18%;
  top: 73%;
  width: 31%;
  transform: rotate(-24deg);
}
.t4 {
  left: 55%;
  top: 28%;
  width: 28%;
  transform: rotate(38deg);
}
.via {
  position: absolute;
  width: 7px;
  height: 7px;
  border: 1px solid #aaa;
  border-radius: 50%;
  background: #090909;
}
.v1 {
  left: 18%;
  top: 24%;
}
.v2 {
  left: 83%;
  top: 27%;
}
.v3 {
  left: 22%;
  top: 72%;
}
.v4 {
  right: 17%;
  bottom: 18%;
}
.pcb-shadow {
  position: absolute;
  left: 23%;
  right: 12%;
  bottom: 8%;
  height: 24%;
  filter: blur(16px);
  background: #000;
  transform: skewX(-35deg);
  opacity: 0.8;
}
@keyframes board-float {
  0% {
    transform: rotateX(64deg) rotateZ(-29deg) translate3d(-5px, -4px, 0);
  }
  100% {
    transform: rotateX(59deg) rotateZ(-22deg) translate3d(8px, 7px, 18px);
  }
}
.portfolio {
  min-height: 850px;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  grid-template-rows: auto 1fr;
  gap: 36px 80px;
  position: relative;
}
.portfolio-number {
  font-size: clamp(120px, 21vw, 320px);
  line-height: 0.72;
  letter-spacing: -0.09em;
  font-weight: 480;
  color: #181818;
  grid-row: 1 / 3;
  align-self: center;
}
.portfolio-number span {
  font-weight: 250;
}
.portfolio-copy {
  max-width: 640px;
  align-self: start;
}
.portfolio-copy h2 {
  font-size: clamp(42px, 5vw, 74px);
  margin: 28px 0;
}
.portfolio-copy > p:last-child {
  color: #92928d;
  line-height: 1.7;
  font-size: 15px;
  max-width: 590px;
}
.portfolio-orbit {
  justify-self: center;
  align-self: center;
  position: relative;
  width: min(70vw, 430px);
  aspect-ratio: 1;
}
.orbit-ring {
  position: absolute;
  border: 1px solid #242424;
  border-radius: 50%;
  inset: 8%;
}
.ring-two {
  inset: 21%;
  border-style: dashed;
  animation: spin 24s linear infinite;
}
.ring-three {
  inset: 35%;
  border-color: #383838;
}
.orbit-core {
  position: absolute;
  inset: 42%;
  border: 1px solid #6f6f6b;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 0 45px rgba(255, 255, 255, 0.06);
}
.orbit-core span {
  font:
    600 11px / 1 ui-monospace,
    monospace;
  letter-spacing: 0.1em;
}
.orbit-label {
  position: absolute;
  font:
    500 8px / 1 ui-monospace,
    monospace;
  color: #656560;
  letter-spacing: 0.12em;
}
.o1 {
  left: 0;
  top: 49%;
}
.o2 {
  top: 9%;
  left: 47%;
}
.o3 {
  right: 0;
  top: 48%;
}
.o4 {
  left: 43%;
  bottom: 7%;
}
.o5 {
  left: 19%;
  top: 20%;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.process {
  border-top: 1px solid var(--line);
}
.section-heading.compact {
  grid-template-columns: 1fr;
  margin-bottom: 70px;
}
.section-heading.compact h2 {
  grid-area: auto;
}
.process-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}
.process-list li {
  min-height: 180px;
  display: grid;
  grid-template-columns: 90px 1fr 1fr 60px;
  gap: 26px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
  padding: 26px 8px;
}
.process-list li:hover {
  background: #090909;
}
.process-index {
  font:
    500 9px / 1 ui-monospace,
    monospace;
  color: #585854;
}
.process-list h3 {
  font-size: clamp(24px, 2.8vw, 42px);
  font-weight: 440;
  letter-spacing: -0.045em;
  margin: 0;
}
.process-list p {
  max-width: 460px;
  color: #81817c;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}
.process-mark {
  font-size: 28px;
  color: #5f5f5a;
  justify-self: end;
}
.principles {
  border-top: 1px solid var(--line);
}
.principles-head h2 {
  margin: 28px 0 72px;
}
.principle-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.principle-metrics > div {
  min-height: 220px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}
.principle-metrics > div:last-child {
  border-right: 0;
}
.principle-metrics span {
  font:
    500 8px / 1 ui-monospace,
    monospace;
  letter-spacing: 0.13em;
  color: #5d5d59;
}
.principle-metrics strong {
  margin: auto 0;
  font-size: clamp(38px, 4vw, 66px);
  font-weight: 400;
  letter-spacing: -0.06em;
}
.principle-metrics small {
  font:
    500 8px / 1 ui-monospace,
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #686863;
}
.principle-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-top: 42px;
}
.principle-note p {
  color: #898984;
  line-height: 1.7;
  max-width: 590px;
  margin: 0;
}
.byte-line {
  height: 1px;
  background: #1e1e1e;
  align-self: center;
  overflow: hidden;
}
.byte-line span {
  display: block;
  width: 22%;
  height: 100%;
  background: #aaa;
  animation: byte 4s var(--ease) infinite alternate;
}
@keyframes byte {
  to {
    transform: translateX(350%);
  }
}
.contact {
  position: relative;
  min-height: 850px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.contact-lines {
  position: absolute;
  right: -5%;
  top: 12%;
  width: 55%;
  height: 76%;
  transform: rotate(-15deg);
  opacity: 0.45;
}
.contact-lines i {
  position: absolute;
  inset: auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #3c3c3c, transparent);
}
.contact-lines i:nth-child(1) {
  top: 10%;
  transform: rotate(8deg);
}
.contact-lines i:nth-child(2) {
  top: 28%;
  transform: rotate(-9deg);
}
.contact-lines i:nth-child(3) {
  top: 46%;
  transform: rotate(13deg);
}
.contact-lines i:nth-child(4) {
  top: 65%;
  transform: rotate(-5deg);
}
.contact-lines i:nth-child(5) {
  top: 81%;
  transform: rotate(11deg);
}
.contact h2 {
  position: relative;
  z-index: 1;
  margin: 28px 0 28px;
  font-size: clamp(72px, 11vw, 170px);
  line-height: 0.78;
}
.contact h2 span {
  color: #4f4f4b;
}
.contact-copy {
  position: relative;
  z-index: 1;
  color: #888;
  max-width: 500px;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 34px;
}
.contact .button {
  position: relative;
  z-index: 1;
  width: max-content;
}
.site-footer {
  height: 112px;
  border-top: 1px solid var(--line);
  padding: 0 var(--pad);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--max);
  margin: auto;
  color: #62625e;
}
.site-footer p {
  font:
    500 8px / 1 ui-monospace,
    monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.site-footer p:last-child {
  justify-self: end;
}
.wordmark-small .wordmark-main {
  font-size: 17px;
}
.wordmark-small .wordmark-labs {
  font-size: 7px;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr auto;
    height: 68px;
  }
  .hero {
    padding-top: 108px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: auto;
  }
  .hero-copy {
    padding: 44px 0 18px;
  }
  .hero h1 {
    font-size: clamp(64px, 16vw, 118px);
  }
  .hero-visual {
    min-height: 560px;
  }
  .hero-meta {
    grid-column: 1;
  }
  .section-heading {
    grid-template-columns: 1fr;
    grid-template-areas: "kicker" "title" "body";
  }
  .capability-grid {
    grid-template-columns: 1fr;
  }
  .capability {
    min-height: 650px;
  }
  .portfolio {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .portfolio-number {
    grid-row: auto;
    font-size: clamp(130px, 40vw, 280px);
  }
  .process-list li {
    grid-template-columns: 54px 1fr 40px;
    gap: 18px;
  }
  .process-list li p {
    grid-column: 2;
  }
  .process-mark {
    grid-column: 3;
    grid-row: 1;
  }
  .principle-metrics {
    grid-template-columns: 1fr 1fr;
  }
  .principle-metrics > div:nth-child(2) {
    border-right: 0;
  }
  .principle-metrics > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer p:nth-child(2) {
    display: none;
  }
}
@media (max-width: 600px) {
  :root {
    --pad: 20px;
  }
  .site-header {
    height: 64px;
  }
  .nav-cta {
    font-size: 9px;
  }
  .hero {
    padding-top: 90px;
    gap: 26px;
  }
  .hero-copy {
    padding-top: 30px;
  }
  .hero h1 {
    margin-top: 24px;
    font-size: clamp(57px, 17vw, 92px);
    line-height: 0.84;
  }
  .hero-lede {
    font-size: 14px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
  .hero-visual {
    min-height: 460px;
  }
  .visual-hud {
    left: 24px;
    right: 24px;
  }
  .hero-meta {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .hero-meta > div {
    justify-content: space-between;
    border-bottom: 1px solid #171717;
    padding-bottom: 10px;
  }
  .ticker {
    height: 46px;
  }
  .section {
    padding-top: 90px;
    padding-bottom: 90px;
  }
  .section-heading {
    margin-bottom: 42px;
  }
  .capability {
    padding: 14px;
    min-height: 620px;
  }
  .cap-visual {
    height: 280px;
    margin: 24px 0;
  }
  .cap-copy {
    padding: 0 6px 8px;
  }
  .portfolio {
    gap: 24px;
  }
  .portfolio-copy h2 {
    font-size: 44px;
  }
  .portfolio-orbit {
    width: 88vw;
    margin: 25px 0;
  }
  .process-list li {
    grid-template-columns: 42px 1fr 30px;
    padding: 24px 4px;
  }
  .process-list p {
    font-size: 13px;
  }
  .principle-metrics {
    grid-template-columns: 1fr;
  }
  .principle-metrics > div {
    min-height: 170px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .principle-metrics > div:last-child {
    border-bottom: 0;
  }
  .principle-note {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .contact {
    min-height: 700px;
  }
  .contact h2 {
    font-size: clamp(72px, 22vw, 120px);
  }
  .contact-lines {
    width: 100%;
    right: -30%;
  }
  .site-footer {
    height: 100px;
  }
  .site-footer p:last-child {
    font-size: 7px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .ticker-track,
  .flow-nodes circle,
  .pcb-board,
  .ring-two,
  .byte-line span {
    animation: none !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* header CTA group: Products + Careers */
.header-ctas{display:flex;align-items:center;gap:clamp(16px,3vw,28px);justify-self:end}
.header-ctas .nav-cta{justify-self:auto}
