@font-face {
  font-family: "Sora";
  src: url("../fonts/sora-300.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Red Hat Mono";
  src: url("../fonts/red-hat-mono-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Red Hat Mono";
  src: url("../fonts/red-hat-mono-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --bg: #050605;
  --bg-2: #090b0a;
  --panel: rgba(18, 22, 19, 0.78);
  --panel-solid: #111511;
  --panel-deep: #0b0e0c;
  --text: #f7f5ef;
  --soft: #dfddd6;
  --muted: #c5c4bd;
  --dim: #6f766d;
  --line: rgba(226, 231, 215, 0.17);
  --line-strong: rgba(226, 231, 215, 0.31);
  --acid: #d8ff53;
  --peach: #fdb377;
  --ink: #121212;
  --steel: #8f9790;
  --max: 1280px;
  --gutter: clamp(24px, 5.85vw, 58px);
  --header-expanded: 102px;
  --header-compact: 58px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-weight: 300;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body::before {
  display: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  display: block;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  height: var(--header-expanded);
  padding: 33px 0 0;
  background: #121212;
  transition: height 260ms ease, padding 260ms ease, box-shadow 260ms ease;
  will-change: height, padding;
}

.site-header.is-compact {
  height: var(--header-compact);
  padding-top: 9px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
}

.nav {
  width: min(1152px, calc(100% - 96px));
  min-height: 40px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 4px;
  border: 4px solid #bcbcbc;
  border-radius: 5px;
  background: #bcbcbc;
  transition: width 260ms ease;
}

.brand,
.nav-links {
  min-height: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 11px;
  padding: 0;
  border-radius: 0;
  color: var(--ink);
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand img {
  width: 28px;
  height: 28px;
  border-radius: 0;
  object-fit: cover;
  background: #070807;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  padding: 0;
  color: var(--ink);
  font-size: 0.78rem;
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 17px;
  border-radius: 4px;
  background: #f7f7f7;
  color: var(--ink);
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-links a:nth-child(1) {
  min-width: 78px;
}

.nav-links a:nth-child(2) {
  min-width: 98px;
}

.nav-links a:nth-child(3) {
  min-width: 96px;
}

.nav-links a:nth-child(4) {
  min-width: 67px;
}

.nav-links a:nth-child(5) {
  min-width: 96px;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: #ffffff;
}

.nav-links .command {
  border: 0;
  color: #ffffff;
  background: #111111;
}

.nav-links .command:hover,
.nav-links .command[aria-current="page"] {
  background: #000000;
  color: #ffffff;
}

.menu-toggle {
  display: none;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 0 7px 7px 0;
  background: rgba(11, 14, 12, 0.82);
  color: var(--text);
  padding: 0 18px;
  font: inherit;
  font-family: "Red Hat Mono", monospace;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 437px;
  display: grid;
  align-items: end;
  overflow: clip;
  border-bottom: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.03) 56%, rgba(0, 0, 0, 0.16) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.01) 0%, rgba(0, 0, 0, 0.12) 100%),
    var(--hero-image, none) var(--hero-position, center) / cover no-repeat;
}

.hero.has-video {
  background: var(--hero-image, none) var(--hero-position, center) / cover no-repeat;
}

.hero.has-video::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.08) 56%, rgba(0, 0, 0, 0.3) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.42) 100%);
  pointer-events: none;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.12) brightness(0.76);
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center);
}

.compute-page .compute-hero {
  min-height: clamp(360px, 30vw, 470px);
  align-items: stretch;
  background-color: #050505;
}

.compute-page .compute-hero.has-video::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.04) 52%, rgba(0, 0, 0, 0.14)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.18));
}

.compute-page .compute-hero .hero-video {
  object-position: center center;
  filter: saturate(0.92) contrast(1.08) brightness(0.72);
}

.compute-page .compute-hero + .compute-console {
  margin-top: -1px;
  border-top: 0;
}

.hero::after {
  display: none;
}

.hero.compact {
  min-height: 437px;
}

.hero-inner,
.section,
.footer-inner {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 142px 0 50px;
}

.home-page .hero {
  min-height: 640px;
}

.home-page .hero-inner {
  width: min(1158px, calc(100% - (var(--gutter) * 2)));
  display: grid;
  grid-template-columns: minmax(0, 700px) minmax(280px, 360px);
  gap: 35px;
  align-items: end;
  padding: 0 0 120px;
}

.home-page .hero h1 {
  max-width: 700px;
  font-size: clamp(3rem, 3.3vw, 3.15rem);
  line-height: 1.16;
}

.home-page .hero .lead {
  max-width: 360px;
  margin: 0;
  font-size: clamp(1.18rem, 1.5vw, 1.32rem);
  line-height: 1.35;
}

.about-page {
  background: #f5f5f5;
  color: var(--ink);
}

.about-page .about-hero {
  min-height: 365px;
  background: #111111;
}

.about-page .about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.02) 64%, rgba(0, 0, 0, 0.08)),
    linear-gradient(180deg, rgba(210, 137, 58, 0.1), rgba(210, 137, 58, 0.08));
  pointer-events: none;
}

.about-page .about-hero .hero-inner {
  width: min(1158px, calc(100% - (var(--gutter) * 2)));
  padding: 0 0 50px;
}

.about-page .about-hero h1 {
  color: #ffffff;
  font-size: clamp(2.35rem, 3.7vw, 3.2rem);
  line-height: 1;
}

.about-overview,
.about-creed,
.about-crew-section,
.about-values-section {
  width: min(1158px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  background: #f5f5f5;
  color: var(--ink);
}

.about-overview {
  padding: 58px 0 88px;
}

.about-creed {
  padding: 62px 0 70px;
}

.about-crew-section {
  padding: 56px 0 88px;
}

.about-values-section {
  padding: 56px 0 66px;
}

.about-page .section-number {
  display: block;
  color: var(--ink);
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: clamp(2.35rem, 3.45vw, 3rem);
  font-weight: 300;
  line-height: 1;
  text-transform: none;
}

.about-overview h1,
.about-creed h2,
.about-crew-section h2,
.about-values-section h2 {
  margin: 19px 0 31px;
  color: var(--ink);
  font-family: "Red Hat Mono", monospace;
  font-size: clamp(0.92rem, 1.1vw, 1.02rem);
  font-weight: 600;
  line-height: 1;
  text-transform: none;
}

.about-rule {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 0;
  background: var(--ink);
}

.about-rule::after {
  content: "";
  position: absolute;
  top: -3px;
  left: var(--timeline-dot-left, 100%);
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: left 120ms linear;
}

.about-title-card {
  min-height: 298px;
  display: flex;
  align-items: center;
  margin-top: 50px;
  padding: clamp(38px, 4vw, 60px);
  border-radius: 6px;
  background: var(--peach);
  box-shadow: 0 16px 28px rgba(18, 18, 18, 0.12);
}

.about-title-card h2 {
  max-width: 1020px;
  color: var(--ink);
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  font-weight: 300;
  line-height: 1.22;
  text-transform: uppercase;
}

.about-creed-card {
  margin-top: 74px;
  padding: clamp(48px, 5vw, 78px) clamp(46px, 5vw, 60px);
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(18, 18, 18, 0.09);
}

.about-creed-card p {
  max-width: 960px;
  color: #242424;
  font-size: clamp(0.95rem, 1.08vw, 1.05rem);
  line-height: 1.45;
}

.about-creed-card p + p {
  margin-top: 24px;
}

.about-creed-card strong {
  color: var(--ink);
  font-weight: 700;
  text-transform: uppercase;
}

.about-crew-content,
.about-values-content {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
}

.about-crew-content {
  margin-top: 78px;
}

.about-values-content {
  margin-top: 40px;
}

.about-line-mark,
.about-orbit-mark {
  position: relative;
  width: 180px;
  aspect-ratio: 1;
  opacity: 0.36;
}

.about-orbit-mark {
  margin-top: clamp(300px, 32vw, 410px);
}

.about-line-mark::before,
.about-line-mark::after,
.about-orbit-mark::before,
.about-orbit-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform-origin: 50% 50%;
  will-change: transform;
}

.about-line-mark::before {
  background-image: url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M34 86 78 34 158 45 197 88 178 166 122 204 64 187 25 139Z' fill='none' stroke='%23999999' stroke-width='1.35'/%3E%3C/svg%3E");
  animation: about-mark-spin-cw 9s linear infinite;
}

.about-line-mark::after {
  inset: 7px;
  background-image: url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M34 86 78 34 158 45 197 88 178 166 122 204 64 187 25 139Z' fill='none' stroke='%23999999' stroke-width='1.35'/%3E%3C/svg%3E");
  animation: about-mark-spin-ccw 9s linear infinite;
  opacity: 0.86;
}

@keyframes about-mark-spin-cw {
  to {
    transform: rotate(360deg);
  }
}

@keyframes about-mark-spin-ccw {
  to {
    transform: rotate(-360deg);
  }
}

.about-orbit-mark::before {
  background-image: url("data:image/svg+xml,%3Csvg width='190' height='190' viewBox='0 0 190 190' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='95' cy='95' r='70' fill='none' stroke='%23979797' stroke-width='1.25'/%3E%3Ccircle cx='95' cy='95' r='48' fill='none' stroke='%23979797' stroke-width='1.15'/%3E%3C/svg%3E");
}

.about-orbit-mark::after {
  inset: 18px;
  background-image: url("data:image/svg+xml,%3Csvg width='154' height='154' viewBox='0 0 154 154' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='77' cy='77' rx='40' ry='66' transform='rotate(-18 77 77)' fill='none' stroke='%23979797' stroke-width='1.2'/%3E%3C/svg%3E");
  animation: about-orbit-spin 7.5s linear infinite;
}

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

.about-crew-cards,
.about-values-grid {
  display: grid;
  gap: 20px;
}

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

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

.about-card {
  min-height: 244px;
  padding: clamp(26px, 3vw, 36px);
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(18, 18, 18, 0.08);
}

.about-card h3 {
  color: #242424;
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: clamp(1.22rem, 1.65vw, 1.48rem);
  font-weight: 700;
  line-height: 1.24;
  text-transform: none;
}

.about-card p {
  margin-top: 20px;
  color: #4c4c4c;
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.45;
}

.about-values-grid .about-card {
  min-height: 196px;
}

.about-values-grid .about-card h3 {
  font-size: clamp(1.16rem, 1.55vw, 1.38rem);
}

@media (prefers-reduced-motion: reduce) {
  .about-line-mark::before,
  .about-line-mark::after,
  .about-orbit-mark::after {
    animation: none;
  }
}

.capacity-page {
  background: #f5f5f5;
  color: var(--ink);
}

.capacity-page .capacity-hero {
  min-height: 428px;
  align-items: stretch;
  background-color: #160606;
}

.capacity-page .capacity-hero.has-video::before {
  background:
    linear-gradient(90deg, rgba(22, 2, 2, 0.42), rgba(22, 2, 2, 0.08) 52%, rgba(22, 2, 2, 0.16)),
    linear-gradient(180deg, rgba(22, 2, 2, 0.18), rgba(22, 2, 2, 0.02));
}

.capacity-page .capacity-hero .hero-video {
  filter: saturate(0.95) contrast(1.08) brightness(0.78);
  object-position: center center;
}

.capacity-overview {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 50px 0 72px;
  background: #f5f5f5;
  color: var(--ink);
}

.capacity-overview .section-number {
  display: block;
  color: var(--ink);
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  font-weight: 300;
  line-height: 1;
}

.capacity-overview h1 {
  margin: 18px 0 32px 46px;
  color: var(--ink);
  font-family: "Red Hat Mono", monospace;
  font-size: clamp(0.92rem, 1.25vw, 1.02rem);
  font-weight: 600;
  line-height: 1;
  text-transform: none;
}

.capacity-rule {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 0 0 50px;
  background: var(--ink);
}

.capacity-rule::after {
  content: "";
  position: absolute;
  top: -3px;
  left: var(--timeline-dot-left, 100%);
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: left 120ms linear;
}

.capacity-title-card {
  min-height: 298px;
  display: flex;
  align-items: center;
  padding: clamp(34px, 4vw, 58px);
  border-radius: 6px;
  background: var(--peach);
  box-shadow: 0 16px 24px rgba(18, 18, 18, 0.12);
}

.capacity-title-card h2 {
  max-width: 860px;
  color: var(--ink);
  font-size: clamp(2.2rem, 3.4vw, 3.55rem);
  line-height: 1.35;
  text-transform: none;
}

.capacity-page .section {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(78px, 8vw, 112px) 0;
  border-top-color: rgba(18, 18, 18, 0.15);
  background: #f5f5f5;
  color: var(--ink);
}

.capacity-page .section::before {
  background: rgba(18, 18, 18, 0.08);
}

.capacity-page h2,
.capacity-page h3,
.capacity-page p,
.capacity-page .lead,
.capacity-page .section-number {
  color: var(--ink);
}

.capacity-page .card {
  border-color: rgba(18, 18, 18, 0.12);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(18, 18, 18, 0.06);
}

.capacity-page .card::after {
  background: rgba(18, 18, 18, 0.18);
}

.capacity-page .media-band {
  border-color: rgba(18, 18, 18, 0.15);
}

.capacity-story {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 96px 0 64px;
  background: #f5f5f5;
  color: var(--ink);
}

.capacity-story .section-number {
  display: block;
  color: var(--ink);
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: clamp(2.2rem, 3.35vw, 3rem);
  font-weight: 300;
  line-height: 1;
}

.capacity-story-lead {
  max-width: 720px;
  margin: 18px 0 34px 52px;
  color: var(--ink);
  font-family: "Red Hat Mono", monospace;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 600;
  line-height: 1.55;
}

.capacity-story-card {
  margin-top: 68px;
  padding: clamp(42px, 5vw, 72px) clamp(42px, 5vw, 64px);
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 14px 30px rgba(18, 18, 18, 0.08);
}

.capacity-story-card p {
  max-width: 1080px;
  color: #4c4c4c;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  line-height: 1.48;
}

.capacity-story-card p + p {
  margin-top: 26px;
}

.capacity-cyber-title {
  width: 100%;
  margin: 0;
  padding: 58px var(--gutter) 62px;
  background: var(--peach);
  color: var(--ink);
}

.capacity-cyber-title .section-number {
  display: block;
  color: var(--ink);
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: clamp(2.2rem, 3.35vw, 3rem);
  font-weight: 300;
  line-height: 1;
}

.capacity-cyber-title h2 {
  width: min(1158px, 100%);
  max-width: none;
  margin: 22px auto 0;
  color: var(--ink);
  font-size: clamp(2.3rem, 3.35vw, 3.75rem);
  line-height: 1.45;
  text-transform: none;
}

.capacity-cyber-title .section-number {
  width: min(1158px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.capacity-object-image {
  width: 100%;
  height: clamp(360px, 44vw, 555px);
  display: block;
  object-fit: cover;
  object-position: center;
  background: #000000;
}

.capacity-process {
  padding: clamp(48px, 6vw, 78px) var(--gutter) 68px;
  background: #121212;
  color: #f5f5f5;
}

.capacity-process-copy {
  width: min(1060px, 100%);
  margin: 0 auto;
}

.capacity-process-copy p {
  color: #f5f5f5;
  font-size: clamp(0.95rem, 1.25vw, 1.08rem);
  line-height: 1.48;
}

.capacity-process-copy p + p {
  margin-top: 24px;
}

.capacity-process-list {
  width: min(1158px, 100%);
  display: grid;
  gap: 36px;
  margin: clamp(90px, 10vw, 126px) auto 0;
}

.process-card {
  width: var(--process-width, 100%);
  margin-left: var(--process-offset, 0%);
  min-height: 116px;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 24px 32px;
  border: 1px solid rgba(245, 245, 245, 0.44);
  border-radius: 7px;
  background: #121212;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  opacity: 0.35;
  transform: translateY(34px);
  filter: blur(1px);
  transition: border-color 180ms ease, box-shadow 180ms ease;
  will-change: transform, opacity, filter, width, margin-left;
}

.process-card:nth-child(2) {
  --process-width: 96%;
  --process-offset: 2%;
}

.process-card:nth-child(3) {
  --process-width: 91%;
  --process-offset: 5%;
}

.process-card:nth-child(4) {
  --process-width: 85%;
  --process-offset: 8%;
}

.process-card:nth-child(5) {
  --process-width: 78%;
  --process-offset: 11%;
}

.process-card.is-active {
  border-color: rgba(245, 245, 245, 0.6);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.process-card span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  padding: 0 7px;
  border-radius: 4px;
  background: var(--peach);
  color: var(--ink);
  font-family: "Red Hat Mono", monospace;
  font-size: 1rem;
  font-weight: 600;
}

.process-card p {
  color: #f5f5f5;
  font-size: clamp(1.45rem, 2.45vw, 2rem);
  line-height: 1.15;
}

.button.capacity-dark-button {
  width: min(1158px, 100%);
  display: flex;
  min-height: 28px;
  justify-content: space-between;
  margin: 80px auto 0;
  padding: 0 10px;
  border-color: rgba(245, 245, 245, 0.44);
  border-radius: 3px;
  background: transparent;
  color: #f5f5f5;
  font-family: "Red Hat Mono", monospace;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.button.capacity-dark-button::after {
  content: "→";
  margin-left: 20px;
}

.button.capacity-dark-button:hover {
  border-color: var(--peach);
  background: var(--peach);
  color: #ffffff;
}

.capacity-registry {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 36px var(--gutter) 0 !important;
  display: block !important;
  border-top: 0 !important;
  background: #000000 !important;
  color: #f5f5f5 !important;
}

.capacity-registry > div,
.capacity-registry .stack {
  width: min(1158px, 100%);
  margin: 0 auto;
}

.capacity-page .capacity-registry h2,
.capacity-page .capacity-registry h3,
.capacity-page .capacity-registry p,
.capacity-page .capacity-registry .lead,
.capacity-page .capacity-registry .section-number {
  color: #f5f5f5;
}

.capacity-page .capacity-registry::before {
  display: none;
}

.capacity-page .capacity-registry .section-number {
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: clamp(2.4rem, 3.5vw, 3.05rem);
  font-weight: 300;
  line-height: 1;
}

.capacity-page .capacity-registry .stack {
  display: block;
  margin-top: 26px;
}

.capacity-page .capacity-registry h2 {
  margin-left: 52px;
  color: #f5f5f5;
  font-family: "Red Hat Mono", monospace;
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
}

.capacity-registry .lead {
  max-width: 1040px;
  margin: 34px 0 0 52px;
  color: #f5f5f5;
  font-size: clamp(1rem, 1.28vw, 1.14rem);
  line-height: 1.45;
}

.registry-rule {
  width: 100%;
  height: 1px;
  margin: 40px 0 0;
  background: rgba(245, 245, 245, 0.16);
}

.registry-video {
  width: min(1076px, 100%);
  display: block;
  margin: 0 auto;
  border: 1px solid rgba(245, 245, 245, 0.12);
  background: #050505;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.asap-page {
  background: #121212;
  color: #f5f5f5;
}

.asap-page .asap-hero {
  min-height: clamp(360px, 37vw, 520px);
  align-items: end;
  background-color: #000000;
}

.asap-page .asap-hero.has-video::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1) 60%, rgba(0, 0, 0, 0.28)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.54));
}

.asap-page .asap-hero .hero-video {
  object-position: center center;
  filter: saturate(0.9) contrast(1.08) brightness(0.72);
}

.asap-page .asap-hero .hero-inner {
  width: min(1158px, calc(100% - (var(--gutter) * 2)));
  padding: 0 0 54px;
}

.asap-page .asap-hero h1 {
  max-width: none;
  color: #f5f5f5;
  font-size: clamp(2.1rem, 3.35vw, 3.55rem);
  line-height: 1.16;
  white-space: nowrap;
}

.asap-portal-showcase {
  padding: 64px var(--gutter) 28px;
  background: #121212;
}

.asap-portal-showcase img {
  width: min(1080px, 100%);
  display: block;
  margin: 0 auto;
  border: 1px solid rgba(245, 245, 245, 0.1);
  background: #050505;
}

.asap-intro {
  width: min(1158px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 34px 0 20px;
  background: #121212;
  color: #f5f5f5;
}

.asap-intro .section-number,
.asap-request-section .section-number {
  display: block;
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: clamp(2.35rem, 3.45vw, 3rem);
  font-weight: 300;
  line-height: 1;
}

.asap-copy {
  margin-top: 22px;
}

.asap-copy p {
  max-width: 1158px;
  color: #f5f5f5;
  font-size: clamp(0.98rem, 1.22vw, 1.08rem);
  line-height: 1.55;
}

.asap-copy p + p {
  margin-top: 24px;
}

.asap-copy strong {
  color: #ffffff;
  font-weight: 700;
}

.asap-rule {
  position: relative;
  width: 100%;
  height: 1px;
  margin: 34px 0 0;
  background: currentColor;
}

.asap-rule::after {
  content: "";
  position: absolute;
  top: -3px;
  left: var(--timeline-dot-left, 100%);
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: currentColor;
  transform: translateX(-50%);
  transition: left 120ms linear;
}

.asap-card-zone {
  position: relative;
  overflow: hidden;
  padding: clamp(130px, 13vw, 178px) var(--gutter) 118px;
  background: #11171a;
}

.asap-card-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(8, 10, 10, 0.58);
  pointer-events: none;
}

.asap-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.12) brightness(0.62) blur(1px);
}

.asap-card-list {
  position: relative;
  z-index: 2;
  width: min(1158px, 100%);
  display: grid;
  gap: 76px;
  margin: 0 auto;
}

.asap-access-card {
  width: var(--process-width, 100%);
  margin-left: var(--process-offset, 0%);
  min-height: 386px;
  padding: clamp(36px, 4.5vw, 70px) clamp(36px, 5vw, 76px);
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 7px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 22px 38px rgba(0, 0, 0, 0.22);
  opacity: 1;
  transform: translateY(34px);
  filter: none;
  will-change: transform, opacity, filter, width, margin-left;
}

.asap-access-card:nth-child(2) {
  --process-width: 96%;
  --process-offset: 2%;
}

.asap-access-card:nth-child(3) {
  --process-width: 91%;
  --process-offset: 5%;
}

.asap-access-card.is-active {
  box-shadow: 0 26px 45px rgba(0, 0, 0, 0.24);
}

.asap-access-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  margin-bottom: clamp(74px, 8vw, 112px);
  padding: 0 7px;
  border-radius: 4px;
  background: var(--peach);
  color: var(--ink);
  font-family: "Red Hat Mono", monospace;
  font-size: 1rem;
  font-weight: 600;
}

.asap-access-card h2 {
  color: var(--ink);
  font-size: clamp(2.2rem, 3.35vw, 3.05rem);
  line-height: 1.18;
  text-transform: none;
}

.asap-access-card p,
.asap-access-card li {
  color: var(--ink);
  font-family: "Red Hat Mono", monospace;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.5;
}

.asap-access-card p {
  margin-top: 26px;
}

.asap-access-card ul {
  margin: 20px 0 0;
  padding-left: 1.35rem;
}

.asap-request-section {
  padding: 66px var(--gutter) 98px;
  background: #f5f5f5;
  color: var(--ink);
}

.asap-request-section > .section-number,
.asap-request-section > h2,
.asap-request-section > .asap-rule,
.asap-form-wrap {
  width: min(1158px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.asap-request-section h2 {
  max-width: none;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(2.05rem, 3.2vw, 3rem);
  line-height: 1.18;
  text-transform: none;
}

.asap-request-section .asap-rule {
  color: var(--ink);
  margin-top: 34px;
}

.asap-form-wrap {
  margin-top: 54px;
  padding: clamp(44px, 5vw, 64px) clamp(36px, 5vw, 70px);
  border-radius: 6px;
  background: var(--peach);
  box-shadow: 0 16px 28px rgba(18, 18, 18, 0.12);
}

.asap-form-lead {
  max-width: 850px;
  color: var(--ink);
  font-size: clamp(0.98rem, 1.14vw, 1.05rem);
  line-height: 1.7;
}

.asap-form-wrap form {
  margin-top: 66px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.asap-form-wrap label {
  color: var(--ink);
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  text-transform: none;
}

.asap-form-wrap input,
.asap-form-wrap textarea {
  border-color: rgba(18, 18, 18, 0.52);
  background: transparent;
  color: var(--ink);
}

.asap-form-wrap input:focus,
.asap-form-wrap textarea:focus {
  border-color: #101010;
  background: #9189cc;
  color: #050505;
  outline: none;
}

.asap-form-wrap input:-webkit-autofill,
.asap-form-wrap textarea:-webkit-autofill {
  -webkit-text-fill-color: #050505;
  box-shadow: 0 0 0 1000px #9189cc inset;
}

.asap-form-wrap textarea {
  min-height: 76px;
}

.asap-form-wrap .button {
  width: 100%;
  min-height: 36px;
  border: 1px solid #050505;
  background: #050505;
  color: #ffffff;
  font-size: 0.78rem;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.asap-form-wrap .button:hover {
  border-color: #0f1b34;
  background: #416cf4;
  color: #050505;
}

.asap-form-wrap > p:last-child {
  margin-top: 22px;
  color: rgba(18, 18, 18, 0.82);
  font-size: 0.64rem;
  line-height: 1.35;
}

@media (prefers-reduced-motion: reduce) {
  .process-card,
  .asap-access-card {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

.eyebrow,
.section-number,
.card .num {
  color: inherit;
  font-size: 0.92rem;
  font-family: "Red Hat Mono", monospace;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-weight: 300;
  line-height: 1.22;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 920px;
  font-size: clamp(2.8rem, 4.11vw, 5rem);
}

h2 {
  max-width: 920px;
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
}

h3 {
  font-size: clamp(1.05rem, 1.55vw, 1.65rem);
  line-height: 1.05;
}

p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.15vw, 1.1rem);
}

strong {
  color: var(--text);
}

.lead {
  max-width: 820px;
  margin-top: 34px;
  color: var(--text);
  font-size: clamp(1.18rem, 1.62vw, 1.625rem);
  line-height: 1.5;
}

.section {
  position: relative;
  padding: clamp(70px, 8vw, 118px) 0;
  border-top: 1px solid var(--line);
}

.mission-section {
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: 400px;
  padding: 58px var(--gutter) 70px;
  border-top: 0;
  background: var(--peach);
  color: var(--ink);
}

.mission-section.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 19px;
}

.mission-section > div,
.infrastructure-section > div {
  width: min(1158px, 100%);
  margin-right: auto;
  margin-left: auto;
}

.mission-section::before {
  display: none;
}

.mission-section .section-number {
  display: block;
  color: var(--ink);
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: clamp(1.72rem, 2.7vw, 2.02rem);
  font-weight: 300;
  line-height: 1;
}

.mission-section .stack {
  max-width: none;
  gap: 0;
}

.mission-section h2 {
  position: relative;
  max-width: none;
  padding-bottom: 50px;
  color: var(--ink);
  font-family: "Red Hat Mono", monospace;
  font-size: clamp(1rem, 1.1vw, 1.25rem);
  font-weight: 600;
  line-height: 1;
  text-transform: none;
}

.mission-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 13px;
  height: 1px;
  background: var(--ink);
}

.mission-section h2::before {
  content: "";
  position: absolute;
  left: var(--timeline-dot-left, 100%);
  bottom: 10px;
  z-index: 1;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: left 120ms linear;
}

.mission-section .lead {
  max-width: 790px;
  margin-top: 16px;
  color: var(--ink);
  font-size: clamp(2.1rem, 2.78vw, 2.5rem);
  line-height: 1.2;
  text-transform: uppercase;
}

.mission-section .button {
  min-height: 29px;
  margin-top: 34px;
  padding: 0 9px;
  border-color: var(--ink);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  font-family: "Red Hat Mono", monospace;
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.mission-section .button::after {
  content: "->";
  margin-left: 20px;
  font-family: "Red Hat Mono", monospace;
  font-size: 0.95rem;
}

.mission-section .button:hover {
  background: rgba(0, 0, 0, 0.08);
}

.section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: max(var(--gutter), calc((100vw - var(--max)) / 2));
  width: 1px;
  background: rgba(226, 231, 215, 0.08);
}

.section.mission-section::before,
.section.infrastructure-section::before {
  display: none;
}

.infrastructure-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 20px var(--gutter) 58px;
  border-top: 0;
  background: #f5f5f5;
  color: var(--ink);
}

.infrastructure-section.split {
  grid-template-columns: 1fr;
  gap: 22px;
}

.infrastructure-section .section-number {
  display: block;
  color: var(--ink);
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: clamp(2.5rem, 3.25vw, 2.95rem);
  font-weight: 300;
  line-height: 1;
}

.infrastructure-section .stack {
  max-width: none;
  gap: 0;
}

.infrastructure-section p,
.infrastructure-section .lead {
  max-width: 1140px;
  margin: 0;
  color: var(--ink);
  font-family: "Red Hat Mono", monospace;
  font-size: clamp(0.82rem, 1vw, 0.875rem);
  font-weight: 600;
  line-height: 1.46;
}

.infrastructure-section .stack > p + p {
  margin-top: 24px;
}

.infrastructure-section .stack > p:nth-of-type(3) {
  margin-top: 0;
}

.infrastructure-section .grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(32px, 4vw, 48px);
  row-gap: 78px;
  margin-top: 34px;
  padding-top: 48px;
}

.infrastructure-section .grid::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ink);
}

.infrastructure-section .grid::after {
  content: "";
  position: absolute;
  top: -3px;
  left: var(--timeline-dot-left, 100%);
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: left 120ms linear;
}

.infrastructure-section .card {
  min-height: 96px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.infrastructure-section .card::after {
  display: none;
}

.infrastructure-section .card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  margin: 0 0 20px;
  padding: 0 6px;
  border-radius: 4px;
  background: var(--peach);
  color: var(--ink);
  font-family: "Red Hat Mono", monospace;
  font-size: 1rem;
  font-weight: 400;
}

.infrastructure-section .card h3 {
  color: var(--ink);
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: clamp(1.18rem, 1.7vw, 1.36rem);
  font-weight: 300;
  line-height: 1.18;
  text-transform: none;
}

.infrastructure-section .card:nth-child(n + 5) .num {
  opacity: var(--infra-faded-opacity, 0.55);
}

.infrastructure-section .card:nth-child(n + 5) h3 {
  color: var(--ink);
  opacity: var(--infra-faded-opacity, 0.55);
}

.infrastructure-section .button {
  min-height: 28px;
  margin-top: 50px;
  padding: 0 8px;
  border-color: var(--ink);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  font-family: "Red Hat Mono", monospace;
  font-size: 0.79rem;
  font-weight: 400;
  letter-spacing: 0;
}

.infrastructure-section .button::after {
  content: "→";
  margin-left: 22px;
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: 1.05rem;
  line-height: 1;
}

.infrastructure-section .button:hover {
  background: #ffffff;
}

.gap-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 76px var(--gutter) 76px;
  border-top: 0;
  background: #f7f7f7;
  color: var(--ink);
}

.gap-section::before {
  display: none;
}

.gap-heading {
  width: min(1158px, 100%);
  display: grid;
  gap: 20px;
  margin-right: auto;
  margin-left: auto;
}

.gap-section .section-number {
  color: var(--ink);
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: clamp(2.7rem, 3.55vw, 3.18rem);
  font-weight: 300;
  line-height: 1;
}

.gap-section h2 {
  color: var(--ink);
  font-family: "Red Hat Mono", monospace;
  font-size: clamp(0.95rem, 1.12vw, 1.05rem);
  font-weight: 600;
  line-height: 1.25;
  text-transform: none;
}

.gap-rule {
  position: relative;
  height: 1px;
  width: min(1158px, 100%);
  max-width: none;
  margin: 34px auto 40px;
  background: transparent;
}

.gap-rule::before,
.gap-rule::after {
  content: "";
  position: absolute;
}

.gap-rule::before {
  inset: 0;
  background: var(--ink);
}

.gap-rule::after {
  right: 0;
  top: -3px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--ink);
  left: var(--timeline-dot-left, 100%);
  right: auto;
  transform: translateX(-50%);
  transition: left 120ms linear;
}

@media (prefers-reduced-motion: reduce) {
  .mission-section h2::after,
  .mission-section h2::before,
  .infrastructure-section .grid::before,
  .infrastructure-section .grid::after,
  .gap-rule::before,
  .gap-rule::after {
    transition: none;
  }
}

.gap-content {
  width: min(1158px, 100%);
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
}

.gap-mark {
  position: relative;
  width: 210px;
  aspect-ratio: 1;
  opacity: 0.32;
}

.gap-mark::before,
.gap-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: center / contain no-repeat url("data:image/svg+xml,%3Csvg width='220' height='220' viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M34 86 78 34 158 45 197 88 178 166 122 204 64 187 25 139Z' fill='none' stroke='%23999999' stroke-width='1.35'/%3E%3C/svg%3E");
  transform-origin: 50% 50%;
  will-change: transform;
}

.gap-mark::before {
  animation: gap-mark-spin-cw 8s linear infinite;
}

.gap-mark::after {
  inset: 7px;
  animation: gap-mark-spin-ccw 8s linear infinite;
  opacity: 0.86;
}

@keyframes gap-mark-spin-cw {
  to {
    transform: rotate(360deg);
  }
}

@keyframes gap-mark-spin-ccw {
  to {
    transform: rotate(-360deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .gap-mark::before,
  .gap-mark::after {
    animation: none;
  }
}

.gap-section .grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gap-section .card {
  min-height: 205px;
  padding: 28px;
  border: 0;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(18, 18, 18, 0.08);
}

.gap-section .card::after {
  display: none;
}

.gap-section .card .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  margin: 0 0 22px;
  padding: 0 7px;
  border-radius: 4px;
  background: var(--peach);
  color: var(--ink);
  font-family: "Red Hat Mono", monospace;
  font-size: 1rem;
  font-weight: 400;
}

.gap-section .card h3 {
  color: #333333;
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: clamp(1.35rem, 1.82vw, 1.56rem);
  font-weight: 300;
  line-height: 1.18;
  text-transform: none;
}

.gap-section .card p {
  margin-top: 26px;
  color: #3c3c3c;
  font-size: 0.95rem;
  line-height: 1.45;
}

.split {
  display: grid;
  grid-template-columns: minmax(90px, 0.36fr) minmax(0, 1.64fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
}

.stack {
  display: grid;
  gap: 22px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.card {
  position: relative;
  min-height: 172px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    var(--panel);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.card::after {
  content: "";
  position: absolute;
  inset: auto 14px 14px 14px;
  height: 1px;
  background: rgba(216, 255, 83, 0.17);
  opacity: 0;
  transition: opacity 160ms ease;
}

.card:hover::after {
  opacity: 1;
}

.card .num {
  display: block;
  margin-bottom: 34px;
}

.card p {
  margin-top: 14px;
  font-size: 0.95rem;
}

.media-band {
  width: min(var(--max), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 8px;
  padding: 8px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.media-band img,
.media-band video,
.feature-image,
.feature-video {
  width: 100%;
  height: 100%;
  min-height: 310px;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 3px;
  filter: saturate(0.78) contrast(1.12) brightness(0.88);
}

.feature-image {
  max-height: 520px;
}

.compute-console {
  padding-top: clamp(88px, 10vw, 140px);
  background: #000000;
  color: var(--peach);
}

.compute-console::before {
  display: none;
}

.compute-shell {
  max-width: 1200px;
  margin: 0 auto;
  font-family: "Red Hat Mono", Courier, monospace;
  line-height: 1.6;
}

.compute-shell h2,
.compute-shell h3 {
  max-width: none;
  margin-top: 42px;
  padding-bottom: 10px;
  border-bottom: 1px solid #333333;
  color: #fcfdff;
  font-family: "Red Hat Mono", Courier, monospace;
  font-weight: 400;
  letter-spacing: 0;
}

.compute-shell h2 {
  font-size: clamp(1.4rem, 4vw, 2rem);
}

.compute-shell h3 {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
}

.compute-shell p,
.compute-shell li,
.compute-shell td,
.compute-shell th {
  color: var(--peach);
  font-family: "Red Hat Mono", Courier, monospace;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}

.compute-shell strong,
.compute-shell .highlight {
  color: #ffffff;
  font-weight: 700;
}

.compute-intro {
  margin-bottom: 44px;
  padding: clamp(20px, 5vw, 40px) 15px;
  border: 2px solid var(--peach);
  text-align: center;
}

.compute-intro h2 {
  margin-top: 0;
}

.formula-box {
  margin: 20px 0;
  padding: 20px;
  overflow-x: auto;
  border: 1px solid #333333;
  border-left: 4px solid var(--peach);
  background: #111111;
  text-align: center;
}

.formula-box h3 {
  margin-top: 0;
}

.formula-box p {
  color: #ffffff;
  font-size: clamp(1rem, 2.3vw, 1.45rem);
}

.compute-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 28px;
  padding-left: 1.25rem;
}

.terminal-note {
  margin-top: 24px;
  padding: 15px;
  border: 1px dashed #444444;
  background: #080808;
}

.terminal-note p + p {
  margin-top: 8px;
}

.quiet {
  margin-top: 15px;
  opacity: 0.7;
}

.table-scroll {
  width: 100%;
  margin: 20px 0;
  overflow-x: auto;
  border: 1px solid #333333;
}

.grid-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.grid-table th,
.grid-table td {
  padding: 12px;
  border: 1px solid #333333;
  text-align: left;
  vertical-align: top;
}

.grid-table th {
  background-color: #111111;
  color: var(--peach);
}

.svg-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 46px;
  padding: clamp(10px, 3vw, 40px);
  overflow: hidden;
  border: 1px solid #333333;
  background: #050505;
}

.svg-container svg {
  width: 100%;
  height: auto;
  max-height: 80vh;
}

.compute-cta {
  margin-top: 50px;
  padding: clamp(20px, 6vw, 40px);
  background-color: var(--peach);
  color: #000000;
  text-align: center;
}

.compute-cta h2,
.compute-cta p,
.compute-cta strong {
  color: #000000;
}

.compute-cta h2 {
  margin-top: 0;
  border-bottom-color: rgba(0, 0, 0, 0.14);
}

.list {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.96rem;
}

form {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: rgba(10, 13, 11, 0.78);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--soft);
  font-size: 0.72rem;
  font-family: "Red Hat Mono", monospace;
  font-weight: 600;
  text-transform: uppercase;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: #060807;
  color: var(--text);
  padding: 13px 12px;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: rgba(216, 255, 83, 0.74);
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.button {
  width: max-content;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  border: 1px solid var(--acid);
  border-radius: 3px;
  background: var(--acid);
  color: #101300;
  font-family: "Red Hat Mono", monospace;
  font-weight: 600;
  font-size: 0.84rem;
  text-transform: uppercase;
  padding: 0 18px;
  cursor: pointer;
}

.button:hover {
  background: #efffa7;
}

.privacy-page {
  background: #f5f5f5;
  color: var(--ink);
}

.privacy-legal {
  width: min(1158px, calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 86px) 0 clamp(84px, 10vw, 130px);
}

.privacy-legal h1 {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: clamp(2.1rem, 3.4vw, 3rem);
  font-weight: 300;
  line-height: 1.16;
  letter-spacing: 0;
  text-transform: none;
}

.legal-date {
  max-width: 760px;
  margin: 20px 0 0;
  color: #333;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.45;
}

.legal-row {
  display: grid;
  grid-template-columns: minmax(170px, 260px) minmax(0, 1fr);
  gap: clamp(28px, 7vw, 86px);
  border-top: 1px solid rgba(18, 18, 18, 0.48);
  padding: 24px 0 22px;
}

.legal-date + .legal-row {
  margin-top: 46px;
}

.legal-row h2 {
  max-width: none;
  margin: 0;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: 0;
  text-transform: none;
}

.legal-row-copy {
  max-width: 720px;
}

.legal-row-copy p {
  max-width: none;
  margin: 0;
  color: #333;
  font-family: "Sora", sans-serif;
  font-size: clamp(0.95rem, 1.05vw, 1.05rem);
  font-weight: 300;
  line-height: 1.48;
  letter-spacing: 0;
}

.legal-row-copy p + p {
  margin-top: 22px;
}

.legal-row-copy strong {
  color: var(--ink);
  font-weight: 700;
}

.legal-row-copy a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.16em;
}

.site-footer {
  border-top: 0;
  min-height: 320px;
  padding: 60px 0 58px;
  background: #121212;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 0.9fr 1fr;
  grid-template-areas:
    "brand nav follow"
    "brand nav fine";
  gap: clamp(44px, 8vw, 120px);
  row-gap: 34px;
  align-items: start;
}

.footer-inner > div {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.footer-links {
  display: grid;
  gap: 4px;
  align-content: start;
  color: #f5f5f5;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.footer-inner > div:first-child {
  grid-area: brand;
}

.footer-inner > .footer-links:not(.social-links) {
  grid-area: nav;
}

.social-links {
  grid-area: follow;
}

.footer-links strong {
  margin-bottom: 24px;
  color: var(--text);
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: 1.25rem;
  font-weight: 300;
  text-transform: none;
}

.footer-links a:hover {
  color: var(--peach);
}

.fine-print {
  grid-area: fine;
  align-self: start;
  margin-top: 0;
  max-width: 330px;
  padding-top: 0;
  color: #f5f5f5;
  font-size: 0.95rem;
  line-height: 1.45;
  text-transform: none;
}

.fine-print span {
  display: block;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.social-links {
  grid-template-columns: repeat(3, max-content);
  column-gap: 13px;
  row-gap: 0;
  align-items: center;
  text-transform: none;
}

.social-links strong {
  grid-column: 1 / -1;
}

.social-links a {
  width: 19px;
  height: 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: transparent;
  font-family: "Red Hat Mono", monospace;
  font-size: 0;
  font-weight: 600;
  line-height: 1;
  background: center / contain no-repeat;
  transition: opacity 160ms ease, transform 160ms ease;
}

.social-links a:nth-of-type(1) {
  justify-content: flex-start;
  background-image: url("../media/social-in.avif");
}

.social-links a:nth-of-type(2) {
  background-image: url("../media/social-x.avif");
}

.social-links a:nth-of-type(3) {
  background-image: url("../media/social-f.avif");
}

.social-links a:hover,
.social-links a:nth-of-type(3):hover {
  opacity: 0.78;
  transform: translateY(-1px);
}

.site-footer .brand {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  color: #ffffff;
  font-family: "Sora", Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 300;
}

.site-footer .brand img {
  width: 28px;
  height: 28px;
  border-radius: 0;
}

@media (max-width: 920px) {
  :root {
    --header-expanded: 80px;
    --header-compact: 58px;
  }

  .site-header {
    padding-top: 16px;
  }

  .site-header.is-compact {
    padding-top: 9px;
  }

  .nav {
    width: min(1152px, calc(100% - 28px));
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 14px;
    border: 0;
    border-radius: 4px;
    background: #f7f7f7;
    color: var(--ink);
  }

  .brand {
    border-radius: 0;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 50px;
    left: 14px;
    right: 14px;
    z-index: 35;
    padding: 12px;
    border: 4px solid #bcbcbc;
    border-radius: 5px;
    background: #bcbcbc;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    min-height: 44px;
    border-bottom: 1px solid rgba(18, 18, 18, 0.12);
  }

  .command {
    justify-content: center;
    border-bottom: 0 !important;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-inner {
    padding-bottom: 84px;
  }

  .split,
  .media-band,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section::before {
    display: none;
  }

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

  .gap-content,
  .gap-section .grid {
    grid-template-columns: 1fr;
  }

  .gap-mark {
    display: none;
  }

  .about-crew-content,
  .about-values-content,
  .about-crew-cards,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-line-mark,
  .about-orbit-mark {
    display: none;
  }

  .asap-card-list {
    gap: 34px;
  }

  .asap-access-card,
  .asap-access-card:nth-child(2),
  .asap-access-card:nth-child(3) {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .asap-access-card {
    min-height: auto;
  }

  .asap-access-card span {
    margin-bottom: 56px;
  }

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

  .fine-print {
    grid-column: auto;
    margin-top: 28px;
  }
}

@media (max-width: 560px) {
  :root {
    --gutter: 18px;
    --header-expanded: 74px;
  }

  .site-header {
    padding: 14px 0 0;
  }

  .site-header.is-compact {
    padding-top: 9px;
  }

  .brand {
    min-width: 0;
    font-size: 0.82rem;
  }

  .brand img {
    width: 28px;
    height: 28px;
  }

  h1 {
    font-size: clamp(2.45rem, 12.8vw, 3.75rem);
  }

  h2 {
    font-size: clamp(2rem, 10.4vw, 3.15rem);
  }

  .lead {
    font-size: 1.06rem;
  }

  .section {
    padding: 64px 0;
  }

  .mission-section {
    padding: 48px var(--gutter) 58px;
  }

  .mission-section .lead {
    font-size: clamp(1.7rem, 8.6vw, 2.15rem);
  }

  .about-overview,
  .about-creed,
  .about-crew-section,
  .about-values-section {
    width: calc(100% - (var(--gutter) * 2));
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .about-title-card,
  .about-creed-card,
  .about-card {
    padding: 28px;
  }

  .about-title-card h2 {
    font-size: clamp(1.8rem, 8.5vw, 2.35rem);
  }

  .asap-page .asap-hero h1,
  .asap-access-card h2,
  .asap-request-section h2 {
    font-size: clamp(1.9rem, 9vw, 2.55rem);
  }

  .asap-page .asap-hero h1 {
    white-space: normal;
  }

  .asap-portal-showcase,
  .asap-card-zone,
  .asap-request-section {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .asap-form-wrap {
    padding: 30px 24px;
  }

  .card {
    min-height: 146px;
  }
}

@media (max-width: 780px) {
  .privacy-legal {
    padding-top: 48px;
    padding-bottom: 72px;
  }

  .legal-row {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 22px 0 26px;
  }

  .legal-row-copy {
    max-width: none;
  }
}

@media (max-width: 760px) {
  :root {
    --gutter: clamp(16px, 5vw, 22px);
    --header-expanded: 72px;
    --header-compact: 56px;
  }

  html,
  body {
    overflow-x: hidden;
  }

  .site-header,
  .site-header.is-compact {
    height: auto;
    min-height: var(--header-expanded);
    padding: 10px 0 12px;
  }

  .site-header.is-compact {
    min-height: var(--header-compact);
    padding-top: 8px;
  }

  .nav {
    position: relative;
    width: calc(100% - 24px);
    min-height: 44px;
    padding: 0 4px;
    border-width: 3px;
    gap: 8px;
  }

  .brand {
    flex: 1 1 auto;
    min-width: 0;
    gap: 8px;
    overflow: hidden;
    font-size: clamp(0.74rem, 3.25vw, 0.9rem);
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .brand img {
    width: 26px;
    height: 26px;
    flex: 0 0 auto;
  }

  .menu-toggle {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 0 12px;
    border: 0;
    border-radius: 4px;
    background: #111111;
    color: #ffffff;
    font-family: "Sora", Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
  }

  .nav-links {
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    padding: 8px;
    border-width: 3px;
    gap: 6px;
  }

  .nav-links a,
  .nav-links a:nth-child(1),
  .nav-links a:nth-child(2),
  .nav-links a:nth-child(3),
  .nav-links a:nth-child(4),
  .nav-links a:nth-child(5) {
    width: 100%;
    min-width: 0;
    min-height: 38px;
    padding: 0 12px;
    justify-content: center;
    border-bottom: 0;
  }

  .hero,
  .hero.compact {
    min-height: min(520px, 74svh);
  }

  .home-page .hero {
    min-height: min(620px, 86svh);
  }

  .hero-inner {
    padding: 96px 0 44px;
  }

  .home-page .hero-inner {
    width: min(1158px, calc(100% - (var(--gutter) * 2)));
    grid-template-columns: 1fr;
    gap: 22px;
    align-content: end;
    padding: 0 0 54px;
  }

  .home-page .hero h1 {
    max-width: 100%;
    font-size: clamp(1.85rem, 8.2vw, 2.45rem);
    line-height: 1.15;
    overflow-wrap: anywhere;
  }

  .home-page .hero .lead {
    max-width: 100%;
    font-size: clamp(1rem, 4.6vw, 1.18rem);
    overflow-wrap: anywhere;
  }

  .about-page .about-hero,
  .capacity-page .capacity-hero,
  .compute-page .compute-hero,
  .asap-page .asap-hero {
    min-height: min(440px, 68svh);
  }

  .about-page .about-hero .hero-inner,
  .asap-page .asap-hero .hero-inner {
    padding: 0 0 42px;
  }

  .about-page .about-hero h1,
  .capacity-page .capacity-hero h1,
  .compute-page .compute-hero h1,
  .asap-page .asap-hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
    line-height: 1.12;
    white-space: normal;
  }

  .section,
  .mission-section,
  .infrastructure-section {
    width: 100%;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
  }

  .split {
    gap: 22px;
  }

  .mission-section .stack,
  .infrastructure-section .stack {
    min-width: 0;
  }

  .mission-section .lead {
    max-width: 100%;
    font-size: clamp(1.7rem, 8vw, 2.25rem);
    line-height: 1.18;
  }

  .infrastructure-section .lead {
    max-width: 100%;
    font-size: clamp(0.82rem, 3.5vw, 0.96rem);
    line-height: 1.5;
  }

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

  .card {
    min-height: auto;
    padding: 24px;
  }

  .card h3 {
    overflow-wrap: anywhere;
    font-size: clamp(1.05rem, 5.2vw, 1.45rem);
  }

  .gap-section {
    padding-top: 54px;
    padding-bottom: 72px;
  }

  .gap-heading,
  .gap-rule,
  .gap-content {
    width: min(1158px, calc(100% - (var(--gutter) * 2)));
  }

  .gap-content {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 42px;
  }

  .gap-mark,
  .about-line-mark,
  .about-orbit-mark {
    display: none;
  }

  .about-overview,
  .about-creed,
  .about-crew-section,
  .about-values-section,
  .capacity-overview,
  .capacity-story,
  .asap-intro,
  .privacy-legal {
    width: calc(100% - (var(--gutter) * 2));
  }

  .about-overview,
  .about-creed,
  .about-crew-section,
  .about-values-section,
  .capacity-overview,
  .capacity-story {
    padding-top: 52px;
    padding-bottom: 60px;
  }

  .about-title-card,
  .capacity-title-card {
    min-height: 220px;
    margin-top: 40px;
    padding: 28px;
  }

  .about-title-card h2,
  .capacity-title-card h2 {
    font-size: clamp(1.85rem, 8.4vw, 2.5rem);
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .about-creed-card,
  .capacity-story-card {
    margin-top: 40px;
    padding: 30px 24px;
  }

  .about-crew-content,
  .about-values-content,
  .about-crew-cards,
  .about-values-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-card {
    min-height: auto;
    padding: 24px;
  }

  .capacity-story-lead {
    max-width: 100%;
    margin-left: 0;
  }

  .capacity-cyber-title {
    padding: 46px var(--gutter) 50px;
  }

  .capacity-cyber-title h2 {
    font-size: clamp(1.85rem, 8.2vw, 2.55rem);
    line-height: 1.18;
    overflow-wrap: anywhere;
  }

  .capacity-object-image {
    height: min(320px, 58vw);
  }

  .capacity-process {
    padding: 48px var(--gutter) 58px;
  }

  .capacity-process-copy {
    width: 100%;
  }

  .capacity-process-list {
    gap: 24px;
    margin-top: 58px;
  }

  .process-card,
  .process-card:nth-child(2),
  .process-card:nth-child(3),
  .process-card:nth-child(4),
  .process-card:nth-child(5),
  .asap-access-card,
  .asap-access-card:nth-child(2),
  .asap-access-card:nth-child(3) {
    width: 100% !important;
    margin-left: 0 !important;
  }

  .process-card {
    min-height: auto;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
  }

  .process-card p {
    min-width: 0;
    font-size: clamp(1.2rem, 5.8vw, 1.62rem);
    overflow-wrap: anywhere;
  }

  .button.capacity-dark-button {
    margin-top: 42px;
  }

  .capacity-registry {
    width: 100%;
    padding: 40px var(--gutter) 0;
  }

  .capacity-registry .stack,
  .capacity-registry .lead,
  .registry-video {
    width: 100%;
    max-width: 100%;
  }

  .capacity-page .capacity-registry h2,
  .capacity-registry .lead {
    margin-left: 0;
  }

  .asap-portal-showcase {
    padding: 38px var(--gutter) 18px;
  }

  .asap-intro {
    padding-top: 32px;
  }

  .asap-card-zone {
    padding: 64px var(--gutter) 72px;
  }

  .asap-card-list {
    width: 100%;
    gap: 34px;
  }

  .asap-access-card {
    min-height: auto;
    padding: 30px 24px;
  }

  .asap-access-card span {
    margin-bottom: 52px;
  }

  .asap-access-card h2 {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
  }

  .asap-request-section {
    padding: 52px var(--gutter) 72px;
  }

  .asap-request-section > .section-number,
  .asap-request-section > h2,
  .asap-request-section > .asap-rule,
  .asap-form-wrap {
    width: 100%;
  }

  .asap-form-wrap {
    padding: 30px 22px;
  }

  .asap-form-wrap form {
    margin-top: 34px;
  }

  .asap-form-wrap .button {
    min-height: 42px;
  }

  .compute-shell {
    padding: 24px 18px;
  }

  .table-scroll {
    overflow-x: auto;
  }

  .privacy-legal {
    padding-top: 48px;
    padding-bottom: 70px;
  }

  .privacy-legal h1 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .legal-row-copy p {
    overflow-wrap: anywhere;
  }

  .site-footer {
    min-height: 0;
    padding: 42px 0 46px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "nav"
      "follow"
      "fine";
    gap: 30px;
  }

  .footer-links strong {
    margin-bottom: 14px;
  }

  .fine-print {
    max-width: 100%;
  }
}
