@font-face {
  font-family: "Nunito Local";
  src: url("../fonts/body/nunito/nunito-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Local";
  src: url("../fonts/body/nunito/nunito-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunito Local";
  src: url("../fonts/body/nunito/nunito-black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --layout-max-width: min(1150px, 100vw);
  --layout-content-width: min(1070px, 100vw);
  --blue-950: #002f7a;
  --blue-900: #003c97;
  --blue-800: #0452bb;
  --blue-700: #0f65d9;
  --green-600: #08b62a;
  --green-700: #049420;
  --green-900: #047017;
  --yellow-400: #ffca1c;
  --yellow-500: #f9bf00;
  --white: #ffffff;
  --ink: #103062;
  --paper: #f6f7f8;
  --shadow: 0 18px 40px rgba(5, 24, 71, 0.22);
  --shadow-soft: 0 10px 24px rgba(6, 30, 90, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Nunito Local", "Barlow", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top, rgba(6, 84, 195, 0.6), transparent 42%),
    linear-gradient(180deg, #0049b8 0%, #003887 42%, #f4f5f7 42%, #f4f5f7 73%, #f6f6f7 100%);
}

button,
a {
  font: inherit;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  overflow: hidden;
}

.site-header,
.hero,
.how-it-works,
.numbers-section,
.prize-section,
.site-footer {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
}

.site-header-inner,
.hero-inner,
.section-inner,
.prize-inner,
.site-footer-inner {
  width: min(100%, var(--layout-max-width));
  margin: 0 auto;
  padding-left: 52px;
  padding-right: 52px;
}

.site-header {
  z-index: 10;
  padding: 16px 0;
  color: var(--white);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 clamp(118px, 11vw, 184px);
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(2, 15, 49, 0.28));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.2vw, 38px);
  font-weight: 600;
  font-size: 0.94rem;
}

.site-nav a {
  opacity: 0.95;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.header-cta,
.primary-cta,
.secondary-hero-cta,
.secondary-cta {
  --cta-icon-color: #083c8d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border: 0;
  cursor: pointer;
  transition: transform 180ms ease, filter 180ms ease;
}

.header-cta:hover,
.primary-cta:hover,
.secondary-hero-cta:hover,
.secondary-cta:hover,
.header-cta:focus-visible,
.primary-cta:focus-visible,
.secondary-hero-cta:focus-visible,
.secondary-cta:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.04);
}

.header-cta {
  --cta-icon-color: #083c8d;
  min-width: 214px;
  min-height: 58px;
  padding: 12px 22px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #ffd94d 0%, #ffc61d 56%, #f2b900 100%);
  border: 1px solid rgba(164, 117, 0, 0.22);
  color: #00305f;
  font-family: "Nunito Local", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.cta-icon,
.cta-pill,
.cta-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--cta-icon-color);
  font-size: 1.15rem;
  line-height: 1;
}

.hero {
  padding: 36px 0 48px;
  color: var(--white);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 18px;
  min-height: 620px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, rgba(0, 55, 140, 0.18), rgba(0, 22, 60, 0.35)),
    url("../images/backgrounds/hero-blue-texture.png") center top / cover no-repeat,
    radial-gradient(circle at 15% 12%, rgba(255, 255, 255, 0.14), transparent 18%),
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.08), transparent 20%),
    linear-gradient(112deg, rgba(0, 78, 199, 0.82), rgba(0, 50, 132, 0.92));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-position: 0 0, 14px 14px;
  background-size: 28px 28px;
  opacity: 0.22;
  mix-blend-mode: soft-light;
}

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

.hero-noise,
.hero-world,
.hero-cloud {
  position: absolute;
  pointer-events: none;
}

.hero-world {
  right: -36px;
  top: 194px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 38% 45%, rgba(27, 127, 255, 0.18), transparent 46%),
    radial-gradient(circle at 62% 58%, rgba(7, 71, 191, 0.52), transparent 54%),
    radial-gradient(circle at center, rgba(41, 134, 255, 0.2), transparent 64%);
  filter: blur(1px);
  opacity: 0.78;
}

.hero-content {
  max-width: 520px;
  padding-top: 38px;
}

.campaign-ribbon {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  min-height: 42px;
}

.campaign-ribbon-logo {
  display: block;
  width: clamp(140px, 16vw, 220px);
  height: auto;
  filter: brightness(0) invert(1) drop-shadow(0 10px 22px rgba(2, 15, 49, 0.24));
}

.hero h1,
.section-header h2,
.prize-content h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  text-transform: uppercase;
  line-height: 0.94;
}

.hero h1 {
  font-size: clamp(2.6rem, 4.2vw, 4.4rem);
  text-shadow: 0 6px 20px rgba(2, 21, 58, 0.24);
}

.hero h1 span,
.section-header h2 span,
.prize-content h2 span,
.screen-title span {
  color: var(--yellow-400);
}

.hero-copy {
  max-width: 420px;
  margin: 16px 0 20px;
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  font-weight: 700;
  line-height: 1.32;
}

.hero-copy strong {
  color: var(--yellow-400);
}

.hero-points {
  display: grid;
  gap: 8px;
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  font-size: 0.96rem;
  font-weight: 700;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-points li::before {
  content: "✔";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255, 202, 28, 0.14);
  color: var(--yellow-400);
  font-size: 0.75rem;
}

.hero-note {
  max-width: 460px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.primary-cta {
  --cta-icon-color: #058320;
  min-width: 300px;
  min-height: 58px;
  padding: 12px 22px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #16d844 0%, #09b72d 52%, #049320 100%);
  border: 1px solid rgba(4, 93, 25, 0.22);
  color: var(--white);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.45rem;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 24px rgba(7, 103, 33, 0.24);
}

.secondary-hero-cta {
  --cta-icon-color: #083c8d;
  min-width: 260px;
  min-height: 58px;
  padding: 12px 22px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, #ffd94d 0%, #ffc61d 56%, #f2b900 100%);
  border: 1px solid rgba(164, 117, 0, 0.22);
  color: #00305f;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  box-shadow: 0 12px 24px rgba(78, 63, 4, 0.18);
}

.hero-collage {
  position: relative;
  min-height: 284px;
  margin-top: 18px;
  max-width: 640px;
}

.hero-collage-main,
.face-card,
.mini-card,
.prize-polaroid {
  position: absolute;
  box-shadow: var(--shadow);
}

.rio-photo {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.screen-palms::before,
.screen-palms::after,
.rio-photo::before,
.rio-photo::after,
.screen-pool::before {
  content: "";
  position: absolute;
}

.screen-pool,
.screen-palms,
.rio-photo {
  position: relative;
  overflow: hidden;
}

.hero-collage-main {
  left: -6px;
  bottom: 0;
  width: min(100%, 628px);
  height: 284px;
  background: url("../images/illustrations/airplane-ticket-collage-v2.png") left bottom / contain no-repeat;
  filter: drop-shadow(0 16px 20px rgba(4, 23, 73, 0.28));
}

.face-card {
  right: 34px;
  bottom: 24px;
  width: 124px;
  height: 124px;
  padding: 0;
  overflow: hidden;
  border: 6px solid rgba(244, 228, 176, 0.88);
  transform: rotate(-2deg);
}

.face-illustration {
  width: 100%;
  height: 100%;
  background: url("../images/illustrations/fan-portrait-facepaint.png") center / cover no-repeat;
}

.hero-device-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-shadow {
  position: absolute;
  inset: auto 104px 102px auto;
  width: 280px;
  height: 94px;
  background: rgba(0, 14, 45, 0.45);
  filter: blur(28px);
  transform: rotate(-16deg);
}

.phone {
  position: relative;
  width: min(500px, 82%);
  aspect-ratio: 0.55;
  padding: 14px;
  border-radius: 48px;
  background: linear-gradient(145deg, #0a111b, #1b2129 65%, #444b58);
  box-shadow: 0 26px 44px rgba(3, 12, 39, 0.44);
  transform: rotate(7deg) translateY(38px);
}

.phone--mockup {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  aspect-ratio: auto;
  transform: rotate(7deg) translateY(38px) scale(0.92);
  transform-origin: top center;
}

.phone::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.phone--mockup::before {
  content: none;
}

.phone-mockup-image {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 22px 38px rgba(3, 12, 39, 0.3));
}

.hero-video-trigger {
  cursor: pointer;
  transition: transform 220ms ease, filter 220ms ease;
}

.hero-video-trigger:hover,
.hero-video-trigger:focus-visible {
  transform: rotate(5deg) translateY(24px) scale(1.03);
  filter: brightness(1.06);
}

.hero-video-trigger:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.88);
  outline-offset: 10px;
}

.hero-video-badge {
  position: absolute;
  left: 50%;
  bottom: 54px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px 12px 14px;
  border-radius: 999px;
  background: rgba(4, 19, 58, 0.82);
  box-shadow: 0 18px 30px rgba(3, 12, 39, 0.28);
  color: var(--white);
  transform: translateX(-50%);
  backdrop-filter: blur(10px);
}

.hero-video-badge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffd94d 0%, #ffc61d 56%, #f2b900 100%);
  color: #083c8d;
  font-size: 1.2rem;
}

.hero-video-badge-text {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.video-lightbox[hidden] {
  display: none;
}

.video-lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 28px;
}

.video-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 12, 39, 0.82);
  backdrop-filter: blur(8px);
}

.video-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  padding-top: 54px;
}

.video-lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(2, 12, 39, 0.24);
  cursor: pointer;
}

.video-lightbox-frame-shell {
  overflow: hidden;
  width: 100%;
  max-height: calc(100vh - 120px);
  border-radius: 24px;
  background: #000;
  box-shadow: 0 30px 80px rgba(3, 12, 39, 0.46);
}

.video-lightbox-frame {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: calc(100vh - 120px);
  border: 0;
}

body.lightbox-open {
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 140px;
  height: 28px;
  margin-left: -70px;
  border-radius: 0 0 20px 20px;
  background: #090f16;
  z-index: 2;
}

.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 34px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 54, 120, 0.3), rgba(3, 19, 56, 0.26)),
    linear-gradient(180deg, #0555c9 0 34%, #2886e8 34% 44%, #41a0f7 44% 58%, #b5bfc7 58% 67%, #0a64b3 67% 100%);
}

.screen-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.12), transparent 30%, rgba(255, 255, 255, 0.03) 60%, transparent 80%);
}

.screen-title {
  position: absolute;
  left: 38px;
  top: 64px;
  z-index: 1;
  margin: 0;
  color: var(--white);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.65rem, 2vw, 2.65rem);
  line-height: 0.94;
  text-transform: uppercase;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 54%;
  z-index: 2;
  width: 92px;
  height: 92px;
  margin: -46px;
  border: 5px solid rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  backdrop-filter: blur(3px);
}

.play-button::before {
  content: "";
  position: absolute;
  left: 33px;
  top: 22px;
  width: 0;
  height: 0;
  border-top: 19px solid transparent;
  border-bottom: 19px solid transparent;
  border-left: 28px solid rgba(255, 255, 255, 0.96);
}

.screen-pool {
  position: absolute;
  inset: auto 0 0;
  height: 55%;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), transparent 16%),
    linear-gradient(180deg, #65d7fe 0 36%, #2594d4 36% 70%, #1f6eb0 70% 100%);
  clip-path: polygon(0 24%, 100% 8%, 100% 100%, 0 100%);
}

.screen-pool::before {
  left: 0;
  right: 0;
  top: 22px;
  bottom: auto;
  height: 12px;
  background: rgba(255, 255, 255, 0.22);
}

.screen-palms {
  position: absolute;
  inset: 34% 0 auto;
  height: 30%;
}

.screen-palms::before,
.screen-palms::after {
  bottom: 0;
  width: 130px;
  height: 170px;
  background:
    radial-gradient(circle at 50% 15%, #143d20 0 22%, transparent 23%),
    radial-gradient(circle at 20% 28%, #143d20 0 14%, transparent 15%),
    radial-gradient(circle at 80% 28%, #143d20 0 14%, transparent 15%),
    linear-gradient(180deg, transparent 0 46%, #1e261b 46% 100%);
  clip-path: polygon(49% 0, 59% 20%, 75% 8%, 64% 32%, 100% 36%, 68% 44%, 78% 64%, 54% 50%, 52% 100%, 46% 100%, 44% 50%, 18% 62%, 34% 42%, 0 34%, 34% 28%, 18% 10%, 42% 22%);
}

.screen-palms::before {
  left: 28px;
}

.screen-palms::after {
  right: 22px;
  transform: scale(1.08);
}

.how-it-works {
  padding: 54px 0 40px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 248, 248, 0.94)),
    url("../images/backgrounds/confetti-light-wide.png") center top / cover no-repeat;
}

.how-it-works::before,
.how-it-works::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, transparent 44%, #15be36 44% 56%, transparent 56%);
  opacity: 0.9;
}

.how-it-works::before {
  left: -24px;
  top: 20px;
  transform: rotate(12deg);
}

.how-it-works::after {
  right: -16px;
  top: 26px;
  width: 90px;
  height: 90px;
  transform: rotate(-16deg);
}

.section-header {
  text-align: center;
  color: var(--blue-950);
}

.section-header-left {
  text-align: left;
}

.section-header h2,
.prize-content h2 {
  font-size: clamp(2.1rem, 3.2vw, 3.4rem);
}

.section-header p {
  margin: 8px 0 0;
  font-size: clamp(0.98rem, 1.15vw, 1.12rem);
  font-weight: 600;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  margin-top: 36px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin-top: 38px;
}

.step-card {
  min-height: 100%;
  padding: 28px 24px 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(180deg, #0cb52d, #05871f);
  color: var(--white);
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
}

.step-card h3 {
  margin: 0 0 12px;
  color: var(--blue-950);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.35rem, 1.6vw, 1.8rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.step-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.5;
}

.path-selector {
  margin-top: 34px;
  margin-bottom: 34px;
  padding: 30px;
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(6, 61, 146, 0.06), rgba(255, 202, 28, 0.08)),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.path-selector-header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.path-selector-kicker {
  margin: 0 0 8px;
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.path-selector-header h3 {
  margin: 0;
  color: var(--blue-950);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 2.7vw, 2.8rem);
  line-height: 0.96;
  text-transform: uppercase;
}

.path-selector-header h3 span {
  color: var(--yellow-500);
}

.path-selector-header > p:last-child {
  margin: 10px 0 0;
  font-size: 1rem;
  line-height: 1.6;
}

.path-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.path-option {
  display: grid;
  gap: 18px;
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(6, 30, 90, 0.12);
  color: var(--white);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.path-option:hover,
.path-option:focus-within {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 20px 40px rgba(6, 30, 90, 0.2);
  filter: brightness(1.02);
}

.path-option:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.82);
  outline-offset: 4px;
}

.path-option-blue {
  background:
    linear-gradient(180deg, rgba(28, 115, 243, 0.14), rgba(8, 72, 168, 0.08)),
    linear-gradient(180deg, #2d86f7 0%, #1365db 56%, #0848a8 100%);
}

.path-option-green {
  background:
    linear-gradient(180deg, rgba(22, 216, 68, 0.12), rgba(4, 147, 32, 0.08)),
    linear-gradient(180deg, #16d844 0%, #09b72d 52%, #049320 100%);
}

.path-option-head {
  display: grid;
  gap: 8px;
}

.path-option-kicker {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.path-option-title {
  color: var(--white);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.35rem, 1.9vw, 1.85rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.path-option-body {
  display: grid;
  gap: 16px;
}

.path-option-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.98rem;
  line-height: 1.6;
}

.path-option-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.path-option-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  line-height: 1.5;
}

.path-option-list li::before {
  content: "✔";
  color: rgba(255, 255, 255, 0.9);
  font-weight: 900;
}

.path-option-cta {
  grid-column: auto;
  justify-self: start;
  background: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 24px rgba(2, 15, 49, 0.16);
}

.path-option-blue .path-option-cta {
  color: #0848a8;
}

.path-option-green .path-option-cta {
  color: #049320;
}

.path-option-blue .path-option-cta .cta-glyph {
  background: rgba(8, 72, 168, 0.12);
  color: #0848a8;
}

.path-option-green .path-option-cta .cta-glyph {
  background: rgba(4, 147, 32, 0.12);
  color: #049320;
}

.info-card {
  display: grid;
  grid-template-columns: 112px 1fr;
  grid-template-rows: auto auto;
  gap: 18px 22px;
  align-items: start;
  padding: 30px 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
}

.info-card > div:last-of-type {
  min-width: 0;
}

.info-card h3 {
  margin: 4px 0 10px;
  color: var(--green-900);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.5rem, 2vw, 2rem);
  text-transform: uppercase;
  line-height: 0.96;
}

.info-card:nth-child(2) h3 {
  color: var(--blue-950);
}

.info-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
}

.info-icon {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.info-icon-money {
  background-image: url("../images/icons/icon-ticket-green.png");
}

.info-icon-money::before,
.info-icon-money::after,
.info-icon-bag::before,
.info-icon-bag::after,
.mini-card::before,
.mini-card::after {
  content: "";
  position: absolute;
}

.info-icon-money::before {
  content: none;
}

.info-icon-money::after {
  content: none;
}

.info-icon-bag {
  background-image: url("../images/icons/icon-luggage-blue.png");
}

.info-icon-bag::before {
  content: none;
}

.info-icon-bag::after {
  content: none;
}

.secondary-cta {
  --cta-icon-color: #058320;
  grid-column: 1 / -1;
  justify-self: start;
  min-width: 248px;
  min-height: 52px;
  padding: 10px 20px;
  border-radius: 999px;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.secondary-cta-green {
  background:
    linear-gradient(180deg, #16d844 0%, #09b72d 52%, #049320 100%);
  border: 1px solid rgba(4, 93, 25, 0.2);
}

.secondary-cta-blue {
  --cta-icon-color: #0848a8;
  background:
    linear-gradient(180deg, #2d86f7 0%, #1365db 56%, #0848a8 100%);
  border: 1px solid rgba(7, 55, 137, 0.2);
}

.path-option .path-option-cta {
  background: var(--white);
  background-image: none;
  border-color: rgba(255, 255, 255, 0.3);
}

.path-option-blue .path-option-cta {
  color: #0848a8;
}

.path-option-green .path-option-cta {
  color: #049320;
}

.numbers-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.numbers-section {
  padding: 32px 0 38px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(1, 45, 111, 0.22), rgba(2, 36, 90, 0.32)),
    url("../images/backgrounds/hero-blue-texture.png") center / cover no-repeat,
    radial-gradient(circle at 20% 8%, rgba(255, 255, 255, 0.08), transparent 18%),
    radial-gradient(circle at 84% 76%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, #003986, #003374 55%, #00357a 100%);
}

.numbers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.18;
}

.numbers-section > * {
  position: relative;
  z-index: 1;
}

.numbers-section .section-header h2 {
  color: #fff;
  text-shadow: 0 2px 8px rgba(1, 18, 58, 0.8);
}

.game-badge {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 2px dashed rgba(255, 203, 38, 0.8);
  border-radius: 999px;
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

.numbers-table {
  margin-top: 28px;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

.table-head,
.table-row,
.group-title {
  display: grid;
  grid-template-columns: 1fr 190px;
}

.table-head {
  color: #fff;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.table-head div {
  padding: 16px 20px;
  text-align: center;
}

.table-head div:first-child {
  background: #08ad25;
}

.table-head div:last-child {
  background: #ffc719;
}

.table-head div:last-child {
  color: #0d3386;
}

.group-title {
  align-items: center;
  min-height: 66px;
  padding: 0 20px;
  color: #08901f;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
  border-top: 1px solid #dfe5f0;
}

.group-title::after {
  content: "";
  border-left: 1px solid #dfe5f0;
}

.table-row {
  align-items: center;
  min-height: 48px;
  color: #173765;
  font-size: 0.98rem;
  border-top: 1px solid #e4e7ef;
}

.table-row span,
.table-row strong {
  padding: 10px 20px;
}

.table-row strong {
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid #e4e7ef;
  color: #0e3d8c;
  font-size: 1.25rem;
}

.simulator-section,
.faq-section {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
}

.simulator-section {
  padding: 58px 0 52px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 248, 251, 0.96)),
    radial-gradient(circle at 18% 20%, rgba(255, 203, 28, 0.14), transparent 18%),
    radial-gradient(circle at 84% 20%, rgba(4, 82, 187, 0.12), transparent 22%);
}

.simulator-shell {
  display: grid;
  grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  margin-top: 34px;
}

.simulator-form,
.simulator-result {
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.simulator-form {
  display: grid;
  align-content: start;
  gap: 18px;
  height: 100%;
  padding: 28px;
  background: #fff;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field span {
  color: var(--blue-950);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
}

.form-field input,
.form-field select {
  width: 100%;
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid #d7deed;
  border-radius: 18px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.simulator-result {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 57, 134, 0.94), rgba(3, 41, 100, 0.98)),
    url("../images/backgrounds/hero-blue-texture.png") center / cover no-repeat;
}

.simulator-kicker {
  margin: 0 0 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.simulator-total {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.3rem, 3.5vw, 3.6rem);
  line-height: 0.94;
  text-transform: uppercase;
}

.simulator-total span {
  color: var(--yellow-400);
}

.simulator-summary {
  max-width: 600px;
  margin: 14px 0 26px;
  font-size: 0.98rem;
  line-height: 1.45;
  transition: opacity 180ms ease, transform 180ms ease;
}

.simulator-summary.is-refreshing {
  opacity: 0.5;
  transform: translateY(4px);
}

.simulator-breakdown {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.simulator-card {
  min-height: 100%;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
}

.simulator-card h3 {
  margin: 0 0 10px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.35rem;
  text-transform: uppercase;
}

.simulator-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow-400);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.8rem;
  line-height: 0.9;
  transform-origin: left center;
}

.simulator-total span,
.simulator-card strong {
  display: inline-block;
}

.simulator-total span.is-bumping,
.simulator-card strong.is-bumping {
  animation: simulator-bump 420ms cubic-bezier(0.2, 0.9, 0.2, 1);
}

.simulator-result.is-glowing {
  animation: simulator-glow 460ms ease;
}

html.motion-ready .motion-reveal {
  opacity: 0;
  translate: var(--motion-shift-x, 0) var(--motion-shift-y, 28px);
  filter: blur(10px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    translate 820ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, translate, filter;
}

html.motion-ready .motion-reveal.motion-from-up {
  --motion-shift-y: 32px;
}

html.motion-ready .motion-reveal.motion-from-down {
  --motion-shift-y: -32px;
}

html.motion-ready .motion-reveal.motion-from-left {
  --motion-shift-x: -36px;
  --motion-shift-y: 0px;
}

html.motion-ready .motion-reveal.motion-from-right {
  --motion-shift-x: 36px;
  --motion-shift-y: 0px;
}

html.motion-ready .motion-reveal.is-visible {
  opacity: 1;
  translate: 0 0;
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .motion-reveal {
    opacity: 1 !important;
    translate: 0 0 !important;
    filter: none !important;
    transition: none !important;
  }
}

@keyframes simulator-bump {
  0% {
    transform: translateY(8px) scale(0.9);
    opacity: 0.4;
    filter: blur(1px);
  }

  55% {
    transform: translateY(-4px) scale(1.08);
    opacity: 1;
    filter: blur(0);
  }

  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes simulator-glow {
  0% {
    box-shadow: 0 0 0 rgba(255, 202, 28, 0);
  }

  40% {
    box-shadow: 0 0 0 3px rgba(255, 202, 28, 0.08), 0 14px 30px rgba(255, 202, 28, 0.14);
  }

  100% {
    box-shadow: none;
  }
}

.simulator-card p,
.prize-note {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.5;
}

.simulator-cta {
  margin-top: 26px;
}

.simulator-cta {
  min-width: 0;
  width: 100%;
  min-height: 58px;
  background: linear-gradient(135deg, #0cb52d, #05871f);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.prize-note {
  margin-top: 20px;
}
.faq-section {
  padding: 80px 0 60px;
  background:
    linear-gradient(180deg, #f6f7f8 0%, #ffffff 100%);
}

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 34px;
}

.faq-item {
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  padding: 24px 68px 24px 26px;
  color: var(--blue-950);
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  line-height: 0.96;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  width: 34px;
  height: 34px;
  margin-top: -17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(4, 82, 187, 0.1);
  color: var(--blue-800);
  font-family: "Nunito Local", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  margin: 0;
  padding: 0 26px 24px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.6;
}

.faq-item p a {
  color: var(--green-700);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: currentColor;
}

.faq-item p a:hover,
.faq-item p a:focus-visible {
  color: var(--green-900);
}

.faq-link-emphasis {
  font-weight: 900;
  text-decoration-thickness: 0.14em;
  text-underline-offset: 0.12em;
}

.cup-ghost {
  display: none;
}

.prize-section {
  padding: 25px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(0, 78, 25, 0.16), rgba(0, 65, 20, 0.28)),
    url("../images/backgrounds/world-map-green-wide-v6.png") right center / cover no-repeat,
    url("../images/backgrounds/section-green-texture-wide.png") left center / cover no-repeat,
    radial-gradient(circle at 8% 12%, rgba(255, 255, 255, 0.1), transparent 20%),
    radial-gradient(circle at 88% 70%, rgba(255, 255, 255, 0.08), transparent 16%),
    linear-gradient(90deg, #0f9141 0%, #048833 35%, #027726 100%);
}

.prize-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.2;
}

.prize-section > * {
  position: relative;
  z-index: 1;
}

.prize-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  min-height: 420px;
}

.prize-polaroid {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1.5;
  padding: 0;
  background: transparent;
  box-shadow: none;
  transform: none;
}

.rio-photo {
  width: 100%;
  height: 100%;
  background: url("../images/illustrations/travel-collage-campaign-v3.png") center / contain no-repeat;
}

.rio-photo::before {
  content: none;
}

.rio-photo::after {
  content: none;
}

.prize-stack {
  position: relative;
  height: 172px;
}

.mini-card {
  display: flex;
  align-items: center;
  justify-content: center;
  left: 10px;
  width: 100px;
  height: 100px;
  border: 6px solid #ffdb57;
}

.mini-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 2.7rem;
  line-height: 1;
}

.mini-card-yellow {
  top: 10px;
  background:
    linear-gradient(145deg, rgba(255, 200, 20, 0.12), rgba(231, 168, 1, 0.16)),
    linear-gradient(145deg, #ffc814, #e7a801);
  transform: rotate(8deg);
}

.mini-card-yellow .mini-card-icon {
  color: #fff7d4;
}

.mini-card-blue {
  top: 82px;
  background:
    linear-gradient(145deg, rgba(33, 91, 197, 0.12), rgba(16, 62, 140, 0.16)),
    linear-gradient(145deg, #215bc5, #103e8c);
  border-color: #1d57bb;
  transform: rotate(-8deg);
}

.mini-card-blue .mini-card-icon {
  color: #ffffff;
}

.mini-card-yellow::before {
  content: none;
}

.mini-card-yellow::after {
  content: none;
}

.mini-card-blue::before {
  content: none;
}

.mini-card-blue::after {
  content: none;
}

.prize-content {
  max-width: 470px;
}

.prize-content h2 {
  margin-bottom: 22px;
}

.prize-content p {
  margin: 22px 0 24px;
  font-size: clamp(0.98rem, 1.05vw, 1.08rem);
  line-height: 1.42;
}

.prize-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.prize-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-size: clamp(1rem, 1.1vw, 1.14rem);
  font-weight: 700;
}

.prize-list-icon {
  margin-top: 2px;
  color: #ffd54a;
  font-size: 1rem;
  line-height: 1;
}

.prize-note {
  margin-top: 24px;
}

.plane-dashed {
  position: absolute;
  right: 36px;
  bottom: 42px;
  width: 180px;
  height: 92px;
  border-bottom: 3px dashed rgba(255, 255, 255, 0.8);
  border-right: 3px dashed rgba(255, 255, 255, 0.8);
  border-radius: 0 0 120px 0;
}

.plane-dashed::before {
  content: "✈";
  position: absolute;
  right: -12px;
  bottom: -8px;
  font-size: 1.4rem;
}

.site-footer {
  padding: 46px 0 30px;
  background: linear-gradient(180deg, #ffffff, #f5f5f5);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) minmax(220px, 1fr) minmax(220px, 1fr);
  column-gap: clamp(32px, 5vw, 88px);
  row-gap: 32px;
  align-items: start;
}

.footer-brand,
.footer-column {
  color: #173765;
}

.footer-brand {
  max-width: none;
}

.footer-column {
  width: 100%;
}

.footer-links {
  justify-self: stretch;
}

.footer-legal {
  justify-self: stretch;
}

.club-logo {
  display: block;
  width: 100%;
  max-width: 80%;
  height: auto;
  margin-bottom: 18px;
}

.footer-brand p,
.footer-column a,
.footer-bottom p {
  margin: 0 0 10px;
  font-size: 1.08rem;
  line-height: 1.45;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #17498f;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
}

.social-links .bi {
  font-size: 1rem;
  line-height: 1;
}

.footer-column h3 {
  margin: 8px 0 18px;
  color: #14448f;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.4rem;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  color: #173765;
}

.footer-column a::after {
  content: "→";
  margin-left: 8px;
  color: #07b52a;
}

.footer-column .highlight-link {
  color: #08a020;
  font-weight: 700;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  column-gap: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(23, 55, 101, 0.14);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.14);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
}

@media (max-width: 1180px) {
  .site-header-inner,
  .hero-inner,
  .section-inner,
  .prize-inner,
  .site-footer-inner {
    padding-left: 28px;
    padding-right: 28px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 28px;
  }

  .hero {
    padding-top: 36px;
    padding-bottom: 54px;
  }

  .hero-content {
    max-width: none;
    padding-top: 42px;
  }

  .hero-device-wrap {
    position: static;
    top: auto;
    align-self: auto;
    min-height: 560px;
    margin-top: 0;
  }

  .hero-video-badge {
    bottom: 34px;
  }

  .steps-grid,
  .path-options,
  .simulator-shell {
    grid-template-columns: 1fr;
  }

  .simulator-section,
  .faq-section {
    padding-top: 80px;
    padding-bottom: 46px;
  }

  .hero-collage {
    min-height: 210px;
    margin-top: 16px;
  }

  .hero-collage-main {
    width: min(100%, 350px);
    height: 160px;
  }

  .face-card {
    right: 18px;
    bottom: 22px;
    width: 132px;
    height: 132px;
  }

  .phone {
    width: min(430px, 84vw);
  }

  .info-cards,
  .prize-inner,
  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .prize-stack {
    display: none;
  }

  .footer-links,
  .footer-legal,
  .footer-brand {
    justify-self: start;
    max-width: none;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .site-header-inner {
    flex-wrap: nowrap;
    gap: 16px;
  }

  .site-header {
    padding-top: 20px;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    display: none;
  }

  .site-nav.is-open {
    display: none;
  }

  .header-cta {
    order: initial;
    width: auto;
    min-width: 0;
    margin-left: auto;
    justify-content: center;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 12vw, 6rem);
  }

  .hero-copy,
  .hero-note {
    max-width: none;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .primary-cta,
  .secondary-hero-cta {
    min-width: 0;
    width: 100%;
  }

  .section-header h2,
  .prize-content h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-copy,
  .info-card p,
  .prize-content p,
  .section-header p {
    font-size: 1.05rem;
  }

  .info-card {
    grid-template-columns: 1fr;
  }

  .steps-grid,
  .path-options,
  .simulator-breakdown {
    grid-template-columns: 1fr;
  }

  .step-card,
  .path-selector,
  .path-option-head,
  .path-option-body,
  .simulator-form,
  .simulator-result,
  .faq-item summary,
  .faq-item p {
    padding-left: 22px;
    padding-right: 22px;
  }

  .simulator-result {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .simulator-shell,
  .faq-list {
    gap: 20px;
  }

  .path-selector {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .faq-item summary {
    font-size: clamp(1.2rem, 4.8vw, 1.55rem);
    padding-right: 60px;
  }

  .faq-item summary::after {
    right: 18px;
  }

  .secondary-cta {
    justify-self: stretch;
  }

  .table-head,
  .table-row,
  .group-title {
    grid-template-columns: 1fr 110px;
  }

  .game-badge {
    margin-left: auto;
    width: fit-content;
  }

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

  .cup-ghost,
  .plane-dashed {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    background: linear-gradient(180deg, #0048b6 0%, #003682 24%, #f4f5f7 24%, #f4f5f7 72%, #f6f6f6 100%);
  }

  .site-header-inner,
  .hero-inner,
  .section-inner,
  .prize-inner,
  .site-footer-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand-main,
  .brand-bottom {
    font-size: 2.35rem;
  }

  .brand-logo {
    width: 150px;
  }

  .header-cta {
    width: auto;
    min-width: 0;
    padding-left: 18px;
    padding-right: 18px;
    font-size: 0.92rem;
  }

  .campaign-ribbon {
    min-height: 42px;
  }

  .campaign-ribbon-logo {
    width: clamp(150px, 36vw, 210px);
  }

  .hero-content {
    display: contents;
    padding-top: 0;
  }

  .hero {
    padding-bottom: 34px;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .hero-content .campaign-ribbon {
    order: 1;
    margin-top: 26px;
  }

  .hero-content h1 {
    order: 2;
  }

  .hero-copy {
    order: 3;
  }

  .hero-points {
    order: 4;
  }

  .hero-note {
    order: 5;
  }

  .hero-actions {
    order: 6;
  }

  .hero-device-wrap {
    order: 7;
    min-height: 400px;
    margin-top: 0;
  }

  .hero-collage {
    order: 8;
    align-self: center;
    width: min(100%, 320px);
    min-height: 136px;
    transform: none;
    transform-origin: center top;
    margin-top: 0;
    margin-bottom: 0;
  }

  .hero-collage-main {
    left: 0;
    width: 100%;
    height: 136px;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
    font-size: 1.55rem;
  }

  .primary-cta {
    min-width: 0;
    min-height: 72px;
  }

  .hero-video-trigger:hover,
  .hero-video-trigger:focus-visible {
    transform: rotate(5deg) translateY(18px) scale(1.02);
  }

  .hero-video-badge {
    bottom: 24px;
    padding: 10px 14px 10px 10px;
    gap: 10px;
  }

  .hero-video-badge-icon {
    width: 38px;
    height: 38px;
  }

  .hero-video-badge-text {
    font-size: 1rem;
  }

  .video-lightbox {
    padding: 18px;
  }

  .video-lightbox-dialog {
    padding-top: 50px;
  }

  .video-lightbox-frame-shell,
  .video-lightbox-frame {
    max-height: calc(100vh - 110px);
  }

  .phone {
    width: min(290px, 86vw);
    border-radius: 36px;
  }

  .phone-screen {
    border-radius: 26px;
  }

  .screen-title {
    left: 26px;
    top: 62px;
  }

  .play-button {
    width: 86px;
    height: 86px;
    margin: -43px;
  }

  .play-button::before {
    left: 31px;
    top: 20px;
    border-top-width: 18px;
    border-bottom-width: 18px;
    border-left-width: 28px;
  }

  .how-it-works {
    padding-top: 34px;
  }

  .how-it-works::before,
  .how-it-works::after {
    opacity: 0.18;
  }

  .how-it-works > .section-inner {
    position: relative;
    z-index: 1;
  }

  .how-it-works .section-header {
    position: relative;
    z-index: 1;
    padding-inline: 8px;
  }

  .how-it-works .section-header h2 {
    font-size: clamp(1.9rem, 11vw, 2.8rem);
    line-height: 0.98;
    text-shadow: 0 2px 0 rgba(255, 255, 255, 0.55);
  }

  .how-it-works .section-header p {
    color: #173765;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
  }

  .path-option-cta {
    min-height: 64px;
    padding: 10px 16px;
    gap: 10px;
    font-size: 1.08rem;
    line-height: 1;
    white-space: nowrap;
  }

  .path-option-cta .cta-glyph {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
  }

  .numbers-heading {
    align-items: center;
    text-align: center;
  }

  .numbers-heading .section-header,
  .numbers-heading .section-header-left {
    width: 100%;
    text-align: center;
  }

  .game-badge {
    margin-left: 0;
    margin-right: 0;
    align-self: center;
  }

  .numbers-table {
    display: grid;
    gap: 18px;
    margin-top: 22px;
    overflow: visible;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .table-head {
    display: none;
  }

  .table-group {
    display: grid;
    gap: 10px;
  }

  .group-title {
    display: block;
    min-height: 0;
    padding: 0;
    border-top: 0;
    color: #ffffff;
    font-size: 1.5rem;
    text-align: center;
  }

  .group-title::after {
    content: none;
  }

  .table-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    min-height: 0;
    padding: 14px 14px 14px 16px;
    border-top: 0;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--shadow-soft);
  }

  .table-row span,
  .table-row strong {
    padding: 0;
  }

  .table-row span {
    align-self: center;
    font-size: 0.95rem;
    line-height: 1.35;
  }

  .table-row strong {
    min-width: 56px;
    align-self: center;
    justify-self: end;
    padding: 10px 12px;
    border-left: 0;
    border-radius: 14px;
    background: #edf4ff;
    font-size: 1.1rem;
  }

  .simulator-section,
  .faq-section {
    padding-top: 80px;
    padding-bottom: 34px;
  }

  .section-header p,
  .hero-copy,
  .hero-note,
  .simulator-summary,
  .path-selector-header > p:last-child,
  .path-option-body p,
  .faq-item p,
  .footer-brand p,
  .footer-bottom p {
    font-size: 1rem;
  }

  .simulator-total {
    font-size: clamp(2.3rem, 13vw, 3.2rem);
  }

  .simulator-card strong {
    font-size: 2.1rem;
  }

  .path-selector-header h3,
  .path-option-title {
    font-size: clamp(1.5rem, 6vw, 2.15rem);
  }

  .footer-column h3 {
    font-size: 2rem;
  }

  .numbers-table {
    overflow-x: visible;
  }

  .table-head,
  .group-title,
  .table-row {
    min-width: 0;
  }

  .prize-polaroid {
    width: 100%;
    transform: rotate(-4deg);
  }
}