:root {
  --bg-1: #0b061a;
  --bg-2: #0f0920;
  --bg-alt: #140d29;
  --purple: #7c52ff;
  --purple-border: rgba(124, 82, 255, 0.5);
  --stroke: #271953;
  --green: #00ff7b;
  --green-border: rgba(0, 255, 123, 0.5);
  --text: #f3f3f3;
  --muted: #c3bbdc;
  --badge-bg: #23154c;
  --badge-border: #5737b8;
  --badge-text: #dcc3ff;
  --white: #ffffff;
  --black: #000000;
  --container: 1380px;
  --radius-pill: 50px;
  --radius-card: 30px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-1);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.2;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 20px;
}

/* ——— Nav ——— */

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  padding: 10px;
  background: var(--bg-1);
  border-bottom: 1px solid var(--stroke);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  height: 60px;
  padding-inline: 20px;
}

.nav__logo {
  width: 131px;
  height: 37px;
  flex-shrink: 0;
}

.nav__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.badge-premiere {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 8px 20px;
  background: var(--green);
  border: 2px solid var(--green-border);
  border-radius: var(--radius-pill);
  color: var(--black);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: default;
}

/* ——— Hero ——— */

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 600px;
  padding: 10px;
  overflow: hidden;
  background: linear-gradient(90deg, #1c0836 0%, #050811 50%, #00231d 100%);
}

.hero__inner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
  width: 100%;
  max-width: var(--container);
  padding: 50px 20px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 50px;
  flex: 1;
  max-width: 760px;
  min-width: 0;
  z-index: 1;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: var(--badge-bg);
  border: 1px solid var(--badge-border);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(50px);
}

.hero__tag-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hero__tag-icon img {
  width: 100%;
  height: 100%;
}

.hero__tag span {
  color: var(--badge-text);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}

.hero__title {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(90deg, #7c52ff 0%, #ffffff 50%, #00ff7b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.hero__subtitle {
  max-width: 740px;
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}

.btn-coming-soon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 40px;
  padding: 8px 20px;
  background: var(--purple);
  border: 2px solid var(--purple-border);
  border-radius: var(--radius-pill);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: default;
  width: fit-content;
}

.btn-coming-soon__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-coming-soon__icon img {
  width: 100%;
  height: 100%;
}

.hero__phone {
  position: absolute;
  right: 40px;
  bottom: -75%;
  width: 338px;
  height: auto;
  flex-shrink: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__phone img {
  width: 100%;
  height: auto;
}

/* ——— Section shared ——— */

.section {
  padding-block: 80px;
}

.section--alt {
  background: var(--bg-alt);
}

.section__title {
  margin: 0 auto 50px;
  max-width: 903px;
  color: var(--white);
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  line-height: 1.2;
}

.section__heading {
  color: var(--white);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.section__text {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

/* ——— How to earn ——— */

.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.how__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.how__card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 2088 / 1812;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.how__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how__card-body {
  padding-block: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.how__card-title {
  color: var(--text);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
}

.how__card-desc {
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
}

/* ——— Feature rows ——— */

.feature {
  display: flex;
  align-items: center;
  gap: 50px;
}

.feature--reverse {
  flex-direction: row-reverse;
}

.feature__copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.feature__media {
  flex-shrink: 0;
  width: min(695px, 50%);
  aspect-ratio: 695 / 521;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ——— Vouchers ——— */

.vouchers__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 50px;
  max-width: 1340px;
  margin: 0 auto;
}

.vouchers__item {
  min-width: 0;
  aspect-ratio: 360 / 464;
}

.vouchers__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ——— Footer ——— */

.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--stroke);
  padding: 20px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1340px;
  margin: 0 auto;
  padding: 10px 20px;
}

.footer__cookies {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 21px;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 10px;
}

.footer__company {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  line-height: 21px;
}

.footer__designed {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.footer__designed span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.footer__designed img {
  width: 103px;
  height: 25px;
  object-fit: contain;
}

.footer__cookies a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer__cookies a:hover {
  color: var(--text);
}

/* ——— Legal pages (privacy / terms) ——— */

.legal {
  flex: 1;
  padding-block: 60px 80px;
  background: var(--bg-1);
}

.legal__container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: 20px;
}

.legal__title {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}

.legal__lead {
  margin-bottom: 40px;
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}

.legal__content {
  color: #f3f3f3;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}

.legal__content > * + * {
  margin-top: 1em;
}

.legal__content h2 {
  margin-top: 2em;
  color: var(--text);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}

.legal__content h3 {
  margin-top: 1.5em;
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
}

.legal__content ul,
.legal__content ol {
  padding-left: 1.25em;
}

.legal__content li + li {
  margin-top: 0.4em;
}

.legal__content a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal__content a:hover {
  color: var(--text);
}

.legal__content strong {
  color: var(--text);
  font-weight: 600;
}

body:has(.legal) {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

@media (max-width: 1240px) {
  .hero__content {
    max-width: 730px;
  }
}

/* ——— Responsive ≤1100 ——— */

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
  }

  .hero__inner {
    flex-direction: column;
    align-items: stretch;
    padding: 40px 20px;
    gap: 40px;
  }

  .hero__content {
    max-width: none;
  }

  .hero__phone {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(280px, 70%);
    margin: 0 auto;
  }

  .hero__title {
    font-size: 40px;
  }

  .how__grid {
    gap: 30px;
  }

  .feature,
  .feature--reverse {
    flex-direction: column;
    gap: 30px;
  }

  .feature__media {
    width: 100%;
    max-width: 695px;
  }

  .vouchers__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* ——— Responsive ≤768 ——— */

@media (max-width: 768px) {
  .nav {
    height: auto;
    min-height: 72px;
    padding: 12px 10px;
  }

  .nav__inner {
    height: auto;
    padding-inline: 8px;
    gap: 12px;
  }

  .nav__logo {
    width: 110px;
    height: 31px;
  }

  .badge-premiere {
    padding: 6px 12px;
    font-size: 12px;
    height: auto;
    white-space: normal;
    text-align: center;
  }

  .hero__content {
    gap: 30px;
  }

  .hero__copy {
    gap: 20px;
  }

  .hero__tag span {
    white-space: normal;
  }

  .hero__title {
    font-size: 32px;
  }

  .section {
    padding-block: 48px;
  }

  .section__title {
    margin-bottom: 32px;
    font-size: 28px;
  }

  .section__heading {
    font-size: 28px;
  }

  .how__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .how__card-title {
    font-size: 22px;
  }

  .vouchers__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer__inner {
    padding-inline: 8px;
  }

  .legal {
    padding-block: 40px 48px;
  }

  .legal__title {
    margin-bottom: 8px;
    font-size: 28px;
  }

  .legal__lead {
    margin-bottom: 28px;
    font-size: 15px;
  }

  .legal__content {
    font-size: 15px;
  }

  .legal__content h2 {
    font-size: 20px;
  }

  .legal__content h3 {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .hero__phone {
    width: min(220px, 80%);
  }

  .vouchers__grid {
    gap: 12px;
  }
}
