
.home-hub {
  padding: 24px 20px;
  border-top: 1px solid rgba(147, 197, 253, 0.12);
  background:
    radial-gradient(circle at 100% 0%, rgba(96, 165, 250, 0.08), transparent 38%),
    rgba(7, 16, 31, 0.72);
}

.home-hub__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1080px, 100%);
  margin: 0 auto;
}

.home-hub__eyebrow {
  margin: 0 0 5px;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.home-hub h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.home-hub p:not(.home-hub__eyebrow) {
  max-width: 650px;
  margin: 8px 0 0;
  color: #b8c2d9;
  font-size: 15px;
}

.home-hub__links {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  flex: 0 0 auto;
}

.home-hub__links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(147, 197, 253, 0.20);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #f8fafc;
  font-size: 13px;
  font-weight: 800;
}

.home-hub__links .home-hub__visit {
  border-color: rgba(147, 197, 253, 0.42);
  background: #2563eb;
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.20);
}

@media (max-width: 720px) {
  .home-hub {
    padding: 22px 18px;
  }

  .home-hub__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .home-hub__links {
    width: 100%;
  }

  .home-hub__links a {
    flex: 1 1 calc(50% - 5px);
    min-height: 38px;
    padding: 7px 11px;
  }

  .home-hub__links a:not(.home-hub__visit) {
    border-color: rgba(147, 197, 253, 0.20);
    background: rgba(255, 255, 255, 0.035);
    color: #dbeafe;
  }
}

.partnership-home-strip {
  padding: 0 20px;
  background: rgba(5, 9, 20, 0.78);
  border-top: 1px solid rgba(244, 200, 106, 0.14);
}

.partnership-home-strip__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  width: min(1080px, 100%);
  margin: 0 auto;
  padding: 22px 0;
  border-top: 0;
  border-bottom: 1px solid rgba(147, 197, 253, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.partnership-home-strip__content {
  max-width: 760px;
}

.partnership-home-strip__eyebrow {
  margin: 0 0 6px;
  color: #f4c86a;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.partnership-home-strip h2 {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.14;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

.partnership-home-strip__content > p:not(.partnership-home-strip__eyebrow) {
  max-width: 720px;
  margin: 6px 0 0;
  color: #aab6cd;
  font-size: 13px;
  line-height: 1.5;
}

.partnership-home-strip small {
  display: block;
  margin-top: 6px;
  color: #7f8aa3;
  font-size: 10.5px;
  font-weight: 650;
}

.partnership-home-strip__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #f4c86a;
  font-size: 13px;
  font-weight: 850;
  white-space: nowrap;
  text-decoration: none;
}

.partnership-home-strip__cta:hover,
.partnership-home-strip__cta:focus-visible {
  color: #ffe8a6;
  text-decoration: underline;
  text-underline-offset: 4px;
  outline: none;
}

@media (max-width: 720px) {
  .partnership-home-strip {
    padding: 0 18px;
  }

  .partnership-home-strip__inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding: 18px 0;
    border-radius: 0;
  }

  .partnership-home-strip__eyebrow {
    margin-bottom: 5px;
    font-size: 10px;
  }

  .partnership-home-strip h2 {
    font-size: 20px;
    line-height: 1.14;
  }

  .partnership-home-strip__content > p:not(.partnership-home-strip__eyebrow) {
    font-size: 13px;
    line-height: 1.45;
  }

  .partnership-home-strip small {
    font-size: 10px;
  }

  .partnership-home-strip__cta {
    width: auto;
    min-height: 30px;
    font-size: 12px;
  }
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background:
    radial-gradient(circle at 50% -10%, rgba(96,165,250,0.20), transparent 34%),
    linear-gradient(180deg, #07101f 0%, #0b1220 42%, #050914 100%);
  color: white;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

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

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px 40px;
  background: rgba(7,16,31,0.88);
  position: sticky;
  top: var(--cmg-promo-banner-height, 0px);
  z-index: 1000;
  border-bottom: 1px solid rgba(147,197,253,0.12);
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translateZ(0);
  will-change: transform;
}

.cmg-promo-banner {
  position: sticky;
  top: 0;
  z-index: 1200;
  padding: calc(5px + env(safe-area-inset-top)) max(12px, env(safe-area-inset-right)) 5px max(12px, env(safe-area-inset-left));
  background:
    radial-gradient(circle at 18% 0%, rgba(244, 200, 106, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(9, 13, 23, 0.98), rgba(12, 22, 36, 0.96));
  border-bottom: 1px solid rgba(244, 200, 106, 0.26);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.30), 0 1px 0 rgba(244, 200, 106, 0.14);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.cmg-promo-banner__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  max-width: 1180px;
  margin: 0 auto;
  min-height: 44px;
}

.cmg-promo-banner__badge {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  overflow: hidden;
  flex: none;
  border: 1px solid rgba(244, 200, 106, 0.30);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    rgba(8, 15, 28, 0.78);
  box-shadow:
    0 9px 18px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.cmg-promo-banner__badge--default {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(7, 14, 27, 0.86);
}

.cmg-promo-banner__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  background: rgba(255, 255, 255, 0.06);
}

.cmg-promo-banner__mark {
  display: inline-grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #f4c86a;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  text-shadow: 0 1px 8px rgba(244, 200, 106, 0.16);
}

.cmg-promo-banner__copy {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.cmg-promo-banner__copy strong {
  color: #f8fafc;
  font-size: 14px;
  line-height: 1.15;
}

.cmg-promo-banner__copy span {
  color: #f4c86a;
  font-size: 12px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.cmg-promo-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 8px 12px;
  border-radius: 8px;
  background: linear-gradient(180deg, #fff7df, #f4c86a);
  color: #1f1603;
  font-size: 12px;
  font-weight: 950;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(56, 189, 248, 0.24);
}

.logo {
  font-weight: 700;
  font-size: 20px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform .18s ease;
  filter:
    drop-shadow(0 0 12px rgba(59,130,246,0.28))
    drop-shadow(0 0 24px rgba(59,130,246,0.12));
  transform: translateZ(0);
}

.brand-lockup:hover .brand-logo{
  transform:scale(1.03);
}

.brand-name {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.04em;
  background: linear-gradient(180deg, #ffffff, #b8c2d9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-actions {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  justify-content: flex-end;
  gap: 5px;
  min-width: 0;
}

.nav-guides-help {
  color: rgba(219, 234, 254, 0.72);
  padding-right: 2px;
  font-size: 10.5px;
  font-weight: 800;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.nav-guides-help:hover,
.nav-guides-help:focus-visible {
  color: #fff;
  outline: none;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* HERO */
.hero {
  text-align: center;
  padding: 72px 20px 72px;
  background:
    linear-gradient(180deg, rgba(7,16,31,0.16), rgba(11,18,32,0.96) 92%),
    radial-gradient(circle at 50% 0%, rgba(96,165,250,0.28), transparent 42%),
    linear-gradient(135deg, rgba(15,23,42,0.95), rgba(2,6,23,0.96));
  border-bottom: 1px solid rgba(147,197,253,0.12);
}

.hero h2 {
  max-width: 780px;
  margin: 28px auto 12px;
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.12;
}

.hero h1 {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  margin-bottom: 10px;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  margin: auto;
  color: #b8c2d9;
}

.hero-subtext {
  margin-top: 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-subtext-clip {
  margin-top: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-title-block {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin-bottom: 4px;
}

.hero-micro {
  margin: 0;
  font-size: 11.5px;
  color: rgba(184,194,217,0.65);
  line-height: 1.35;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hero-line {
  margin: 0;
  font-size: 17px;
  color: #b8c2d9;
  line-height: 1.55;
}

.hero-tags {
  margin: 0;
  font-size: 12px;
  color: #777;
  letter-spacing: 0.3px;
} 
  
.hero-trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: min(760px, calc(100% - 24px));
  margin: 2px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(96,165,250,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  color: #cbd5e1;
  font-size: 12.5px;
  line-height: 1.4;
}

.guarantee-note {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(187, 247, 208, 0.78);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
}

.cmg-profile-pill {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  max-width: 100%;
  min-width: 142px;
  min-height: 48px;
  padding: 8px 13px;
  border: 1px solid rgba(226, 232, 240, 0.16);
  border-radius: 13px;
  color: rgba(248, 250, 252, 0.94);
  background:
    radial-gradient(circle at 100% 0%, rgba(96,165,250,0.08), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.060), rgba(255,255,255,0.024));
  white-space: nowrap;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.cmg-profile-pill__main {
  font-size: 12.75px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.012em;
}

.cmg-profile-pill__sub,
.cmg-profile-pill__meta {
  display: none;
  max-width: 150px;
  overflow: hidden;
  line-height: 1;
  text-overflow: ellipsis;
}

.cmg-profile-pill__sub {
  margin-top: 4px;
  color: rgba(226,232,240,0.76);
  font-size: 10.5px;
  font-weight: 700;
}

.cmg-profile-pill__meta {
  margin-top: 3px;
  color: rgba(226,232,240,0.56);
  font-size: 10px;
  font-weight: 700;
}

.cmg-profile-pill__sub:not(:empty),
.cmg-profile-pill__meta:not(:empty) {
  display: block;
}

.cmg-profile-pill--has-clips .cmg-profile-pill__sub {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: rgba(187, 247, 208, 0.92);
}

.cmg-profile-pill--has-clips .cmg-profile-pill__sub::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #34c759;
  box-shadow: 0 0 0 2px rgba(52, 199, 89, 0.14);
  flex: 0 0 auto;
}

.nav-profile-link.cmg-profile-pill:hover {
  border-color: rgba(226, 232, 240, 0.28);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.075), rgba(255,255,255,0.034));
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.16);
  transform: translateY(-1px);
}

.nav-profile-link--demo.cmg-profile-pill {
  border-color: rgba(244, 200, 106, 0.26);
  background:
    radial-gradient(circle at 100% 0%, rgba(244, 200, 106, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.060), rgba(255,255,255,0.024));
}

.nav-profile-link--demo.cmg-profile-pill:hover,
.nav-profile-link--demo.cmg-profile-pill:focus-visible {
  border-color: rgba(244, 200, 106, 0.48);
  box-shadow:
    0 10px 24px rgba(0,0,0,0.18),
    0 0 24px rgba(244, 200, 106, 0.12);
  outline: none;
}

.cmg-profile-pill--preview {
  pointer-events: none;
  cursor: default;
  user-select: none;
}

@media (max-width: 600px) {
  .nav-actions {
    align-items: flex-end;
    flex-direction: column;
    gap: 3px;
    width: min(140px, 41vw);
  }

  .nav-guides-help {
    padding-right: 2px;
    font-size: 9.5px;
    line-height: 1.1;
  }

  .nav-profile-link.cmg-profile-pill {
    width: min(132px, 38vw);
    max-width: min(132px, 38vw);
    min-height: 40px;
    padding: 5px 8px 5px 9px;
    border-radius: 11px;
    border-color: rgba(226,232,240,0.115);
    background:
      linear-gradient(180deg, rgba(255,255,255,0.040), rgba(255,255,255,0.016));
  }

  .cmg-profile-pill__main {
    font-size: 10.2px;
    line-height: 1;
    letter-spacing: -0.012em;
  }

  .cmg-profile-pill__sub,
  .cmg-profile-pill__meta {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .cmg-profile-pill__sub {
    margin-top: 3.5px;
    font-size: 8.95px;
    line-height: 1.05;
  }

  .cmg-profile-pill__meta {
    margin-top: 2.5px;
    font-size: 8.55px;
    line-height: 1;
  }

  .nav-profile-link--demo.cmg-profile-pill {
    width: min(140px, 41vw);
    max-width: min(140px, 41vw);
  }

  .nav-profile-link--demo .cmg-profile-pill__sub {
    max-width: 100%;
    color: #ffe8a6;
    font-size: 9.35px;
  }

  .nav-profile-link--demo .cmg-profile-pill__meta {
    display: none;
  }
}

/* BUTTON ROW */
.hero-buttons {
  margin-top: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;

  max-width: min(640px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons .btn {
  width: auto;
  min-width: min(240px, 100%);
}

.hero-buttons .btn.primary {
  min-width: min(250px, 100%);
}

.hero-buttons .btn.demo-gold {
  min-width: min(210px, 100%);
}

.hero .hero-profile-note {
  max-width: 560px;
  margin: 12px auto 0;
  color: rgba(203, 213, 225, 0.74);
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.45;
  text-align: center;
}

/* BASE BUTTON */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  max-width: 400px;

  min-height: 52px;

  padding: 14px 18px;
  border-radius: 8px;

  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;

  box-sizing: border-box;
  transition: transform 0.16s ease, background 0.16s ease, border-color 0.16s ease, box-shadow 0.16s ease;
}

/* PRIMARY CTA */
.btn.primary {
  background: linear-gradient(135deg, #60a5fa, #2563eb);
  color: #ffffff;
  border: 1px solid rgba(191,219,254,0.35);
  box-shadow: 0 12px 32px rgba(37,99,235,0.30), inset 0 1px 0 rgba(255,255,255,0.22);
  position: relative;
  overflow: hidden;
}

.btn.primary::before{
  content:"";
  position:absolute;
  inset:-20px;
  background:radial-gradient(
    circle,
    rgba(96,165,250,.18),
    transparent 70%
  );
  z-index:-1;
}

.btn.primary:hover {
  background: linear-gradient(135deg, #93c5fd, #2563eb);
  transform: translateY(-1px);
}

/* SECONDARY CTA */
.btn.secondary {
  background: rgba(15,23,42,0.70);
  color: #bfdbfe;
  border: 1px solid rgba(147,197,253,0.28);
}

.btn.secondary:hover {
  background: rgba(59,130,246,0.20);
  border-color: rgba(147,197,253,0.52);
  color: #ffffff;
}

.btn.demo-gold {
  border: 1px solid rgba(244, 200, 106, 0.54);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 244, 194, 0.09), transparent 42%),
    rgba(7, 14, 27, 0.58);
  color: #ffe8a6;
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.btn.demo-gold:hover,
.btn.demo-gold:focus-visible {
  border-color: rgba(255, 232, 166, 0.72);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 244, 194, 0.15), transparent 42%),
    rgba(244, 200, 106, 0.10);
  color: #fff3c4;
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.20),
    0 0 24px rgba(244, 200, 106, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.cta-secondary {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.btn-subtext {
  margin-top: 3px; 
  font-size: 13px;
  opacity: 0.75;
  line-height: 1.2;
  text-align: center;
}

/* CANADA SPECIAL CTA */
.btn.canada {
  background: transparent;
  color: #2f6fed;
  border: 2px solid #2f6fed;
}

.btn.canada:hover {
  background: #2f6fed;
  color: #ffffff;
}

/* SMALL BUTTON (nav) */
.btn.small {
  width: auto;
  min-height: 38px;
  padding: 8px 14px;
  font-size: 12px;
}

/* NEW ARENA HOMEPAGE HERO */
.hero-arena {
  --hero-blue: #3b82f6;
  --hero-blue-soft: #60a5fa;
  --hero-blue-pale: #93c5fd;
  --hero-muted: #b8c2d9;

  /* Muted CMG gold, matching demo/profile CTAs */
  --hero-gold: #f4c86a;
  --hero-gold-soft: #ffe8a6;
  --hero-gold-bright: #fff3c4;

  /* Updated by script.js for subtle scroll reveal */
  --hero-reveal: 0;

  position: relative;
  isolation: isolate;
  min-height: calc(100svh - 76px);
  padding: clamp(30px, 3.6vw, 52px) 20px clamp(46px, 5vw, 66px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(96,165,250,0.16), transparent 34%),
    linear-gradient(180deg, #06101d 0%, #081220 48%, #050914 100%);
  border-bottom: 1px solid rgba(147,197,253,0.12);
}

.hero-arena__bg {
  position: absolute;
  inset: 0;
  z-index: -4;
  background-image: url("/assets/home/hero/arena-hero-desktop.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 1;
  transform:
    scale(calc(1.055 - (var(--hero-reveal) * 0.080)))
    translateY(calc(var(--hero-reveal) * 24px));
  transform-origin: center top;
  will-change: transform;
}

.hero-arena__shade {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: calc(1 - (var(--hero-reveal) * 0.42));
  will-change: opacity;
  background:
    radial-gradient(circle at 50% 18%, rgba(147,197,253,0.09), transparent 25%),
    radial-gradient(circle at 50% 36%, rgba(2,6,23,0.08), rgba(2,6,23,0.50) 56%, rgba(2,6,23,0.86) 100%),
    linear-gradient(90deg, rgba(2,6,23,0.74) 0%, rgba(2,6,23,0.26) 41%, rgba(2,6,23,0.32) 62%, rgba(2,6,23,0.72) 100%),
    linear-gradient(180deg, rgba(2,6,23,0.06) 0%, rgba(2,6,23,0.25) 45%, rgba(2,6,23,0.94) 100%);
}

.hero-arena__partner-badge {
  position: absolute;
  z-index: 5;
  top: clamp(18px, 3vw, 34px);
  right: clamp(18px, 5vw, 72px);
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  max-width: 230px;
  padding: 8px 12px;
  border: 1px solid rgba(244, 200, 106, 0.28);
  border-radius: 999px;
  background: rgba(7, 14, 27, 0.34);
  color: #ffe8a6;
  font-size: 0.80rem;
  font-weight: 780;
  line-height: 1.12;
  text-align: left;
  text-decoration: none;
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.hero-arena__partner-badge-eyebrow {
  display: block;
  color: rgba(248, 250, 252, 0.66);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.075em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-arena__partner-badge-full {
  display: block;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: -0.01em;
  line-height: 1.14;
  text-transform: none;
}

.hero-arena__partner-badge-short {
  display: none;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: -0.01em;
  line-height: 1.1;
  text-transform: none;
}

.hero-arena__partner-badge-short small {
  display: block;
  margin-bottom: 2px;
  color: rgba(248, 250, 252, 0.54);
  font-size: 0.47rem;
  font-weight: 760;
  letter-spacing: 0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.hero-arena__partner-badge:hover,
.hero-arena__partner-badge:focus-visible {
  border-color: rgba(255, 232, 166, 0.74);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 244, 194, 0.18), transparent 42%),
    rgba(244, 200, 106, 0.10);
  color: #fff3c4;
  transform: translateY(-1px);
  outline: none;
}

.hero-arena__partner-badge:focus-visible {
  outline: 2px solid rgba(244, 200, 106, 0.72);
  outline-offset: 4px;
}

.hero-arena::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: calc(1 - (var(--hero-reveal) * 0.34));
  will-change: opacity;
  background:
    radial-gradient(circle at 50% 31%, rgba(15,23,42,0.46), rgba(15,23,42,0.18) 28%, transparent 48%),
    radial-gradient(circle at 78% 57%, rgba(96,165,250,0.08), transparent 28%),
    radial-gradient(circle at 50% 78%, rgba(15,23,42,0.36), transparent 48%);
}

.hero-arena::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: -1;
  height: 31%;
  pointer-events: none;
  opacity: calc(1 - (var(--hero-reveal) * 0.56));
  will-change: opacity;
  background:
    linear-gradient(180deg, transparent, rgba(5,9,20,0.88) 62%, #050914 100%);
}

.hero-arena__content {
  position: relative;
  z-index: 1;
  width: min(100%, 1040px);
  margin: 0 auto;
  text-align: center;
  transform: translateY(-2px);
}

.hero-arena h1 {
  max-width: 650px;
  margin: 0 auto;
  color: #ffffff;
  font-size: clamp(42px, 5.35vw, 66px);
  font-weight: 760;
  line-height: 1.025;
  letter-spacing: -0.058em;
  text-wrap: balance;
  text-shadow:
    0 1px 0 rgba(255,255,255,0.08),
    0 16px 38px rgba(0,0,0,0.54),
    0 0 24px rgba(2,6,23,0.82);
}

.hero-arena__subheadline {
  display: block;
  max-width: 520px;
  margin: 34px auto 0;
  padding: 4px 0 4px;
  color: var(--hero-blue-pale) !important;
  font-size: clamp(18px, 1.68vw, 22.5px);
  font-weight: 760;
  line-height: 1.12;
  letter-spacing: -0.034em;
  text-shadow:
    0 0 14px rgba(147,197,253,0.28),
    0 2px 10px rgba(2,6,23,0.96),
    0 8px 22px rgba(0,0,0,0.50);
}

.hero-arena__copy {
  max-width: 560px;
  margin: 16px auto 0;
  color: rgba(203,213,225,0.88);
  font-size: clamp(13px, 1.14vw, 15px);
  font-weight: 500;
  line-height: 1.58;
  letter-spacing: -0.01em;
  text-shadow:
    0 2px 10px rgba(2,6,23,0.82),
    0 8px 22px rgba(0,0,0,0.44);
}

.hero-arena__cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 31px;
}

.hero-arena__cta {
  width: min(100%, 405px);
  max-width: 405px;
  min-height: 50px;
  border: 1px solid rgba(191,219,254,0.44);
  border-radius: 13px;
  font-size: clamp(18px, 1.78vw, 23px);
  font-weight: 740;
  letter-spacing: -0.038em;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.14), transparent 38%),
    linear-gradient(135deg, #60a5fa 0%, #2f6fed 52%, #2563eb 100%);
  box-shadow:
    0 14px 34px rgba(37,99,235,0.30),
    0 0 26px rgba(96,165,250,0.13),
    inset 0 1px 0 rgba(255,255,255,0.30),
    inset 0 -1px 0 rgba(2,6,23,0.20);
}

.hero-arena__cta:hover,
.hero-arena__cta:focus-visible {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.18), transparent 40%),
    linear-gradient(135deg, #93c5fd 0%, #3b82f6 48%, #2563eb 100%);
  border-color: rgba(219,234,254,0.56);
  box-shadow:
    0 16px 38px rgba(37,99,235,0.34),
    0 0 30px rgba(96,165,250,0.18),
    inset 0 1px 0 rgba(255,255,255,0.34);
}

/* Premium included benefit */
.hero-arena__profile-bonus {
  display: grid;
  grid-template-columns: 22px minmax(0, auto);
  gap: 9px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: min(100%, 650px);
  margin: 34px auto 0;
  padding: 0;
  text-align: left;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.hero-arena__gift {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  color: var(--hero-gold);
  opacity: 0.94;
  filter:
    drop-shadow(0 0 7px rgba(244,200,106,0.15))
    drop-shadow(0 4px 10px rgba(0,0,0,0.24));
}

.hero-arena__gift svg {
  display: block;
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.42;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-arena__gift svg path,
.hero-arena__gift svg rect {
  fill: none;
  stroke: currentColor;
}

.hero-arena__gift .gift-lid,
.hero-arena__gift .gift-box {
  stroke-width: 1.54;
}

.hero-arena__gift .gift-ribbon,
.hero-arena__gift .gift-ribbon-top {
  stroke-width: 1.32;
}

.hero-arena__gift .gift-bow-left,
.hero-arena__gift .gift-bow-right {
  stroke-width: 1.42;
}

.hero-arena__profile-bonus > div:last-child {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  text-align: left;
}

.hero-arena__profile-bonus p {
  max-width: none;
  margin: 0;
  color: rgba(248,250,252,0.80);
  font-size: clamp(11.75px, 0.9vw, 12.5px);
  font-weight: 520;
  line-height: 1.28;
  letter-spacing: -0.001em;
  text-align: left;
  white-space: nowrap;
  text-shadow:
    0 2px 8px rgba(2,6,23,0.82),
    0 8px 22px rgba(0,0,0,0.36);
}

.hero-arena__profile-bonus p span {
  color: var(--hero-gold-soft);
  font-weight: 680;
}

.hero-arena__profile-bonus a {
  display: inline-flex;
  position: relative;
  flex: 0 0 auto;
  width: fit-content;
  margin: 0;
  padding-left: 13px;
  padding-right: 4px;
  color: var(--hero-gold-soft);
  font-size: clamp(11.5px, 0.86vw, 12.25px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
  text-shadow: 0 0 10px rgba(244,200,106,0.10);
  transition: color 0.16s ease, transform 0.16s ease;
}

.hero-arena__profile-bonus a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 16px;
  background: rgba(244,200,106,0.20);
  transform: translateY(-50%);
}

.hero-arena__profile-bonus a::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 4px;
  bottom: -3px;
  height: 1px;
  background: rgba(244,200,106,0.34);
  transform: scaleX(0.68);
  transform-origin: left center;
  transition: transform 0.16s ease, background 0.16s ease;
}

.hero-arena__profile-bonus a:hover,
.hero-arena__profile-bonus a:focus-visible {
  color: var(--hero-gold-bright);
  transform: translateY(-1px);
  outline: none;
}

.hero-arena__profile-bonus a:hover::after,
.hero-arena__profile-bonus a:focus-visible::after {
  background: rgba(255,232,166,0.70);
  transform: scaleX(1);
}

.hero-arena__trust,
.hero-arena__payments {
  width: min(100%, 820px);
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(147,197,253,0.125);
  border-radius: 13px;
  background:
    radial-gradient(circle at 50% 0%, rgba(96,165,250,0.035), transparent 42%),
    rgba(2,6,23,0.34);
  box-shadow:
    0 14px 34px rgba(0,0,0,0.16),
    inset 0 1px 0 rgba(255,255,255,0.040);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-arena__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
  padding: 8px 10px;
  opacity: 0.88;
}

.hero-arena__trust div {
  display: flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  min-height: 26px;
  padding: 0 10px;
  white-space: nowrap;
  line-height: 1;
}

.hero-arena__trust div + div {
  border-left: 1px solid rgba(147,197,253,0.13);
}

.hero-arena__trust strong {
  color: var(--hero-blue);
  font-size: clamp(12.5px, 1.02vw, 14.75px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: -0.028em;
}

.hero-arena__trust span {
  color: rgba(248,250,252,0.72);
  font-size: clamp(10.5px, 0.82vw, 11.75px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.004em;
}

.hero-arena__payments {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  margin-top: 10px;
  padding: 7px 10px;
  opacity: 0.82;
}

.hero-arena__payment {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
}

.hero-arena__payment + .hero-arena__payment {
  border-left: 1px solid rgba(147,197,253,0.13);
}

.hero-arena__payment img {
  display: block;
  width: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 6px 12px rgba(0,0,0,0.20))
    drop-shadow(0 0 8px rgba(96,165,250,0.06));
}

/* Payment logos: equal visual height */
.hero-arena__payment img {
  display: block;
  width: auto;
  height: 24px;
  max-width: 92px;
  object-fit: contain;
  filter:
    drop-shadow(0 6px 12px rgba(0,0,0,0.20))
    drop-shadow(0 0 8px rgba(96,165,250,0.06));
}

.hero-arena__payment:nth-child(1) img {
  height: 20px;
  max-width: 78px;
  transform: translateY(1.5px);
}

.hero-arena__payment:nth-child(2) img {
  height: 25px;
  max-width: 38px;
}

.hero-arena__payment:nth-child(3) img {
  height: 18px;
  max-width: 70px;
}

.hero-arena__payment:nth-child(4) img {
  height: 30px;
  max-width: 58px;
}

.hero-arena__community {
  max-width: 640px;
  margin: 18px auto 0;
  color: rgba(184,194,217,0.58);
  font-size: clamp(11px, 0.86vw, 12.25px);
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  text-shadow: 0 8px 22px rgba(0,0,0,0.34);
}

.hero-arena__community span {
  color: var(--hero-blue-pale);
}

/* JS-driven cinematic hero reveal */
@media (prefers-reduced-motion: reduce) {
  .hero-arena {
    --hero-reveal: 0 !important;
  }
}

.hero-arena + .how-it-works {
  border-top-color: rgba(147,197,253,0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(96,165,250,0.08), transparent 34%),
    linear-gradient(180deg, rgba(15,26,46,0.95), rgba(8,15,29,0.97));
}

@media (max-width: 760px) {
  .hero-arena {
    min-height: auto;
    padding: 30px 16px 50px;
  }

  .hero-arena__partner-badge {
    top: 10px;
    right: 12px;
    max-width: 160px;
    padding: 6px 9px;
    border-color: rgba(244, 200, 106, 0.22);
    background: rgba(7, 14, 27, 0.30);
    color: #ffe8a6;
    font-size: 0.64rem;
    font-weight: 760;
    line-height: 1.06;
    box-shadow:
      0 6px 14px rgba(0, 0, 0, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
  }

  .hero-arena__partner-badge-eyebrow,
  .hero-arena__partner-badge-full {
    display: none;
  }

  .hero-arena__partner-badge-short {
    display: block;
  }

  .hero-arena__bg {
    background-image: url("/assets/home/hero/arena-hero-mobile.webp");
    background-position: center top;
    opacity: 0.98;
    transform:
      scale(calc(1.035 - (var(--hero-reveal) * 0.052)))
      translateY(calc(var(--hero-reveal) * 16px));
  }

  .hero-arena__shade {
    background:
      radial-gradient(circle at 50% 18%, rgba(147,197,253,0.055), transparent 25%),
      radial-gradient(circle at 50% 31%, rgba(2,6,23,0.13), rgba(2,6,23,0.47) 60%, rgba(2,6,23,0.86) 100%),
      linear-gradient(90deg, rgba(2,6,23,0.62) 0%, rgba(2,6,23,0.30) 54%, rgba(2,6,23,0.52) 100%),
      linear-gradient(180deg, rgba(2,6,23,0.08) 0%, rgba(2,6,23,0.30) 48%, rgba(2,6,23,0.94) 100%);
  }

  .hero-arena__content {
    width: min(100%, 380px);
    transform: none;
  }

  .hero-arena h1 {
    max-width: 315px;
    font-size: clamp(30px, 8vw, 38px);
    font-weight: 740;
    line-height: 1.1;
    letter-spacing: -0.048em;
  }

  .hero-arena__subheadline {
    display: block;
    max-width: 315px;
    margin: 28px auto 0;
    padding: 6px 0 6px;
    color: var(--hero-blue-pale) !important;
    font-size: clamp(15px, 3.85vw, 17.5px);
    font-weight: 760;
    line-height: 1.2;
    letter-spacing: -0.026em;
    text-shadow:
      0 0 16px rgba(147,197,253,0.34),
      0 2px 10px rgba(2,6,23,0.98),
      0 8px 22px rgba(0,0,0,0.48);
  }

  .hero-arena__copy {
    max-width: 300px;
    margin-top: 0;
    font-size: clamp(11.75px, 3.05vw, 13px);
    font-weight: 500;
    line-height: 1.64;
    letter-spacing: -0.006em;
  }

  .hero-arena__cta-wrap {
    margin-top: 28px;
  }

  .hero-arena__cta {
    width: min(100%, 315px);
    min-height: 48px;
    border-radius: 12px;
    font-size: clamp(18px, 4.7vw, 21px);
    font-weight: 720;
  }

  .hero-arena__profile-bonus {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
    width: min(100%, 300px);
    max-width: 300px;
    margin-top: 22px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .hero-arena__gift {
    width: 22px;
    height: 22px;
    opacity: 0.86;
  }

  .hero-arena__gift svg {
    width: 19px;
    height: 19px;
    stroke-width: 1.34;
  }

  .hero-arena__profile-bonus > div:last-child {
    display: grid;
    gap: 6px;
    min-width: 0;
    text-align: left;
  }

  .hero-arena__profile-bonus p {
    max-width: 240px;
    margin: 0;
    color: rgba(248,250,252,0.70);
    font-size: 10.75px;
    font-weight: 500;
    line-height: 1.42;
    letter-spacing: 0;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .hero-arena__profile-bonus p span {
    color: var(--hero-gold-soft);
    font-weight: 680;
  }

  .hero-arena__profile-bonus a {
    width: fit-content;
    margin: 0;
    padding-left: 0;
    color: var(--hero-gold-soft);
    font-size: 11.25px;
    font-weight: 660;
    line-height: 1.1;
  }

  .hero-arena__profile-bonus a::before {
    display: none;
  }

  .hero-arena__profile-bonus a::after {
    left: 0;
  }

  .hero-arena__trust {
    width: min(100%, 315px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 27px;
    padding: 8px 5px;
  }

  .hero-arena__trust div {
    display: grid;
    gap: 3px;
    align-content: center;
    justify-items: center;
    min-height: 34px;
    padding: 0 4px;
    white-space: normal;
  }

  .hero-arena__trust div + div {
    border-left: 1px solid rgba(147,197,253,0.13);
    border-top: 0;
  }

  .hero-arena__trust strong {
    font-size: 11.25px;
    font-weight: 740;
    line-height: 1.05;
    letter-spacing: -0.024em;
  }

  .hero-arena__trust span {
    font-size: 8.25px;
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: 0;
  }

  .hero-arena__payments {
    width: min(100%, 315px);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-top: 10px;
    padding: 8px 5px;
  }

  .hero-arena__payment {
    min-height: 30px;
    padding: 0 5px;
  }

  .hero-arena__payment + .hero-arena__payment {
    border-left: 1px solid rgba(147,197,253,0.13);
  }

  .hero-arena__payment img {
    width: auto;
    height: 18px;
    max-width: 52px;
    object-fit: contain;
  }

  .hero-arena__payment:nth-child(1) img {
    height: 18px;
    max-width: 52px;
    transform: translateY(1.5px);
  }

  .hero-arena__payment:nth-child(2) img {
    height: 22.5px;
    max-width: 35px;
  }

  .hero-arena__payment:nth-child(3) img {
    height: 16.5px;
    max-width: 48px;
  }

  .hero-arena__payment:nth-child(4) img {
    height: 27px;
    max-width: 48px;
  }

  .hero-arena__community {
    max-width: 300px;
    margin-top: 18px;
    font-size: 10.75px;
    line-height: 1.5;
  }
}

@media (max-width: 390px) {
  .hero-arena__partner-badge {
    top: 9px;
    right: 10px;
    max-width: 148px;
    padding: 6px 8px;
    font-size: 0.62rem;
  }

  .hero-arena__partner-badge-eyebrow,
  .hero-arena__partner-badge-full {
    display: none;
  }

  .hero-arena__partner-badge-short {
    display: block;
  }

  .hero-arena h1 {
    font-size: 30px;
  }

  .hero-arena__subheadline {
    font-size: 15.5px;
  }

  .hero-arena__copy {
    font-size: 11.75px;
  }

  .hero-arena__cta {
    min-height: 46px;
    font-size: 18px;
  }

  .hero-arena__trust strong {
    font-size: 10.85px;
  }

  .hero-arena__trust span {
    font-size: 8.15px;
  }
}

/* FREE DRAW SOFT CTA */
.home-free-draw {
  padding: 0 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 200, 106, 0.045), transparent 34%),
    linear-gradient(180deg, rgba(5, 9, 20, 0.98), rgba(8, 17, 32, 0.98));
  border-top: 1px solid rgba(255, 255, 255, 0.045);
  border-bottom: 1px solid rgba(255, 255, 255, 0.045);
}

.home-free-draw__inner {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 16px;
  width: min(680px, 100%);
  margin: 0 auto;
  padding: 30px 0 32px;
  text-align: center;
}

.home-free-draw__ticket {
  display: block;
  width: clamp(108px, 10vw, 140px);
  height: auto;
  margin: 0 auto 4px;
  filter: drop-shadow(0 10px 22px rgba(244, 200, 106, 0.12));
}

.home-free-draw.is-returning .home-free-draw__ticket {
  width: 118px;
}

.home-free-draw__copy {
  text-align: center;
}

.home-free-draw__eyebrow {
  margin: 0 0 6px;
  color: #f4c86a;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-free-draw h2 {
  margin: 0;
  color: #f8fafc;
  font-size: clamp(23px, 2.8vw, 32px);
  line-height: 1.06;
  letter-spacing: -0.052em;
}

.home-free-draw__copy > p:not(.home-free-draw__eyebrow) {
  max-width: 540px;
  margin: 8px 0 0;
  color: #aebbd2;
  font-size: 13.25px;
  line-height: 1.5;
}

.home-free-draw__proof {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  margin-top: 11px;
  padding: 5px 9px;
  border: 1px solid rgba(218, 174, 95, 0.18);
  border-radius: 999px;
  background: rgba(244, 200, 106, 0.04);
  color: #cbd5e1;
  font-size: 10.5px;
  line-height: 1.2;
  box-shadow: 0 0 0 1px rgba(218, 174, 95, 0.08);
}

.home-free-draw__proof span {
  color: #8f9bb3;
  font-weight: 750;
}

.home-free-draw__proof strong {
  color: rgba(248, 250, 252, 0.92);
  font-weight: 800;
}

.home-free-draw__winner-location:empty {
  display: none;
}

.home-free-draw__proof em {
  display: none;
}

.home-free-draw__action {
  display: grid;
  justify-items: center;
  gap: 8px;
  width: min(100%, 360px);
  text-align: center;
  transform: none;
}

.home-giveaway-entry-pill {
  display: inline-grid;
  gap: 3px;
  width: fit-content;
  margin: 0 0 10px;
  padding: 10px 13px;
  border: 1px solid rgba(134, 239, 172, 0.26);
  border-radius: 14px;
  background:
    radial-gradient(circle at 100% 0, rgba(134, 239, 172, 0.12), transparent 44%),
    rgba(6, 78, 59, 0.12);
  color: #dfffee;
}

.home-giveaway-entry-pill span {
  color: rgba(216, 251, 234, 0.72);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-giveaway-entry-pill strong {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.15;
}

.home-giveaway-entry-copy {
  display: block;
}

.home-giveaway-entry-pill--action {
  display: none;
}

@media (min-width: 861px) {
  .draw-card.is-returning .home-giveaway-entry-pill--action {
    display: inline-grid;
  }
}

.home-free-draw__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 340px);
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(244, 200, 106, 0.48);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.018)),
    rgba(244, 200, 106, 0.18);
  color: #fff0b8;
  font-size: 13px;
  font-weight: 850;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.home-free-draw__button:hover,
.home-free-draw__button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 232, 166, 0.68);
  background: rgba(244, 200, 106, 0.19);
  color: #fff3c4;
  box-shadow:
    0 12px 28px rgba(0, 0, 0, 0.18),
    0 0 22px rgba(244, 200, 106, 0.09);
  outline: none;
}

.home-free-draw__action p {
  max-width: 320px;
  margin: 0;
  color: #8f9bb3;
  font-size: 11px;
  line-height: 1.4;
}

.home-free-draw.is-returning .home-free-draw__eyebrow { color: #86efac; }
.home-free-draw.is-returning .home-free-draw__inner {
  border-color: rgba(110, 231, 183, 0.12);
}
.home-free-draw.is-returning .home-free-draw__button {
  border-color: rgba(110, 231, 183, 0.3);
  background: rgba(6, 78, 59, 0.2);
  color: #d1fae5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 10px 24px rgba(0, 0, 0, 0.13);
}

.home-free-draw__alternate {
  color: #91a4bd;
  font-size: 10.5px;
  font-weight: 750;
  text-decoration: none;
}

.home-free-draw__alternate:hover,
.home-free-draw__alternate:focus-visible {
  color: #dbeafe;
  text-decoration: underline;
  outline: none;
}

@media (max-width: 720px) {
  .home-free-draw__ticket {
    width: 118px;
    margin: 0 auto 4px;
  }

  .home-free-draw {
    padding: 0 16px;
  }

  .home-free-draw__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    width: min(100%, 340px);
    padding: 22px 0 18px;
    text-align: center;
  }

  .home-free-draw__copy > p:not(.home-free-draw__eyebrow) {
    max-width: 315px;
    margin-left: auto;
    margin-right: auto;
    font-size: 12.35px;
    line-height: 1.45;
  }

  .home-free-draw__proof {
    justify-content: center;
    margin-top: 10px;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 10.4px;
  }

  .home-free-draw__action {
    justify-items: center;
    text-align: center;
  }

  .home-free-draw__button {
    width: min(100%, 315px);
    min-height: 44px;
  }

  .home-free-draw__action p {
    max-width: 265px;
    font-size: 10px;
  }

  .home-free-draw__benefits {
    justify-items: start;
    width: fit-content;
    margin: 2px auto 0;
    text-align: left;
    font-size: 10.5px;
  }

}

/* HOW IT WORKS */
#faq.section {
  padding-bottom: clamp(46px, 5vw, 62px);
}

.section h2 {
  max-width: 780px;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.12;
}

.section p,
.section > ul {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.how-it-works > h2,
#pricing > h2,
#pricing > .sub,
#reviews > h2,
#reviews > .reviews-sub,
#seo-hub > h2,
#seo-hub > .sub {
  text-align: center;
}

#pricing > h2,
#reviews > h2,
#seo-hub > h2 {
  margin-bottom: 12px;
}

#pricing > .sub,
#reviews > .reviews-sub,
#seo-hub > .sub {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.6;
}

.section.light {
  background:
    linear-gradient(180deg, rgba(15,26,46,0.94), rgba(8,15,29,0.96));
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.final-cta {
  padding-top: clamp(38px, 4.4vw, 56px);
  padding-bottom: clamp(46px, 5.4vw, 68px);
  border-bottom: 1px solid rgba(147, 197, 253, 0.12);
}

.final-cta__inner {
  display: grid;
  justify-items: center;
  gap: 14px;
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}

.final-cta__inner h2 {
  margin: 8px 0 0;
}

.final-cta .sub {
  max-width: 620px;
  margin: 0;
}

.final-cta .pricing-cta {
  margin-top: 6px;
}

.how-it-works {
  overflow: hidden;
  padding-top: clamp(42px, 5vw, 64px);
  padding-bottom: clamp(42px, 5vw, 62px);
}

.how-it-works__inner {
  width: min(940px, 100%);
  margin: 0 auto;
  text-align: center;
}

.how-it-works__eyebrow {
  margin: 0 0 8px;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.how-it-works h2 {
  margin: 0 auto;
}

.how-it-works__sub {
  max-width: 620px;
  margin: 12px auto 0;
  color: #b8c2d9;
  font-size: 15px;
  line-height: 1.6;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 920px;
  margin: 26px auto 0;
}

.step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(147,197,253,0.11);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    rgba(8, 17, 32, 0.58);
  box-shadow: none;
  text-align: left;
}

.num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  border-radius: 999px;
  background: rgba(96,165,250,0.10);
  color: #93c5fd;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.03em;
}

.step h3 {
  margin: 1px 0 5px;
  color: #f8fafc;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: #aebbd2;
  font-size: 13px;
  line-height: 1.45;
}

.how-it-works__cta {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-top: 30px;
}

.how-it-works__cta .btn {
  max-width: 340px;
  min-height: 48px;
}

/* PRICING */
.dark {
  background:
    radial-gradient(circle at 50% 0%, rgba(59,130,246,0.10), transparent 36%),
    linear-gradient(180deg, rgba(15,26,46,0.92), rgba(7,15,29,0.96));
  border-top: 1px solid rgba(147,197,253,0.10);
  border-bottom: 1px solid rgba(147,197,253,0.08);
}

.pricing {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .pricing {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  #pricing {
    padding-top: 42px;
    padding-bottom: 48px;
  }

  #pricing > h2 {
    margin-top: 0;
    font-size: 30px;
    line-height: 1.08;
  }

  #pricing > .sub {
    max-width: 330px;
    font-size: 13px;
    line-height: 1.45;
  }

  .pricing {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    width: min(100%, 350px);
    margin-top: 24px;
  }

  .pricing .card {
    display: grid;
    align-content: center;
    min-height: 108px;
    padding: 14px;
    border-radius: 16px;
    text-align: left;
  }

  .pricing .featured-popular {
    position: relative;
    padding-top: 18px;
  }

  .pricing .featured-popular::before {
    top: -12px;
    padding: 5px 11px 4px;
    font-size: 8px;
    letter-spacing: 0.08em;
  }

  .pricing .card h3,
  .pricing .card p {
    width: auto;
    text-align: left;
  }

  .pricing .card h3 {
    font-size: 15px;
  }

  .pricing .price {
    margin-top: 10px;
    font-size: 20px;
  }

  .pricing .price-note {
    font-size: 10.5px;
  }

  .seo-grid .card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .seo-grid .card h3,
  .seo-grid .card p {
    width: 100%;
    text-align: center;
  }
  
  #faq.section {
    padding-bottom: 40px;
  }

  .final-cta {
    padding-top: 36px;
    padding-bottom: 52px;
  }

  .final-cta__inner {
    gap: 12px;
  }

  .final-cta__inner h2 {
    max-width: 330px;
    font-size: 28px;
    line-height: 1.08;
  }

  .final-cta .sub {
    max-width: 300px;
    font-size: 12.5px;
  }

  .final-cta .pricing-cta {
    width: min(100%, 300px);
  }
}

.card {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    rgba(8, 17, 32, 0.58);
  border: 1px solid rgba(147,197,253,0.12);
  padding: 18px;
  border-radius: 16px;
  box-shadow: none;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease;
}

.seo-grid .card {
  min-height: 96px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 12px;
}

.card:hover {
  transform: translateY(-2px);
  border-color: rgba(96,165,250,0.42);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.018)),
    rgba(10, 21, 40, 0.72);
  box-shadow: 0 14px 34px rgba(0,0,0,0.14);
}

.featured {
  border: 1px solid rgba(96,165,250,0.65);
}

.highlight {
  border: 1px solid rgba(34,197,94,0.65);
}

.price {
  font-size: 21px;
  margin: 10px 0 0;
}

.price-note {
  margin: 8px 0 0;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.35;
}

.sub {
  font-size: 13px;
  color: #b8c2d9;
  line-height: 1.55;
}

.card .sub {
  font-size: 12px;
  color: #94a3b8;
  margin-top: 4px;
  line-height: 1.4;
}

.pricing-cta {
  margin-top: 34px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.pricing-cta .btn {
  width: auto;
  min-width: min(240px, 100%);
}

.pricing .card {
  display: grid;
  align-content: center;
  min-height: 118px;
  padding: 20px;
  text-align: left;
}

.pricing .card h3 {
  margin: 0;
  color: #f8fafc;
  font-size: 17px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.pricing .price {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: 22px;
  font-weight: 760;
  letter-spacing: -0.035em;
}

.pricing .price-note {
  margin: 7px 0 0;
  color: #96a3ba;
  font-size: 12px;
  line-height: 1.35;
}

.pricing .featured-popular {
  transform: none;
  border-color: rgba(96,165,250,0.46);
  background:
    linear-gradient(180deg, rgba(96,165,250,0.08), rgba(255,255,255,0.012)),
    rgba(8, 17, 32, 0.64);
  box-shadow: none;
}

.pricing .highlight {
  border-color: rgba(34,197,94,0.50);
  background:
    linear-gradient(180deg, rgba(34,197,94,0.045), rgba(255,255,255,0.012)),
    rgba(8, 17, 32, 0.62);
}

.pricing-badge {
  display: inline-flex;
  vertical-align: 2px;
  margin-left: 4px;
  padding: 3px 6px;
  border-radius: 999px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pricing-badge--value {
  background: rgba(34,197,94,0.12);
  color: #86efac;
}

@media (max-width: 600px) {
  .hero {
    padding-top: 56px;
    padding-bottom: 58px;
  }

  .hero-buttons {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 360px);
    gap: 8px;
    margin-top: 20px;
  }

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

  .hero-buttons .btn.primary,
  .hero-buttons .btn.demo-gold {
    min-width: 0;
  }

  .hero-buttons .btn.demo-gold {
    min-height: 52px;
  }

  .hero-profile-note {
    max-width: 330px;
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.38;
  }
}

/* FOOTER */
footer,
.site-footer {
  text-align: center;
  color: #7f8aa3;
  border-top: 1px solid rgba(147,197,253,0.10);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 34px 20px 92px;
  background:
    radial-gradient(circle at 50% 0%, rgba(96,165,250,0.055), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,0.018), transparent),
    rgba(5,9,20,0.82);
}

.site-footer p {
  margin: 0;
  color: #8f9bb3;
}

.site-footer__brand {
  justify-content: center;
  gap: 9px;
  transform: none;
  opacity: 0.94;
}

.site-footer__brand .brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  filter:
    drop-shadow(0 0 10px rgba(59,130,246,0.24))
    drop-shadow(0 0 18px rgba(59,130,246,0.10));
}

.site-footer__brand .brand-name {
  font-size: 18px;
  font-weight: 750;
  letter-spacing: -0.045em;
  background: linear-gradient(180deg, #ffffff, #b8c2d9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-footer__copyright {
  margin-top: 4px;
  color: #8f9bb3;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.site-footer__tagline {
  max-width: 420px;
  font-size: 12px;
  line-height: 1.5;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin: 4px 0 2px;
  font-size: 12px;
  font-weight: 650;
}

@media (max-width: 600px) {
  .site-footer__links {
    max-width: 300px;
    gap: 8px 16px;
    padding-inline: 6px;
  }
}

.site-footer__links a,
.site-footer__support {
  color: #b8c2d9;
  text-decoration: none;
  text-underline-offset: 3px;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible,
.site-footer__support:hover,
.site-footer__support:focus-visible {
  color: #dbeafe;
  text-decoration: underline;
}

.site-footer__support {
  color: #93c5fd;
  font-size: 12px;
  font-weight: 650;
}

.site-footer .small-text {
  max-width: 520px;
  color: #7f8aa3;
  font-size: 11px;
  line-height: 1.5;
}

.site-footer .small-text a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.small-text {
  font-size: 11px;
}

/* FAQ */
.faq {
  max-width: 800px;
  margin: 0 auto;
}

.faq h2 {
  text-align: center;
  margin-bottom: 25px;
}

.faq-disclosure {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  padding: 20px 22px;
  border: 1px solid rgba(147,197,253,0.16);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(17,28,51,0.82), rgba(8,15,29,0.82));
  color: #f8fafc;
  text-align: left;
  cursor: pointer;
}

.faq-disclosure strong,
.faq-disclosure small {
  display: block;
}

.faq-disclosure strong {
  font-size: 18px;
  letter-spacing: -0.02em;
}

.faq-disclosure small {
  margin-top: 5px;
  color: #8f9bb3;
  font-size: 12px;
  line-height: 1.4;
}

.faq-disclosure__icon {
  color: #93c5fd;
  font-size: 24px;
  transition: transform 0.2s ease;
}

.faq-disclosure[aria-expanded="true"] .faq-disclosure__icon {
  transform: rotate(45deg);
}

.faq-list {
  margin-top: 12px;
}

.faq-list[hidden] {
  display: none;
}

.faq-item {
  border: 1px solid rgba(147,197,253,0.14);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(17,28,51,0.82), rgba(8,15,29,0.82));
  box-shadow: 0 16px 36px rgba(0,0,0,0.16);
}

/* question button */
.faq-question {
  width: 100%;
  text-align: left;
  padding: 16px;
  background: none;
  border: none;
  color: inherit;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  float: right;
  margin-left: 14px;
  color: #7f8aa3;
}

.faq-question[aria-expanded="true"]::after {
  content: "−";
}

.faq-question {
  box-sizing: border-box;
}

/* hidden answer by default */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  padding: 0 16px;
}

.faq-answer p {
  opacity: 0.85;
  line-height: 1.55;
  padding-bottom: 14px;
  text-align: left;
}

/* active state */
.faq-item.active .faq-answer {
  max-height: 250px;
}

/* REVIEWS */
#reviews {
  padding-top: clamp(52px, 6vw, 76px);
  padding-bottom: clamp(54px, 6vw, 78px);
  background:
    radial-gradient(circle at 50% 0%, rgba(96,165,250,0.08), transparent 34%),
    linear-gradient(180deg, rgba(12, 24, 45, 0.98), rgba(8, 17, 32, 0.98));
  border-top: 1px solid rgba(147,197,253,0.10);
  border-bottom: 1px solid rgba(147,197,253,0.08);
}

#reviews > h2 {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-align: center;
}

.reviews-sub {
  max-width: 620px;
  margin: 12px auto 0;
  color: #aebbd2;
  font-size: 15px;
  line-height: 1.55;
  text-align: center;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  width: min(1080px, 100%);
  margin: 28px auto 0;
}

.review-card {
  position: relative;
  min-height: 148px;
  padding: 22px;
  text-align: left;
  border: 1px solid rgba(147,197,253,0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    rgba(8, 17, 32, 0.58);
  box-shadow: none;
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 16px;
  color: rgba(147,197,253,0.32);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}

.review-card p {
  margin: 24px 0 0;
  color: #dbe4f2;
  font-size: 14px;
  line-height: 1.55;
  opacity: 1;
}

.review-card span {
  display: block;
  margin-top: 14px;
  color: #8f9bb3;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
  opacity: 1;
}

.review-card span a {
  color: #a9cfff;
  text-decoration: none;
}

.review-card span a:hover,
.review-card span a:focus-visible {
  color: #dbeafe;
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
}

.reviews-source {
  max-width: 900px;
  margin: 20px auto 0;
  color: #8f9bb3;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  opacity: 1;
}

.reviews-source a {
  color: #b8c2d9;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#seo-hub {
  padding-top: clamp(28px, 3vw, 38px);
  padding-bottom: clamp(30px, 3vw, 42px);
  background:
    radial-gradient(circle at 50% 0%, rgba(244,200,106,0.025), transparent 30%),
    linear-gradient(180deg, rgba(5, 9, 20, 0.98), rgba(7, 16, 31, 0.98));
  border-top: 1px solid rgba(147,197,253,0.07);
  border-bottom: 1px solid rgba(147,197,253,0.07);
}

#seo-hub > h2 {
  margin: 0 auto;
  max-width: 760px;
  font-size: clamp(20px, 2.4vw, 27px);
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-align: center;
}

#seo-hub > .sub {
  max-width: 560px;
  margin: 8px auto 0;
  color: #8f9bb3;
  font-size: 12.5px;
  line-height: 1.45;
  text-align: center;
}

#faq {
  padding-top: 80px;
  border-top: 1px solid rgba(147,197,253,0.08);
}

@media (max-width: 600px) {
  #reviews {
    padding-top: 44px;
    padding-bottom: 48px;
  }

  #reviews > h2 {
    max-width: 330px;
    font-size: 28px;
    line-height: 1.08;
  }

  .reviews-sub {
    max-width: 330px;
    font-size: 12.5px;
    line-height: 1.45;
  }

  .review-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    width: min(100%, 350px);
    margin-top: 22px;
  }

  .review-card {
    min-height: auto;
    padding: 17px;
    border-radius: 15px;
  }

  .review-card p {
    margin-top: 22px;
    font-size: 12.5px;
    line-height: 1.5;
  }

  .review-card span {
    margin-top: 12px;
    font-size: 11px;
  }

  .reviews-source {
    max-width: 330px;
    margin-top: 16px;
    font-size: 10.5px;
  }

  #seo-hub {
    padding-top: 30px;
    padding-bottom: 34px;
  }

  #seo-hub > h2 {
    max-width: 330px;
    font-size: 22px;
    line-height: 1.08;
  }

  #seo-hub > .sub {
    max-width: 330px;
    font-size: 12.5px;
    line-height: 1.45;
  }

  #faq {
    padding-top: 58px;
  }

  .seo-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: min(100%, 350px);
    margin-top: 14px !important;
  }

  .seo-grid .card {
    min-height: 74px;
    padding: 12px;
    border-radius: 13px;
    text-align: left;
  }

  .seo-grid .card h3,
  .seo-grid .card p {
    width: auto;
    text-align: left;
  }

  .seo-grid .card h3 {
    font-size: 13px;
  }

  .seo-grid .card .sub,
  .seo-grid .card p {
    margin-top: 6px;
    font-size: 10px;
    line-height: 1.3;
  }
}

/* SEO HUB GRID (separate from pricing cards) */
.seo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(760px, 100%);
  margin: 20px auto 0 !important;
  justify-content: center;
}

/* REDDIT TRUST SECTION */
.reddit-trust {
  padding: clamp(46px, 5vw, 68px) 20px;
  background:
    radial-gradient(circle at 50% 0%, rgba(96,165,250,0.09), transparent 34%),
    linear-gradient(180deg, rgba(9,18,35,0.96), rgba(5,9,20,0.98));
  color: #fff;
  text-align: center;
  border-top: 1px solid rgba(147,197,253,0.10);
  border-bottom: 1px solid rgba(147,197,253,0.08);
}

.reddit-trust__inner {
  width: min(860px, 100%);
  margin: 0 auto;
}

.reddit-trust__eyebrow,
.origin-label {
  margin: 0 0 8px;
  color: #93c5fd;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.reddit-trust h2 {
  max-width: 720px;
  margin: 0 auto;
  color: #f8fafc;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 780;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.reddit-subtext {
  max-width: 660px;
  margin: 14px auto 0;
  color: #aebbd2;
  font-size: 15px;
  line-height: 1.6;
}

.origin-story {
  max-width: 700px;
  margin: 28px auto 0;
  padding: 24px 26px;
  text-align: left;
  border: 1px solid rgba(147,197,253,0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.012)),
    rgba(8, 17, 32, 0.58);
  box-shadow: none;
}

.origin-story p {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.65;
}

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

.origin-story .origin-label {
  margin-bottom: 14px;
  color: rgba(226,232,240,0.76);
}

.origin-signature {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-top: 16px !important;
  color: #7f8aa3 !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
}

.origin-signature a {
  color: #93c5fd;
  text-decoration: none;
}

.origin-signature a:hover,
.origin-signature a:focus-visible {
  color: #dbeafe;
  text-decoration: underline;
  text-underline-offset: 3px;
  outline: none;
}

.origin-signature span {
  color: #7f8aa3;
}

.reddit-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 620px;
  margin: 22px auto 0;
}

.stat {
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 12px 10px;
  border-radius: 14px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(147,197,253,0.08);
  text-align: center;
}

.stat-number {
  display: block;
  color: #86efac;
  font-size: 19px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -0.035em;
}

.stat-label {
  color: #8f9bb3;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.25;
}

.reddit-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.reddit-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255,69,0,0.36);
  border-radius: 999px;
  background: rgba(255,69,0,0.08);
  color: #ffb199;
  text-decoration: none;
  font-size: 12px;
  font-weight: 850;
  transition: transform 0.16s ease, border-color 0.16s ease, background 0.16s ease, color 0.16s ease;
}

.reddit-link.secondary {
  border-color: rgba(147,197,253,0.18);
  background: rgba(255,255,255,0.035);
  color: #cbd5e1;
}

.reddit-link:hover,
.reddit-link:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255,120,76,0.55);
  background: rgba(255,69,0,0.12);
  color: #ffe1d6;
  outline: none;
}

.reddit-link.secondary:hover,
.reddit-link.secondary:focus-visible {
  border-color: rgba(147,197,253,0.34);
  background: rgba(255,255,255,0.055);
  color: #f8fafc;
}

@media (max-width: 600px) {
  .reddit-trust {
    padding: 42px 16px 48px;
  }

  .reddit-trust__inner {
    width: min(100%, 360px);
  }

  .reddit-trust__eyebrow,
  .origin-label {
    font-size: 10px;
  }

  .reddit-trust h2 {
    max-width: 330px;
    font-size: 27px;
    line-height: 1.08;
    letter-spacing: -0.04em;
  }

  .reddit-subtext {
    max-width: 330px;
    margin-top: 12px;
    font-size: 12.5px;
    line-height: 1.5;
  }

  .origin-story {
    margin-top: 22px;
    padding: 17px;
    border-radius: 16px;
  }

  .origin-story p {
    font-size: 12px;
    line-height: 1.5;
  }

  .origin-story p + p {
    margin-top: 10px;
  }

  .origin-signature {
    margin-top: 13px !important;
    font-size: 11px !important;
  }

  .reddit-stats {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 7px;
    margin-top: 16px;
  }

  .stat {
    padding: 10px 6px;
    border-radius: 12px;
  }

  .stat-number {
    font-size: 15px;
  }

  .stat-label {
    font-size: 9.5px;
  }

  .reddit-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: min(100%, 300px);
    margin: 18px auto 0;
  }

  .reddit-link {
    width: 100%;
    min-height: 38px;
    font-size: 11.5px;
  }
}

.cmg-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cmg-form input,
.cmg-form textarea {
  background: #111c33;
  border: 1px solid rgba(255,255,255,0.08);
  color: white;
  padding: 10px 12px;
  border-radius: 10px; /* fixes 90° corners */
  font-size: 14px;
  outline: none;
}

.cmg-form input:focus,
.cmg-form textarea:focus {
  border-color: #3b82f6;
}

.cmg-form textarea {
  min-height: 80px;
  resize: none;
}

.cmg-form button {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.cmg-form button:hover {
  background: #2f6fe0;
}

#cmg-success {
  display: none;
  margin-top: 10px;
  font-size: 13px;
  color: #22c55e;
}

.honeypot {
  display: none;
}

.etransfer-tag {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 12px;
  margin-top: 3px;
}

.etransfer-muted {
  color: rgba(255,255,255,0.6);
}

.etransfer-brand {
  color: #F0B51C;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(240, 181, 28, 0.25);
}

@media (max-width: 1000px) {
  .seo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .seo-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* make SEO cards quieter than pricing */
.seo-grid .card {
  display: grid;
  align-content: center;
  min-height: 82px;
  padding: 14px 15px;
  border: 1px solid rgba(147,197,253,0.09);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.022), rgba(255,255,255,0.008)),
    rgba(8, 17, 32, 0.36);
  box-shadow: none;
  text-align: left;
}

.seo-grid .card h3 {
  margin: 0;
  color: #f8fafc;
  font-size: 14px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.seo-grid .card .sub,
.seo-grid .card p {
  margin: 7px 0 0;
  color: #7f8aa3;
  font-size: 10.5px;
  line-height: 1.35;
}

.seo-grid .card:hover,
.seo-grid .card:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(147,197,253,0.24);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.014)),
    rgba(10, 21, 40, 0.60);
  outline: none;
}

@media (max-width: 600px) {
  .cmg-promo-banner {
    padding-bottom: 4px;
  }

  .cmg-promo-banner__inner {
    gap: 8px;
    min-height: 40px;
  }

  .cmg-promo-banner__badge {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }

  .cmg-promo-banner__logo {
    padding: 4px;
  }

  .cmg-promo-banner__mark {
    font-size: 9px;
  }

  .cmg-promo-banner__copy strong {
    font-size: 13px;
  }

  .cmg-promo-banner__copy span {
    font-size: 11px;
  }

  .cmg-promo-banner__cta {
    min-height: 44px;
    padding: 7px 9px;
    font-size: 11px;
  }

  .nav {
    min-height: 66px;
    gap: 10px;
    padding: 8px 14px;
  }

  .brand-lockup {
    gap: 9px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
    border-radius: 12px;
  }

  .brand-name {
    font-size: 18px;
  }

  .hero {
    padding: 52px 16px 40px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero h2 {
    font-size: 24px;
  }

  .hero-micro {
    font-size: 11px;
  }

  .hero-line {
    font-size: 14px;
  }

  .hero-trust {
    display: block;
    border-radius: 12px;
  }

  .section {
    padding: 50px 16px;
  }

  .how-it-works {
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .pricing-cta {
    flex-direction: column;
    align-items: center;
  }

  .pricing-cta .btn {
    width: 100%;
  }

  .how-it-works__inner {
    width: min(100%, 370px);
  }

  .how-it-works__eyebrow {
    font-size: 10.5px;
  }

  .how-it-works__sub {
    max-width: 320px;
    font-size: 13px;
    line-height: 1.5;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 9px;
    max-width: 340px;
    margin-top: 18px;
  }

  .step {
    width: 100%;
    max-width: none;
    min-height: auto;
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 10px;
    padding: 12px 13px;
    border-radius: 14px;
  }

  .num {
    width: 28px;
    height: 28px;
    font-size: 10px;
  }

  .step h3 {
    font-size: 13px;
  }

  .step p {
    font-size: 11.75px;
    line-height: 1.38;
  }

  .how-it-works__cta {
    margin-top: 20px;
  }

  .how-it-works__cta .btn {
    max-width: 300px;
  }

  .guarantee-note {
    max-width: 300px;
    font-size: 11px;
    font-weight: 600;
  }
}


/* ===== QR CAMPAIGN LANDINGS ===== */

.qr-landing {
  min-height: calc(100vh - 69px);
  padding: 42px 18px 54px;
  background:
    linear-gradient(180deg, rgba(59,130,246,0.16), rgba(11,18,32,0) 42%),
    radial-gradient(circle at top, #1a2a4a, #0b1220 68%);
  box-sizing: border-box;
}

.qr-hero {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.qr-hero h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(38px, 9vw, 56px);
  line-height: 1.04;
}

.qr-sub {
  max-width: 560px;
  margin: 16px auto 0;
  color: #b8c2d9;
  font-size: 16px;
  line-height: 1.6;
}

.qr-primary-cta {
  margin-top: 26px;
}

.qr-price-note {
  margin: 16px auto 0;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.qr-home-trust {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: min(620px, calc(100% - 18px));
  margin: 20px auto 0;
  padding: 10px 14px;
  border: 1px solid rgba(34,197,94,0.22);
  border-radius: 999px;
  background: rgba(34,197,94,0.08);
  color: #cbd5e1;
  font-size: 12.5px;
  line-height: 1.4;
}

.qr-reddit-trust {
  width: 100%;
  max-width: 620px;
  margin: 26px auto 0;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(17,28,51,0.88);
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
  box-sizing: border-box;
  text-align: center;
}

.qr-reddit-trust .origin-label {
  text-align: center;
}

.qr-reddit-trust p:not(.origin-label) {
  margin: 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.6;
}

.qr-reddit-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.qr-reddit-actions a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 10px;
  border-radius: 8px;
  background: #ff4500;
  border: 1px solid rgba(255,69,0,0.75);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.qr-reddit-actions a span {
  margin-top: 2px;
  font-size: 10px;
  font-weight: 600;
  opacity: 0.78;
}

.qr-reddit-actions a:hover {
  background: #e63e00;
}

.qr-panel {
  width: 100%;
  max-width: 620px;
  margin: 26px auto 0;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  background: rgba(17,28,51,0.88);
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
  box-sizing: border-box;
}

.qr-mini-step {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
}

.qr-mini-step + .qr-mini-step {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.qr-mini-step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: rgba(59,130,246,0.16);
  color: #93c5fd;
  font-weight: 800;
}

.qr-mini-step p {
  margin: 0;
  color: #b8c2d9;
  font-size: 14px;
  line-height: 1.5;
}

.qr-mini-step strong {
  display: block;
  color: #ffffff;
  margin-bottom: 2px;
}

@media (max-width: 600px) {

  .qr-landing {
    min-height: calc(100vh - 57px);
    padding: 34px 14px 42px;
  }

  .qr-hero h1 {
    font-size: 40px;
  }

  .qr-sub {
    font-size: 14px;
  }

  .qr-home-trust {
    display: block;
    border-radius: 10px;
  }

  .qr-reddit-trust {
    padding: 18px;
    border-radius: 10px;
  }

  .qr-panel {
    padding: 16px;
    border-radius: 10px;
  }
}

/* PLAYER PROFILE TEASER */
.profile-teaser {
  overflow: hidden;
}

.profile-teaser-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.82fr) minmax(300px, 1.18fr);
  gap: 42px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  text-align: left;
}

.profile-teaser-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.profile-teaser-visual::before {
  content: "";
  position: absolute;
  width: 84%;
  height: 72%;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(96,165,250,0.30), rgba(34,197,94,0.10) 42%, transparent 72%);
  filter: blur(26px);
  opacity: 0.85;
  pointer-events: none;
}

.profile-teaser-visual img {
  position: relative;
  z-index: 1;
  width: min(100%, 340px);
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 42px rgba(0,0,0,0.38));
}

.profile-teaser-copy h2 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
}

.profile-teaser-kicker {
  margin: 0;
  color: #93c5fd;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-teaser-sub {
  margin: 0;
  max-width: 620px;
  color: #b8c2d9;
  font-size: 15px;
  line-height: 1.65;
}

.profile-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.profile-teaser-card {
  min-height: 96px;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(145deg, rgba(17,28,51,0.94), rgba(8,15,29,0.92));
  border: 1px solid rgba(147,197,253,0.14);
  box-shadow: 0 18px 42px rgba(0,0,0,0.16), inset 0 1px 0 rgba(255,255,255,0.06);
}

.profile-teaser-card h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 15px;
}

.profile-teaser-card p {
  margin: 0;
  color: #94a3b8;
  font-size: 12.5px;
  line-height: 1.45;
}

.profile-teaser-cta {
  width: auto;
  min-width: 240px;
  margin-top: 24px;
}

@media (max-width: 820px) {
  .profile-teaser-inner {
    grid-template-columns: 1fr;
    gap: 26px;
    text-align: center;
  }

  .profile-teaser-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .profile-teaser-grid {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .profile-teaser-cta {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 600px) {
  .profile-teaser-inner {
    gap: 20px;
  }

  .profile-teaser-visual img {
    width: min(86%, 300px);
  }

  .profile-teaser-grid {
    grid-template-columns: 1fr;
  }

  .profile-teaser-card {
    min-height: auto;
    text-align: center;
  }

  .profile-teaser-cta {
    width: 100%;
  }
}

.profile-teaser-card.expandable {
  appearance: none;
  width: 100%;
  min-height: 96px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  color: inherit;
  background: linear-gradient(145deg, rgba(17,28,51,0.94), rgba(8,15,29,0.92));
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.profile-teaser-card.expandable.active {
  justify-content: flex-start;
}

.profile-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.profile-expand-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  margin-top: 2px;
  color: #93c5fd;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease;
}

.profile-card-expand {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.28s ease,
    opacity 0.2s ease,
    margin-top 0.2s ease;
  margin-top: 0;
}

.profile-card-expand p {
  margin: 0;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.5;
}

.profile-teaser-card.active {
  border-color: rgba(96,165,250,0.45);
  box-shadow:
    0 22px 52px rgba(0,0,0,0.22),
    0 0 22px rgba(59,130,246,0.12);
}

.profile-teaser-card.active .profile-card-expand {
  max-height: 120px;
  opacity: 1;
  margin-top: 12px;
}

.profile-teaser-card.active .profile-expand-icon {
  transform: rotate(180deg);
}

.profile-teaser-card.expandable:focus {
  outline: none;
}

.profile-teaser-card.expandable:focus-visible {
  outline: 2px solid rgba(147,197,253,0.55);
  outline-offset: 3px;
}

.featured-popular {
  border-color: rgba(96,165,250,0.55);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.22),
    0 0 28px rgba(59,130,246,0.14);
  transform: translateY(-6px);
  position: relative;
}

.featured-popular::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  padding: 5px 12px 4px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(96,165,250,0.95), rgba(59,130,246,0.92));
  border: 1px solid rgba(191,219,254,0.30);
  box-shadow: 0 8px 18px rgba(37,99,235,0.14);
  font-size: 8.5px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0.085em;
}

@media (max-width: 600px) {
  #cmg-contact-button {
    right: 10px !important;
    bottom: calc(8px + env(safe-area-inset-bottom, 0px)) !important;
    padding: 6px 10px !important;
    min-height: 0 !important;
    min-width: 0 !important;
    width: auto !important;
    max-width: 190px !important;
    font-size: 10.5px !important;
    line-height: 1.1 !important;
    border-radius: 999px !important;
    border: 1px solid rgba(147,197,253,0.24) !important;
    background: rgba(15,26,46,0.88) !important;
    color: #b8c2d9 !important;
    box-shadow: 0 8px 18px rgba(0,0,0,0.20) !important;
  }
}

.home-page #cmg-contact-widget {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.home-page #cmg-contact-button {
  padding: 9px 13px;
  border: 1px solid rgba(147,197,253,0.22);
  background: rgba(15,26,46,0.92);
  color: #c5d2e7;
  font-size: 12px;
  box-shadow: 0 9px 24px rgba(0,0,0,0.24);
}

.home-page #cmg-contact-button:hover,
.home-page #cmg-contact-button:focus-visible {
  border-color: rgba(147,197,253,0.38);
  background: rgba(22,38,67,0.96);
  box-shadow: 0 12px 28px rgba(0,0,0,0.28);
}

.home-page #cmg-contact-widget.is-quiet:not(:focus-within) {
  opacity: 0.28;
  transform: translateY(8px);
}

.home-page #cmg-contact-widget.is-quiet:not(:focus-within):hover {
  opacity: 1;
  transform: none;
}

/* PLAYER PROFILE SHOWCASE STICKY */
.profile-showcase-sticky {
  position: relative;
  overflow: visible;
  padding-top: clamp(74px, 7vw, 110px);
  background:
    radial-gradient(circle at 50% 0%, rgba(96,165,250,0.18), transparent 38%),
    linear-gradient(180deg, rgba(5,9,20,0.98), rgba(11,18,32,0.96));
}

#pricing {
  padding-top: clamp(42px, 5vw, 64px);
  padding-bottom: clamp(48px, 5vw, 72px);
  background:
    radial-gradient(circle at 50% 0%, rgba(96,165,250,0.10), transparent 34%),
    linear-gradient(180deg, rgba(9,18,35,0.96), rgba(7,15,29,0.98));
}

.profile-showcase-sticky__intro {
  position: sticky;
  top: 104px;
  z-index: 6;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  pointer-events: auto;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.profile-showcase-sticky__kicker,
.profile-showcase-sticky__eyebrow {
  margin: 0;
  color: #93c5fd;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-showcase-sticky__intro h2 {
  margin: 10px auto 12px;
  font-size: clamp(28px, 4.5vw, 48px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.profile-showcase-sticky__intro p {
  margin: 0 auto;
  max-width: 620px;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.55;
}

.profile-showcase-sticky__cta {
  display: inline-flex;
  position: relative;
  left: -76px;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 34px;
  margin-top: 10px;
  padding: 0 14px;
  border: 1px solid rgba(244, 200, 106, 0.34);
  border-radius: 999px;
  background: rgba(244, 200, 106, 0.075);
  color: #ffe8a6;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: -0.01em;
  box-shadow: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.profile-showcase-sticky__cta:hover,
.profile-showcase-sticky__cta:focus-visible {
  border-color: rgba(244, 200, 106, 0.56);
  background: rgba(244, 200, 106, 0.12);
  color: #fff3c4;
  transform: translateY(-1px);
  outline: none;
}

.profile-showcase-sticky__scroller {
  position: relative;
  height: 275vh;
  max-width: 1040px;
  margin: 12px auto 0;
}

.profile-showcase-sticky__stage {
  position: sticky;
  top: 220px;
  min-height: calc(100vh - 220px);
  display: grid;
  grid-template-columns: 350px 240px;
  justify-content: center;
  gap: 10px;
  align-items: center;
  padding-top: 0;
}

.profile-showcase-sticky__text {
  text-align: left;
  max-width: 360px;
  transform: translateY(-10px);
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.profile-showcase-sticky__text.is-changing {
  opacity: 0.35;
  transform: translateY(8px);
}

.profile-showcase-sticky__text h3 {
  margin: 8px 0 10px;
  max-width: 360px;
  color: #ffffff;
  font-size: clamp(24px, 3.8vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.profile-showcase-sticky__text p:last-child {
  margin: 0;
  max-width: 360px;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.55;
}

.profile-showcase-sticky__phone-wrap {
  position: relative;
  display: block;
  width: min(242px, 78vw);
  transform: translateY(-8px);
}

.profile-showcase-sticky__phone-glow {
  position: absolute;
  inset: 12% 0;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(96,165,250,0.34), rgba(34,197,94,0.09) 42%, transparent 70%);
  filter: blur(30px);
  opacity: 0.82;
  pointer-events: none;
}

.profile-showcase-sticky__device {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 9 / 17.5;
  padding: 10px;
  border-radius: 42px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.22), rgba(255,255,255,0.04)),
    linear-gradient(145deg, #172033, #020617);
  box-shadow:
    0 34px 90px rgba(0,0,0,0.55),
    0 0 54px rgba(59,130,246,0.18),
    inset 0 1px 0 rgba(255,255,255,0.22);
  touch-action: pan-y;
  user-select: none;
}

.profile-showcase-sticky__device::before {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 5;
  pointer-events: none;
  border-radius: 32px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.12),
    inset 0 0 28px rgba(0,0,0,0.24);
}

.profile-showcase-sticky__device::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 0;
  pointer-events: none;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 10%, rgba(96,165,250,0.18), transparent 38%),
    linear-gradient(180deg, #17243a 0%, #102139 48%, #071426 100%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.profile-showcase-sticky__island {
  position: absolute;
  top: 18px;
  left: 50%;
  z-index: 7;
  width: 70px;
  height: 18px;
  border-radius: 999px;
  background: rgba(0,0,0,0.88);
  transform: translateX(-50%);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
}

.profile-showcase-sticky__counter {
  position: absolute;
  top: 48px;
  right: 24px;
  z-index: 8;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(2,6,23,0.62);
  color: rgba(248,250,252,0.86);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.profile-showcase-sticky__screen {
  position: absolute;
  inset: 10px;
  z-index: 1;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  object-fit: contain;
  object-position: center;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 20%, rgba(96,165,250,0.08), transparent 42%),
    #020617;
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.profile-showcase-sticky__screen.is-active {
  opacity: 1;
  transform: scale(1);
}

.profile-showcase-sticky__screen[data-showcase-screen="2"] {
  top: 42px;
  bottom: 10px;
  height: auto;
  object-fit: contain;
  object-position: center 22%;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 10%, rgba(96,165,250,0.16), transparent 38%),
    linear-gradient(180deg, #17243a 0%, #102139 48%, #071426 100%);
}

.profile-showcase-sticky__dots {
  position: absolute;
  right: -34px;
  top: 50%;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin: 0;
  transform: translateY(-50%);
  isolation: isolate;
}

.profile-showcase-sticky__dots::before,
.profile-showcase-sticky__dots::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1.5px;
  border-radius: 999px;
  transform: translateX(-50%);
  pointer-events: none;
}

.profile-showcase-sticky__dots::before {
  top: 28px;
  bottom: 28px;
  z-index: 0;
  background: rgba(96,165,250,0.12);
  box-shadow: 0 0 10px rgba(96,165,250,0.08);
}

.profile-showcase-sticky__dots::after {
  top: 28px;
  z-index: 0;
  height: calc((100% - 56px) * var(--showcase-progress, 0));
  background:
    linear-gradient(180deg, rgba(147,197,253,0.82), rgba(56,189,248,0.58));
  box-shadow:
    0 0 10px rgba(96,165,250,0.24),
    0 0 18px rgba(56,189,248,0.1);
  transition: height 0.04s linear;
}

.profile-showcase-sticky__dot {
  position: relative;
  z-index: 1;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(148,163,184,0.35);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.08);
  transition: height 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.profile-showcase-sticky__dot.is-active {
  width: 6px;
  height: 18px;
  background: rgba(147,197,253,0.95);
  box-shadow: 0 0 14px rgba(96,165,250,0.45);
}

.profile-showcase-sticky__progress-thumb {
  position: absolute;
  top: calc(28px + ((100% - 56px) * var(--showcase-progress, 0)));
  left: 50%;
  z-index: 2;
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(219,234,254,0.98);
  box-shadow:
    0 0 0 2px rgba(15,23,42,0.84),
    0 0 12px rgba(96,165,250,0.42);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: top 0.04s linear;
}

.profile-showcase-sticky__control {
  display: grid;
  position: relative;
  z-index: 1;
  width: 21px;
  height: 21px;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(147,197,253,0.22);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(30,41,59,0.56), rgba(15,23,42,0.42));
  color: rgba(191,219,254,0.88);
  box-shadow:
    0 0 12px rgba(96,165,250,0.08),
    inset 0 1px 0 rgba(255,255,255,0.1);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.profile-showcase-sticky__control:hover,
.profile-showcase-sticky__control:focus-visible {
  border-color: rgba(147,197,253,0.5);
  background: rgba(30,41,59,0.72);
  color: rgba(219,234,254,0.98);
  box-shadow:
    0 0 15px rgba(96,165,250,0.18),
    inset 0 1px 0 rgba(255,255,255,0.14);
  outline: none;
  transform: translateY(-1px);
}

.profile-showcase-sticky__control:disabled {
  border-color: rgba(148,163,184,0.12);
  background: rgba(15,23,42,0.32);
  color: rgba(148,163,184,0.38);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  cursor: default;
  opacity: 0.62;
  transform: none;
}

.profile-showcase-sticky:has(.profile-showcase-sticky__screen[data-showcase-screen="2"].is-active) .profile-showcase-sticky__device::after {
  opacity: 1;
}

.profile-showcase-sticky:has(.profile-showcase-sticky__screen[data-showcase-screen="2"].is-active) .profile-showcase-sticky__text h3 {
  margin-top: 4px;
}

.profile-showcase-sticky__hint {
  position: relative;
  z-index: 2;
  width: max-content;
  margin: 8px auto 0;
  color: rgba(203,213,225,0.62);
  font-size: 10.5px;
  font-weight: 750;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
}

.profile-showcase-sticky.is-showcase-ending .profile-showcase-sticky__intro {
  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;
}

@media (max-width: 760px) {
  .profile-showcase-sticky {
    padding-top: 36px;
    padding-bottom: 72px;
  }

  .profile-showcase-sticky__intro {
    top: 92px;
    z-index: 6;
    margin-bottom: 0;
  }

  .profile-showcase-sticky__intro h2 {
    font-size: clamp(26px, 7vw, 34px);
    line-height: 1.02;
    margin: 8px auto 8px;
  }

  .profile-showcase-sticky__intro p {
    max-width: 320px;
    font-size: clamp(12px, 3.2vw, 13px);
    line-height: 1.42;
  }

  .profile-showcase-sticky__cta {
    left: auto;
  }

  .profile-showcase-sticky__scroller {
    height: 170.0245svh;
    margin: 42px auto 0;
  }

  .profile-showcase-sticky__stage {
    top: 230px;
    height: calc(100svh - 230px);
    min-height: 470px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas:
      "phone"
      "text";
    gap: 12px;
    align-content: start;
    justify-items: center;
    padding-top: 0;
  }

  .profile-showcase-sticky__phone-wrap {
    grid-area: phone;
    position: relative;
    width: 100%;
    height: 320px;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 12px;
    transform: translateY(48px);
  }

  .profile-showcase-sticky__device {
    width: min(175px, 47vw, 25.5svh);
  }

  .profile-showcase-sticky__dots {
    position: absolute;
    right: calc(50% - 124px);
    top: 50%;
    left: auto;
    bottom: auto;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 0;
    transform: translateY(-50%);
    isolation: isolate;
  }

  .profile-showcase-sticky__dots::before,
  .profile-showcase-sticky__dots::after {
    content: "";
    position: absolute;
    left: 50%;
    width: 1.5px;
    border-radius: 999px;
    transform: translateX(-50%);
    pointer-events: none;
  }

  .profile-showcase-sticky__dots::before {
    top: 43px;
    bottom: 43px;
    z-index: 0;
    background: rgba(96,165,250,0.12);
    box-shadow: 0 0 10px rgba(96,165,250,0.08);
  }

  .profile-showcase-sticky__dots::after {
    top: 43px;
    z-index: 0;
    height: calc((100% - 86px) * var(--showcase-progress, 0));
    background:
      linear-gradient(180deg, rgba(147,197,253,0.82), rgba(56,189,248,0.58));
    box-shadow:
      0 0 10px rgba(96,165,250,0.24),
      0 0 18px rgba(56,189,248,0.1);
    transition: height 0.04s linear;
  }

  .profile-showcase-sticky__progress-thumb {
    position: absolute;
    top: calc(43px + ((100% - 86px) * var(--showcase-progress, 0)));
    left: 50%;
    z-index: 2;
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: rgba(219,234,254,0.98);
    box-shadow:
      0 0 0 2px rgba(15,23,42,0.84),
      0 0 12px rgba(96,165,250,0.42);
    pointer-events: none;
    transform: translate(-50%, -50%);
    transition: top 0.04s linear;
  }

  .profile-showcase-sticky__dot {
    width: 5px;
    height: 5px;
    background: rgba(148,163,184,0.2);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06);
  }

  .profile-showcase-sticky__dot.is-active {
    width: 5px;
    height: 5px;
    background: rgba(147,197,253,0.46);
    box-shadow: 0 0 8px rgba(96,165,250,0.18);
  }

  .profile-showcase-sticky__control {
    position: relative;
    z-index: 1;
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: transparent;
    box-shadow: none;
    font-size: 17px;
    transform: none;
  }

  .profile-showcase-sticky__control::before {
    display: none;
  }

  .profile-showcase-sticky__control::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-top: 1.75px solid rgba(147,197,253,0.72);
    border-right: 1.75px solid rgba(147,197,253,0.72);
    filter: drop-shadow(0 0 7px rgba(96,165,250,0.22));
    transform: translate(-50%, -38%) rotate(-45deg);
    transition: border-color 0.2s ease, filter 0.2s ease, opacity 0.2s ease;
  }

  .profile-showcase-sticky__control[data-showcase-control="next"]::after {
    transform: translate(-50%, -62%) rotate(135deg);
  }

  .profile-showcase-sticky__control:hover,
  .profile-showcase-sticky__control:focus-visible {
    background: transparent;
    box-shadow: none;
    color: transparent;
    transform: none;
  }

  .profile-showcase-sticky__control:hover::after,
  .profile-showcase-sticky__control:focus-visible::after {
    border-color: rgba(219,234,254,0.9);
    filter: drop-shadow(0 0 9px rgba(96,165,250,0.34));
  }

  .profile-showcase-sticky__control:disabled {
    background: transparent;
    color: transparent;
    box-shadow: none;
    opacity: 1;
  }

  .profile-showcase-sticky__control:disabled::after {
    border-color: rgba(148,163,184,0.28);
    filter: none;
  }

  .profile-showcase-sticky__dot {
    position: relative;
    z-index: 1;
  }

  .profile-showcase-sticky:has(.profile-showcase-sticky__screen[data-showcase-screen="2"].is-active) .profile-showcase-sticky__phone-wrap {
    transform: translateY(48px);
  }

  .profile-showcase-sticky:has(.profile-showcase-sticky__screen[data-showcase-screen="2"].is-active) .profile-showcase-sticky__text h3 {
    margin-top: 2px;
  }

  .profile-showcase-sticky__hint {
    display: block;
    margin: 6px auto 0;
    color: rgba(203,213,225,0.58);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.03em;
    line-height: 1;
    text-align: center;
  }

  .profile-showcase-sticky__counter {
    top: 36px;
    right: 17px;
    font-size: 9px;
    padding: 4px 7px;
  }

  .profile-showcase-sticky__text {
    grid-area: text;
    align-self: start;
    text-align: center;
    max-width: 390px;
    margin-top: 4px;
    padding-top: 0;
    padding-bottom: 28px;
    transform: none;
  }

  .profile-showcase-sticky__text h3 {
    min-height: 0;
    font-size: clamp(21px, 5.7vw, 28px);
    line-height: 1.05;
    letter-spacing: -0.045em;
    margin: 6px 0 6px;
  }

  .profile-showcase-sticky__text p:last-child {
    margin-left: auto;
    margin-right: auto;
    max-width: 320px;
    font-size: clamp(12px, 3.2vw, 13.5px);
    line-height: 1.4;
  }
}

@media (max-width: 600px) {
  .profile-showcase-sticky__phone-wrap {
    margin-top: 48px;
    margin-bottom: 18px;
    transform: none;
  }

  .profile-showcase-sticky:has(.profile-showcase-sticky__screen[data-showcase-screen="2"].is-active) .profile-showcase-sticky__phone-wrap {
    transform: none;
  }
}

/* ================= LANDSCAPE PHONE FALLBACK ================= */

@media (orientation: landscape) and (max-height: 520px) {

  .profile-showcase-sticky {
    overflow: hidden;
    padding: 22px 20px 44px;
  }

  .profile-showcase-sticky__intro {
    position: relative;
    top: auto;
    max-width: 720px;
    margin: 0 auto 18px;
    padding: 0;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: none;
  }

  .profile-showcase-sticky__intro h2 {
    font-size: clamp(28px, 4vw, 38px);
    margin: 8px auto;
  }

  .profile-showcase-sticky__intro p {
    max-width: 620px;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.4;
  }

  .profile-showcase-sticky__scroller {
    height: auto;
    max-width: 760px;
    margin: 0 auto;
  }

  .profile-showcase-sticky__stage {
    position: relative;
    top: auto;
    height: auto;
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
  }

  /* Hide changing PROFILE / VAULT / CREDITS copy */
  .profile-showcase-sticky__text {
    display: none;
  }

  /* Center phone */
  .profile-showcase-sticky__phone-wrap {
    width: 180px;
    transform: none;
  }

  .profile-showcase-sticky__device {
    width: 100%;
  }

  .profile-showcase-sticky__dots {
    right: -28px;
    gap: 6px;
  }

  .profile-showcase-sticky__hint {
    margin-top: 8px;
    font-size: 10px;
  }

  .profile-showcase-sticky__counter {
    top: 38px;
    right: 16px;
  }

  /* Show Player Profile screenshot only */
  .profile-showcase-sticky__screen {
    opacity: 0 !important;
  }

  .profile-showcase-sticky__screen[data-showcase-screen="1"] {
    opacity: 1 !important;
    transform: scale(1) !important;
  }

  /* Show Player Profile dot only */
  .profile-showcase-sticky__dot {
    width: 6px !important;
    height: 6px !important;
    opacity: 0.4;
  }

  .profile-showcase-sticky__dot[data-showcase-dot="1"] {
    height: 18px !important;
    opacity: 1;
  }
}

/* SEO guide links should stay quiet and compact */
#seo-hub {
  padding-top: clamp(32px, 4vw, 46px);
  padding-bottom: clamp(34px, 4vw, 48px);
}

#seo-hub > h2 {
  font-size: clamp(24px, 3vw, 34px);
}

#seo-hub > .sub {
  max-width: 560px;
  margin-top: 8px;
  color: #8f9bb3;
  font-size: 12.5px;
  line-height: 1.45;
}

#seo-hub .seo-grid {
  width: min(860px, 100%);
  margin: 18px auto 0 !important;
  gap: 10px;
}

#seo-hub .seo-grid .card {
  min-height: 78px;
  padding: 13px 15px;
  border-radius: 13px;
  text-align: left;
  align-content: center;
}

#seo-hub .seo-grid .card h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.15;
}

#seo-hub .seo-grid .card p,
#seo-hub .seo-grid .card .sub {
  margin: 6px 0 0;
  font-size: 10.5px;
  line-height: 1.3;
  text-align: left;
}

@media (max-width: 600px) {
  #seo-hub {
    padding-top: 32px;
    padding-bottom: 36px;
  }

  #seo-hub > h2 {
    font-size: 24px;
    line-height: 1.1;
  }

  #seo-hub > .sub {
    max-width: 310px;
    font-size: 11.5px;
    line-height: 1.4;
  }

  #seo-hub .seo-grid {
    grid-template-columns: 1fr 1fr;
    width: min(100%, 350px);
    gap: 8px;
    margin-top: 16px !important;
  }

  #seo-hub .seo-grid .card {
    min-height: 70px;
    padding: 11px 12px;
    border-radius: 12px;
    text-align: left !important;
  }

  #seo-hub .seo-grid .card h3,
  #seo-hub .seo-grid .card p,
  #seo-hub .seo-grid .card .sub {
    width: auto;
    text-align: left !important;
  }

  #seo-hub .seo-grid .card h3 {
    font-size: 12.5px;
  }

  #seo-hub .seo-grid .card p,
  #seo-hub .seo-grid .card .sub {
    margin-top: 5px;
    font-size: 9.75px;
    line-height: 1.25;
  }
}

/* Keep SEO guide cards visually centered and consistent */
#seo-hub .seo-grid .card {
  display: grid !important;
  place-items: center !important;
  text-align: center !important;
}

#seo-hub .seo-grid .card h3,
#seo-hub .seo-grid .card p,
#seo-hub .seo-grid .card .sub {
  width: 100% !important;
  text-align: center !important;
}

/* Contact widget homepage polish */
#cmg-question-input,
#cmg-form input,
#cmg-form textarea {
  font-family: Arial, sans-serif;
}

#cmg-question-input {
  color: #f8fafc;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

#cmg-question-input::placeholder,
#cmg-form input::placeholder,
#cmg-form textarea::placeholder {
  color: rgba(184, 194, 217, 0.42);
  opacity: 1;
  font-family: Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.01em;
}

#cmg-question-input:placeholder-shown {
  color: rgba(184, 194, 217, 0.42);
}

.cmg-message-link {
  display: inline-flex;
  justify-content: center;
  width: fit-content;
  margin: 10px auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #93c5fd;
  font: inherit;
  font-size: 12px;
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

#cmg-open-message {
  min-height: auto;
}

#cmg-question-finder button.cmg-message-link {
  background: transparent;
  box-shadow: none;
}

.cmg-message-link:hover,
.cmg-message-link:focus-visible {
  color: #dbeafe;
  outline: none;
}

.faq-item.active .faq-answer {
  max-height: 520px;
}

.home-free-draw.is-returning .home-free-draw__inner {
  grid-template-columns: minmax(0, 1fr) 250px;
  width: min(820px, 100%);
  gap: 36px;
}

.home-free-draw.is-returning .home-free-draw__copy {
  text-align: center;
}

.home-free-draw.is-returning .home-free-draw__ticket {
  width: 98px;
  margin-bottom: 4px;
}

.home-free-draw.is-returning h2 {
  font-size: clamp(24px, 2.6vw, 31px);
}

.home-free-draw.is-returning .home-free-draw__copy .home-giveaway-entry-pill {
  display: none;
}

.home-free-draw.is-returning .home-free-draw__action {
  justify-items: center;
  align-self: start;
  gap: 10px;
  padding: 12px 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-align: center;
}

.home-free-draw.is-returning .home-giveaway-entry-pill--action {
  display: inline-grid;
  justify-items: center;
  margin: 0 0 8px;
  padding: 7px 11px;
  border-color: rgba(134, 239, 172, 0.22);
  background:
    radial-gradient(circle at 50% 0, rgba(134, 239, 172, 0.10), transparent 46%),
    rgba(6, 78, 59, 0.12);
  text-align: center;
}

.home-free-draw.is-returning .home-giveaway-entry-pill--action strong {
  display: block;
  text-align: center;
}

.home-free-draw.is-returning .home-free-draw__button {
  width: min(250px, 100%);
  min-height: 42px;
}

.home-free-draw.is-returning .home-free-draw__alternate {
  font-size: 10.75px;
  opacity: 0.78;
}

.home-free-draw.is-returning .home-free-draw__action p {
  max-width: 215px;
  margin: 0;
  opacity: 0.68;
}

.home-free-draw__benefits {
  display: grid;
  justify-items: start;
  gap: 4px;
  margin: 2px 0 0;
  padding: 0;
  color: rgba(226, 232, 240, 0.84);
  font-size: 10.75px;
  font-weight: 750;
  line-height: 1.25;
  list-style: none;
}

.home-free-draw__benefits li {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
  width: fit-content;
  padding-left: 0;
}

.home-free-draw__benefits li::before {
  content: "✓";
  position: static;
  flex: 0 0 auto;
  color: #86efac;
  font-weight: 900;
  line-height: 1;
}

@media (max-width: 860px) {
  .home-free-draw.is-returning .home-free-draw__inner {
    grid-template-columns: 1fr;
    gap: 14px;
    width: min(100%, 340px);
  }

  .home-free-draw.is-returning .home-free-draw__copy .home-giveaway-entry-pill {
    display: inline-grid;
    justify-items: center;
    margin: 10px auto 0;
    text-align: center;
  }

  .home-free-draw.is-returning .home-giveaway-entry-pill--action {
    display: none;
  }

  .home-free-draw.is-returning .home-free-draw__action {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .home-free-draw.is-returning .home-free-draw__button {
    width: min(100%, 260px);
  }
}
