:root {
  --bg-deep: #030914;
  --bg-mid: #071426;
  --blue: #3b82f6;
  --blue-soft: #60a5fa;
  --cyan: #67e8f9;
  --text: #f5f9ff;
  --muted: rgba(226, 238, 255, 0.64);

  --glass: rgba(10, 28, 53, 0.42);
  --glass-light: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(177, 214, 255, 0.16);

  --shadow:
    0 30px 90px rgba(0, 0, 0, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  --radius-xl: 34px;
  --radius-lg: 26px;
  --page-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% -10%, #113764 0%, transparent 36%),
    linear-gradient(145deg, var(--bg-mid) 0%, var(--bg-deep) 58%, #02060d 100%);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.page-background {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.page-background::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(64, 153, 255, 0.13), transparent 30%),
    radial-gradient(circle at 85% 70%, rgba(21, 111, 255, 0.10), transparent 28%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.42;
}

.orb-one {
  width: 520px;
  height: 520px;
  top: -210px;
  left: -160px;
  background: #0b63ce;
}

.orb-two {
  width: 580px;
  height: 580px;
  right: -240px;
  top: 22%;
  background: #005cfa;
}

.orb-three {
  width: 460px;
  height: 460px;
  bottom: -240px;
  left: 26%;
  background: #0d8bb7;
}

.grid-glow {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

.glass-panel {
  border: 1px solid var(--glass-border);
  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,0.085),
      rgba(255,255,255,0.025)
    ),
    var(--glass);
  box-shadow: var(--shadow);
  backdrop-filter: blur(26px) saturate(125%);
  -webkit-backdrop-filter: blur(26px) saturate(125%);
}
