/* =========================================================
   Trump Fan Bonus — World Cup 2026 demo landing
   Pure HTML + CSS + Vanilla JS
   ========================================================= */

/* ---------- CSS Variables ---------- */
:root {
  --navy-950: #020817;
  --navy-900: #061126;
  --navy-850: #081832;
  --navy-800: #0b1d3a;
  --navy-700: #10284c;

  --red-600: #e50914;
  --red-700: #c40012;
  --red-800: #99000d;

  --gold-400: #f2c45b;
  --gold-500: #d9a635;
  --gold-600: #b9831f;

  --white: #ffffff;
  --off-white: #f4f6fb;
  --muted: #aeb8ca;
  --dark-text: #071126;
  --line: rgba(255, 255, 255, 0.14);
}

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

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

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, sans-serif;
  font-size: 15px;
  color: var(--white);
  background-color: var(--navy-950);
  line-height: 1.5;
  overflow-x: hidden;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

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

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

p {
  margin: 0;
}

h1,
h2,
h3 {
  margin: 0;
}

/* ---------- Container ---------- */
.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease,
    border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  user-select: none;
}

.btn--sm {
  height: 52px;
  padding: 0 24px;
  font-size: 13px;
}

.btn--lg {
  height: 64px;
  padding: 0 26px;
  font-size: 14px;
  border-radius: 7px;
}

.btn--red {
  background: linear-gradient(135deg, #e50914, #b90010);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(229, 9, 20, 0.35);
}

.btn--red:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(229, 9, 20, 0.5);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
}

.btn--ghost .btn__icon {
  color: var(--gold-400);
}

.btn--ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--outline-white {
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: transparent;
  color: var(--white);
  height: 58px;
  width: 390px;
  max-width: 100%;
  border-radius: 7px;
  font-size: 14px;
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn--block {
  width: 100%;
  height: 50px;
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn__arrow {
  font-size: 18px;
  font-weight: 900;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 120px;
  background: rgba(2, 8, 23, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ---------- Logo ---------- */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 0;
}

.logo__img {
  display: block;
  height: 140px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.logo--footer .logo__img {
  height: 172px;
}

/* ---------- Navigation ---------- */
.nav__list {
  display: flex;
  gap: 38px;
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 0;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--white);
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: var(--gold-400);
}

.nav__link.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  width: 38px;
  height: 3px;
  margin: 0 auto;
  background: var(--red-600);
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background-color: #020817;
  isolation: isolate;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../assets/trump.png');
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0.92;
  filter: blur(0.5px);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 8%,
    rgba(0, 0, 0, 0.45) 16%,
    rgba(0, 0, 0, 0.8) 24%,
    #000 32%,
    #000 68%,
    rgba(0, 0, 0, 0.8) 76%,
    rgba(0, 0, 0, 0.45) 84%,
    rgba(0, 0, 0, 0.15) 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    rgba(0, 0, 0, 0.15) 8%,
    rgba(0, 0, 0, 0.45) 16%,
    rgba(0, 0, 0, 0.8) 24%,
    #000 32%,
    #000 68%,
    rgba(0, 0, 0, 0.8) 76%,
    rgba(0, 0, 0, 0.45) 84%,
    rgba(0, 0, 0, 0.15) 92%,
    transparent 100%
  );
  z-index: 0;
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 52% 48%;
  align-items: center;
  min-height: 620px;
  padding: 60px 0 80px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 22px;
}

.hero__eyebrow .stars {
  color: var(--gold-400);
  font-size: 18px;
  letter-spacing: 2px;
}

.hero__title {
  font-family: 'Anton', 'Oswald', sans-serif;
  font-size: 68px;
  line-height: 0.95;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  margin-bottom: 22px;
  font-weight: 400;
}

.hero__desc {
  font-size: 20px;
  line-height: 1.55;
  color: var(--white);
  max-width: 620px;
  margin-bottom: 28px;
  opacity: 0.92;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 36px;
}

.hero__cta .btn--red {
  min-width: 265px;
}

.hero__cta .btn--ghost {
  min-width: 245px;
}

/* mini benefits */
.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin-top: 8px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 18px;
  color: var(--white);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.benefit__icon--gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  font-weight: 900;
}

.benefit__icon--red {
  background: linear-gradient(135deg, var(--red-600), var(--red-800));
  color: var(--navy-900);
}

.benefit__text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.benefit__title {
  font-size: 13px;
  font-weight: 800;
  color: var(--white);
}

.benefit__sub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}

/* hero visual (decorative glow only — full hero image lives on section background) */
.hero__visual {
  position: relative;
  height: 560px;
  pointer-events: none;
}

.hero__glow {
  display: none;
}

/* ---------- Stats ---------- */
.stats {
  position: relative;
  z-index: 5;
  margin-top: -64px;
}

.stats__card {
  max-width: 1120px;
  margin: 0 auto;
  min-height: 128px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(4, 12, 30, 0.22);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 5;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  text-align: center;
  border-left: 1px solid rgba(7, 17, 38, 0.12);
}

.stat:first-child {
  border-left: none;
}

.stat__icon {
  color: var(--red-600);
  margin-bottom: 8px;
  display: inline-flex;
}

.stat__num {
  font-family: 'Oswald', 'Anton', sans-serif;
  color: var(--dark-text);
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}

.stat__label {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--dark-text);
}

/* ---------- About section ---------- */
.about {
  background: #f4f6fb;
  color: var(--dark-text);
  margin-top: -64px;
  padding: 154px 0 90px;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-500);
  margin-bottom: 18px;
}

.about__stars {
  color: var(--gold-400);
  letter-spacing: 2px;
}

.about__title {
  font-family: 'Oswald', 'Anton', sans-serif;
  font-weight: 700;
  font-size: 52px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--navy-900);
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.about__desc {
  font-size: 18px;
  line-height: 1.8;
  color: #556070;
  margin-bottom: 16px;
}

.about__desc + .about__desc {
  margin-bottom: 28px;
}

.about__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.about__benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-900);
  font-weight: 700;
  font-size: 15px;
}

.about__benefit-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--white);
  box-shadow: 0 4px 10px rgba(217, 166, 53, 0.35);
}

.about__cta {
  height: 58px;
  width: 220px;
  border-radius: 7px;
  font-size: 14px;
}

.about-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  background: var(--white);
  border: 1px solid rgba(217, 166, 53, 0.55);
  border-radius: 16px;
  box-shadow: 0 16px 45px rgba(15, 35, 72, 0.08);
  padding: 36px;
  overflow: hidden;
  isolation: isolate;
}

.about-card__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 26px 14px;
}

.about-stat:nth-child(1),
.about-stat:nth-child(2) {
  border-bottom: 1px solid rgba(7, 17, 38, 0.1);
}

.about-stat:nth-child(2),
.about-stat:nth-child(4) {
  border-left: 1px solid rgba(7, 17, 38, 0.1);
}

.about-stat__icon {
  display: inline-flex;
  color: var(--red-600);
  margin-bottom: 10px;
}

.about-stat__icon--gold {
  color: var(--gold-500);
}

.about-stat__num {
  font-family: 'Oswald', 'Anton', sans-serif;
  color: var(--navy-900);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}

.about-stat__label {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  color: var(--dark-text);
}

/* ---------- Main info section ---------- */
.main-info {
  background: var(--navy-900);
  color: var(--white);
  padding: 95px 0 78px;
}

.main-info__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

/* section title */
.section-title {
  position: relative;
  font-family: 'Oswald', 'Anton', sans-serif;
  font-weight: 700;
  font-size: 44px;
  text-transform: uppercase;
  color: var(--navy-900);
  letter-spacing: 1px;
  margin-bottom: 40px;
  padding-bottom: 18px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 92px;
  height: 4px;
  background: var(--red-600);
  border-radius: 2px;
}

.section-title--light {
  color: var(--white);
}

/* steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 50px 50px 1fr;
  align-items: center;
  gap: 18px;
}

.step + .step::before {
  content: '';
  position: absolute;
  left: 24px;
  top: -28px;
  width: 2px;
  height: 28px;
  background-image: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 50%
  );
  background-size: 2px 8px;
  background-repeat: repeat-y;
}

.step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  font-family: 'Oswald', 'Anton', sans-serif;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
}

.step__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--gold-400);
}

.step__body {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.step__title {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--white);
}

.step__desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

/* bonus card */
.bonus-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  min-height: 350px;
  background: var(--white);
  border: 1px solid rgba(217, 166, 53, 0.55);
  border-radius: 12px;
  box-shadow: 0 16px 45px rgba(15, 35, 72, 0.08);
  text-align: center;
  padding: 36px;
  overflow: hidden;
  isolation: isolate;
}


.bonus-card__title {
  font-family: 'Oswald', 'Anton', sans-serif;
  font-size: 34px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy-900);
  letter-spacing: 1px;
  line-height: 1.1;
}

.bonus-card__upto {
  font-size: 18px;
  font-weight: 900;
  color: var(--navy-900);
  text-transform: uppercase;
  margin-top: 10px;
  letter-spacing: 1px;
}

.bonus-card__amount {
  font-family: 'Anton', 'Oswald', sans-serif;
  font-size: 124px;
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: 1px;
  margin: 8px 0;
  background: linear-gradient(180deg, #f7d97a 0%, #d9a635 55%, #a87d1f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.bonus-card__crypto {
  font-family: 'Oswald', 'Anton', sans-serif;
  font-size: 31px;
  font-weight: 700;
  color: var(--navy-900);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bonus-card__choose {
  font-size: 13px;
  color: #6b7585;
  margin-top: 16px;
  margin-bottom: 18px;
}

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

.reward {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 74px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.reward:hover {
  transform: translateY(-2px);
  filter: drop-shadow(0 10px 22px rgba(15, 35, 72, 0.18));
}

span.reward {
  cursor: default;
}

span.reward:hover {
  transform: none;
  filter: none;
}

.reward__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ---------- Features strip ---------- */
.features-strip {
  background: var(--white);
  padding: 28px 0;
  border-top: 1px solid rgba(7, 17, 38, 0.08);
  border-bottom: 1px solid rgba(7, 17, 38, 0.08);
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 8px 28px;
  border-left: 1px solid rgba(7, 17, 38, 0.12);
}

.feature:first-child {
  border-left: none;
  padding-left: 0;
}

.feature:last-child {
  padding-right: 0;
}

.feature__icon {
  flex-shrink: 0;
  color: var(--red-600);
  display: inline-flex;
}

.feature__title {
  color: var(--navy-900);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.6px;
  margin-bottom: 4px;
}

.feature__text {
  color: #556070;
  font-size: 13px;
  line-height: 1.4;
}

/* ---------- Bottom CTA ---------- */
.bottom-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #8f000b 0%,
    #e50914 45%,
    #9b000c 100%
  );
  padding: 26px 0;
  isolation: isolate;
}

.bottom-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    transparent 35%,
    rgba(255, 255, 255, 0.08) 50%,
    transparent 65%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.bottom-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 80% 20%,
      rgba(255, 255, 255, 0.12),
      transparent 50%
    ),
    radial-gradient(circle at 10% 80%, rgba(0, 0, 0, 0.25), transparent 60%);
  pointer-events: none;
  z-index: 1;
}

.bottom-cta__ball {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.bottom-cta__inner {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 110px;
}

.bottom-cta__text {
  font-family: 'Oswald', 'Anton', sans-serif;
  color: var(--white);
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 1px;
  flex: 1;
}

.bottom-cta__text p {
  margin: 0;
}

.bottom-cta__stars {
  color: var(--gold-400);
  font-size: 18px;
  letter-spacing: 4px;
  margin-top: 6px !important;
}

.bottom-cta__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.bottom-cta__note {
  font-size: 12px;
  color: var(--white);
  opacity: 0.85;
}

/* ---------- FAQ ---------- */
.faq {
  background: var(--navy-900);
  padding: 56px 0 64px;
  text-align: center;
}

.faq .section-title {
  text-align: center;
}

.faq .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}

.faq__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 20px;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.faq__item[open] {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(242, 196, 91, 0.45);
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq__item summary::after {
  content: '+';
  color: var(--gold-400);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.faq__item[open] summary::after {
  content: '–';
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* ---------- Legal pages (Terms, Privacy) ---------- */
.legal-hero {
  background: var(--navy-900);
  color: var(--white);
  padding: 80px 0 70px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-400);
  margin-bottom: 14px;
}

.legal-hero__title {
  font-family: 'Oswald', 'Anton', sans-serif;
  font-size: 56px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 14px;
}

.legal-hero__sub {
  color: var(--muted);
  font-size: 15px;
  letter-spacing: 0.5px;
}

.legal {
  background: #f4f6fb;
  color: var(--dark-text);
  padding: 80px 0 90px;
}

.legal__card {
  max-width: 880px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(7, 17, 38, 0.08);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(15, 35, 72, 0.08);
  padding: 56px 60px;
}

.legal__intro {
  font-size: 16px;
  line-height: 1.75;
  color: #4a5566;
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(7, 17, 38, 0.08);
}

.legal__section + .legal__section {
  margin-top: 32px;
}

.legal__heading {
  position: relative;
  font-family: 'Oswald', 'Anton', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--navy-900);
  margin-bottom: 14px;
  padding-left: 16px;
}

.legal__heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 20px;
  background: var(--red-600);
  border-radius: 2px;
}

.legal__section p,
.legal__section li {
  font-size: 15px;
  line-height: 1.75;
  color: #4a5566;
}

.legal__section p + p {
  margin-top: 12px;
}

.legal__list {
  margin-top: 12px;
  padding-left: 22px;
  list-style: disc;
}

.legal__list li {
  margin-top: 6px;
}

.legal__footer-note {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(7, 17, 38, 0.08);
  font-size: 13px;
  color: #6b7585;
  font-style: italic;
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 60px 0 50px;
  }

  .legal-hero__title {
    font-size: 40px;
  }

  .legal {
    padding: 60px 0 70px;
  }

  .legal__card {
    padding: 36px 28px;
  }

  .legal__heading {
    font-size: 19px;
  }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-950);
  padding: 52px 0 24px;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1fr 1.6fr;
  gap: 36px;
  align-items: flex-start;
}

.footer__heading {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 14px;
}

.footer__links li a {
  display: inline-block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  transition: color 0.2s ease;
}

.footer__links li a:hover {
  color: var(--gold-400);
}

/* socials */
.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease,
    transform 0.2s ease;
}

.social:hover {
  background: var(--red-600);
  border-color: var(--red-600);
  color: var(--white);
  transform: translateY(-2px);
}

/* verified */
.verified {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.verified__icon {
  display: inline-flex;
  color: var(--gold-400);
  margin-bottom: 10px;
}

.verified__title {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--white);
  margin-bottom: 6px;
}

.verified__text {
  font-size: 12px;
  line-height: 1.55;
  color: var(--muted);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 28px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 12px;
}

.footer__bottom p {
  margin: 0;
}

/* ---------- Connect Flow Modals (3-step chain) ---------- */
.connect-flow-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
}

.connect-flow-modal.is-open {
  display: flex;
}

body.modal-open {
  overflow: hidden;
}

.connect-flow-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.connect-flow-modal__card {
  position: relative;
  width: 100%;
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-850) 55%, var(--navy-900) 100%);
  color: var(--white);
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(217, 166, 53, 0.45);
  animation: connectFlowIn 0.22s ease;
}

.connect-flow-modal__card--medium {
  max-width: 560px;
}

.connect-flow-modal__card--narrow {
  max-width: 520px;
}

@keyframes connectFlowIn {
  from {
    transform: scale(0.96);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.connect-flow-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 28px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.5);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}

.connect-flow-modal__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

.connect-flow-modal__header {
  text-align: center;
  margin-bottom: 28px;
}

.connect-flow-modal__title {
  font-family: 'Oswald', 'Anton', sans-serif;
  font-size: 26px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
}

.connect-flow-modal__subtitle {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 8px;
}

.connect-flow-modal__desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(174, 184, 202, 0.75);
  max-width: 560px;
  margin: 0 auto;
}

.connect-flow-modal__actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.connect-flow-modal__cta {
  width: 100%;
  max-width: 320px;
  height: 56px;
  font-size: 14px;
}

.connect-flow-modal__cta:disabled {
  opacity: 0.45;
  cursor: default;
  transform: none !important;
  box-shadow: none !important;
}

/* --- Reward Carousel (Step 1) --- */
.reward-carousel {
  position: relative;
  margin: 0 auto;
  max-width: 460px;
}

.reward-carousel__track {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
}

.reward-carousel__slide {
  width: 100%;
  height: auto;
  display: none;
  border-radius: 14px;
}

.reward-carousel__slide.is-active {
  display: block;
}

.reward-carousel__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.reward-carousel__arrow:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: var(--gold-400);
}

.reward-carousel__arrow--prev {
  left: 10px;
}

.reward-carousel__arrow--next {
  right: 10px;
}

.reward-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.reward-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.reward-carousel__dot:hover {
  background: rgba(255, 255, 255, 0.5);
}

.reward-carousel__dot.is-active {
  background: var(--gold-400);
  transform: scale(1.2);
}

/* --- Fan ID Popup Card (Step 2) --- */
.fan-id-popup-card {
  position: relative;
  text-align: center;
  padding: 32px 28px 36px;
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border: 1px solid rgba(217, 166, 53, 0.55);
  border-radius: 16px;
  overflow: hidden;
  isolation: isolate;
}

.fan-id-popup-card > * {
  position: relative;
  z-index: 1;
}

.fan-id-popup-card__ball {
  position: absolute;
  right: 18px;
  bottom: 12px;
  width: 90px;
  height: auto;
  opacity: 0.18;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.fan-id-popup-card__eyebrow {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-400);
  margin-bottom: 16px;
}

.fan-id-popup-card__number {
  font-family: 'Anton', 'Oswald', sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  color: var(--white);
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  margin-bottom: 18px;
  min-height: 42px;
  word-break: break-word;
}

.fan-id-popup-card__rank {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-400);
  margin-bottom: 12px;
}

.fan-id-popup-card__thanks {
  font-family: 'Oswald', 'Anton', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
  color: var(--white);
}

/* --- Network Grid (Step 3) --- */
.network-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto;
}

.network-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: transparent;
  border: 2px solid transparent;
  border-radius: 14px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.network-card:hover {
  transform: translateY(-2px);
  border-color: rgba(242, 196, 91, 0.5);
}

.network-card.is-selected {
  border-color: var(--red-600);
  box-shadow: 0 0 22px rgba(229, 9, 20, 0.3);
}

.network-card__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

/* --- Connect Flow Responsive --- */
@media (max-width: 768px) {
  .connect-flow-modal__card {
    padding: 22px;
  }

  .connect-flow-modal__title {
    font-size: 22px;
  }

  .reward-carousel {
    max-width: 100%;
  }

  .network-grid {
    grid-template-columns: 1fr;
    max-width: 260px;
  }

  .fan-id-popup-card {
    padding: 24px 18px 28px;
  }

  .fan-id-popup-card__number {
    font-size: 34px;
  }
}

@media (max-width: 420px) {
  .connect-flow-modal__title {
    font-size: 20px;
  }

  .reward-carousel__arrow {
    width: 36px;
    height: 36px;
    font-size: 22px;
  }

  .fan-id-popup-card__number {
    font-size: 28px;
  }

  .connect-flow-modal__cta {
    max-width: 100%;
  }
}

/* =========================================================
   ADDED ELEMENTS (Fan ID, Rewards, Live Counter, Limited Banner)
   Built with existing tokens, fonts and card patterns.
   ========================================================= */

/* ---------- Live Registration Counter (in hero) ---------- */
.live-reg {
  position: absolute;
  right: 0;
  bottom: 150px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 30px;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-850));
  border: 1px solid rgba(242, 196, 91, 0.45);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(2, 8, 23, 0.45);
}

.live-reg__dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red-600);
  flex-shrink: 0;
  animation: liveRegPulse 1.8s ease-out infinite;
}

@keyframes liveRegPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(229, 9, 20, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(229, 9, 20, 0);
  }
}

.live-reg__body {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  text-align: left;
}

.live-reg__label {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--gold-400);
  margin-bottom: 6px;
}

.live-reg__nums {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.live-reg__num {
  font-family: 'Oswald', 'Anton', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
}

.live-reg__sep {
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.35);
}

.live-reg__total {
  font-family: 'Oswald', 'Anton', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
}

/* ---------- Rewards / Experiences section ---------- */
.rewards {
  background: var(--navy-900);
  color: var(--white);
  padding: 90px 0 96px;
}

.rewards__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.rewards__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-500);
  margin-bottom: 18px;
}

.rewards__eyebrow .about__stars {
  color: var(--gold-400);
  letter-spacing: 2px;
}

.rewards__title {
  font-family: 'Oswald', 'Anton', sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.rewards__sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

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

.reward-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, var(--navy-800), var(--navy-850));
  border: 1px solid rgba(217, 166, 53, 0.55);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 45px rgba(2, 8, 23, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.reward-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242, 196, 91, 0.85);
  box-shadow: 0 24px 55px rgba(2, 8, 23, 0.6);
}

.reward-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.reward-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.reward-card:hover .reward-card__img {
  transform: scale(1.05);
}

.reward-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--red-600), var(--red-800));
  color: var(--white);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 7px 12px;
  border-radius: 6px;
  box-shadow: 0 6px 16px rgba(229, 9, 20, 0.35);
}

.reward-card__body {
  padding: 22px 22px 26px;
}

.reward-card__title {
  font-family: 'Oswald', 'Anton', sans-serif;
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--white);
  margin-bottom: 8px;
}

.reward-card__desc {
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

/* ---------- Fan ID card ---------- */
.fan-id-section {
  background: var(--navy-900);
  padding: 0 0 90px;
}

.fan-id {
  position: relative;
  max-width: 500px;
  margin: 0 auto 60px;
  padding: 38px 34px 40px;
  text-align: center;
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-850) 55%, var(--navy-900) 100%);
  border: 1px solid rgba(217, 166, 53, 0.55);
  border-radius: 16px;
  box-shadow: 0 16px 45px rgba(2, 8, 23, 0.5);
  overflow: hidden;
  isolation: isolate;
}

.fan-id__ball {
  position: absolute;
  right: -28px;
  bottom: -28px;
  width: 150px;
  height: auto;
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.fan-id > * {
  position: relative;
  z-index: 1;
}

.fan-id__eyebrow {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-400);
  margin-bottom: 16px;
}

.fan-id__number {
  font-family: 'Anton', 'Oswald', sans-serif;
  font-size: 46px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2px;
  color: var(--white);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
  margin-bottom: 22px;
  word-break: break-word;
}

.fan-id__stars {
  position: relative;
  top: 0.25em;
}

.fan-id__founding {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-400);
  margin-bottom: 12px;
}

.fan-id__thanks {
  font-family: 'Oswald', 'Anton', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
  color: var(--white);
}

/* ---------- Limited Spots Banner ---------- */
.limited-banner {
  background: linear-gradient(135deg, var(--navy-850), var(--navy-800));
  border-top: 1px solid rgba(217, 166, 53, 0.35);
  border-bottom: 1px solid rgba(217, 166, 53, 0.35);
}

.limited-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 130px;
  padding: 22px 0;
}

.limited-banner__left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.limited-banner__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  color: var(--navy-900);
  box-shadow: 0 8px 22px rgba(217, 166, 53, 0.4);
}

.limited-banner__title {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold-400);
  margin-bottom: 4px;
}

.limited-banner__sub {
  font-family: 'Oswald', 'Anton', sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 6px;
}

.limited-banner__note {
  font-size: 13px;
  color: var(--muted);
}

.limited-banner__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.limited-banner__join {
  font-size: 12px;
  color: var(--muted);
}

/* =========================================================
   Responsive
   ========================================================= */

/* up to 1024px */
@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-card {
    margin: 0 auto;
  }

  .hero {
    background-position: center center;
  }

  .hero::before {
    background-size: cover;
    background-position: 50% 18%;
    opacity: 0.5;
    -webkit-mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.6) 12%,
      #000 32%,
      #000 78%,
      transparent 100%
    );
    mask-image: linear-gradient(
      to bottom,
      transparent 0%,
      rgba(0, 0, 0, 0.6) 12%,
      #000 32%,
      #000 78%,
      transparent 100%
    );
  }

  .hero__inner {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 70px 0 60px;
    gap: 40px;
    text-align: center;
  }

  .hero__eyebrow,
  .hero__cta,
  .benefits {
    justify-content: center;
  }

  .hero__title {
    font-size: 56px;
  }

  .hero__visual {
    display: none;
  }

  .live-reg {
    position: static;
    margin-top: 26px;
  }

  .stats {
    margin-top: 0;
    padding-top: 0;
  }

  .stats__card {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    padding: 24px 0;
    margin-top: -45px;
  }

  .stat {
    padding: 22px 16px;
  }

  .stat:nth-child(2) {
    border-left: 1px solid rgba(7, 17, 38, 0.12);
  }

  .stat:nth-child(3) {
    border-left: none;
    border-top: 1px solid rgba(7, 17, 38, 0.12);
  }

  .stat:nth-child(4) {
    border-top: 1px solid rgba(7, 17, 38, 0.12);
  }

  .main-info__inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .bonus-card {
    margin: 0 auto;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }

  .feature {
    padding: 8px 24px;
  }

  .feature:nth-child(odd) {
    border-left: none;
    padding-left: 0;
  }

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

  .bottom-cta__text {
    font-size: 24px;
  }

  /* added: rewards 2 columns on tablet */
  .rewards__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rewards__title {
    font-size: 40px;
  }
}

/* up to 768px */
@media (max-width: 768px) {
  .about {
    margin-top: -188px;
    padding-top: 218px;
    padding-bottom: 120px;
  }

  .about__title {
    font-size: 42px;
  }

  .about-card {
    max-width: 100%;
  }

  .header {
    height: 96px;
  }

  .nav,
  .header__actions .btn--ghost {
    display: none;
  }

  .logo__img {
    height: 88px;
  }

  .hero::before {
    background-position: 73% 18%;
  }

  .hero__inner {
    padding: 200px 0 50px;
  }

  .hero__title {
    font-size: 44px;
  }

  .hero__desc {
    font-size: 16px;
  }

  .hero__eyebrow {
    font-size: 16px;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
    min-width: 0;
  }

  .benefits {
    display: none;
  }

  .stats {
    margin-top: 0;
  }

  .stats__card {
    grid-template-columns: repeat(2, 1fr);
    width: min(440px, calc(100% - 32px));
    margin: 0 auto;
    height: auto;
    min-height: 0;
    padding: 0;
  }

  .stat {
    padding: 10px;
  }

  .stat__icon svg {
    width: 22px;
    height: 22px;
  }

  .stat__icon {
    margin-bottom: 4px;
  }

  .stat__num {
    font-size: 30px;
    margin-bottom: 2px;
  }

  .stat__label {
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  .main-info {
    padding: 60px 0 50px;
  }

  .bonus-card {
    padding: 28px 22px;
  }

  .bonus-card__amount {
    font-size: 72px;
  }

  .bonus-card__title {
    font-size: 28px;
  }

  .bonus-card__crypto {
    font-size: 24px;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .feature {
    border-left: none;
    padding: 12px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .feature:first-child {
    border-top: none;
  }

  .bottom-cta {
    padding: 36px 0;
  }

  .bottom-cta__inner {
    flex-direction: column;
    text-align: center;
    gap: 22px;
    padding-left: 0;
  }

  .bottom-cta__ball {
    opacity: 0.25;
  }

  .bottom-cta__text {
    font-size: 24px;
  }

  .btn--outline-white {
    width: 100%;
  }

  .footer {
    padding: 40px 0 20px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
    justify-items: center;
  }

  .footer__col {
    text-align: center;
    width: 100%;
  }

  .verified__icon {
    margin-left: auto;
    margin-right: auto;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: left;
  }

  /* added: rewards single column on mobile */
  .rewards {
    padding: 60px 0 64px;
  }

  .rewards__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .rewards__title {
    font-size: 34px;
  }

  .rewards__sub {
    font-size: 16px;
  }

  /* added: fan id full width on mobile */
  .fan-id {
    max-width: 100%;
  }

  .fan-id__number {
    font-size: 38px;
  }

  /* added: live counter centered under hero text */
  .live-reg {
    margin-left: auto;
    margin-right: auto;
  }

  /* added: limited banner becomes a vertical block */
  .limited-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 22px;
    min-height: 0;
    padding: 32px 0;
  }

  .limited-banner__left {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  .limited-banner__right {
    width: 100%;
  }

  .limited-banner__right .btn {
    width: 100%;
  }
}

/* up to 420px */
@media (max-width: 420px) {
  .container {
    width: calc(100% - 28px);
  }

  .about__title {
    font-size: 34px;
  }

  .about__benefit {
    font-size: 14px;
  }

  .about__cta {
    width: 100%;
  }

  .about-card__grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-stat {
    padding: 20px 10px;
  }

  .about-stat__num {
    font-size: 30px;
  }

  .hero__title {
    font-size: 38px;
  }

  .stats__card {
    grid-template-columns: 1fr;
  }

  .stat {
    border-left: none !important;
    border-top: 1px solid rgba(7, 17, 38, 0.12);
  }

  .stat:first-child {
    border-top: none;
  }

  .bonus-card__rewards {
    flex-direction: column;
    align-items: center;
  }

  .reward {
    width: 100%;
    max-width: 240px;
  }

  .bottom-cta__text {
    font-size: 20px;
  }

  .header__join {
    padding: 0 14px;
    font-size: 11px;
  }
}
