:root {
  --bg: #060519;
  --panel: #0D0B3B;
  --panel-2: #150C2C;
  --text: #FFFFFF;
  --muted: rgba(255, 255, 255, .78);
  --muted-2: rgba(255, 255, 255, .58);
  --stroke: rgba(255, 255, 255, .16);
  --shadow-inset: inset 0 0 8.8px rgba(255, 255, 255, .65);
  --radius-lg: 56px;
  --radius-md: 30px;
  --radius-sm: 14px;
  --grad: radial-gradient(53.98% 100% at 50% 100%, #DFC5FF 0%, #AD6CFB 35.1%, #6B32FC 100%);
  --grad-blue: radial-gradient(53.98% 100% at 50% 100%, #00B7F9 0%, #003374 100%);
  --container: 1200px;
  --gap: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: "Inter Tight", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

main#main {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto
}

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

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

button {
  cursor: pointer
}

::selection {
  background: rgba(173, 108, 251, .35)
}

:is(a, button, summary, input, select, textarea):focus-visible {
  outline: 2px solid rgba(223, 197, 255, .85);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important
  }
}

.position-relative {
  position: relative;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.flex-column {
  flex-direction: column;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-space-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.container {
  width: min(var(--container), calc(100% - 20px));
  margin-inline: auto;
}

.text-center {
  text-align: center;
}

.skip {
  position: absolute;
  left: -9999px;
  top: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--stroke);
  z-index: 999;
}

.skip:focus {
  left: 10px
}

.w-100 {
  width: 100%;
}

.h1,
.h2,
.h3,
.section-title {
  margin: 0
}

.h1 {
  font-weight: 600;
  font-size: clamp(2.5rem, 0.8333rem + 5.5556vw, 5rem);
  line-height: 1.1394;
  letter-spacing: -0.03em;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.section-title {
  font-weight: 700;
  font-size: clamp(2.5rem, 1.3636rem + 4.8485vw, 5rem);
  line-height: 90%;
  letter-spacing: -0.03em;
  text-box-trim: trim-both;
  text-box-edge: cap alphabetic;
}

.h2 {
  font-weight: 600;
  font-size: clamp(32px, 3vw, 48px);
  letter-spacing: -0.03em;
}

.h3 {
  font-weight: 600;
  font-size: clamp(1rem, 0.8333rem + 0.5556vw, 1.25rem);
}

.p {
  margin: 0;
  color: var(--muted);
  line-height: 1.35
}

.p--muted {
  color: var(--muted-2)
}

.p--tiny {
  font-size: 12px
}

.kicker {
  font-family: "Cormorant Infant", serif;
  font-style: italic;
}

.lead {
  margin: 0;
  font-size: clamp(1rem, 0.8864rem + 0.4848vw, 1.25rem);
  line-height: 96%;
  letter-spacing: -0.01em;
}

.txt-grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section-head {
  margin: 0 0 50px
}

.section-head--center {
  text-align: center
}

.gradient-border {
  background: linear-gradient(#0D0B3B, #0D0B3B) padding-box,
    linear-gradient(to bottom right, rgba(255, 255, 255, 0.15) 0%, #0D0B3B 30%, #0D0B3B 70%, rgba(255, 255, 255, 0.15) 100%) border-box !important;
  border: 2px solid rgba(255, 255, 255, .1) !important;
  background-origin: border-box;
  background-clip: padding-box, border-box;
}