@import url("https://fonts.googleapis.com/css2?family=DM+Mono:wght@300;400;500&family=Manrope:wght@400;500;600;700&display=swap");

:root {
  --ink: #0d0d0c;
  --paper: #f1efe8;
  --white: #fbfaf6;
  --muted: #716f68;
  --line: rgba(13, 13, 12, 0.16);
  --acid: #d9ff43;
  --orange: #ff5c35;
  --blue: #2962ff;
  --mint: #83f3c0;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Manrope", Arial, sans-serif;
  --mono: "DM Mono", Consolas, monospace;
  --shell: min(1500px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

svg {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  padding: 12px 18px;
  color: var(--ink);
  background: var(--acid);
  font: 500 12px var(--mono);
}

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

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 86px;
  padding: 0 32px;
  color: var(--white);
  background: linear-gradient(to bottom, rgba(13, 13, 12, 0.94), rgba(13, 13, 12, 0));
  transition: min-height 200ms ease, background 200ms ease, border-color 200ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(13, 13, 12, 0.91);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  color: inherit;
  text-decoration: none;
}

.brand__mark {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.4px;
  stroke-linecap: square;
}

.brand__slash {
  stroke: var(--acid);
}

.brand__name {
  font-size: 11px;
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a,
.header-contact {
  font: 400 11px var(--mono);
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

.site-nav sup {
  position: absolute;
  top: 1px;
  right: -15px;
  color: var(--acid);
  font-size: 9px;
}

.header-contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease;
}

.header-contact svg,
.button svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.6px;
  transition: transform 180ms ease;
}

.header-contact:hover {
  color: var(--ink);
  background: var(--acid);
  border-color: var(--acid);
}

.header-contact:hover svg,
.button:hover svg {
  transform: translateX(3px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 42%, rgba(217, 255, 67, 0.1), transparent 25%),
    var(--ink);
}

.hero__grid,
.contact__grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.13) 1px, transparent 1px);
  background-size: 88px 88px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 92%);
  mask-image: linear-gradient(to bottom, black, transparent 92%);
  pointer-events: none;
}

.hero__spotlight {
  position: absolute;
  top: var(--pointer-y, 45%);
  left: var(--pointer-x, 73%);
  width: 750px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(217, 255, 67, 0.055);
  filter: blur(12px);
  transform: translate(-50%, -50%);
  transition: top 250ms ease-out, left 250ms ease-out;
  pointer-events: none;
}

.hero__topline {
  position: absolute;
  z-index: 2;
  top: 108px;
  left: 50%;
  display: flex;
  justify-content: space-between;
  width: var(--shell);
  transform: translateX(-50%);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero__topline p {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 10px 0 0;
  color: #a5a49e;
  font: 400 11px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__topline p span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 14px var(--acid);
  animation: status-pulse 2s ease-in-out infinite;
}

.hero__copy {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: max(32px, calc((100% - min(1500px, calc(100% - 64px))) / 2));
  width: min(770px, 58vw);
  transform: translateY(-45%);
}

.hero__kicker,
.eyebrow {
  margin: 0 0 22px;
  color: var(--muted);
  font: 500 11px var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__kicker {
  color: #a5a49e;
}

.hero h1 {
  margin: 0;
  font-size: clamp(66px, 7.35vw, 132px);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.085em;
}

.hero__accent {
  display: inline-block;
  color: var(--acid);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.07em;
  transform: translateX(0.03em);
}

.hero__line {
  display: block;
}

.hero__lede {
  max-width: 620px;
  margin: 34px 0 0;
  color: #bab9b3;
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-width: 218px;
  min-height: 58px;
  padding: 0 20px;
  font: 500 11px var(--mono);
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.button--primary {
  color: var(--ink);
  background: var(--acid);
  border: 1px solid var(--acid);
  transition: gap 180ms ease, color 180ms ease, background 180ms ease;
}

.button--primary:hover {
  color: var(--acid);
  background: transparent;
}

.text-link {
  position: relative;
  padding: 11px 0;
  font: 400 11px var(--mono);
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  color: var(--acid);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, 3px);
}

.hero-system {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: clamp(-110px, -2vw, -20px);
  width: min(47vw, 760px);
  aspect-ratio: 1;
  transform: translateY(-48%);
}

.hero-system__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.hero-system__orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--acid);
}

.hero-system__orbit--outer {
  width: 88%;
  aspect-ratio: 1;
  animation: orbit 26s linear infinite;
}

.hero-system__orbit--inner {
  width: 57%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: orbit-reverse 17s linear infinite;
}

.hero-system__orbit--inner::after {
  top: auto;
  right: 18%;
  bottom: 1%;
  left: auto;
  background: var(--orange);
}

.hero-system__core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 29%;
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(18, 18, 16, 0.83);
  box-shadow:
    0 0 0 18px rgba(255, 255, 255, 0.015),
    0 0 90px rgba(217, 255, 67, 0.13);
  transform: translate(-50%, -50%);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-system__core svg {
  width: 49%;
  fill: none;
  stroke: var(--white);
  stroke-width: 3.3px;
}

.hero-system__core .system-slash {
  stroke: var(--acid);
}

.system-node {
  position: absolute;
  width: clamp(145px, 13vw, 205px);
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(17, 17, 15, 0.86);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.system-node small {
  display: block;
  margin-bottom: 19px;
  color: #aaa9a3;
  font: 400 9px var(--mono);
  letter-spacing: 0.08em;
}

.system-node b {
  display: block;
  font-size: clamp(11px, 1vw, 14px);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.system-node > span {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  color: #c0bfb8;
  font: 400 9px var(--mono);
  text-transform: uppercase;
}

.system-node > span > i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--acid);
}

.system-node--one {
  top: 14%;
  left: 4%;
  animation: float 5s ease-in-out infinite;
}

.system-node--two {
  top: 22%;
  right: 0;
  animation: float 6s 0.8s ease-in-out infinite;
}

.system-node--three {
  right: 11%;
  bottom: 13%;
  animation: float 5.4s 0.3s ease-in-out infinite;
}

.node-bars {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 28px;
  margin: -5px 0 10px;
}

.node-bars i {
  width: 5px;
  height: 40%;
  background: var(--acid);
  animation: bars 1s ease-in-out infinite alternate;
}

.node-bars i:nth-child(2n) {
  height: 85%;
  animation-delay: 0.2s;
}

.node-bars i:nth-child(3n) {
  height: 60%;
  animation-delay: 0.4s;
}

.node-progress {
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
}

.node-progress i {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: 0;
  background: var(--orange);
}

.hero-system__label {
  position: absolute;
  right: 25%;
  bottom: 2%;
  margin: 0;
  color: #aaa9a3;
  font: 400 10px var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero__footer {
  position: absolute;
  z-index: 3;
  bottom: 27px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--shell);
  transform: translateX(-50%);
}

.availability {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #a5a49e;
  font: 400 10px var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.availability span {
  width: 7px;
  height: 7px;
  border: 1px solid var(--acid);
  border-radius: 50%;
  background: rgba(217, 255, 67, 0.24);
}

.scroll-cue {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #8b8a85;
  font: 400 10px var(--mono);
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.scroll-cue span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--acid);
  animation: scroll-bob 1.8s ease-in-out infinite;
}

.ticker {
  overflow: hidden;
  color: var(--ink);
  background: var(--acid);
  border-block: 1px solid var(--ink);
}

.ticker__track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  padding: 17px 0;
  animation: ticker 28s linear infinite;
}

.ticker span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.ticker i {
  font-style: normal;
}

.work {
  padding: 150px 0 130px;
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 72px;
}

.section-intro h2,
.capabilities__head h2,
.about__statement h2,
.contact h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 104px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.section-intro > p {
  max-width: 490px;
  margin: 0 0 6px;
  color: #64625c;
  font-size: 16px;
  line-height: 1.65;
}

.project {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(460px, 1.18fr);
  min-height: 730px;
  margin-bottom: 24px;
  color: var(--white);
  background: var(--ink);
  overflow: hidden;
}

.project__meta {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  width: 100%;
  height: 56px;
  padding: 0 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  font: 400 10px var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project__meta > span {
  color: var(--acid);
}

.project__meta p {
  margin: 0;
  color: #aaa9a3;
}

.project__meta small {
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #8c8b85;
  font: inherit;
}

.project__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 104px clamp(36px, 5vw, 82px) 60px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.project__status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  color: #b3b2ac;
  font: 400 10px var(--mono);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.project__status span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--acid);
}

.project__copy h3 {
  margin: 0;
  font-size: clamp(56px, 6vw, 102px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.project__tagline {
  max-width: 570px;
  margin: 25px 0 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(21px, 2vw, 31px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.project__body {
  max-width: 590px;
  margin: 24px 0 0;
  color: #a9a8a2;
  font-size: 14px;
  line-height: 1.7;
}

.project__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.project__facts div {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.project__facts b {
  color: #9a9993;
  font: 400 10px var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project__facts span {
  color: #c4c3bd;
  font-size: 12px;
  line-height: 1.5;
}

.project__link {
  align-self: flex-start;
  margin-top: 28px;
  padding-bottom: 6px;
  color: var(--acid);
  border-bottom: 1px solid rgba(217, 255, 67, 0.4);
  font: 400 10px var(--mono);
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.project__link span {
  display: inline-block;
  margin-left: 9px;
  transition: transform 180ms ease;
}

.project__link:hover span {
  transform: translate(3px, -3px);
}

.project-stage {
  position: relative;
  z-index: 1;
  min-height: 100%;
  overflow: hidden;
}

.project-stage--operator {
  display: grid;
  place-items: center;
  padding: 100px 6% 70px;
  background:
    linear-gradient(rgba(217, 255, 67, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 255, 67, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 55% 40%, rgba(217, 255, 67, 0.22), transparent 45%),
    #1b2010;
  background-size: 48px 48px, 48px 48px, auto, auto;
}

.project-stage--operator::before {
  content: "";
  position: absolute;
  inset: 10% 8%;
  border: 1px solid rgba(217, 255, 67, 0.3);
  border-radius: 50%;
  transform: rotate(-16deg);
}

.operator-window {
  position: relative;
  z-index: 2;
  width: min(590px, 94%);
  background: rgba(13, 13, 12, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 24px 30px 0 rgba(0, 0, 0, 0.23);
  transform: rotate(1.5deg);
}

.window-bar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 42px;
  padding: 0 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.window-bar > span {
  display: flex;
  gap: 5px;
}

.window-bar > span i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4d4d48;
}

.window-bar b,
.window-bar small {
  color: #aaa9a3;
  font: 400 9px var(--mono);
  letter-spacing: 0.1em;
}

.window-bar small {
  justify-self: end;
  color: var(--acid);
}

.operator-body {
  padding: clamp(22px, 4vw, 42px);
}

.operator-label {
  margin: 0 0 8px;
  color: #6f6e68;
  font: 400 10px var(--mono);
  letter-spacing: 0.1em;
}

.operator-body h4 {
  margin: 0 0 32px;
  font-size: clamp(22px, 2.4vw, 34px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.operator-step {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  min-height: 68px;
  padding: 0 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.operator-step > span {
  color: #aaa9a3;
  font: 400 9px var(--mono);
}

.operator-step div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.operator-step b {
  font-size: 12px;
  font-weight: 500;
}

.operator-step small {
  color: #aaa9a3;
  font: 400 9px var(--mono);
}

.operator-step > i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: var(--ink);
  border-radius: 50%;
  background: var(--acid);
  font: normal 12px var(--sans);
}

.operator-step button {
  padding: 9px 12px;
  color: var(--ink);
  border: 0;
  background: var(--acid);
  font: 500 9px var(--mono);
  text-transform: uppercase;
}

.operator-step.is-active {
  margin-top: 6px;
  border: 1px solid rgba(217, 255, 67, 0.6);
  background: rgba(217, 255, 67, 0.05);
}

.operator-command {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: 9%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 13px;
  min-width: 270px;
  padding: 12px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
  transform: rotate(-3deg);
}

.command-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  background: var(--acid);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
}

.operator-command p {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  font-size: 11px;
}

.operator-command small {
  color: #66645f;
  font: 400 9px var(--mono);
  text-transform: uppercase;
}

.operator-command > i {
  font-style: normal;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.project-grid .project {
  display: flex;
  flex-direction: column;
  min-height: 1050px;
  margin: 0;
}

.project-grid .project-stage {
  order: 1;
  height: 480px;
  min-height: 480px;
  margin-top: 56px;
}

.project-grid .project__copy {
  order: 2;
  flex: 1;
  justify-content: flex-start;
  padding: 48px clamp(30px, 4vw, 58px) 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-right: 0;
}

.project-grid .project__copy h3 {
  font-size: clamp(45px, 4.5vw, 73px);
}

.project-grid .project__tagline {
  font-size: clamp(20px, 1.7vw, 27px);
}

.project--research {
  background: #142b25;
}

.project-stage--ledger {
  padding: 38px;
  color: var(--ink);
  background: var(--mint);
}

.project-stage--ledger::after {
  content: "SOURCE / SOURCE / SOURCE / SOURCE";
  position: absolute;
  right: -85px;
  bottom: 43px;
  color: rgba(13, 13, 12, 0.2);
  font: 500 33px var(--mono);
  letter-spacing: -0.08em;
  transform: rotate(-90deg);
}

.ledger-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(13, 13, 12, 0.42);
  font: 500 8px var(--mono);
  letter-spacing: 0.09em;
}

.ledger-head i {
  padding: 7px 9px;
  color: var(--mint);
  background: var(--ink);
  font-style: normal;
}

.ledger-lines {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 30px;
}

.ledger-lines i {
  width: 77%;
  height: 7px;
  background: rgba(13, 13, 12, 0.78);
}

.ledger-lines i:nth-child(2) {
  width: 94%;
}

.ledger-lines i:nth-child(3) {
  width: 58%;
}

.ledger-lines i:nth-child(4) {
  width: 83%;
}

.ledger-lines i:nth-child(5) {
  width: 36%;
}

.ledger-hash {
  position: absolute;
  bottom: 38px;
  left: 38px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ledger-hash small {
  font: 400 10px var(--mono);
  letter-spacing: 0.1em;
}

.ledger-hash span {
  font: 500 clamp(17px, 2.1vw, 29px) var(--mono);
  letter-spacing: -0.05em;
}

.ledger-map {
  position: absolute;
  right: 13%;
  bottom: 76px;
  width: 42%;
  fill: var(--mint);
  stroke: var(--ink);
  stroke-width: 2px;
  overflow: visible;
}

.project--local {
  background: #171717;
}

.project-stage--terminal {
  padding: 34px;
  color: #a8ffca;
  background:
    radial-gradient(circle at 75% 25%, rgba(41, 98, 255, 0.38), transparent 35%),
    #091021;
}

.project-stage--terminal::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 3px,
    rgba(255, 255, 255, 0.22) 4px
  );
}

.terminal-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(168, 255, 202, 0.3);
  font: 400 10px var(--mono);
  letter-spacing: 0.1em;
}

.terminal-top i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #a8ffca;
  box-shadow: 0 0 13px #a8ffca;
}

.terminal-copy {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  font: 400 clamp(10px, 1vw, 13px) var(--mono);
}

.terminal-copy p {
  margin: 0 0 16px;
}

.terminal-copy span {
  margin-right: 10px;
  color: var(--white);
}

.terminal-copy small {
  display: inline-block;
  width: 45px;
  color: #6576b7;
  font: inherit;
}

.terminal-active i {
  display: inline-block;
  width: 8px;
  height: 14px;
  vertical-align: middle;
  background: #a8ffca;
  animation: blink 0.8s step-end infinite;
}

.terminal-stats {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 34px;
  left: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(168, 255, 202, 0.24);
  border: 1px solid rgba(168, 255, 202, 0.24);
}

.terminal-stats span {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 15px;
  background: #091021;
}

.terminal-stats small {
  color: #6576b7;
  font: 400 9px var(--mono);
}

.terminal-stats b {
  font: 500 11px var(--mono);
}

.project--creative {
  color: var(--ink);
  background: #f0b8f6;
}

.project--creative .project__meta {
  border-color: rgba(13, 13, 12, 0.22);
}

.project--creative .project__meta > span,
.project--creative .project__meta p,
.project--creative .project__meta small,
.project--creative .project__body,
.project--creative .project__status,
.project--creative .project__facts b,
.project--creative .project__facts span {
  color: rgba(13, 13, 12, 0.68);
}

.project--creative .project__meta small,
.project--creative .project__facts {
  border-color: rgba(13, 13, 12, 0.22);
}

.project--creative .project__copy {
  border-color: rgba(13, 13, 12, 0.22);
}

.project--creative .project__status span {
  background: var(--blue);
}

.project-stage--portal {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8), transparent 6%),
    radial-gradient(circle at 50% 50%, #f7f06d, #765dff 20%, #0e153c 44%, #080b19 70%);
}

.portal-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.portal-orbit--one {
  width: 72%;
  aspect-ratio: 1;
  animation: portal-spin 9s linear infinite;
}

.portal-orbit--two {
  width: 48%;
  aspect-ratio: 1;
  border-style: dashed;
  animation: portal-spin-reverse 7s linear infinite;
}

.portal-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--white);
  transform: translate(-50%, -50%);
  text-shadow: 0 3px 20px rgba(0, 0, 0, 0.45);
}

.portal-core span {
  font-size: clamp(26px, 3vw, 50px);
  font-weight: 500;
  letter-spacing: -0.06em;
}

.portal-core small {
  font: 400 10px var(--mono);
  letter-spacing: 0.13em;
}

.portal-card {
  position: absolute;
  width: 16%;
  aspect-ratio: 0.78;
  border: 4px solid var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.38);
}

.portal-card--one {
  top: 18%;
  left: 16%;
  background: linear-gradient(135deg, #ff855f, #f9e955);
  transform: rotate(-12deg);
}

.portal-card--two {
  top: 14%;
  right: 14%;
  background: linear-gradient(135deg, #74f6d0, #2677ff);
  transform: rotate(10deg);
}

.portal-card--three {
  right: 12%;
  bottom: 10%;
  background: linear-gradient(135deg, #ff6bb6, #7748ff);
  transform: rotate(-7deg);
}

.demo-lab {
  padding: 140px 0 150px;
  color: var(--ink);
  background: #d8d5cc;
  border-top: 1px solid var(--ink);
}

.demo-lab__intro {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 68px;
}

.demo-lab__intro h2 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(54px, 6.2vw, 106px);
  font-weight: 500;
  line-height: 0.89;
  letter-spacing: -0.08em;
}

.demo-lab__intro h2 span {
  display: block;
  color: var(--blue);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.demo-lab__intro-copy {
  max-width: 470px;
  padding-bottom: 8px;
}

.demo-lab__intro-copy p {
  margin: 0;
  color: #55534e;
  font-size: 16px;
  line-height: 1.7;
}

.demo-lab__intro-copy small {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 10px;
  border: 1px solid rgba(13, 13, 12, 0.35);
  font: 500 10px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.demo-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 720px;
  color: inherit;
  border: 1px solid var(--ink);
  text-decoration: none;
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease;
}

.demo-card:hover {
  z-index: 2;
  box-shadow: 10px 12px 0 var(--ink);
  transform: translate(-5px, -6px);
}

.demo-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  padding: 0 18px;
  border-bottom: 1px solid currentColor;
  font: 500 10px var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-card__top i {
  font-style: normal;
}

.demo-card__visual {
  position: relative;
  height: 380px;
  min-height: 380px;
  overflow: hidden;
  border-bottom: 1px solid currentColor;
}

.demo-card__copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 30px;
}

.demo-card__copy h3 {
  margin: 0;
  font-size: clamp(34px, 3.5vw, 58px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.demo-card__copy p {
  max-width: 560px;
  margin: 19px 0 28px;
  color: rgba(13, 13, 12, 0.7);
  font-size: 14px;
  line-height: 1.7;
}

.demo-card__copy > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(13, 13, 12, 0.25);
  font: 500 11px var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.demo-card__copy > span i {
  font-size: 18px;
  font-style: normal;
  transition: transform 180ms ease;
}

.demo-card:hover .demo-card__copy > span i {
  transform: translateX(6px);
}

.demo-card--commerce {
  background: #f3eee2;
}

.demo-card__visual--commerce {
  padding: 30px;
  background: #f05a38;
}

.mini-store {
  height: 100%;
  padding: 18px;
  color: #17231b;
  background: #eff2df;
  box-shadow: 16px 19px 0 rgba(23, 35, 27, 0.18);
  transform: rotate(-1.5deg);
}

.mini-store__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #17231b;
  font: 500 8px var(--mono);
  text-transform: uppercase;
}

.mini-store__nav b {
  font-family: var(--serif);
  font-size: 17px;
}

.mini-store__hero {
  position: relative;
  padding: 29px 0 20px;
}

.mini-store__hero small {
  font: 500 8px var(--mono);
}

.mini-store__hero strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: clamp(29px, 3.2vw, 48px);
  font-weight: 400;
  line-height: 0.82;
  letter-spacing: -0.06em;
}

.mini-store__hero > i {
  position: absolute;
  right: 0;
  bottom: 22px;
  padding: 8px;
  color: #eff2df;
  background: #17231b;
  font: normal 7px var(--mono);
}

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

.mini-store__products i {
  position: relative;
  height: 92px;
  background:
    radial-gradient(circle at 50% 55%, #f1bb48 0 18%, transparent 19%),
    #d7ddc2;
}

.mini-store__products i:nth-child(2) {
  background:
    linear-gradient(135deg, transparent 35%, #294b3a 36% 63%, transparent 64%),
    #cdd6b2;
}

.mini-store__products i:nth-child(3) {
  background:
    radial-gradient(ellipse at 50% 60%, #f05a38 0 22%, transparent 23%),
    #e5e8cf;
}

.demo-card--campaign {
  color: #101514;
  background: #c8ff4d;
}

.demo-card__visual--campaign {
  padding: 30px;
  color: #f5f0e7;
  background:
    radial-gradient(circle at 75% 25%, rgba(200, 255, 77, 0.24), transparent 25%),
    #172724;
}

.mini-campaign {
  position: relative;
  height: 100%;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.mini-campaign > span {
  font: 500 9px var(--mono);
  letter-spacing: 0.12em;
}

.mini-campaign > strong {
  display: block;
  margin-top: 68px;
  font-size: clamp(31px, 4vw, 64px);
  font-weight: 500;
  line-height: 0.85;
  letter-spacing: -0.07em;
}

.mini-campaign > strong em {
  color: #c8ff4d;
  font-family: var(--serif);
  font-weight: 400;
}

.mini-campaign__metric {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 165px;
  padding: 15px;
  color: #101514;
  background: #f5f0e7;
}

.mini-campaign__metric small {
  font: 500 8px var(--mono);
}

.mini-campaign__metric b {
  display: block;
  margin: 8px 0 12px;
  font-size: 34px;
  letter-spacing: -0.06em;
}

.mini-campaign__metric i {
  display: block;
  height: 22px;
  background:
    linear-gradient(135deg, transparent 0 30%, #172724 31% 36%, transparent 37% 48%, #172724 49% 55%, transparent 56% 68%, #172724 69% 76%, transparent 77%);
}

.demo-card--delivery {
  color: #d9ff43;
  background: #111110;
}

.demo-card--delivery .demo-card__copy p {
  color: rgba(255, 255, 255, 0.66);
}

.demo-card--delivery .demo-card__copy > span {
  border-color: rgba(255, 255, 255, 0.22);
}

.demo-card__visual--delivery {
  display: grid;
  padding: 30px;
  place-items: center;
  background:
    linear-gradient(rgba(217, 255, 67, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 255, 67, 0.07) 1px, transparent 1px),
    #101811;
  background-size: 34px 34px;
}

.mini-pipeline {
  width: 100%;
  padding: 22px;
  color: #e7e9e0;
  border: 1px solid rgba(217, 255, 67, 0.5);
  background: rgba(13, 13, 12, 0.92);
  box-shadow: 13px 13px 0 rgba(217, 255, 67, 0.1);
}

.mini-pipeline__head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font: 500 9px var(--mono);
}

.mini-pipeline__head span {
  color: #d9ff43;
}

.mini-pipeline > strong {
  display: block;
  margin-top: 30px;
  font-size: clamp(23px, 2.8vw, 42px);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.mini-pipeline__flow {
  display: flex;
  align-items: center;
  margin-top: 35px;
}

.mini-pipeline__flow > i {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
  border: 1px solid rgba(217, 255, 67, 0.44);
  font: normal 8px var(--mono);
}

.mini-pipeline__flow > i:last-child {
  color: #101811;
  background: #d9ff43;
}

.mini-pipeline__flow small {
  font: 500 9px var(--mono);
}

.mini-pipeline__flow > b {
  width: 14px;
  height: 1px;
  background: #d9ff43;
}

.demo-card--hardware {
  color: #f0eee7;
  background: #172fef;
}

.demo-card--hardware .demo-card__copy p {
  color: rgba(255, 255, 255, 0.72);
}

.demo-card--hardware .demo-card__copy > span {
  border-color: rgba(255, 255, 255, 0.27);
}

.demo-card__visual--hardware {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 28px;
  background:
    repeating-linear-gradient(135deg, transparent 0 16px, rgba(255, 255, 255, 0.08) 17px 18px),
    #f0eee7;
}

.mini-rack {
  width: 48%;
  padding: 14px;
  color: #f0eee7;
  border: 5px solid #111110;
  background: #2b2b29;
  box-shadow: 12px 14px 0 rgba(17, 17, 16, 0.18);
}

.mini-rack__unit {
  display: grid;
  grid-template-columns: 1fr repeat(4, 8px);
  align-items: center;
  gap: 7px;
  height: 48px;
  margin-bottom: 7px;
  padding: 0 10px;
  border: 1px solid #63625e;
  background: #171716;
}

.mini-rack__unit span {
  height: 4px;
  background: #5a5955;
}

.mini-rack__unit i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d9ff43;
  box-shadow: 0 0 5px #d9ff43;
}

.mini-rack__readout {
  display: flex;
  justify-content: space-between;
  padding-top: 6px;
  font: 500 8px var(--mono);
}

.mini-rack__readout b {
  color: #d9ff43;
}

.mini-rack__label {
  color: #172fef;
  font-size: clamp(29px, 4vw, 60px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: -0.07em;
}

.capabilities {
  padding: 135px 0 0;
  color: var(--white);
  background: var(--ink);
}

.capabilities__head {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: 40px;
  padding-bottom: 100px;
}

.capabilities__head .eyebrow {
  color: #807f79;
}

.capabilities__head h2 {
  max-width: 1100px;
  font-size: clamp(46px, 5.3vw, 90px);
}

.capabilities__head h2 span {
  display: block;
  color: #74736e;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.capability-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.capability-row {
  display: grid;
  grid-template-columns: 0.3fr 1fr 0.75fr 50px;
  align-items: center;
  gap: 32px;
  min-height: 136px;
  padding: 0 max(32px, calc((100% - min(1500px, calc(100% - 64px))) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: color 220ms ease, background 220ms ease;
}

.capability-row > span {
  color: #71706a;
  font: 400 10px var(--mono);
}

.capability-row h3 {
  margin: 0;
  font-size: clamp(25px, 2.3vw, 39px);
  font-weight: 500;
  letter-spacing: -0.05em;
}

.capability-row p {
  max-width: 440px;
  margin: 0;
  color: #96958f;
  font-size: 13px;
  line-height: 1.65;
}

.capability-row > i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  font-style: normal;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.capability-row:hover {
  color: var(--ink);
  background: var(--acid);
}

.capability-row:hover p,
.capability-row:hover > span {
  color: rgba(13, 13, 12, 0.65);
}

.capability-row:hover > i {
  color: var(--acid);
  background: var(--ink);
  transform: rotate(-8deg);
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(70px, 10vw, 180px);
  padding-top: 150px;
  padding-bottom: 150px;
}

.about__statement h2 {
  font-size: clamp(52px, 5.5vw, 92px);
}

.about__statement h2 span {
  display: block;
  color: var(--orange);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.about__copy {
  padding-top: 50px;
}

.about__copy p {
  margin: 0 0 24px;
  color: #65635e;
  font-size: 15px;
  line-height: 1.75;
}

.about__copy .about__lead {
  margin-bottom: 34px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(25px, 2.5vw, 39px);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.about__principles {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 25px;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.about__principles article {
  min-height: 190px;
  padding: 24px;
  background: var(--paper);
  transition: color 180ms ease, background 180ms ease;
}

.about__principles article:hover {
  color: var(--white);
  background: var(--ink);
}

.about__principles span {
  color: var(--orange);
  font: 500 9px var(--mono);
}

.about__principles h3 {
  max-width: 270px;
  margin: 72px 0 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.contact {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--blue);
}

.contact__grid {
  opacity: 0.25;
  background-size: 70px 70px;
  -webkit-mask-image: none;
  mask-image: none;
}

.contact__inner {
  position: relative;
  z-index: 2;
  padding-top: 125px;
  padding-bottom: 115px;
}

.contact .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

.contact h2 {
  max-width: 1200px;
  font-size: clamp(64px, 8.7vw, 150px);
  line-height: 0.83;
}

.contact h2 span {
  display: block;
  color: var(--acid);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
}

.contact__bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 80px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.contact__bottom > p {
  max-width: 510px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 1.7;
}

.contact-button {
  display: flex;
  align-items: center;
  gap: 70px;
  padding: 10px 10px 10px 22px;
  color: var(--ink);
  background: var(--acid);
  font: 500 11px var(--mono);
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition: gap 200ms ease;
}

.contact-button i {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  font-size: 19px;
  font-style: normal;
}

.contact-button:hover {
  gap: 85px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: center;
  gap: 28px;
  min-height: 132px;
  color: var(--white);
  background: var(--ink);
}

.site-footer::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  z-index: -1;
  height: 132px;
  background: var(--ink);
}

.site-footer > p,
.site-footer > small,
.site-footer > div a {
  color: #aaa9a3;
  font: 400 10px var(--mono);
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer > div {
  display: flex;
  gap: 20px;
}

.site-footer > div a:hover {
  color: var(--acid);
}

.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

@keyframes orbit {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes orbit-reverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes bars {
  to {
    height: 95%;
  }
}

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

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@keyframes portal-spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes portal-spin-reverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes status-pulse {
  50% {
    opacity: 0.45;
    box-shadow: 0 0 4px var(--acid);
  }
}

@keyframes scroll-bob {
  50% {
    transform: translateY(4px);
  }
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 23px;
  }

  .hero__copy {
    width: 66vw;
  }

  .hero-system {
    right: -14%;
    width: 55vw;
    opacity: 0.74;
  }

  .system-node--one {
    left: 7%;
  }

  .project {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .project-grid .project {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 730px;
  }

  .project-grid .project-stage {
    order: 2;
    height: auto;
    min-height: 100%;
    margin-top: 56px;
  }

  .project-grid .project__copy {
    order: 1;
    justify-content: center;
    padding-top: 104px;
    border-top: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .capability-row {
    grid-template-columns: 0.18fr 1fr 0.75fr 50px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: calc(100% - 40px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 72px;
    padding-inline: 20px;
  }

  .site-header.is-scrolled {
    min-height: 64px;
  }

  .header-contact {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 22px;
    gap: 10px;
    align-items: center;
    padding: 10px 0 10px 10px;
    color: var(--white);
    border: 0;
    background: transparent;
    font: 400 9px var(--mono);
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .menu-toggle span {
    grid-row: 1 / 3;
  }

  .menu-toggle i {
    display: block;
    width: 22px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] i:first-of-type {
    transform: translateY(2px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i:last-of-type {
    transform: translateY(-2px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 18px;
    padding: 100px 20px;
    color: var(--white);
    background: var(--ink);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
  }

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

  .site-nav a {
    font-family: var(--sans);
    font-size: clamp(42px, 11vw, 82px);
    font-weight: 500;
    letter-spacing: -0.07em;
    text-transform: none;
  }

  .site-nav sup {
    top: 6px;
    right: -20px;
    font-family: var(--mono);
    font-size: 9px;
  }

  .hero {
    min-height: 920px;
  }

  .hero__topline {
    top: 88px;
  }

  .hero__copy {
    top: 27%;
    left: 20px;
    width: calc(100% - 40px);
    transform: none;
  }

  .hero h1 {
    font-size: clamp(58px, 12vw, 90px);
  }

  .hero__lede {
    max-width: 620px;
  }

  .hero-system {
    top: auto;
    right: -10%;
    bottom: 10px;
    width: 72vw;
    min-width: 590px;
    transform: none;
  }

  .hero__footer {
    bottom: 20px;
  }

  .hero__footer .availability {
    max-width: 330px;
  }

  .scroll-cue {
    display: none;
  }

  .section-intro {
    grid-template-columns: 1fr;
  }

  .section-intro > p {
    max-width: 600px;
  }

  .project,
  .project-grid .project {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .project__copy,
  .project-grid .project__copy {
    order: 2;
    justify-content: flex-start;
    padding-top: 52px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-right: 0;
  }

  .project-stage,
  .project-grid .project-stage {
    order: 1;
    height: 560px;
    min-height: 560px;
    margin-top: 56px;
  }

  .project--creative .project-stage {
    order: 1;
  }

  .project--creative .project__copy {
    order: 2;
  }

  .demo-lab__intro {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .demo-lab__intro-copy {
    max-width: 620px;
  }

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

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

  .capability-row {
    grid-template-columns: 50px 1fr 44px;
    gap: 18px;
    min-height: 125px;
    padding-inline: 20px;
  }

  .capability-row p {
    display: none;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about__copy {
    padding-top: 30px;
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    padding-block: 35px;
  }

  .site-footer > p {
    display: none;
  }

  .site-footer > div {
    justify-self: end;
  }

  .site-footer > small {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .hero {
    min-height: 840px;
  }

  .hero__topline p:last-child {
    display: none;
  }

  .hero__copy {
    top: 170px;
    left: 14px;
    width: calc(100% - 28px);
  }

  .hero__kicker {
    margin-bottom: 14px;
    font-size: 10px;
  }

  .hero h1 {
    font-size: clamp(48px, 16vw, 71px);
    line-height: 0.89;
  }

  .hero__lede {
    margin-top: 25px;
    font-size: 14px;
    line-height: 1.55;
  }

  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
  }

  .button {
    min-width: 200px;
    min-height: 51px;
  }

  .hero-system {
    right: -38%;
    bottom: -70px;
    width: 620px;
    min-width: 620px;
    opacity: 0.42;
  }

  .system-node {
    display: none;
  }

  .hero__footer {
    bottom: 14px;
  }

  .availability {
    max-width: 275px;
    font-size: 10px;
    line-height: 1.6;
  }

  .work {
    padding: 95px 0 80px;
  }

  .section-intro {
    gap: 28px;
    margin-bottom: 45px;
  }

  .section-intro h2,
  .capabilities__head h2,
  .about__statement h2 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .section-intro > p {
    font-size: 14px;
  }

  .project__meta {
    grid-template-columns: 31px 1fr;
    padding-inline: 15px;
  }

  .project__meta small {
    display: none;
  }

  .project-stage,
  .project-grid .project-stage {
    height: 390px;
    min-height: 390px;
  }

  .project__copy,
  .project-grid .project__copy {
    padding: 39px 22px 44px;
  }

  .project__copy h3,
  .project-grid .project__copy h3 {
    font-size: clamp(44px, 15vw, 66px);
  }

  .project__tagline,
  .project-grid .project__tagline {
    font-size: 21px;
  }

  .project__facts {
    grid-template-columns: 1fr;
    gap: 17px;
  }

  .project-stage--operator {
    padding-inline: 10px;
  }

  .operator-window {
    width: 96%;
    box-shadow: 12px 16px 0 rgba(0, 0, 0, 0.22);
  }

  .operator-body {
    padding: 22px 16px;
  }

  .operator-body h4 {
    margin-bottom: 19px;
  }

  .operator-step {
    min-height: 56px;
    padding-inline: 8px;
  }

  .operator-command {
    right: 5px;
    bottom: 13px;
    min-width: 240px;
  }

  .project-stage--ledger,
  .project-stage--terminal {
    padding: 23px;
  }

  .ledger-hash {
    bottom: 24px;
    left: 23px;
  }

  .terminal-stats {
    right: 23px;
    bottom: 23px;
    left: 23px;
  }

  .demo-lab {
    padding: 90px 0;
  }

  .demo-lab__intro {
    margin-bottom: 42px;
  }

  .demo-lab__intro h2 {
    font-size: clamp(46px, 15vw, 66px);
  }

  .demo-card {
    min-height: 630px;
  }

  .demo-card__visual {
    height: 330px;
    min-height: 330px;
  }

  .demo-card__copy {
    padding: 24px 20px;
  }

  .demo-card__copy h3 {
    font-size: 42px;
  }

  .demo-card__visual--commerce,
  .demo-card__visual--campaign,
  .demo-card__visual--delivery,
  .demo-card__visual--hardware {
    padding: 18px;
  }

  .mini-store__hero > i {
    display: none;
  }

  .mini-campaign > strong {
    margin-top: 44px;
  }

  .mini-pipeline__flow > i {
    padding: 8px 5px;
    font-size: 7px;
  }

  .mini-pipeline__flow > b {
    width: 7px;
  }

  .mini-rack {
    width: 54%;
  }

  .capabilities {
    padding-top: 90px;
  }

  .capabilities__head {
    gap: 20px;
    padding-bottom: 65px;
  }

  .capability-row {
    grid-template-columns: 27px 1fr 36px;
    min-height: 105px;
  }

  .capability-row h3 {
    font-size: 24px;
  }

  .capability-row > i {
    width: 36px;
    height: 36px;
  }

  .about {
    padding-top: 95px;
    padding-bottom: 95px;
  }

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

  .about__principles article {
    min-height: 140px;
  }

  .about__principles h3 {
    margin-top: 45px;
  }

  .contact__inner {
    padding-top: 85px;
    padding-bottom: 75px;
  }

  .contact h2 {
    font-size: clamp(54px, 18vw, 82px);
  }

  .contact__bottom {
    align-items: stretch;
    flex-direction: column;
    margin-top: 55px;
  }

  .contact-button {
    justify-content: space-between;
    gap: 20px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .site-footer > div {
    justify-self: start;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
