:root {
  color-scheme: dark;
  --void: #050709;
  --void-soft: #090d11;
  --panel: #0d1217;
  --ink: #edf8f8;
  --muted: #74858b;
  --line: #1d3038;
  --cyan: #21edf3;
  --magenta: #ff3caf;
  --amber: #ffc247;
  --green: #50ed82;
  --header-height: 72px;
  --mouse-x: 50vw;
  --mouse-y: 50vh;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--cyan) var(--void);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--void);
  color: var(--ink);
  font-family: "Inter", "Noto Sans SC", sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  z-index: 40;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent calc(var(--mouse-x) - 1px), rgba(33, 237, 243, 0.1) var(--mouse-x), transparent calc(var(--mouse-x) + 1px)),
    linear-gradient(transparent calc(var(--mouse-y) - 1px), rgba(255, 60, 175, 0.08) var(--mouse-y), transparent calc(var(--mouse-y) + 1px));
  opacity: 0.6;
}

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

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

img {
  display: block;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--cyan);
  color: var(--void);
  font-weight: 700;
  transform: translateY(-160%);
}

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

.scanlines {
  position: fixed;
  z-index: 60;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, transparent 0, transparent 3px, rgba(4, 10, 12, 0.2) 4px);
  mix-blend-mode: multiply;
  opacity: 0.48;
}

.cursor-reticle {
  position: fixed;
  z-index: 55;
  top: 0;
  left: 0;
  width: 26px;
  height: 26px;
  pointer-events: none;
  border: 1px solid rgba(33, 237, 243, 0.58);
  transform: translate3d(calc(var(--mouse-x) - 13px), calc(var(--mouse-y) - 13px), 0) rotate(45deg);
  transition: width 120ms ease, height 120ms ease, border-color 120ms ease;
}

.cursor-reticle span,
.cursor-reticle::before,
.cursor-reticle::after {
  content: "";
  position: absolute;
  background: var(--cyan);
}

.cursor-reticle::before {
  top: 12px;
  left: -7px;
  width: 38px;
  height: 1px;
}

.cursor-reticle::after {
  top: -7px;
  left: 12px;
  width: 1px;
  height: 38px;
}

.cursor-reticle span {
  top: 10px;
  left: 10px;
  width: 4px;
  height: 4px;
}

.scroll-progress {
  position: fixed;
  z-index: 70;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--magenta));
  box-shadow: 0 0 12px var(--cyan);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 64px);
  background: rgba(5, 7, 9, 0.76);
  border-bottom: 1px solid rgba(33, 237, 243, 0.19);
  backdrop-filter: blur(14px);
}

.brand,
.header-nav,
.header-status,
.brand-copy {
  display: flex;
  align-items: center;
}

.brand {
  justify-self: start;
  gap: 12px;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--green);
  clip-path: polygon(0 0, 75% 0, 100% 25%, 100% 100%, 25% 100%, 0 75%);
}

.brand-mark img {
  width: 27px;
  height: 27px;
  image-rendering: pixelated;
}

.brand-copy {
  align-items: flex-start;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong,
.brand-copy small,
.header-status,
.header-nav,
.eyebrow,
.system-strip,
.section-code,
.section-heading > p,
.module-index,
.module-copy small,
.module-domain,
.module-state,
.channel-code,
footer {
  font-family: "DM Mono", monospace;
}

.brand-copy strong {
  font-size: 0.83rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.55rem;
}

.header-status {
  gap: 9px;
  color: var(--cyan);
  font-size: 0.64rem;
}

.status-dot,
.module-state i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: pulse 1.4s ease-in-out infinite;
}

.header-nav {
  justify-self: end;
  gap: 28px;
  font-size: 0.7rem;
}

.header-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--muted);
}

.header-nav a span {
  margin-right: 6px;
  color: var(--magenta);
}

.header-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

.header-nav a:hover {
  color: var(--ink);
}

.header-nav a:hover::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: max(720px, 100svh);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: clamp(50px, 8vw, 130px);
  align-items: center;
  padding: calc(var(--header-height) + 70px) clamp(20px, 7vw, 112px) 126px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -4;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(5, 7, 9, 0.98) 0%, rgba(5, 7, 9, 0.86) 50%, rgba(5, 7, 9, 0.44) 100%),
    linear-gradient(135deg, rgba(33, 237, 243, 0.06), transparent 38%, rgba(255, 60, 175, 0.07));
}

.hero-grid {
  position: absolute;
  z-index: -3;
  right: -12%;
  bottom: -42%;
  width: 78%;
  height: 96%;
  background-image:
    linear-gradient(rgba(33, 237, 243, 0.19) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 237, 243, 0.19) 1px, transparent 1px);
  background-size: 54px 54px;
  transform: perspective(460px) rotateX(62deg) rotateZ(-7deg);
  transform-origin: center bottom;
  mask-image: linear-gradient(to top, #000, transparent 86%);
  animation: grid-flow 7s linear infinite;
}

.data-rain {
  position: absolute;
  z-index: -2;
  inset: var(--header-height) 0 0;
  pointer-events: none;
  color: rgba(33, 237, 243, 0.2);
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
}

.data-rain span {
  position: absolute;
  animation: drift 8s linear infinite;
}

.data-rain span:nth-child(1) { top: 13%; left: 4%; animation-delay: -2s; }
.data-rain span:nth-child(2) { top: 26%; right: 7%; color: rgba(255, 60, 175, 0.3); animation-delay: -5s; }
.data-rain span:nth-child(3) { top: 9%; right: 34%; animation-delay: -7s; }
.data-rain span:nth-child(4) { bottom: 26%; left: 2%; color: rgba(255, 194, 71, 0.26); animation-delay: -1s; }
.data-rain span:nth-child(5) { top: 44%; right: 2%; animation-delay: -3s; }
.data-rain span:nth-child(6) { bottom: 18%; right: 27%; color: rgba(255, 60, 175, 0.28); animation-delay: -6s; }
.data-rain span:nth-child(7) { top: 60%; left: 40%; animation-delay: -4s; }
.data-rain span:nth-child(8) { top: 20%; left: 48%; color: rgba(255, 194, 71, 0.25); animation-delay: -2.5s; }

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.7rem;
}

.eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

.eyebrow span {
  color: var(--magenta);
}

h1,
h2,
p {
  margin-top: 0;
}

.glitch {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(5rem, 11vw, 10rem);
  line-height: 0.8;
  font-weight: 800;
  letter-spacing: 0;
  text-shadow: 5px 0 0 rgba(255, 60, 175, 0.86), -5px 0 0 rgba(33, 237, 243, 0.8);
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.glitch::before {
  color: var(--cyan);
  clip-path: inset(0 0 66% 0);
  transform: translateX(-5px);
  animation: glitch-top 2.2s steps(2, end) infinite;
}

.glitch::after {
  color: var(--magenta);
  clip-path: inset(64% 0 0 0);
  transform: translateX(5px);
  animation: glitch-bottom 1.8s steps(2, end) infinite;
}

.hero-intro {
  max-width: 500px;
  margin-bottom: 34px;
  color: #9dacb1;
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.primary-action,
.text-action {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 18px;
  border: 1px solid var(--cyan);
  font-size: 0.82rem;
  font-weight: 600;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.primary-action {
  min-width: 164px;
  background: var(--cyan);
  color: #031113;
  box-shadow: 0 0 26px rgba(33, 237, 243, 0.17);
}

.text-action {
  color: var(--magenta);
  border-color: rgba(255, 60, 175, 0.5);
}

.primary-action:hover {
  background: transparent;
  color: var(--cyan);
  box-shadow: inset 0 0 24px rgba(33, 237, 243, 0.11), 0 0 20px rgba(33, 237, 243, 0.14);
}

.text-action:hover {
  background: rgba(255, 60, 175, 0.09);
  box-shadow: inset 0 0 20px rgba(255, 60, 175, 0.08), 0 0 18px rgba(255, 60, 175, 0.1);
}

.primary-action svg,
.text-action svg {
  width: 17px;
  height: 17px;
}

.hero-visual {
  position: relative;
  width: min(100%, 480px);
  justify-self: end;
}

.target-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background:
    linear-gradient(rgba(33, 237, 243, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 237, 243, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  border: 1px solid rgba(33, 237, 243, 0.22);
  clip-path: polygon(0 0, calc(100% - 38px) 0, 100% 38px, 100% 100%, 38px 100%, 0 calc(100% - 38px));
  animation: frame-signal 3s ease-in-out infinite;
}

.target-frame::before,
.target-frame::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 60, 175, 0.32);
}

.target-frame::before {
  inset: 10%;
  animation: frame-spin 18s linear infinite;
}

.target-frame::after {
  width: 64%;
  aspect-ratio: 1;
  transform: rotate(45deg);
  border-color: rgba(33, 237, 243, 0.34);
  animation: frame-spin-reverse 13s linear infinite;
}

.avatar-glitch {
  position: relative;
  z-index: 3;
  width: 46%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  background: rgba(5, 7, 9, 0.94);
  border: 1px solid var(--green);
  box-shadow: 0 0 36px rgba(80, 237, 130, 0.18), inset 0 0 30px rgba(80, 237, 130, 0.08);
}

.avatar-glitch::before {
  content: attr(data-label);
  position: absolute;
  top: -22px;
  left: -1px;
  color: var(--green);
  font-family: "DM Mono", monospace;
  font-size: 0.6rem;
}

.avatar-glitch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 42%, rgba(255, 255, 255, 0.3) 48%, transparent 54%);
  transform: translateY(-100%);
  animation: avatar-scan 2.6s linear infinite;
}

.avatar-glitch img {
  width: 74%;
  height: auto;
  image-rendering: pixelated;
  filter: saturate(1.2) contrast(1.08);
}

.corner {
  position: absolute;
  z-index: 4;
  width: 48px;
  height: 48px;
  border-color: var(--cyan);
}

.top-left { top: 14px; left: 14px; border-top: 2px solid; border-left: 2px solid; }
.top-right { top: 14px; right: 14px; border-top: 2px solid; border-right: 2px solid; }
.bottom-left { bottom: 14px; left: 14px; border-bottom: 2px solid; border-left: 2px solid; }
.bottom-right { right: 14px; bottom: 14px; border-right: 2px solid; border-bottom: 2px solid; }

.axis {
  position: absolute;
  z-index: 1;
  background: rgba(33, 237, 243, 0.18);
}

.axis-x { right: 0; left: 0; height: 1px; }
.axis-y { top: 0; bottom: 0; width: 1px; }

.identity-data {
  position: absolute;
  right: -26px;
  bottom: 38px;
  z-index: 5;
  display: grid;
  gap: 5px;
  padding: 12px 16px;
  background: rgba(5, 7, 9, 0.9);
  border-left: 2px solid var(--magenta);
  color: var(--muted);
  font-family: "DM Mono", monospace;
  font-size: 0.58rem;
  box-shadow: -12px 0 30px rgba(255, 60, 175, 0.08);
}

.identity-data b {
  display: inline-block;
  width: 42px;
  color: var(--magenta);
  font-weight: 500;
}

.system-strip {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 74px;
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 0.7fr)) minmax(240px, 1.4fr);
  align-items: center;
  border-top: 1px solid rgba(33, 237, 243, 0.18);
  background: rgba(5, 7, 9, 0.76);
  font-size: 0.61rem;
}

.system-strip > span {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 22px;
  border-right: 1px solid rgba(33, 237, 243, 0.14);
}

.system-strip b {
  color: var(--muted);
  font-weight: 400;
}

.system-strip output { color: var(--cyan); }

.strip-message {
  justify-content: flex-end;
  color: var(--muted);
}

.strip-message svg {
  width: 15px;
  animation: nudge 1.3s ease-in-out infinite;
}

.services {
  position: relative;
  padding: 118px clamp(20px, 7vw, 112px) 132px;
  background: var(--void-soft);
  border-top: 1px solid rgba(255, 60, 175, 0.13);
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  right: 7%;
  width: 34%;
  height: 1px;
  background: var(--magenta);
  box-shadow: 0 0 18px var(--magenta);
}

.section-heading {
  display: grid;
  grid-template-columns: 150px 1fr auto;
  gap: 36px;
  align-items: end;
  margin-bottom: 56px;
}

.section-code {
  display: flex;
  gap: 10px;
  margin: 0;
  color: var(--muted);
  font-size: 0.65rem;
}

.section-code span:first-child { color: var(--magenta); }

.section-heading h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.8rem, 5.2vw, 5rem);
  line-height: 0.94;
  font-weight: 700;
}

.section-heading h2 span,
.contact h2 span {
  color: var(--cyan);
  animation: blink 0.8s steps(1) infinite;
}

.section-heading > p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.6rem;
}

.service-grid { border-top: 1px solid var(--line); }

.service-module {
  --module-accent: var(--cyan);
  position: relative;
  min-height: 132px;
  display: grid;
  grid-template-columns: 74px 64px minmax(190px, 1fr) minmax(190px, 0.8fr) 90px 48px;
  gap: 22px;
  align-items: center;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--module-accent) 3%, transparent));
  isolation: isolate;
  transition: padding 180ms ease, background-color 180ms ease;
}

.service-module::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, color-mix(in srgb, var(--module-accent) 11%, transparent), transparent 60%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-module::after {
  content: "";
  position: absolute;
  top: -1px;
  bottom: -1px;
  left: 0;
  width: 2px;
  background: var(--module-accent);
  box-shadow: 0 0 14px var(--module-accent);
  transform: scaleY(0);
  transition: transform 180ms ease;
}

.service-module[data-accent="magenta"] { --module-accent: var(--magenta); }
.service-module[data-accent="amber"] { --module-accent: var(--amber); }
.service-module[data-accent="green"] { --module-accent: var(--green); }

.service-module:hover {
  padding-right: 28px;
  padding-left: 28px;
}

.service-module:hover::before { transform: scaleX(1); }
.service-module:hover::after { transform: scaleY(1); }

.module-index,
.module-domain,
.module-state {
  color: var(--muted);
  font-size: 0.61rem;
}

.module-index { color: var(--module-accent); }

.module-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--module-accent) 46%, transparent);
  color: var(--module-accent);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.service-module:hover .module-icon {
  background: color-mix(in srgb, var(--module-accent) 11%, transparent);
  box-shadow: inset 0 0 14px color-mix(in srgb, var(--module-accent) 12%, transparent), 0 0 14px color-mix(in srgb, var(--module-accent) 10%, transparent);
}

.module-icon svg { width: 21px; height: 21px; }

.module-copy { display: grid; gap: 7px; }

.module-copy strong {
  width: fit-content;
  font-size: 1.28rem;
  font-weight: 600;
}

.module-copy small {
  color: var(--muted);
  font-size: 0.59rem;
}

.module-domain {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.module-state { display: flex; align-items: center; gap: 7px; }

.module-state i {
  width: 5px;
  height: 5px;
  background: var(--module-accent);
  box-shadow: 0 0 8px var(--module-accent);
}

.module-arrow {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--line);
  color: var(--muted);
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.service-module:hover .module-arrow {
  color: var(--module-accent);
  border-color: var(--module-accent);
  transform: translate(3px, -3px);
}

.module-arrow svg { width: 17px; height: 17px; }

.contact {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(60px, 10vw, 160px);
  padding: 130px clamp(20px, 7vw, 112px);
  background: #070a0d;
  border-top: 1px solid rgba(33, 237, 243, 0.14);
}

.contact-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(33, 237, 243, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 237, 243, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 55%);
}

.contact-copy,
.contact-channels {
  position: relative;
  z-index: 1;
}

.contact-copy .section-code { margin-bottom: 32px; }
.contact h2 { margin-bottom: 24px; }

.contact-copy > p:last-child {
  color: var(--muted);
  line-height: 1.8;
}

.contact-channels { border-top: 1px solid var(--line); }

.contact-channels a {
  min-height: 90px;
  display: grid;
  grid-template-columns: 84px 1fr 24px;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: padding 180ms ease, background-color 180ms ease;
}

.contact-channels a:hover {
  padding-right: 12px;
  padding-left: 12px;
  background: rgba(33, 237, 243, 0.035);
}

.channel-code {
  color: var(--magenta);
  font-size: 0.58rem;
}

.channel-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.channel-main svg,
.contact-channels a > svg {
  width: 18px;
  height: 18px;
}

.channel-main svg { color: var(--cyan); }

footer {
  min-height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 4vw, 64px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.59rem;
}

footer > span:nth-child(2) { color: var(--magenta); }

footer a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  justify-self: end;
  border: 1px solid var(--line);
  color: var(--cyan);
}

footer svg { width: 15px; }

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

.service-module.reveal:nth-child(2) { transition-delay: 80ms; }
.service-module.reveal:nth-child(3) { transition-delay: 160ms; }
.service-module.reveal:nth-child(4) { transition-delay: 240ms; }

@keyframes pulse {
  50% { opacity: 0.35; box-shadow: 0 0 2px currentColor; }
}

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

@keyframes nudge {
  50% { transform: translateY(4px); }
}

@keyframes grid-flow {
  to { background-position: 0 54px, 54px 0; }
}

@keyframes drift {
  0%, 100% { transform: translateY(-8px); opacity: 0.3; }
  50% { transform: translateY(12px); opacity: 0.9; }
}

@keyframes glitch-top {
  0%, 88%, 100% { transform: translateX(-5px); }
  89% { transform: translate(11px, -3px); }
  92% { transform: translate(-13px, 2px); }
  95% { transform: translate(5px, 0); }
}

@keyframes glitch-bottom {
  0%, 82%, 100% { transform: translateX(5px); }
  84% { transform: translate(-10px, 3px); }
  88% { transform: translate(14px, -2px); }
  92% { transform: translate(-4px, 0); }
}

@keyframes frame-spin {
  to { transform: rotate(360deg); }
}

@keyframes frame-spin-reverse {
  to { transform: rotate(-315deg); }
}

@keyframes frame-signal {
  50% { border-color: rgba(255, 60, 175, 0.34); box-shadow: inset 0 0 32px rgba(255, 60, 175, 0.035); }
}

@keyframes avatar-scan {
  to { transform: translateY(100%); }
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 44px;
  }

  .system-strip { grid-template-columns: repeat(3, 1fr); }
  .strip-message { display: none !important; }

  .service-module {
    grid-template-columns: 68px 58px 1fr 74px 44px;
  }

  .module-domain { display: none; }
}

@media (max-width: 720px) {
  :root { --header-height: 64px; }

  body::before,
  .cursor-reticle { display: none; }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .header-status { display: none; }

  .header-nav {
    gap: 16px;
    font-size: 0.64rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 62px;
    padding: calc(var(--header-height) + 62px) 18px 104px;
  }

  .glitch { font-size: clamp(3.4rem, 18vw, 5.2rem); }

  .hero-visual {
    width: 88%;
    justify-self: center;
  }

  .identity-data {
    right: -18px;
    bottom: 24px;
  }

  .system-strip {
    position: relative;
    grid-column: 1;
    grid-template-columns: repeat(3, 1fr);
    width: calc(100% + 36px);
    margin: 0 -18px -104px;
  }

  .system-strip > span {
    min-width: 0;
    min-height: 70px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    text-align: center;
  }

  .services,
  .contact {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .section-heading > p { margin-top: 0; }

  .service-module {
    min-height: 122px;
    grid-template-columns: 48px 1fr 40px;
    gap: 14px;
    padding: 0 10px;
  }

  .service-module:hover {
    padding-right: 14px;
    padding-left: 14px;
  }

  .module-index,
  .module-domain,
  .module-state { display: none; }

  .module-icon {
    width: 44px;
    height: 44px;
  }

  .module-copy strong { font-size: 1.1rem; }

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

  .contact-channels a {
    grid-template-columns: 64px 1fr 20px;
    gap: 10px;
  }

  .channel-main strong { overflow-wrap: anywhere; }

  footer {
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  footer > span:nth-child(2) { display: none; }
}

@media (max-width: 390px) {
  .brand-copy small,
  .header-nav a span { display: none; }

  .header-nav { gap: 12px; }

  .primary-action,
  .text-action { width: 100%; }

  .hero-visual { width: 100%; }
  .identity-data { right: -8px; }
}

@media (pointer: coarse) {
  body::before,
  .cursor-reticle { display: none; }
}

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

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

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

  .cursor-reticle,
  body::before { display: none; }
}
