:root {
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: #020205;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #fff;
}

.landing-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 0;
}

.hero-canvas {
  position: relative;
  width: min(100vw, 1536px);
  line-height: 0;
  background: #020205;
  overflow: hidden;
}

.hero-image {
  display: block;
  width: 100%;
  height: auto;
}

.site-brand {
  position: absolute;
  left: 2%;
  top: 2%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 10px;
}

.site-brand__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(2, 2, 5, 0.94), rgba(2, 2, 5, 0.74)),
    rgba(2, 2, 5, 0.82);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.site-brand__mark {
  display: block;
  width: clamp(30px, 2.9vw, 44px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(95, 186, 255, 0.2));
}

.site-brand__word {
  font-size: clamp(22px, 2.15vw, 34px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(
    90deg,
    #70ecff 0%,
    #6a9fff 28%,
    #bd6aff 54%,
    #ff67bb 78%,
    #8fe6ff 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 18px rgba(129, 138, 255, 0.08);
}

.hotspot {
  position: absolute;
  display: block;
  border-radius: 28px;
  outline: none;
  transition: box-shadow 160ms ease, background-color 160ms ease,
    transform 160ms ease;
}

.hotspot:hover {
  background-color: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.hotspot:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.78),
    0 0 0 6px rgba(255, 255, 255, 0.12);
}

.hotspot:active {
  transform: scale(0.995);
}

.hotspot--skira {
  left: 4.8%;
  top: 22.2%;
  width: 39.6%;
  height: 58%;
}

.hotspot--aideals {
  left: 57.2%;
  top: 22%;
  width: 36.8%;
  height: 57%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .site-brand {
    left: 2.6%;
    top: 2.6%;
    padding: 7px 12px 7px 9px;
    gap: 8px;
  }
}
