html[data-i18n-state="pending"] body[data-i18n-pending] {
  opacity: 0;
}

body[data-i18n-pending] {
  transition: opacity 0.12s linear;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: repeating-linear-gradient(0deg,
      transparent,
      transparent 3px,
      rgba(0, 0, 0, 0.08) 3px,
      rgba(0, 0, 0, 0.08) 4px);
  pointer-events: none;
  z-index: 9998;
}

body::after {
  content: '';
  position: fixed;
  left: 0;
  right: 0;
  top: -120px;
  height: 120px;
  background: linear-gradient(to bottom,
      transparent,
      rgba(5, 182, 212, 0.015) 50%,
      transparent);
  animation: scanline-sweep 14s linear infinite;
  pointer-events: none;
  z-index: 9997;
}

::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(5, 182, 212, 0.25);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(5, 182, 212, 0.5);
}

.text-glow {
  text-shadow: 0 0 8px currentColor;
}

.text-glow-lg {
  text-shadow: 0 0 10px rgba(103, 232, 249, 0.45);
}

.crt-border {
  border: 1px solid rgba(5, 182, 212, 0.35);
  box-shadow: 0 0 12px rgba(5, 182, 212, 0.15), inset 0 0 8px rgba(5, 182, 212, 0.03);
}

.crt-border-dim {
  border: 1px solid rgba(5, 182, 212, 0.15);
  box-shadow: inset 0 0 6px rgba(5, 182, 212, 0.02);
}

.hero-beam {
  background:
    radial-gradient(circle at top left, rgba(103, 232, 249, 0.10), transparent 30%),
    radial-gradient(circle at top right, rgba(5, 182, 212, 0.10), transparent 28%),
    linear-gradient(135deg, rgba(5, 182, 212, 0.05), rgba(2, 2, 2, 0.15) 40%, rgba(103, 232, 249, 0.06));
}

.animate-flicker {
  animation: flicker 9s infinite;
}

.step-num {
  font-variant-numeric: tabular-nums;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: rgba(5, 182, 212, 0.18);
  user-select: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(5, 182, 212, 0.35);
  background: rgba(5, 182, 212, 0.07);
  color: rgba(103, 232, 249, 0.9);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  font-family: 'JetBrains Mono', monospace;
}

.badge-green {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.07);
  color: rgba(74, 222, 128, 0.9);
}

.badge-amber {
  border-color: rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.07);
  color: rgba(252, 211, 77, 0.9);
}

.eyebrow-label {
  color: rgba(165, 243, 252, 0.8);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.micro-copy {
  color: rgba(186, 230, 253, 0.72);
}

.dot-live {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
  animation: pulse-dot 2s ease-in-out infinite;
}

.h-rule {
  border: none;
  border-top: 1px solid rgba(5, 182, 212, 0.12);
  margin: 0;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(5, 182, 212, 0.18);
  background: rgba(5, 182, 212, 0.025);
  color: rgba(165, 243, 252, 0.74);
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
  transition: all 0.2s ease;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.05em;
}

.nav-link:hover,
.nav-link:focus-visible {
  border-color: rgba(103, 232, 249, 0.4);
  background: rgba(5, 182, 212, 0.06);
  color: rgba(236, 254, 255, 0.96);
  outline: none;
}

.nav-link-sec {
  border-color: rgba(103, 232, 249, 0.22);
}

.oss-card {
  background: linear-gradient(135deg, rgba(5, 182, 212, 0.06), rgba(103, 232, 249, 0.02));
}

@keyframes scanline-sweep {
  0% {
    top: -120px;
  }

  100% {
    top: 100vh;
  }
}

@keyframes flicker {
  0%,
  88%,
  90%,
  92%,
  100% {
    opacity: 1;
  }

  89% {
    opacity: 0.82;
  }

  91% {
    opacity: 0.94;
  }
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}

body {
  background-color: #020202;
  color: white;
  overflow-x: hidden;
}
