@charset "UTF-8";
/* ==========================================================================
   Fonts
   ========================================================================== */
@font-face {
  font-family: "Gilroy";
  src: url("./fonts/Gilroy/Gilroy-Light.woff2") format("woff2"), url("./fonts/Gilroy/Gilroy-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("./fonts/Gilroy/Gilroy-Regular.woff2") format("woff2"), url("./fonts/Gilroy/Gilroy-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("./fonts/Gilroy/Gilroy-Medium.woff2") format("woff2"), url("./fonts/Gilroy/Gilroy-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("./fonts/Gilroy/Gilroy-Semibold.woff2") format("woff2"), url("./fonts/Gilroy/Gilroy-Semibold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gilroy";
  src: url("./fonts/Gilroy/Gilroy-Extrabold.woff2") format("woff2"), url("./fonts/Gilroy/Gilroy-Extrabold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
/* ==========================================================================
   Design tokens
   ========================================================================== */
:root {
  --bg: #ffffff;
  --text: rgba(54, 65, 83, 1);
  --muted: #6b7280;
  --border: rgba(16, 17, 20, 0.12);
  --card: #ffffff;
  --primary: #111827;
  --primary-contrast: #ffffff;
  --accent: rgba(79, 94, 230, 1);
  --radius: clamp(12px, 2vw, 16px);
  --shadow: 0 10px 30px rgba(16, 17, 20, 0.08);
  --container: 1152px;
  --gutter: clamp(16px, 4vw, 24px);
  --section: clamp(28px, 5vw, 56px);
  --font: "Gilroy", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* ==========================================================================
   Reset / base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.5;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

button {
  cursor: pointer;
}

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

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

:focus-visible {
  outline: 2px solid rgba(79, 94, 230, 0.8);
  outline-offset: 2px;
}

::-moz-selection {
  background: rgba(79, 94, 230, 0.18);
}

::selection {
  background: rgba(79, 94, 230, 0.18);
}

/* ==========================================================================
   Layout helpers
   ========================================================================== */
.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.site-main {
  flex: 1;
}

.container {
  width: 100%;
  max-width: calc(var(--container) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(16px, 3vw, 24px);
  box-shadow: var(--shadow);
}

.grid {
  display: grid;
  gap: clamp(12px, 3vw, 24px);
}

.grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 860px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   Typography
   ========================================================================== */
.kicker {
  display: inline-block;
  font-size: clamp(12px, 1.8vw, 14px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.h1 {
  margin-top: 10px;
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: clamp(14px, 2.4vw, 20px);
}

.h3 {
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.2;
  margin-bottom: clamp(6px, 1vw, 8px);
}

.lead {
  margin-top: 12px;
  font-size: clamp(16px, 2.1vw, 18px);
  color: rgba(16, 17, 20, 0.84);
}

.muted {
  color: var(--muted);
  font-size: clamp(13px, 1.8vw, 14px);
}

.link {
  color: rgb(37, 99, 235);
}

.link:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Header / navigation
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 9999999999;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(16, 17, 20, 0.08);
  box-shadow: 0 8px 22px rgba(16, 17, 20, 0.04);
  box-shadow: 0px 1px 2px -1px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}

.site-header__row {
  height: clamp(64px, 10vw, 78px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(12px, 2vw, 16px);
}

.site-header__logo img {
  height: clamp(40px, 5vw, 48px);
  width: auto;
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1.5vw, 12px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 10px);
  font-weight: 700;
}

.brand__logo {
  width: clamp(28px, 3.5vw, 34px);
  height: clamp(28px, 3.5vw, 34px);
  border-radius: clamp(8px, 1.2vw, 10px);
  background: linear-gradient(135deg, var(--accent), #22c55e);
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 26px);
  margin-left: auto;
  margin-right: clamp(16px, 2vw, 20px);
}

.nav__link {
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: clamp(20px, 2.5vw, 24px);
  letter-spacing: 0;
  text-align: center;
  font-weight: 500;
  color: rgb(54, 65, 83);
  padding: clamp(8px, 1.2vw, 10px) clamp(8px, 1.2vw, 10px);
  border-radius: clamp(12px, 1.5vw, 14px);
}

.nav__link:hover {
  background: rgba(16, 17, 20, 0.06);
  color: rgb(54, 65, 83);
}

.nav__link.is-active {
  color: rgb(54, 65, 83);
  font-weight: 500;
}

.burger {
  display: none;
  width: clamp(40px, 5vw, 44px);
  height: clamp(40px, 5vw, 44px);
  border-radius: clamp(10px, 1.2vw, 12px);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
}

.burger__lines {
  width: clamp(16px, 2vw, 18px);
  height: 12px;
  display: inline-block;
  position: relative;
}

.burger__lines::before,
.burger__lines::after,
.burger__lines {
  background: transparent;
}

.burger__lines::before,
.burger__lines::after {
  content: "";
  position: absolute;
  left: 0;
  width: clamp(16px, 2vw, 18px);
  height: 2px;
  border-radius: 2px;
  background: rgba(16, 17, 20, 0.9);
}

.burger__lines::before {
  top: 1px;
}

.burger__lines::after {
  bottom: 1px;
}

@media (max-width: 860px) {
  .nav {
    display: none;
  }
  .burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.mobile-menu {
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
}

.mobile-menu__inner {
  padding-block: clamp(14px, 2vw, 16px);
}

.mobile-menu__close {
  width: 100%;
  padding: clamp(10px, 1.5vw, 12px) clamp(12px, 1.8vw, 14px);
  border-radius: clamp(10px, 1.2vw, 12px);
  border: 1px solid var(--border);
  background: rgba(16, 17, 20, 0.04);
  text-align: left;
}

.mobile-menu__links {
  margin-top: clamp(8px, 1vw, 10px);
  display: grid;
  gap: clamp(4px, 1vw, 6px);
}

/* ==========================================================================
   Hero / components
   ========================================================================== */
.hero {
  position: relative;
  padding-block: clamp(18px, 3vw, 28px) clamp(28px, 5vw, 52px);
  background: linear-gradient(147.3deg, #FDF9F0 7%, rgba(223, 200, 254, 0.2) 50%, #FDF9F0 93%);
  overflow-x: clip;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 4vw, 34px);
  align-items: center;
}

/* Absolute hero image pinned to the right page edge (desktop) */
@media (min-width: 861px) {
  .hero {
    --hero-media-h: clamp(380px, 48vw, 463px);
    --hero-media-w: clamp(360px, 46vw, 620px);
    --hero-bleed-right: max(0px, (100vw - (var(--container) + var(--gutter) * 2)) / 2);
  }
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    min-height: var(--hero-media-h);
    align-items: center;
  }
  .hero__media {
    position: relative;
    width: 100%;
    height: var(--hero-media-h);
    z-index: 1;
  }
  .hero__content {
    position: relative;
    z-index: 2;
  }
  .hero__image {
    position: absolute;
    right: 0;
    top: clamp(18px, 3vw, 28px);
    width: 48%;
    height: var(--hero-media-h);
    max-height: var(--hero-media-h);
    border-bottom-left-radius: clamp(18px, 2.5vw, 24px);
    border-top-left-radius: clamp(18px, 2.5vw, 24px);
    -o-object-fit: cover;
       object-fit: cover;
    z-index: 0;
    padding-right: max(0px, env(safe-area-inset-right));
    box-sizing: border-box;
  }
}
@media (max-width: 860px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__brand {
    display: none;
  }
  .hero__media {
    position: static;
    width: 100%;
    height: auto;
  }
  .hero__image {
    display: none;
  }
}
.hero__brand {
  width: clamp(240px, 35vw, 348px);
  height: clamp(90px, 15vw, 129px);
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: clamp(16px, 2.6vw, 26px);
}

.hero__title {
  font-weight: 600;
  text-transform: uppercase;
  font-size: clamp(28px, 4.2vw, 41px);
  line-height: clamp(36px, 5.5vw, 57px);
  letter-spacing: 0;
  color: rgb(16, 24, 40);
}

.hero__subtitle {
  margin-top: clamp(12px, 1.5vw, 14px);
  text-transform: none;
  font-weight: 400;
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: clamp(22px, 2.8vw, 28px);
  letter-spacing: 0;
  color: rgb(74, 85, 101);
}

.hero__text {
  margin-top: clamp(10px, 1.2vw, 12px);
  font-weight: 500;
  font-size: clamp(18px, 2.5vw, 24px);
  line-height: clamp(28px, 3.8vw, 39px);
  letter-spacing: 0;
  color: rgb(74, 85, 101);
  max-width: min(560px, 100%);
}

.u-accent {
  color: var(--accent);
  font-weight: 700;
}

.hero-card {
  position: relative;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-card__badges {
  position: absolute;
  right: clamp(12px, 1.5vw, 18px);
  top: 50%;
  transform: translateY(-50%);
  display: grid;
  gap: clamp(8px, 1.2vw, 12px);
  pointer-events: auto;
}

.badge {
  display: grid;
  grid-template-columns: clamp(32px, 4vw, 38px) 1fr;
  align-items: center;
  gap: clamp(8px, 1.2vw, 10px);
  min-width: clamp(160px, 22vw, 190px);
  padding: clamp(10px, 1.2vw, 12px) clamp(12px, 1.5vw, 14px);
  border-radius: clamp(12px, 1.8vw, 16px);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(16, 17, 20, 0.08);
  box-shadow: 0 10px 18px rgba(16, 17, 20, 0.08);
}

.badge__icon {
  width: clamp(32px, 4vw, 38px);
  height: clamp(32px, 4vw, 38px);
  border-radius: clamp(10px, 1.2vw, 12px);
  display: grid;
  place-items: center;
}

.badge__icon img {
  width: clamp(16px, 2vw, 18px);
  height: clamp(16px, 2vw, 18px);
}

.badge__text {
  font-size: clamp(12px, 1.5vw, 14px);
  line-height: 1.15;
  color: rgba(16, 17, 20, 0.82);
}

.badge--orange .badge__icon {
  background: rgba(255, 195, 140, 0.55);
}

.badge--blue .badge__icon {
  background: rgba(160, 215, 255, 0.55);
}

.badge--yellow .badge__icon {
  background: rgba(255, 229, 155, 0.65);
}

@media (max-width: 860px) {
  .hero-card__badges {
    position: static;
    transform: none;
    margin-top: clamp(10px, 1.2vw, 12px);
    padding: 0 clamp(10px, 1.2vw, 12px) clamp(10px, 1.2vw, 12px) clamp(10px, 1.2vw, 12px);
  }
  .badge {
    min-width: 0;
    width: 100%;
  }
}
.hero__promo {
  margin-top: clamp(18px, 4vw, 34px);
}

.hero-promo__card {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: clamp(16px, 3.2vw, 30px);
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border-radius: clamp(18px, 2.5vw, 22px);
  background: #fff;
  border: clamp(4px, 0.6vw, 6px) solid rgb(223, 200, 254);
  box-shadow: 0 16px 34px rgba(79, 94, 230, 0.12);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-height: clamp(280px, 38vw, 355px);
}

.hero-promo__lead {
  font-size: clamp(18px, 3.2vw, 34px);
  line-height: 1.25;
  color: rgba(16, 17, 20, 0.8);
  max-width: 610px;
}

.hero-promo__title {
  margin-top: clamp(12px, 1.5vw, 14px);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
}

.hero-promo__text {
  margin-top: clamp(8px, 1vw, 10px);
  font-size: clamp(16px, 2vw, 18px);
  color: rgba(16, 17, 20, 0.82);
  max-width: 560px;
}

.hero-promo__highlight {
  font-weight: 800;
  color: rgb(245, 158, 11);
  text-transform: uppercase;
}

.hero-promo__media {
  display: grid;
  place-items: center;
}

.hero-promo__wheel {
  width: clamp(200px, 26vw, 233px);
  height: auto;
  filter: drop-shadow(0 18px 22px rgba(16, 17, 20, 0.18));
  transform: translateY(2px);
  margin-bottom: -60px;
}

.hero-promo__arrow {
  position: absolute;
  left: 58%;
  top: 54%;
  width: clamp(70px, 9vw, 110px);
  height: auto;
  transform: translate(-50%, -50%) rotate(-6deg);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0.98;
}

.hero-promo__elems {
  position: absolute;
  left: 42%;
  top: 66%;
  width: clamp(56px, 7vw, 74px);
  height: auto;
  transform: rotate(-10deg);
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  opacity: 0.95;
}

@media (max-width: 860px) {
  .hero-promo__card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .hero-promo__arrow,
  .hero-promo__elems {
    display: none;
  }
}
.actions {
  margin-top: clamp(14px, 2vw, 18px);
  display: flex;
  gap: clamp(8px, 1.2vw, 12px);
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(10px, 1.2vw, 12px) clamp(14px, 1.8vw, 16px);
  border-radius: clamp(12px, 1.5vw, 14px);
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.08s ease, background 0.15s ease, border-color 0.15s ease, opacity 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--primary {
  background: var(--accent);
  color: white;
}

.btn--primary:hover {
  opacity: 0.92;
}

.btn--ghost {
  background: rgba(16, 17, 20, 0.04);
  border-color: var(--border);
}

.btn--ghost:hover {
  background: rgba(16, 17, 20, 0.06);
}

.btn--cta {
  background: var(--accent);
  color: rgb(255, 255, 255);
  padding: clamp(10px, 1.2vw, 12px) clamp(18px, 2.2vw, 22px);
  border-radius: 999px;
  font-weight: 500;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: clamp(20px, 2.5vw, 24px);
  letter-spacing: 0;
  text-align: center;
}

.btn--cta:hover {
  opacity: 0.95;
}

.media-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  border: 1px dashed rgba(16, 17, 20, 0.28);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(34, 197, 94, 0.08));
}

.feature {
  padding: clamp(14px, 2vw, 18px);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   Why section
   ========================================================================== */
.why {
  padding-block: clamp(46px, 6vw, 74px);
  background: rgb(255, 255, 255);
}

.why__head {
  text-align: center;
  max-width: min(760px, 100%);
  margin-inline: auto;
}

.why__title {
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.2;
  letter-spacing: 0;
}

.why__subtitle {
  margin-top: clamp(8px, 1vw, 10px);
  font-weight: 400;
  font-size: clamp(16px, 2vw, 18px);
  line-height: clamp(22px, 2.8vw, 26px);
  color: rgba(54, 65, 83, 0.7);
}

.why__grid {
  margin-top: clamp(26px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 26px);
}

.why-card {
  background: rgb(255, 255, 255);
  border-radius: clamp(14px, 2vw, 18px);
  padding: clamp(20px, 2.8vw, 26px) clamp(22px, 3vw, 28px);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
  background: linear-gradient(180deg, #FFFFFF 0%, #FDF9F0 100%);
  border-top: 1px solid rgb(243, 244, 246);
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.why-card__icon {
  width: clamp(52px, 6.5vw, 64px);
  height: clamp(52px, 6.5vw, 64px);
  border-radius: clamp(12px, 1.8vw, 16px);
  display: grid;
  place-items: center;
  color: rgb(255, 255, 255);
  box-shadow: 0 12px 22px rgba(16, 17, 20, 0.12);
  margin-bottom: clamp(12px, 1.5vw, 16px);
}

.why-card__icon img,
.why-card__icon svg {
  width: clamp(26px, 3.2vw, 32px);
  height: clamp(26px, 3.2vw, 32px);
}

.why-card__icon--blue {
  background: rgb(79, 94, 230);
  box-shadow: 0px 10px 30px -10px rgba(79, 94, 230, 0.4);
}

.why-card__icon--orange {
  background: rgb(245, 130, 36);
  box-shadow: 0px 10px 30px -10px rgba(255, 118, 0, 0.4);
}

.why-card__icon--yellow {
  background: rgb(255, 205, 92);
  box-shadow: 0px 10px 30px -10px rgba(255, 210, 93, 0.4);
}

.why-card__title {
  font-weight: 600;
  font-size: clamp(16px, 2vw, 18px);
  line-height: clamp(22px, 2.6vw, 24px);
  letter-spacing: 0;
}

.why-card__text {
  margin-top: clamp(8px, 1vw, 10px);
  font-weight: 400;
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: clamp(18px, 2.2vw, 20px);
  color: rgba(54, 65, 83, 0.68);
}

@media (max-width: 980px) {
  .why__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .why__grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   Wheel Block section
   ========================================================================== */
.wheel-block__panel {
  margin-inline: auto;
  position: relative;
  overflow: hidden;
  padding: 0;
  border-radius: clamp(20px, 3vw, 28px);
  background: linear-gradient(135deg, #FDF9F0 0%, rgba(223, 200, 254, 0.5) 100%);
  border: 2px solid rgb(209, 213, 220);
}

.wheel-block__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: clamp(16px, 2vw, 24px);
}

.wheel-block__icon {
  order: 0;
}

.wheel-block__hint {
  order: 1;
}

.wheel-block__wheel {
  order: 2;
  width: 100%;
  height: 800px !important;
  display: flex;
  justify-content: center;
}

@media (max-width: 900px) {
  .wheel-block__panel {
    padding: 0;
  }
  .wheel-block__wheel {
    height: auto !important;
    min-height: clamp(360px, 90vw, 520px);
  }
  .wheel-block #gamifier_wheel_block .gmf-wheel-left,
  .wheel-block #gamifier_wheel_block .gmf-wheel-left.gmf-wheel-is-visible,
  .wheel-block #gamifier_wheel_block .gmf-wheel-is-visible {
    height: auto !important;
    min-height: 0 !important;
  }
}
.wheel-block__icon {
  width: clamp(80px, 12vw, 120px);
  height: auto;
  display: block;
}

.wheel-block__title {
  margin: 0;
  font-weight: 600;
  font-size: clamp(22px, 3vw, 28px);
  line-height: 1.2;
  letter-spacing: 0;
  color: #4267B2;
}

.wheel-block__desc {
  margin: 0;
  font-weight: 400;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: clamp(20px, 2.4vw, 24px);
  color: rgba(54, 65, 83, 0.75);
}

.wheel-block__hint {
  margin: 0;
  font-weight: 500;
  font-size: clamp(15px, 1.9vw, 24px);
  line-height: 1.4;
  color: rgb(54, 65, 83);
  margin-top: clamp(12px, 1.5vw, 14px);
  font-size: clamp(20px, 1vw, 26px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--accent);
}

/* Коли колесо вже відрендерилось — підказку ховаємо */
.wheel-block.gmf-ready .wheel-block__hint,
.wheel-block__content.gmf-ready .wheel-block__hint {
  display: none;
}

/* ==========================================================================
   Terms section (Умови участі)
   ========================================================================== */
.terms {
  padding-block: clamp(46px, 6vw, 74px);
  background: linear-gradient(147.3deg, #FDF9F0 7%, rgba(223, 200, 254, 0.1) 50%, #FDF9F0 93%);
}

.terms__head {
  text-align: center;
  max-width: min(640px, 100%);
  margin-inline: auto;
}

.terms__title {
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.2;
  letter-spacing: 0;
}

.terms__subtitle {
  margin-top: clamp(8px, 1vw, 10px);
  font-weight: 400;
  font-size: clamp(16px, 2vw, 18px);
  line-height: clamp(22px, 2.8vw, 26px);
  color: rgba(54, 65, 83, 0.75);
}

.terms__images {
  margin-top: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 20px);
}

.terms__img {
  width: 100%;
  aspect-ratio: 4/3;
  height: auto;
  border-radius: clamp(16px, 2.2vw, 20px);
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 17, 20, 0.08);
  border: 1px solid rgba(223, 200, 254, 0.35);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.terms__grid {
  margin-top: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
}

.terms-card {
  display: flex;
  align-items: flex-start;
  gap: clamp(14px, 1.8vw, 18px);
  background: #fff;
  border-radius: clamp(14px, 2vw, 18px);
  padding: clamp(18px, 2.2vw, 22px) clamp(20px, 2.5vw, 24px);
  border: 1px solid rgba(16, 17, 20, 0.06);
  box-shadow: 0 10px 24px rgba(16, 17, 20, 0.06);
}

.terms-card__icon {
  flex-shrink: 0;
  width: clamp(52px, 6.5vw, 64px);
  height: clamp(52px, 6.5vw, 64px);
  border-radius: clamp(12px, 1.8vw, 16px);
  display: grid;
  place-items: center;
}

.terms-card__icon img {
  width: clamp(26px, 3.2vw, 32px);
  height: clamp(26px, 3.2vw, 32px);
}

.terms-card__icon--blue {
  background: rgb(79, 94, 230);
  box-shadow: 0 12px 22px rgba(16, 17, 20, 0.12), 0 10px 30px -10px rgba(79, 94, 230, 0.4);
}

.terms-card__icon--orange {
  background: rgb(245, 130, 36);
  box-shadow: 0 12px 22px rgba(16, 17, 20, 0.12), 0 10px 30px -10px rgba(255, 118, 0, 0.4);
}

.terms-card__icon--yellow {
  background: rgb(255, 205, 92);
  box-shadow: 0 12px 22px rgba(16, 17, 20, 0.12), 0 10px 30px -10px rgba(255, 210, 93, 0.4);
}

.terms-card__body {
  min-width: 0;
}

.terms-card__title {
  font-weight: 600;
  font-size: clamp(15px, 1.9vw, 17px);
  line-height: 1.3;
  letter-spacing: 0;
}

.terms-card__text {
  margin-top: clamp(6px, 0.8vw, 8px);
  font-weight: 400;
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: clamp(18px, 2.2vw, 20px);
  color: rgba(54, 65, 83, 0.72);
}

.terms__notice {
  margin-top: clamp(28px, 4vw, 44px);
  background: #fff;
  border-radius: clamp(16px, 2.2vw, 20px);
  padding: clamp(22px, 3vw, 28px) clamp(24px, 3.2vw, 32px);
  border: 1px solid rgba(16, 17, 20, 0.06);
  box-shadow: 0 10px 24px rgba(16, 17, 20, 0.06);
  background: linear-gradient(135deg, rgba(223, 200, 254, 0.2) 0%, rgba(255, 210, 93, 0.2) 100%);
}

.terms__notice-title {
  font-weight: 600;
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.3;
  margin-bottom: clamp(12px, 1.5vw, 14px);
}

.terms__notice-text {
  margin: 0;
  font-weight: 400;
  font-size: clamp(14px, 1.8vw, 15px);
  line-height: clamp(20px, 2.6vw, 22px);
  color: rgba(54, 65, 83, 0.85);
}

.terms__notice-text + .terms__notice-text {
  margin-top: clamp(8px, 1vw, 10px);
}

.terms__notice-dates {
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 860px) {
  .terms__images {
    grid-template-columns: 1fr;
  }
  .terms__grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   Signup section
   ========================================================================== */
.signup {
  position: relative;
  padding-block: clamp(52px, 8vw, 80px);
  background: #FDFBF5;
  overflow: hidden;
}

.signup__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.signup__vector {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.5;
}

.signup__vector--1 {
  top: -10%;
  left: -5%;
  width: 55%;
  height: 120%;
  -o-object-position: left top;
     object-position: left top;
}

.signup__vector--2 {
  bottom: -10%;
  right: -5%;
  width: 50%;
  height: 110%;
  -o-object-position: right bottom;
     object-position: right bottom;
}

.signup .container {
  position: relative;
  z-index: 1;
}

.signup__head {
  text-align: center;
  max-width: min(560px, 100%);
  margin-inline: auto;
}

.signup__title {
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 38px);
  line-height: 1.2;
  letter-spacing: 0;
}

.signup__subtitle {
  margin-top: clamp(8px, 1vw, 10px);
  font-weight: 400;
  font-size: clamp(15px, 1.9vw, 17px);
  line-height: clamp(22px, 2.8vw, 26px);
  color: rgba(54, 65, 83, 0.8);
}

.signup__card {
  margin-top: clamp(28px, 4vw, 44px);
  max-width: min(560px, 100%);
  margin-inline: auto;
  padding: clamp(24px, 4vw, 40px);
  background: #FFFDF2;
  border-radius: clamp(18px, 2.5vw, 24px);
  box-shadow: 0 16px 48px rgba(16, 17, 20, 0.08);
  border: 1px solid rgba(223, 200, 254, 0.25);
}

.signup-form .field {
  margin-bottom: clamp(14px, 1.8vw, 18px);
}

.signup-form .field:last-of-type {
  margin-bottom: clamp(20px, 2.5vw, 24px);
}

.btn--submit {
  width: 100%;
  padding: clamp(14px, 1.8vw, 16px) clamp(20px, 2.5vw, 24px);
  border-radius: 999px;
  font-size: clamp(14px, 1.8vw, 16px);
  font-weight: 500;
  background: linear-gradient(90deg, rgba(79, 94, 230, 0.95), rgb(79, 94, 230));
  color: #fff;
  border: none;
  box-shadow: 0 10px 24px rgba(79, 94, 230, 0.28);
}

.btn--submit:hover {
  opacity: 0.95;
}

.signup-form__error {
  display: block;
  margin-top: clamp(12px, 1.5vw, 16px);
}

.signup__privacy {
  margin-top: clamp(12px, 1.5vw, 16px);
  margin-bottom: 0;
  text-align: center;
  font-size: clamp(12px, 1.5vw, 13px);
  line-height: 1.4;
  color: rgba(54, 65, 83, 0.55);
}

/* ==========================================================================
   Form
   ========================================================================== */
.field {
  display: grid;
  gap: clamp(6px, 0.8vw, 8px);
  margin-bottom: clamp(10px, 1.2vw, 12px);
}

.field__label {
  font-size: clamp(13px, 1.6vw, 14px);
  color: rgba(16, 17, 20, 0.74);
}

.input,
.textarea {
  width: 100%;
  padding: clamp(10px, 1.2vw, 12px) clamp(12px, 1.5vw, 14px);
  border-radius: clamp(10px, 1.2vw, 12px);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
}

.input--select {
  cursor: pointer;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
}

.input:focus,
.textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.6);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}

.field__error {
  display: none;
  margin-top: 6px;
  font-size: 13px;
  color: #c53030;
  line-height: 1.3;
}

.input--error,
.textarea.input--error {
  border-color: rgba(197, 48, 48, 0.6);
}

.input--error:focus,
.textarea.input--error:focus {
  border-color: rgba(197, 48, 48, 0.8);
  box-shadow: 0 0 0 4px rgba(197, 48, 48, 0.12);
}

/* ==========================================================================
   Thank you page
   ========================================================================== */
.thank-you.section {
  padding-top: clamp(48px, 8vw, 80px);
  padding-bottom: clamp(48px, 8vw, 80px);
}

.thank-you__card {
  margin-inline: auto;
  padding: clamp(32px, 5vw, 56px) clamp(24px, 4vw, 40px);
  background: #fff;
}

.thank-you__icon {
  margin-bottom: clamp(20px, 2.5vw, 28px);
}

.thank-you__icon img {
  width: clamp(48px, 6vw, 64px);
  height: auto;
  display: block;
}

.thank-you__title {
  margin: 0 0 clamp(16px, 2vw, 24px) 0;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: rgb(54, 65, 83);
}

.thank-you__text {
  margin: 0 0 clamp(28px, 4vw, 40px) 0;
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.5;
  color: rgb(54, 65, 83);
}

.thank-you__btn {
  display: inline-block;
  padding: clamp(12px, 1.5vw, 14px) clamp(24px, 3vw, 32px);
  font-size: clamp(15px, 1.6vw, 16px);
  font-weight: 500;
  text-decoration: none;
  border-radius: clamp(10px, 1.2vw, 12px);
  background: rgb(79, 94, 230);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  border-radius: 999px;
}

.thank-you__btn:hover {
  background: rgba(79, 94, 230, 0.9);
}

/* ==========================================================================
   Accordion
   ========================================================================== */
.accordion {
  display: grid;
  gap: clamp(8px, 1vw, 10px);
}

.accordion__item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.accordion__summary {
  list-style: none;
  padding: clamp(12px, 1.5vw, 14px) clamp(14px, 1.8vw, 16px);
  cursor: pointer;
  font-weight: 700;
}

.accordion__summary::-webkit-details-marker {
  display: none;
}

.accordion__content {
  padding: 0 clamp(14px, 1.8vw, 16px) clamp(12px, 1.5vw, 14px) clamp(14px, 1.8vw, 16px);
  color: rgba(16, 17, 20, 0.8);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  padding-block: clamp(40px, 5vw, 56px) clamp(22px, 2.8vw, 28px);
  background: #131926;
  color: rgba(255, 255, 255, 0.95);
}

.site-footer__row {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  max-width: 100%;
}

.site-footer__social {
  justify-self: end;
  text-align: right;
}

.site-footer__logo {
  display: inline-block;
  margin-bottom: clamp(12px, 1.5vw, 14px);
}

.site-footer__logo img {
  height: clamp(34px, 4vw, 40px);
  width: auto;
  display: block;
}

.site-footer__title {
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 28px);
  line-height: 1.2;
  margin: 0 0 clamp(10px, 1.2vw, 12px) 0;
  color: #fff;
}

.site-footer__desc {
  margin: 0;
  font-size: clamp(13px, 1.6vw, 14px);
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.82);
  max-width: min(280px, 100%);
}

.site-footer__heading {
  font-weight: 600;
  font-size: clamp(14px, 1.8vw, 16px);
  line-height: 1.3;
  margin: 0 0 clamp(12px, 1.5vw, 14px) 0;
  color: #fff;
}

.site-footer__contacts {
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vw, 10px);
  justify-self: start;
  text-align: left;
}

.site-footer__social .site-footer__links {
  display: flex;
  flex-direction: column;
  gap: clamp(6px, 0.8vw, 8px);
}

.site-footer__link {
  display: inline-flex;
  align-items: center;
  gap: clamp(6px, 0.8vw, 8px);
  font-size: clamp(13px, 1.6vw, 14px);
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.site-footer__link:hover {
  color: #fff;
}

.site-footer__icon {
  opacity: 0.7;
  font-size: 1em;
}

.gmf-wheel-left {
  position: relative !important;
  position: relative !important;
  left: -92px !important;
  right: 0 !important;
  width: auto !important;
}

.gmf-wheel-is-visible {
  position: fixed !important;
  top: 0 !important;
  width: 700px !important;
}

.gmf-wheel-left-trigger {
  width: 200px !important;
  height: 162px !important;
  bottom: 59px !important;
  opacity: 0;
}

.gmf-wheel-left.gmf-wheel-is-visible {
  left: 0 !important;
  width: 70% !important;
  display: block;
}

@media (max-width: 799px) {
  body .gmf-wheel-left.gmf-wheel-is-visible {
    width: 85% !important;
  }
  body .gmf-wheel-is-visible {
    height: 100dvh !important;
    width: auto !important;
    left: 0 !important;
  }
  body .gmf-wheel-is-visible .gmf-wheel-left-inner {
    position: absolute;
    top: 40px;
  }
  body .gmf-wheel-is-visible .sWheel-wrapper {
    width: 100% !important;
  }
  body .cd-main-content {
    position: relative;
    display: block;
    height: auto;
  }
  body .gmf-wheel-left-trigger {
    left: 118% !important;
    position: relative;
    right: 0;
    bottom: 0;
    top: -201px !important;
    display: block;
    color: red;
    width: 100% !important;
    height: 262px !important;
  }
  body .gmf-wheel-left {
    height: 100px;
  }
}
/* ==========================================================================
   Gamifier embed into wheel-block
   ========================================================================== */
.wheel-block #gamifier_wheel_block .cd-main-content,
.wheel-block #gamifier_wheel_block #cd-main-content,
.wheel-block #gamifier_wheel_block .gmf-embedded {
  position: static !important;
  inset: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
}

.wheel-block #gamifier_wheel_block .gmf-wheel-left,
.wheel-block #gamifier_wheel_block .gmf-wheel-left.gmf-wheel-is-visible,
.wheel-block #gamifier_wheel_block .gmf-wheel-is-visible {
  position: static !important;
  left: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  height: 800px !important;
  min-height: 800px !important;
  border-radius: clamp(20px, 3vw, 28px);
  background: #ECEFF1 url("https://app.gamifier.uno/wheel/assets/bg/gmf_bg_4.jpeg") no-repeat center center;
  background-size: cover;
  background-attachment: initial;
  box-shadow: -2px -4px 20px 6px rgba(0, 0, 0, 0.12), inset 0 0 20px rgba(0, 0, 0, 0.18);
  padding: clamp(12px, 2vw, 20px);
}

.wheel-block #gamifier_wheel_block .gmf-wheel-left-trigger {
  display: none !important;
}

.wheel-block #gamifier_wheel_block .gmf-wheel-left-inner {
  position: static !important;
  top: auto !important;
  left: auto !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Адаптуємо розміри колеса під контейнер */
@media screen and (max-width: 900px) {
  .wheel-block #gamifier_wheel_block .wheel,
  .wheel-block #gamifier_wheel_block .sWheel-wrapper {
    margin: 60px auto;
  }
}
.wheel-block #gamifier_wheel_block .wheel-left-wrapper,
.wheel-block #gamifier_wheel_block .wheel-content-wrapper {
  width: 100% !important;
  max-width: 100% !important;
}

.wheel-block #gamifier_wheel_block .wheel-content-wrapper {
  width: 50% !important;
  padding-right: 110px;
}

.site-footer__bottom {
  margin-top: clamp(28px, 4vw, 40px);
  padding-top: clamp(20px, 2.5vw, 24px);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
}

.site-footer__copy {
  margin: 0;
  font-size: clamp(12px, 1.5vw, 13px);
  color: rgba(255, 255, 255, 0.65);
}

@media (max-width: 860px) {
  .site-footer__row {
    grid-template-columns: 1fr;
    gap: clamp(22px, 3vw, 28px);
  }
  .site-footer__social {
    justify-self: start;
    text-align: left;
  }
  .site-footer__desc {
    max-width: none;
  }
}
/* ==========================================================================
   Accessibility helpers
   ========================================================================== */
.skip-link {
  position: absolute;
  left: -9999px;
  top: clamp(8px, 1vw, 10px);
  z-index: 1000;
  padding: clamp(8px, 1vw, 10px) clamp(10px, 1.2vw, 12px);
  background: white;
  border: 1px solid var(--border);
  border-radius: clamp(10px, 1.2vw, 12px);
}

.skip-link:focus {
  left: clamp(8px, 1vw, 10px);
}

@media screen and (max-width: 799px) {
  .wheel-block #gamifier_wheel_block .wheel-content-wrapper {
    width: 100% !important;
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .wheel-content-center h3 {
    font-size: 24px !important;
    margin-bottom: 30px !important;
  }
}/*# sourceMappingURL=style.css.map */