:root {
  color-scheme: light;
  --blue: #0739a7;
  --bright-blue: #1f68ff;
  --pale-blue: #95b4ff;
  --line: rgb(21 72 190 / 0.42);
  --ink: #102657;
  --muted: #5870a5;
  --page-bg: #fff;
  --theme-filter: none;
  --hero-filter: saturate(0.9) contrast(0.95) brightness(1.035);
  --mobile-hero-overlay:
    linear-gradient(90deg, rgb(255 255 255 / 0.84) 0%, rgb(255 255 255 / 0.5) 48%, rgb(255 255 255 / 0.05) 100%),
    linear-gradient(180deg, rgb(255 255 255 / 0.35), transparent 46%, rgb(255 255 255 / 0.16));
  --mobile-nav-text: #10429c;
  --mobile-nav-muted: #1453bd;
  --mobile-nav-line: rgb(23 80 190 / 0.5);
  --mobile-nav-surface: linear-gradient(90deg, rgb(255 255 255 / 0.38), rgb(255 255 255 / 0));
  --mobile-nav-surface-active: linear-gradient(90deg, rgb(255 255 255 / 0.74), rgb(255 255 255 / 0.1));
  --mobile-panel-surface: rgb(255 255 255 / 0.5);
  --mobile-panel-text: #66768f;
  --mobile-panel-heading: #1152ca;
  --mobile-panel-line: rgb(36 94 198 / 0.22);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page-bg: #070707;
  --theme-filter: grayscale(1) invert(1);
  --hero-filter: none;
  --mobile-hero-overlay:
    linear-gradient(90deg, rgb(0 0 0 / 0.78) 0%, rgb(0 0 0 / 0.4) 48%, rgb(0 0 0 / 0.04) 100%),
    linear-gradient(180deg, rgb(0 0 0 / 0.24), transparent 46%, rgb(0 0 0 / 0.3));
  --mobile-nav-text: #f1f6ff;
  --mobile-nav-muted: #bbd5ff;
  --mobile-nav-line: rgb(219 235 255 / 0.62);
  --mobile-nav-surface: linear-gradient(90deg, rgb(2 8 18 / 0.82), rgb(2 8 18 / 0.22));
  --mobile-nav-surface-active: linear-gradient(90deg, rgb(15 35 68 / 0.92), rgb(6 16 33 / 0.42));
  --mobile-panel-surface: linear-gradient(135deg, rgb(3 9 20 / 0.9), rgb(11 28 56 / 0.62));
  --mobile-panel-text: #d5e1f4;
  --mobile-panel-heading: #f5f8ff;
  --mobile-panel-line: rgb(207 226 255 / 0.25);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --page-bg: #070707;
    --theme-filter: grayscale(1) invert(1);
    --hero-filter: none;
    --mobile-hero-overlay:
      linear-gradient(90deg, rgb(0 0 0 / 0.78) 0%, rgb(0 0 0 / 0.4) 48%, rgb(0 0 0 / 0.04) 100%),
      linear-gradient(180deg, rgb(0 0 0 / 0.24), transparent 46%, rgb(0 0 0 / 0.3));
    --mobile-nav-text: #f1f6ff;
    --mobile-nav-muted: #bbd5ff;
    --mobile-nav-line: rgb(219 235 255 / 0.62);
    --mobile-nav-surface: linear-gradient(90deg, rgb(2 8 18 / 0.82), rgb(2 8 18 / 0.22));
    --mobile-nav-surface-active: linear-gradient(90deg, rgb(15 35 68 / 0.92), rgb(6 16 33 / 0.42));
    --mobile-panel-surface: linear-gradient(135deg, rgb(3 9 20 / 0.9), rgb(11 28 56 / 0.62));
    --mobile-panel-text: #d5e1f4;
    --mobile-panel-heading: #f5f8ff;
    --mobile-panel-line: rgb(207 226 255 / 0.25);
  }
}

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

html {
  min-width: 320px;
  min-height: 100%;
  background: var(--page-bg);
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  margin: 0;
  color: var(--blue);
  background: var(--page-bg);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a,
button {
  color: inherit;
  font: inherit;
}

a {
  text-underline-offset: 4px;
}

button {
  border: 0;
}

::selection {
  color: white;
  background: var(--bright-blue);
}

:focus-visible {
  outline: 1px solid var(--bright-blue);
  outline-offset: 5px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 8px 11px;
  border: 1px solid var(--blue);
  background: white;
  transform: translateY(-180%);
  filter: var(--theme-filter);
}

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

.theme-toggle {
  position: fixed;
  z-index: 90;
  top: 20px;
  right: 22px;
  display: grid;
  width: 30px;
  height: 30px;
  padding: 6px;
  place-items: center;
  border: 1px solid rgb(18 66 173 / 0.3);
  border-radius: 50%;
  background: rgb(255 255 255 / 0.56);
  box-shadow: 0 1px 8px rgb(16 64 159 / 0.06), inset 0 1px 0 rgb(255 255 255 / 0.72);
  color: #0b43ae;
  cursor: pointer;
  filter: var(--theme-filter);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 180ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  border-color: rgb(18 66 173 / 0.56);
  box-shadow: 0 2px 11px rgb(16 64 159 / 0.12), inset 0 1px 0 rgb(255 255 255 / 0.82);
  transform: scale(1.06);
}

.theme-toggle svg {
  position: absolute;
  width: 15px;
  height: 15px;
  overflow: visible;
}

.theme-toggle__moon {
  fill: currentColor;
}

.theme-toggle__sun {
  display: none;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.45;
}

html[data-theme="dark"] .theme-toggle__moon {
  display: none;
}

html[data-theme="dark"] .theme-toggle__sun {
  display: block;
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle__moon {
    display: none;
  }

  :root:not([data-theme="light"]) .theme-toggle__sun {
    display: block;
  }
}

.site {
  position: relative;
  min-height: max(740px, 100svh);
  overflow: hidden;
  background: var(--page-bg);
  isolation: isolate;
}

.composition {
  position: absolute;
  z-index: 2;
  inset: 0;
  transform: translate(-7.5vw, -4vh) scale(0.657);
  transform-origin: center;
}

.axis {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 64px;
  left: 54px;
  width: 1px;
  background: linear-gradient(180deg, var(--blue), rgb(17 65 178 / 0.23) 68%, transparent);
  pointer-events: none;
  filter: var(--theme-filter);
}

.axis i {
  position: absolute;
  left: -2px;
  width: 5px;
  height: 5px;
  border: 1px solid #2a66ee;
  border-radius: 50%;
  background: white;
}

.axis i:nth-child(1) { top: 22%; background: #2c70ff; }
.axis i:nth-child(2) { top: 26.5%; }
.axis i:nth-child(3) { top: 31%; background: #2c70ff; }
.axis i:nth-child(4) { top: 35.5%; }

.geometry {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 96.5%;
  inset: 0;
  overflow: visible;
  pointer-events: none;
  filter: var(--theme-filter);
}

.identity,
.primary-nav,
.dot-matrix,
.site-note,
.updates,
.coordinates,
.footer {
  filter: var(--theme-filter);
}

@media (min-width: 1101px) {
  html,
  body {
    height: 100%;
    overflow: hidden;
  }

  .site {
    height: 100svh;
    min-height: 0;
  }
}

.geometry__lines {
  fill: none;
  stroke: #1449bb;
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.orbit--main {
  stroke-width: 1.1;
}

.orbit--lower,
.orbit--fine,
.fine-line {
  opacity: 0.5;
}

.target circle,
.target path {
  fill: white;
  stroke: #154dc5;
  stroke-width: 1;
  scale: 1 var(--geometry-y-correction, 1);
  transform-box: fill-box;
  transform-origin: center;
  vector-effect: non-scaling-stroke;
}

.target circle:nth-child(2) {
  fill: none;
}

.orbit-node {
  fill: #0d42b7;
  scale: 1 var(--geometry-y-correction, 1);
  stroke: white;
  stroke-width: 2;
  transform-box: fill-box;
  transform-origin: center;
  vector-effect: non-scaling-stroke;
}

.drift-dot {
  fill: #1d5ce3;
  scale: 1 var(--geometry-y-correction, 1);
  stroke: white;
  stroke-width: 1.5;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 2px rgb(27 83 214 / 0.35));
  transform-box: fill-box;
  transform-origin: center;
}

.drift-dot--two {
  fill: white;
  stroke: #1f5bd9;
}

.drift-dot--three {
  opacity: 0.75;
}

.dot-matrix {
  position: absolute;
  z-index: 4;
  top: 11.2%;
  right: 10.6%;
  width: 176px;
  height: 62px;
  background-image: radial-gradient(circle, rgb(27 86 226 / 0.72) 0 1px, transparent 1.15px);
  background-size: 18px 17px;
  pointer-events: none;
}

.identity {
  position: absolute;
  z-index: 6;
  top: 58px;
  left: 98px;
}

.identity h1 {
  margin: 0;
  color: #0b3a9b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 33px;
  font-weight: 400;
  letter-spacing: 0.09em;
  line-height: 1;
}

.primary-nav {
  position: absolute;
  z-index: 7;
  top: 21%;
  left: 98px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.nav-cable {
  position: absolute;
  z-index: -1;
  top: 0;
  left: -45px;
  width: 270px;
  height: 180px;
  overflow: visible;
  pointer-events: none;
}

.nav-deck__surface {
  fill: url(#nav-deck-fill);
  stroke: rgb(57 113 220 / 0.38);
  stroke-width: 1.25px;
  filter: url(#nav-deck-shadow);
  vector-effect: non-scaling-stroke;
}

.nav-deck__highlight,
.nav-deck__separators path {
  fill: none;
  stroke: url(#nav-deck-line);
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}

.nav-deck__highlight {
  stroke-width: 2px;
}

.nav-deck__separators path {
  stroke: rgb(69 126 222 / 0.25);
  stroke-width: 1.1px;
}

.nav-cable__glow,
.nav-cable__line {
  fill: none;
  stroke-linecap: round;
}

.nav-cable__glow {
  stroke: url(#nav-cable-stroke);
  stroke-width: 7px;
  opacity: 0.22;
  filter: url(#nav-cable-glow);
}

.nav-cable__line {
  stroke: url(#nav-cable-stroke);
  stroke-width: 3px;
}

.nav-cable__nodes circle {
  fill: url(#nav-cable-node);
  stroke: white;
  stroke-width: 1.5px;
  filter: drop-shadow(0 0 2px rgb(25 90 218 / 0.45));
  transform-box: fill-box;
  transform-origin: center;
  transition: filter 180ms ease, transform 220ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.primary-nav:has(> a:nth-of-type(1):is(:hover, :focus-visible)) .nav-cable__nodes circle:nth-child(1),
.primary-nav:has(> a:nth-of-type(2):is(:hover, :focus-visible)) .nav-cable__nodes circle:nth-child(2),
.primary-nav:has(> a:nth-of-type(3):is(:hover, :focus-visible)) .nav-cable__nodes circle:nth-child(3),
.primary-nav:has(> a:nth-of-type(4):is(:hover, :focus-visible)) .nav-cable__nodes circle:nth-child(4) {
  filter: drop-shadow(0 0 4px rgb(42 116 245 / 0.62));
  transform: scale(1.1);
}

.primary-nav > a {
  position: relative;
  display: flex;
  height: 40px;
  padding: 0 8px 0 14px;
  align-items: center;
  border: 0;
  border-radius: 0 55% 55% 0 / 0 50% 50% 0;
  background: transparent;
  box-shadow: none;
  color: #06358d;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.27em;
  line-height: 1;
  text-decoration: none;
  transform: scale(1);
  transform-origin: left center;
  white-space: nowrap;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 240ms cubic-bezier(0.2, 0.75, 0.2, 1),
    letter-spacing 240ms ease;
}

.primary-nav > a::after {
  content: none;
}

.primary-nav > a::before {
  position: absolute;
  top: 50%;
  right: 13px;
  color: #1769d8;
  content: '→';
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.82;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.2, 0.75, 0.2, 1);
  transform: translateY(-50%);
}

.primary-nav > a:nth-of-type(1) {
  width: 173px;
  margin-left: 40px;
  font-size: 12px;
}

.primary-nav > a:nth-of-type(2) {
  width: 173px;
  margin-left: 40px;
  font-size: 12px;
}

.primary-nav > a:nth-of-type(3) {
  width: 173px;
  margin-left: 40px;
  font-size: 12px;
}

.primary-nav > a:nth-of-type(4) {
  width: 173px;
  margin-left: 40px;
  font-size: 12px;
}

.primary-nav > a:hover,
.primary-nav > a:focus-visible {
  color: #1a63f4;
  background: transparent;
  box-shadow: none;
  letter-spacing: 0.27em;
  transform: none;
}

.primary-nav > a:is(:hover, :focus-visible)::before {
  opacity: 1;
  transform: translate(2px, -50%);
}

.no-js .js-only {
  display: none;
}

.hero-art {
  position: absolute;
  z-index: 1;
  top: 5.5%;
  right: -1.5%;
  left: 19.5%;
  height: min(72vh, 760px);
  min-height: 540px;
  margin: 0;
  overflow: hidden;
  background: var(--page-bg);
  cursor: crosshair;
  isolation: isolate;
}

.hero-art picture,
.hero-art img,
.hero-art__numbers {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  inset: 0;
}

.hero-art picture,
.hero-art__numbers {
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgb(0 0 0 / 0.08) 8%,
    rgb(0 0 0 / 0.42) 18%,
    black 34%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgb(0 0 0 / 0.08) 8%,
    rgb(0 0 0 / 0.42) 18%,
    black 34%
  );
}

.hero-art img {
  object-fit: cover;
  object-position: center;
  filter: var(--hero-filter);
}

.hero-art__numbers {
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.hero-art[data-number-active="true"] .hero-art__numbers {
  opacity: 1;
}

.hero-art figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-note {
  position: absolute;
  z-index: 6;
  bottom: 4%;
  left: 98px;
  width: 250px;
  margin: 0;
  color: #7d899f;
  font-size: 10px;
  letter-spacing: 0.045em;
  line-height: 1.55;
}

.updates {
  position: absolute;
  z-index: 6;
  right: -6.5%;
  bottom: 0.5%;
  width: min(39vw, 520px);
}

.updates h2 {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 0 34px 14px;
  padding-right: 22px;
  background: white;
  color: #1457d4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 400;
}

.updates ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 17px;
  list-style: none;
}

.updates li {
  display: grid;
  grid-template-columns: 8px 1fr auto;
  align-items: center;
  color: #526891;
  font-size: 12px;
  gap: 11px;
}

.updates li > i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #276cf6;
}

.updates time {
  color: #7587b5;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.coordinates {
  position: absolute;
  z-index: 7;
  top: 20%;
  right: 3.4%;
  bottom: 34%;
  width: 18px;
  color: #1049b4;
  font-family: "Courier New", Courier, monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.coordinates span {
  position: absolute;
  right: 0;
  writing-mode: vertical-rl;
}

.coordinates span:first-child {
  top: 0;
}

.coordinates span:last-child {
  bottom: 0;
}

.footer {
  position: absolute;
  z-index: 6;
  right: 6.8%;
  bottom: -11%;
  color: #7487b5;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.footer p {
  margin: 0;
}

.window-layer {
  position: fixed;
  z-index: 100;
  display: grid;
  inset: 0;
  place-items: center;
  visibility: hidden;
  opacity: 0;
  transition: opacity 170ms ease, visibility 0s linear 170ms;
  filter: var(--theme-filter);
}

.window-layer.is-open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.window-layer__outside {
  position: absolute;
  padding: 0;
  border: 0;
  inset: 0;
  background: rgb(255 255 255 / 0.42);
  backdrop-filter: blur(3px) saturate(0.92);
  cursor: default;
}

.aero-window {
  position: relative;
  z-index: 2;
  width: min(520px, calc(100vw - 36px));
  max-height: min(480px, calc(100svh - 44px));
  overflow: hidden;
  border: 1px solid rgb(63 126 223 / 0.48);
  border-radius: 17px;
  background:
    radial-gradient(circle at 86% 4%, rgb(123 202 255 / 0.22), transparent 35%),
    linear-gradient(145deg, rgb(255 255 255 / 0.98), rgb(241 249 255 / 0.92) 58%, rgb(221 239 255 / 0.86));
  box-shadow:
    0 22px 60px rgb(27 73 158 / 0.16),
    0 3px 12px rgb(42 106 205 / 0.12),
    inset 0 1px 0 white,
    inset 0 0 20px rgb(129 194 255 / 0.12);
  color: var(--blue);
  opacity: 0;
  transform: translateY(9px) scale(0.985);
  transition: opacity 170ms ease, transform 210ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.window-layer.is-open .aero-window:not([hidden]) {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.aero-window:focus {
  outline: none;
}

.aero-window__bar {
  position: sticky;
  z-index: 4;
  top: 0;
  display: grid;
  height: 34px;
  grid-template-columns: 58px 1fr 58px;
  align-items: center;
  border-bottom: 1px solid rgb(59 117 211 / 0.28);
  background: linear-gradient(180deg, rgb(255 255 255 / 0.9), rgb(214 235 255 / 0.66));
  box-shadow: inset 0 1px 0 white;
  color: #41649f;
  font-family: "Courier New", Courier, monospace;
  font-size: 8px;
  letter-spacing: 0.15em;
  text-align: center;
}

.aero-window__close {
  display: grid;
  width: 16px;
  height: 16px;
  margin-left: 14px;
  padding: 0 0 1px;
  place-items: center;
  border: 1px solid rgb(151 39 45 / 0.46);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #ffd6d2 0 12%, transparent 14%),
    linear-gradient(145deg, #ff8b82, #e64e52 65%, #b72b36);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.72), 0 1px 3px rgb(136 35 42 / 0.25);
  color: #8e1720;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  opacity: 0.9;
  transition: filter 140ms ease, transform 140ms ease;
}

.aero-window__close:hover,
.aero-window__close:focus-visible {
  filter: saturate(1.15) brightness(1.04);
  transform: scale(1.08);
}

.aero-window__body {
  min-height: 282px;
  max-height: min(420px, calc(100svh - 78px));
  padding: 32px 38px 36px;
  overflow: auto;
  scrollbar-color: rgb(72 126 215 / 0.42) transparent;
  scrollbar-width: thin;
}

.aero-window__body h2 {
  margin: 0 0 22px;
  color: #1152ca;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.aero-window__body--copy p {
  max-width: 43em;
  margin: 0 0 16px;
  color: #77849a;
  font-size: 11px;
  letter-spacing: 0.015em;
  line-height: 1.72;
}

.aero-window__body--copy p:last-child {
  margin-bottom: 0;
}

.project-table-wrap {
  overflow: auto;
  border: 1px solid rgb(36 94 198 / 0.24);
  border-radius: 8px;
  background: rgb(255 255 255 / 0.5);
}

.project-table {
  width: 100%;
  border-collapse: collapse;
  color: #687a9a;
  font-size: 10px;
  line-height: 1.4;
}

.project-table th,
.project-table td {
  min-width: 150px;
  padding: 12px 14px;
  border-bottom: 1px solid rgb(36 94 198 / 0.17);
  text-align: left;
}

.project-table th {
  position: sticky;
  z-index: 1;
  top: 0;
  background: rgb(229 242 255 / 0.94);
  color: #1b55b8;
  font-family: "Courier New", Courier, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.project-table tbody tr:last-child td {
  border-bottom: 0;
}

.project-table a {
  color: #175dcc;
  text-decoration: none;
}

.project-table a:hover,
.project-table a:focus-visible {
  text-decoration: underline;
}

.contact-form {
  display: grid;
  gap: 15px;
}

.contact-form label {
  display: grid;
  gap: 6px;
}

.contact-form label > span {
  color: #3c609f;
  font-family: "Courier New", Courier, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 9px 10px;
  border: 1px solid rgb(45 103 205 / 0.28);
  border-radius: 5px;
  outline: 0;
  background: rgb(255 255 255 / 0.72);
  box-shadow: inset 0 1px 3px rgb(65 110 178 / 0.06);
  color: #264478;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  transition: border-color 140ms ease, box-shadow 140ms ease, background 140ms ease;
}

.contact-form textarea {
  min-height: 76px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgb(34 101 224 / 0.62);
  background: white;
  box-shadow: 0 0 0 3px rgb(45 114 238 / 0.08), inset 0 1px 3px rgb(65 110 178 / 0.05);
}

.contact-form__footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-top: 2px;
  gap: 14px;
}

.contact-form__footer p {
  min-height: 12px;
  margin: 0;
  color: #71819d;
  font-size: 9px;
  line-height: 1.35;
}

.contact-form__footer button {
  min-width: 118px;
  height: 32px;
  padding: 0 12px;
  border: 1px solid rgb(35 94 200 / 0.37);
  border-radius: 16px;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.9), rgb(197 225 255 / 0.72));
  box-shadow: inset 0 1px 0 white, 0 2px 5px rgb(36 93 184 / 0.1);
  color: #174fae;
  cursor: pointer;
  font-family: "Courier New", Courier, monospace;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}

.contact-form__footer button:hover,
.contact-form__footer button:focus-visible {
  color: #1768ef;
  box-shadow: inset 0 1px 0 white, 0 3px 8px rgb(36 93 184 / 0.16);
  transform: translateY(-1px);
}

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

  .site {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
    padding: 34px 30px 0 74px;
    overflow: hidden;
  }

  .composition {
    display: contents;
  }

  .axis i {
    display: none;
  }

  .identity,
  .primary-nav,
  .hero-art,
  .site-note,
  .updates,
  .coordinates,
  .footer {
    position: relative;
    inset: auto;
  }

  .identity {
    z-index: 6;
  }

  .identity h1 {
    font-size: 29px;
  }

  .primary-nav {
    z-index: 7;
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 42px;
    gap: 20px 34px;
  }

  .nav-cable {
    display: none;
  }

  .primary-nav > a {
    width: max-content;
    height: 30px;
    padding: 0;
    margin-left: 0;
    font-size: 11px;
    line-height: 1;
  }

  .primary-nav > a:nth-of-type(n) {
    width: max-content;
    margin-left: 0;
    font-size: 11px;
  }

  .primary-nav > a::after {
    display: none;
  }

  .primary-nav > a::before {
    display: none;
  }

  .hero-art {
    z-index: 1;
    width: calc(100% + 104px);
    height: auto;
    min-height: 0;
    margin: 32px -30px 0 -74px;
    aspect-ratio: 4 / 3;
  }

  .updates {
    z-index: 6;
    align-self: flex-end;
    width: min(520px, 72vw);
    margin-top: 58px;
  }

  .site-note {
    width: min(280px, 66vw);
    margin-top: 34px;
  }

  .coordinates {
    z-index: 6;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    width: auto;
    margin-top: 48px;
    gap: 28px;
    font-size: 9px;
  }

  .coordinates span {
    position: relative;
    inset: auto;
    writing-mode: horizontal-tb;
  }

  .footer {
    z-index: 6;
    align-self: flex-end;
    margin-top: 38px;
    padding: 0 0 24px;
  }

  .dot-matrix {
    top: 62px;
    right: 5%;
  }
}

@media (max-width: 650px) {
  html {
    scroll-behavior: auto;
  }

  .site {
    padding: 22px 20px 0;
  }

  .axis {
    top: 0;
    bottom: 0;
    left: 16px;
    opacity: 0.8;
  }

  .geometry {
    width: 190%;
    height: 920px;
    margin-left: -54%;
    opacity: 0.48;
  }

  .dot-matrix {
    top: 92px;
    right: -28px;
    width: 126px;
    height: 48px;
    background-size: 15px 14px;
    opacity: 0.56;
  }

  .identity {
    order: 0;
    margin-left: 24px;
  }

  .identity h1 {
    font-size: clamp(25px, 8.2vw, 33px);
    letter-spacing: 0.075em;
  }

  .primary-nav {
    z-index: 7;
    display: flex;
    flex-direction: column;
    align-self: stretch;
    margin: clamp(102px, 14svh, 142px) 0 0 22px;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    gap: 0;
    backdrop-filter: none;
    filter: none;
  }

  .primary-nav > a {
    width: 100%;
    height: 72px;
    padding: 0 16px;
    justify-content: space-between;
    border: 0;
    border-top: 1px solid var(--mobile-nav-line);
    background: var(--mobile-nav-surface);
    color: var(--mobile-nav-text);
    font-size: clamp(20px, 6.1vw, 25px);
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .primary-nav > a:last-of-type {
    border-bottom: 1px solid var(--mobile-nav-line);
    border-image: linear-gradient(90deg, var(--mobile-nav-line) 0 78%, transparent 100%) 1;
  }

  .primary-nav > a:nth-of-type(n) {
    width: 100%;
    font-size: clamp(20px, 6.1vw, 25px);
  }

  .primary-nav > a::before {
    position: static;
    display: block;
    color: var(--mobile-nav-muted);
    content: '01';
    font-family: "Courier New", Courier, monospace;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.1em;
    opacity: 0.84;
    transform: none;
  }

  .primary-nav > a:nth-of-type(2)::before { content: '02'; }
  .primary-nav > a:nth-of-type(3)::before { content: '03'; }
  .primary-nav > a:nth-of-type(4)::before { content: '04'; }

  .primary-nav > a::after {
    display: none;
  }

  .primary-nav > a:hover,
  .primary-nav > a:focus-visible {
    background: var(--mobile-nav-surface-active);
    color: var(--mobile-nav-text);
    letter-spacing: 0.1em;
  }

  .primary-nav > .aero-window {
    width: 100%;
    max-height: 0;
    margin: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: var(--mobile-panel-surface);
    box-shadow: none;
    color: var(--mobile-panel-text);
    opacity: 1;
    transform: none;
    transition: max-height 280ms cubic-bezier(0.2, 0.75, 0.2, 1), border-color 180ms ease;
    backdrop-filter: blur(9px);
  }

  .primary-nav > .aero-window.is-inline-open {
    max-height: 760px;
    border-bottom: 1px solid var(--mobile-panel-line);
  }

  .primary-nav > .aero-window .aero-window__bar {
    display: none;
  }

  .primary-nav > .aero-window .aero-window__body {
    min-height: 0;
    max-height: none;
    padding: 0 14px 0 24px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 240ms ease, padding 280ms cubic-bezier(0.2, 0.75, 0.2, 1);
  }

  .primary-nav > .aero-window.is-inline-open .aero-window__body {
    padding-top: 22px;
    padding-bottom: 28px;
    opacity: 1;
    transform: translateY(0);
  }

  .primary-nav > .aero-window .aero-window__body h2 {
    margin-bottom: 17px;
    font-size: 27px;
    color: var(--mobile-panel-heading);
  }

  .primary-nav > .aero-window .aero-window__body--copy p {
    font-size: 12px;
    line-height: 1.68;
    color: var(--mobile-panel-text);
  }

  .primary-nav > .aero-window .project-table-wrap {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  .primary-nav > .aero-window .project-table,
  .primary-nav > .aero-window .project-table tbody,
  .primary-nav > .aero-window .project-table tr,
  .primary-nav > .aero-window .project-table td {
    display: block;
    width: 100%;
  }

  .primary-nav > .aero-window .project-table thead {
    display: none;
  }

  .primary-nav > .aero-window .project-table tr {
    padding: 13px 0;
    border-bottom: 1px solid var(--mobile-panel-line);
  }

  .primary-nav > .aero-window .project-table tr:first-child {
    padding-top: 0;
  }

  .primary-nav > .aero-window .project-table tr:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .primary-nav > .aero-window .project-table td {
    min-width: 0;
    padding: 0;
    border: 0;
    font-size: 12px;
    color: var(--mobile-panel-text);
  }

  .primary-nav > .aero-window .project-table td + td {
    margin-top: 6px;
    color: var(--mobile-nav-muted);
  }

  .primary-nav > .aero-window .project-table a {
    color: var(--mobile-nav-text);
  }

  .hero-art {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    margin: 0;
    aspect-ratio: auto;
    background: var(--page-bg);
    cursor: default;
    touch-action: pan-y;
  }

  .hero-art img {
    object-position: 64% center;
  }

  .hero-art picture,
  .hero-art__numbers {
    -webkit-mask-image: none;
    mask-image: none;
  }

  .hero-art::before {
    position: absolute;
    z-index: 1;
    inset: 0;
    background: var(--mobile-hero-overlay);
    content: '';
    pointer-events: none;
  }

  .updates {
    order: 4;
    align-self: stretch;
    width: auto;
    margin: 70px 20px 0 22px;
  }

  .site-note {
    order: 3;
    width: min(310px, 82vw);
    margin: clamp(150px, 20svh, 210px) 20px 0 22px;
    font-size: 10px;
    text-shadow: 0 1px 8px rgb(255 255 255 / 0.9);
  }

  .updates h2 {
    margin: 0 0 26px;
    padding-right: 14px;
    background: white;
    font-size: 23px;
  }

  .updates li {
    grid-template-columns: 8px 1fr;
    line-height: 1.35;
  }

  .updates time {
    display: none;
  }

  .coordinates {
    order: 5;
    justify-content: space-between;
    margin: 48px 18px 0;
    gap: 8px;
    font-size: 8px;
  }

  .footer {
    order: 6;
    align-self: flex-start;
    margin: 35px 18px 0;
    font-size: 8px;
  }

  .aero-window {
    width: calc(100vw - 28px);
    max-height: calc(100svh - 28px);
    border-radius: 14px;
  }

  .aero-window__body {
    min-height: 300px;
    max-height: calc(100svh - 63px);
    padding: 26px 22px 28px;
  }

  .aero-window__body h2 {
    margin-bottom: 18px;
    font-size: 25px;
  }

  .project-table th,
  .project-table td {
    min-width: 122px;
    padding: 11px 10px;
  }

  .contact-form__footer {
    grid-template-columns: 1fr;
  }

  .contact-form__footer button {
    justify-self: end;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }

  .drift-dot {
    display: none;
  }
}
