:root {
  color-scheme: dark;
  --ink: #0e1111;
  --ink-soft: #151918;
  --ink-raised: #1c2120;
  --paper: #f3f5f1;
  --paper-muted: #e5e9e4;
  --white: #f8faf6;
  --muted: #a8afa9;
  --line-dark: rgba(255, 255, 255, 0.14);
  --line-light: rgba(11, 12, 13, 0.18);
  --lime: #c9f24b;
  --cyan: #4fd3cf;
  --coral: #ff704f;
  --violet: #9f8cff;
  --header-height: 72px;
  --shell: min(1440px, calc(100% - 96px));
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

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

body.menu-open {
  overflow: hidden;
}

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

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

button {
  color: inherit;
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px rgba(11, 12, 13, 0.9);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  min-height: 44px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: 4px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: background-color 240ms ease, border-color 240ms ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  border-bottom-color: var(--line-dark);
  background: rgba(11, 12, 13, 0.9);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 3px;
  color: var(--lime);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 13px;
  font-weight: 800;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-size: 14px;
  font-weight: 720;
  line-height: 1.3;
}

.brand-copy small {
  margin-top: 4px;
  color: var(--muted);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 10px;
  text-transform: uppercase;
}

.brand-mobile {
  display: none;
  font-size: 13px;
  font-weight: 720;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 30px;
}

.desktop-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  height: 100%;
  color: #c4c6c2;
  font-size: 13px;
  font-weight: 650;
  transition: color 180ms ease;
}

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

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

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

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 220px;
  gap: 14px;
}

.language-switch {
  display: grid;
  grid-template-columns: repeat(2, 36px);
  width: 74px;
  height: 34px;
  padding: 2px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
}

.language-switch button {
  display: grid;
  width: 34px;
  height: 28px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 2px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
  transition: background-color 160ms ease, color 160ms ease;
}

.language-switch button[aria-pressed="true"] {
  background: var(--white);
  color: var(--ink);
}

.header-contact {
  display: inline-grid;
  height: 36px;
  padding: 0 14px;
  place-items: center;
  border: 1px solid var(--lime);
  border-radius: 4px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 750;
  transition: background-color 180ms ease, color 180ms ease;
}

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

.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  width: 16px;
  height: 1px;
  background: var(--white);
  transition: transform 180ms ease;
}

.menu-toggle span:first-child {
  transform: translateY(-4px);
}

.menu-toggle span:last-child {
  transform: translateY(4px);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  z-index: -1;
  top: var(--header-height);
  right: 0;
  left: 0;
  height: calc(100svh - var(--header-height));
  transform: translateY(-16px);
  background: var(--ink);
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, transform 240ms var(--ease), visibility 180ms ease;
}

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

.mobile-nav nav {
  display: flex;
  flex-direction: column;
  padding-top: 32px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 28px;
  font-weight: 650;
}

.mobile-nav a::after {
  color: var(--lime);
  content: "↗";
  font-size: 18px;
}

.hero {
  position: relative;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  overflow: hidden;
  align-items: flex-end;
  background: var(--ink);
  isolation: isolate;
}

.signal-canvas,
.hero-grid {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-portrait {
  position: absolute;
  z-index: 1;
  top: var(--header-height);
  right: -3vw;
  bottom: 0;
  width: min(42vw, 620px);
  overflow: visible;
  pointer-events: none;
}

.hero-portrait::after {
  position: absolute;
  z-index: -1;
  inset: 18% 2% 5% 12%;
  content: "";
  background:
    linear-gradient(var(--cyan), var(--cyan)) left top / 46% 1px no-repeat,
    linear-gradient(var(--lime), var(--lime)) right bottom / 58% 1px no-repeat,
    linear-gradient(rgba(248, 250, 246, 0.3), rgba(248, 250, 246, 0.3)) left top / 1px 72% no-repeat;
  opacity: 0.72;
}

.hero-portrait img {
  position: absolute;
  right: -8%;
  bottom: -13%;
  width: 126%;
  height: 126%;
  max-width: none;
  object-fit: contain;
  object-position: center bottom;
  filter:
    drop-shadow(2px 0 0 rgba(79, 211, 207, 0.86))
    drop-shadow(-2px 0 0 rgba(201, 242, 75, 0.58))
    drop-shadow(0 24px 34px rgba(0, 0, 0, 0.34));
  transform: scale(1.045);
  transform-origin: 52% 58%;
  will-change: transform;
}

.hero-portrait > span {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 24px;
  color: rgba(248, 250, 246, 0.72);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 10px;
  font-weight: 750;
}

.hero-grid {
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent 0, #000 28%, #000 100%);
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(14, 17, 17, 0.99) 0%, rgba(14, 17, 17, 0.9) 48%, rgba(14, 17, 17, 0.27) 78%, rgba(14, 17, 17, 0.08) 100%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: calc(100svh - var(--header-height));
  padding-top: calc(var(--header-height) + 36px);
  padding-bottom: 54px;
  align-items: flex-end;
}

.hero-content {
  width: min(1040px, 78%);
}

.availability {
  display: inline-flex;
  align-items: center;
  margin-bottom: 22px;
  gap: 10px;
  color: #d4d6d2;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.availability-dot {
  width: 8px;
  height: 8px;
  border: 2px solid var(--lime);
  background: transparent;
  animation: status-pulse 2.4s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(215, 255, 95, 0); }
  50% { box-shadow: 0 0 0 6px rgba(215, 255, 95, 0.12); }
}

.hero h1 {
  max-width: 1200px;
  margin: 0;
  color: var(--white);
  font-size: 92px;
  font-weight: 760;
  line-height: 0.94;
  text-wrap: balance;
}

.hero-role-row {
  display: flex;
  align-items: center;
  margin-top: 24px;
  gap: 18px;
}

.hero-role-row strong {
  color: var(--lime);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-role-row span {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  color: #c4c6c2;
  font-size: 15px;
}

.hero-lead {
  max-width: 740px;
  margin: 24px 0 0;
  color: #d4d6d2;
  font-size: 20px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-width: 190px;
  height: 50px;
  padding: 0 18px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 760;
  transition: transform 220ms var(--ease), background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

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

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

.button-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(11, 12, 13, 0.48);
  color: var(--white);
}

.button-secondary:hover {
  border-color: var(--white);
}

.button-arrow {
  font-size: 16px;
}

.hero-coordinate {
  position: absolute;
  right: 0;
  bottom: 54px;
  display: grid;
  min-width: 150px;
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  gap: 3px;
  color: #a9aca8;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 10px;
}

.hero-coordinate b {
  margin-top: 7px;
  color: var(--coral);
  font-size: 11px;
}

.hero-annotations {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
}

.annotation {
  position: absolute;
  padding: 5px 7px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(11, 12, 13, 0.7);
  color: #c7cac6;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 9px;
  font-weight: 700;
}

.annotation-a { top: 27%; right: 34%; }
.annotation-b { top: 50%; right: 19%; color: var(--cyan); }
.annotation-c { right: 7%; bottom: 28%; color: var(--coral); }

.proof-strip {
  position: relative;
  z-index: 2;
  background: var(--paper);
  color: var(--ink);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 108px;
}

.proof-item {
  display: flex;
  min-width: 0;
  padding: 22px 24px;
  flex-direction: column;
  justify-content: center;
  border-left: 1px solid var(--line-light);
}

.proof-item:last-child {
  border-right: 1px solid var(--line-light);
}

.proof-item strong {
  overflow-wrap: anywhere;
  font-size: 20px;
  font-weight: 780;
  line-height: 1.1;
}

.proof-item:nth-child(1) strong,
.proof-item:nth-child(2) strong,
.proof-item:nth-child(3) strong,
.proof-item:nth-child(4) strong { color: var(--ink); }

.proof-item span {
  margin-top: 8px;
  color: #555a55;
  font-size: 12px;
  line-height: 1.35;
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

.section-light {
  background: var(--paper);
  color: var(--ink);
}

.section-shell {
  padding-top: 132px;
  padding-bottom: 132px;
}

.section-marker {
  display: flex;
  align-items: center;
  margin-bottom: 46px;
  gap: 12px;
  color: var(--muted);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.section-marker span:first-child {
  display: grid;
  width: 30px;
  height: 24px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--lime);
}

.section-marker::after {
  width: 72px;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.24);
}

.section-marker-dark {
  color: #5c615c;
}

.section-marker-dark span:first-child {
  border-color: rgba(11, 12, 13, 0.25);
  color: #496800;
}

.section-marker-dark::after {
  background: rgba(11, 12, 13, 0.25);
}

.section-title {
  margin: 0;
  font-size: 58px;
  font-weight: 720;
  line-height: 1.04;
  text-wrap: balance;
}

.about-layout,
.intro-layout,
.approach-heading,
.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 88px;
  align-items: start;
}

.about-copy {
  margin-left: -8px;
  padding-top: 8px;
}

.about-copy p,
.intro-copy,
.lab-copy > p,
.contact-content > p {
  margin: 0;
  color: #b9bcb8;
  font-size: 18px;
  line-height: 1.7;
}

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

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 80px;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.principles article {
  display: grid;
  min-height: 215px;
  padding: 24px 32px 30px;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  border-left: 1px solid var(--line-dark);
  transition: background-color 220ms ease, transform 280ms var(--ease);
}

.principles article:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.025);
}

.principles article:last-child {
  border-right: 1px solid var(--line-dark);
}

.principles article > span {
  color: var(--cyan);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 11px;
}

.principles h3 {
  min-height: 0;
  margin: 20px 0 10px;
  font-size: 25px;
  font-weight: 720;
}

.principles p {
  margin: 0;
  color: #aeb1ad;
  font-size: 14px;
  line-height: 1.6;
}

.cases-intro .section-shell {
  padding-bottom: 104px;
}

.intro-copy {
  padding-top: 8px;
  color: #555a55;
}

.case {
  position: relative;
  overflow: hidden;
}

.case-tagify {
  background: var(--paper-muted);
  color: var(--ink);
  border-top: 1px solid var(--line-light);
}

.case-industry {
  background: var(--ink-soft);
  color: var(--white);
}

.case-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  min-height: 760px;
  gap: 88px;
  align-items: center;
  padding-top: 108px;
  padding-bottom: 108px;
}

.case-layout-reverse {
  grid-template-columns: minmax(520px, 1.18fr) minmax(0, 0.82fr);
}

.case-layout-reverse .case-copy {
  grid-column: 2;
}

.case-layout-reverse .system-visual {
  grid-column: 1;
  grid-row: 1;
}

.case-meta {
  display: flex;
  margin-bottom: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #606560;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 10px;
  font-weight: 750;
}

.case-industry .case-meta {
  color: #949894;
}

.case-copy h3 {
  margin: 0;
  font-size: 48px;
  font-weight: 760;
  line-height: 1.02;
  text-wrap: balance;
}

.case-subtitle {
  margin: 20px 0 0;
  font-size: 21px;
  font-weight: 650;
  line-height: 1.35;
}

.case-body {
  margin: 22px 0 0;
  color: #4d524d;
  font-size: 16px;
  line-height: 1.7;
}

.case-industry .case-body {
  color: #b3b6b2;
}

.case-list {
  display: grid;
  margin: 32px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-light);
  list-style: none;
}

.case-industry .case-list {
  border-color: var(--line-dark);
}

.case-list li {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line-light);
  font-size: 13px;
  font-weight: 640;
}

.case-industry .case-list li {
  border-color: var(--line-dark);
}

.case-list li::before {
  width: 6px;
  height: 6px;
  content: "";
  background: #4b6a00;
}

.case-industry .case-list li::before {
  background: var(--cyan);
}

.case-result {
  display: grid;
  margin-top: 32px;
  padding-left: 18px;
  border-left: 3px solid #4b6a00;
  gap: 5px;
}

.case-industry .case-result {
  border-color: var(--coral);
}

.case-result span {
  color: #555a55;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
}

.case-industry .case-result span {
  color: #989c98;
}

.case-result strong {
  font-size: 14px;
  line-height: 1.45;
}

.entity-map,
.system-visual {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border: 1px solid rgba(11, 12, 13, 0.28);
  border-radius: 6px;
  background: #101214;
  box-shadow: 24px 28px 0 rgba(11, 12, 13, 0.08);
}

.entity-map {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
}

.map-chrome {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 44px;
  padding: 0 14px;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: #171a1c;
}

.map-chrome span {
  width: 7px;
  height: 7px;
  border: 1px solid #717671;
}

.map-chrome span:nth-child(1) { background: var(--coral); border-color: var(--coral); }
.map-chrome span:nth-child(2) { background: var(--lime); border-color: var(--lime); }
.map-chrome span:nth-child(3) { background: var(--cyan); border-color: var(--cyan); }

.map-chrome b {
  margin-left: auto;
  color: #8f948f;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 9px;
}

.map-axis {
  position: absolute;
  background: rgba(255, 255, 255, 0.14);
}

.map-axis-x {
  top: 55%;
  right: 8%;
  left: 8%;
  height: 1px;
}

.map-axis-y {
  top: 15%;
  bottom: 8%;
  left: 49%;
  width: 1px;
}

.map-node {
  position: absolute;
  display: grid;
  width: 116px;
  height: 76px;
  padding: 12px;
  align-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  background: #1a1d1f;
  transition: transform 350ms var(--ease), border-color 220ms ease;
}

.entity-map:hover .map-node-project { transform: translate(-6px, -5px); border-color: var(--lime); }
.entity-map:hover .map-node-notes { transform: translate(4px, -7px); border-color: var(--cyan); }
.entity-map:hover .map-node-links { transform: translate(5px, 4px); border-color: var(--coral); }

.map-node small {
  color: #8f948f;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 8px;
}

.map-node strong {
  color: var(--white);
  font-size: 23px;
}

.map-node-project { top: 18%; left: 9%; border-top: 3px solid var(--lime); }
.map-node-notes { top: 18%; right: 11%; border-top: 3px solid var(--cyan); }
.map-node-links { right: 12%; bottom: 11%; border-top: 3px solid var(--coral); }

.map-table {
  position: absolute;
  bottom: 11%;
  left: 9%;
  width: 39%;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 3px;
  background: #151719;
  color: #c5c8c4;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 8px;
}

.map-table > div {
  display: grid;
  grid-template-columns: 1fr 0.6fr 0.7fr;
  min-height: 27px;
  padding: 0 9px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.map-table > div:first-child {
  color: #777c77;
  font-size: 7px;
}

.map-table > div:last-child {
  border-bottom: 0;
}

.map-table i {
  width: 16px;
  height: 4px;
  background: var(--lime);
}

.map-table div:nth-child(3) i { background: var(--cyan); }
.map-table div:nth-child(4) i { background: var(--coral); }
.map-table div:nth-child(5) i { background: var(--violet); }
.map-table em { font-style: normal; text-align: right; }

.map-trace {
  position: absolute;
  border-color: var(--lime);
  border-style: solid;
  opacity: 0.6;
}

.trace-one {
  top: 32%;
  left: 28%;
  width: 23%;
  height: 23%;
  border-width: 1px 1px 0 0;
}

.trace-two {
  right: 28%;
  bottom: 27%;
  width: 22%;
  height: 28%;
  border-width: 0 0 1px 1px;
  border-color: var(--cyan);
}

.map-cursor {
  position: absolute;
  top: 51.5%;
  left: 47.9%;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--coral);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  animation: cursor-shift 3s var(--ease) infinite alternate;
}

@keyframes cursor-shift {
  to { transform: translate(36px, -20px); }
}

.system-visual {
  border-color: rgba(255, 255, 255, 0.2);
  background: #0d0f10;
  box-shadow: 24px 28px 0 rgba(0, 0, 0, 0.2);
}

.system-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(103, 223, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(103, 223, 232, 0.05) 1px, transparent 1px);
  background-size: 30px 30px;
}

.system-header {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  height: 44px;
  padding: 0 14px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #151819;
  color: #8e938e;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 8px;
}

.system-header b {
  color: var(--lime);
}

.system-route {
  position: absolute;
  z-index: 1;
  top: 14%;
  right: 7%;
  left: 7%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.route-line {
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 10%;
  left: 10%;
  height: 1px;
  background: rgba(103, 223, 232, 0.45);
}

.route-stage {
  display: grid;
  height: 54px;
  padding: 8px;
  align-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 3px;
  background: #16191b;
  transition: border-color 200ms ease, transform 280ms var(--ease);
}

.system-visual:hover .route-stage:nth-of-type(2) { transform: translateY(-4px); border-color: var(--lime); }
.system-visual:hover .route-stage:nth-of-type(3) { transform: translateY(4px); border-color: var(--cyan); }
.system-visual:hover .route-stage:nth-of-type(4) { transform: translateY(-4px); border-color: var(--violet); }
.system-visual:hover .route-stage:nth-of-type(5) { transform: translateY(4px); border-color: var(--coral); }

.route-stage small {
  color: #747974;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 7px;
}

.route-stage strong {
  color: #d9dcd8;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 8px;
}

.system-screen {
  position: absolute;
  z-index: 1;
  top: 35%;
  right: 8%;
  left: 8%;
  bottom: 18%;
  display: grid;
  grid-template-columns: 54px 1fr;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: #e5e7e1;
}

.screen-sidebar {
  display: flex;
  padding-top: 14px;
  align-items: center;
  flex-direction: column;
  gap: 11px;
  background: #24282a;
}

.screen-sidebar i {
  width: 20px;
  height: 20px;
  border: 1px solid #6f7470;
  border-radius: 2px;
}

.screen-sidebar i:first-child {
  border-color: var(--lime);
  background: rgba(215, 255, 95, 0.16);
}

.screen-main {
  display: grid;
  padding: 16px;
  grid-template-rows: 28px 1fr 34px;
  gap: 12px;
}

.screen-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.screen-top span:first-child {
  width: 38%;
  height: 9px;
  background: #2f3334;
}

.screen-top span:last-child {
  width: 64px;
  height: 22px;
  border: 1px solid #7a7f7a;
  border-radius: 2px;
}

.screen-chart {
  display: flex;
  padding: 14px 14px 0;
  align-items: end;
  justify-content: space-around;
  border: 1px solid rgba(11, 12, 13, 0.16);
  background-image:
    linear-gradient(rgba(11, 12, 13, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 12, 13, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
}

.screen-chart i {
  width: 9%;
  background: #343838;
}

.screen-chart i:nth-child(1) { height: 38%; }
.screen-chart i:nth-child(2) { height: 68%; background: #5b3cbb; }
.screen-chart i:nth-child(3) { height: 52%; }
.screen-chart i:nth-child(4) { height: 82%; background: #17656a; }
.screen-chart i:nth-child(5) { height: 60%; background: #9c2e1d; }

.screen-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.screen-actions span {
  width: 76px;
  height: 28px;
  border: 1px solid #777c77;
  border-radius: 2px;
}

.screen-actions span:last-child {
  border-color: #2b4c00;
  background: var(--lime);
}

.system-log {
  position: absolute;
  z-index: 2;
  right: 8%;
  bottom: 5%;
  left: 8%;
  display: flex;
  justify-content: space-between;
  color: #7f847f;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 7px;
}

.system-log span:last-child {
  color: var(--lime);
}

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

.approach-heading {
  margin-bottom: 92px;
}

.approach .intro-copy {
  color: #344000;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(11, 12, 13, 0.35);
  border-bottom: 1px solid rgba(11, 12, 13, 0.35);
  list-style: none;
}

.process-flow li {
  position: relative;
  min-height: 252px;
  padding: 30px 28px;
  border-left: 1px solid rgba(11, 12, 13, 0.28);
}

.process-flow li:last-child {
  border-right: 1px solid rgba(11, 12, 13, 0.28);
}

.process-flow li > span {
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.process-flow li > span::after {
  position: absolute;
  top: 34px;
  right: -5px;
  z-index: 2;
  width: 9px;
  height: 9px;
  content: "";
  border: 2px solid var(--ink);
  background: var(--lime);
}

.process-flow li:last-child > span::after {
  display: none;
}

.process-flow h3 {
  margin: 68px 0 14px;
  font-size: 23px;
  line-height: 1.2;
}

.process-flow p {
  margin: 0;
  color: #344000;
  font-size: 14px;
  line-height: 1.6;
}

.ai-note {
  display: grid;
  grid-template-columns: 180px 1fr;
  margin-top: 44px;
  padding-top: 30px;
  align-items: start;
  gap: 32px;
}

.ai-note > span {
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
}

.ai-note p {
  max-width: 820px;
  margin: 0;
  color: #263000;
  font-size: 18px;
  line-height: 1.65;
}

.lab-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  gap: 88px;
  align-items: center;
}

.lab-copy > p {
  margin-top: 30px;
}

.tech-tags {
  display: flex;
  margin-top: 36px;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tags span {
  display: inline-flex;
  min-height: 32px;
  padding: 0 11px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 3px;
  color: #d8dad6;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 10px;
}

.network-map {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  background: #101214;
}

.network-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
}

.network-node {
  position: absolute;
  display: grid;
  width: 112px;
  min-height: 58px;
  padding: 10px;
  align-content: space-between;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 3px;
  background: #1a1d1f;
  transition: transform 300ms var(--ease), border-color 200ms ease;
}

.network-map:hover .node-router { transform: translateX(-5px); border-color: var(--coral); }
.network-map:hover .node-server { transform: translateY(-5px); border-color: var(--lime); }
.network-map:hover .node-docker { transform: translateX(5px); border-color: var(--cyan); }
.network-map:hover .node-home { transform: translateY(5px); border-color: var(--violet); }
.network-map:hover .node-storage { transform: translateX(5px); border-color: var(--coral); }

.network-node small {
  color: #858a85;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 7px;
}

.network-node strong {
  color: var(--white);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 10px;
}

.node-router { top: 18%; left: 8%; border-top: 3px solid var(--coral); }
.node-server { top: 38%; left: 39%; border-top: 3px solid var(--lime); }
.node-docker { top: 12%; right: 8%; border-top: 3px solid var(--cyan); }
.node-home { right: 9%; bottom: 14%; border-top: 3px solid var(--violet); }
.node-storage { bottom: 12%; left: 12%; border-top: 3px solid var(--coral); }

.network-line {
  position: absolute;
  border-color: rgba(103, 223, 232, 0.5);
  border-style: solid;
}

.line-router {
  top: 29%;
  left: 24%;
  width: 23%;
  height: 30%;
  border-width: 1px 0 0 1px;
}

.line-server {
  top: 23%;
  right: 24%;
  width: 27%;
  height: 34%;
  border-width: 1px 1px 0 0;
}

.line-storage {
  right: 24%;
  bottom: 25%;
  left: 25%;
  height: 28%;
  border-width: 0 1px 1px 1px;
}

.network-pulse {
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(215, 255, 95, 0.7);
}

.pulse-a {
  top: 29%;
  left: 32%;
  animation: network-pulse-a 4s linear infinite;
}

.pulse-b {
  right: 24%;
  bottom: 25%;
  background: var(--cyan);
  animation: network-pulse-b 4.6s linear infinite;
}

@keyframes network-pulse-a {
  0% { transform: translateX(-30px); opacity: 0; }
  20%, 80% { opacity: 1; }
  100% { transform: translateX(130px); opacity: 0; }
}

@keyframes network-pulse-b {
  0% { transform: translateY(-80px); opacity: 0; }
  20%, 80% { opacity: 1; }
  100% { transform: translateY(72px); opacity: 0; }
}

.experience-layout {
  grid-template-columns: minmax(0, 0.82fr) minmax(540px, 1.18fr);
}

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

.timeline-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  min-height: 250px;
  padding: 34px 0;
  gap: 32px;
  border-bottom: 1px solid var(--line-light);
}

.timeline-date {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-date strong {
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 13px;
}

.timeline-date span {
  color: #5c615c;
  font-size: 12px;
}

.timeline-content > span {
  color: #5c615c;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.timeline-content h3 {
  margin: 14px 0;
  font-size: 28px;
  line-height: 1.2;
}

.timeline-content p {
  margin: 0;
  color: #4f544f;
  font-size: 15px;
  line-height: 1.65;
}

.contact {
  min-height: 720px;
  background: var(--coral);
  color: var(--ink);
}

.contact-shell {
  display: flex;
  min-height: 720px;
  padding-top: 96px;
  padding-bottom: 28px;
  flex-direction: column;
}

.contact-content {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.6fr);
  margin: auto 0;
  gap: 80px;
  align-items: end;
}

.contact-content h2 {
  max-width: 900px;
  margin: 0;
  font-size: 72px;
  font-weight: 760;
  line-height: 0.98;
  text-wrap: balance;
}

.contact-content > p {
  color: #4c180f;
}

.contact-link {
  grid-column: 1 / -1;
  display: flex;
  min-height: 92px;
  padding: 0 24px;
  align-items: center;
  justify-content: space-between;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 28px;
  font-weight: 800;
  transition: padding 260ms var(--ease), background-color 180ms ease, color 180ms ease;
}

.contact-link:hover {
  padding-right: 34px;
  padding-left: 34px;
  background: var(--ink);
  color: var(--coral);
}

.site-footer {
  display: flex;
  min-height: 64px;
  align-items: end;
  justify-content: space-between;
  border-top: 1px solid rgba(11, 12, 13, 0.28);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
}

.site-footer a:hover {
  text-decoration: underline;
}

.footer-meta {
  display: flex;
  padding-bottom: 2px;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
}

.privacy-link {
  color: rgba(11, 12, 13, 0.68);
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

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

.noscript {
  position: fixed;
  z-index: 999;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px;
  border-radius: 4px;
  background: var(--coral);
  color: var(--ink);
  text-align: center;
}

@media (min-width: 1500px) {
  .hero h1 { font-size: 104px; }
}

@media (max-width: 1199px) {
  :root {
    --shell: min(1120px, calc(100% - 64px));
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero h1 {
    font-size: 76px;
  }

  .section-title {
    font-size: 50px;
  }

  .about-layout,
  .intro-layout,
  .approach-heading,
  .experience-layout {
    gap: 56px;
  }

  .case-layout,
  .case-layout-reverse,
  .lab-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 56px;
  }

  .case-copy h3 {
    font-size: 40px;
  }

  .contact-content h2 {
    font-size: 62px;
  }
}

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

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .brand,
  .header-actions {
    min-width: 0;
  }

  .menu-toggle {
    position: relative;
    display: grid;
    place-items: center;
  }

  .hero h1 {
    font-size: 66px;
  }

  .hero-content {
    width: 90%;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(11, 12, 13, 0.97), rgba(11, 12, 13, 0.75));
  }

  .annotation-a { right: 18%; }
  .annotation-b { right: 8%; }
  .annotation-c { display: none; }

  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-item:nth-child(2) {
    border-right: 1px solid var(--line-light);
  }

  .proof-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-light);
  }

  .section-title {
    font-size: 46px;
  }

  .about-layout,
  .intro-layout,
  .approach-heading,
  .experience-layout,
  .lab-layout {
    grid-template-columns: 1fr;
  }

  .about-copy,
  .intro-copy {
    max-width: 720px;
  }

  .principles {
    margin-top: 72px;
  }

  .case-layout,
  .case-layout-reverse {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 64px;
  }

  .case-layout-reverse .case-copy,
  .case-layout-reverse .system-visual {
    grid-column: auto;
    grid-row: auto;
  }

  .case-layout-reverse .case-copy {
    order: 1;
  }

  .case-layout-reverse .system-visual {
    order: 2;
  }

  .case-copy {
    max-width: 760px;
  }

  .entity-map,
  .system-visual {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .approach-heading {
    margin-bottom: 64px;
  }

  .process-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-flow li:nth-child(2) {
    border-right: 1px solid rgba(11, 12, 13, 0.28);
  }

  .process-flow li:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(11, 12, 13, 0.28);
  }

  .process-flow li:nth-child(2) > span::after,
  .process-flow li:last-child > span::after {
    display: none;
  }

  .network-map {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .timeline {
    max-width: 760px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .contact-content h2 {
    font-size: 54px;
  }
}

@media (max-width: 700px) {
  :root {
    --header-height: 64px;
    --shell: calc(100% - 32px);
  }

  .brand-copy strong {
    font-size: 13px;
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .header-actions {
    gap: 9px;
  }

  .language-switch {
    grid-template-columns: repeat(2, 32px);
    width: 66px;
  }

  .language-switch button {
    width: 30px;
  }

  .hero {
    min-height: calc(100svh - 52px);
  }

  .hero-shell {
    min-height: calc(100svh - 52px);
    padding-top: 92px;
    padding-bottom: 36px;
  }

  .hero-content {
    width: 100%;
  }

  .availability {
    margin-bottom: 16px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: 52px;
    line-height: 1.04;
  }

  .hero-role-row {
    display: grid;
    margin-top: 16px;
    gap: 7px;
  }

  .hero-role-row strong {
    font-size: 13px;
  }

  .hero-role-row span {
    padding-left: 0;
    border-left: 0;
    color: #b8bbb7;
    font-size: 13px;
  }

  .hero-lead {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .button {
    min-width: 0;
    height: 46px;
    padding: 0 14px;
    font-size: 11px;
  }

  .button-secondary {
    flex: 1;
  }

  .hero-coordinate,
  .hero-annotations {
    display: none;
  }

  .hero-grid {
    mask-image: none;
    opacity: 0.55;
  }

  .proof-grid {
    min-height: 0;
  }

  .proof-item {
    min-height: 94px;
    padding: 16px;
  }

  .proof-item strong {
    font-size: 17px;
  }

  .proof-item span {
    font-size: 10px;
  }

  .section-shell {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .section-marker {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: 38px;
    line-height: 1.12;
  }

  .about-layout,
  .intro-layout,
  .approach-heading,
  .experience-layout,
  .lab-layout {
    gap: 34px;
  }

  .about-copy p,
  .intro-copy,
  .lab-copy > p,
  .contact-content > p {
    font-size: 16px;
  }

  .principles {
    grid-template-columns: 1fr;
    margin-top: 58px;
  }

  .principles article {
    min-height: 243px;
    padding: 24px 20px 28px;
    border-right: 1px solid var(--line-dark);
    border-bottom: 1px solid var(--line-dark);
  }

  .principles article:last-child {
    border-bottom: 0;
  }

  .principles h3 {
    min-height: 65px;
    margin-top: 22px;
  }

  .cases-intro .section-shell {
    padding-bottom: 72px;
  }

  .case-layout,
  .case-layout-reverse {
    gap: 48px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .case-meta {
    margin-bottom: 24px;
    font-size: 8px;
  }

  .case-copy h3 {
    font-size: 34px;
    line-height: 1.08;
  }

  .case-subtitle {
    font-size: 18px;
  }

  .case-body {
    font-size: 15px;
  }

  .entity-map,
  .system-visual {
    aspect-ratio: 1 / 1;
    box-shadow: 12px 14px 0 rgba(11, 12, 13, 0.08);
  }

  .map-node {
    width: 94px;
    height: 65px;
  }

  .map-node strong {
    font-size: 18px;
  }

  .map-table {
    width: 46%;
  }

  .system-route {
    top: 15%;
    grid-template-columns: repeat(2, 1fr);
  }

  .route-line {
    display: none;
  }

  .system-screen {
    top: 41%;
  }

  .system-log span:nth-child(2) {
    display: none;
  }

  .approach-heading {
    margin-bottom: 52px;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-flow li {
    min-height: 0;
    padding: 24px 20px 28px;
    border-right: 1px solid rgba(11, 12, 13, 0.28);
    border-bottom: 1px solid rgba(11, 12, 13, 0.28);
  }

  .process-flow li:last-child {
    border-bottom: 0;
  }

  .process-flow li > span::after {
    display: none;
  }

  .process-flow h3 {
    margin: 28px 0 10px;
  }

  .ai-note {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ai-note p {
    font-size: 16px;
  }

  .network-map {
    aspect-ratio: 1 / 1;
  }

  .network-node {
    width: 92px;
  }

  .node-router { top: 12%; left: 5%; }
  .node-server { top: 39%; left: 36%; }
  .node-docker { top: 9%; right: 5%; }
  .node-home { right: 5%; bottom: 9%; }
  .node-storage { bottom: 9%; left: 5%; }

  .timeline-item {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 24px;
  }

  .contact,
  .contact-shell {
    min-height: 640px;
  }

  .contact-shell {
    padding-top: 72px;
  }

  .contact-content {
    margin: 40px 0 auto;
  }

  .contact-content h2 {
    font-size: 44px;
    line-height: 1.06;
  }

  .contact-link {
    min-height: 74px;
    padding: 0 14px;
    font-size: 21px;
  }
}

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

  .brand-copy {
    display: none;
  }

  .brand-mobile {
    display: block;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .button {
    width: 100%;
  }

  .section-title {
    font-size: 34px;
  }

  .case-copy h3 {
    font-size: 30px;
  }

  .entity-map,
  .system-visual,
  .network-map {
    width: 100%;
  }

  .map-node-notes {
    right: 6%;
  }

  .map-node-links {
    right: 6%;
  }

  .screen-actions span {
    width: 48px;
  }

  .network-node {
    width: 82px;
    padding: 8px;
  }

  .network-node strong {
    font-size: 8px;
  }

  .contact-content h2 {
    font-size: 38px;
  }
}

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

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

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

html {
  scroll-padding-top: var(--header-height);
  scroll-snap-type: y proximity;
}

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

.approach ::selection,
.contact ::selection {
  background: var(--ink);
  color: var(--white);
}

.desktop-nav {
  gap: 42px;
}

.desktop-nav a {
  font-size: 15px;
  font-weight: 680;
}

.brand-copy small,
.language-switch button {
  font-size: 11px;
}

.hero {
  width: 100%;
  height: calc(100svh - 128px);
  min-height: 620px;
  max-height: 820px;
  align-items: stretch;
}

.hero-shell {
  width: var(--shell);
  height: 100%;
  min-height: 0;
  padding-top: calc(var(--header-height) + 42px);
  padding-bottom: 144px;
  align-items: flex-end;
}

.hero-content {
  width: min(1030px, 80%);
}

.availability {
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 1.45;
}

.hero h1 {
  font-size: 96px;
  line-height: 1.32;
  overflow: visible;
}

.hero-role-row {
  margin-top: 20px;
}

.hero-role-row strong {
  font-size: 16px;
}

.hero-role-row span {
  font-size: 16px;
}

.hero-lead {
  max-width: 780px;
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  margin-top: 28px;
}

.button {
  min-width: 208px;
  height: 56px;
  padding: 0 20px;
  font-size: 16px;
  line-height: 1.2;
}

.button-arrow {
  font-size: 19px;
}

.hero-coordinate {
  bottom: 58px;
  font-size: 11px;
  line-height: 1.35;
}

.annotation {
  font-size: 10px;
}

.proof-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.3fr) minmax(0, 0.78fr) minmax(0, 1.12fr);
  min-height: 128px;
  counter-reset: fact;
}

.proof-item {
  position: relative;
  display: grid;
  padding: 14px 26px 16px;
  align-content: center;
  justify-content: stretch;
  justify-items: start;
  counter-increment: fact;
}

.proof-item::before {
  color: #6d736e;
  content: "0" counter(fact);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 10px;
  font-weight: 800;
}

.proof-item::after {
  position: absolute;
  top: 0;
  left: 26px;
  width: 38px;
  height: 3px;
  content: "";
  background: var(--lime);
}

.proof-item:nth-child(2)::after {
  background: var(--cyan);
}

.proof-item:nth-child(3)::after {
  background: var(--violet);
}

.proof-item:nth-child(4)::after {
  background: var(--coral);
}

.proof-item strong {
  display: block;
  min-height: 0;
  margin-top: 11px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}

.proof-item span {
  min-height: 0;
  margin-top: 5px;
  color: #555c57;
  font-size: 13px;
  line-height: 1.35;
}

.section-shell {
  padding-top: 128px;
  padding-bottom: 128px;
}

.section-marker {
  margin-bottom: 44px;
  font-size: 12px;
  line-height: 1.3;
}

.section-marker span:first-child {
  width: 34px;
  height: 28px;
}

.section-title {
  font-size: 60px;
  line-height: 1.08;
  overflow: visible;
}

.intro-layout {
  align-items: baseline;
}

.about-copy p,
.intro-copy,
.lab-copy > p,
.contact-content > p {
  font-size: 18px;
  line-height: 1.68;
}

.principles article > span,
.principles p {
  font-size: 14px;
}

.principles h3 {
  font-size: 26px;
  line-height: 1.25;
}

.case-layout {
  grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr);
  min-height: 790px;
  gap: 80px;
}

.case-layout-reverse {
  grid-template-columns: minmax(560px, 1.22fr) minmax(0, 0.78fr);
}

.case-meta {
  margin-bottom: 28px;
  font-size: 12px;
  line-height: 1.45;
}

.case-copy h3 {
  font-size: 50px;
  line-height: 1.3;
  overflow: visible;
}

.case-subtitle {
  font-size: 22px;
  line-height: 1.4;
}

.case-body {
  font-size: 17px;
  line-height: 1.68;
}

.case-list li {
  min-height: 50px;
  font-size: 14px;
  line-height: 1.35;
}

.case-result span {
  font-size: 11px;
}

.case-result strong {
  font-size: 15px;
  line-height: 1.5;
}

.entity-map,
.system-visual {
  aspect-ratio: 4 / 3;
}

.map-chrome,
.system-header {
  height: 48px;
  padding: 0 16px;
}

.map-chrome b,
.system-header {
  font-size: 11px;
}

.tagify-workspace {
  position: absolute;
  inset: 48px 0 0;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  background: #eff1ec;
  color: var(--ink);
}

.workspace-sidebar {
  padding: 20px 14px;
  border-right: 1px solid rgba(11, 12, 13, 0.16);
  background: #dfe3dd;
}

.workspace-identity {
  display: flex;
  min-height: 42px;
  margin-bottom: 28px;
  align-items: center;
  gap: 10px;
}

.workspace-identity > span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 3px;
  background: var(--ink);
  color: var(--lime);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.workspace-identity b {
  font-size: 12px;
  line-height: 1.24;
}

.workspace-sidebar > small,
.workspace-toolbar small,
.workspace-summary small {
  display: block;
  color: #656b65;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.workspace-project {
  display: flex;
  min-height: 38px;
  margin-top: 6px;
  padding: 0 9px;
  align-items: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 3px;
  color: #4e534e;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
}

.workspace-project i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  background: #8c918c;
}

.workspace-project.is-active {
  border-color: rgba(11, 12, 13, 0.16);
  background: #f7f7f2;
  color: var(--ink);
}

.workspace-project.is-active i {
  background: #5f8200;
}

.workspace-main {
  display: flex;
  min-width: 0;
  min-height: 0;
  padding: 20px 22px 18px;
  overflow: hidden;
  flex-direction: column;
}

.workspace-toolbar {
  display: flex;
  min-height: 48px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.workspace-toolbar strong {
  display: block;
  margin-top: 4px;
  font-size: 18px;
  line-height: 1.2;
}

.workspace-toolbar > span {
  display: inline-flex;
  min-height: 28px;
  padding: 0 9px;
  align-items: center;
  border: 1px solid rgba(11, 12, 13, 0.2);
  border-radius: 3px;
  color: #3f4731;
  font-size: 11px;
  font-weight: 700;
}

.workspace-tabs {
  display: flex;
  min-height: 36px;
  align-items: flex-end;
  gap: 22px;
  border-bottom: 1px solid rgba(11, 12, 13, 0.17);
  color: #676c67;
  font-size: 12px;
  font-weight: 700;
}

.workspace-tabs span {
  position: relative;
  display: flex;
  height: 36px;
  align-items: center;
}

.workspace-tabs .is-active {
  color: var(--ink);
}

.workspace-tabs .is-active::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 3px;
  content: "";
  background: #668c00;
}

.workspace-table {
  margin-top: 12px;
  border: 1px solid rgba(11, 12, 13, 0.17);
  background: #f8f8f4;
}

.workspace-table > div {
  display: grid;
  grid-template-columns: minmax(118px, 1.35fr) minmax(76px, 0.85fr) 54px 92px;
  min-height: 42px;
  padding: 0 12px;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(11, 12, 13, 0.11);
  font-size: 11px;
}

.workspace-table > div:last-child {
  border-bottom: 0;
}

.workspace-table .workspace-table-head {
  min-height: 32px;
  background: #e8ebe5;
  color: #666b66;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
}

.workspace-table strong,
.workspace-table b {
  font-size: 12px;
  line-height: 1.2;
}

.workspace-table b {
  text-align: right;
}

.workspace-summary {
  display: flex;
  margin-top: auto;
  padding-top: 14px;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.workspace-summary > div > span {
  display: inline-flex;
  min-height: 24px;
  margin-top: 7px;
  margin-right: 4px;
  padding: 0 7px;
  align-items: center;
  border: 1px solid rgba(11, 12, 13, 0.18);
  border-radius: 2px;
  background: #f8f8f4;
  font-size: 10px;
  font-weight: 680;
}

.workspace-summary > strong {
  white-space: nowrap;
  font-size: 16px;
  line-height: 1.2;
  text-align: right;
}

.workspace-summary > strong small {
  margin-bottom: 4px;
}

.system-visual::before {
  background-size: 34px 34px;
}

.system-header {
  color: #b8bcb8;
  line-height: 1.3;
}

.system-header b {
  color: var(--lime);
  font-size: 11px;
}

.system-workspace {
  position: absolute;
  z-index: 1;
  top: 72px;
  right: 28px;
  bottom: 58px;
  left: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(190px, 0.82fr);
  gap: 18px;
}

.terminal-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 4px;
  background: #090b0c;
  box-shadow: inset 0 0 50px rgba(103, 223, 232, 0.035);
}

.terminal-title {
  display: flex;
  height: 38px;
  padding: 0 13px;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: #181b1d;
  color: #aeb3ae;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 11px;
}

.terminal-title span {
  width: 8px;
  height: 8px;
  background: var(--coral);
  box-shadow: 14px 0 0 var(--lime), 28px 0 0 var(--cyan);
}

.terminal-title b {
  margin-left: 30px;
}

.terminal-body {
  padding: 22px 20px;
  color: #c7cbc7;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 12px;
  line-height: 1.65;
}

.terminal-body p {
  margin: 0 0 8px;
}

.terminal-body i {
  color: var(--cyan);
  font-style: normal;
}

.terminal-body b {
  color: var(--lime);
}

.terminal-spacer {
  padding-top: 18px;
}

.terminal-ready {
  color: var(--lime);
}

.terminal-ready em {
  animation: terminal-blink 1s steps(2, end) infinite;
}

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

.system-stack {
  display: grid;
  gap: 9px;
}

.system-stack > div {
  display: grid;
  min-height: 62px;
  padding: 10px 12px;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 3px solid var(--cyan);
  border-radius: 3px;
  background: #181b1d;
  transition: transform 260ms var(--ease), border-color 180ms ease;
}

.system-stack > div:nth-child(2) { border-left-color: var(--lime); }
.system-stack > div:nth-child(3) { border-left-color: var(--coral); }
.system-stack > div:nth-child(4) { border-left-color: var(--violet); }
.system-visual:hover .system-stack > div { transform: translateX(4px); }

.system-stack small {
  grid-row: 1 / 3;
  color: #777d77;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 11px;
}

.system-stack span {
  color: #f0f1ed;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
}

.system-stack strong {
  margin-top: 3px;
  color: #929792;
  font-size: 11px;
  line-height: 1.25;
}

.system-footer {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 19px;
  left: 28px;
  display: flex;
  justify-content: space-between;
  color: #8f948f;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 11px;
  text-transform: uppercase;
}

.approach {
  background: var(--lime);
}

.approach .section-marker,
.approach .intro-copy {
  color: #2b350d;
}

.approach .section-marker-dark span:first-child {
  border-color: rgba(11, 12, 13, 0.45);
  color: #263000;
}

.approach-heading {
  grid-template-columns: minmax(0, 1.12fr) minmax(380px, 0.88fr);
  margin-bottom: 76px;
}

.approach .intro-copy {
  font-size: 19px;
  line-height: 1.62;
}

.process-flow li {
  display: grid;
  min-height: 230px;
  padding: 28px;
  grid-template-rows: auto auto 1fr;
  align-content: start;
}

.process-flow li > span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}

.process-flow li > span::after {
  position: static;
  z-index: auto;
  display: block;
  width: auto;
  height: 1px;
  flex: 1;
  border: 0;
  background: rgba(14, 17, 17, 0.38);
}

.process-flow li:last-child > span::after {
  display: block;
}

.process-flow h3 {
  min-height: 0;
  margin: 26px 0 10px;
  font-size: 24px;
  line-height: 1.28;
}

.process-flow p {
  color: #2f390f;
  font-size: 15px;
  line-height: 1.6;
}

.process-principle {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 0;
  padding-top: 30px;
  align-items: start;
  gap: 0;
  border-top: 0;
}

.process-principle > span {
  grid-column: 1;
  padding-inline: 28px;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.process-principle p {
  grid-column: 2 / 5;
  max-width: none;
  margin: 0;
  padding-inline: 28px;
  color: #242d08;
  font-size: 19px;
  line-height: 1.58;
}

.lab-layout {
  grid-template-columns: minmax(0, 0.76fr) minmax(580px, 1.24fr);
  gap: 72px;
}

.tech-tags span {
  min-height: 35px;
  padding: 0 12px;
  font-size: 11px;
}

.infra-board {
  aspect-ratio: 16 / 10;
  background: #101315;
}

.infra-board::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
}

.infra-header {
  position: relative;
  z-index: 1;
  display: flex;
  height: 48px;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  background: #181b1d;
  color: #a5aaa5;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 11px;
}

.infra-header b {
  color: var(--lime);
  font-size: 11px;
}

.infra-flow {
  position: absolute;
  z-index: 1;
  inset: 64px 16px 16px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 12px;
}

.infra-column {
  display: grid;
  min-width: 0;
  padding: 12px;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(14, 17, 17, 0.72);
}

.infra-edge,
.infra-ops {
  grid-template-rows: auto minmax(0, 1fr) auto minmax(0, 1fr);
}

.infra-core {
  grid-template-rows: auto minmax(74px, 0.65fr) minmax(0, 1.35fr);
}

.infra-column > small {
  margin: 0;
  color: #a4aaa5;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
}

.infra-column > small:not(:first-child) {
  margin-top: 4px;
}

.infra-card {
  display: flex;
  min-height: 0;
  height: 100%;
  padding: 14px;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-top: 3px solid var(--cyan);
  border-radius: 3px;
  background: #1a1e20;
}

.infra-card > span {
  color: var(--white);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 14px;
  font-weight: 800;
}

.infra-card > b {
  margin-top: 6px;
  color: #989d98;
  font-size: 12px;
  line-height: 1.25;
}

.infra-card.accent-coral { border-top-color: var(--coral); }
.infra-card.accent-lime { border-top-color: var(--lime); }
.infra-card.accent-cyan { border-top-color: var(--cyan); }
.infra-card.accent-violet { border-top-color: var(--violet); }

.infra-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  align-content: center;
}

.infra-pair span + span {
  padding-top: 7px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.infra-server {
  min-height: 0;
}

.infra-services {
  display: grid;
  min-height: 0;
  margin-top: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.infra-services span {
  display: flex;
  min-height: 45px;
  padding: 8px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2px;
  background: #15191a;
  color: #cdd0cc;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.infra-arrow {
  display: none;
}

.infra-arrow span {
  animation: infra-shift 2.4s var(--ease) infinite alternate;
}

@keyframes infra-shift {
  to { transform: translateX(5px); }
}

#experience,
#contact {
  scroll-margin-top: 0;
  scroll-snap-align: start;
}

.experience-layout {
  display: block;
}

.experience-layout > .section-title {
  max-width: 1120px;
}

.timeline {
  width: 100%;
  max-width: none;
  margin-top: 72px;
}

.timeline-item {
  grid-template-columns: 230px minmax(0, 1fr);
  min-height: 0;
  padding: 38px 0;
  gap: 56px;
}

.timeline-date strong {
  font-size: 15px;
  line-height: 1.4;
}

.timeline-date span,
.timeline-content > span {
  font-size: 13px;
}

.timeline-content h3 {
  margin: 12px 0 14px;
  font-size: 30px;
  line-height: 1.25;
}

.timeline-content p {
  max-width: 900px;
  font-size: 16px;
  line-height: 1.65;
}

.timeline-item-contract {
  position: relative;
}

.timeline-item-contract::before {
  position: absolute;
  top: 34px;
  bottom: 34px;
  left: -18px;
  width: 3px;
  content: "";
  background: var(--cyan);
}

.timeline-item-contract .timeline-date {
  padding-left: 0;
}

.timeline-item-contract .timeline-content > span {
  max-width: 920px;
  color: #48504a;
  font-size: 14px;
  line-height: 1.45;
  text-transform: none;
}

.contact,
.contact-shell {
  min-height: calc(100svh - var(--header-height));
}

.contact-shell {
  padding-top: calc(var(--header-height) + 38px);
  padding-bottom: 28px;
}

.contact .section-marker-dark {
  color: rgba(11, 12, 13, 0.76);
}

.contact .section-marker-dark span:first-child {
  border-color: rgba(11, 12, 13, 0.55);
  background: rgba(11, 12, 13, 0.06);
  color: var(--ink);
}

.contact .section-marker-dark::after {
  background: rgba(11, 12, 13, 0.42);
}

.contact-content h2 {
  font-size: 74px;
  line-height: 1.3;
  overflow: visible;
}

.contact-content > p {
  color: #4d1b13;
  font-size: 19px;
}

.contact-link {
  min-height: 96px;
  font-size: 30px;
}

.site-footer {
  min-height: 76px;
  align-items: end;
  font-size: 11px;
}

.to-top {
  display: inline-flex;
  min-height: 48px;
  padding: 0 14px;
  align-items: center;
  gap: 18px;
  border: 1px solid rgba(11, 12, 13, 0.5);
  border-radius: 3px;
  font-size: 12px;
  transition: background-color 180ms ease, color 180ms ease;
}

.to-top b {
  font-size: 20px;
}

.to-top:hover {
  background: var(--ink);
  color: var(--coral);
  text-decoration: none;
}

@media (min-width: 1500px) {
  .hero h1 {
    font-size: 104px;
  }
}

@media (max-width: 1199px) {
  .hero {
    height: calc(100svh - 142px);
  }

  .hero-shell {
    padding-bottom: 60px;
  }

  .desktop-nav {
    gap: 28px;
  }

  .desktop-nav a {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 78px;
  }

  .section-title {
    font-size: 52px;
  }

  .case-layout,
  .case-layout-reverse,
  .lab-layout {
    grid-template-columns: minmax(0, 0.84fr) minmax(500px, 1.16fr);
    gap: 52px;
  }

  .case-copy h3 {
    font-size: 42px;
  }

  .tagify-workspace {
    grid-template-columns: 142px minmax(0, 1fr);
  }

  .workspace-sidebar {
    padding-inline: 10px;
  }

  .workspace-main {
    padding-inline: 16px;
  }

  .workspace-table > div {
    grid-template-columns: minmax(108px, 1.25fr) minmax(68px, 0.8fr) 44px 82px;
    padding-inline: 9px;
  }

  .system-workspace {
    grid-template-columns: minmax(0, 1.08fr) minmax(170px, 0.92fr);
  }

  .infra-flow {
    inset-inline: 18px;
  }

  .infra-card {
    padding: 9px;
  }

  .contact-content h2 {
    font-size: 64px;
  }
}

@media (max-width: 980px) {
  .about-copy {
    margin-left: 0;
  }

  html {
    scroll-snap-type: none;
  }

  .hero {
    max-height: 780px;
  }

  .hero-shell {
    padding-bottom: 60px;
  }

  .hero h1 {
    font-size: 68px;
  }

  .hero-content {
    width: 92%;
  }

  .case-layout,
  .case-layout-reverse,
  .lab-layout {
    grid-template-columns: 1fr;
  }

  .entity-map,
  .system-visual,
  .network-map {
    width: min(780px, 100%);
  }

  .approach-heading {
    grid-template-columns: 1fr;
  }

  .process-flow h3 {
    margin-top: 44px;
  }

  .contact-content h2 {
    font-size: 56px;
  }
}

@media (max-width: 700px) {
  .hero {
    height: auto;
    min-height: 0;
    max-height: none;
  }

  .hero-shell {
    height: auto;
    min-height: 0;
    padding-top: 104px;
    padding-bottom: 38px;
    align-items: flex-start;
  }

  .availability {
    font-size: 11px;
  }

  .hero h1 {
    font-size: 52px;
    line-height: 1.32;
  }

  .hero-role-row strong {
    font-size: 14px;
  }

  .hero-role-row span {
    font-size: 14px;
  }

  .hero-lead {
    font-size: 16px;
  }

  .button {
    height: 50px;
    font-size: 14px;
  }

  .proof-item {
    min-height: 108px;
    padding: 17px 16px;
  }

  .proof-item strong {
    display: flex;
    min-height: 2.5em;
    align-items: flex-end;
    font-size: 18px;
  }

  .proof-item span {
    min-height: 2.8em;
    font-size: 12px;
  }

  .section-shell {
    padding-top: 92px;
    padding-bottom: 92px;
  }

  .section-title {
    font-size: 40px;
    line-height: 1.3;
  }

  .case-meta {
    align-items: flex-start;
    font-size: 11px;
  }

  .case-meta span:last-child {
    max-width: 62%;
    text-align: right;
  }

  .case-copy h3 {
    font-size: 35px;
    line-height: 1.3;
  }

  .case-body {
    font-size: 16px;
  }

  .entity-map {
    aspect-ratio: 7 / 8;
  }

  .system-visual {
    aspect-ratio: 1 / 1;
  }

  .tagify-workspace {
    grid-template-columns: 112px minmax(0, 1fr);
  }

  .workspace-sidebar {
    padding: 14px 8px;
  }

  .workspace-identity {
    margin-bottom: 18px;
  }

  .workspace-identity b {
    font-size: 10px;
  }

  .workspace-project {
    padding-inline: 5px;
    font-size: 9px;
  }

  .workspace-main {
    padding: 14px 12px;
  }

  .workspace-toolbar strong {
    font-size: 14px;
  }

  .workspace-toolbar > span {
    display: none;
  }

  .workspace-tabs {
    gap: 14px;
    font-size: 10px;
  }

  .workspace-table > div {
    grid-template-columns: minmax(90px, 1fr) 42px 76px;
    min-height: 40px;
    padding-inline: 7px;
    font-size: 9px;
  }

  .workspace-table > div > :nth-child(2) {
    display: none;
  }

  .workspace-table strong,
  .workspace-table b {
    font-size: 9px;
  }

  .workspace-summary > div > span:nth-of-type(n + 2) {
    display: none;
  }

  .workspace-summary > strong {
    font-size: 13px;
  }

  .system-workspace {
    top: 66px;
    right: 18px;
    bottom: 18px;
    left: 18px;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(150px, 1fr) auto;
  }

  .terminal-body {
    padding: 15px;
    font-size: 10px;
  }

  .system-stack {
    grid-template-columns: repeat(2, 1fr);
  }

  .system-stack > div {
    min-height: 54px;
  }

  .system-footer {
    display: none;
  }

  .approach .intro-copy {
    font-size: 17px;
  }

  .process-flow li {
    min-height: 0;
  }

  .process-flow h3 {
    margin-top: 28px;
    min-height: 0;
    font-size: 22px;
  }

  .process-flow p {
    font-size: 14px;
  }

  .process-principle {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-principle p {
    font-size: 17px;
  }

  .infra-board {
    min-height: 720px;
    aspect-ratio: auto;
  }

  .infra-header {
    font-size: 9px;
  }

  .infra-header b {
    font-size: 9px;
  }

  .infra-flow {
    inset: 66px 16px 18px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 24px auto 24px auto;
    gap: 5px;
  }

  .infra-arrow span {
    transform: rotate(90deg);
    animation: none;
  }

  .infra-column > small:not(:first-child) {
    margin-top: 10px;
  }

  .infra-card {
    min-height: 50px;
  }

  .infra-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .infra-services span {
    min-height: 38px;
  }

  .timeline {
    margin-top: 52px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .timeline-content h3 {
    font-size: 27px;
    line-height: 1.27;
  }

  .contact,
  .contact-shell {
    min-height: calc(100svh - var(--header-height));
  }

  .contact-shell {
    padding-top: calc(var(--header-height) + 28px);
  }

  .contact-content {
    margin: 34px 0 auto;
  }

  .contact-content h2 {
    font-size: 44px;
    line-height: 1.3;
  }

  .contact-content > p {
    font-size: 17px;
  }

  .contact-link {
    min-height: 78px;
    font-size: 22px;
  }

  .site-footer {
    font-size: 11px;
  }

  .to-top {
    min-height: 46px;
    padding-inline: 11px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 43px;
  }

  .tagify-workspace {
    grid-template-columns: 1fr;
  }

  .workspace-sidebar {
    display: none;
  }

  .workspace-main {
    padding: 14px;
  }

  .workspace-summary > div {
    display: none;
  }

  .workspace-summary {
    justify-content: flex-end;
  }

  .system-header {
    font-size: 9px;
  }

  .system-header b {
    font-size: 8px;
  }

  .terminal-body p:nth-child(3) {
    display: none;
  }

  .system-stack strong {
    font-size: 8px;
  }

  .section-title {
    font-size: 35px;
    line-height: 1.3;
  }

  .contact-content h2 {
    font-size: 38px;
    line-height: 1.3;
  }
}

@media (min-width: 1040px) and (max-width: 1300px) {
  .hero {
    height: calc(100svh - 142px);
  }

  .hero-shell {
    padding-bottom: 144px;
  }

  .hero h1 {
    font-size: 78px;
  }
}

@media (max-width: 1199px) {
  .hero-portrait {
    right: -3vw;
    width: min(48vw, 590px);
  }
}

@media (max-width: 980px) {
  .hero-portrait {
    right: -9vw;
    width: 58vw;
  }

  .hero::before {
    background: linear-gradient(90deg, rgba(14, 17, 17, 0.99) 0%, rgba(14, 17, 17, 0.91) 58%, rgba(14, 17, 17, 0.38) 100%);
  }

  .process-flow li:nth-child(2) > span::after,
  .process-flow li:last-child > span::after {
    display: block;
  }

  .process-flow h3 {
    margin-top: 26px;
  }
}

@media (max-width: 700px) {
  .hero-portrait {
    display: none;
  }

  .hero-portrait::after {
    inset: 18% 0 7% 18%;
    background:
      linear-gradient(var(--cyan), var(--cyan)) left top / 44% 1px no-repeat,
      linear-gradient(var(--lime), var(--lime)) right bottom / 62% 1px no-repeat,
      linear-gradient(rgba(248, 250, 246, 0.28), rgba(248, 250, 246, 0.28)) left top / 1px 68% no-repeat;
  }

  .hero-portrait > span {
    display: none;
  }

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

  .proof-item {
    display: grid;
    min-height: 120px;
    padding: 13px 16px 15px;
    align-content: center;
  }

  .proof-item::after {
    left: 16px;
    width: 32px;
  }

  .proof-item strong {
    display: block;
    min-height: 0;
    margin-top: 8px;
    font-size: 18px;
    line-height: 1.16;
  }

  .proof-item span {
    min-height: 0;
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.32;
  }

  .section-title {
    line-height: 1.12;
  }

  .principles h3 {
    min-height: 0;
    margin: 18px 0 10px;
  }

  .process-flow li > span::after {
    display: block;
  }

  .process-flow h3 {
    margin: 22px 0 9px;
  }

  .process-principle > span,
  .process-principle p {
    grid-column: 1;
    padding-inline: 20px;
  }

  .infra-board {
    min-height: 780px;
  }

  .infra-flow {
    inset: 64px 12px 12px;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }

  .infra-column {
    padding: 10px;
  }

  .infra-services span {
    font-size: 11px;
  }

  .timeline-item-contract::before {
    top: 28px;
    bottom: 28px;
    left: -8px;
  }

  .timeline-item-contract .timeline-date {
    padding-left: 0;
  }
}

.hero-portrait {
  top: auto;
  right: max(64px, calc((100vw - 1270px) / 2 + 48px));
  bottom: 210px;
  width: 260px;
  height: 260px;
}

.hero-portrait::before {
  position: absolute;
  z-index: -1;
  inset: -14px;
  border: 1px solid rgba(248, 250, 246, 0.26);
  border-radius: 50%;
  content: "";
}

.hero-portrait::after {
  position: absolute;
  z-index: 3;
  top: 8px;
  right: 8px;
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid var(--lime);
  background: var(--ink);
  content: "";
  transform: rotate(18deg);
}

.portrait-window {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(248, 250, 246, 0.5);
  border-radius: 50%;
  background: #d7ddd7;
  box-shadow: inset 0 0 0 1px rgba(14, 17, 17, 0.18);
}

.hero-portrait img {
  top: -40%;
  right: -27.5%;
  bottom: auto;
  width: 155%;
  height: auto;
  filter: none;
}

.hero-portrait > span {
  right: auto;
  bottom: -38px;
  left: 50%;
  display: block;
  padding: 6px 8px;
  border: 1px solid rgba(248, 250, 246, 0.3);
  border-left: 3px solid var(--cyan);
  background: rgba(14, 17, 17, 0.84);
  color: #f8faf6;
  font-size: 10px;
  line-height: 1;
  white-space: nowrap;
  transform: translateX(-50%);
}

.hero-coordinate {
  top: auto;
  right: 376px;
  bottom: 514px;
  left: auto;
  grid-template-columns: auto auto;
  min-width: 0;
  padding-left: 14px;
  border-left: 2px solid rgba(248, 250, 246, 0.28);
  column-gap: 14px;
  line-height: 1.25;
}

.hero-coordinate span {
  grid-column: 1;
}

.hero-coordinate b {
  grid-row: 1 / 3;
  grid-column: 2;
  margin-top: 0;
  align-self: center;
}

.hero-shell {
  padding-bottom: 70px;
}

.hero {
  max-height: 700px;
}

.hero-content {
  width: min(800px, 100%);
}

.hero h1 {
  max-width: 760px;
  line-height: 1.02;
}

.annotation {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(14, 17, 17, 0.8);
}

.annotation-a {
  top: 22%;
  right: 35%;
}

.annotation-b {
  top: 50%;
  right: 31%;
}

.annotation-c {
  top: 43%;
  right: 4%;
  bottom: auto;
}

.approach-heading {
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: end;
}

.approach-title {
  font-size: 50px;
  line-height: 1.12;
}

.approach-title span {
  display: block;
  white-space: nowrap;
}

.system-header {
  height: 52px;
  padding-inline: 20px;
  font-size: 12px;
}

.system-header b {
  font-size: 12px;
}

.system-workspace {
  top: 80px;
  right: 24px;
  bottom: 60px;
  left: 24px;
  grid-template-columns: minmax(0, 1.12fr) minmax(205px, 0.88fr);
  gap: 16px;
}

.terminal-title {
  height: 42px;
  font-size: 12px;
}

.terminal-body {
  padding: 24px 22px;
  font-size: 13px;
  line-height: 1.58;
}

.system-stack {
  grid-template-rows: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.system-stack > div {
  min-height: 0;
  padding: 12px 14px;
  grid-template-columns: 32px 1fr;
}

.system-stack small {
  font-size: 12px;
}

.system-stack span {
  font-size: 14px;
}

.system-stack strong {
  font-size: 12px;
  line-height: 1.3;
}

.system-footer {
  right: 24px;
  left: 24px;
  font-size: 12px;
}

.infra-header {
  height: 52px;
  padding-inline: 18px;
  font-size: 12px;
}

.infra-header b {
  font-size: 12px;
}

.infra-flow {
  inset: 68px 16px 16px;
  gap: 12px;
}

.infra-column {
  position: relative;
  padding: 14px;
  gap: 10px;
}

.infra-column > small {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 10px;
  line-height: 1;
}

.infra-column > small::after {
  height: 1px;
  flex: 1;
  content: "";
  background: rgba(255, 255, 255, 0.13);
}

.infra-card {
  position: relative;
  padding: 16px 14px 16px 34px;
  align-items: flex-start;
  border-top-width: 2px;
}

.infra-card::before {
  position: absolute;
  top: 50%;
  left: 15px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  content: "";
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(79, 211, 207, 0.1);
  transform: translateY(-50%);
}

.infra-card.accent-coral::before {
  background: var(--coral);
  box-shadow: 0 0 0 4px rgba(255, 112, 79, 0.1);
}

.infra-card.accent-lime::before {
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(201, 242, 75, 0.1);
}

.infra-card.accent-violet::before {
  background: var(--violet);
  box-shadow: 0 0 0 4px rgba(159, 140, 255, 0.1);
}

.infra-card > span {
  color: #f3f5f1;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 720;
  line-height: 1.15;
}

.infra-card > b {
  margin-top: 7px;
  color: #a9aea9;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.35;
}

.infra-pair {
  align-content: center;
}

.infra-pair span + span {
  margin-top: 8px;
  padding-top: 8px;
}

.infra-server > span {
  font-size: 17px;
}

.infra-services span {
  position: relative;
  padding: 10px 18px 10px 10px;
  color: #e8ebe7;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
  text-align: center;
}

.infra-services span::after {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  content: "";
  background: var(--lime);
  box-shadow: 0 0 0 3px rgba(201, 242, 75, 0.08);
}

.infra-services span:nth-child(2)::after {
  background: var(--cyan);
}

.infra-services span:nth-child(3)::after {
  background: var(--violet);
}

.infra-services span:nth-child(4)::after {
  background: var(--coral);
}

.timeline-date strong {
  white-space: nowrap;
}

.timeline-item-contract .timeline-content > span {
  color: #5c615c;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: none;
}

@media (min-width: 1200px) {
  .case-layout-reverse {
    align-items: stretch;
  }

  .case-layout-reverse .system-visual {
    min-height: 0;
    margin-top: 57px;
    align-self: stretch;
    aspect-ratio: auto;
  }
}

@media (max-width: 1199px) {
  .hero-portrait {
    display: none;
  }

  .hero-shell {
    padding-bottom: 60px;
  }

  .hero-content {
    width: 100%;
  }

  .hero h1 {
    max-width: none;
    line-height: 1.16;
  }

  .approach-heading {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .approach-title {
    max-width: 920px;
    font-size: 50px;
  }

  .approach .intro-copy {
    max-width: 680px;
  }
}

@media (min-width: 701px) and (max-width: 1199px) {
  .hero-shell {
    padding-bottom: 110px;
  }
}

@media (max-width: 1100px) {
  .hero-content {
    width: 100%;
  }

  .case-layout,
  .case-layout-reverse {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 64px;
  }

  .case-layout-reverse .case-copy,
  .case-layout-reverse .system-visual {
    grid-column: auto;
    grid-row: auto;
  }

  .case-layout-reverse .case-copy {
    order: 1;
  }

  .case-layout-reverse .system-visual {
    order: 2;
  }

  .entity-map,
  .system-visual {
    width: min(780px, 100%);
    justify-self: start;
  }
}

@media (max-width: 980px) {
  .hero-portrait {
    right: -10vw;
    width: 54vw;
  }

  .system-workspace {
    grid-template-columns: minmax(0, 1.12fr) minmax(190px, 0.88fr);
  }
}

@media (max-width: 700px) {
  .approach-title {
    font-size: 38px;
  }

  .approach-title span {
    white-space: normal;
  }

  .system-header {
    height: 46px;
    padding-inline: 14px;
    font-size: 10px;
  }

  .system-header b {
    font-size: 9px;
  }

  .system-workspace {
    top: 62px;
    right: 16px;
    bottom: 18px;
    left: 16px;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(210px, 1fr) auto;
    gap: 14px;
  }

  .system-visual {
    min-height: 480px;
    aspect-ratio: 3 / 4;
  }

  .terminal-body {
    padding: 15px;
    font-size: 11px;
  }

  .system-stack span {
    font-size: 12px;
  }

  .system-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(64px, auto));
  }

  .system-stack > div {
    min-height: 64px;
  }

  .system-stack strong {
    font-size: 9px;
  }

  .infra-header,
  .infra-header b {
    font-size: 10px;
  }

  .infra-flow {
    inset: 66px 12px 12px;
  }

  .infra-card > span {
    font-size: 15px;
  }

  .infra-services span {
    font-size: 12px;
  }
}

@media (max-width: 430px) {
  .approach-title {
    font-size: 35px;
  }
}

/* Hero portrait: an edge-to-edge editorial field, not a floating badge. */
.hero-photo-field {
  position: absolute;
  z-index: 1;
  top: var(--header-height);
  right: 0;
  bottom: 0;
  display: none;
  width: min(46vw, 860px);
  overflow: hidden;
  background: #15191a;
  clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%, 0 74%, 5% 74%, 5% 22%, 11% 22%);
  pointer-events: none;
}

.hero-photo-field::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(14, 17, 17, 0.82) 0%, rgba(14, 17, 17, 0.28) 14%, transparent 32%),
    linear-gradient(180deg, rgba(14, 17, 17, 0.08) 0%, rgba(14, 17, 17, 0) 58%, rgba(14, 17, 17, 0.42) 100%);
}

.hero-photo-field::after {
  position: absolute;
  z-index: 3;
  top: 22%;
  bottom: 26%;
  left: 5%;
  width: 1px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(201, 242, 75, 0.64) 22%, rgba(79, 211, 207, 0.5) 78%, transparent);
}

.hero-photo-field img {
  position: absolute;
  z-index: 1;
  inset: -3%;
  width: 106%;
  height: 106%;
  max-width: none;
  object-fit: cover;
  object-position: 50% 45%;
  filter: saturate(0.72) contrast(1.04) brightness(0.96);
  transform: scale(1.045);
  transform-origin: 50% 45%;
  will-change: transform;
}

.hero-photo-meta {
  position: absolute;
  z-index: 4;
  right: 28px;
  bottom: 26px;
  display: grid;
  min-width: 112px;
  padding: 9px 10px 8px;
  border-left: 3px solid var(--lime);
  background: rgba(14, 17, 17, 0.82);
  color: rgba(248, 250, 246, 0.74);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.hero-photo-meta b {
  margin-top: 4px;
  color: #f8faf6;
  font-size: 13px;
}

@media (min-width: 1360px) {
  .hero-photo-field {
    display: block;
  }

  .hero-content {
    width: min(710px, 100%);
  }

  .hero h1 {
    max-width: 710px;
  }
}

@media (min-width: 1200px) and (max-width: 1359px) {
  .hero-content {
    width: 100%;
  }

  .hero h1 {
    max-width: none;
    line-height: 1.16;
  }
}

.privacy-page {
  min-height: 100vh;
  background: var(--ink);
  color: var(--paper);
}

.privacy-header {
  border-bottom: 1px solid rgba(248, 250, 246, 0.16);
}

.privacy-header-shell {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
}

.privacy-page .brand {
  color: var(--paper);
}

.privacy-page .brand-mark {
  border-color: rgba(248, 250, 246, 0.34);
}

.privacy-back {
  display: inline-flex;
  min-height: 44px;
  padding: 0 14px;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(248, 250, 246, 0.3);
  border-radius: 3px;
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 700;
  transition: background-color 180ms ease, color 180ms ease;
}

.privacy-back:hover {
  background: var(--lime);
  color: var(--ink);
}

.privacy-main {
  padding: 72px 0 42px;
}

.privacy-kicker,
.privacy-language {
  color: var(--lime);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 12px;
  font-weight: 800;
}

.privacy-main h1 {
  max-width: 900px;
  margin: 18px 0 54px;
  font-size: 72px;
  line-height: 1.04;
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(248, 250, 246, 0.18);
  border-bottom: 1px solid rgba(248, 250, 246, 0.18);
}

.privacy-grid article {
  padding: 34px 40px 38px 0;
}

.privacy-grid article + article {
  padding-right: 0;
  padding-left: 40px;
  border-left: 1px solid rgba(248, 250, 246, 0.18);
}

.privacy-grid h2 {
  margin: 18px 0 24px;
  font-size: 28px;
  line-height: 1.18;
}

.privacy-grid p {
  max-width: 650px;
  margin: 0 0 16px;
  color: rgba(248, 250, 246, 0.72);
  font-size: 16px;
  line-height: 1.62;
}

.privacy-footer {
  display: flex;
  min-height: 74px;
  align-items: end;
  justify-content: space-between;
  color: rgba(248, 250, 246, 0.56);
  font-family: ui-monospace, "Cascadia Mono", Consolas, monospace;
  font-size: 11px;
}

.privacy-footer a {
  color: var(--paper);
}

@media (max-width: 700px) {
  .approach-heading > * {
    min-width: 0;
  }

  .approach-title,
  .approach .intro-copy {
    width: 100%;
    max-width: 100%;
  }

  .privacy-header-shell {
    min-height: 72px;
  }

  .privacy-header .brand-copy {
    display: none;
  }

  .privacy-main {
    padding-top: 48px;
  }

  .privacy-main h1 {
    margin-bottom: 38px;
    font-size: 43px;
  }

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

  .privacy-grid article,
  .privacy-grid article + article {
    padding: 28px 0 30px;
    border-left: 0;
  }

  .privacy-grid article + article {
    border-top: 1px solid rgba(248, 250, 246, 0.18);
  }
}

@media (max-width: 430px) {
  .privacy-main h1 {
    font-size: 31px;
  }
}

@media (max-width: 360px) {
  .approach-title {
    font-size: 30px;
  }

  .privacy-main h1 {
    font-size: 27px;
  }
}
