:root {
  color-scheme: dark;
  --bg: #050505;
  --panel: rgba(8, 8, 8, 0.84);
  --panel-soft: rgba(255, 255, 255, 0.045);
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.32);
  --text: #f7f7f7;
  --muted: #a6a6a6;
  --soft: #d8d8d8;
  --button: #d9d9d9;
  --button-dark: #9d9d9d;
  --shadow: 0 34px 120px rgba(0, 0, 0, 0.66);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Rajdhani", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(760px circle at 48% 20%, rgba(255, 255, 255, 0.12), transparent 62%),
    radial-gradient(680px circle at 10% 54%, rgba(255, 255, 255, 0.055), transparent 68%),
    linear-gradient(180deg, #151515 0%, #070707 45%, #000 100%);
  color: var(--text);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.046) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.046) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.42));
  background-size: 88px 88px, 88px 88px, auto;
  opacity: 0.72;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(430px circle at var(--cursor-x, 50%) var(--cursor-y, 50%), rgba(255, 255, 255, 0.08), transparent 62%),
    linear-gradient(180deg, transparent 0, rgba(0, 0, 0, 0.24) 100%);
  opacity: 0;
  transition: opacity 220ms ease;
}

body.mouse-active::after {
  opacity: 1;
}

#warp-field {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 0.12;
  mix-blend-mode: screen;
}

.cursor-halo,
.cursor-dot {
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
}

.cursor-halo {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.026);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.08);
  transform: translate3d(-80px, -80px, 0);
  transition: opacity 180ms ease, width 160ms ease, height 160ms ease, border-color 160ms ease;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f8f8f8;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.5);
  transform: translate3d(-80px, -80px, 0);
}

body.mouse-active .cursor-halo,
body.mouse-active .cursor-dot {
  opacity: 1;
}

body.cursor-hover .cursor-halo {
  width: 64px;
  height: 64px;
  border-color: rgba(255, 255, 255, 0.44);
}

body.cursor-press .cursor-halo {
  width: 38px;
  height: 38px;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.72);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-family: "Orbitron", "Rajdhani", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-brand img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 0 22px rgba(255, 255, 255, 0.18);
}

.site-brand em {
  color: #d9d9d9;
  font-style: normal;
  text-shadow: 0 0 16px rgba(255, 255, 255, 0.42);
}

.site-nav {
  justify-self: center;
  display: flex;
  gap: 8px;
  align-items: center;
}

.site-nav a,
.secondary-action,
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 14px;
  color: var(--muted);
  text-decoration: none;
  font-family: "Orbitron", "Rajdhani", ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.site-nav a:hover,
.secondary-action:hover,
.nav-cta:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.055);
  transform: translateY(-1px);
}

.nav-cta {
  color: #111;
  border-color: rgba(255, 255, 255, 0.28);
  background: linear-gradient(180deg, var(--button), var(--button-dark));
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(580px, 840px);
  gap: clamp(28px, 3.6vw, 58px);
  align-items: center;
  width: min(1680px, calc(100% - 44px));
  min-height: min(980px, calc(100vh - 76px));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 92px) 0;
}

.hero-copy {
  min-width: 0;
  max-width: 880px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0 13px;
  background: rgba(255, 255, 255, 0.062);
  color: #f6f6f6;
  font-family: "Orbitron", "Rajdhani", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.8), 0 0 34px rgba(255, 255, 255, 0.3);
}

.hero-copy h1 {
  margin: 22px 0 16px;
  font-family: "Orbitron", "Rajdhani", ui-sans-serif, system-ui, sans-serif;
  max-width: 100%;
  font-size: clamp(56px, 5.8vw, 96px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fafafa;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.26), 0 18px 52px rgba(0, 0, 0, 0.54);
  overflow-wrap: normal;
  word-break: keep-all;
}

.hero-lead {
  max-width: 640px;
  margin: 0;
  color: #c9c9c9;
  font-size: clamp(19px, 2.2vw, 25px);
  font-weight: 600;
  line-height: 1.42;
}

.hero-actions,
.access-section {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

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

.primary-action,
.secondary-action {
  min-height: 54px;
  border-radius: 8px;
  padding: 0 24px;
  text-decoration: none;
  font-family: "Orbitron", "Rajdhani", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 900;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #111;
  background: linear-gradient(180deg, #ededed, #9f9f9f);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.46), 0 0 32px rgba(255, 255, 255, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.38);
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.primary-action:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.54), 0 0 42px rgba(255, 255, 255, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.secondary-action {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.045);
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.signal-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 0 11px;
  background: rgba(255, 255, 255, 0.035);
  color: #cfcfcf;
  font-size: 14px;
  font-weight: 800;
}

.panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.012) 46%),
    rgba(6, 6, 6, 0.86);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(255, 255, 255, 0.025);
  transform: perspective(1000px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transform-style: preserve-3d;
  transition: border-color 200ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.panel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(300px circle at var(--panel-glow-x, 50%) var(--panel-glow-y, 50%), rgba(255, 255, 255, 0.14), transparent 58%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), transparent 52%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  padding: 1px;
  transition: opacity 220ms ease;
}

.panel:hover {
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 40px 128px rgba(0, 0, 0, 0.72), 0 0 44px rgba(255, 255, 255, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.panel:hover::after {
  opacity: 1;
}

.hero-stage {
  justify-self: end;
  width: min(100%, 840px);
  min-height: 600px;
  display: grid;
  place-items: center;
  padding: clamp(34px, 4vw, 56px);
}

.product-card {
  width: min(720px, 92%);
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  padding: 0;
  background: transparent;
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.66), 0 0 80px rgba(255, 255, 255, 0.28), 0 0 132px rgba(255, 255, 255, 0.12);
}

.product-card img,
.product-card video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
  filter: contrast(1.08) saturate(1.05);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 34px rgba(255, 255, 255, 0.24);
}

.hud {
  position: absolute;
  display: grid;
  gap: 4px;
  min-width: 172px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 13px 15px;
  background: rgba(8, 8, 8, 0.84);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.46);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hud span,
.section-heading span,
.showcase-copy span,
.access-section span {
  color: #9e9e9e;
  font-family: "Orbitron", "Rajdhani", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hud strong {
  font-size: 22px;
  line-height: 1;
}

.hud-top {
  top: 36px;
  right: 34px;
}

.hud-bottom {
  left: 34px;
  bottom: 38px;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1680px, calc(100% - 44px));
  margin: -18px auto 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.metrics-band div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  min-height: 126px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.metrics-band div:last-child {
  border-right: 0;
}

.metrics-band strong {
  color: #fff;
  font-family: "Orbitron", "Rajdhani", ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  text-shadow: 0 0 18px rgba(255, 255, 255, 0.3);
}

.metrics-band span {
  color: #bfbfbf;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.section-block,
.aim-modes-section,
.showcase-section,
.access-section {
  width: min(1680px, calc(100% - 44px));
  margin: 0 auto;
}

.section-block {
  padding: 112px 0 80px;
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading h2,
.showcase-copy h2,
.access-section h2 {
  margin: 0;
  color: #f8f8f8;
  font-family: "Orbitron", "Rajdhani", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(34px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  min-height: 260px;
  padding: 24px;
}

.feature-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-family: "Orbitron", "Rajdhani", ui-sans-serif, system-ui, sans-serif;
  font-weight: 900;
}

.feature-card h3 {
  margin: 28px 0 12px;
  font-size: 25px;
  line-height: 1.08;
}

.feature-card p,
.showcase-copy p,
.access-section p {
  margin: 0;
  color: #b9b9b9;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.45;
}

.aim-modes-section {
  padding: 104px 0 92px;
  scroll-margin-top: 104px;
}

.aim-mode-lab {
  display: grid;
  grid-template-columns: minmax(220px, 300px) minmax(0, 1fr);
  gap: clamp(18px, 3vw, 34px);
  padding: clamp(18px, 2.4vw, 30px);
}

.aim-mode-tabs {
  display: grid;
  gap: 10px;
}

.aim-mode-tab {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 58px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 8px 11px;
  color: #d6d6d6;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.aim-mode-tab:hover,
.aim-mode-tab.is-active {
  transform: translateX(4px);
  border-color: rgba(255, 255, 255, 0.38);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045));
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.1);
}

.aim-mode-tab span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-family: "Orbitron", "Rajdhani", ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.aim-mode-tab strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: #f8f8f8;
  font-family: "Orbitron", "Rajdhani", ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.aim-mode-stage {
  display: grid;
  grid-template-rows: auto minmax(360px, 1fr) auto auto;
  gap: 18px;
  min-width: 0;
}

.stage-topline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.stage-topline span {
  color: #a6a6a6;
  font-family: "Orbitron", "Rajdhani", ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.stage-topline strong {
  min-width: 0;
  color: #f8f8f8;
  font-family: "Orbitron", "Rajdhani", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(25px, 3.4vw, 48px);
  font-weight: 900;
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.motion-preview {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(360px circle at 76% 34%, rgba(255, 255, 255, 0.13), transparent 58%),
    #050505;
  background-size: 40px 40px, 40px 40px, auto, auto;
}

.motion-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.motion-svg path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.motion-guide {
  stroke: rgba(255, 255, 255, 0.13);
  stroke-width: 1.4;
  stroke-dasharray: 8 12;
}

.motion-trace {
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-dasharray: 22 180;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.78)) drop-shadow(0 0 28px rgba(255, 255, 255, 0.25));
  animation: motion-trace 2.8s linear infinite;
}

.target-ring {
  position: absolute;
  left: 78%;
  top: 32%;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  box-shadow: 0 0 32px rgba(255, 255, 255, 0.16), inset 0 0 24px rgba(255, 255, 255, 0.08);
  transform: translate(-50%, -50%);
}

.target-ring::before,
.target-ring::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 130%;
  height: 1px;
  background: rgba(255, 255, 255, 0.16);
  transform: translate(-50%, -50%);
}

.target-ring::after {
  width: 1px;
  height: 130%;
}

.motion-dot,
.motion-halo,
.impact-dot,
.micro-dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.motion-halo {
  left: 18%;
  top: 68%;
  z-index: 1;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.026);
  box-shadow: 0 0 28px rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
}

.motion-dot {
  left: 18%;
  top: 68%;
  z-index: 2;
  width: 14px;
  height: 14px;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.9), 0 0 44px rgba(255, 255, 255, 0.36);
  transform: translate(-50%, -50%);
}

.impact-dot {
  left: 78%;
  top: 32%;
  width: 8px;
  height: 8px;
  background: #fff;
  opacity: 0.72;
  transform: translate(-50%, -50%);
}

.micro-dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.86);
  opacity: 0;
  box-shadow: 0 0 14px rgba(255, 255, 255, 0.5);
}

.dot-a {
  left: 60%;
  top: 42%;
}

.dot-b {
  left: 70%;
  top: 38%;
}

.dot-c {
  left: 76%;
  top: 30%;
}

.aim-mode-stage p {
  margin: 0;
  max-width: 760px;
  color: #c4c4c4;
  font-size: 19px;
  font-weight: 650;
  line-height: 1.45;
}

.mode-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mode-stats span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.045);
  color: #d4d4d4;
  font-size: 14px;
  font-weight: 800;
}

.aim-mode-lab[data-active-mode="gan"] .micro-dot,
.aim-mode-lab[data-active-mode="smooth"] .micro-dot,
.aim-mode-lab[data-active-mode="pid"] .micro-dot {
  animation: micro-flicker 2.8s ease-in-out infinite;
}

.aim-mode-lab[data-active-mode="gan"] .dot-b,
.aim-mode-lab[data-active-mode="smooth"] .dot-b,
.aim-mode-lab[data-active-mode="pid"] .dot-b {
  animation-delay: 180ms;
}

.aim-mode-lab[data-active-mode="gan"] .dot-c,
.aim-mode-lab[data-active-mode="smooth"] .dot-c,
.aim-mode-lab[data-active-mode="pid"] .dot-c {
  animation-delay: 360ms;
}

@keyframes motion-trace {
  to {
    stroke-dashoffset: -202;
  }
}

@keyframes micro-flicker {
  0%, 30%, 100% {
    opacity: 0;
    transform: scale(0.7);
  }
  44%, 62% {
    opacity: 1;
    transform: scale(1);
  }
}

.showcase-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: 48px 0 104px;
  scroll-margin-top: 96px;
}

.showcase-visual {
  min-height: 420px;
  padding: 24px;
}

.workflow-map {
  position: relative;
  height: 100%;
  min-height: 372px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    radial-gradient(420px circle at 48% 38%, rgba(255, 255, 255, 0.14), transparent 66%),
    #050505;
  background-size: 42px 42px, 42px 42px, auto, auto;
}

.workflow-map::before {
  content: "";
  position: absolute;
  inset: 10%;
  z-index: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.2), transparent 18%),
    conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.18), transparent 32%, rgba(255, 255, 255, 0.13), transparent 62%, rgba(255, 255, 255, 0.16), transparent);
  filter: blur(18px);
  opacity: 0.45;
}

.workflow-flow {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.workflow-flow path {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.workflow-flow-shadow {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 2;
}

.workflow-flow-line {
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 1;
  stroke-dasharray: 10 14;
  animation: workflow-track 8s linear infinite;
}

.workflow-flow-pulse {
  stroke: #ffffff;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 0.1 24;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.86)) drop-shadow(0 0 22px rgba(255, 255, 255, 0.38));
  animation: workflow-pulse 5.8s linear infinite;
}

@keyframes workflow-track {
  to {
    stroke-dashoffset: -72;
  }
}

@keyframes workflow-pulse {
  to {
    stroke-dashoffset: -144;
  }
}

.workflow-node,
.workflow-core {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 5px;
  min-width: 154px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 14px 15px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.018)),
    rgba(5, 5, 5, 0.88);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.42), 0 0 28px rgba(255, 255, 255, 0.08), inset 0 0 22px rgba(255, 255, 255, 0.035);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.workflow-node span,
.workflow-core span {
  color: #9f9f9f;
  font-family: "Orbitron", "Rajdhani", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.workflow-node strong,
.workflow-core strong {
  color: #f8f8f8;
  font-family: "Orbitron", "Rajdhani", ui-sans-serif, system-ui, sans-serif;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.workflow-node em {
  color: #b9b9b9;
  font-size: 15px;
  font-style: normal;
  font-weight: 750;
  line-height: 1.15;
}

.workflow-core {
  left: 50%;
  top: 50%;
  min-width: 190px;
  padding: 20px;
  border-color: rgba(255, 255, 255, 0.34);
  text-align: center;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(160px circle at 50% 20%, rgba(255, 255, 255, 0.16), transparent 68%),
    rgba(8, 8, 8, 0.94);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.52), 0 0 48px rgba(255, 255, 255, 0.18);
}

.node-auth {
  left: 9%;
  top: 12%;
}

.node-download {
  right: 10%;
  top: 18%;
}

.node-model {
  left: 12%;
  bottom: 18%;
}

.node-profile {
  right: 8%;
  bottom: 24%;
}

.node-run {
  left: 50%;
  bottom: 7%;
  transform: translateX(-50%);
}

.showcase-copy {
  display: grid;
  gap: 18px;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 10px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: #dfdfdf;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.35;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.62);
}

.access-section {
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  margin-bottom: 74px;
}

.access-section div {
  display: grid;
  gap: 12px;
  max-width: 720px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(1680px, calc(100% - 44px));
  margin: 0 auto;
  padding: 26px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #999;
  font-family: "Orbitron", "Rajdhani", ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav {
    display: none;
  }

  .hero-section,
  .showcase-section {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    justify-self: stretch;
    min-height: 520px;
  }

  .product-card {
    width: min(720px, 92vw);
  }

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

  .aim-mode-lab {
    grid-template-columns: 1fr;
  }

  .aim-mode-tabs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .aim-mode-tab {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .aim-mode-tab:hover,
  .aim-mode-tab.is-active {
    transform: translateY(-2px);
  }
}

@media (max-width: 720px) {
  .site-header {
    display: flex;
    justify-content: space-between;
    min-height: 68px;
    padding: 12px 16px;
    gap: 12px;
  }

  .site-brand span {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero-section,
  .section-block,
  .aim-modes-section,
  .showcase-section,
  .access-section,
  .metrics-band,
  .site-footer {
    width: min(100% - 28px, 1240px);
  }

  .hero-section {
    min-height: auto;
    padding: 48px 0 34px;
  }

  .hero-copy h1 {
    max-width: 100%;
    font-size: clamp(38px, 10.8vw, 48px);
    overflow-wrap: anywhere;
  }

  .hero-lead,
  .feature-card p,
  .showcase-copy p,
  .access-section p,
  .check-list li {
    font-size: 17px;
  }

  .hero-actions a,
  .access-section .primary-action {
    width: 100%;
  }

  .hero-stage {
    min-height: 420px;
    padding: 30px 18px;
  }

  .product-card {
    width: min(360px, 88vw);
    padding: 0;
  }

  .hud {
    display: none;
  }

  .metrics-band,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .metrics-band div {
    min-height: 104px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
  }

  .metrics-band div:last-child {
    border-bottom: 0;
  }

  .section-block {
    padding: 76px 0 44px;
  }

  .feature-card {
    min-height: 224px;
    padding: 22px;
  }

  .aim-modes-section {
    padding: 20px 0 66px;
  }

  .aim-mode-lab {
    gap: 16px;
    padding: 14px;
  }

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

  .aim-mode-tab {
    min-height: 56px;
  }

  .stage-topline {
    display: grid;
    gap: 8px;
  }

  .stage-topline strong {
    text-align: left;
  }

  .aim-mode-stage {
    grid-template-rows: auto minmax(280px, 1fr) auto auto;
  }

  .motion-preview {
    min-height: 280px;
  }

  .target-ring {
    width: 68px;
    height: 68px;
  }

  .showcase-section {
    padding: 28px 0 72px;
  }

  .showcase-visual {
    min-height: 320px;
    padding: 14px;
  }

  .workflow-map {
    display: grid;
    gap: 10px;
    min-height: 0;
    padding: 14px;
  }

  .workflow-map::before,
  .workflow-flow {
    display: none;
  }

  .workflow-node,
  .workflow-core {
    position: relative;
    inset: auto;
    min-width: 0;
    width: 100%;
    transform: none;
  }

  .workflow-core {
    order: 4;
  }

  .node-auth {
    order: 1;
  }

  .node-download {
    order: 2;
  }

  .node-model {
    order: 3;
  }

  .node-profile {
    order: 5;
  }

  .node-run {
    order: 6;
  }

  .access-section {
    padding: 22px;
    margin-bottom: 48px;
  }

  .site-footer {
    flex-direction: column;
  }
}
