:root {
  --bg-1: #050816;
  --bg-2: #0a1022;
  --bg-3: #0e1630;

  --text: #eef4ff;
  --muted: rgba(230, 240, 255, 0.72);

  --glass: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.16);

  --shadow: 0 20px 80px rgba(0, 0, 0, 0.45);

  --accent: #7dd3fc;
  --accent-2: #c084fc;
  --accent-3: #67e8f9;
  --accent-4: #a78bfa;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.12), transparent 25%),
    radial-gradient(circle at 80% 30%, rgba(34, 211, 238, 0.12), transparent 30%),
    linear-gradient(135deg, var(--bg-1), var(--bg-2) 45%, var(--bg-3));
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Helvetica,
    Arial,
    sans-serif;
  position: relative;
  user-select: none;
  cursor: default;
}

canvas,
.fx,
.mesh,
.vignette,
.noise,
.scanlines {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

#bg {
  z-index: 0;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .orb,
  .glow-ring,
  .badge-dot,
  .noise {
    animation: none !important;
  }

  .hero {
    transition: none !important;
  }
}
