@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1, h2, h3, h4, h5, h6, p, ul, ol, dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
     Пригодится в большинстве ситуаций
     (когда, например, нужно будет "прижать" футер к низу сайта)
    */
  height: 100%;
  /**
     Убираем скачок интерфейса по горизонтали
     при появлении / исчезновении скроллбара
    */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
     Пригодится в большинстве ситуаций
     (когда, например, нужно будет "прижать" футер к низу сайта)
    */
  min-height: 100%;
  /**
     Унифицированный интерлиньяж
    */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
 */
[fill] {
  fill: currentColor;
}

[stroke] {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Archivo";
  src: url("../fonts/Archivo-ExtraBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-ExtraBold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
:root {
  --gradient-bg: linear-gradient(180deg, #070A2E 0%, #0A0F3D 45%, #081049 100%);
  --font-family-base: 'Archivo', sans-serif;
  --container-width: 73.75rem;
  --container-padding: 3.125rem;
  --border-radius-sm: 0.875rem;
  --border-radius-md: 1rem;
  --border-radius-lg: 2.5rem;
  --transition-duration: 0.2s;
  --section-margin: 3.75rem;
  --color-white: #ffffff;
  --color-blue: #2F6BFF;
  --color-blue-accent: #14A0FF;
  --color-blue-light: #ADC5FF;
  --color-navy: #070A2E;
  --color-dark-blue: #0A1252;
  --color-purple: #6002E3;
  --color-lime: #CDFB00;
  --color-off-white: #EEF2FF;
  --color-nav-link: #DCE7F5;
  --nav-bg: rgba(0, 0, 0, 0.28);
  --nav-border-color: rgba(150, 175, 255, 0.18);
}
@media (width <= 47.99875rem) {
  :root {
    --container-padding: 1.25rem;
    --section-margin: 2.5rem 1.25rem 1.25rem;
  }
}

.container {
  max-width: calc(var(--container-width) + 2 * var(--container-padding));
  margin-inline: auto;
  padding-inline: var(--container-padding);
}
.container--no-padding {
  padding-block: 0;
}

.section {
  margin-block: var(--section-margin);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

body {
  font-family: var(--font-family-base);
  color: var(--color-white);
  font-weight: 900;
  position: relative;
  background: var(--gradient-bg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

a,
button,
input,
textarea,
svg * {
  transition-duration: var(--transition-duration);
}

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

.nav {
  z-index: 1000;
}
.nav__bar {
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border-color);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding-inline: 1.125rem;
}
@media (width <= 47.99875rem) {
  .nav__bar {
    padding-inline: 0;
  }
}
.nav__inner {
  min-height: 4.625rem;
  padding-block: 0.875rem;
  padding-inline: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav__logo img {
  display: block;
  height: 2rem;
  width: auto;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: 1.625rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
}
@media (any-hover: hover) {
  .nav__link:hover {
    color: var(--color-blue-accent);
  }
}
@media (any-hover: none) {
  .nav__link:active {
    color: var(--color-blue-accent);
  }
}
.nav__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding-inline: 1.5rem;
  padding-block: 0.75rem;
  background: var(--color-blue);
  border-radius: var(--border-radius-md);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  font-weight: 800;
  line-height: 1.25rem;
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (any-hover: hover) {
  .nav__button:hover {
    opacity: 0.85;
  }
}
@media (any-hover: none) {
  .nav__button:active {
    opacity: 0.85;
  }
}
.nav__burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav__burger-open {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}
@media (width <= 47.99875rem) {
  .nav__inner {
    min-height: 3rem;
    padding-block: 0.75rem;
    padding-inline: 1.25rem;
  }
  .nav__logo img {
    height: 1.5rem;
  }
  .nav__list, .nav__button {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
}

.mobile-overlay {
  margin: 0;
  padding: 0;
  border: none;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  background: var(--color-navy);
  position: fixed;
  inset: 0;
  z-index: 2000;
  overflow-y: auto;
  overflow-x: hidden;
}
.mobile-overlay::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.mobile-overlay[open] {
  display: flex;
  flex-direction: column;
}
.mobile-overlay__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 3rem;
  padding-inline: 1.25rem;
  padding-block: 0.75rem;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--nav-border-color);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  flex-shrink: 0;
}
.mobile-overlay__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.mobile-overlay__logo img {
  display: block;
  height: 1.5rem;
  width: auto;
}
.mobile-overlay__close-wrapper {
  display: flex;
  align-items: center;
}
.mobile-overlay__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.mobile-overlay__close img {
  display: block;
  width: 1.5rem;
  height: 1.5rem;
}
@media (any-hover: hover) {
  .mobile-overlay__close:hover {
    opacity: 0.8;
  }
}
@media (any-hover: none) {
  .mobile-overlay__close:active {
    opacity: 0.8;
  }
}
.mobile-overlay__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding-inline: 2.5rem;
  padding-block: 3.75rem;
  flex: 1 1 auto;
  width: 100%;
  background: var(--color-navy);
}
.mobile-overlay__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}
.mobile-overlay__item {
  width: 100%;
  max-width: 17.5rem;
}
.mobile-overlay__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.75rem;
  border-radius: var(--border-radius-sm);
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  font-weight: 600;
  line-height: 1.25rem;
  color: var(--color-nav-link);
  text-decoration: none;
}
@media (any-hover: hover) {
  .mobile-overlay__link:hover {
    background: rgba(255, 255, 255, 0.06);
  }
}
@media (any-hover: none) {
  .mobile-overlay__link:active {
    background: rgba(255, 255, 255, 0.06);
  }
}
.mobile-overlay__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 17.5rem;
  min-height: 3rem;
  padding-inline: 1.5rem;
  padding-block: 0.75rem;
  background: var(--color-blue);
  box-shadow: 0 1.125rem 2.75rem rgba(59, 91, 255, 0.5);
  border-radius: var(--border-radius-md);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  font-weight: 800;
  line-height: 1.25rem;
  color: var(--color-white);
  text-decoration: none;
  text-transform: uppercase;
}
@media (any-hover: hover) {
  .mobile-overlay__button:hover {
    opacity: 0.85;
  }
}
@media (any-hover: none) {
  .mobile-overlay__button:active {
    opacity: 0.85;
  }
}

.hero {
  overflow: visible;
}
.hero__mobile-banner {
  display: none;
}
.hero__inner {
  position: relative;
  min-height: 40.1875rem;
  display: flex;
  align-items: flex-start;
}
@media (width <= 47.99875rem) {
  .hero__inner {
    padding-block: 2.5rem;
  }
}
@media (width <= 30.06125rem) {
  .hero__inner {
    padding-bottom: 0;
  }
}
.hero__inner-bg {
  position: absolute;
  height: auto;
  right: 0;
  top: -20%;
  z-index: -1;
  width: 100vw;
  max-width: 76.4375rem;
}
@media (width <= 1100px) {
  .hero__inner-bg {
    display: none;
  }
}
.hero__content {
  width: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5625rem;
  padding: 0.625rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 62.4375rem;
  outline: 1px solid rgba(150, 175, 255, 0.18);
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.hero__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  background: var(--color-lime);
  box-shadow: 0 0 0.75rem #C6F24E;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero__badge-text {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.6875rem, 0.6630434783rem + 0.1086956522vw, 0.75rem);
  font-weight: 700;
  color: var(--color-white);
}
.hero__title-group {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 45rem;
}
.hero__title {
  display: flex;
  flex-direction: column;
  font-family: "Archivo", sans-serif;
  font-size: clamp(2.375rem, 1.347826087rem + 4.5652173913vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.9;
  margin: 0;
}
.hero__title-line {
  display: block;
}
.hero__title-line--white {
  color: var(--color-off-white);
}
.hero__title-line--yellow {
  color: var(--color-lime);
}
.hero__desc {
  max-width: 26.3125rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.875rem, 0.8260869565rem + 0.2173913043vw, 1rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-white);
  margin: 0;
}
.hero__promo {
  display: inline-flex;
  align-items: stretch;
  width: 31rem;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1), 0 0.9375rem 0.9375rem rgba(0, 0, 0, 0.09), 0 3.75rem 1.5rem rgba(0, 0, 0, 0.01);
}
.hero__promo-info {
  flex: 1;
  min-height: 3.875rem;
  padding: 1rem 1.5rem;
  background: var(--color-dark-blue);
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  justify-content: center;
  overflow: hidden;
}
.hero__promo-label {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.75rem, 0.7010869565rem + 0.2173913043vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.25rem;
  color: var(--color-lime);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
}
.hero__promo-label::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background-image: url(../images/hero/star_icon.png);
  background-repeat: no-repeat;
}
.hero__promo-code {
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.25rem, 0.9565217391rem + 1.3043478261vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-off-white);
}
.hero__promo-copy {
  align-self: stretch;
  padding-inline: 1.5rem;
  padding-block: 1.25rem;
  background: var(--color-blue);
  border: none;
  cursor: pointer;
  font-family: "Archivo", sans-serif;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  font-weight: 800;
  line-height: 1.25rem;
  color: var(--color-white);
  white-space: nowrap;
  transition: opacity var(--transition-duration);
}
@media (any-hover: hover) {
  .hero__promo-copy:hover {
    opacity: 0.85;
  }
}
@media (any-hover: none) {
  .hero__promo-copy:active {
    opacity: 0.85;
  }
}
.hero__promo-copy--mobile {
  display: none;
  text-transform: uppercase;
}
@media (width <= 30.06125rem) {
  .hero__promo-copy--mobile {
    display: block;
  }
}
@media (width <= 30.06125rem) {
  .hero__promo-copy--desktop {
    display: none;
  }
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.75rem;
  padding-inline: 2rem;
  padding-block: 1.25rem;
  border-radius: var(--border-radius-md);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.25rem;
  text-decoration: none;
  transition: opacity var(--transition-duration);
  overflow: visible;
}
.hero__btn--primary {
  background: var(--color-blue);
  box-shadow: 0 1.125rem 2.75rem rgba(59, 91, 255, 0.5);
  color: var(--color-white);
}
@media (any-hover: hover) {
  .hero__btn--primary:hover {
    background: #1659FF;
    box-shadow: 0 18px 44px 0 rgba(59, 91, 255, 0.5);
  }
}
@media (any-hover: none) {
  .hero__btn--primary:active {
    background: #1659FF;
    box-shadow: 0 18px 44px 0 rgba(59, 91, 255, 0.5);
  }
}
.hero__btn--stroke {
  background: var(--color-dark-blue);
  outline: 1px solid var(--color-blue);
  color: var(--color-off-white);
}
@media (any-hover: hover) {
  .hero__btn--stroke:hover {
    outline: 1px solid #0F54FF;
    background: #06105E;
  }
}
@media (any-hover: none) {
  .hero__btn--stroke:active {
    outline: 1px solid #0F54FF;
    background: #06105E;
  }
}
.hero__disclaimer {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.6875rem, 0.6630434783rem + 0.1086956522vw, 0.75rem);
  font-weight: 500;
  line-height: 1rem;
  color: var(--color-blue-light);
}
.hero__visual {
  position: absolute;
  top: 0;
  right: -3.125rem;
  width: 51.25rem;
  height: 100%;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  border-radius: 50%;
}
.hero__glow--purple {
  width: 25.375rem;
  height: 25.375rem;
  background: var(--color-purple);
  top: 5.4375rem;
  left: 3.125rem;
  filter: blur(6.25rem);
}
.hero__glow--blue {
  width: 22.625rem;
  height: 22.625rem;
  background: var(--color-blue);
  top: 2rem;
  right: 0;
  filter: blur(6.25rem);
}
.hero__visual-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12.875rem;
  z-index: 1;
  background: radial-gradient(ellipse 45% 41% at 51% 55%, black 0%, rgba(0, 0, 0, 0) 100%);
}
.hero__visual-img {
  position: absolute;
  top: -0.4375rem;
  left: 0;
  width: 100vw;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left top;
     object-position: left top;
}
@media (width <= 1100px) {
  .hero__visual-img--desktop {
    display: none;
  }
}
.hero__visual-img--mobile {
  display: none;
}
@media (width <= 1100px) {
  .hero__visual-img--mobile {
    display: block;
  }
}
.hero__visual-icon {
  position: absolute;
  width: 5.8125rem;
  height: 5.8125rem;
  right: 3.125rem;
  bottom: 5.625rem;
  z-index: 2;
}
@media (width <= 1100px) {
  .hero__inner {
    flex-direction: column;
    min-height: auto;
  }
  .hero__content {
    width: 100%;
    gap: 1.25rem;
  }
  .hero__title-group {
    gap: 0.75rem;
  }
  .hero__badge {
    padding: 0.375rem 0.75rem;
    gap: 0.5rem;
  }
  .hero__badge-dot {
    width: 0.375rem;
    height: 0.375rem;
  }
  .hero__desc {
    max-width: 100%;
  }
  .hero__promo {
    width: 100%;
    border-radius: 1rem;
  }
  .hero__actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  .hero__btn {
    align-self: stretch;
    height: 3rem;
    padding-block: 0.75rem;
  }
  .hero__btn--stroke {
    display: none;
  }
  .hero__visual {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 21.1875rem;
  }
  .hero__glow--purple {
    width: 11.5rem;
    height: 11.5rem;
    top: 5.6875rem;
    left: 1.375rem;
    filter: blur(3.125rem);
  }
  .hero__glow--blue {
    width: 10.25rem;
    height: 10.25rem;
    top: 4.125rem;
    right: auto;
    left: 9.875rem;
    filter: blur(3.125rem);
  }
  .hero__visual-img {
    top: 0;
    left: -7.8125rem;
    width: 38.0625rem;
    height: 21.25rem;
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: left top;
       object-position: left top;
  }
  .hero__visual-icon {
    display: none;
  }
}
@media (width <= 30.06125rem) {
  .hero__mobile-banner {
    display: block;
    width: 100vw;
    align-self: center;
    margin-top: -10%;
  }
  .hero__mobile-banner img {
    width: 100%;
  }
  .hero {
    margin-bottom: 0;
  }
}

.overview .container {
  padding-block: 1.25rem;
}
@media (width <= 30.06125rem) {
  .overview {
    margin-top: 0;
  }
}
.overview__grid {
  display: flex;
  align-items: stretch;
  gap: 0.875rem;
}
@media (width <= 47.99875rem) {
  .overview__grid {
    padding-block: 0;
  }
}
.overview__card {
  flex: 1;
  padding: 1.5rem;
  border-radius: 1.375rem;
  display: flex;
  flex-direction: column;
}
.overview__card--stats {
  gap: 1rem;
  background: var(--color-dark-blue);
  outline: 1px solid rgba(150, 185, 255, 0.16);
}
.overview__card--cta {
  gap: 1.5rem;
  background: var(--color-blue);
  overflow: hidden;
  position: relative;
}
.overview__card-star {
  width: 7.625rem;
  height: 7.625rem;
  position: absolute;
  bottom: -10px;
  right: -15px;
}
@media (width <= 47.99875rem) {
  .overview__card-star {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 5rem;
    height: 5rem;
  }
}
.overview__card-star img {
  width: 100%;
}
.overview__label {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.75rem, 0.7010869565rem + 0.2173913043vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1rem;
  color: var(--color-lime);
}
.overview__stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.overview__stat {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.overview__number {
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.75rem, 1.4076086957rem + 1.5217391304vw, 2.625rem);
  font-weight: 900;
  line-height: 1;
  color: var(--color-white);
}
.overview__number--accent {
  color: var(--color-lime);
}
.overview__stat-name {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.625rem, 0.527173913rem + 0.4347826087vw, 0.875rem);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-blue-light);
}
.overview__cta-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.overview__cta-label {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.75rem, 0.7010869565rem + 0.2173913043vw, 0.875rem);
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1rem;
  color: #C0D2FF;
}
.overview__cta-title {
  font-family: "Archivo", sans-serif;
  font-size: clamp(1.75rem, 1.652173913rem + 0.4347826087vw, 2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.06;
  color: var(--color-white);
  margin: 0;
}
.overview__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 1rem 2rem;
  background: var(--color-white);
  box-shadow: 0 1.125rem 2.75rem rgba(59, 91, 255, 0.5);
  border-radius: var(--border-radius-md);
  font-family: "Archivo", sans-serif;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.25rem;
  color: var(--color-blue);
  text-decoration: none;
  transition: opacity var(--transition-duration);
  max-width: -moz-fit-content;
  max-width: fit-content;
}
@media (any-hover: hover) {
  .overview__cta-btn:hover {
    opacity: 0.7;
  }
}
@media (any-hover: none) {
  .overview__cta-btn:active {
    opacity: 0.7;
  }
}
@media (width <= 47.99875rem) {
  .overview__grid {
    flex-direction: column;
  }
  .overview__card {
    padding: 1.25rem;
  }
  .overview__card--cta {
    gap: 1.25rem;
  }
  .overview__stat {
    gap: 0.125rem;
  }
  .overview__cta-body {
    gap: 0.5rem;
  }
  .overview__cta-btn {
    padding-block: 0.5rem;
  }
}

.players {
  margin-bottom: 5rem;
}
@media (width <= 47.99875rem) {
  .players {
    margin-bottom: 0;
  }
}
.players .container {
  padding-block: 1.25rem;
}
@media (width <= 47.99875rem) {
  .players .container {
    padding-block: 2.5rem;
  }
}
.players__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.players__title {
  font-family: "Archivo", sans-serif;
  font-size: clamp(2rem, 1.8043478261rem + 0.8695652174vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-off-white);
  margin: 0;
}
.players__desc {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.875rem, 0.8260869565rem + 0.2173913043vw, 1rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-blue-light);
  max-width: 26.3125rem;
  margin: 0;
}
.players__grid {
  display: flex;
  align-items: stretch;
  gap: 0.875rem;
}
.players__row {
  display: contents;
}
.players__card {
  flex: 1;
  padding: 0.9375rem;
  background: var(--color-dark-blue);
  border-radius: 1.5rem;
  outline: 1px solid rgba(150, 175, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}
.players__photo-wrap {
  align-self: stretch;
  width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  position: relative;
}
.players__card--red .players__photo-wrap {
  background: linear-gradient(180deg, #DF020D 0%, rgba(223, 2, 13, 0) 100%);
}
.players__card--blue .players__photo-wrap {
  background: linear-gradient(180deg, #3B5BFF 0%, rgba(59, 91, 255, 0) 100%);
}
.players__card--lime .players__photo-wrap {
  background: linear-gradient(180deg, #CDF53A 0%, rgba(205, 245, 58, 0) 100%);
}
.players__card--purple .players__photo-wrap {
  background: linear-gradient(180deg, #6002E3 0%, rgba(96, 2, 227, 0) 100%);
}
.players__photo {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.players__info {
  display: flex;
  flex-direction: column;
  padding-top: 0.625rem;
  gap: 0.125rem;
}
.players__name {
  font-family: "Archivo", sans-serif;
  font-size: clamp(0.875rem, 0.7282608696rem + 0.652173913vw, 1.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-off-white);
}
@media (width <= 30.06125rem) {
  .players__name--nowrap {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 130px;
  }
}
.players__country {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.75rem, 0.7010869565rem + 0.2173913043vw, 0.875rem);
  font-weight: 700;
  line-height: 1.125rem;
  color: var(--color-blue-light);
  padding-bottom: 0.5rem;
}
.players__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.4375rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 62.4375rem;
  outline: 1px solid rgba(150, 175, 255, 0.18);
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.625rem, 0.6005434783rem + 0.1086956522vw, 0.6875rem);
  font-weight: 800;
  line-height: 0.875rem;
  color: var(--color-lime);
}
@media (width <= 47.99875rem) {
  .players__grid {
    flex-direction: column;
    gap: 0.75rem;
  }
  .players__row {
    display: flex;
    gap: 0.75rem;
  }
  .players__card {
    flex: 1;
    padding: 0.75rem;
    border-radius: 1rem;
    gap: 0.5rem;
  }
  .players__info {
    padding-top: 0;
  }
  .players__name {
    text-transform: uppercase;
  }
  .players__tag {
    padding: 0.25rem 0.5rem;
  }
}

.promo-code {
  margin-bottom: 5rem;
}
@media (width <= 47.99875rem) {
  .promo-code {
    margin-bottom: 0;
  }
}
@media (width <= 47.99875rem) {
  .promo-code .container {
    padding-block: 1.25rem;
  }
}
.promo-code__box {
  position: relative;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(59, 91, 255, 0.24) 0%, rgba(59, 91, 255, 0) 100%);
  box-shadow: 0 1.25rem 3.125rem rgba(0, 0, 0, 0.2);
  border-radius: 1.875rem;
  outline: 1px solid rgba(150, 175, 255, 0.18);
  outline-offset: -1px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (width <= 47.99875rem) {
  .promo-code__box {
    padding: 1.5rem;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.promo-code__content {
  flex: 1 1 0;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}
@media (width <= 47.99875rem) {
  .promo-code__content {
    max-width: 100%;
    align-self: stretch;
    gap: 1.5rem;
  }
}
.promo-code__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5625rem 0.875rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 62.4375rem;
  outline: 1px solid rgba(150, 175, 255, 0.18);
  outline-offset: -1px;
}
.promo-code__badge span {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.625rem, 0.5760869565rem + 0.2173913043vw, 0.75rem);
  font-weight: 800;
  color: var(--color-blue-light);
  line-height: 1.2;
  text-transform: uppercase;
}
@media (width <= 47.99875rem) {
  .promo-code__badge {
    padding: 0.375rem 0.75rem;
  }
}
.promo-code__title-group {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
}
.promo-code__title {
  font-family: var(--font-family-base);
  font-size: clamp(2rem, 1.6086956522rem + 1.7391304348vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.03;
  color: var(--color-off-white);
  margin: 0;
  width: 100%;
  display: block;
  letter-spacing: -2.08px;
}
.promo-code__title-line {
  display: inline;
}
.promo-code__title-line--accent {
  color: var(--color-lime);
}
.promo-code__desc {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.875rem, 0.8260869565rem + 0.2173913043vw, 1rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-blue-light);
  max-width: 23.9375rem;
  margin: 0;
}
@media (width <= 47.99875rem) {
  .promo-code__desc--desktop {
    display: none;
  }
}
.promo-code__desc--mobile {
  display: none;
}
@media (width <= 47.99875rem) {
  .promo-code__desc--mobile {
    display: block;
    max-width: 100%;
  }
}
.promo-code__action-group {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
.promo-code__action-box {
  align-self: stretch;
  display: flex;
  align-items: stretch;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1), 0 0.9375rem 0.9375rem rgba(0, 0, 0, 0.09), 0 3.75rem 1.5rem rgba(0, 0, 0, 0.01);
  border-radius: 1.25rem;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}
@media (width <= 47.99875rem) {
  .promo-code__action-box {
    width: 100%;
    flex-direction: column;
    padding: 1rem;
    background: var(--color-dark-blue);
    border-radius: 1rem;
    outline: 1px solid rgba(150, 175, 255, 0.18);
    outline-offset: -1px;
    gap: 0.75rem;
    box-shadow: none;
  }
}
.promo-code__code-wrap {
  flex: 1 1 0;
  min-height: 5.25rem;
  padding: 1rem 1.5rem;
  background: var(--color-dark-blue);
  border-top-left-radius: 1.25rem;
  border-bottom-left-radius: 1.25rem;
  outline: 1px solid rgba(150, 175, 255, 0.18);
  outline-offset: -1px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  overflow: hidden;
}
@media (width <= 47.99875rem) {
  .promo-code__code-wrap {
    padding: 0;
    background: transparent;
    outline: none;
    border-radius: 0;
    align-items: center;
    height: auto;
    font-size: clamp(1.5rem, 1.3043478261rem + 0.8695652174vw, 2rem);
  }
}
@media (width <= 30.06125rem) {
  .promo-code__code-wrap {
    min-height: 26px;
  }
}
.promo-code__code {
  font-family: var(--font-family-base);
  font-size: clamp(1.5rem, 1.3043478261rem + 0.8695652174vw, 2rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--color-off-white);
  text-transform: uppercase;
}
.promo-code__copy-btn {
  min-height: 3.75rem;
  padding-inline: 1.5rem;
  padding-block: 1.25rem;
  background: var(--color-blue);
  border: none;
  cursor: pointer;
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25rem;
  color: var(--color-white);
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-duration);
}
@media (any-hover: hover) {
  .promo-code__copy-btn:hover {
    opacity: 0.85;
  }
}
@media (any-hover: none) {
  .promo-code__copy-btn:active {
    opacity: 0.85;
  }
}
@media (width <= 47.99875rem) {
  .promo-code__copy-btn {
    align-self: stretch;
    min-height: 3rem;
    padding-inline: 2rem;
    padding-block: 0.75rem;
    border-radius: 1rem;
    box-shadow: 0 1.125rem 2.75rem rgba(59, 91, 255, 0.5);
    text-transform: uppercase;
  }
}
.promo-code__note {
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-blue-light);
  margin: 0;
}
@media (width <= 47.99875rem) {
  .promo-code__note {
    display: none;
  }
}
.promo-code__btns {
  align-self: stretch;
  padding-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8125rem;
}
@media (width <= 47.99875rem) {
  .promo-code__btns {
    display: none;
  }
}
.promo-code__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 3.75rem;
  padding-inline: 2rem;
  padding-block: 1.25rem;
  border-radius: var(--border-radius-md);
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.25rem;
  text-decoration: none;
  transition: opacity var(--transition-duration);
}
.promo-code__btn--primary {
  background: var(--color-blue);
  box-shadow: 0 1.125rem 2.75rem rgba(59, 91, 255, 0.5);
  color: var(--color-white);
}
@media (any-hover: hover) {
  .promo-code__btn--primary:hover {
    background: #1659FF;
    box-shadow: 0 18px 44px 0 rgba(59, 91, 255, 0.5);
  }
}
@media (any-hover: none) {
  .promo-code__btn--primary:active {
    background: #1659FF;
    box-shadow: 0 18px 44px 0 rgba(59, 91, 255, 0.5);
  }
}
.promo-code__btn--stroke {
  background: var(--color-dark-blue);
  outline: 1px solid var(--color-blue);
  outline-offset: -1px;
  color: var(--color-off-white);
}
@media (any-hover: hover) {
  .promo-code__btn--stroke:hover {
    outline: 1px solid #0F54FF;
    background: #06105E;
  }
}
@media (any-hover: none) {
  .promo-code__btn--stroke:active {
    outline: 1px solid #0F54FF;
    background: #06105E;
  }
}
.promo-code__visual {
  position: absolute;
  right: 10px;
  bottom: 2%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
  max-width: 31.875rem;
}
@media (width <= 1100px) {
  .promo-code__visual {
    left: auto;
    right: 0.625rem;
  }
}
@media (width <= 47.99875rem) {
  .promo-code__visual {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
}
.promo-code__bg-text {
  font-family: var(--font-family-base);
  font-size: 8.125rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255, 255, 255, 0.05);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin-bottom: -6.25rem;
  padding-left: 1.25rem;
}
@media (width <= 47.99875rem) {
  .promo-code__bg-text {
    display: none;
  }
}
.promo-code__picture {
  display: flex;
  justify-content: center;
  align-items: center;
  height: auto;
}
.promo-code__img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (width <= 1100px) {
  .promo-code__img {
    display: none;
  }
}
@media (width <= 47.99875rem) {
  .promo-code__img {
    width: 20rem;
    max-width: 100%;
    display: block;
  }
}

.instructions .container {
  padding-block: 1.25rem;
}
@media (width <= 47.99875rem) {
  .instructions .container {
    padding-block: 2.5rem;
  }
}
.instructions__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  width: 100%;
}
.instructions__title {
  font-family: var(--font-family-base);
  font-size: clamp(2rem, 1.8043478261rem + 0.8695652174vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-off-white);
  margin: 0;
}
.instructions__desc {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.875rem, 0.8260869565rem + 0.2173913043vw, 1rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-blue-light);
  margin: 0;
}
.instructions__grid {
  display: flex;
  align-items: stretch;
  gap: 0.875rem;
  width: 100%;
}
@media (width <= 47.99875rem) {
  .instructions__grid {
    flex-direction: column;
    gap: 1rem;
  }
}
.instructions__card {
  flex: 1 1 0;
  padding: 1.5rem;
  background: var(--color-dark-blue);
  border-radius: 1.5rem;
  outline: 1px solid rgba(150, 175, 255, 0.18);
  outline-offset: -1px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
@media (width <= 47.99875rem) {
  .instructions__card {
    padding: 1.25rem;
    border-radius: 1.25rem;
  }
}
.instructions__step {
  width: 2.875rem;
  height: 2.875rem;
  background: var(--color-blue);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-family-base);
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--color-white);
  flex-shrink: 0;
}
@media (width <= 47.99875rem) {
  .instructions__step {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 0.625rem;
    font-size: 1.125rem;
  }
}
.instructions__card-title {
  font-family: var(--font-family-base);
  font-size: clamp(1.25rem, 1.152173913rem + 0.4347826087vw, 1.5rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--color-off-white);
  margin: 0;
  padding-top: 0.625rem;
  line-height: 1.2;
  width: 100%;
}
@media (width <= 47.99875rem) {
  .instructions__card-title {
    padding-top: 0;
    font-weight: 900;
  }
}
.instructions__card-desc {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.875rem, 0.8260869565rem + 0.2173913043vw, 1rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-blue-light);
  margin: 0;
  width: 100%;
}
@media (width <= 47.99875rem) {
  .instructions__card-desc--desktop {
    display: none;
  }
}
.instructions__card-desc--mobile {
  display: none;
}
@media (width <= 47.99875rem) {
  .instructions__card-desc--mobile {
    display: block;
  }
}

.faq .container {
  padding-block: 1.25rem;
}
@media (width <= 47.99875rem) {
  .faq .container {
    padding-block: 2.5rem;
  }
}
.faq {
  margin-bottom: 5rem;
}
@media (width <= 47.99875rem) {
  .faq {
    margin-bottom: 0;
  }
}
.faq__head {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.375rem;
  width: 100%;
}
@media (width <= 47.99875rem) {
  .faq__head {
    margin-bottom: 1.5rem;
  }
}
.faq__title {
  font-family: var(--font-family-base);
  font-size: clamp(2rem, 1.8043478261rem + 0.8695652174vw, 2.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: var(--color-off-white);
  margin: 0;
}
.faq__desc {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.875rem, 0.8260869565rem + 0.2173913043vw, 1rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-blue-light);
  margin: 0;
}
.faq__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1.25rem;
  width: 100%;
}
@media (width <= 47.99875rem) {
  .faq__grid {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.faq__card {
  width: calc(50% - 0.625rem);
  padding: 1.5rem;
  background: var(--color-dark-blue);
  border-radius: 1rem;
  outline: 1px solid rgba(150, 175, 255, 0.18);
  outline-offset: -1px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}
@media (width <= 47.99875rem) {
  .faq__card {
    width: 100%;
    padding: 1.25rem;
    gap: 0.5rem;
  }
}
@media (width <= 47.99875rem) {
  .faq__card--desktop-only {
    display: none;
  }
}
.faq__card-title {
  font-family: var(--font-family-base);
  font-size: clamp(1rem, 0.902173913rem + 0.4347826087vw, 1.25rem);
  font-weight: 800;
  color: var(--color-off-white);
  margin: 0;
  line-height: 1.2;
  width: 100%;
}
@media (width <= 47.99875rem) {
  .faq__card-title {
    font-weight: 900;
    text-transform: uppercase;
  }
}
.faq__card-desc {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.8125rem, 0.7391304348rem + 0.3260869565vw, 1rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-blue-light);
  margin: 0;
  width: 100%;
}
@media (width <= 47.99875rem) {
  .faq__card-desc--desktop {
    display: none;
  }
}
.faq__card-desc--mobile {
  display: none;
}
@media (width <= 47.99875rem) {
  .faq__card-desc--mobile {
    display: block;
  }
}

.cta {
  margin-bottom: 6.25rem;
}
@media (width <= 47.99875rem) {
  .cta {
    margin-bottom: 0;
  }
}
.cta .container {
  padding-block: 1.25rem;
}
.cta__box {
  position: relative;
  padding: 2.5rem;
  background: linear-gradient(180deg, rgba(59, 91, 255, 0.24) 0%, rgba(59, 91, 255, 0) 100%);
  box-shadow: 0 1.25rem 3.125rem rgba(0, 0, 0, 0.2);
  overflow: hidden;
  border-radius: 2rem;
  outline: 1px solid rgba(150, 175, 255, 0.18);
  outline-offset: -1px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
@media (width <= 47.99875rem) {
  .cta__box {
    padding: 2rem;
    gap: 1.5rem;
  }
}
.cta__glow {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
  background: radial-gradient(ellipse 55% 235% at 50% 0%, rgba(59, 91, 255, 0.5) 0%, rgba(59, 91, 255, 0) 60%);
  pointer-events: none;
}
.cta__title {
  font-family: var(--font-family-base);
  font-size: clamp(2.25rem, 1.8097826087rem + 1.9565217391vw, 3.375rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.07;
  text-align: center;
  margin: 0;
  position: relative;
  z-index: 2;
}
.cta__title-accent {
  color: var(--color-lime);
}
.cta__title-main {
  color: var(--color-off-white);
}
.cta__desc {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 0.902173913rem + 0.4347826087vw, 1.25rem);
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-blue-light);
  text-align: center;
  margin: 0;
  max-width: 37.5rem;
  position: relative;
  z-index: 2;
}
@media (width <= 47.99875rem) {
  .cta__desc--desktop {
    display: none;
  }
}
.cta__desc--mobile {
  display: none;
}
@media (width <= 47.99875rem) {
  .cta__desc--mobile {
    display: block;
  }
}
.cta__subtitle {
  font-size: clamp(1rem, 0.902173913rem + 0.4347826087vw, 1.25rem);
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  color: #ADC5FF;
}
@media (width <= 47.99875rem) {
  .cta__subtitle {
    text-align: center;
  }
}
.cta__btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  padding-top: 0.75rem;
  position: relative;
  z-index: 2;
}
@media (width <= 47.99875rem) {
  .cta__btns {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding-top: 0;
  }
}
.cta__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 3.75rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-family: var(--font-family-base);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1.25;
  text-align: center;
  transition: all 0.3s ease;
}
@media (width <= 47.99875rem) {
  .cta__btn {
    min-height: 3rem;
    padding: 0.75rem 2rem;
  }
}
.cta__btn--primary {
  background: var(--color-blue);
  color: var(--color-white);
  box-shadow: 0 1.125rem 2.75rem rgba(59, 91, 255, 0.5);
}
.cta__btn--primary:hover {
  background: #1659FF;
  box-shadow: 0 18px 44px 0 rgba(59, 91, 255, 0.5);
}
.cta__btn--stroke {
  background: var(--color-dark-blue);
  color: var(--color-off-white);
  outline: 1px solid var(--color-blue);
  outline-offset: -1px;
}
.cta__btn--stroke:hover {
  outline: 1px solid #0F54FF;
  background: #06105E;
}

.footer {
  border-top: 1px solid rgba(150, 175, 255, 0.18);
  padding: 1.5625rem 0 2.125rem;
  width: 100%;
}
@media (width <= 47.99875rem) {
  .footer {
    padding: 2rem 0;
  }
}
.footer__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
  width: 100%;
}
@media (width <= 47.99875rem) {
  .footer__box {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
}
.footer__disclaimer {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.6875rem, 0.6385869565rem + 0.2173913043vw, 0.8125rem);
  font-weight: 500;
  color: #9FB0E8;
  line-height: 1.5;
  margin: 0;
  max-width: 31.25rem;
}
@media (width <= 47.99875rem) {
  .footer__disclaimer {
    max-width: 100%;
  }
}
.footer__bottom {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
@media (width <= 47.99875rem) {
  .footer__bottom {
    justify-content: space-between;
    width: 100%;
  }
}
.footer__copyright {
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.6875rem, 0.6385869565rem + 0.2173913043vw, 0.8125rem);
  font-weight: 500;
  color: #9FB0E8;
  line-height: 1.5;
  margin: 0;
}
@media (width <= 47.99875rem) {
  .footer__copyright {
    font-weight: 700;
  }
}
@media (width <= 47.99875rem) {
  .footer__copyright--desktop {
    display: none;
  }
}
.footer__copyright--mobile {
  display: none;
}
@media (width <= 47.99875rem) {
  .footer__copyright--mobile {
    display: block;
  }
}
.footer__icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media (width <= 47.99875rem) {
  .footer__icons {
    gap: 0.75rem;
  }
}
.footer__icon {
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #9FB0E8;
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}
.footer__icon:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
.footer__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.highlight-amount {
  color: #FFD700 !important;
  font-weight: 900;
  font-size: 1.35em;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.45);
}
/*# sourceMappingURL=main.css.map */