* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #070709;
  --text: #f7f7f8;
  --muted: rgba(255, 255, 255, 0.58);
  --line: rgba(255, 255, 255, 0.12);
  --accent: 151, 116, 255;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

body {
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 40%, rgba(110, 73, 255, 0.08), transparent 38%),
    var(--bg);
  color: var(--text);
  font-family: "Rajdhani", sans-serif;
  cursor: none;
}

#background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.glow {
  position: fixed;
  width: 38vw;
  height: 38vw;
  border-radius: 999px;
  filter: blur(90px);
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
  transition: transform 0.2s ease-out;
}

.glow-one {
  left: -12vw;
  top: -12vw;
  background: rgb(124, 92, 255);
}

.glow-two {
  right: -14vw;
  bottom: -15vw;
  background: rgb(55, 170, 255);
}



.hero {
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 32px;
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin-bottom: 30px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgb(158, 130, 255);
  box-shadow: 0 0 16px rgba(158, 130, 255, 0.85);
  animation: pulse 2s infinite ease-in-out;
}

h1 {
  max-width: 900px;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(52px, 8vw, 110px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 600;
}

h1 span {
  display: block;
  color: rgba(255, 255, 255, 0.38);
}

.subtitle {
  margin-top: 30px;
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.75;
}

.divider {
  width: min(350px, 55vw);
  height: 1px;
  margin-top: 34px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );
}

.footer-text {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition:
    width 0.15s ease,
    height 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease;
}

.cursor-ring.active {
  width: 56px;
  height: 56px;
  border-color: rgba(166, 135, 255, 0.95);
  background: rgba(150, 110, 255, 0.08);
}

.click-flash {
  position: fixed;
  left: 0;
  top: 0;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(178, 151, 255, 0.8);
  border-radius: 50%;
  pointer-events: none;
  z-index: 8;
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
}

.click-flash.show {
  animation: clickWave 0.7s ease-out forwards;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.9);
  }

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

@keyframes clickWave {
  0% {
    opacity: 0.95;
    transform: translate(-50%, -50%) scale(0.8);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(13);
  }
}

@media (pointer: coarse) {
  body {
    cursor: auto;
  }

  .cursor-ring {
    display: none;
  }
}

@media (max-width: 640px) {
  

.hero {
    padding: 24px;
  }

  .badge {
    margin-bottom: 24px;
  }

  .subtitle {
    margin-top: 24px;
  }
}
