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

:root {
  --background: #09090b;
  --text: #fafafa;
  --muted: #a1a1aa;
  --accent: #8b5cf6;
  --accent-light: #a78bfa;
}

body {
  min-height: 100vh;
  background: var(--background);
  color: var(--text);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

/* ---------- Background ---------- */

.background {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);

  background-size: 50px 50px;

  mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;

  filter: blur(120px);
  opacity: 0.15;

  animation: float 12s ease-in-out infinite alternate;
}

.blob-1 {
  background: var(--accent);
  top: -200px;
  left: -150px;
}

.blob-2 {
  background: #3b82f6;
  bottom: -250px;
  right: -150px;
  animation-delay: -5s;
}

@keyframes float {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(80px, 50px) scale(1.15);
  }
}

/* ---------- Content ---------- */

.container {
  width: min(90%, 760px);
  text-align: center;

  animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(25px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Badge ---------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 8px 14px;

  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.04);

  color: var(--muted);
  font-size: 14px;

  backdrop-filter: blur(10px);
}

.status-dot {
  width: 7px;
  height: 7px;

  background: #22c55e;
  border-radius: 50%;

  box-shadow: 0 0 12px rgba(34, 197, 94, 0.8);

  animation: pulse 2s infinite;
}

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

  50% {
    opacity: 0.5;
    transform: scale(0.75);
  }
}

/* ---------- Heading ---------- */

h1 {
  margin-top: 28px;

  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 700;
}

h1 span {
  background: linear-gradient(135deg, var(--accent-light), #60a5fa);

  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Paragraph ---------- */

.container > p {
  max-width: 540px;
  margin: 30px auto 0;

  color: var(--muted);

  font-size: 18px;
  line-height: 1.7;
}

/* ---------- Divider ---------- */

.divider {
  width: 60px;
  height: 1px;

  margin: 35px auto 20px;

  background: rgba(255, 255, 255, 0.2);
}

.small-text {
  margin-top: 0 !important;

  font-size: 14px !important;
  color: #71717a !important;
}

/* ---------- Mobile ---------- */

@media (max-width: 600px) {
  h1 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .container > p {
    font-size: 16px;
  }

  .blob {
    width: 300px;
    height: 300px;
    filter: blur(90px);
  }
}
/* ---------- Cursor Glow ---------- */

.cursor-glow {
  position: fixed;

  width: 350px;
  height: 350px;

  left: -175px;
  top: -175px;

  border-radius: 50%;

  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.35) 0%,
    rgba(139, 92, 246, 0.15) 25%,
    transparent 60%
  );

  pointer-events: none;

  z-index: 0;

  filter: blur(20px);

  transition: opacity 0.3s ease;
}

/* Make sure content stays above the glow */

.container {
  position: relative;
  z-index: 2;
}
