:root {
	--bg: #0a0a0a;
	--bg2: #111;
	--card: #111;
	--border: rgba(255, 255, 255, .1);
	--border-faint: #111;
	--text: #F0F9FF;
	--muted: #8BA6B4;
	--emerald: #48E5C2;
	--cyan: #22D3EE;
	--mint: #A7F3D0;
	--on-emerald: #344650;
}

* {
	scroll-behavior: smooth;
}

html,
body {
	background: var(--bg);
	color: var(--text);
	font-family: 'Inter', sans-serif;
}

@media (prefers-reduced-motion: reduce) {
	* {
		animation-duration: 0.001ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.001ms !important;
		scroll-behavior: auto !important;
	}
}

.glass {
	background: var(--card);
	border: 1px solid var(--border);
}

.glow-cta {
	box-shadow: none;
}

.glow-cta:hover {
	box-shadow: none;
}

.card-hover {
	transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.card-hover:hover {
	border-color: rgb(105 105 105 / 45%);
}

.reveal {
	opacity: 0;
	transform: translateY(18px);
	transition: opacity .5s ease, transform .5s ease;
}

.reveal.in {
	opacity: 1;
	transform: translateY(0);
}

.nav-shadow {
	box-shadow: 0 1px 0 rgba(255, 255, 255, .08);
}

footer {
	background-color: var(--bg2);
}

.tick-blink {
	animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink {
	0%,
	100% {
		opacity: 1;
	}
	50% {
		opacity: .35;
	}
}

::selection {
	background: rgba(72, 229, 194, .35);
	color: #fff;
}

input:focus-visible,
button:focus-visible,
a:focus-visible {
	outline: 2px solid var(--cyan);
	outline-offset: 2px;
}

.measure {
	max-width: 70ch;
}

#cookie-banner.cookie-popup-enter {
	opacity: 0;
	transform: translateY(20px);
	pointer-events: none;
}

#cookie-banner.cookie-popup-active {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}

.toggle-checkbox {
	right: 1.25rem;
	transition: right 0.3s ease, background-color 0.3s ease;
}

.toggle-checkbox:checked {
	right: 0;
}

.toggle-checkbox:checked+.toggle-label {
	background-color: #48E5C2;
	opacity: 1;
}

@keyframes or-slide-up {
    0% {
        opacity: 0;
        transform: translateY(16px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes or-live-ping {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    75%, 100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

@keyframes radar-sweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  @keyframes radar-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.5; }
  }
  @keyframes pop-in {
    0% { opacity: 0; transform: translateY(10px) scale(0.95); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }
  @keyframes fade-in {
    0% { opacity: 0; }
    100% { opacity: 1; }
  }
  .animate-radar-sweep {
    animation: radar-sweep 4s linear infinite;
  }
  .radar-circle {
    animation: radar-pulse 3s ease-in-out infinite;
  }
  .animate-pop-in {
    animation: pop-in 0.5s ease-out both;
  }
  .animate-fade-in {
    animation: fade-in 0.8s ease-in-out 1.2s both;
  }
  .radar-gradient-bg {
    background: conic-gradient(
      from 0deg at 50% 50%,
      transparent 0deg,
      rgba(72, 229, 194, 0.1) 30deg,
      rgba(34, 211, 238, 0.35) 90deg,
      transparent 120deg,
      transparent 360deg
    );
  }