:root {
  color-scheme: dark;
  --bg: #05020a;
  --ink: #f8fbff;
  --muted: rgba(248, 251, 255, 0.7);
  --dim: rgba(248, 251, 255, 0.48);
  --line: rgba(248, 251, 255, 0.18);
  --cyan: #37e8ff;
  --pink: #ff4fd8;
  --lime: #7dff86;
  --amber: #ffd166;
  --violet: #a78bfa;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
  --look-x: 0px;
  --look-y: 0px;
  --look-x-neg: 0px;
  --look-y-neg: 0px;
  --aim-x: 50%;
  --aim-y: 45%;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(180deg, rgba(55, 232, 255, 0.08), transparent 28rem),
    linear-gradient(120deg, rgba(255, 79, 216, 0.12), transparent 24rem),
    var(--bg);
  color: var(--ink);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}

body[data-style="neon"] {
  --bg: #050012;
  --cyan: #49f2ff;
  --pink: #ff42f8;
  --lime: #adff2f;
  --amber: #ffdf6e;
  --violet: #b46cff;
}

body[data-style="frost"] {
  --bg: #020814;
  --cyan: #bff7ff;
  --pink: #8fb3ff;
  --lime: #d8fff6;
  --amber: #cde7ff;
  --violet: #a9c7ff;
}

body[data-style="blood"] {
  --bg: #090107;
  --cyan: #ff405d;
  --pink: #ff2b93;
  --lime: #ffd166;
  --amber: #ff9a3d;
  --violet: #d946ef;
}

body[data-style="gold"] {
  --bg: #080503;
  --cyan: #ffd166;
  --pink: #ff8f3d;
  --lime: #fff3a3;
  --amber: #ffe76a;
  --violet: #ffcf70;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(55, 232, 255, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 79, 216, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 84%);
}

body::after {
  z-index: 3;
  background:
    linear-gradient(180deg, transparent 0 42%, rgba(55, 232, 255, 0.12) 43%, transparent 45%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px 4px);
  mix-blend-mode: screen;
  opacity: 0.24;
  animation: scanDrop 6s linear infinite;
}

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

#neuralCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.scanline {
  position: fixed;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  background: repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
  opacity: 0.2;
}

.burst-layer {
  position: fixed;
  inset: 0;
  z-index: 6;
  pointer-events: none;
  overflow: hidden;
}

.burst-layer i {
  position: fixed;
  left: var(--x);
  top: var(--y);
  width: 2px;
  height: var(--h);
  background: linear-gradient(180deg, transparent, var(--spark), transparent);
  box-shadow: 0 0 18px var(--spark);
  transform: translate(-50%, -50%) rotate(var(--r));
  animation: sparkFly 760ms ease-out forwards;
}

.burst-layer b {
  position: fixed;
  left: var(--x);
  top: var(--y);
  width: 1rem;
  aspect-ratio: 1;
  border: 1px solid var(--wave);
  border-radius: 50%;
  box-shadow: 0 0 24px var(--wave);
  transform: translate(-50%, -50%);
  animation: waveOut 900ms ease-out forwards;
}

.hero,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.hero {
  min-height: 88svh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  isolation: isolate;
  padding: 0.85rem;
}

.hero::before,
.hero::after,
.fx-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero::before {
  content: "";
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 2, 10, 0.94) 0%, rgba(5, 2, 10, 0.58) 42%, rgba(5, 2, 10, 0.18) 76%),
    linear-gradient(180deg, rgba(5, 2, 10, 0.18), rgba(5, 2, 10, 0.98)),
    url("/assets/hero-game.webp") center / cover no-repeat;
  filter: saturate(1.28) contrast(1.12);
  transform: translate3d(var(--look-x), var(--look-y), 0) scale(1.06);
  will-change: transform;
}

body[data-style="neon"] .hero::before {
  filter: saturate(1.45) hue-rotate(12deg) contrast(1.14);
}

body[data-style="frost"] .hero::before {
  filter: saturate(0.92) hue-rotate(35deg) contrast(1.18);
}

body[data-style="blood"] .hero::before {
  filter: saturate(1.6) hue-rotate(125deg) contrast(1.2);
}

body[data-style="gold"] .hero::before {
  filter: saturate(1.35) sepia(0.18) hue-rotate(320deg) contrast(1.16);
}

.hero::after {
  content: "";
  z-index: -1;
  background:
    radial-gradient(circle at var(--aim-x) var(--aim-y), rgba(248, 251, 255, 0.2) 0 0.16rem, rgba(55, 232, 255, 0.16) 0 6rem, rgba(255, 79, 216, 0.1) 6rem 10rem, transparent 18rem),
    linear-gradient(112deg, transparent 0 17%, rgba(55, 232, 255, 0.28) 17.4%, transparent 21%),
    linear-gradient(68deg, transparent 0 60%, rgba(255, 79, 216, 0.28) 60.6%, transparent 65%),
    linear-gradient(95deg, transparent 0 76%, rgba(125, 255, 134, 0.18) 76.5%, transparent 80%);
  background-size: auto, 180% 180%, 150% 150%, 130% 130%;
  animation: lightSweep 7s ease-in-out infinite alternate;
}

.fx-layer {
  z-index: 0;
  transform: translate3d(var(--look-x-neg), var(--look-y-neg), 0);
  will-change: transform;
}

.fx-slash,
.fx-ring,
.fx-bars,
.fx-cross,
.fx-rain {
  position: absolute;
  display: block;
}

.fx-slash {
  width: 18rem;
  height: 0.12rem;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--pink), transparent);
  box-shadow: 0 0 30px rgba(55, 232, 255, 0.5);
  transform: rotate(-18deg);
  animation: slashRun 4s linear infinite;
}

.slash-a {
  top: 19%;
  right: -10%;
}

.slash-b {
  top: 50%;
  left: -12%;
  animation-delay: -1.4s;
}

.slash-c {
  bottom: 18%;
  right: 12%;
  animation-delay: -2.7s;
}

.fx-ring {
  width: 19rem;
  aspect-ratio: 1;
  border: 1px solid rgba(55, 232, 255, 0.36);
  border-radius: 50%;
  box-shadow:
    inset 0 0 32px rgba(55, 232, 255, 0.18),
    0 0 42px rgba(255, 79, 216, 0.18);
  animation: ringSpin 12s linear infinite;
}

.ring-a {
  right: 9%;
  top: 17%;
}

.ring-b {
  right: 18%;
  top: 24%;
  width: 12rem;
  border-color: rgba(255, 79, 216, 0.34);
  animation-duration: 8s;
  animation-direction: reverse;
}

.fx-bars {
  right: 5%;
  bottom: 18%;
  width: 24rem;
  height: 8rem;
  background: repeating-linear-gradient(90deg, rgba(125, 255, 134, 0.28) 0 3px, transparent 3px 18px);
  transform: skewX(-18deg);
  opacity: 0.24;
  animation: barPulse 1.8s steps(4) infinite;
}

.fx-cross {
  right: 23%;
  top: 42%;
  width: 13rem;
  aspect-ratio: 1;
  border: 1px solid rgba(55, 232, 255, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(55, 232, 255, 0.2);
  animation: crossPulse 2.2s ease-in-out infinite;
}

.fx-cross::before,
.fx-cross::after {
  content: "";
  position: absolute;
  background: rgba(55, 232, 255, 0.62);
  box-shadow: 0 0 18px rgba(55, 232, 255, 0.7);
}

.fx-cross::before {
  left: 50%;
  top: -1.8rem;
  width: 1px;
  height: calc(100% + 3.6rem);
}

.fx-cross::after {
  left: -1.8rem;
  top: 50%;
  width: calc(100% + 3.6rem);
  height: 1px;
}

.fx-rain {
  inset: 0;
  overflow: hidden;
}

.fx-rain i {
  position: absolute;
  left: calc(var(--i) * 6%);
  top: -18%;
  width: 1px;
  height: 14rem;
  background: linear-gradient(180deg, transparent, rgba(55, 232, 255, 0.52), transparent);
  box-shadow: 0 0 18px rgba(55, 232, 255, 0.48);
  transform: rotate(18deg);
  animation: rainDrop calc(2.8s + var(--i) * 0.09s) linear infinite;
  animation-delay: calc(var(--i) * -0.22s);
}

.hero-grid,
.section-inner,
.footer {
  width: min(1180px, calc(100% - 1rem));
  margin-inline: auto;
}

.topbar {
  z-index: 2;
  width: fit-content;
  max-width: min(1180px, calc(100% - 1rem));
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 4, 14, 0.36);
  backdrop-filter: blur(18px);
  box-shadow: 0 0 34px rgba(55, 232, 255, 0.18);
  margin-inline: max(0.5rem, calc((100% - 1180px) / 2)) auto;
  padding: 0.5rem;
}

.style-tabs {
  z-index: 2;
  width: min(1180px, calc(100% - 1rem));
  display: flex;
  justify-content: flex-end;
  gap: 0.35rem;
  margin: 0.45rem auto 0;
}

.style-tabs button {
  min-width: 3.4rem;
  min-height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 7px;
  color: var(--dim);
  background: rgba(7, 4, 14, 0.34);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 18px rgba(55, 232, 255, 0.08);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.style-tabs button[aria-selected="true"] {
  border-color: color-mix(in srgb, var(--cyan), white 18%);
  color: var(--ink);
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--cyan), transparent 78%), color-mix(in srgb, var(--pink), transparent 84%)),
    rgba(7, 4, 14, 0.52);
  box-shadow:
    0 0 24px color-mix(in srgb, var(--cyan), transparent 52%),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

.style-tabs button:hover,
.style-tabs button:focus-visible {
  color: white;
  outline: none;
  border-color: color-mix(in srgb, var(--pink), white 10%);
}

.brand,
.nav-links,
.hero-actions,
.status-grid {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  font-weight: 950;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(55, 232, 255, 0.64);
  border-radius: 6px;
  color: var(--cyan);
  background: rgba(55, 232, 255, 0.12);
  box-shadow: 0 0 24px rgba(55, 232, 255, 0.42);
  font-size: 0.8rem;
}

.nav-links {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.nav-links a {
  min-height: 2.2rem;
  display: inline-flex;
  align-items: center;
  border-radius: 6px;
  padding-inline: 0.64rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.hero-grid {
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.48fr);
  align-items: center;
  gap: 1.2rem;
  padding-block: 1.3rem 2rem;
}

.hero-copy {
  max-width: 43rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.02;
}

.glitch-title {
  position: relative;
  max-width: 8ch;
  color: var(--ink);
  font-size: 7.6rem;
  font-weight: 950;
  text-wrap: balance;
  text-shadow:
    0 0 18px rgba(55, 232, 255, 0.72),
    0 0 56px rgba(255, 79, 216, 0.48);
  animation: titlePulse 2.6s steps(2) infinite;
}

.glitch-title::before,
.glitch-title::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.glitch-title::before {
  color: var(--cyan);
  transform: translate(0.04em, -0.02em);
  clip-path: polygon(0 0, 100% 0, 100% 34%, 0 42%);
  animation: glitchTop 1.8s steps(2) infinite;
}

.glitch-title::after {
  color: var(--pink);
  transform: translate(-0.04em, 0.03em);
  clip-path: polygon(0 56%, 100% 48%, 100% 100%, 0 100%);
  animation: glitchBottom 2.1s steps(2) infinite;
}

h2 {
  max-width: 5ch;
  font-size: 3.6rem;
}

h3 {
  font-size: 1rem;
}

.hero-lead {
  max-width: 12rem;
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.05rem;
}

.button {
  min-height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 7px;
  padding: 0 0.95rem;
  font-weight: 900;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button.primary {
  border-color: rgba(55, 232, 255, 0.72);
  color: #041015;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 32px rgba(55, 232, 255, 0.44);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.status-grid {
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 1rem;
}

.status-card {
  min-width: 6.4rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  background: rgba(7, 4, 14, 0.48);
  backdrop-filter: blur(14px);
  padding: 0.58rem 0.64rem;
}

.status-card span,
.metric-grid span,
.panel-top span,
.capability-card span {
  display: block;
  color: var(--dim);
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.status-card strong {
  display: block;
  margin-top: 0.12rem;
  color: var(--cyan);
  font-size: 0.94rem;
}

.status-card p {
  margin: 0.12rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
}

.command-panel {
  align-self: center;
  border: 1px solid rgba(55, 232, 255, 0.32);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(7, 4, 14, 0.76), rgba(7, 4, 14, 0.38)),
    linear-gradient(135deg, rgba(55, 232, 255, 0.12), rgba(255, 79, 216, 0.12));
  box-shadow:
    var(--shadow),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
  padding: 0.9rem;
  animation: panelFloat 4s ease-in-out infinite;
}

.panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.panel-top i {
  width: 0.78rem;
  height: 0.78rem;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 20px var(--lime);
  animation: blink 1s steps(2) infinite;
}

.command-panel > strong {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.8rem;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.metric-grid div {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.05);
  padding: 0.6rem;
}

.metric-grid b {
  display: block;
  margin-top: 0.12rem;
  color: var(--pink);
  font-size: 0.96rem;
  white-space: nowrap;
  overflow-wrap: anywhere;
}

#consoleFeed {
  min-height: 5.4rem;
  margin: 0.85rem 0 0;
  overflow: hidden;
  border: 1px solid rgba(125, 255, 134, 0.24);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.34);
  color: var(--lime);
  font: 0.84rem/1.65 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: pre-wrap;
  padding: 0.76rem;
}

.section {
  padding-block: 2.8rem 4rem;
}

.section-inner {
  position: relative;
}

.fx-layout {
  display: grid;
  grid-template-columns: minmax(14rem, 0.55fr) minmax(0, 1fr) minmax(14rem, 0.65fr);
  gap: 0.8rem;
  align-items: stretch;
}

.fx-layout > .eyebrow {
  align-self: start;
  margin-top: 0.8rem;
}

.fx-layout h2 {
  align-self: center;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
}

.capability-card,
.signal-console {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(7, 4, 14, 0.5);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.capability-card {
  min-height: 8.8rem;
  padding: 0.8rem;
  animation: cardFlicker 2.8s steps(2) infinite;
}

.capability-card:nth-child(1) {
  border-color: rgba(55, 232, 255, 0.38);
}

.capability-card:nth-child(2) {
  border-color: rgba(255, 79, 216, 0.36);
  animation-delay: -0.8s;
}

.capability-card:nth-child(3) {
  border-color: rgba(125, 255, 134, 0.36);
  animation-delay: -1.4s;
}

.capability-card h3 {
  margin-top: 1.7rem;
  color: var(--ink);
}

.capability-card p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.signal-console {
  padding: 0.8rem;
}

.signal-console ul {
  display: grid;
  gap: 0.38rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-console li {
  min-height: 2.15rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--lime);
  font: 0.86rem/1.4 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  overflow-wrap: anywhere;
}

.signal-console li:last-child {
  border-bottom: 0;
}

.footer {
  min-height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.86rem;
}

@keyframes lightSweep {
  from {
    background-position: 0 0, 0% 0%, 100% 0%, 50% 0%;
  }

  to {
    background-position: 0 0, 100% 100%, 0% 100%, 100% 40%;
  }
}

@keyframes scanDrop {
  from {
    transform: translateY(-45%);
  }

  to {
    transform: translateY(45%);
  }
}

@keyframes slashRun {
  0% {
    opacity: 0;
    transform: translateX(-12vw) rotate(-18deg);
  }

  20%,
  70% {
    opacity: 0.9;
  }

  100% {
    opacity: 0;
    transform: translateX(34vw) rotate(-18deg);
  }
}

@keyframes ringSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes barPulse {
  50% {
    opacity: 0.42;
    transform: skewX(-18deg) translateY(-0.3rem);
  }
}

@keyframes titlePulse {
  50% {
    filter: brightness(1.2);
  }
}

@keyframes glitchTop {
  0%,
  78% {
    transform: translate(0.04em, -0.02em);
  }

  80% {
    transform: translate(0.16em, -0.05em);
  }

  82% {
    transform: translate(-0.1em, 0.02em);
  }
}

@keyframes glitchBottom {
  0%,
  72% {
    transform: translate(-0.04em, 0.03em);
  }

  74% {
    transform: translate(-0.18em, 0.04em);
  }

  76% {
    transform: translate(0.08em, -0.02em);
  }
}

@keyframes panelFloat {
  50% {
    transform: translateY(-0.35rem);
  }
}

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

@keyframes cardFlicker {
  50% {
    border-color: rgba(255, 255, 255, 0.28);
  }
}

@keyframes sparkFly {
  to {
    opacity: 0;
    transform: translate(calc(-50% + var(--dx)), calc(-50% + var(--dy))) rotate(var(--r));
  }
}

@keyframes waveOut {
  to {
    width: 16rem;
    opacity: 0;
    transform: translate(-50%, -50%);
  }
}

@keyframes crossPulse {
  50% {
    opacity: 0.42;
    transform: scale(1.08);
  }
}

@keyframes rainDrop {
  to {
    transform: translate(24vw, 132vh) rotate(18deg);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .fx-layout {
    grid-template-columns: 1fr;
  }

  .glitch-title {
    font-size: 4.6rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  .command-panel {
    max-width: 35rem;
  }

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

@media (max-width: 640px) {
  .hero {
    min-height: 89svh;
    padding: 0.55rem;
  }

  .hero-grid,
  .section-inner,
  .footer {
    width: min(100%, calc(100% - 0.3rem));
  }

  .topbar {
    align-items: center;
    margin-inline-start: 0.15rem;
    padding: 0.45rem;
  }

  .style-tabs {
    width: min(100%, calc(100% - 0.3rem));
    justify-content: flex-start;
    gap: 0.3rem;
    overflow-x: auto;
    padding-bottom: 0.12rem;
    scrollbar-width: none;
  }

  .style-tabs::-webkit-scrollbar {
    display: none;
  }

  .style-tabs button {
    min-width: 3.25rem;
    min-height: 1.95rem;
    font-size: 0.68rem;
  }

  .brand {
    font-size: 0.9rem;
  }

  .nav-links {
    max-width: 9rem;
    font-size: 0.8rem;
  }

  .nav-links a {
    min-height: 2rem;
    padding-inline: 0.45rem;
  }

  .hero-grid {
    gap: 0.75rem;
    padding-block: 1rem 1.1rem;
  }

  .glitch-title {
    max-width: 8ch;
    font-size: 3rem;
  }

  .hero-lead {
    max-width: 20rem;
    font-size: 1rem;
  }

  .button {
    min-height: 2.55rem;
    padding-inline: 0.78rem;
  }

  .status-grid {
    display: none;
  }

  .command-panel {
    padding: 0.72rem;
  }

  .command-panel > strong {
    font-size: 1rem;
  }

  .metric-grid div {
    padding: 0.45rem;
  }

  .metric-grid b {
    font-size: 0.9rem;
  }

  #consoleFeed {
    min-height: 3.2rem;
    max-height: 3.2rem;
    font-size: 0.72rem;
    padding: 0.58rem;
  }

  .fx-ring {
    width: 11rem;
  }

  .ring-a {
    right: -2rem;
    top: 17rem;
  }

  .ring-b {
    display: none;
  }

  .fx-bars {
    width: 14rem;
    height: 5rem;
    right: -3rem;
    bottom: 20%;
  }

  .section {
    padding-block: 2rem 3rem;
  }

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

  .capability-card {
    min-height: auto;
  }

  .capability-card h3 {
    margin-top: 0.9rem;
  }

  .footer {
    min-height: 3.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
