*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  min-height: 100vh;
  color: #f4f7ff;
  background: radial-gradient(circle at top, #111827, #05070f 70%);
  overflow: hidden;
  cursor: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 2.5rem;
}

.hero__content {
  display: grid;
  gap: 1.5rem;
}

.hero__eyebrow {
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: #9ab6ff;
  margin: 0;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin: 0;
  text-transform: uppercase;
}

.hero__cta {
  justify-self: center;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 1rem;
  border-radius: 18px;
  color: #e6ecff;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 150ms ease, box-shadow 150ms ease;
  box-shadow: 0 8px 24px rgba(90, 125, 255, 0.2);
}

.hero__cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 36px rgba(90, 125, 255, 0.35);
}

.hero__cta:focus-visible {
  outline: 2px solid #9ab6ff;
  outline-offset: 6px;
}

.hero__cta-image {
  width: 104px;
  height: 104px;
  object-fit: contain;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  padding: 10px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hero__cta-caption {
  font-size: 0.75rem;
}

.scene {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.pigeon {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 140px;
  height: 120px;
  transform: translate(-50%, -50%);
}

.pigeon__body {
  position: absolute;
  width: 80px;
  height: 52px;
  left: 30px;
  top: 40px;
  background: linear-gradient(135deg, #c8d7ff, #9ab6ff);
  transform: skew(-10deg);
  border-radius: 10px;
}

.pigeon__head {
  position: absolute;
  width: 24px;
  height: 24px;
  left: 85px;
  top: 30px;
  background: #b4c8ff;
  border-radius: 50%;
}

.pigeon__wing {
  position: absolute;
  width: 62px;
  height: 42px;
  background: linear-gradient(135deg, #86e6ff, #5a7dff);
  opacity: 0.92;
  border-radius: 8px 26px 8px 22px;
}

.pigeon__wing--left {
  left: 10px;
  top: 18px;
  transform: rotate(-16deg);
}

.pigeon__wing--right {
  right: 8px;
  top: 18px;
  transform: rotate(16deg);
}

.pigeon__beak {
  position: absolute;
  width: 14px;
  height: 14px;
  left: 105px;
  top: 40px;
  background: #ffd166;
  transform: rotate(45deg);
}

.pigeon__eye {
  position: absolute;
  width: 6px;
  height: 6px;
  left: 97px;
  top: 38px;
  background: #0f172a;
  border-radius: 50%;
}

.pigeon__tail {
  position: absolute;
  width: 28px;
  height: 16px;
  left: 8px;
  top: 52px;
  background: #9ab6ff;
  transform: skew(-12deg) rotate(-10deg);
  border-radius: 4px;
}

.satellites {
  position: absolute;
  inset: 0;
}

.satellite {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff, #7ef9ff 40%, #487bff);
  box-shadow: 0 0 10px rgba(126, 249, 255, 0.7);
  transform: translate(-50%, -50%);
}

.satellite::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 4px;
  background: rgba(255, 255, 255, 0.7);
  left: -5px;
  top: 6px;
  border-radius: 999px;
}

.cursor {
  position: fixed;
  width: 42px;
  height: 42px;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 3;
  transform: translate(-50%, -50%);
  will-change: transform, left, top;
}

.cursor__icon {
  width: 100%;
  height: 100%;
  display: block;
  filter: drop-shadow(0 4px 10px rgba(90, 125, 255, 0.35));
}

@media (max-width: 600px) {
  .hero {
    padding: 2rem 1.5rem;
  }

  .pigeon {
    transform: translate(-50%, -50%) scale(0.8);
  }
}
