@charset "UTF-8";

:root {
  --ink: #050706;
  --ink-soft: #0b0e0c;
  --paper: #f4f1e8;
  --paper-muted: #d6d3ca;
  --sand: #e8dfd0;
  --surface-navy: #080b17;
  --surface-warm: #110c0a;
  --cobalt-night: #111b47;
  --acid: #c7ff2a;
  --blue: #3156ef;
  --blue-deep: #263fc9;
  --blue-soft: #aab6ff;
  --coral: #ff6245;
  --coral-soft: #ffc0b3;
  --accent-live: var(--acid);
  --accent-product: var(--blue);
  --accent-human: var(--coral);
  --text-secondary-dark: #a8ada4;
  --text-tertiary-dark: #7a8079;
  --text-secondary-light: #555b56;
  --white: #ffffff;
  --line-dark: rgba(244, 241, 232, 0.18);
  --line-light: rgba(5, 7, 6, 0.18);
  --gutter: clamp(20px, 4vw, 72px);
  --header-height: 84px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --mx: 50%;
  --my: 50%;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

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

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

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

button {
  border: 0;
}

svg {
  display: block;
}

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

:focus-visible {
  outline: 2px solid var(--acid);
  outline-offset: 5px;
}

.manifest :focus-visible,
.projects :focus-visible,
.contact :focus-visible {
  outline-color: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--acid);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: none;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.breadcrumbs a,
.breadcrumbs span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}

.breadcrumbs a { transition: color 180ms ease; }
.breadcrumbs a:hover { color: var(--acid); }
.breadcrumbs i { opacity: 0.42; font-style: normal; }

.grid-shell {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.page-noise {
  position: fixed;
  z-index: 50;
  inset: 0;
  pointer-events: none;
  opacity: 0.09;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.96' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.58'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.signal-field {
  position: fixed;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.scroll-progress {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: rgba(244, 241, 232, 0.08);
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--acid);
}

.cursor {
  position: fixed;
  z-index: 1800;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 180ms ease;
  mix-blend-mode: difference;
}

.cursor::before,
.cursor span {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  content: "";
}

.cursor::before {
  background: var(--white);
}

.cursor span {
  inset: -18px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  transform: scale(0.35);
  transition: transform 260ms var(--ease-out), background 260ms ease;
}

.cursor.is-visible {
  opacity: 1;
}

.cursor.is-active span {
  transform: scale(1);
  background: rgba(255, 255, 255, 0.08);
}

.preloader {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  padding: 28px var(--gutter) 34px;
  overflow: hidden;
  background: var(--ink);
  color: var(--paper);
  transition: visibility 0s 560ms;
}

.preloader::before,
.preloader::after {
  position: absolute;
  z-index: -1;
  content: "";
}

.preloader::before {
  inset: 0;
  background-image: linear-gradient(var(--line-dark) 1px, transparent 1px), linear-gradient(90deg, var(--line-dark) 1px, transparent 1px);
  background-size: 9vw 9vw;
  opacity: 0.22;
}

.preloader::after {
  top: 50%;
  left: 50%;
  width: min(80vw, 920px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 255, 42, 0.18), transparent 64%);
}

.preloader__top,
.preloader__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.preloader__status {
  color: var(--acid);
}

.preloader__mark {
  align-self: center;
  justify-self: center;
  width: clamp(100px, 14vw, 210px) !important;
  height: clamp(100px, 14vw, 210px) !important;
  color: var(--acid);
  animation: preloader-pulse 900ms ease-in-out infinite alternate;
}

.preloader__mark i {
  width: 31% !important;
  height: 31% !important;
  border-width: clamp(8px, 1.3vw, 20px) !important;
}

.preloader__mark b {
  width: 28% !important;
  height: clamp(7px, 1vw, 15px) !important;
}

.preloader__bottom {
  display: grid;
  grid-template-columns: 1fr 48px;
}

.preloader__track {
  height: 1px;
  overflow: hidden;
  background: var(--line-dark);
}

.preloader__track span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--acid);
}

.preloader__value {
  text-align: right;
}

body.is-ready .preloader {
  visibility: hidden;
}

body.is-ready .preloader::before,
body.is-ready .preloader::after,
body.is-ready .preloader__top,
body.is-ready .preloader__bottom {
  opacity: 0;
  transition: opacity 220ms ease 220ms;
}

body.is-ready .preloader__mark {
  opacity: 0;
  transform: scale(9) rotate(18deg);
  transition: opacity 240ms ease 180ms, transform 520ms var(--ease-smooth);
}

body.is-returning .preloader { transition: visibility 0s 240ms; }
body.is-returning.is-ready .preloader::before,
body.is-returning.is-ready .preloader::after,
body.is-returning.is-ready .preloader__top,
body.is-returning.is-ready .preloader__bottom { transition: opacity 110ms ease 55ms; }
body.is-returning.is-ready .preloader__mark { transition: opacity 130ms ease 45ms, transform 210ms var(--ease-out); }

@keyframes preloader-pulse {
  to { filter: drop-shadow(0 0 24px rgba(199, 255, 42, 0.5)); }
}

.logo-mark {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  color: var(--acid);
}

.logo-mark i {
  position: absolute;
  width: 9px;
  height: 9px;
  border: 3px solid currentColor;
}

.logo-mark i:nth-child(1) { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.logo-mark i:nth-child(2) { top: 0; right: 0; border-bottom: 0; border-left: 0; }
.logo-mark i:nth-child(3) { right: 0; bottom: 0; border-top: 0; border-left: 0; }
.logo-mark i:nth-child(4) { bottom: 0; left: 0; border-top: 0; border-right: 0; }

.logo-mark b {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 3px;
  transform: translate(-50%, -50%);
  background: currentColor;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  height: var(--header-height);
  padding: 0 var(--gutter);
  border-bottom: 1px solid transparent;
  transition: height 300ms var(--ease-out), background 300ms ease, border-color 300ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  border-color: var(--line-dark);
  background: rgba(5, 7, 6, 0.78);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.site-header .brand {
  transition: opacity 220ms ease, transform 300ms var(--ease-out);
}

.site-header .header-cta {
  transition: opacity 220ms ease, transform 300ms var(--ease-out), background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.site-header.menu-open .brand,
.site-header.menu-open .header-cta {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 11px;
  width: max-content;
}

.brand__word {
  font-size: 18px;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 9px 0;
  color: rgba(244, 241, 232, 0.72);
  transition: color 180ms ease;
}

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

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--paper);
}

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

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 16px;
  padding: 11px 15px 11px 19px;
  border: 1px solid rgba(199, 255, 42, 0.5);
  color: var(--acid);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.header-cta svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.header-cta:hover {
  border-color: var(--accent-live);
  background: var(--accent-live);
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  background: transparent;
}

.menu-toggle span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 1px;
  background: currentColor;
  transition: transform 240ms ease, top 240ms ease;
}

.menu-toggle span:first-child { top: 16px; }
.menu-toggle span:last-child { top: 25px; }

main,
.site-footer {
  position: relative;
  z-index: 2;
}

.spotlight::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(700px circle at var(--mx) var(--my), rgba(49, 86, 239, 0.1), transparent 45%);
  content: "";
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(5, 7, 6, 0.34), var(--ink) 96%);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: linear-gradient(rgba(244, 241, 232, 0.055) 1px, transparent 1px), linear-gradient(90deg, rgba(244, 241, 232, 0.055) 1px, transparent 1px);
  background-position: center;
  background-size: clamp(76px, 8vw, 150px) clamp(76px, 8vw, 150px);
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 88%);
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  content: "";
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.32fr) minmax(320px, 0.68fr);
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 34px);
  padding-bottom: 32px;
}

.hero__meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--line-dark);
  color: var(--text-tertiary-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__copy {
  z-index: 2;
  align-self: center;
  padding-top: clamp(45px, 9vh, 130px);
  padding-bottom: clamp(42px, 7vh, 90px);
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--acid);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "[ ";
}

.eyebrow::after {
  content: " ]";
}

.hero__title {
  max-width: 990px;
  margin: 0;
  font-size: clamp(63px, 9vw, 164px);
  font-weight: 850;
  letter-spacing: -0.078em;
  line-height: 0.76;
  text-transform: uppercase;
}

.hero-title-context {
  display: block;
  margin-bottom: 18px;
  color: var(--paper-muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: clamp(8px, 0.62vw, 11px);
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

.title-line {
  display: block;
  overflow: hidden;
  padding: 0.08em 0.09em 0.1em 0;
}

.title-line > span {
  display: block;
  transform: translateY(115%);
  transition: transform 950ms var(--ease-out);
}

body.is-ready .title-line > span {
  transform: translateY(0);
}

body.is-ready .title-line:nth-child(3) > span { transition-delay: 100ms; }
body.is-ready .title-line:nth-child(4) > span { transition-delay: 190ms; }

.title-line--accent {
  color: var(--blue);
}

.title-line--last {
  padding-bottom: 0.16em;
}

.title-dot {
  color: var(--coral);
}

.hero__intro {
  display: grid;
  grid-template-columns: minmax(260px, 520px) auto;
  align-items: end;
  gap: clamp(24px, 4vw, 78px);
  margin-top: clamp(30px, 5vw, 68px);
}

.hero__intro > p {
  margin: 0;
  color: rgba(244, 241, 232, 0.7);
  font-size: clamp(16px, 1.35vw, 22px);
  line-height: 1.52;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 210px;
  padding: 17px 19px;
  overflow: hidden;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.button::before {
  position: absolute;
  inset: 0;
  transform: translateY(102%);
  background: var(--paper);
  content: "";
  transition: transform 420ms var(--ease-out);
}

.button > * {
  position: relative;
  z-index: 1;
}

.button--primary {
  background: var(--accent-live);
  color: var(--ink);
}

.button svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  transition: transform 320ms var(--ease-out);
}

.button:hover::before {
  transform: translateY(0);
}

.button:hover svg {
  transform: translateX(5px);
}

.text-link {
  border-bottom: 1px solid var(--line-dark);
  color: rgba(244, 241, 232, 0.68);
  font-size: 12px;
  letter-spacing: 0.05em;
  transition: color 180ms ease, border-color 180ms ease;
}

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

.text-link:hover {
  border-color: var(--acid);
  color: var(--paper);
}

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

.core-wrap {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: end;
  width: min(38vw, 620px);
  min-width: 360px;
  aspect-ratio: 1;
  margin-right: -4vw;
  transform-style: preserve-3d;
}

.core-wrap::before,
.core-wrap::after {
  position: absolute;
  inset: 8%;
  border: 1px solid var(--line-dark);
  content: "";
}

.core-wrap::after {
  inset: 15%;
  border-radius: 50%;
  border-style: dashed;
  opacity: 0.65;
  animation: spin-flat 24s linear infinite;
}

.core-coordinates,
.core-caption {
  position: absolute;
  z-index: 3;
  right: 8%;
  left: 8%;
  display: flex;
  justify-content: space-between;
  color: var(--text-tertiary-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.core-coordinates { top: 3%; }
.core-caption { bottom: 3%; }
.core-caption i { display: inline-block; width: 5px; height: 5px; margin-right: 6px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 9px var(--acid); }

.core-scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  perspective: 900px;
  transform: rotateX(var(--core-x, 0deg)) rotateY(var(--core-y, 0deg));
  transition: transform 280ms var(--ease-out);
}

.core-light {
  position: absolute;
  z-index: -1;
  width: 37%;
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 38%, var(--acid) 0 16%, rgba(199, 255, 42, 0.35) 38%, transparent 68%),
    radial-gradient(circle at 68% 64%, var(--blue) 0, transparent 66%);
  filter: blur(82px);
  opacity: 0.23;
  animation: core-breathe 4s ease-in-out infinite;
}

.orbit {
  position: absolute;
  width: 65%;
  height: 29%;
  border: 1px solid rgba(199, 255, 42, 0.38);
  border-radius: 50%;
  transform-style: preserve-3d;
}

.orbit--one { transform: rotate(25deg); animation: orbit-one 11s linear infinite; }
.orbit--two { transform: rotate(-30deg); border-color: rgba(49, 86, 239, 0.55); animation: orbit-two 16s linear infinite reverse; }
.orbit--three { transform: rotateX(72deg); border-color: rgba(255, 98, 69, 0.48); animation: orbit-three 13s linear infinite; }
.orbit--three i { background: var(--coral); }

.orbit i {
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 12px currentColor;
}

.orbit i:nth-child(2) { right: 0; left: auto; transform: translate(50%, -50%); background: var(--blue); }

.cube {
  position: relative;
  z-index: 2;
  width: clamp(92px, 9vw, 145px);
  height: clamp(92px, 9vw, 145px);
  transform-style: preserve-3d;
  animation: cube-rotate 18s linear infinite;
}

.cube__face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(199, 255, 42, 0.7);
  background: rgba(199, 255, 42, 0.055);
  box-shadow: inset 0 0 28px rgba(199, 255, 42, 0.08);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.cube__face::before {
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(244, 241, 232, 0.12);
  content: "";
}

.cube__face span {
  color: rgba(244, 241, 232, 0.72);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.2em;
}

.cube__face--front  { transform: rotateY(0deg) translateZ(clamp(46px, 4.5vw, 72.5px)); }
.cube__face--back   { transform: rotateY(180deg) translateZ(clamp(46px, 4.5vw, 72.5px)); }
.cube__face--right  { transform: rotateY(90deg) translateZ(clamp(46px, 4.5vw, 72.5px)); }
.cube__face--left   { transform: rotateY(-90deg) translateZ(clamp(46px, 4.5vw, 72.5px)); }
.cube__face--top    { transform: rotateX(90deg) translateZ(clamp(46px, 4.5vw, 72.5px)); }
.cube__face--bottom { transform: rotateX(-90deg) translateZ(clamp(46px, 4.5vw, 72.5px)); }

@keyframes cube-rotate { from { transform: rotateX(-18deg) rotateY(0deg); } to { transform: rotateX(342deg) rotateY(360deg); } }
@keyframes spin-flat { to { transform: rotate(360deg); } }
@keyframes core-breathe { 50% { opacity: 0.42; transform: scale(1.2); } }
@keyframes orbit-one { to { transform: rotate(385deg); } }
@keyframes orbit-two { to { transform: rotate(330deg); } }
@keyframes orbit-three { to { transform: rotateX(72deg) rotateZ(360deg); } }

.scroll-cue {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 14px;
  color: var(--text-tertiary-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
}

.scroll-cue i::after {
  position: absolute;
  top: 8px;
  left: 13px;
  width: 3px;
  height: 7px;
  border-radius: 2px;
  background: var(--acid);
  content: "";
  animation: scroll-dot 1.7s ease infinite;
}

@keyframes scroll-dot { 50% { transform: translateY(7px); opacity: 0.25; } }

.ticker {
  position: relative;
  z-index: 4;
  overflow: hidden;
  border-block: 1px solid rgba(244, 241, 232, 0.18);
  background: var(--accent-product);
  color: var(--paper);
}

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

.ticker span {
  padding-inline: 32px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.ticker i {
  color: var(--acid);
  font-size: 18px;
  font-style: normal;
}

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

.section {
  position: relative;
  padding-block: clamp(110px, 13vw, 230px);
}

.section-index {
  position: absolute;
  z-index: 2;
  top: clamp(34px, 4vw, 68px);
  right: var(--gutter);
  left: var(--gutter);
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--line-light);
  color: var(--text-secondary-light);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.section-index span:last-child {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-index span:last-child::before {
  width: 18px;
  height: 3px;
  background: var(--index-accent, var(--blue));
  content: "";
}

.section-index--dark,
.expertise .section-index,
.system-lab .section-index,
.process .section-index,
.core-terminal .section-index {
  border-color: var(--line-dark);
  color: var(--text-tertiary-dark);
}

.manifest {
  --index-accent: var(--blue);
  overflow: hidden;
  background: var(--sand);
  color: var(--ink);
}

.manifest::after {
  position: absolute;
  top: 50%;
  right: -14vw;
  width: 48vw;
  aspect-ratio: 1;
  transform: translateY(-50%);
  border: 1px solid var(--line-light);
  border-radius: 50%;
  box-shadow: 0 0 0 7vw rgba(5, 7, 6, 0.018), 0 0 0 14vw rgba(5, 7, 6, 0.012);
  content: "";
}

.manifest__label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(42px, 6vw, 92px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(49, 86, 239, 0.16);
}

.manifest__title {
  position: relative;
  z-index: 1;
  width: min(100%, 1450px);
  margin: 0;
  font-size: clamp(52px, 9.5vw, 174px);
  font-weight: 830;
  letter-spacing: -0.075em;
  line-height: 0.85;
  text-transform: uppercase;
}

.reveal-line {
  display: block;
  overflow: hidden;
  padding-right: 0.06em;
  padding-bottom: 0.09em;
}

.reveal-line > span {
  display: block;
}

.reveal-line--outline {
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(5, 7, 6, 0.6);
}

.manifest__body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: clamp(28px, 8vw, 150px);
  width: min(77%, 1180px);
  margin-top: clamp(48px, 8vw, 120px);
  margin-left: auto;
}

.manifest__body p {
  margin: 0;
  font-size: clamp(17px, 1.55vw, 25px);
  line-height: 1.55;
}

.manifest__body .manifest__accent {
  align-self: end;
  padding-left: 24px;
  border-left: 2px solid var(--coral);
  font-size: clamp(14px, 1.1vw, 18px);
  font-weight: 700;
}

.manifest__facts {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(77%, 1180px);
  margin-top: clamp(60px, 8vw, 120px);
  margin-left: auto;
  border-top: 1px solid var(--line-light);
}

.fact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 150px;
  padding: 24px 24px 0 0;
  border-right: 1px solid var(--line-light);
}

.fact:last-child { border-right: 0; padding-left: 24px; }
.fact:nth-child(2) { padding-left: 24px; }

.fact b {
  color: var(--blue);
  font-size: clamp(36px, 4vw, 72px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.fact span {
  max-width: 150px;
  color: var(--text-secondary-light);
  font-size: 11px;
}

.expertise {
  --index-accent: var(--acid);
  overflow: hidden;
  background: var(--ink);
}

.expertise::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 46%, rgba(49, 86, 239, 0.14), transparent 25%),
    radial-gradient(circle at 88% 78%, rgba(255, 98, 69, 0.08), transparent 20%);
  content: "";
}

.expertise__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(50px, 9vw, 160px);
}

.expertise__intro {
  position: sticky;
  top: 130px;
  align-self: start;
}

.section-title {
  margin: 0;
  font-size: clamp(48px, 6.5vw, 112px);
  font-weight: 820;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-transform: uppercase;
}

.section-title em {
  color: var(--acid);
  font-style: normal;
}

.expertise .section-title em {
  color: var(--blue-soft);
}

.section-lead {
  max-width: 560px;
  margin: 34px 0 0;
  color: var(--text-secondary-dark);
  font-size: clamp(15px, 1.3vw, 21px);
  line-height: 1.6;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-card:nth-child(2) {
  margin-left: clamp(0px, 2.3vw, 38px);
}

.service-card:nth-child(3) {
  margin-right: clamp(0px, 1.5vw, 24px);
}

.service-card {
  position: relative;
  min-height: 540px;
  padding: clamp(25px, 3.4vw, 54px);
  overflow: hidden;
  border: 1px solid rgba(170, 182, 255, 0.45);
  background: var(--accent-product);
  color: var(--paper);
  transition: transform 520ms var(--ease-out), box-shadow 520ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(244, 241, 232, 0.09) 1px, transparent 1px), linear-gradient(90deg, rgba(244, 241, 232, 0.09) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: linear-gradient(to bottom left, black, transparent 75%);
  mask-image: linear-gradient(to bottom left, black, transparent 75%);
  content: "";
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.3);
}

.service-card--coral {
  border-color: rgba(255, 192, 179, 0.52);
  background: var(--accent-human);
  color: var(--ink);
}

.service-card--light {
  border-color: rgba(5, 7, 6, 0.18);
  background: var(--sand);
  color: var(--ink);
}

.service-card--coral::before,
.service-card--light::before {
  background-image: linear-gradient(rgba(5, 7, 6, 0.08) 1px, transparent 1px), linear-gradient(90deg, rgba(5, 7, 6, 0.08) 1px, transparent 1px);
}

.service-card__head {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid currentColor;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
  opacity: 1;
}

.service-card__arrow {
  font-size: 18px;
  transition: transform 300ms var(--ease-out);
}

.service-card:hover .service-card__arrow { transform: translate(5px, -5px); }

.service-card__icon {
  position: relative;
  z-index: 1;
  width: 170px;
  height: 170px;
  margin: clamp(44px, 7vw, 88px) 0 45px auto;
}

.service-card__icon--web i {
  position: absolute;
  border: 1px solid currentColor;
}

.service-card__icon--web i:nth-child(1) { inset: 0; }
.service-card__icon--web i:nth-child(2) { inset: 24px -24px -24px 24px; opacity: 0.48; }
.service-card__icon--web i:nth-child(3) { inset: 48px -48px -48px 48px; opacity: 0.2; }

.service-card__icon--mobile span {
  position: absolute;
  inset: 0 34px;
  border: 1px solid currentColor;
  border-radius: 25px;
  transform: rotate(-10deg);
}

.service-card__icon--mobile i,
.service-card__icon--mobile b {
  position: absolute;
  display: block;
  width: 74px;
  height: 74px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.service-card__icon--mobile i { top: -16px; right: -10px; }
.service-card__icon--mobile b { right: -35px; bottom: -28px; background: var(--acid); border: 0; }

.service-card__icon--auto span {
  position: absolute;
  width: 52px;
  height: 52px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.service-card__icon--auto span:nth-child(1) { top: 0; left: 59px; }
.service-card__icon--auto span:nth-child(2) { right: 0; bottom: 0; }
.service-card__icon--auto span:nth-child(3) { bottom: 0; left: 0; }

.service-card__icon--auto i {
  position: absolute;
  inset: 25px;
  background: conic-gradient(from 30deg, transparent 0 8%, currentColor 8% 11%, transparent 11% 41%, currentColor 41% 44%, transparent 44% 74%, currentColor 74% 77%, transparent 77%);
  opacity: 0.6;
}

.service-card h3,
.service-card p,
.service-card ul {
  position: relative;
  z-index: 2;
}

.service-card h3 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 65px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1;
}

.service-card p {
  max-width: 550px;
  margin: 0;
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.52;
}

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

.service-card li {
  padding: 8px 11px;
  border: 1px solid currentColor;
  border-radius: 99px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  opacity: 1;
}

.service-card__link {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  align-self: flex-start;
  margin-top: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: inherit;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card__link span { transition: transform 240ms var(--ease-out); }
.service-card__link:hover span { transform: translateX(5px); }

.system-lab {
  --index-accent: var(--coral);
  overflow: hidden;
  background: var(--surface-navy);
}

.system-lab::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(255, 98, 69, 0.055), transparent 42%),
    radial-gradient(circle at 75% 42%, rgba(49, 86, 239, 0.18), transparent 27%);
  content: "";
}

.system-lab.spotlight::before {
  background:
    radial-gradient(620px circle at var(--mx) var(--my), rgba(49, 86, 239, 0.12), transparent 44%),
    radial-gradient(460px circle at calc(var(--mx) + 160px) calc(var(--my) + 80px), rgba(255, 98, 69, 0.07), transparent 46%);
}

.system-lab__head {
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  align-items: start;
  gap: 30px;
  margin-bottom: clamp(62px, 8vw, 125px);
}

.system-lab .section-title em {
  color: var(--coral);
}

.system-builder {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(340px, 1fr) minmax(280px, 0.72fr);
  min-height: 650px;
  border: 1px solid var(--line-dark);
  background: rgba(5, 7, 6, 0.72);
}

.system-builder__nav {
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line-dark);
}

.system-builder__nav button {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 25px;
  border-bottom: 1px solid var(--line-dark);
  background: transparent;
  color: var(--text-tertiary-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-align: left;
  cursor: pointer;
  transition: background 260ms ease, color 260ms ease;
}

.system-builder__nav button:last-child { border-bottom: 0; }
.system-builder__nav button span { font-size: 8px; opacity: 1; }
.system-builder__nav button::after { position: absolute; right: 20px; content: "+"; font-size: 17px; }

.system-builder__nav button:hover,
.system-builder__nav button:focus-visible {
  background: rgba(244, 241, 232, 0.07);
  color: var(--paper);
}

.system-builder__nav button.is-active {
  background: var(--system-color, var(--blue));
  color: var(--paper);
}

.system-builder[data-active="mobile"] .system-builder__nav button.is-active,
.system-builder[data-active="automation"] .system-builder__nav button.is-active {
  color: var(--ink);
}

.system-builder__nav button.is-active::after { content: "×"; }

.system-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  overflow: hidden;
  border-right: 1px solid var(--line-dark);
  background-image: linear-gradient(rgba(244, 241, 232, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(244, 241, 232, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
}

.system-visual::after {
  position: absolute;
  width: 28%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--system-color, var(--acid));
  filter: blur(90px);
  opacity: 0.2;
  content: "";
  transition: background 500ms ease;
}

.system-ring {
  position: absolute;
  border: 1px solid rgba(244, 241, 232, 0.18);
  border-radius: 50%;
  transition: transform 800ms var(--ease-out), border-color 400ms ease;
}

.system-ring--a { width: 72%; aspect-ratio: 1; animation: spin-flat 42s linear infinite; border-style: dashed; }
.system-ring--b { width: 49%; aspect-ratio: 1; border-color: color-mix(in srgb, var(--system-color, var(--acid)) 56%, transparent); animation: spin-flat 28s linear infinite reverse; }
.system-ring--c { width: 28%; aspect-ratio: 1; box-shadow: 0 0 50px rgba(49, 86, 239, 0.11); }

.system-core {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 100px;
  aspect-ratio: 1;
  transform: rotate(45deg);
  border: 1px solid var(--system-color, var(--acid));
  background: rgba(5, 7, 6, 0.8);
  box-shadow: 0 0 0 13px rgba(244, 241, 232, 0.02), 0 0 60px rgba(49, 86, 239, 0.18);
  transition: border-color 500ms ease, transform 700ms var(--ease-out);
}

.system-builder[data-active="mobile"] .system-core { transform: rotate(135deg) scale(1.08); }
.system-builder[data-active="automation"] .system-core { transform: rotate(225deg) scale(0.92); }
.system-core .logo-mark { transform: rotate(-45deg); color: var(--system-color, var(--acid)); transition: color 500ms ease; }

.system-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 74px;
  aspect-ratio: 1;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  background: var(--ink);
  color: var(--text-tertiary-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.system-node::after {
  position: absolute;
  inset: -5px;
  border: 1px dashed rgba(244, 241, 232, 0.12);
  border-radius: 50%;
  content: "";
}

.system-node--one { top: 11%; left: 15%; }
.system-node--two { top: 18%; right: 9%; }
.system-node--three { right: 16%; bottom: 10%; }

.system-output {
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 48px);
}

.system-output__top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-tertiary-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.12em;
}

.system-output__top span:last-child { color: var(--system-color, var(--acid)); }

.system-builder[data-active="web"] .system-output__top span:last-child {
  color: var(--blue-soft);
}

.system-output h3 {
  margin: auto 0 24px;
  font-size: clamp(38px, 4vw, 70px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.system-output > p {
  margin: 0;
  color: var(--text-secondary-dark);
  font-size: 16px;
  line-height: 1.6;
}

.system-output__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 28px;
}

.system-output__tags span,
.terminal-metrics span {
  padding: 8px 10px;
  border: 1px solid var(--line-dark);
  color: var(--text-secondary-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.1em;
}

.system-output__status {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  color: var(--text-tertiary-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.system-output__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--system-color, var(--acid));
  box-shadow: 0 0 9px var(--system-color, var(--acid));
}

.projects {
  --index-accent: var(--blue);
  background: var(--paper);
  color: var(--ink);
}

.projects__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: clamp(70px, 9vw, 140px);
}

.projects .eyebrow { color: var(--blue-deep); }
.projects .section-title em { color: var(--blue); }
.projects .section-lead { max-width: 430px; color: var(--text-secondary-light); }

.project-list {
  display: grid;
  gap: clamp(44px, 7vw, 108px);
}

.projects__all {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: clamp(58px, 8vw, 112px);
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
}

.projects__all > span {
  color: var(--text-secondary-light);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.projects__all-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 760;
  letter-spacing: -0.035em;
}

.projects__all-link svg {
  width: 32px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 1.8;
  transition: transform 300ms var(--ease-out);
}

.projects__all-link:hover svg { transform: translateX(7px); }

.project {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.75fr);
  width: 100%;
  min-width: 0;
  min-height: 610px;
  color: var(--paper);
  transform-style: preserve-3d;
}

.project--commerce {
  grid-template-columns: minmax(330px, 0.72fr) minmax(0, 1.28fr);
}

.project--commerce .project__visual { order: 2; }
.project--commerce .project__info { order: 1; }

.project--commerce .project__info h3 {
  font-size: clamp(34px, 3.25vw, 54px);
}

.project__visual {
  position: relative;
  min-width: 0;
  min-height: 610px;
  overflow: hidden;
  background: var(--ink-soft);
}

.project__visual::before {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(244, 241, 232, 0.11), transparent 29%);
  content: "";
  transition: opacity 300ms ease;
}

.project--atomic .project__visual::before {
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(199, 255, 42, 0.17), transparent 29%);
}

.project--commerce .project__visual::before {
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(255, 98, 69, 0.2), transparent 31%);
}

.project--logistics .project__visual::before {
  background: radial-gradient(circle at var(--card-x, 50%) var(--card-y, 50%), rgba(49, 86, 239, 0.2), transparent 31%);
}

.project__visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--paper);
  transition: transform 900ms var(--ease-out);
}

.project:hover .project__visual svg { transform: scale(1.045); }

.project__scan {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(to bottom, transparent 0 4px, rgba(255,255,255,.025) 4px 5px);
  pointer-events: none;
}

.project__scan::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  background: rgba(199, 255, 42, 0.35);
  box-shadow: 0 0 10px rgba(199, 255, 42, 0.35);
  content: "";
  animation: scan 6s ease-in-out infinite;
}

.project--commerce .project__scan::after {
  background: rgba(255, 98, 69, 0.48);
  box-shadow: 0 0 10px rgba(255, 98, 69, 0.42);
}

.project--logistics .project__scan::after {
  background: rgba(49, 86, 239, 0.52);
  box-shadow: 0 0 10px rgba(49, 86, 239, 0.45);
}

@keyframes scan { 0%, 100% { top: 12%; opacity: 0; } 20%, 80% { opacity: 1; } 70% { top: 88%; } }

.project__visual-label {
  position: absolute;
  right: 24px;
  bottom: 22px;
  padding: 7px 9px;
  border: 1px solid var(--line-dark);
  background: rgba(5, 7, 6, 0.55);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.13em;
}

.project__info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: clamp(28px, 4vw, 62px);
  background: var(--ink);
}

.project--commerce .project__info { background: var(--blue); }
.project--logistics .project__info { background: var(--surface-warm); }

.project__info > div {
  display: flex;
  justify-content: space-between;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-tertiary-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project__info h3 {
  margin: auto 0 26px;
  font-size: clamp(40px, 4.7vw, 80px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.project__info p {
  max-width: 390px;
  margin: 0 0 34px;
  color: var(--text-secondary-dark);
  font-size: 15px;
  line-height: 1.55;
}

.project--commerce .project__info > div,
.project--commerce .project__info p {
  color: var(--paper);
}

.project__open {
  align-self: flex-start;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.commerce-grid {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(3, 118px);
  gap: 10px;
  transform: translate(-50%, -50%) rotate(-12deg) skewX(4deg);
}

.commerce-grid span {
  aspect-ratio: 1;
  border: 1px solid rgba(244, 241, 232, 0.35);
  background: linear-gradient(135deg, rgba(49, 86, 239, 0.62), transparent), rgba(244, 241, 232, 0.04);
  transition: transform 500ms var(--ease-out), background 500ms ease;
}

.commerce-grid span:nth-child(2),
.commerce-grid span:nth-child(5),
.commerce-grid span:nth-child(8) { transform: translateY(-28px); background: rgba(255, 98, 69, 0.9); }

.project--commerce:hover .commerce-grid span:nth-child(odd) { transform: translateY(-12px); }

.commerce-cursor {
  position: absolute;
  top: 54%;
  left: 57%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 99px;
  background: var(--paper);
  color: var(--ink);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 8px;
  font-weight: 700;
  box-shadow: 0 13px 40px rgba(0,0,0,.3);
  animation: cursor-float 4s ease-in-out infinite;
}

.commerce-cursor span { display: grid; place-items: center; width: 17px; height: 17px; border-radius: 50%; background: var(--acid); font-size: 12px; }
@keyframes cursor-float { 50% { transform: translate(24px, -18px); } }

.route-line { stroke-dasharray: 10 9; animation: route 12s linear infinite; }
@keyframes route { to { stroke-dashoffset: -190; } }

.process {
  --index-accent: var(--coral);
  overflow: hidden;
  background: linear-gradient(145deg, var(--ink) 0%, var(--surface-navy) 68%, var(--cobalt-night) 145%);
}

.process::before {
  position: absolute;
  right: -8vw;
  bottom: -22vw;
  width: 60vw;
  aspect-ratio: 1;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(244, 241, 232, .012), 0 0 0 16vw rgba(244, 241, 232, .009);
  content: "";
}

.process__head {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 30px;
  margin-bottom: clamp(80px, 10vw, 160px);
}

.process .section-title em {
  color: var(--coral);
}

.process-line {
  position: relative;
  height: 1px;
  background: var(--line-dark);
}

.process-line__progress {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(var(--process-progress, 0));
  transform-origin: left;
  background: linear-gradient(90deg, var(--blue) 0 33%, var(--coral) 33% 67%, var(--acid) 67% 100%);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-step {
  position: relative;
  min-height: 330px;
  padding: 31px clamp(18px, 2vw, 34px) 0 0;
  border-right: 1px solid var(--line-dark);
}

.process-step:not(:first-child) { padding-left: clamp(18px, 2vw, 34px); }
.process-step:last-child { border-right: 0; }

.process-step > span {
  color: var(--paper-muted);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.process-step > i {
  position: absolute;
  top: -5px;
  left: -1px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 15px rgba(49, 86, 239, 0.8);
}

.process-step:nth-child(2) > i { background: var(--coral); box-shadow: 0 0 15px rgba(255, 98, 69, 0.72); }
.process-step:nth-child(3) > i { background: var(--acid); box-shadow: 0 0 15px rgba(199, 255, 42, 0.72); }
.process-step:nth-child(4) > i { background: var(--paper); box-shadow: 0 0 15px rgba(244, 241, 232, 0.5); }

.process-step:not(:first-child) > i { left: clamp(18px, 2vw, 34px); }

.process-step h3 {
  margin: 100px 0 20px;
  font-size: clamp(25px, 2.6vw, 42px);
  font-weight: 730;
  letter-spacing: -0.045em;
}

.process-step p {
  max-width: 320px;
  margin: 0;
  color: var(--text-secondary-dark);
  font-size: 13px;
  line-height: 1.65;
}

.core-terminal {
  --index-accent: var(--blue);
  background: var(--surface-warm);
}

.core-terminal .section-title em {
  color: var(--blue-soft);
}

.terminal-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(520px, 1.2fr);
  align-items: center;
  gap: clamp(50px, 8vw, 145px);
}

.terminal-copy .section-lead { max-width: 580px; }

.terminal-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}

.terminal {
  position: relative;
  min-height: 570px;
  border: 1px solid rgba(255, 98, 69, 0.4);
  background: rgba(5, 7, 6, 0.92);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45), 0 0 90px rgba(255, 98, 69, 0.07);
  font-family: "SFMono-Regular", Consolas, monospace;
}

.terminal::before {
  position: absolute;
  inset: -16px 16px 16px -16px;
  z-index: -1;
  border: 1px solid rgba(49, 86, 239, 0.32);
  content: "";
}

.terminal__bar,
.terminal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-tertiary-dark);
  font-size: 8px;
  letter-spacing: 0.08em;
}

.terminal__bar > div { display: flex; gap: 6px; }
.terminal__bar i { width: 7px; height: 7px; border: 1px solid rgba(244, 241, 232, .5); border-radius: 50%; }
.terminal__bar b { color: var(--acid); font-size: 7px; font-weight: 500; }

.terminal__screen {
  position: relative;
  min-height: 468px;
  padding: clamp(30px, 4vw, 58px);
  overflow: hidden;
  font-size: clamp(11px, 1vw, 14px);
  line-height: 2.1;
}

.terminal__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(244, 241, 232, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(244, 241, 232, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
}

.terminal__screen p { position: relative; margin: 0; }
.terminal__screen b { color: var(--blue-soft); font-weight: 500; }
.terminal__screen em { float: right; color: var(--text-tertiary-dark); font-style: normal; }
.terminal__muted { color: var(--text-tertiary-dark); }
.prompt { color: var(--acid); }
.terminal__ok { color: var(--acid); }
.terminal__caret { display: inline-block; width: 7px; height: 1em; margin-left: 5px; transform: translateY(2px); background: var(--acid); animation: blink 900ms step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.terminal__result {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 17px;
  margin-top: 42px;
  padding: 22px;
  border: 1px solid rgba(199, 255, 42, 0.26);
  background: rgba(199, 255, 42, 0.035);
}

.terminal__result span { grid-column: 1 / -1; color: var(--text-tertiary-dark); font-size: 7px; letter-spacing: .14em; }
.terminal__result b { color: var(--paper); font-size: clamp(12px, 1.2vw, 16px); letter-spacing: .05em; }
.terminal__result i { align-self: center; padding: 3px 6px; background: var(--acid); color: var(--ink); font-size: 6px; font-style: normal; }
.terminal__footer { border-top: 1px solid var(--line-dark); border-bottom: 0; }
.terminal__footer span:last-child { color: var(--acid); }

.seo-faq {
  --index-accent: var(--blue);
  background: var(--paper);
  color: var(--ink);
}

.seo-faq :focus-visible { outline-color: var(--blue-deep); }

.seo-faq__head {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr 0.8fr;
  gap: clamp(34px, 5vw, 90px);
  align-items: end;
}

.seo-faq__head .eyebrow {
  align-self: start;
  color: var(--blue-deep);
}

.seo-faq__head .section-title { margin: 0; }
.seo-faq__head .section-title em { color: var(--blue); }

.seo-faq__head .section-lead {
  margin: 0;
  color: var(--text-secondary-light);
}

.seo-faq__list {
  margin-top: clamp(75px, 9vw, 150px);
  border-bottom: 1px solid var(--line-light);
}

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

.seo-faq summary {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) 48px;
  gap: 26px;
  align-items: center;
  min-height: 118px;
  padding: 16px 0;
  cursor: pointer;
  list-style: none;
}

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

.seo-faq summary > span {
  color: var(--blue-deep);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.12em;
}

.seo-faq summary h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 43px);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.seo-faq summary i {
  position: relative;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-light);
  border-radius: 50%;
  transition: transform 350ms var(--ease-out), background 250ms ease, border-color 250ms ease;
}

.seo-faq summary i::before,
.seo-faq summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 1px;
  transform: translate(-50%, -50%);
  background: currentColor;
  content: "";
}

.seo-faq summary i::after { transform: translate(-50%, -50%) rotate(90deg); }
.seo-faq summary:hover i { border-color: var(--blue); background: var(--blue); color: var(--paper); }
.seo-faq details[open] summary i { transform: rotate(45deg); border-color: var(--coral); background: var(--coral); }

.seo-faq details > p {
  max-width: 800px;
  margin: -2px 74px 40px 84px;
  color: var(--text-secondary-light);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
}

.contact {
  --index-accent: var(--blue);
  min-height: 100svh;
  padding-bottom: clamp(80px, 9vw, 140px);
  overflow: hidden;
  background: var(--accent-human);
  color: var(--ink);
}

.contact.spotlight::before {
  background: radial-gradient(600px circle at var(--mx) var(--my), rgba(255, 255, 255, 0.5), transparent 44%);
}

.contact .section-index {
  border-color: var(--line-light);
  color: rgba(5, 7, 6, 0.74);
}

.contact__inner {
  position: relative;
  z-index: 2;
}

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

.contact__title {
  max-width: 1260px;
  margin: clamp(55px, 8vw, 118px) 0 0;
  font-size: clamp(58px, 10.5vw, 190px);
  font-weight: 850;
  letter-spacing: -0.078em;
  line-height: 0.79;
  text-transform: uppercase;
}

.contact__title em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1.5px rgba(5, 7, 6, 0.72);
}

.contact__bottom {
  display: grid;
  grid-template-columns: minmax(260px, 540px) 260px;
  align-items: center;
  justify-content: end;
  gap: clamp(38px, 8vw, 140px);
  margin-top: clamp(50px, 8vw, 125px);
}

.contact__bottom > p {
  margin: 0;
  font-size: clamp(16px, 1.4vw, 22px);
  line-height: 1.55;
}

.contact-orb {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  transition: transform 500ms var(--ease-out), box-shadow 400ms ease;
}

.contact-orb::before {
  position: absolute;
  inset: 0;
  transform: translateY(100%);
  border-radius: 50%;
  background: var(--blue);
  content: "";
  transition: transform 500ms var(--ease-out);
}

.contact-orb span,
.contact-orb svg { position: relative; z-index: 1; }
.contact-orb span { font-size: 18px; font-weight: 700; line-height: 1.12; text-transform: uppercase; }
.contact-orb svg { position: absolute; top: 34px; right: 34px; width: 30px; fill: none; stroke: currentColor; stroke-width: 1.4; }
.contact-orb:hover { box-shadow: 0 30px 80px rgba(5,7,6,.25); }
.contact-orb:hover::before { transform: none; }

.contact__rings {
  position: absolute;
  top: 26%;
  right: -15vw;
  width: 60vw;
  aspect-ratio: 1;
}

.contact__rings i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(5, 7, 6, 0.16);
  border-radius: 50%;
}

.contact__rings i:nth-child(2) { inset: 15%; }
.contact__rings i:nth-child(3) { inset: 30%; background: rgba(244, 241, 232, .09); }

.site-footer {
  padding: 70px 0 28px;
  background: var(--ink);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: start;
  min-height: 220px;
}

.footer__top > p {
  margin: 0;
  color: var(--text-tertiary-dark);
  font-size: 13px;
}

.footer__top > p span { color: var(--paper-muted); }

.footer__contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
}

.footer__contacts a {
  font-size: clamp(17px, 1.6vw, 25px);
  font-weight: 650;
  letter-spacing: -0.03em;
}

.footer__contacts a:hover { color: var(--acid); }

.footer__address {
  max-width: 320px;
  margin-top: 9px;
  color: var(--text-tertiary-dark);
  font-size: 10px;
  line-height: 1.5;
  text-align: right;
}

.footer__bottom {
  display: grid;
  grid-template-columns: 1fr 1fr auto auto auto;
  gap: clamp(16px, 2vw, 28px);
  padding-top: 17px;
  border-top: 1px solid var(--line-dark);
  color: var(--text-tertiary-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer__bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
}

.footer__bottom a:hover { color: var(--paper); }

.js .reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 700ms ease, transform 820ms var(--ease-out);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.js .reveal-line > span {
  transform: translateY(110%);
  transition: transform 900ms var(--ease-out);
}

.js .reveal-line.is-visible > span {
  transform: translateY(0);
}

.js .reveal-line:nth-child(2) > span { transition-delay: 90ms; }
.js .reveal-line:nth-child(3) > span { transition-delay: 180ms; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: 1fr auto; }
  .site-header.menu-open {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .site-nav { display: none; }
  .header-cta { margin-right: 56px; }
  .menu-toggle { position: absolute; right: var(--gutter); display: block; }

  .site-nav.is-open {
    position: fixed;
    inset: 0;
    z-index: -1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 3vh;
    padding: 110px var(--gutter) 60px;
    background: rgba(5, 7, 6, 0.97);
  }

  .site-nav.is-open a { font-size: clamp(34px, 7vw, 72px); font-weight: 800; letter-spacing: -0.05em; text-transform: none; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 21px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { top: 21px; transform: rotate(-45deg); }

  .hero__grid { grid-template-columns: minmax(0, 1.4fr) minmax(280px, .6fr); }
  .hero__intro { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: row; align-items: center; }
  .core-wrap { min-width: 310px; width: 35vw; }

  .system-builder { grid-template-columns: 170px 1fr; }
  .system-output { grid-column: 1 / -1; min-height: 350px; border-top: 1px solid var(--line-dark); }
  .system-output h3 { margin-top: 60px; }
  .system-visual { border-right: 0; }

  .project { grid-template-columns: 1fr .65fr; min-height: 540px; }
  .project__visual { min-height: 540px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); row-gap: 50px; }
  .process-step:nth-child(2) { border-right: 0; }
  .terminal-grid { grid-template-columns: 1fr; }
  .terminal-copy { display: grid; grid-template-columns: 1fr 1fr; gap: 0 50px; }
  .terminal-copy .eyebrow { grid-column: 1 / -1; }
  .seo-faq__head { grid-template-columns: 0.55fr 1.45fr; }
  .seo-faq__head .section-lead { grid-column: 2; }
}

@media (min-width: 801px) and (max-height: 820px) {
  .hero__grid {
    padding-top: calc(var(--header-height) + 20px);
    padding-bottom: 18px;
  }

  .hero__copy {
    padding-top: 42px;
    padding-bottom: 20px;
  }

  .hero__title {
    font-size: clamp(62px, 8.15vw, 132px);
  }

  .hero__intro {
    margin-top: 23px;
  }

  .hero__intro > p {
    font-size: clamp(14px, 1.1vw, 18px);
  }

  .button {
    padding-block: 13px;
  }

  .core-wrap {
    width: min(34vw, 500px);
    min-width: 300px;
  }

  .scroll-cue {
    display: none;
  }
}

@media (max-width: 800px) {
  :root { --header-height: 70px; }
  .header-cta { display: none; }
  .site-header { height: var(--header-height); }

  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    padding-bottom: 20px;
  }

  .hero__copy { padding-top: 70px; padding-bottom: 20px; }
  .hero__title { font-size: clamp(56px, 17.5vw, 105px); line-height: .8; }
  .hero__intro { width: 90%; margin-top: 34px; }
  .hero__intro > p { font-size: 15px; }
  .hero__actions { flex-wrap: wrap; }

  .core-wrap {
    grid-row: 3;
    justify-self: center;
    width: min(90vw, 500px);
    min-width: 0;
    margin: 0 auto;
  }

  .scroll-cue { grid-row: 4; }

  .section { padding-block: 120px; }
  .section-index { top: 27px; }
  .manifest__title { font-size: clamp(50px, 13.5vw, 105px); }
  .manifest__body,
  .manifest__facts { width: 100%; }
  .manifest__body { grid-template-columns: 1fr; }
  .manifest__facts { grid-template-columns: 1fr; }
  .fact { min-height: 120px; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .fact:nth-child(2), .fact:last-child { padding-left: 0; }
  .fact:last-child { border-bottom: 0; }

  .expertise__grid { grid-template-columns: 1fr; }
  .expertise__intro { position: static; }
  .service-card { min-height: 500px; }
  .service-card:nth-child(2),
  .service-card:nth-child(3) { margin-inline: 0; }
  .service-card__icon { margin-top: 52px; }

  .system-lab__head,
  .process__head { grid-template-columns: minmax(0, 1fr); }
  .system-builder { grid-template-columns: 1fr; }
  .system-builder__nav { display: grid; grid-template-columns: repeat(3, 1fr); border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .system-builder__nav button { min-height: 80px; justify-content: center; padding: 15px 8px; border-right: 1px solid var(--line-dark); border-bottom: 0; }
  .system-builder__nav button::after { display: none; }
  .system-visual { min-height: 520px; }

  .projects__head { display: grid; }
  .projects__all { align-items: flex-start; flex-direction: column; }
  .project { grid-template-columns: minmax(0, 1fr); }
  .project--commerce .project__visual,
  .project--commerce .project__info { order: initial; }
  .project__visual { min-height: 460px; }
  .project__info { min-height: 430px; }

  .terminal-copy { display: block; }
  .terminal { min-height: 510px; }
  .terminal__footer span:nth-child(2),
  .terminal__footer span:nth-child(3) { display: none; }

  .seo-faq__head { grid-template-columns: minmax(0, 1fr); }
  .seo-faq__head .section-lead { grid-column: 1; max-width: 620px; }
  .seo-faq summary { grid-template-columns: 42px minmax(0, 1fr) 48px; gap: 16px; }
  .seo-faq details > p { margin-left: 58px; }

  .contact__bottom { grid-template-columns: 1fr; justify-items: start; }
  .contact__title { font-size: clamp(54px, 14.5vw, 110px); }
  .contact-orb { width: 210px; }
  .contact__rings { top: 48%; right: -45vw; width: 120vw; }

  .footer__top { grid-template-columns: 1fr 1fr; gap: 50px; }
  .footer__top > p { display: none; }
  .footer__bottom { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  :root { --gutter: 18px; }
  .brand__word { font-size: 15px; }
  .logo-mark { width: 25px; height: 25px; }
  .hero__meta span:last-child { display: none; }
  .hero__copy { padding-top: 52px; }
  .hero__title { letter-spacing: -0.072em; }
  .hero__actions { align-items: flex-start; flex-direction: column; }
  .button { width: 100%; }
  .core-caption span:last-child { display: none; }

  .section-title { font-size: clamp(43px, 13vw, 72px); }
  .manifest__title { font-size: clamp(45px, 14vw, 76px); }
  .manifest__body p { font-size: 16px; }

  .service-card { min-height: 540px; }
  .service-card__icon { width: 130px; height: 130px; }
  .service-card__icon--mobile b { right: -4px; }

  .system-builder__nav button { flex-direction: column; gap: 4px; font-size: 8px; }
  .system-visual { min-height: 390px; }
  .system-node { width: 58px; }
  .system-node--one { left: 6%; }
  .system-node--two { right: 4%; }
  .system-node--three { right: 8%; }
  .system-core { width: 78px; }
  .system-output { min-height: 420px; }

  .project__visual { min-height: 360px; }
  .project__info { min-height: 390px; }
  .commerce-grid { grid-template-columns: repeat(3, 80px); }

  .process-steps { grid-template-columns: 1fr; row-gap: 0; }
  .process-step,
  .process-step:not(:first-child) { min-height: 290px; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .process-step:not(:first-child) > i { left: -1px; }
  .process-step h3 { margin-top: 70px; }

  .terminal__screen { padding: 28px 18px; font-size: 9px; }
  .terminal__bar span { display: none; }
  .terminal__result { padding: 15px; }
  .terminal__result b { font-size: 9px; }

  .seo-faq summary { grid-template-columns: 30px minmax(0, 1fr) 40px; gap: 10px; min-height: 105px; }
  .seo-faq summary i { width: 38px; height: 38px; }
  .seo-faq summary h3 { font-size: 22px; }
  .seo-faq details > p { margin: 0 0 30px 40px; font-size: 14px; }

  .contact__title { font-size: clamp(45px, 14vw, 78px); }
  .contact__bottom { margin-top: 70px; }

  .footer__top { grid-template-columns: 1fr; min-height: 270px; }
  .footer__contacts { align-items: flex-start; }
  .footer__address { text-align: left; }
  .footer__bottom { grid-template-columns: 1fr; }
  .footer__bottom a { min-height: 44px; }
}

@media (max-width: 340px) {
  .process .section-title { font-size: 38px; }
  .project__info h3 { font-size: 38px; }
}

@media (pointer: coarse) {
  .cursor { display: none; }
}

@media (forced-colors: active) {
  .signal-field,
  .page-noise,
  .contact__rings,
  .core-light {
    display: none;
  }

  .reveal-line--outline,
  .contact__title em {
    color: CanvasText;
    -webkit-text-stroke: 0;
  }

  .logo-mark,
  .eyebrow,
  .section-title em {
    color: CanvasText;
  }
}

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