:root {
  --bg: #061224;
  --bg-soft: #0c1f3c;
  --surface: rgba(10, 26, 49, 0.72);
  --surface-strong: rgba(7, 19, 39, 0.9);
  --surface-solid: #091a33;
  --line: rgba(144, 203, 255, 0.14);
  --line-strong: rgba(144, 203, 255, 0.24);
  --text: #eef7ff;
  --muted: #98b6d8;
  --accent: #94cbff;
  --accent-strong: #68b5ff;
  --accent-bright: #04f2f6;
  --shadow: 0 24px 90px rgba(1, 9, 24, 0.38);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --glow-x: 50%;
  --glow-y: 50%;
  --glow-alpha: 0;
}

* {
  box-sizing: border-box;
}

html {
  width: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(4, 104, 236, 0.14), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(0, 132, 255, 0.12), transparent 22%),
    linear-gradient(180deg, #020914 0%, #061224 42%, #0b1d38 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

body.is-locked {
  overflow: hidden;
}

body,
button,
a,
.prompt,
.eyebrow,
.site-nav a,
.status-chip,
.target-cursor,
.site-footer span {
  cursor: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.28;
  pointer-events: none;
  z-index: -1;
}

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

button {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
}

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

.ambient__liquid,
.ambient__grid,
.ambient__vignette {
  position: absolute;
  inset: 0;
}

.ambient__liquid {
  width: 100%;
  height: 100%;
  opacity: 0.72;
}

.ambient__grid {
  background-image:
    linear-gradient(rgba(148, 203, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 203, 255, 0.06) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black 22%, transparent 84%);
}

.ambient__vignette {
  background:
    radial-gradient(circle at center, transparent 40%, rgba(2, 8, 18, 0.38) 72%, rgba(2, 8, 18, 0.84) 100%),
    linear-gradient(180deg, rgba(2, 8, 18, 0.1), rgba(2, 8, 18, 0.65));
}

.site-shell {
  position: relative;
  z-index: 1;
  overflow-x: visible;
}

.entry-screen,
.preloader {
  position: fixed;
  inset: 0;
}

.entry-screen {
  z-index: 120;
  display: grid;
  place-items: center;
  background: rgba(2, 9, 20, 0.94);
  backdrop-filter: blur(12px);
  transition: opacity 700ms ease, visibility 700ms ease, transform 700ms ease;
}

.entry-screen.is-hidden,
.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.entry-screen__grid,
.preloader__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 203, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 203, 255, 0.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 82%);
}

.entry-screen__frame {
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(148, 203, 255, 0.12);
  border-radius: 28px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.entry-screen__content {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 680px);
  padding: 40px;
  border: 1px solid rgba(148, 203, 255, 0.14);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(5, 16, 34, 0.88);
  box-shadow: 0 28px 90px rgba(2, 10, 24, 0.5);
  text-align: center;
}

.entry-screen__eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.entry-screen__content h1 {
  margin: 0;
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.entry-screen__content p:last-of-type {
  max-width: 46ch;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.8;
}

.entry-screen__button {
  min-height: 54px;
  margin-top: 28px;
  padding: 0 22px;
  border: 1px solid rgba(148, 203, 255, 0.22);
  border-radius: 999px;
  background: rgba(148, 203, 255, 0.08);
  color: var(--text);
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.entry-screen__button:hover,
.entry-screen__button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(148, 203, 255, 0.42);
  background: rgba(148, 203, 255, 0.14);
}

.preloader {
  z-index: 115;
  display: grid;
  place-items: center;
  background: rgba(3, 12, 24, 0.96);
  transition: opacity 700ms ease, visibility 700ms ease;
}

.preloader__terminal {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 720px);
  overflow: hidden;
  border: 1px solid rgba(148, 203, 255, 0.16);
  border-radius: 28px;
  background: rgba(5, 16, 34, 0.95);
  box-shadow: 0 28px 90px rgba(2, 10, 24, 0.56);
}

.preloader__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(148, 203, 255, 0.08);
}

.preloader__bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(148, 203, 255, 0.45);
}

.preloader__body {
  padding: 24px 22px 26px;
  color: #d9f6ff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.98rem;
}

.preloader__body p {
  margin: 0 0 12px;
  opacity: 0;
  transform: translateY(8px);
  animation: terminal-line 0.45s ease forwards;
}

.preloader__body p:nth-child(1) { animation-delay: 0.12s; }
.preloader__body p:nth-child(2) { animation-delay: 0.36s; }
.preloader__body p:nth-child(3) { animation-delay: 0.6s; }
.preloader__body p:nth-child(4) { animation-delay: 0.84s; }
.preloader__body p:nth-child(5) { animation-delay: 1.08s; }

.preloader__body span {
  color: var(--accent);
}

.preloader__cursor {
  animation: cursor-blink 0.9s steps(1) infinite;
}

.site-header,
.section,
.site-footer {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 18px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 20px;
  margin-top: 18px;
  border: 1px solid rgba(200, 231, 255, 0.12);
  border-radius: 999px;
  background: rgba(4, 14, 30, 0.62);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 44px rgba(2, 10, 24, 0.22);
}

.site-header::before {
  content: "session://degenstudios";
  position: absolute;
  left: 22px;
  top: -11px;
  padding: 0 8px;
  background: #061224;
  color: rgba(148, 203, 255, 0.72);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand__mark {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0468ec, #0084ff 68%, #04f2f6);
  box-shadow: 0 0 28px rgba(104, 181, 255, 0.65);
}

.site-nav {
  position: relative;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

.gooey-nav-container {
  position: relative;
  --color-1: #c8e7ff;
  --color-2: #94cbff;
  --color-3: #68b5ff;
  --color-4: #04f2f6;
  isolation: isolate;
}

.gooey-nav-container {
  display: flex;
  position: relative;
  transform: translate3d(0, 0, 0.01px);
}

.gooey-nav-list {
  display: flex;
  gap: 0.45rem;
  list-style: none;
  padding: 0 0.35rem;
  margin: 0;
  position: relative;
  z-index: 3;
  color: white;
  text-shadow: 0 1px 1px hsl(205deg 30% 10% / 0.2);
}

.gooey-nav-list li {
  border-radius: 100vw;
  position: relative;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
  box-shadow: 0 0 0.5px 1.5px transparent;
  color: rgba(238, 247, 255, 0.82);
}

.gooey-nav-list li a {
  display: inline-block;
  padding: 0.72rem 1.1rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
}

.gooey-nav-list li:focus-within:has(:focus-visible) {
  box-shadow: 0 0 0.5px 1.5px rgba(200, 231, 255, 0.9);
}

.gooey-nav-list li::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 100vw;
  background: linear-gradient(135deg, #c8e7ff, #7bbcff);
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
  z-index: -1;
}

.gooey-nav-list li.active {
  color: #041227;
  text-shadow: none;
}

.gooey-nav-list li.active::after {
  opacity: 1;
  transform: scale(1);
}

.gooey-nav-container .effect {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 1;
  pointer-events: none;
  display: grid;
  place-items: center;
  z-index: 1;
}

.gooey-nav-container .effect.text {
  z-index: 4;
  color: white;
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  transition: color 0.3s ease, opacity 0.18s ease;
  white-space: nowrap;
  opacity: 0;
}

.gooey-nav-container .effect.text.active {
  color: #041227;
  opacity: 1;
}

.gooey-nav-container .effect.filter {
  filter: blur(7px) contrast(100) blur(0);
  mix-blend-mode: screen;
}

.gooey-nav-container .effect.filter::before {
  content: "";
  position: absolute;
  inset: -75px;
  z-index: -2;
  background: transparent;
}

.gooey-nav-container .effect.filter::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #c8e7ff, #7bbcff);
  transform: scale(0);
  opacity: 0;
  z-index: -1;
  border-radius: 100vw;
  box-shadow: 0 10px 28px rgba(104, 181, 255, 0.2);
}

.gooey-nav-container .effect.active::after {
  animation: pill 0.3s ease both;
}

@keyframes pill {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.particle,
.point {
  display: block;
  opacity: 0;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  transform-origin: center;
}

.particle {
  --time: 5s;
  position: absolute;
  top: calc(50% - 8px);
  left: calc(50% - 8px);
  animation: particle calc(var(--time)) ease 1 -350ms;
}

.point {
  background: var(--color);
  opacity: 1;
  animation: point calc(var(--time)) ease 1 -350ms;
}

@keyframes particle {
  0% {
    transform: rotate(0deg) translate(calc(var(--start-x)), calc(var(--start-y)));
    opacity: 1;
    animation-timing-function: cubic-bezier(0.55, 0, 1, 0.45);
  }

  70% {
    transform: rotate(calc(var(--rotate) * 0.5)) translate(calc(var(--end-x) * 1.2), calc(var(--end-y) * 1.2));
    opacity: 1;
    animation-timing-function: ease;
  }

  85% {
    transform: rotate(calc(var(--rotate) * 0.66)) translate(calc(var(--end-x)), calc(var(--end-y)));
    opacity: 1;
  }

  100% {
    transform: rotate(calc(var(--rotate) * 1.2)) translate(calc(var(--end-x) * 0.5), calc(var(--end-y) * 0.5));
    opacity: 1;
  }
}

@keyframes point {
  0% {
    transform: scale(0);
    opacity: 0;
    animation-timing-function: cubic-bezier(0.55, 0, 1, 0.45);
  }

  25% {
    transform: scale(calc(var(--scale) * 0.25));
  }

  38% {
    opacity: 1;
  }

  65% {
    transform: scale(var(--scale));
    opacity: 1;
    animation-timing-function: ease;
  }

  85% {
    transform: scale(var(--scale));
    opacity: 1;
  }

  100% {
    transform: scale(0);
    opacity: 0;
  }
}

.menu-toggle {
  position: relative;
  width: 50px;
  height: 50px;
  padding: 0;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(200, 231, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transform: translateX(-50%);
  transition: transform 220ms ease, opacity 220ms ease, top 220ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 17px;
}

.menu-toggle span:nth-child(2) {
  top: 24px;
}

.menu-toggle span:nth-child(3) {
  top: 31px;
}

.menu-toggle.is-active span:nth-child(1) {
  top: 24px;
  transform: translateX(-50%) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  top: 24px;
  transform: translateX(-50%) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  padding: 14px;
  background: rgba(2, 9, 20, 0.6);
  backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 260ms ease, visibility 260ms ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu__panel {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: max(20px, env(safe-area-inset-top)) 20px max(20px, env(safe-area-inset-bottom)) 20px;
  border: 1px solid rgba(148, 203, 255, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at top, rgba(4, 104, 236, 0.16), transparent 30%),
    linear-gradient(180deg, rgba(7, 19, 39, 0.96), rgba(4, 12, 26, 0.98));
  box-shadow: 0 28px 90px rgba(2, 10, 24, 0.5);
  transform: translateY(18px) scale(0.98);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateY(0) scale(1);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.mobile-menu__eyebrow {
  margin: 0;
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-menu__close {
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(200, 231, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.mobile-menu__close span {
  position: absolute;
  top: 23px;
  left: 14px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.mobile-menu__close span:first-child {
  transform: rotate(45deg);
}

.mobile-menu__close span:last-child {
  transform: rotate(-45deg);
}

.mobile-menu__body {
  display: grid;
  gap: 14px;
  margin-top: 38px;
}

.mobile-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(200, 231, 255, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  transform: translateY(18px);
  opacity: 0;
  transition:
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.mobile-menu.is-open .mobile-menu__link {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 70ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 110ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 150ms; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 190ms; }

.mobile-menu__link:hover,
.mobile-menu__link:focus-visible {
  border-color: rgba(148, 203, 255, 0.24);
  background: rgba(148, 203, 255, 0.08);
}

.mobile-menu__link span {
  color: rgba(148, 203, 255, 0.7);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.8rem;
}

.mobile-menu__link strong {
  font-size: 1.1rem;
  font-weight: 600;
}

.mobile-menu__footer {
  margin-top: auto;
  padding-top: 28px;
}

.mobile-menu__footer .button {
  width: 100%;
}

.mobile-menu__footer p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

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

.button--primary {
  color: #041227;
  background: linear-gradient(135deg, #7bbcff, #c8e7ff);
  box-shadow: 0 10px 30px rgba(104, 181, 255, 0.24);
}

.button--ghost,
.button--secondary {
  border-color: rgba(200, 231, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.button--secondary {
  width: fit-content;
  margin-top: auto;
}

.section {
  padding: 96px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 46px;
  min-height: calc(100vh - 96px);
  display: flex;
  align-items: center;
}

.hero + .scroll-float-section {
  margin-top: 0;
}

.hero__grid,
.hero__scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  background-image:
    linear-gradient(rgba(4, 242, 246, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(4, 242, 246, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black 52%, transparent 100%);
  opacity: 0.5;
}

.hero__scanlines {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03) 0,
    rgba(255, 255, 255, 0.03) 1px,
    transparent 1px,
    transparent 4px
  );
  background-size: 100% 4px;
  opacity: 0.08;
}

.hero__layout,
.section-shell,
.site-footer,
.scroll-top {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero__layout {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 44px 32px 28px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 18%, rgba(0, 132, 255, 0.14), transparent 26%),
    radial-gradient(circle at 50% 52%, rgba(4, 242, 246, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(5, 18, 36, 0.92), rgba(3, 10, 22, 0.96));
}

.eyebrow,
.prompt,
.status-chip,
.summary-card__eyebrow,
.site-footer span {
  font-family: "IBM Plex Mono", monospace;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.command-panel__screen h2,
.section-shell--contact h2 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.hero__lead,
.metric-card p,
.summary-card p,
.product-card p,
.service-card p,
.process-card p,
.contact-copy,
.security-console__stream p,
.command-panel__screen p {
  color: var(--muted);
  line-height: 1.75;
}

.hero__center,
.hero__bottom,
.security-console > *,
.command-panel > *,
.card-grid > *,
.service-grid > *,
.process-grid > *,
.summary__grid > * {
  min-width: 0;
}

.hero__center {
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero__live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(4, 242, 246, 0.22);
  background: rgba(4, 242, 246, 0.04);
  color: var(--accent-bright);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 16px rgba(4, 242, 246, 0.8);
}

.hero__headline {
  display: grid;
  gap: 6px;
  margin-top: 26px;
  position: relative;
  z-index: 2;
}

.hero__headline span {
  display: block;
  font-family: "Space Grotesk", "Manrope", sans-serif;
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.08em;
  text-transform: uppercase;
}

.hero__headline-top,
.hero__headline-bottom {
  color: transparent;
  -webkit-text-stroke: 2.4px rgba(4, 242, 246, 0.98);
  text-shadow:
    0 0 28px rgba(4, 242, 246, 0.24),
    0 0 50px rgba(0, 132, 255, 0.12);
  font-size: clamp(4.4rem, 12vw, 8.5rem);
}

.hero__headline-mid {
  color: #eef7ff;
  text-shadow:
    0 12px 34px rgba(0, 0, 0, 0.34),
    0 0 28px rgba(5, 16, 34, 0.5);
  font-size: clamp(4.8rem, 13vw, 9.6rem);
}

.hero__cli-scene {
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 860px);
  min-height: 520px;
  margin-top: 10px;
  overflow: hidden;
}

.hero__cli-scene::before {
  content: "";
  position: absolute;
  inset: 18% 16% 15%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(7, 22, 42, 0.92) 0, rgba(7, 22, 42, 0.72) 42%, rgba(7, 22, 42, 0.18) 72%, transparent 100%);
  filter: blur(10px);
  pointer-events: none;
}

.hero__cli-panel,
.hero__cli-reticle,
.hero__cli-wave,
.hero__cli-stream {
  position: absolute;
  pointer-events: none;
}

.hero__cli-panel {
  display: grid;
  gap: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(4, 242, 246, 0.16);
  border-radius: 18px;
  background: rgba(8, 22, 46, 0.3);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.hero__cli-panel--left {
  top: 70px;
  left: 24px;
  width: 170px;
}

.hero__cli-panel--right {
  top: 118px;
  right: 40px;
  width: 150px;
}

.hero__cli-label {
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__cli-bar {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(4, 242, 246, 0.18), rgba(104, 181, 255, 0.82), rgba(4, 242, 246, 0.18));
  background-size: 180% 100%;
  animation: cli-bar-shift 3.2s linear infinite;
}

.hero__cli-bar:nth-child(3) {
  width: 86%;
  animation-duration: 2.6s;
}

.hero__cli-bar:nth-child(4) {
  width: 64%;
  animation-duration: 4.2s;
}

.hero__cli-dotgrid {
  width: 52px;
  height: 52px;
  background-image: radial-gradient(circle, rgba(4, 242, 246, 0.7) 1px, transparent 1.5px);
  background-size: 10px 10px;
  opacity: 0.7;
}

.hero__cli-reticle {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 244, 220, 0.85);
  border-radius: 2px;
  animation: cli-reticle-drift 5.2s ease-in-out infinite;
}

.hero__cli-reticle::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 244, 220, 0.55);
}

.hero__cli-reticle--one {
  top: 124px;
  left: 96px;
}

.hero__cli-reticle--two {
  right: 120px;
  bottom: 126px;
  animation-duration: 6.4s;
  animation-direction: reverse;
}

.hero__cli-wave {
  inset: 50% auto auto 50%;
  border-radius: 50%;
  border: 1px solid rgba(148, 203, 255, 0.12);
  transform: translate(-50%, -50%);
}

.hero__cli-wave--one {
  width: min(68vw, 620px);
  height: min(68vw, 620px);
  animation: cli-pulse 7.4s ease-in-out infinite;
}

.hero__cli-wave--two {
  width: min(52vw, 470px);
  height: min(52vw, 470px);
  border-color: rgba(4, 242, 246, 0.1);
  animation: cli-pulse 5.6s ease-in-out infinite reverse;
}

.hero__cli-stream {
  left: 50%;
  bottom: 106px;
  display: grid;
  gap: 8px;
  transform: translateX(-50%);
  width: min(100%, 460px);
  color: rgba(148, 203, 255, 0.72);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__cli-stream span {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0.72;
  border-right: 1px solid rgba(4, 242, 246, 0.42);
  animation: cli-type 4.6s steps(30, end) infinite;
}

.hero__cli-stream span:nth-child(2) {
  animation-delay: 0.5s;
}

.hero__cli-stream span:nth-child(3) {
  animation-delay: 1s;
}

@keyframes cli-bar-shift {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 180% 50%;
  }
}

@keyframes cli-reticle-drift {
  0%, 100% {
    transform: translate(0, 0);
    opacity: 0.78;
  }
  50% {
    transform: translate(10px, -8px);
    opacity: 1;
  }
}

@keyframes cli-pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.45;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.04);
    opacity: 0.78;
  }
}

@keyframes cli-type {
  0%,
  100% {
    width: 0;
    opacity: 0.32;
  }
  18%,
  72% {
    width: 100%;
    opacity: 0.82;
  }
}

.hero__lead {
  max-width: 54ch;
  margin: 28px auto 0;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  text-align: center;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  justify-content: center;
}

.hero__signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  justify-content: center;
}

.hero__signals span,
.pill,
.status-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(200, 231, 255, 0.14);
  background: rgba(200, 231, 255, 0.05);
  color: var(--text);
  font-size: 0.82rem;
}

.prompt,
.command-tab,
.scroll-top,
.product-card__index,
.process-card__index {
  font-family: "IBM Plex Mono", monospace;
}

.prompt {
  margin: 0;
  color: rgba(148, 203, 255, 0.9);
  font-size: 0.82rem;
}

.status-chip {
  color: #d9f6ff;
}

.status-chip--muted {
  color: var(--muted);
}

.hero-stat strong,
.metric-card strong,
.summary-card strong,
.product-card h3,
.service-card h3,
.process-card h3,
.check-card strong {
  display: block;
  margin: 0 0 10px;
  font-size: 1.12rem;
  line-height: 1.3;
}

.hero__bottom,
.summary__grid,
.card-grid,
.service-grid,
.process-grid {
  display: grid;
  gap: 18px;
}

.hero__bottom,
.summary__grid,
.card-grid,
.service-grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero__bottom {
  margin-top: 34px;
}

.hero-stat {
  padding: 20px 20px 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(8, 22, 46, 0.92), rgba(7, 18, 36, 0.96));
}

.hero-stat__label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-card,
.summary-card,
.product-card,
.service-card,
.process-card,
.security-console__log,
.check-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(8, 22, 46, 0.9), rgba(7, 18, 36, 0.94));
}

.electric-border-card {
  --electric-border-color: #7df9ff;
  --electric-light-color: rgba(125, 249, 255, 0.92);
  position: relative;
  overflow: visible;
  isolation: isolate;
}

.electric-border-card .eb-canvas-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 3;
}

.electric-border-card .eb-canvas {
  display: block;
}

.electric-border-card .eb-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: inherit;
}

.electric-border-card .eb-layers {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}

.electric-border-card .eb-glow-1,
.electric-border-card .eb-glow-2,
.electric-border-card .eb-background-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-sizing: border-box;
  pointer-events: none;
}

.electric-border-card .eb-glow-1 {
  border: 1px solid rgba(125, 249, 255, 0.55);
  filter: blur(1px);
  opacity: 0.8;
}

.electric-border-card .eb-glow-2 {
  border: 2px solid rgba(125, 249, 255, 0.28);
  filter: blur(5px);
}

.electric-border-card .eb-background-glow {
  z-index: -1;
  inset: 8px;
  transform: scale(1.08);
  filter: blur(30px);
  opacity: 0.22;
  background: linear-gradient(-30deg, rgba(125, 249, 255, 0.34), transparent 45%, rgba(104, 181, 255, 0.28));
}

.metric-card {
  min-height: 176px;
}

.metric-card__label,
.summary-card__eyebrow,
.check-card span {
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.command-panel {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  margin-top: 18px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(148, 203, 255, 0.08);
  background: rgba(4, 16, 32, 0.5);
}

.command-panel__sidebar {
  display: grid;
  gap: 10px;
}

.command-tab {
  min-height: 46px;
  padding: 0 14px;
  text-align: left;
  border: 1px solid rgba(200, 231, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.command-tab:hover,
.command-tab:focus-visible,
.command-tab.is-active {
  color: var(--text);
  background: rgba(148, 203, 255, 0.09);
  border-color: rgba(148, 203, 255, 0.24);
  transform: translateX(4px);
}

.command-panel__screen {
  padding: 6px 6px 6px 2px;
}

.command-panel__screen h2 {
  margin-top: 16px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.02;
}

.command-panel__screen p {
  margin-top: 14px;
}

.command-panel__list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--text);
  line-height: 1.7;
}

.section-shell {
  padding: 28px;
  border-radius: 30px;
}

.section-shell::before,
.section-shell::after {
  position: absolute;
  top: 14px;
  color: rgba(148, 203, 255, 0.66);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.section-shell {
  position: relative;
}

.section-shell::before {
  left: 18px;
  content: "ops://active";
}

.section-shell::after {
  right: 18px;
  content: "clean-mode";
}

.section-shell--compact::before {
  content: "summary://studio";
}

.section-shell--contact::before {
  content: "connect://discord";
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading h2,
.section-shell--contact h2 {
  font-size: clamp(2rem, 4.6vw, 4rem);
}

.summary-card p,
.product-card p,
.service-card p,
.process-card p,
.security-console__stream p,
.check-card p {
  margin: 0;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.pill {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.product-card__index,
.process-card__index {
  color: rgba(255, 255, 255, 0.34);
  font-size: 1rem;
}

.product-card h3,
.service-card h3,
.process-card h3 {
  margin-top: 12px;
  font-size: 1.42rem;
}

.product-card ul {
  margin: 18px 0 26px;
  padding-left: 18px;
  color: var(--text);
  line-height: 1.7;
}

.security-console {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 18px;
}

.security-console__log {
  min-height: 320px;
}

.security-console__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.security-console__stream {
  display: grid;
  gap: 14px;
}

.security-console__stream span {
  color: var(--accent);
  margin-right: 8px;
  font-family: "IBM Plex Mono", monospace;
}

.security-console__checks {
  display: grid;
  gap: 14px;
}

.check-card {
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease;
}

.check-card.is-selected,
.check-card:hover,
.check-card:focus-visible,
.product-card:hover,
.service-card:hover,
.process-card:hover,
.summary-card:hover,
.metric-card:hover {
  transform: translateY(-4px);
}

.check-card strong {
  margin-top: 12px;
}

.process-card__index {
  display: inline-block;
  margin-bottom: 18px;
}

.section-shell--contact {
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(4, 104, 236, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015));
}

.contact-copy {
  max-width: 62ch;
  margin: 18px auto 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  margin-bottom: 32px;
  border-radius: 24px;
}

.site-footer p {
  margin: 0;
  font-weight: 700;
}

.site-footer span {
  color: var(--muted);
  font-size: 0.84rem;
}

.site-footer span::before {
  content: "$ ";
  color: rgba(148, 203, 255, 0.74);
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 40;
  min-width: 64px;
  min-height: 64px;
  border-radius: 999px;
  color: var(--text);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover,
.scroll-top:focus-visible {
  border-color: var(--line-strong);
}

.target-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  pointer-events: none;
  z-index: 130;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.target-cursor__dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
}

.target-cursor__corner {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
}

.target-cursor__corner--tl {
  transform: translate(-150%, -150%);
  border-right: 0;
  border-bottom: 0;
}

.target-cursor__corner--tr {
  transform: translate(50%, -150%);
  border-left: 0;
  border-bottom: 0;
}

.target-cursor__corner--br {
  transform: translate(50%, 50%);
  border-left: 0;
  border-top: 0;
}

.target-cursor__corner--bl {
  transform: translate(-150%, 50%);
  border-right: 0;
  border-top: 0;
}

.border-glow-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  isolation: isolate;
}

.border-glow-card::before,
.border-glow-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.border-glow-card::before {
  border-radius: inherit;
  padding: 1px;
  background:
    radial-gradient(circle 180px at var(--glow-x) var(--glow-y), rgba(4, 242, 246, calc(var(--glow-alpha) * 0.55)), transparent 60%),
    radial-gradient(circle 200px at var(--glow-x) var(--glow-y), rgba(0, 132, 255, calc(var(--glow-alpha) * 0.55)), transparent 62%),
    linear-gradient(135deg, rgba(4, 104, 236, 0.78), rgba(0, 132, 255, 0.28), rgba(4, 242, 246, 0.62));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: calc(0.4 + (var(--glow-alpha) * 0.85));
}

.border-glow-card::after {
  border-radius: inherit;
  background:
    radial-gradient(circle 280px at var(--glow-x) var(--glow-y), rgba(4, 104, 236, calc(var(--glow-alpha) * 0.16)), transparent 58%),
    radial-gradient(circle 160px at var(--glow-x) var(--glow-y), rgba(4, 242, 246, calc(var(--glow-alpha) * 0.14)), transparent 54%);
  opacity: calc(var(--glow-alpha) * 1.05);
}

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

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

.reveal--delay {
  transition-delay: 120ms;
}

.reveal--long {
  transition-delay: 220ms;
}

.scroll-float-section {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  padding: 20px 0 34px;
}

.scroll-float-section__inner {
  padding: 18px 0 26px;
  text-align: center;
}

.scroll-float {
  overflow: hidden;
  margin: 0;
}

.scroll-float-text {
  display: inline-block;
  font-size: clamp(2rem, 8vw, 7rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.05em;
}

.scroll-float .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(120%) scaleY(2.3) scaleX(0.7);
  transform-origin: 50% 0%;
  transition:
    opacity 520ms ease,
    transform 700ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.scroll-float.is-visible .char {
  opacity: 1;
  transform: translateY(0) scaleY(1) scaleX(1);
}

.scroll-float-section__copy {
  max-width: 52ch;
  margin: 18px auto 0;
  color: var(--muted);
  line-height: 1.8;
}

@keyframes terminal-line {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@media (max-width: 1080px) {
  .hero__bottom,
  .security-console {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .summary__grid,
  .card-grid,
  .service-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body,
  button,
  a,
  .prompt,
  .eyebrow,
  .site-nav a,
  .status-chip,
  .site-footer span {
    cursor: auto;
  }

  .target-cursor {
    display: none;
  }

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    border-radius: 24px;
    padding: 16px;
    width: min(calc(100% - 20px), var(--container));
    top: 10px;
    margin-top: 10px;
  }

  .entry-screen__content {
    padding: 28px 22px;
  }

  .entry-screen__content,
  .preloader__terminal {
    max-width: calc(100vw - 20px);
  }

  .site-header::before {
    left: 14px;
    top: -10px;
    font-size: 0.64rem;
    letter-spacing: 0.08em;
  }

  .brand {
    min-width: 0;
  }

  .brand__text {
    font-size: 1.02rem;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .mobile-menu {
    display: block;
  }

  .site-nav,
  .site-header > .button {
    display: none;
  }

  .button--primary {
    min-height: 46px;
  }

  .section {
    padding: 64px 0;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero__layout {
    padding: 28px 18px 20px;
  }

  .hero__cli-scene {
    min-height: 460px;
  }

  .hero__cli-panel--left {
    left: 8px;
    width: 150px;
  }

  .hero__cli-panel--right {
    right: 12px;
    width: 130px;
  }

  .hero__cli-wave--one {
    width: min(86vw, 560px);
    height: min(86vw, 560px);
  }

  .hero__cli-wave--two {
    width: min(62vw, 380px);
    height: min(62vw, 380px);
  }

  .hero__cli-stream {
    bottom: 88px;
    width: min(100%, 380px);
  }

  .scroll-float-section {
    padding-top: 0;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .section-heading h2,
  .section-shell--contact h2,
  .command-panel__screen h2 {
    font-size: clamp(1.9rem, 9vw, 3rem);
    line-height: 0.98;
  }

  .hero__content,
  .section-shell,
  .metric-card,
  .summary-card,
  .product-card,
  .service-card,
  .process-card,
  .security-console__log,
  .check-card {
    padding: 20px;
  }

  .section-shell {
    padding: 50px 18px 18px;
    border-radius: 24px;
  }

  .section-shell::before,
  .section-shell::after {
    top: 12px;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
  }

  .section-shell::before {
    left: 14px;
  }

  .section-shell::after {
    right: 14px;
  }

  .command-panel {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .command-panel__sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .command-tab {
    min-height: 42px;
    padding: 0 10px;
    text-align: center;
    font-size: 0.76rem;
  }

  .command-tab:hover,
  .command-tab:focus-visible,
  .command-tab.is-active {
    transform: none;
  }

  .security-console__top {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .scroll-top {
    right: 12px;
    bottom: 12px;
    min-width: 54px;
    min-height: 54px;
    font-size: 0.82rem;
  }

  .electric-border-card {
    overflow: hidden;
  }
}

@media (max-width: 560px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header .menu-toggle {
    position: relative;
    justify-self: end;
    align-self: center;
  }

  .mobile-menu {
    padding: 10px;
  }

  .mobile-menu__panel {
    padding-inline: 16px;
    border-radius: 24px;
  }

  .mobile-menu__body {
    gap: 12px;
    margin-top: 28px;
  }

  .mobile-menu__link {
    padding: 16px;
  }

  .mobile-menu__link strong {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__signals {
    gap: 8px;
  }

  .hero__signals span,
  .pill,
  .status-chip {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .entry-screen__frame {
    inset: 14px;
    border-radius: 22px;
  }

  .entry-screen__content,
  .preloader__terminal {
    width: min(100% - 20px, 680px);
    max-width: calc(100vw - 20px);
  }

  .entry-screen__content h1 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .preloader__body {
    font-size: 0.88rem;
    padding: 20px 16px 22px;
  }

  .scroll-float-text {
    font-size: clamp(1.7rem, 11vw, 3rem);
  }

  .hero__cli-scene {
    min-height: 360px;
  }

  .hero__cli-scene::before {
    inset: 22% 9% 18%;
    filter: blur(8px);
  }

  .hero__cli-panel {
    padding: 12px;
    border-radius: 14px;
  }

  .hero__cli-panel--left,
  .hero__cli-panel--right {
    width: 120px;
  }

  .hero__cli-panel--left {
    top: 88px;
    left: 0;
  }

  .hero__cli-panel--right {
    top: 136px;
    right: 0;
  }

  .hero__cli-reticle--one {
    top: 134px;
    left: 70px;
  }

  .hero__cli-reticle--two {
    right: 60px;
    bottom: 138px;
  }

  .hero__cli-wave--one {
    width: min(100vw, 420px);
    height: min(100vw, 420px);
  }

  .hero__cli-wave--two {
    width: min(78vw, 280px);
    height: min(78vw, 280px);
  }

  .hero__cli-stream {
    bottom: 84px;
    width: min(100%, 280px);
    font-size: 0.62rem;
  }

  .hero__live {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.66rem;
    letter-spacing: 0.08em;
  }

  .hero__headline {
    gap: 2px;
    margin-top: 20px;
  }

  .hero__headline-top,
  .hero__headline-bottom {
    -webkit-text-stroke-width: 1.2px;
    font-size: clamp(3.2rem, 15vw, 4.8rem);
  }

  .hero__headline-mid {
    font-size: clamp(3.5rem, 16vw, 5.2rem);
  }

  .hero__lead {
    margin-top: 22px;
    font-size: 0.96rem;
  }

  .product-card__meta,
  .hero-stack__row {
    align-items: flex-start;
    flex-direction: column;
  }

  .security-console__stream p {
    font-size: 0.95rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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

  .target-cursor {
    display: none;
  }

  .entry-screen,
  .preloader {
    display: none;
  }

  .hero__cli-bar,
  .hero__cli-reticle,
  .hero__cli-wave,
  .hero__cli-stream span {
    animation: none !important;
  }
}
