:root {
  --ink: #0f172a;
  --muted: #94a3b8;
  --cyan: #22d3ee;
  --blue: #2563eb;
  --deep: #0c1929;
  --glass: rgba(15, 23, 42, 0.45);
  --font: "Outfit", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font);
  color: #e2e8f0;
  background: var(--deep);
  overflow-x: hidden;
}

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: clamp(1.25rem, 4vw, 3rem);
}

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: radial-gradient(
      ellipse 120% 80% at 50% -20%,
      rgba(37, 99, 235, 0.35),
      transparent 55%
    ),
    radial-gradient(
      ellipse 90% 60% at 100% 100%,
      rgba(34, 211, 238, 0.12),
      transparent 50%
    ),
    linear-gradient(165deg, #020617 0%, #0c1929 45%, #020617 100%);
}

.bg__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: drift 18s ease-in-out infinite;
}

.bg__orb--1 {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  background: rgba(37, 99, 235, 0.65);
  top: -8%;
  left: -5%;
  animation-delay: 0s;
}

.bg__orb--2 {
  width: min(45vw, 360px);
  height: min(45vw, 360px);
  background: rgba(34, 211, 238, 0.35);
  bottom: 5%;
  right: -8%;
  animation-delay: -6s;
}

.bg__orb--3 {
  width: min(35vw, 280px);
  height: min(35vw, 280px);
  background: rgba(99, 102, 241, 0.25);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: -12s;
}

.bg__grid {
  position: absolute;
  inset: -50%;
  background-image: linear-gradient(
      rgba(148, 163, 184, 0.04) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(148, 163, 184, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 55% 55% at 50% 45%, black, transparent);
  animation: gridMove 28s linear infinite;
}

@keyframes drift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(4%, 3%) scale(1.05);
  }
  66% {
    transform: translate(-3%, 2%) scale(0.98);
  }
}

@keyframes gridMove {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.hero {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 44rem;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  background: var(--glass);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  margin-bottom: clamp(1.5rem, 4vw, 2.25rem);
  box-shadow: 0 0 32px rgba(34, 211, 238, 0.12);
}

.hero__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.35;
  }
}

.hero__logo-wrap {
  margin: 0 auto clamp(1.75rem, 5vw, 2.5rem);
  padding: clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.08) 0%,
    rgba(255, 255, 255, 0.02) 100%
  );
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.25rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.05) inset,
    0 -20px 60px rgba(37, 99, 235, 0.15) inset;
}

.hero__logo {
  display: block;
  width: min(92vw, 520px);
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.35));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #f8fafc;
}

.hero__title-accent {
  display: block;
  margin-top: 0.15em;
  background: linear-gradient(105deg, #67e8f9 0%, #60a5fa 45%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin: 0 auto 2rem;
  max-width: 32rem;
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  line-height: 1.65;
  color: var(--muted);
  font-weight: 400;
}

.hero__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #f0f9ff;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.5), rgba(14, 165, 233, 0.35));
  border: 1px solid rgba(125, 211, 252, 0.35);
  border-radius: 999px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.25);
}

.hero__pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.5);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.55);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(34, 211, 238, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0);
  }
}

.foot {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding-top: 2.5rem;
  font-size: 0.8rem;
  color: rgba(148, 163, 184, 0.6);
}

.foot p {
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .bg__orb,
  .bg__grid,
  .hero__logo,
  .hero__badge::before,
  .hero__pulse {
    animation: none;
  }
}
