:root {
  --bg: #05080b;
  --panel: rgba(9, 19, 27, 0.72);
  --panel-strong: rgba(12, 29, 38, 0.92);
  --line: rgba(97, 222, 255, 0.28);
  --line-strong: rgba(109, 234, 255, 0.62);
  --text: #eef9ff;
  --muted: #9bb6c1;
  --cyan: #29d9ff;
  --teal: #2df2c3;
  --amber: #ffb84d;
  --red: #ff5a69;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.46);
  --ease-out-quint: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 12%, rgba(41, 217, 255, 0.2), transparent 27rem),
    radial-gradient(circle at 14% 44%, rgba(45, 242, 195, 0.11), transparent 22rem),
    linear-gradient(180deg, #05080b 0%, #081016 47%, #040608 100%);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

.ambient-grid,
.scanline {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
}

.ambient-grid {
  background-image:
    linear-gradient(rgba(85, 205, 235, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(85, 205, 235, 0.08) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 12%, black 76%, transparent 100%);
}

.scanline {
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.04), transparent);
  height: 30vh;
  animation: scan 8s linear infinite;
  opacity: 0.35;
}

.site-header {
  align-items: center;
  background: rgba(3, 8, 12, 0.74);
  border: 1px solid rgba(112, 220, 255, 0.2);
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  left: 24px;
  margin: 0 auto;
  max-width: 1180px;
  padding: 14px 16px;
  position: fixed;
  right: 24px;
  top: 18px;
  z-index: 10;
  backdrop-filter: blur(18px);
}

.nav-logo {
  align-items: center;
  display: flex;
  flex: 0 0 auto;
  min-height: 40px;
}

.nav-logo img {
  display: block;
  filter:
    sepia(1)
    saturate(4.4)
    hue-rotate(352deg)
    brightness(1.24)
    drop-shadow(0 0 8px rgba(255, 219, 87, 0.62))
    drop-shadow(0 0 22px rgba(255, 186, 46, 0.34));
  height: clamp(28px, 3.2vw, 42px);
  max-width: 164px;
  object-fit: contain;
  width: auto;
}

h1,
h2 {
  font-family: Orbitron, Inter, sans-serif;
}

.site-nav {
  display: flex;
  flex: 1 1 auto;
  gap: 8px;
  justify-content: flex-end;
  min-width: 0;
}

.site-nav a,
.header-cta,
.button {
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  min-height: 44px;
  padding: 10px 14px;
  white-space: nowrap;
}

.site-nav a {
  align-items: center;
  color: #c8e6ef;
  display: inline-flex;
  transition:
    background 220ms var(--ease-out-quint),
    color 220ms var(--ease-out-quint),
    transform 220ms var(--ease-out-quint);
}

.site-nav a:hover {
  background: rgba(80, 218, 255, 0.1);
  color: white;
  transform: translateY(-1px);
}

.header-cta,
.button.primary {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: #001117;
  box-shadow: 0 0 32px rgba(41, 217, 255, 0.28);
}

.hero {
  --hero-parallax-x: 0px;
  --hero-parallax-y: 0px;
  --hero-scroll-y: 0px;
  display: grid;
  min-height: 92vh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.hero::after {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(3, 7, 10, 0.12) 20%,
    rgba(3, 7, 10, 0.48) 58%,
    rgba(5, 8, 11, 0.88) 84%,
    var(--bg) 100%
  );
  bottom: 0;
  content: "";
  height: clamp(340px, 48vh, 620px);
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  z-index: 2;
}

.hero-media,
.hero-scrim,
.hero-tech-overlay {
  height: 100%;
  inset: 0;
  position: absolute;
  width: 100%;
}

.hero-media {
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 70%, rgba(0, 0, 0, 0.72) 80%, rgba(0, 0, 0, 0.16) 92%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 70%, rgba(0, 0, 0, 0.72) 80%, rgba(0, 0, 0, 0.16) 92%, transparent 100%);
  overflow: hidden;
  z-index: 0;
}

.hero-video,
.hero-poster {
  position: absolute;
}

.hero-video,
.hero-poster {
  height: 220%;
  inset: auto;
  left: 50%;
  object-fit: cover;
  object-position: center;
  top: 50%;
  transform: translate3d(
    calc(-50% + var(--hero-parallax-x)),
    calc(-50% + var(--hero-parallax-y) + var(--hero-scroll-y)),
    0
  ) scale(1.02);
  transition: transform 90ms linear;
  will-change: transform;
  width: 170%;
  z-index: 0;
}

.hero-video {
  filter: saturate(1.22) contrast(1.08) brightness(0.96);
}

.hero-poster {
  opacity: 0;
  pointer-events: none;
}

.hero-scrim {
  background:
    radial-gradient(ellipse at 52% 42%, transparent 0%, rgba(3, 7, 10, 0.08) 42%, rgba(3, 7, 10, 0.54) 100%),
    linear-gradient(90deg, rgba(3, 7, 10, 0.78) 0%, rgba(3, 7, 10, 0.48) 38%, rgba(3, 7, 10, 0.08) 76%),
    linear-gradient(180deg, rgba(3, 7, 10, 0.1) 0%, rgba(3, 7, 10, 0.68) 100%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.7) 76%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 58%, rgba(0, 0, 0, 0.7) 76%, transparent 100%);
  overflow: hidden;
  z-index: 1;
}

.hero-scrim::before,
.hero-scrim::after {
  content: "";
  pointer-events: none;
  position: absolute;
}

.hero-scrim::before {
  animation: portalPulse 4.8s ease-in-out infinite;
  background: radial-gradient(circle, rgba(45, 242, 195, 0.34), rgba(41, 217, 255, 0.14) 22%, transparent 54%);
  height: 48vmin;
  right: 6vw;
  top: 18vh;
  width: 48vmin;
}

.hero-scrim::after {
  animation: lightSweep 6.5s linear infinite;
  background: linear-gradient(100deg, transparent 0%, rgba(41, 217, 255, 0.22) 48%, transparent 62%);
  height: 140%;
  left: -45%;
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 56%, rgba(0, 0, 0, 0.52) 76%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 56%, rgba(0, 0, 0, 0.52) 76%, transparent 100%);
  top: -20%;
  transform: rotate(8deg);
  width: 34%;
}

.hero-tech-overlay {
  background:
    linear-gradient(90deg, transparent 0 15%, rgba(41, 217, 255, 0.18) 15.2%, transparent 15.6% 51%, rgba(45, 242, 195, 0.14) 51.2%, transparent 51.6% 100%),
    linear-gradient(0deg, transparent 0 18%, rgba(41, 217, 255, 0.12) 18.2%, transparent 18.6% 64%, rgba(45, 242, 195, 0.1) 64.2%, transparent 64.6% 100%),
    repeating-linear-gradient(90deg, rgba(41, 217, 255, 0.05) 0 1px, transparent 1px 82px),
    repeating-linear-gradient(0deg, rgba(45, 242, 195, 0.045) 0 1px, transparent 1px 58px);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, rgba(0, 0, 0, 0.62) 78%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 62%, rgba(0, 0, 0, 0.62) 78%, transparent 100%);
  mix-blend-mode: screen;
  opacity: 0.72;
  overflow: hidden;
  pointer-events: none;
  z-index: 2;
}

.hero-tech-overlay::before,
.hero-tech-overlay::after {
  content: "";
  pointer-events: none;
  position: absolute;
}

.hero-tech-overlay::before {
  animation: techGridDrift 8s linear infinite;
  background:
    repeating-linear-gradient(112deg, transparent 0 18px, rgba(41, 217, 255, 0.12) 19px, transparent 21px 72px),
    radial-gradient(circle at 74% 34%, rgba(41, 217, 255, 0.24), transparent 18%),
    radial-gradient(circle at 21% 68%, rgba(45, 242, 195, 0.18), transparent 16%);
  filter: blur(0.2px);
  inset: -24%;
  opacity: 0.72;
}

.hero-tech-overlay::after {
  animation: scanBand 3.8s linear infinite;
  background: linear-gradient(180deg, transparent 0%, rgba(41, 217, 255, 0.18) 49%, rgba(255, 255, 255, 0.14) 50%, transparent 58%);
  height: 34%;
  left: 0;
  top: -38%;
  width: 100%;
}

.tech-ring,
.tech-rail {
  position: absolute;
}

.tech-ring {
  aspect-ratio: 1;
  border: 1px solid rgba(41, 217, 255, 0.32);
  border-radius: 50%;
  box-shadow:
    0 0 28px rgba(41, 217, 255, 0.16),
    inset 0 0 26px rgba(45, 242, 195, 0.12);
}

.tech-ring::before,
.tech-ring::after {
  content: "";
  position: absolute;
}

.tech-ring::before {
  border: 1px dashed rgba(45, 242, 195, 0.26);
  border-radius: inherit;
  inset: 12%;
}

.tech-ring::after {
  background: conic-gradient(from 0deg, transparent 0 68%, rgba(41, 217, 255, 0.44) 74%, transparent 82% 100%);
  border-radius: inherit;
  inset: -2px;
  mask: radial-gradient(circle, transparent 58%, #000 59% 61%, transparent 62%);
}

.tech-ring-a {
  animation: hudRotate 18s linear infinite;
  height: 34vmin;
  right: 7vw;
  top: 18vh;
}

.tech-ring-b {
  animation: hudRotate 12s linear infinite reverse;
  bottom: 8vh;
  height: 22vmin;
  left: 9vw;
  opacity: 0.62;
}

.tech-rail {
  background: linear-gradient(90deg, transparent, rgba(41, 217, 255, 0.42), rgba(45, 242, 195, 0.5), transparent);
  height: 1px;
  transform-origin: center;
  width: 42vw;
}

.tech-rail-a {
  animation: railPulse 5.6s ease-in-out infinite;
  left: 5vw;
  top: 31vh;
  transform: rotate(-15deg);
}

.tech-rail-b {
  animation: railPulse 5.6s ease-in-out 1.6s infinite;
  bottom: 20vh;
  right: 3vw;
  transform: rotate(12deg);
}

.hero-content {
  align-self: center;
  max-width: 740px;
  padding: 154px 24px 92px;
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  z-index: 3;
}

.eyebrow {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(42px, 8vw, 84px);
  line-height: 0.96;
  margin: 0 0 22px;
  max-width: 760px;
  text-shadow: 0 0 34px rgba(41, 217, 255, 0.2);
}

.hero-logo-title {
  font-size: 0;
  line-height: 1;
  margin: 0 0 8px;
  max-width: min(720px, 96vw);
  text-shadow: none;
}

.hero-kicker {
  color: #0a303a;
  margin: clamp(-43px, calc(-5.2vw + 15px), -19px) 0 34px;
  max-width: min(720px, 96vw);
  padding-right: clamp(57px, calc(2.2vw + 45px), 73px);
  position: relative;
  text-align: right;
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.46),
    0 0 14px rgba(45, 242, 195, 0.76),
    0 1px 0 rgba(255, 255, 255, 0.72);
  z-index: 4;
}

.hero-logo-wrap {
  display: block;
  isolation: isolate;
  position: relative;
  width: min(720px, 100%);
}

.hero-logo-wrap::before {
  content: "";
  background: radial-gradient(ellipse at 50% 54%, rgba(41, 217, 255, 0.2), transparent 68%);
  filter: blur(18px);
  inset: 0;
  opacity: 0.9;
  pointer-events: none;
  position: absolute;
  transform: scale(1.04);
  z-index: -1;
}

.hero-logo {
  display: block;
  filter:
    drop-shadow(0 0 8px rgba(41, 217, 255, 0.5))
    drop-shadow(0 0 32px rgba(31, 111, 255, 0.24));
  height: auto;
  position: relative;
  width: 100%;
  z-index: 1;
}

.hero-logo-reflection {
  animation: heroLogoReflect 6.5s linear infinite;
  display: block;
  filter: drop-shadow(0 0 10px rgba(142, 242, 255, 0.28)) brightness(1.12);
  height: auto;
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.12;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 2;
}

.sr-only {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.hero-copy {
  color: #c4d9df;
  font-size: clamp(17px, 2vw, 21px);
  margin: 0 0 18px;
  max-width: 690px;
}

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

.button {
  align-items: center;
  border: 1px solid rgba(142, 236, 255, 0.32);
  display: inline-flex;
  justify-content: center;
  transition:
    background 220ms var(--ease-out-quint),
    border-color 220ms var(--ease-out-quint),
    box-shadow 220ms var(--ease-out-quint),
    transform 220ms var(--ease-out-quint);
}

.button:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(0) scale(0.98);
}

.button.secondary {
  background: rgba(8, 22, 30, 0.7);
  color: var(--text);
}

.band,
.section,
.visit-band,
.site-footer {
  margin: 0 auto;
  max-width: 1180px;
  position: relative;
  z-index: 1;
}

.signal-rail {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 690px;
  z-index: 4;
}

.signal-rail a {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(6, 18, 25, 0.82), rgba(3, 9, 13, 0.72)),
    repeating-linear-gradient(90deg, rgba(41, 217, 255, 0.08) 0 1px, transparent 1px 24px);
  border-bottom: 1px solid rgba(142, 236, 255, 0.26);
  border-left: 1px solid rgba(142, 236, 255, 0.18);
  border-radius: 6px;
  border-right: 1px solid rgba(142, 236, 255, 0.18);
  border-top: 1px solid rgba(142, 236, 255, 0.28);
  color: #dff8ff;
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: space-between;
  min-height: 54px;
  overflow: hidden;
  padding: 8px 10px;
  position: relative;
  text-align: center;
  transition:
    background 240ms var(--ease-out-quint),
    border-color 240ms var(--ease-out-quint),
    box-shadow 240ms var(--ease-out-quint),
    transform 240ms var(--ease-out-quint);
}

.signal-rail a::before {
  background: linear-gradient(90deg, transparent, rgba(255, 184, 77, 0.38), transparent);
  content: "";
  height: 1px;
  left: -38%;
  position: absolute;
  top: 0;
  width: 42%;
}

.signal-rail a:hover {
  background:
    linear-gradient(135deg, rgba(15, 40, 50, 0.88), rgba(4, 12, 18, 0.78)),
    repeating-linear-gradient(90deg, rgba(41, 217, 255, 0.1) 0 1px, transparent 1px 24px);
  border-color: rgba(255, 184, 77, 0.36);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
}

.signal-rail a:hover::before {
  animation: railSkim 680ms var(--ease-out-quint) both;
}

.signal-rail span {
  color: var(--teal);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.signal-rail strong {
  font-family: Orbitron, Inter, sans-serif;
  font-size: clamp(11px, 1.1vw, 14px);
  line-height: 1.1;
}

.intro-band {
  align-items: end;
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr 1fr;
  padding: 72px 24px 46px;
}

.band-copy h2,
.section-heading h2,
.visit-band h2 {
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  margin: 0;
}

.intro-band > p {
  color: #c4d9df;
  font-size: 18px;
  margin: 0;
}

.section {
  padding: 62px 24px;
}

.section-heading {
  margin-bottom: 22px;
  max-width: 760px;
}

.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.32fr 0.88fr 0.8fr;
}

.market-console {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
}

.market-feature,
.product-stack {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.market-feature {
  color: var(--text);
  min-height: 520px;
  overflow: hidden;
  padding: 28px;
  position: relative;
}

.market-feature::after {
  background:
    linear-gradient(180deg, rgba(3, 8, 12, 0.08) 0%, rgba(3, 8, 12, 0.78) 54%, rgba(3, 8, 12, 0.97) 100%),
    linear-gradient(135deg, rgba(45, 242, 195, 0.18), transparent 42%);
  content: "";
  inset: 0;
  position: absolute;
}

.market-feature img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 640ms var(--ease-out-quint), filter 640ms var(--ease-out-quint);
  width: 100%;
}

.market-feature h3,
.market-feature p,
.market-feature strong,
.console-label {
  display: block;
  position: relative;
  z-index: 1;
}

.market-feature h3 {
  font-size: clamp(30px, 4vw, 56px);
  line-height: 1;
  margin: 300px 0 12px;
  max-width: 640px;
}

.market-feature p {
  color: #c8e4ec;
  margin: 0 0 18px;
  max-width: 620px;
}

.market-feature strong {
  color: var(--amber);
  font-family: Orbitron, sans-serif;
}

.console-label {
  color: var(--teal);
  font-family: Orbitron, sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.market-feature:hover img {
  filter: saturate(1.12) contrast(1.08);
  transform: scale(1.05);
}

.product-stack {
  display: grid;
  gap: 0;
  overflow: hidden;
}

.product-row {
  align-items: center;
  border-bottom: 1px solid rgba(112, 220, 255, 0.14);
  display: grid;
  gap: 14px;
  grid-template-columns: 92px 1fr auto;
  min-height: 104px;
  padding: 12px 14px;
  transition:
    background 220ms var(--ease-out-quint),
    transform 220ms var(--ease-out-quint);
}

.product-row:last-child {
  border-bottom: 0;
}

.product-row img {
  aspect-ratio: 1.18;
  border: 1px solid rgba(142, 236, 255, 0.2);
  border-radius: 6px;
  object-fit: cover;
  width: 92px;
}

.product-row span {
  min-width: 0;
}

.product-row small {
  color: var(--teal);
  display: block;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-row strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
}

.product-row em {
  color: var(--amber);
  font-family: Orbitron, sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
  white-space: nowrap;
}

.product-row:hover {
  background: rgba(41, 217, 255, 0.08);
  transform: translateX(4px);
}

.catalog-link {
  border: 1px solid rgba(142, 236, 255, 0.32);
  border-radius: 6px;
  color: var(--cyan);
  display: inline-flex;
  font-weight: 800;
  margin-top: 16px;
  min-height: 44px;
  padding: 10px 14px;
  transition:
    border-color 220ms var(--ease-out-quint),
    color 220ms var(--ease-out-quint),
    transform 220ms var(--ease-out-quint);
}

.catalog-link:hover {
  border-color: var(--line-strong);
  color: var(--amber);
  transform: translateY(-2px);
}

.feature-card,
.module-panel,
.radar-panel,
.visit-band {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.feature-card {
  min-height: 230px;
  overflow: hidden;
  padding: 24px;
  position: relative;
  transition:
    border-color 240ms var(--ease-out-quint),
    box-shadow 240ms var(--ease-out-quint),
    transform 240ms var(--ease-out-quint);
}

.feature-card::after {
  background: linear-gradient(135deg, transparent, rgba(41, 217, 255, 0.18));
  content: "";
  inset: auto 0 0 auto;
  height: 90px;
  position: absolute;
  width: 90px;
}

.feature-card:first-child {
  min-height: 270px;
}

.feature-card:first-child h3 {
  font-size: clamp(26px, 3vw, 34px);
  max-width: 420px;
}

.feature-card:hover {
  border-color: rgba(255, 184, 77, 0.42);
  box-shadow: 0 30px 92px rgba(0, 0, 0, 0.54);
  transform: translateY(-4px);
}

.feature-icon {
  color: var(--amber);
  font-family: Orbitron, sans-serif;
  font-size: 13px;
}

.feature-card h3 {
  font-size: 22px;
  margin: 26px 0 12px;
}

.feature-card p,
.panel-copy p {
  color: var(--muted);
  margin: 0;
}

.split-section {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
}

.module-panel {
  padding: 24px;
}

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

.pulse-dot {
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--teal);
  height: 10px;
  width: 10px;
}

.tab-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 34px;
}

.tab {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(145, 226, 255, 0.2);
  border-radius: 6px;
  color: #d7edf3;
  cursor: pointer;
  font: 700 13px Inter, sans-serif;
  min-height: 44px;
  padding: 10px 12px;
  transition:
    background 220ms var(--ease-out-quint),
    border-color 220ms var(--ease-out-quint),
    color 220ms var(--ease-out-quint),
    transform 220ms var(--ease-out-quint);
}

.tab:hover {
  border-color: var(--line-strong);
  transform: translateY(-1px);
}

.tab.active {
  background: rgba(41, 217, 255, 0.18);
  border-color: var(--line-strong);
  color: white;
}

.panel-copy {
  display: none;
  max-width: 640px;
}

.panel-copy.active {
  display: block;
}

.panel-copy h2 {
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.02;
  margin: 0 0 16px;
}

.radar-panel {
  align-items: center;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  place-items: center;
  position: relative;
}

.radar-ring {
  aspect-ratio: 1;
  background:
    radial-gradient(circle, transparent 20%, rgba(45, 242, 195, 0.08) 21%, transparent 22%, transparent 42%, rgba(41, 217, 255, 0.1) 43%, transparent 44%),
    linear-gradient(rgba(41, 217, 255, 0.18), rgba(41, 217, 255, 0.18));
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  width: 74%;
}

.radar-sweep {
  animation: radarCounter 2.8s linear infinite;
  background: linear-gradient(90deg, rgba(45, 242, 195, 0.95), rgba(41, 217, 255, 0.32), transparent);
  border-radius: 999px;
  height: 3px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform-origin: left center;
  width: 32%;
}

.radar-sweep::after {
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--teal);
  content: "";
  height: 10px;
  left: -4px;
  position: absolute;
  top: -4px;
  width: 10px;
}

.radar-node {
  background: var(--amber);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--amber);
  height: 9px;
  position: absolute;
  width: 9px;
}

.n1 {
  left: 44%;
  top: 27%;
}

.n2 {
  right: 29%;
  top: 48%;
}

.n3 {
  bottom: 26%;
  left: 34%;
}

.radar-panel p {
  bottom: 24px;
  color: var(--muted);
  font-family: Orbitron, sans-serif;
  font-size: 12px;
  position: absolute;
  text-transform: uppercase;
}

.visit-band {
  align-items: center;
  display: grid;
  gap: 28px;
  grid-template-columns: 1fr auto;
  margin-bottom: 64px;
  padding: 34px;
}

.privacy-policy {
  border-top: 1px solid rgba(142, 236, 255, 0.18);
  color: #c4d9df;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(240px, 0.72fr) 1.28fr;
  margin: 0 auto;
  max-width: 1180px;
  padding: 36px 24px 18px;
}

.privacy-policy h2 {
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.05;
  margin: 0;
}

.privacy-policy > p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.site-footer {
  align-items: center;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  padding: 28px 24px 52px;
}

.site-footer div {
  display: flex;
  gap: 16px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms var(--ease-out-quint), transform 650ms var(--ease-out-quint);
}

[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scan {
  from {
    transform: translateY(-35vh);
  }
  to {
    transform: translateY(105vh);
  }
}

@keyframes railSkim {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(340%);
  }
}

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

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

@keyframes radarCounter {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

@keyframes portalPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.12);
  }
}

@keyframes lightSweep {
  from {
    transform: translateX(0) rotate(8deg);
  }
  to {
    transform: translateX(420%) rotate(8deg);
  }
}

@keyframes techGridDrift {
  from {
    transform: translate3d(-3%, -2%, 0);
  }
  to {
    transform: translate3d(3%, 2%, 0);
  }
}

@keyframes scanBand {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(410%);
  }
}

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

@keyframes railPulse {
  0%,
  100% {
    opacity: 0.18;
  }
  44% {
    opacity: 0.74;
  }
  58% {
    opacity: 0.36;
  }
}

@keyframes heroLogoReflect {
  0%,
  30%,
  82%,
  100% {
    opacity: 0.12;
  }
  47% {
    opacity: 0.88;
  }
  60% {
    opacity: 0.48;
  }
}

@media (max-width: 940px) {
  .site-header {
    gap: 12px;
  }

  .nav-logo img {
    max-width: 128px;
  }

  .site-nav {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .intro-band,
  .market-console,
  .privacy-policy,
  .split-section,
  .visit-band {
    grid-template-columns: 1fr;
  }

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

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

  .market-feature {
    min-height: 440px;
  }

  .market-feature h3 {
    margin-top: 250px;
  }

  .signal-rail a,
  .signal-rail a:first-child,
  .signal-rail a:last-child {
    border: 1px solid rgba(142, 236, 255, 0.22);
  }

}

@media (max-width: 620px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    left: 10px;
    right: 10px;
    top: 10px;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav a {
    min-height: 44px;
  }

  .hero-content {
    padding-top: 136px;
  }

  .signal-rail a {
    min-height: 52px;
  }

  h1 {
    font-size: 42px;
  }

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

  .market-feature {
    min-height: 390px;
    padding: 20px;
  }

  .market-feature h3 {
    margin-top: 210px;
  }

  .product-row {
    grid-template-columns: 70px 1fr;
  }

  .product-row img {
    width: 70px;
  }

  .product-row em {
    grid-column: 2;
  }

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

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

  .hero-logo-reflection {
    animation: none !important;
    opacity: 0.22;
  }

  .hero-video {
    display: none;
  }

  .hero-poster {
    opacity: 1;
  }
}
