:root {
  --bg: #030713;
  --bg-2: #071126;
  --panel: rgba(8, 18, 38, .78);
  --panel-2: rgba(12, 24, 50, .88);
  --panel-3: rgba(15, 31, 65, .58);

  --text: #f7f8ff;
  --muted: #9ba8c7;
  --muted-2: #6f7b9b;

  --purple: #7c3cff;
  --purple-2: #b34cff;
  --purple-3: #4d19d8;
  --cyan: #00d5ff;
  --blue: #2478ff;
  --green: #18e28d;

  --border: rgba(160, 130, 255, .18);
  --border-strong: rgba(178, 126, 255, .45);

  --shadow: 0 28px 90px rgba(62, 31, 190, .34);
  --shadow-soft: 0 18px 55px rgba(0, 0, 0, .35);

  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;

  --container: 1180px;
  --header-height: 88px;

  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(circle at 75% 4%, rgba(124, 60, 255, .34), transparent 32%),
    radial-gradient(circle at 17% 18%, rgba(0, 213, 255, .11), transparent 30%),
    linear-gradient(180deg, #030713 0%, #071126 44%, #030713 100%);
  overflow-x: hidden;
}

body::selection {
  background: rgba(124, 60, 255, .8);
  color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input,
textarea {
  font: inherit;
}

button,
select {
  cursor: pointer;
}

img,
svg {
  display: block;
}

svg {
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -10;
  pointer-events: none;
  overflow: hidden;
}

.bg-grid {
  position: absolute;
  inset: 0;
  opacity: .42;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 82px 82px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 78%);
}

.bg-orb {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(70px);
  opacity: .5;
}

.bg-orb-one {
  right: -170px;
  top: -120px;
  background: rgba(124, 60, 255, .55);
}

.bg-orb-two {
  left: -220px;
  top: 160px;
  background: rgba(0, 213, 255, .18);
}

.btn {
  min-height: 58px;
  padding: 0 26px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border: 1px solid rgba(255,255,255,.12);
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .01em;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.btn svg {
  font-size: 20px;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  border: 0;
  background:
    linear-gradient(135deg, #8e51ff 0%, #6928f2 46%, #4b15ca 100%);
  box-shadow:
    0 18px 52px rgba(124, 60, 255, .38),
    inset 0 1px 0 rgba(255,255,255,.22);
}

.btn-primary:hover {
  box-shadow:
    0 24px 70px rgba(124, 60, 255, .52),
    inset 0 1px 0 rgba(255,255,255,.28);
}

.btn-outline {
  background: rgba(9, 18, 37, .72);
  border-color: rgba(184, 150, 255, .2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.btn-outline:hover {
  border-color: rgba(184, 150, 255, .48);
  background: rgba(16, 29, 58, .82);
}

.btn.compact {
  min-height: 52px;
  padding-inline: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  padding: 0 15px;
  border-radius: 999px;
  color: #d6b7ff;
  background:
    linear-gradient(90deg, rgba(124,60,255,.18), rgba(177,76,255,.09));
  border: 1px solid rgba(177, 76, 255, .4);
  box-shadow:
    0 0 28px rgba(124,60,255,.16),
    inset 0 1px 0 rgba(255,255,255,.08);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 76px 0;
}

.section-tight {
  padding-top: 66px;
}

.section-heading {
  text-align: center;
  margin-bottom: 38px;
}

.section-heading span {
  display: inline-block;
  color: var(--purple-2);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 13px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  letter-spacing: -.045em;
}

.glow-border {
  position: relative;
}

.glow-border::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(0,213,255,.35), rgba(177,76,255,.45), rgba(255,255,255,.05));
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section {
    padding: 56px 0;
  }

  .btn {
    width: 100%;
  }
}