:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
}

.hero-slider {
  background: #050814;
}

.slide {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 1400ms ease,
    transform 7000ms ease;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.waterline {
  background:
    radial-gradient(circle at 18% 86%, rgba(9, 191, 208, 0.45), transparent 16%),
    radial-gradient(circle at 86% 76%, rgba(184, 239, 82, 0.16), transparent 12%),
    linear-gradient(0deg, rgba(2, 207, 226, 0.28), rgba(2, 207, 226, 0));
  filter: blur(20px);
  opacity: 0.72;
}

.logo-orbit {
  position: relative;
  height: 12.5rem;
  width: 12.5rem;
  background: rgba(6, 20, 47, 0.88);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 0 32px rgba(9, 191, 208, 0.62),
    0 0 80px rgba(9, 191, 208, 0.36);
}

.logo-orbit::before {
  content: "";
  position: absolute;
  inset: -13px;
  border-radius: inherit;
  border: 1px solid rgba(9, 191, 208, 0.46);
  animation: pulse-ring 2800ms ease-in-out infinite;
}

.info-strip {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.08);
  padding: 1rem 1.1rem;
  backdrop-filter: blur(18px);
}

.info-strip span {
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.info-strip strong {
  display: block;
  margin-top: 0.35rem;
  color: #fff;
  font-size: 0.98rem;
  line-height: 1.35;
}

.qr-panel {
  transform: translateY(0);
  animation: float-panel 5600ms ease-in-out infinite;
}

@keyframes pulse-ring {
  0%,
  100% {
    opacity: 0.42;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@keyframes float-panel {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (min-width: 640px) {
  .logo-orbit {
    height: 16rem;
    width: 16rem;
  }
}

@media (min-width: 1024px) {
  .logo-orbit {
    height: 18rem;
    width: 18rem;
  }
}

@media (max-width: 420px) {
  .info-strip {
    padding: 0.9rem;
  }
}

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