* {
  box-sizing: border-box;
}

html {  
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #160f1d;
  color: var(--text-primary);
  font-family: var(--font-main);
  line-height: 1.5;
}

body::selection {
  background: rgba(255, 51, 95, .35);
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(28px, 3.3vw, 36px);
  line-height: 1.1;
  letter-spacing: 0;
}

h2 {
  max-width: none;
  color: #fefcfe;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .01em;
}

h3 {
  font-size: 22px;
  line-height: 1.2;
}

p {
  color: var(--text-muted);
}

.prize-line {
  display: inline-block;
  white-space: nowrap;
}

.container {
  width: min(100% - 48px, 1368px);
  margin: 0 auto;
}

.section {
  padding: 74px 0;
}

.section-head {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 44px;
  text-align: center;
}

.section-head p:not(.eyebrow) {
  max-width: 520px;
  font-size: 18px;
}

.eyebrow {
  width: fit-content;
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  min-height: var(--hero-min-height, 1080px);
  background: #13071f;
  text-align: center;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("../assets/img/fig-hero-bg.png") center top / cover no-repeat;
}

.hero__header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 44px;
  padding: 4px 100px;
  background-image: linear-gradient(180deg, rgba(38, 38, 38, 0.80) 0%, rgba(38, 38, 38, 0.00) 100%);
  backdrop-filter: blur(0);
}

.hero__brand img {
  width: 124px;
  filter: brightness(0) invert(1);
}

.hero__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  width: min(462px, calc(100% - 48px));
  height: auto;
  transform: translate(-50%, -50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 24px;
}

.hero__title {
  max-width: none;
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  white-space: nowrap;
}

.hero__text {
  max-width: 800px;
  margin: 16px 0 0;
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  text-align: center;
  opacity: .6;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}

.hero .btn {
  min-width: 0;
  height: 52px;
  padding: 0 50px;
  border-radius: 9999px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25);
}

.hero__scroll {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 64px;
  padding: 16px;
  background-color: transparent;
}

.hero__scroll img {
  width: auto;
  height: 24px;
  object-fit: contain;
}

.hero__scroll:hover img {
  transform: translateY(2px);
}

.steps {
  position: relative;
  overflow: hidden;
  background: #160f1d;
  padding: 164px 0 80px;
  text-align: center;
}

.steps .section-head {
  margin-bottom: 60px;
}

.steps__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1368px;
  margin: 0 auto;
}

.steps__grid::before {
  display: none;
}

.steps__button {
  min-width: 286px;
  height: 52px;
  margin-top: 32px;
  padding: 0 50px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.activation {
  background: #160f1d;
}

.activation .container {
  width: min(100% - 200px, 1720px);
  max-width: 1720px;
}

.activation__grid {
  display: block;
}

.activation .section-head {
  gap: 16px;
  margin-bottom: 32px;
}

.activation .section-head h2 {
  max-width: 1120px;
}

.activation .section-head p:not(.eyebrow) {
  max-width: 1120px;
  color: rgba(255, 255, 255, .6);
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}

.section-head--sticky {
  position: sticky;
  top: 40px;
  margin-bottom: 0;
}

.final-cta {
  background: #160f1d;
}

.final-cta .container {
  width: min(100% - 200px, 1720px);
  max-width: 1720px;
}

.final-cta__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  min-height: 444px;
  padding: 80px 40px;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(35, 2, 81, .57);
  text-align: center;
}

.final-cta__inner::before {
  content: "";
  position: absolute;
  left: -236.63%;
  top: -160.14%;
  width: 453.37%;
  height: 415.54%;
  background:
    linear-gradient(rgba(35, 2, 81, .4), rgba(35, 2, 81, .4)),
    url("../assets/img/fig-final-cta-bg.png") center / cover no-repeat;
}

.final-cta__inner::after {
  content: "";
  position: absolute;
  left: 12.79%;
  top: 0;
  width: 72.97%;
  height: 145.95%;
  background: url("../assets/img/fig-final-cta-glow.svg") center / contain no-repeat;
  pointer-events: none;
}

.final-cta__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  text-align: center;
}

.final-cta__inner p:not(.eyebrow) {
  max-width: none;
  color: rgba(254, 252, 254, .8);
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}

.final-cta__button {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 266px;
  min-width: 266px;
  height: 52px;
  padding: 0 50px;
  border: 0;
  border-radius: 360px;
  background:
    linear-gradient(90deg, #fff 0%, #fff 100%),
    linear-gradient(90deg, #0cf 0%, #ba6ddb 50.107%, #ff3bfc 100%);
  backdrop-filter: blur(12px);
  color: #181818;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  white-space: nowrap;
  box-shadow: none;
}

.final-cta__button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(255, 255, 255, .16);
}

.faq {
  background: #160f1d;
}

.faq .container {
  width: min(100% - 200px, 1720px);
  max-width: 1720px;
}

.faq__grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: min(100%, 848px);
}

.faq .section-head {
  margin-bottom: 0;
}

.footer {
  padding: 42px 0;
  background: #242225;
}

.footer p {
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
}

.footer a {
  color: rgba(255, 255, 255, .78);
  font-size: 12px;
  line-height: 1.8;
  text-decoration: none;
}

.footer__grid > div > a {
  display: block;
}

.footer h3 {
  margin-bottom: 16px;
  font-size: 13px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr .7fr;
  gap: 80px;
}

.footer__grid p {
  margin-bottom: 12px;
}

.footer__grid p:last-child {
  margin-bottom: 0;
}

.footer__socials {
  display: flex;
  gap: 8px;
  margin: 8px 0 16px;
}

.footer__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 5px;
  background: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .78);
  text-decoration: none;
  overflow: hidden;
}

.footer__social-icon svg {
  display: block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
}

.footer__social-icon:hover {
  color: #fff;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .1);
}

.countdown {
  background: #160f1d;
  text-align: center;
}

.countdown .container {
  width: min(100% - 200px, 1720px);
  max-width: 1720px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-items: center;
  gap: 60px;
}

.countdown p {
  color: rgba(255, 255, 255, .6);
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}

.countdown h2 {
  line-height: 1.1;
  white-space: nowrap;
}

.social {
  background: #160f1d;
}

.social__inner {
  display: grid;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.social__inner p {
  max-width: 720px;
  color: rgba(255, 255, 255, .74);
  font-size: 16px;
}

.social__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.social__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 236px;
  height: 52px;
  padding: 0 32px;
  border-radius: 999px;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.social__button svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.social__button--telegram {
  background: #149ce3;
}

.social__button--vk {
  background: #3369e8;
}
