:root {
  --font-display: "Oxanium", "Segoe UI", sans-serif;
  --font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --bg-0: #05060a;
  --bg-1: #0b141f;
  --bg-2: #101b2a;
  --text: #eef5ff;
  --muted: #9fb0c4;
  --accent: #4deee8;
  --accent-2: #ffb86b;
  --accent-3: #6f8dff;
  --accent-4: #7effa8;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);
  --glass: rgba(10, 16, 24, 0.66);
  --glass-strong: rgba(8, 12, 20, 0.86);
  --shadow: 0 25px 70px rgba(0, 0, 0, 0.45);
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: radial-gradient(
      circle at 15% 20%,
      rgba(77, 238, 232, 0.18),
      transparent 45%
    ),
    radial-gradient(circle at 85% 15%, rgba(111, 141, 255, 0.16), transparent 45%),
    linear-gradient(180deg, var(--bg-1), var(--bg-0));
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: linear-gradient(120deg, rgba(77, 238, 232, 0.08), transparent 45%),
    radial-gradient(circle at 70% 20%, rgba(255, 184, 107, 0.12), transparent 45%),
    radial-gradient(circle at 25% 80%, rgba(111, 141, 255, 0.12), transparent 50%);
  pointer-events: none;
  z-index: -4;
}

.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  opacity: 0.18;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: -1;
}

.grid-overlay {
  position: fixed;
  inset: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 140px 140px;
  opacity: 0.06;
  pointer-events: none;
  z-index: -3;
  animation: gridShift 36s linear infinite;
  mask-image: radial-gradient(circle at 30% 20%, rgba(0, 0, 0, 0.8), transparent 75%);
  -webkit-mask-image: radial-gradient(
    circle at 30% 20%,
    rgba(0, 0, 0, 0.8),
    transparent 75%
  );
}

.lite .grid-overlay {
  animation: none;
  opacity: 0.04;
  mask-image: none;
  -webkit-mask-image: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(6, 10, 16, 0.72);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1rem 0;
  position: relative;
}

.logo {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 38px;
  height: 38px;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(77, 238, 232, 0.25));
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(8, 12, 20, 0.65);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  cursor: pointer;
  transition: border 0.3s ease, transform 0.3s ease;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle:hover {
  transform: translateY(-1px);
}

.nav a {
  transition: color 0.3s ease;
}

.nav a:hover {
  color: var(--text);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 14px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: linear-gradient(120deg, var(--accent), var(--accent-3));
  color: #071019;
  box-shadow: 0 18px 40px rgba(77, 238, 232, 0.25);
}

.btn.ghost {
  border-color: var(--line-strong);
  color: var(--text);
  background: rgba(8, 12, 20, 0.55);
  backdrop-filter: blur(14px);
}

.btn.small {
  padding: 0.65rem 1.3rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn.primary:hover::after {
  opacity: 1;
}

.hero {
  position: relative;
  padding: 150px 0 130px;
  min-height: 100vh;
  z-index: 0;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 32px;
  background: rgba(10, 16, 24, 0.55);
  border: 1px solid rgba(77, 238, 232, 0.14);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px);
  pointer-events: none;
  z-index: 0;
}

.hero::before {
  width: min(65vw, 720px);
  height: min(65vh, 520px);
  top: 10%;
  left: 6%;
}

.hero::after {
  width: min(50vw, 520px);
  height: min(55vh, 420px);
  top: 22%;
  right: 6%;
  border-color: rgba(111, 141, 255, 0.2);
  background: rgba(10, 16, 26, 0.5);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 1.8rem 2rem;
  background: var(--glass);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  max-width: 560px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin-bottom: 1rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.7rem;
  color: var(--accent-2);
  margin-bottom: 1rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 1.6rem;
  line-height: 1.7;
  max-width: 560px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

.hero-tags span {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(8, 12, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.62rem;
}

.hero-note {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.4rem;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.hero-metrics > div {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(8, 12, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.metric {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.metric-label {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}

.hero-visual {
  position: relative;
  min-height: 440px;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: -40% 0;
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(77, 238, 232, 0.2) 45%,
    rgba(111, 141, 255, 0.12) 50%,
    transparent 60%
  );
  opacity: 0.35;
  mix-blend-mode: screen;
  animation: scanline 6s linear infinite;
  pointer-events: none;
}

.lite .hero-visual::after {
  animation: none;
}

.holo-stack {
  position: relative;
  display: grid;
  gap: 1.2rem;
}

.holo-card {
  padding: 1.4rem;
  border-radius: 18px;
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
}

.holo-card::before,
.holo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  pointer-events: none;
  z-index: 0;
}

.holo-card::before {
  background: radial-gradient(
      circle at 20% 20%,
      rgba(77, 238, 232, 0.18),
      transparent 55%
    ),
    radial-gradient(circle at 80% 0%, rgba(111, 141, 255, 0.14), transparent 60%);
  opacity: 0.6;
  animation: cardGlow 6s ease-in-out infinite;
  mix-blend-mode: screen;
}

.holo-card::after {
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.12),
    transparent
  );
  transform: translateX(-120%);
  animation: dataSweep 7s ease-in-out infinite;
}

.holo-card > * {
  position: relative;
  z-index: 1;
}

.holo-card.mid {
  margin-left: 2.5rem;
  border-color: rgba(111, 141, 255, 0.3);
}

.holo-card.low {
  margin-left: 5rem;
  border-color: rgba(77, 238, 232, 0.22);
}

.holo-card.mid::after {
  animation-delay: 1.4s;
}

.holo-card.low::after {
  animation-delay: 2.8s;
}

.holo-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: var(--muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(77, 238, 232, 0.7);
  animation: statusPulse 2.6s ease-in-out infinite;
}

.signal-graph {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 0.4rem;
  height: 64px;
  margin-bottom: 1rem;
  overflow: hidden;
}

.signal-graph .bar {
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(77, 238, 232, 0.9), rgba(77, 238, 232, 0.08));
  opacity: 0.9;
  transform-origin: bottom;
  animation: barPulse 4s ease-in-out infinite;
}

.signal-graph .bar:nth-child(1) {
  height: 22px;
  animation-delay: 0s;
}

.signal-graph .bar:nth-child(2) {
  height: 44px;
  animation-delay: 0.4s;
}

.signal-graph .bar:nth-child(3) {
  height: 32px;
  animation-delay: 0.8s;
}

.signal-graph .bar:nth-child(4) {
  height: 54px;
  animation-delay: 1.2s;
}

.signal-graph .bar:nth-child(5) {
  height: 28px;
  animation-delay: 1.6s;
}

.signal-graph .line {
  position: absolute;
  inset: 10px 0 12px;
  border-top: 2px solid rgba(111, 141, 255, 0.7);
  border-radius: 999px;
  transform: rotate(-6deg);
  transform-origin: left center;
  opacity: 0.8;
  animation: linePulse 5s ease-in-out infinite;
}

.signal-matrix {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.6rem;
}

.signal-cell {
  padding: 0.55rem 0.6rem;
  border-radius: 12px;
  background: rgba(8, 12, 20, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 0.2rem;
}

.signal-cell:nth-child(2n) {
  border-color: rgba(111, 141, 255, 0.2);
}

.signal-value {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
}

.signal-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.holo-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.6rem;
}

.holo-body {
  color: var(--muted);
  font-size: 0.95rem;
}

.holo-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
}

.holo-bars span {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.signal-ring {
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1px solid rgba(77, 238, 232, 0.2);
  top: -40px;
  right: -120px;
  box-shadow: 0 0 80px rgba(77, 238, 232, 0.16);
  animation: ringPulse 6s ease-in-out infinite;
}

.signal-ring.second {
  width: 220px;
  height: 220px;
  top: 180px;
  right: -40px;
  border-color: rgba(111, 141, 255, 0.28);
  animation-delay: 1.2s;
}

.lite .holo-card::before,
.lite .holo-card::after,
.lite .status-dot,
.lite .signal-ring,
.lite .signal-graph .bar,
.lite .signal-graph .line {
  animation: none;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 40px;
  transform: translateX(-50%);
  width: 28px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.scroll-indicator span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: bounce 1.6s infinite;
}

.section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
}

.section::before,
.section::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 80px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.5;
}

.section::before {
  top: -1px;
  background: linear-gradient(120deg, rgba(77, 238, 232, 0.18), transparent);
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 100%);
}

.section::after {
  bottom: -1px;
  background: linear-gradient(310deg, rgba(111, 141, 255, 0.16), transparent);
  clip-path: polygon(0 65%, 100% 0, 100% 100%, 0 100%);
}

.section .container {
  position: relative;
  z-index: 1;
}

.glass-panel {
  position: absolute;
  border-radius: 28px;
  background: rgba(8, 12, 20, 0.5);
  border: 1px solid rgba(77, 238, 232, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.35);
  pointer-events: none;
  z-index: 0;
}

.panel-solutions-a {
  width: min(60vw, 560px);
  height: min(40vh, 320px);
  top: 12%;
  left: 8%;
}

.panel-solutions-b {
  width: min(50vw, 480px);
  height: min(36vh, 280px);
  bottom: 12%;
  right: 10%;
  border-color: rgba(111, 141, 255, 0.18);
}

.section-heading {
  max-width: 620px;
  margin-bottom: 3rem;
}

.section h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-weight: 600;
}

.card-grid,
.solution-grid,
.insight-grid {
  display: grid;
  gap: 1.6rem;
}

.card-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  background: var(--glass);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.6rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(77, 238, 232, 0.12);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card:hover::after {
  opacity: 1;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
}

.card-tag {
  color: var(--accent-2);
  font-weight: 600;
  margin-bottom: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.7rem;
}

.card h3 {
  font-family: var(--font-display);
  margin-bottom: 0.6rem;
}

.parallax-band {
  background: radial-gradient(circle at top, rgba(77, 238, 232, 0.18), transparent 60%),
    linear-gradient(120deg, rgba(8, 12, 20, 0.95), rgba(12, 20, 32, 0.85));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background-attachment: fixed;
}


.band-content {
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.solution-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.solution-card {
  padding: 1.6rem;
  border-radius: 20px;
  background: rgba(8, 12, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border 0.3s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 238, 232, 0.3);
}

.solution-card h3 {
  font-family: var(--font-display);
  margin-bottom: 0.6rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.process-step {
  padding: 1.4rem;
  border-left: 2px solid rgba(77, 238, 232, 0.5);
  background: rgba(8, 12, 20, 0.6);
  border-radius: 16px;
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, border 0.3s ease;
}

.process-step:hover {
  transform: translateY(-3px);
  border-left-color: rgba(77, 238, 232, 0.8);
}

.step-number {
  display: inline-flex;
  font-family: var(--font-display);
  color: var(--accent);
  margin-bottom: 0.8rem;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.insights {
  background: linear-gradient(180deg, rgba(6, 12, 18, 0.4), rgba(10, 18, 28, 0.95));
}

.insight-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.insight-card {
  padding: 1.6rem;
  border-radius: 20px;
  background: rgba(8, 12, 20, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border 0.3s ease;
}

.insight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(111, 141, 255, 0.35);
}

.insight-tag {
  margin-top: 1.3rem;
  color: var(--accent-2);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.cta-section {
  background: radial-gradient(circle at right, rgba(111, 141, 255, 0.16), transparent 45%),
    linear-gradient(140deg, rgba(8, 12, 20, 0.95), rgba(6, 10, 16, 0.9));
}

.cta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.cta-panel {
  background: var(--glass-strong);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2rem;
  border-radius: 24px;
  display: grid;
  gap: 1.2rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.panel-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
}

.panel-row span {
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.7rem;
}

.panel-row strong {
  color: var(--text);
  font-weight: 600;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 0 3rem;
  background: rgba(6, 10, 16, 0.6);
  backdrop-filter: blur(16px);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.lite .hero-content,
.lite .card,
.lite .solution-card,
.lite .insight-card,
.lite .cta-panel,
.lite .holo-card,
.lite .hero-metrics > div {
  backdrop-filter: none;
}

.parallax-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

.orb {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(77, 238, 232, 0.7), transparent 60%);
  opacity: 0.6;
  filter: blur(10px);
  transform: translate3d(0, var(--parallax-offset, 0), 0);
}

.orb-a {
  width: 360px;
  height: 360px;
  top: -120px;
  left: -80px;
}

.orb-b {
  width: 280px;
  height: 280px;
  top: 20%;
  right: -120px;
  background: radial-gradient(circle at 30% 30%, rgba(111, 141, 255, 0.6), transparent 60%);
}

.orb-c {
  width: 220px;
  height: 220px;
  bottom: 10%;
  left: 15%;
  background: radial-gradient(circle at 30% 30%, rgba(255, 184, 107, 0.6), transparent 60%);
}

.orb-d {
  width: 420px;
  height: 420px;
  bottom: -200px;
  right: 20%;
  background: radial-gradient(circle at 30% 30%, rgba(77, 238, 232, 0.45), transparent 60%);
}

.parallax {
  transform: translate3d(0, var(--parallax-offset, 0), 0);
  will-change: transform;
}

.lite .parallax {
  transform: none;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--delay, 0s);
}

.preload .reveal {
  transition: none;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.glow-line {
  position: absolute;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(77, 238, 232, 0.6), transparent);
  --glow-color: rgba(77, 238, 232, 0.25);
  --glow-color-strong: rgba(77, 238, 232, 0.5);
  box-shadow: 0 0 20px var(--glow-color);
  opacity: 0.6;
  animation: glowPulse 6s ease-in-out infinite;
  z-index: 1;
}

.lite .glow-line {
  animation: none;
}

.glow-line-a {
  width: 220px;
  top: 28%;
  left: 12%;
  animation-delay: 0.6s;
}

.glow-line-b {
  width: 260px;
  bottom: 18%;
  right: 14%;
  background: linear-gradient(90deg, transparent, rgba(111, 141, 255, 0.6), transparent);
  --glow-color: rgba(111, 141, 255, 0.25);
  --glow-color-strong: rgba(111, 141, 255, 0.45);
  box-shadow: 0 0 18px var(--glow-color);
}


@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes gridShift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 220px 220px, 220px 220px;
  }
}

@keyframes cardGlow {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.8;
  }
}

@keyframes dataSweep {
  0%,
  100% {
    transform: translateX(-120%);
    opacity: 0;
  }
  45% {
    opacity: 0.25;
  }
  60% {
    transform: translateX(120%);
    opacity: 0.1;
  }
}

@keyframes statusPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 10px rgba(77, 238, 232, 0.4);
  }
  50% {
    transform: scale(1.3);
    box-shadow: 0 0 16px rgba(77, 238, 232, 0.9);
  }
}

@keyframes barPulse {
  0%,
  100% {
    transform: scaleY(0.85);
    opacity: 0.7;
  }
  50% {
    transform: scaleY(1.05);
    opacity: 1;
  }
}

@keyframes linePulse {
  0%,
  100% {
    opacity: 0.5;
    transform: rotate(-6deg) translateY(0);
  }
  50% {
    opacity: 0.9;
    transform: rotate(-6deg) translateY(-4px);
  }
}

@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.35;
    box-shadow: 0 0 16px var(--glow-color);
  }
  50% {
    opacity: 0.8;
    box-shadow: 0 0 26px var(--glow-color-strong);
  }
}

@keyframes scanline {
  0% {
    transform: translateY(-40%);
  }
  100% {
    transform: translateY(40%);
  }
}

@media (max-width: 1000px) {
  .hero-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-content {
    max-width: none;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .holo-card.mid,
  .holo-card.low {
    margin-left: 0;
  }

  .parallax-band {
    background-attachment: scroll;
  }
}

@media (max-width: 760px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0.9rem;
    padding: 1.2rem 1.4rem;
    background: rgba(6, 10, 16, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.55);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    z-index: 20;
  }

  body.nav-open .nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav a {
    font-size: 0.78rem;
  }

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

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .hero {
    padding: 120px 0 100px;
  }

  .hero::before,
  .hero::after {
    opacity: 0.5;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 1.1rem 1.25rem;
  }

  .hero-tags span {
    font-size: 0.55rem;
    letter-spacing: 0.18em;
  }

  .hero-note {
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .scroll-indicator {
    display: none;
  }

  .glow-line {
    display: none;
  }

  .glass-panel {
    display: none;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .parallax,
  .reveal,
  .scroll-indicator span,
  .grid-overlay,
  .glow-line,
  .status-dot,
  .signal-ring,
  .signal-graph .bar,
  .signal-graph .line {
    transition: none;
    animation: none;
  }

  .holo-card::before,
  .holo-card::after {
    animation: none;
  }

  .hero-visual::after {
    animation: none;
  }
}
