body {
  --cursor-x: 50%;
  --cursor-y: 50%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
      circle at 78% 16%,
      rgba(124, 58, 237, 0.26),
      rgba(124, 58, 237, 0) 46%
    ),
    radial-gradient(circle at 16% 34%, rgba(168, 85, 247, 0.14), rgba(168, 85, 247, 0) 42%);
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity 300ms ease;
  background:
    radial-gradient(
      280px circle at var(--cursor-x) var(--cursor-y),
      rgba(168, 85, 247, 0.28),
      rgba(168, 85, 247, 0.08) 45%,
      transparent 72%
    ),
    radial-gradient(
      720px circle at var(--cursor-x) var(--cursor-y),
      rgba(124, 58, 237, 0.16),
      rgba(124, 58, 237, 0.06) 40%,
      transparent 72%
    );
}

body.is-cursor-glow-active::after {
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  body::after {
    content: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-overlay);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header__inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.site-main {
  overflow: clip;
}

@media (max-width: 960px) {
  :root {
    --section-padding-y: 72px;
  }
}
