:root {
  --ink: #191a18;
  --ink-soft: #2a2c28;
  --paper: #f1f0e9;
  --paper-deep: #e4e3db;
  --lime: #c8ff38;
  --line: rgba(25, 26, 24, 0.22);
  --line-light: rgba(241, 240, 233, 0.25);
  --mono: "SFMono-Regular", "Cascadia Mono", "Roboto Mono", "Noto Sans Mono CJK SC", monospace;
  --sans: "Arial Narrow", "Noto Sans SC", "Microsoft YaHei", Arial, sans-serif;
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image:
    repeating-linear-gradient(0deg, rgba(25, 26, 24, .018) 0, rgba(25, 26, 24, .018) 1px, transparent 1px, transparent 4px),
    radial-gradient(circle at 20% 30%, rgba(25, 26, 24, .035) 0 1px, transparent 1px);
  background-size: auto, 7px 7px;
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--lime);
  font: 700 13px/1 var(--mono);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding: 0 clamp(24px, 4vw, 72px);
  border-bottom: 1px solid transparent;
  transition: min-height .25s var(--ease), background-color .25s ease, border-color .25s ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  border-color: var(--line);
  background: rgba(241, 240, 233, .92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  grid-template-columns: repeat(2, 9px);
  grid-template-rows: repeat(2, 9px);
  gap: 2px;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
}

.brand-mark span {
  display: block;
  background: var(--ink);
}

.brand-mark span:nth-child(2),
.brand-mark span:nth-child(3) {
  background: var(--lime);
  border: 1px solid var(--ink);
}

.brand-name {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: .02em;
  white-space: nowrap;
}

.brand-name span {
  font: 500 9px/1.1 var(--mono);
  letter-spacing: .12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.6vw, 42px);
  font: 600 13px/1 var(--mono);
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  padding: 10px 0;
}

.site-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  background: var(--ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  padding: 14px 16px;
  color: var(--paper);
  background: var(--ink);
  transition: color .2s ease, background-color .2s ease;
}

.nav-cta:hover {
  color: var(--ink);
  background: var(--lime);
}

.menu-toggle {
  display: none;
  align-items: center;
  gap: 12px;
  padding: 10px 0 10px 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: 700 12px/1 var(--mono);
}

.menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.menu-icon i {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform .2s ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(370px, .7fr);
  gap: clamp(40px, 7vw, 130px);
  align-items: center;
  min-height: 860px;
  padding: 142px clamp(24px, 6vw, 108px) 76px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: linear-gradient(to right, var(--line) 1px, transparent 1px), linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 10vw 100%, 100% 10vw;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 86%);
  mask-image: linear-gradient(to bottom, #000, transparent 86%);
  pointer-events: none;
}

.hero-copy,
.hero-poster {
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 38px;
}

.eyebrow span {
  padding: 7px 10px;
  border: 1px solid var(--ink);
  font: 600 11px/1 var(--mono);
  letter-spacing: .08em;
}

.eyebrow span:first-child {
  background: var(--lime);
}

.hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(58px, 7.25vw, 118px);
  font-weight: 900;
  line-height: .96;
  letter-spacing: -.075em;
}

.hero h1 span {
  position: relative;
  z-index: 0;
  display: inline-block;
}

.hero h1 span::after {
  position: absolute;
  z-index: -1;
  right: -.04em;
  bottom: .05em;
  left: -.02em;
  height: .21em;
  background: var(--lime);
  content: "";
  transform: skewX(-8deg);
}

.hero-intro {
  max-width: 610px;
  margin: 34px 0 0;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 176px;
  min-height: 54px;
  padding: 0 17px;
  border: 1px solid var(--ink);
  border-radius: 0;
  cursor: pointer;
  font: 700 13px/1 var(--mono);
  transition: transform .2s var(--ease), color .2s ease, background-color .2s ease;
}

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

.button-primary {
  background: var(--lime);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink);
  font: 700 13px/1 var(--mono);
}

.text-link span {
  transition: transform .2s var(--ease);
}

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

.hero-poster {
  align-self: center;
  width: min(100%, 510px);
  justify-self: end;
}

.poster-frame {
  position: relative;
  aspect-ratio: .81;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
  box-shadow: 18px 18px 0 var(--lime), 19px 19px 0 var(--ink);
}

.poster-frame::before,
.poster-frame::after {
  position: absolute;
  content: "";
}

.poster-frame::before {
  inset: 42px;
  border: 1px solid var(--line-light);
}

.poster-frame::after {
  top: 0;
  right: 23%;
  width: 1px;
  height: 100%;
  background: var(--line-light);
}

.poster-code {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 20px;
  margin: 0;
  font: 500 9px/1 var(--mono);
  letter-spacing: .16em;
}

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

.orbit-one {
  width: 76%;
  aspect-ratio: 1;
}

.orbit-two {
  width: 50%;
  aspect-ratio: 1;
}

.orbit-one::before,
.orbit-two::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.orbit-one::before {
  transform: translate(-50%, -50%) translateX(15vw);
}

.orbit-two::before {
  transform: translate(-50%, -50%) translateY(-9.7vw);
}

.poster-core {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-columns: auto auto auto;
  gap: 8px;
  align-items: center;
  width: max-content;
  padding: 14px 17px;
  color: var(--ink);
  background: var(--lime);
  font: 800 17px/1 var(--mono);
  transform: translate(-50%, -50%) rotate(-4deg);
}

.poster-core strong {
  font-size: 12px;
}

.poster-tab {
  position: absolute;
  z-index: 2;
  width: 64px;
  padding: 7px 0;
  border: 1px solid var(--paper);
  font: 600 10px/1 var(--mono);
  text-align: center;
}

.tab-a { top: 24%; left: 11%; }
.tab-b { right: 9%; bottom: 29%; }
.tab-c { bottom: 13%; left: 19%; color: var(--ink); background: var(--paper); }

.poster-note {
  position: absolute;
  z-index: 2;
  right: 21px;
  bottom: 20px;
  margin: 0;
  font: 500 10px/1.6 var(--mono);
  text-align: right;
}

.poster-caption {
  display: flex;
  justify-content: space-between;
  margin: 30px 0 0;
  padding-top: 12px;
  border-top: 1px solid var(--ink);
  font: 600 10px/1 var(--mono);
}

.hero-index {
  position: absolute;
  right: clamp(24px, 3vw, 50px);
  bottom: 34px;
  font: 700 11px/1 var(--mono);
}

.ticker {
  position: relative;
  overflow: hidden;
  color: var(--paper);
  background: var(--ink);
  transform: rotate(-1.35deg) scale(1.02);
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 34px;
  padding: 16px 0;
  animation: ticker 25s linear infinite;
  font: 700 12px/1 var(--mono);
  letter-spacing: .14em;
}

.ticker-track i {
  width: 8px;
  height: 8px;
  background: var(--lime);
  transform: rotate(45deg);
}

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

.section {
  padding: clamp(100px, 10vw, 170px) clamp(24px, 6vw, 108px);
}

.section-head {
  display: grid;
  grid-template-columns: .6fr 1.2fr .65fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 70px;
}

.section-kicker {
  margin: 0;
  font: 700 11px/1.3 var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
}

.section-head h2,
.capability-copy h2,
.scenarios h2,
.contact h2 {
  margin: 0;
  font-size: clamp(43px, 5vw, 78px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -.065em;
}

.section-head h2 span,
.capability-copy h2 span {
  display: inline-block;
  padding: 0 .08em;
  background: var(--lime);
}

.section-head > p:last-child {
  max-width: 360px;
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.75;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 490px;
  flex-direction: column;
  padding: 22px clamp(20px, 2.3vw, 38px) 30px;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transition: color .22s ease, background-color .22s ease;
}

.service-card:hover {
  color: var(--paper);
  background: var(--ink);
}

.card-index {
  margin: 0;
  font: 600 11px/1 var(--mono);
}

.card-icon {
  position: relative;
  display: grid;
  width: 108px;
  height: 108px;
  margin: 52px 0 46px;
  place-items: center;
  border: 1px solid currentColor;
  transition: transform .22s var(--ease), background-color .22s ease;
}

.service-card:hover .card-icon {
  color: var(--ink);
  background: var(--lime);
  transform: rotate(-4deg);
}

.icon-grid {
  width: 55px;
  height: 55px;
  background-image: linear-gradient(to right, currentColor 1px, transparent 1px), linear-gradient(to bottom, currentColor 1px, transparent 1px);
  background-size: 14px 14px;
}

.icon-frame {
  width: 55px;
  height: 38px;
  border: 1px solid currentColor;
  box-shadow: 9px 9px 0 transparent, 9px 9px 0 1px currentColor;
}

.icon-path {
  position: relative;
  width: 58px;
  height: 46px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: skew(-15deg);
}

.icon-path::before,
.icon-path::after {
  position: absolute;
  width: 8px;
  height: 8px;
  background: currentColor;
  content: "";
}

.icon-path::before { top: -4px; left: -4px; }
.icon-path::after { right: -4px; bottom: -4px; }

.icon-chart {
  position: relative;
  width: 60px;
  height: 50px;
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.icon-chart::before {
  position: absolute;
  right: 6px;
  bottom: 7px;
  width: 44px;
  height: 28px;
  border-top: 2px solid currentColor;
  content: "";
  transform: skewY(-27deg);
}

.service-card h3 {
  margin: 0 0 18px;
  font-size: 24px;
  line-height: 1.2;
}

.service-card > p:not(.card-index) {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}

.service-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: auto 0 0;
  padding: 24px 0 0;
  list-style: none;
}

.service-card li {
  padding: 6px 8px;
  border: 1px solid currentColor;
  font: 600 10px/1 var(--mono);
}

.capabilities {
  display: grid;
  grid-template-columns: minmax(380px, .9fr) minmax(420px, 1fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
  color: var(--paper);
  background: var(--ink);
}

.capability-poster {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background-image: linear-gradient(var(--line-light) 1px, transparent 1px), linear-gradient(90deg, var(--line-light) 1px, transparent 1px);
  background-size: 25% 25%;
}

.capability-word {
  position: absolute;
  top: -23px;
  left: 3%;
  color: transparent;
  font: 900 clamp(100px, 12vw, 185px)/.78 var(--sans);
  letter-spacing: -.08em;
  -webkit-text-stroke: 1px rgba(241, 240, 233, .35);
}

.capability-card {
  position: absolute;
  z-index: 2;
  width: 230px;
  padding: 20px;
  border: 1px solid var(--paper);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 9px 9px 0 var(--ink), 10px 10px 0 var(--paper);
}

.capability-card span {
  display: block;
  margin-bottom: 38px;
  font: 700 10px/1 var(--mono);
}

.capability-card strong {
  display: block;
  font-size: 25px;
}

.capability-card p {
  margin: 8px 0 0;
  font: 500 11px/1.5 var(--mono);
}

.capability-card-a { top: 10%; right: 8%; transform: rotate(3deg); }
.capability-card-b { top: 39%; right: 19%; color: var(--ink); background: var(--lime); transform: rotate(-4deg); }
.capability-card-c { right: 7%; bottom: 7%; transform: rotate(2deg); }

.capability-seal {
  position: absolute;
  z-index: 4;
  bottom: 14%;
  left: 8%;
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  font: 800 12px/1.5 var(--mono);
  text-align: center;
  transform: rotate(-12deg);
}

.capability-copy .section-kicker {
  margin-bottom: 40px;
  color: var(--lime);
}

.capability-lead {
  max-width: 600px;
  margin: 36px 0 50px;
  color: rgba(241, 240, 233, .72);
  font-size: 16px;
  line-height: 1.85;
}

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

.principles article {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-light);
}

.principles article > span {
  color: var(--lime);
  font: 700 11px/1.3 var(--mono);
}

.principles h3 {
  margin: 0 0 7px;
  font-size: 18px;
}

.principles p {
  margin: 0;
  color: rgba(241, 240, 233, .65);
  font-size: 13px;
  line-height: 1.7;
}

.scenarios {
  display: grid;
  grid-template-columns: .8fr 1.9fr;
  gap: clamp(50px, 7vw, 110px);
  padding: clamp(100px, 10vw, 160px) clamp(24px, 6vw, 108px);
}

.scenarios-head .section-kicker {
  margin-bottom: 36px;
}

.scenario-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
}

.scenario {
  position: relative;
  min-height: 420px;
  padding: 26px;
  border: 1px solid var(--ink);
  background: var(--paper);
  transition: transform .22s var(--ease);
}

.scenario + .scenario {
  margin-left: -1px;
}

.scenario:nth-child(2) { min-height: 465px; }
.scenario:nth-child(3) { min-height: 510px; }
.scenario:hover { z-index: 2; transform: translateY(-10px); }
.scenario-lime { background: var(--lime); }

.scenario > span {
  font: 700 10px/1 var(--mono);
  letter-spacing: .08em;
}

.scenario h3 {
  margin: 92px 0 20px;
  font-size: clamp(25px, 2vw, 34px);
  line-height: 1.1;
}

.scenario p {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
}

.scenario b {
  position: absolute;
  right: 24px;
  bottom: 23px;
  font: 400 25px/1 var(--mono);
}

.process {
  border-top: 1px solid var(--ink);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  gap: 30px;
  align-items: center;
  min-height: 136px;
  padding: 24px 0;
  border-bottom: 1px solid var(--ink);
  transition: padding .25s var(--ease), background-color .25s ease;
}

.process-list li:hover {
  padding-right: 24px;
  padding-left: 24px;
  background: var(--lime);
}

.process-number {
  font: 700 11px/1 var(--mono);
}

.process-list h3 {
  margin: 0 0 8px;
  font-size: 27px;
}

.process-list p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

.process-tag {
  min-width: 72px;
  padding: 8px 10px;
  border: 1px solid var(--ink);
  font: 700 10px/1 var(--mono);
  text-align: center;
}

.manifesto {
  position: relative;
  display: flex;
  min-height: 620px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 24px;
  color: var(--paper);
  background-color: var(--ink);
  background-image: radial-gradient(rgba(241, 240, 233, .16) .75px, transparent .75px);
  background-size: 6px 6px;
  text-align: center;
}

.manifesto::before,
.manifesto::after {
  position: absolute;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  content: "";
}

.manifesto::before { width: 570px; height: 570px; }
.manifesto::after { width: 360px; height: 360px; }

.manifesto > p {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(48px, 6.4vw, 102px);
  font-weight: 900;
  line-height: 1.13;
  letter-spacing: -.07em;
}

.manifesto > p span {
  color: var(--lime);
}

.manifesto-mark {
  position: absolute;
  z-index: 3;
  top: 70px;
  left: clamp(24px, 6vw, 108px);
  color: var(--lime);
  font: 900 84px/1 var(--sans);
}

.manifesto-meta {
  position: absolute;
  right: clamp(24px, 6vw, 108px);
  bottom: 54px;
  left: clamp(24px, 6vw, 108px);
  display: flex;
  z-index: 3;
  justify-content: space-between;
  font: 500 9px/1 var(--mono);
  letter-spacing: .15em;
}

.contact {
  padding: clamp(100px, 10vw, 160px) clamp(24px, 6vw, 108px) 34px;
  background: var(--lime);
}

.contact-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 54px;
  border-bottom: 1px solid var(--ink);
}

.contact-top > p:last-child {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: right;
}

.contact-main {
  display: grid;
  grid-template-columns: 1.45fr .55fr;
  gap: 70px;
  align-items: end;
  padding: 74px 0 120px;
}

.contact h2 {
  font-size: clamp(52px, 7vw, 112px);
}

.contact h2 span {
  color: var(--lime);
  background: var(--ink);
  box-shadow: .08em 0 0 var(--ink), -.03em 0 0 var(--ink);
}

.contact-action > p:first-child {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 1.75;
}

.button-dark {
  width: 100%;
  min-height: 62px;
  color: var(--paper);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--paper);
}

.copy-status {
  min-height: 20px;
  margin: 12px 0 0;
  font: 700 11px/1.5 var(--mono);
}

.contact-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-top: 28px;
  border-top: 1px solid var(--ink);
}

.brand-footer .brand-mark span:nth-child(2),
.brand-footer .brand-mark span:nth-child(3) {
  background: var(--paper);
}

.back-top {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--ink);
  font: 700 11px/1 var(--mono);
}

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .55s ease, transform .55s var(--ease);
}

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

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .58fr);
    min-height: 790px;
  }

  .poster-frame { min-height: 470px; }
  .service-list { grid-template-columns: repeat(2, 1fr); }
  .service-card { min-height: 430px; }
  .capabilities { gap: 60px; }
  .capability-card { width: 200px; }
  .scenario-grid { grid-template-columns: 1fr; }
  .scenario, .scenario:nth-child(2), .scenario:nth-child(3) { min-height: 270px; }
  .scenario + .scenario { margin-top: -1px; margin-left: 0; }
  .scenario h3 { margin-top: 62px; }
}

@media (max-width: 820px) {
  .site-header { min-height: 72px; padding: 0 22px; }
  .site-header.is-scrolled { min-height: 62px; }
  .js .menu-toggle { display: inline-flex; z-index: 102; }
  .js .site-nav {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    padding: 96px 24px 38px;
    background: var(--lime);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-14px);
    transition: opacity .2s ease, transform .2s var(--ease), visibility .2s;
  }
  .js .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); }
  .js .site-nav > a:not(.nav-cta), .js .site-nav .nav-cta {
    display: flex;
    justify-content: space-between;
    padding: 21px 0;
    border-top: 1px solid var(--ink);
    color: var(--ink);
    background: transparent;
    font: 800 26px/1 var(--sans);
  }
  .js .site-nav .nav-cta { border-bottom: 1px solid var(--ink); }
  html:not(.js) .site-header {
    position: absolute;
    flex-wrap: wrap;
    align-content: center;
    min-height: 118px;
  }
  html:not(.js) .site-nav {
    flex-basis: 100%;
    justify-content: space-between;
    gap: 8px;
    padding-top: 10px;
    font-size: 9px;
  }
  html:not(.js) .nav-cta { gap: 8px; padding: 10px; }
  html:not(.js) .hero { padding-top: 164px; }
  .menu-open .menu-icon i:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .menu-icon i:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .hero {
    grid-template-columns: 1fr;
    gap: 74px;
    min-height: auto;
    padding: 124px 24px 74px;
  }
  .hero h1 { font-size: clamp(55px, 13vw, 88px); }
  .hero-poster { justify-self: center; width: min(86%, 500px); }
  .poster-frame { min-height: 0; }
  .orbit-one::before { transform: translate(-50%, -50%) translateX(28vw); }
  .orbit-two::before { transform: translate(-50%, -50%) translateY(-18vw); }
  .section-head { grid-template-columns: 1fr; gap: 28px; }
  .services .section-head { margin-bottom: 50px; }
  .capabilities { grid-template-columns: 1fr; }
  .capability-poster { min-height: 620px; }
  .scenarios { grid-template-columns: 1fr; }
  .scenarios-head { display: grid; grid-template-columns: .5fr 1fr; align-items: start; gap: 24px; }
  .process-list li { grid-template-columns: 58px 1fr auto; }
  .contact-main { grid-template-columns: 1fr; align-items: start; }
  .contact-action { max-width: 470px; }
}

@media (max-width: 560px) {
  .brand-name { font-size: 12px; }
  .brand-name span { font-size: 8px; }
  .menu-label { display: none; }
  .hero { gap: 58px; }
  .eyebrow { margin-bottom: 28px; }
  .hero h1 { font-size: clamp(50px, 15vw, 76px); }
  .hero-intro { margin-top: 27px; font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; margin-top: 32px; }
  .hero-poster { width: calc(100% - 17px); margin-right: 17px; }
  .poster-frame { box-shadow: 12px 12px 0 var(--lime), 13px 13px 0 var(--ink); }
  .poster-core { font-size: 14px; }
  .poster-frame::before { inset: 28px; }
  .poster-tab { width: 55px; font-size: 9px; }
  .section { padding: 92px 24px; }
  .section-head h2, .capability-copy h2, .scenarios h2 { font-size: 42px; }
  .service-list { grid-template-columns: 1fr; }
  .service-card { min-height: 400px; }
  .card-icon { margin: 42px 0 35px; }
  .capabilities { gap: 64px; }
  .capability-poster { min-height: 540px; }
  .capability-card { width: 185px; padding: 16px; }
  .capability-card span { margin-bottom: 25px; }
  .capability-card strong { font-size: 21px; }
  .capability-card-a { right: 5%; }
  .capability-card-b { right: 12%; }
  .capability-card-c { right: 4%; }
  .capability-seal { width: 74px; height: 74px; }
  .scenarios { padding: 92px 24px; }
  .scenarios-head { grid-template-columns: 1fr; }
  .scenarios-head .section-kicker { margin-bottom: 0; }
  .scenario, .scenario:nth-child(2), .scenario:nth-child(3) { min-height: 300px; }
  .process-list li { grid-template-columns: 40px 1fr; gap: 16px; }
  .process-list h3 { font-size: 22px; }
  .process-tag { display: none; }
  .process-list li:hover { padding-right: 10px; padding-left: 10px; }
  .manifesto { min-height: 530px; }
  .manifesto > p { font-size: 48px; }
  .manifesto::before { width: 430px; height: 430px; }
  .manifesto::after { width: 270px; height: 270px; }
  .manifesto-meta { gap: 20px; }
  .contact { padding: 92px 24px 28px; }
  .contact-top { flex-direction: column; }
  .contact-top > p:last-child { text-align: left; }
  .contact-main { padding: 62px 0 88px; }
  .contact h2 { font-size: clamp(48px, 14vw, 72px); }
  .contact-bottom { align-items: flex-start; flex-direction: column; }
  .back-top { align-self: flex-end; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
