@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url("/assets/fonts/noto-sans-v42-normal-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Noto Sans";
  font-style: normal;
  font-weight: 500 900;
  font-display: swap;
  src: url("/assets/fonts/noto-sans-v42-normal-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Noto Sans";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/noto-sans-v42-italic-900-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Noto Sans";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("/assets/fonts/noto-sans-v42-italic-900-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --page-w: 430px;
  --outer-bg: #d8dde7;
  --paper: #ffffff;
  --section-soft: #f3f6fb;
  --panel: #ffffff;
  --panel-soft: #f8faff;
  --line: #dfe7f5;
  --line-soft: #edf2fa;
  --text: #07101f;
  --ink: #09152d;
  --navy: #071f66;
  --muted: #5a6478;
  --muted-soft: #78859c;
  --blue: #1455ee;
  --blue-2: #266df8;
  --blue-dark: #073cce;
  --blue-ink: #092d91;
  --btn-primary-normal: #7eac2f;
  --btn-primary-hover: #93c738;
  --btn-primary-active: #6a8f28;
  --cta-size: 22px;
  --black-btn: #020814;
  --success: #1f8b52;
  --danger: #bf2f2f;
  --radius-xl: 36px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --display-font: "Noto Sans", "Segoe UI", Arial, sans-serif;
  --body-font: "Noto Sans", "Segoe UI", Arial, sans-serif;
  --shadow-card: 0 18px 38px rgba(19, 43, 92, 0.07);
  --shadow-soft: 0 12px 32px rgba(20, 56, 135, 0.1);
  --img-hero-moped: url("/assets/media/hero-moped-main-placeholder.webp");
  --img-prize-moped: url("/assets/media/prize-moped-placeholder.webp");
  --img-prize-iphone: url("/assets/media/prize-iphone-placeholder.webp");
  --img-prize-sneakers: url("/assets/media/prize-sneakers-placeholder.webp");
  --img-winner-stadium: url("/assets/media/winner-stadium-bg-placeholder.webp");
  --img-final-stadium: url("/assets/media/final-stadium-bg-placeholder.webp");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  background: var(--outer-bg);
}

body {
  margin: 0;
  min-width: 320px;
  font-family: var(--body-font);
  color: var(--text);
  background: var(--outer-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.modal-open {
  overflow: hidden;
}

button,
input,
select {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

button:focus,
button:focus-visible {
  outline: none;
}

.page {
  width: min(100%, var(--page-w));
  margin: 0 auto;
  padding: 0;
  background: var(--paper);
  box-shadow: 0 0 0 1px rgba(116, 132, 162, 0.08);
}

.section {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  padding: 32px 24px;
}

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

.section-clean {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0) 58%),
    linear-gradient(180deg, #f8fbff 0%, var(--section-soft) 100%);
}

#screen-1 {
  min-height: 840px;
  padding: 112px 16px 0;
  background: #ffffff;
}

.hero-main::before,
.hero-main::after {
  content: none;
}

.hero-main__top {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, var(--page-w));
  min-height: 86px;
  padding: 14px 16px 12px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 1px auto;
  align-items: center;
  gap: 13px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #d7e0f1;
  backdrop-filter: blur(8px);
  z-index: 1300;
}

.hero-main__brand-left {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.hero-main__logo {
  display: inline-flex;
  align-items: center;
}

.hero-main__logo img {
  width: 175px;
  max-width: 100%;
  height: auto;
  display: block;
}

.hero-main__sponsor {
  color: #0c255e;
  font-size: 12px;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero-main__divider {
  width: 1px;
  height: 68px;
  background: #cfd8eb;
}

.hero-main__brand-right {
  display: flex;
  gap: 12px;
  align-items: center;
}

.hero-main__badge {
  width: 58px;
  height: 58px;
  border-radius: 2px;
  overflow: hidden;
  border: 0;
  background: transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.hero-main__badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.hero-main__badge--liga {
  width: 58px;
}

.hero-main__badge--fbf {
  width: 52px;
}

.hero-main__top-cta {
  display: none;
}

@media (max-width: 47.99em) {
  .hero-main .hero-main__top-cta {
    display: none !important;
  }

  .hero-main .hero-main__cta {
    display: none;
  }
}

.hero-main__title {
  margin: 30px 0 0;
  text-align: center;
  text-transform: none;
}

.hero-main__title-line {
  display: block;
  color: #08111f;
  font-family: var(--display-font);
  font-size: 60px;
  font-style: italic;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.04em;
}

.hero-main__title-line--accent {
  margin: 8px 0 10px;
  color: var(--blue);
  font-size: 118px;
  letter-spacing: -0.075em;
  text-shadow: 0 9px 24px rgba(18, 78, 230, 0.18);
}

.hero-main__title-accent {
  color: var(--blue);
}

.hero-main__subtitle {
  margin: 30px auto 0;
  max-width: 350px;
  text-align: center;
  color: #111b2e;
  font-size: 19px;
  line-height: 1.28;
  font-weight: 600;
}

.cta {
  width: 100%;
  min-height: 60px;
  border: 0;
  border-radius: 16px;
  padding: 12px 18px;
  background: var(--btn-primary-normal);
  color: #fff;
  font-family: var(--display-font);
  font-size: var(--cta-size);
  font-style: italic;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 13px 24px rgba(93, 132, 27, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.cta:hover,
.cta:focus-visible {
  background: var(--btn-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(108, 149, 36, 0.34);
}

.cta:active {
  background: var(--btn-primary-active);
  transform: translateY(1px);
  box-shadow: 0 10px 18px rgba(86, 118, 26, 0.34);
}

.hero-main__cta {
  max-width: 292px;
  min-height: 49px;
  margin: 0 auto;
  display: none;
  border-radius: 10px;
  font-size: var(--cta-size);
}

.hero-main__image {
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 0;
  z-index: 1;
  height: 450px;
  background: var(--img-hero-moped) 50% 100% / cover no-repeat;
  /*filter: drop-shadow(0 25px 22px rgba(2, 18, 50, 0.18));*/
}

.hero-main__image::before {
  content: none;
}

#screen-2 {
  min-height: 500px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-title,
.form-title {
  margin: 0;
  color: #070d19;
  font-family: var(--display-font);
  font-style: italic;
  font-size: 36px;
  line-height: 0.95;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.section-title--lined::after {
  content: "";
  display: block;
  width: 54px;
  height: 4px;
  margin-top: 12px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue) 0%, #2d71ff 100%);
}

.cards {
  margin-top: 32px;
  display: grid;
  gap: 18px;
}

.card {
  position: relative;
  border: 1px solid rgba(223, 231, 245, 0.9);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-card);
}

.card-prize {
  min-height: 198px;
  padding: 12px 188px 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(173, 191, 227, 0.86);
  background: linear-gradient(180deg, #eef3fc 0%, #e5ecf8 100%);
  box-shadow: 0 14px 30px rgba(29, 56, 112, 0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.card-prize__content {
  position: relative;
  z-index: 2;
  max-width: 172px;
}

.card-prize__line {
  display: block;
  color: #12347e;
  font-family: var(--display-font);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.card-prize__line--grand {
  max-width: 150px;
  font-size: 50px;
  line-height: 0.8;
  color: var(--blue);
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.075em;
  text-shadow: 0 9px 24px rgba(18, 78, 230, 0.18);
}

.card-prize__line--label {
  margin-top: 16px;
  font-size: 28px;
  line-height: 0.9;
  font-style: normal;
  color: #203c83;
}

.card-prize__line--combo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  line-height: 0.95;
  font-style: normal;
}

.card-prize__line--combo>span:last-child {
  font-size: 28px;
  line-height: 0.96;
}

.card-prize__qty {
  color: var(--blue);
  font-size: 72px;
  font-weight: 900;
  font-style: italic;
  line-height: 0.78;
  letter-spacing: -0.075em;
  text-shadow: 0 9px 24px rgba(18, 78, 230, 0.18);
}

.card-prize__media {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 52%;
  background-position: right top;
  background-repeat: no-repeat;
  background-size: cover;
}

.card-prize__media--moped {
  background-image: var(--img-prize-moped);
  width: 54%;
}

.card-prize__media--iphone {
  background-image: var(--img-prize-iphone);
  background-size: auto 100%;
}

.card-prize__media--sneakers {
  background-image: var(--img-prize-sneakers);
  background-size: auto 100%;
  background-position: right bottom;
}

#screen-3 {
  min-height: 500px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.cards-steps {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  gap: 20px;
}

.step-card {
  min-height: 138px;
  padding: 17px 18px 17px 70px;
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.step-card__tag {
  position: absolute;
  top: 25px;
  left: 19px;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 0;
  background: #1455ee;
  color: #fff;
  font-family: var(--display-font);
  font-style: italic;
  font-weight: 900;
  font-size: 30px;
  line-height: 0.8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 13px rgba(20, 85, 238, 0.28);
}

.step-card__icon {
  width: 114px;
  height: 114px;
  border-radius: 50%;
  border: 1px solid #eef2fa;
  background-color: #f5f8fd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 66px 66px;
}

.step-card__icon--phone {
  background-image: url("/assets/media/registrate_icon.svg");
}

.step-card__icon--trophy {
  background-image: url("/assets/media/elige_icon.svg");
}

.step-card__icon--gift {
  background-image: url("/assets/media/gana_icon.svg");
}

.step-card__content strong {
  display: block;
  color: #08111f;
  font-family: var(--display-font);
  font-size: 25px;
  line-height: 0.98;
  text-transform: uppercase;
  font-style: italic;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.step-card__content p {
  margin: 0;
  color: #4e596e;
  font-size: 18px;
  line-height: 1.43;
  font-weight: 500;
}

#winner-screen {
  min-height: 500px;
  padding-top: 40px;
  padding-bottom: 40px;
  background: linear-gradient(180deg, #f9fbff 0%, #eef3fb 100%);
}

#winner-screen::before,
#winner-screen::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

#winner-screen::before {
  left: 0;
  right: 0;
  top: 50px;
  height: 450px;
  background:
    linear-gradient(180deg, rgba(249, 251, 255, 0.92) 0%, rgba(249, 251, 255, 0.34) 34%, rgba(249, 251, 255, 0) 58%),
    var(--img-winner-stadium) 64% 16% / cover no-repeat;
  opacity: 1;
}

#winner-screen::after {
  left: 0;
  right: 0;
  top: 50px;
  height: 520px;
  background:
    linear-gradient(90deg, rgba(249, 251, 255, 0.98) 0%, rgba(249, 251, 255, 0.9) 19%, rgba(249, 251, 255, 0.38) 48%, rgba(249, 251, 255, 0) 72%),
    linear-gradient(180deg, rgba(249, 251, 255, 0) 67%, rgba(249, 251, 255, 0.75) 88%, #eef3fb 100%);
  opacity: 1;
}

.winner-section h2 {
  max-width: 386px;
  margin: 0;
  color: #07101f;
  font-family: var(--display-font);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(44px, 12.2vw, 56px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.038em;
}

.winner-section h2 span {
  display: block;
}

.winner-section h2 em {
  color: var(--blue);
  font-style: inherit;
}

.muted {
  margin: 26px 0 0;
  max-width: 330px;
  color: #101929;
  font-size: 19px;
  line-height: 1.38;
  font-weight: 500;
}

.winner-panel {
  position: relative;
  z-index: 1205;
  margin-top: 50px;
  border: 1px solid rgba(220, 228, 244, 0.96);
  border-radius: 31px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 249, 254, 0.98) 100%);
  padding: 32px 25px 25px;
  box-shadow: 0 20px 48px rgba(20, 46, 96, 0.12);
}

.winner-panel.has-open-dropdown {
  z-index: 1315;
}

.winner-panel__title {
  margin: 0 0 24px;
  text-align: center;
  color: #102b85;
  font-size: 25px;
  line-height: 1.05;
  font-weight: 900;
}

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

.team-pill {
  border: 0;
  border-radius: 17px;
  background: transparent;
  min-height: 111px;
  padding: 0;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 12px;
  cursor: pointer;
  color: #0b276e;
  transition: transform 0.14s ease, filter 0.14s ease;
}

.team-pill::before {
  content: "";
  width: 94px;
  height: 72px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 20px rgba(18, 45, 97, 0.07);
  grid-area: 1 / 1;
}

.team-pill:hover,
.team-pill:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.team-pill:focus-visible::before,
.team-pill.is-active::before {
  box-shadow: 0 0 0 3px rgba(20, 85, 238, 0.22), 0 10px 20px rgba(18, 45, 97, 0.09);
}

.team-pill__flag {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  line-height: 1;
  grid-area: 1 / 1;
  align-self: center;
  justify-self: center;
  overflow: hidden;
}

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

.team-pill__label {
  color: #10276b;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 600;
}

.team-combo {
  position: relative;
  margin-top: 28px;
}

.team-combo.is-open {
  z-index: 1400;
}

.winner-panel__search {
  min-height: 70px;
  border: 0;
  border-radius: 17px;
  padding: 0 18px 0 21px;
  background: #fff;
  display: grid;
  grid-template-columns: 33px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 22px rgba(19, 43, 92, 0.06);
}

.winner-panel__search input {
  border: 0;
  background: transparent;
  min-height: 54px;
  width: 100%;
  padding: 4px 0;
  font-size: 21px;
  color: #10276b;
  font-weight: 500;
}

.winner-panel__search input:focus {
  outline: none;
}

.winner-panel__search input::placeholder {
  color: #192d62;
  opacity: 0.88;
}

.winner-panel__search-icon,
.winner-panel__search-chevron {
  color: #082169;
  font-size: 35px;
  line-height: 1;
}

.winner-panel__search-chevron {
  justify-self: end;
  font-size: 31px;
}

.winner-panel__list {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 1410;
  border: 1px solid #d6e0f2;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(19, 38, 84, 0.16);
}

.team-combo.is-open .winner-panel__list {
  display: block;
}

.winner-panel__list select {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.winner-panel__options {
  max-height: min(52vh, 320px);
  overflow-y: auto;
  padding: 6px;
}

.winner-panel__option {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 9px 10px;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  text-align: left;
  color: #1d2e5f;
  background: transparent;
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
}

.winner-panel__option:hover,
.winner-panel__option:focus-visible,
.winner-panel__option.is-selected {
  outline: none;
  background: #edf3ff;
}

.winner-panel__option[aria-selected="true"] {
  color: #123187;
}

.winner-panel__option-flag {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #20336f;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.winner-panel__option-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.winner-panel__option-empty {
  margin: 0;
  padding: 12px 14px;
  color: #4f618b;
  font-size: 15px;
  line-height: 1.3;
}

.winner-panel__hint {
  max-width: 300px;
  margin: 22px auto 22px;
  text-align: center;
  color: #13296d;
  font-size: 20px;
  line-height: 1.45;
  font-weight: 600;
}

.winner-selection-box {
  border: 0;
  border-radius: 20px;
  background: #fff;
  padding: 14px;
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  box-shadow: 0 12px 24px rgba(19, 43, 92, 0.07);
}

.winner-selection-box__flag {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  overflow: hidden;
}

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

.winner-selection-box__main {
  min-width: 0;
}

.winner-selection-box__meta {
  display: block;
  font-size: 15px;
  line-height: 1.15;
  color: #25386c;
}

#winnerTeamPreview {
  width: 100%;
  border: 0;
  min-height: auto;
  padding: 0;
  background: transparent;
  font-size: clamp(18px, 4.9vw, 22px);
  font-family: var(--body-font);
  font-style: normal;
  font-weight: 900;
  color: #101f4f;
  line-height: 1.08;
}

#winnerTeamPreview:focus {
  outline: none;
}

#winnerTeamPreview::placeholder {
  color: #0d1f5d;
  opacity: 1;
}

.winner-selection-box__change {
  border: 0;
  background: transparent;
  color: #1e5cf0;
  font-size: clamp(13px, 3.8vw, 16px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
  cursor: pointer;
}

.winner-selection-box__change:focus-visible {
  outline: none;
  border-radius: 8px;
}

.cta-outline {
  margin-top: 18px;
  min-height: 55px;
  border-radius: 9px;
  font-size: var(--cta-size);
  background: var(--btn-primary-normal);
  box-shadow: 0 13px 24px rgba(93, 132, 27, 0.3);
}

.cta-outline:hover,
.cta-outline:focus-visible {
  background: var(--btn-primary-hover);
  box-shadow: 0 16px 28px rgba(108, 149, 36, 0.34);
}

.cta-outline.is-confirmed {
  background: var(--btn-primary-normal);
  box-shadow: 0 13px 24px rgba(93, 132, 27, 0.3);
}

.message {
  margin: 10px 0 0;
  min-height: 20px;
  font-size: 15px;
  line-height: 1.35;
}

.message.error {
  color: var(--danger);
}

.message.success {
  color: var(--success);
}

#register-screen {
  min-height: 500px;
  padding-top: 40px;
  padding-bottom: 40px;
  scroll-margin-top: 68px;
}

form {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

label {
  display: grid;
  gap: 7px;
  color: #2f426b;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select {
  width: 100%;
  min-height: 60px;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 14px 26px;
  font-size: 23px;
  line-height: 1.1;
  color: #1a2e59;
  background: #fff;
}

input:focus,
select:focus {
  outline: 3px solid rgba(20, 85, 238, 0.18);
  outline-offset: 2px;
  border-color: #b6c8f2;
}

label.has-error {
  color: #a12a2a;
}

label.has-error input,
label.has-error select {
  border-color: #d25252;
  background: #fff7f7;
}

label.has-error input:focus,
label.has-error select:focus {
  outline: 3px solid rgba(210, 82, 82, 0.2);
  border-color: #d25252;
}

input::placeholder {
  color: #6d7890;
  opacity: 0.92;
}

.phone-field {
  border: 1px solid var(--line);
  border-radius: 17px;
  min-height: 60px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  background: #fff;
  overflow: hidden;
}

.phone-field:focus-within {
  outline: 3px solid rgba(20, 85, 238, 0.18);
  outline-offset: 2px;
  border-color: #b6c8f2;
}

.phone-field.has-error {
  border-color: #d25252;
  background: #fff7f7;
}

.phone-field.has-error:focus-within {
  outline: 3px solid rgba(210, 82, 82, 0.2);
  border-color: #d25252;
}

.phone-field__prefix {
  min-height: 60px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  color: #07152e;
  font-weight: 900;
  font-size: 21px;
  white-space: nowrap;
}

.phone-field input {
  border: 0;
  border-radius: 0;
  min-height: 60px;
  padding-left: 7px;
}

.phone-field input:focus {
  outline: none;
}

.check {
  position: relative;
  display: block;
  min-height: 24px;
  padding-left: 30px;
  color: #293755;
  font-size: 14px;
  line-height: 1.4;
  text-transform: none;
}

.check input {
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  min-height: auto;
  margin: 0;
  padding: 0;
  border-radius: 4px;
  accent-color: #123aa2;
}

.check.has-error {
  color: #a12a2a;
}

.check.has-error .check-label,
.check.has-error span {
  color: #a12a2a;
}

.check.has-error input {
  outline: 2px solid rgba(210, 82, 82, 0.3);
  outline-offset: 1px;
}

.check-label,
.check span,
.check a {
  display: inline;
}

.check-label {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
  text-transform: none;
}

.check-optional {
  margin-top: 2px;
}

.legal-link {
  color: #2360f3;
  text-decoration: none;
  text-underline-offset: 2px;
  font-weight: 600;
}

.legal-link:hover,
.legal-link:focus-visible {
  text-decoration: underline;
}

.legal-link-inline {
  font-size: 14px;
  line-height: 1.4;
  text-transform: none;
}

.field-error-text {
  margin: 7px 0 0;
  color: #b52f2f;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 600;
  text-transform: none;
}

.check .field-error-text {
  margin-top: 8px;
  display: block;
}

.cta-dark {
  margin-top: 10px;
  min-height: 70px;
  border-radius: 14px;
  background: var(--btn-primary-normal);
  font-size: var(--cta-size);
  box-shadow: 0 13px 24px rgba(93, 132, 27, 0.3);
}

.cta-dark::after {
  content: "→";
  margin-left: 28px;
  color: #ffffff;
  font-family: var(--body-font);
  font-style: normal;
  font-size: 34px;
  line-height: 0;
  vertical-align: -2px;
}

.form-notice {
  min-height: 60px;
  margin-top: 0;
  border: 1px solid #e4eaf7;
  border-radius: 20px;
  padding: 16px 18px 16px 72px;
  background: #fff;
  color: #07101f;
  font-family: var(--body-font);
  font-style: normal;
  font-size: clamp(14px, 3.8vw, 16px);
  line-height: 1.15;
  font-weight: 700;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: 0 11px 24px rgba(19, 43, 92, 0.05);
}

.form-notice::before {
  content: "✓";
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 3px solid #0e358d;
  border-radius: 25px;
  color: #0e358d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body-font);
  font-style: normal;
  font-size: 20px;
  font-weight: 800;
}

.form-notice strong {
  display: block;
  white-space: nowrap;
}

.form-meta-note {
  margin: -6px 0 0;
  color: #4b5b78;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 500;
  font-style: italic;
}

#screen-6 {
  min-height: 500px;
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 40px;
  border-radius: 31px 31px 0 0;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
}

.section-final::before,
.section-final::after {
  content: none;
}

.section-final__top {
  padding: 0 14px 0;
}

.logo {
  margin: 0;
  width: 232px;
  max-width: 100%;
}

.logo img {
  width: 100%;
  height: auto;
  display: block;
}

.section-final__sponsor {
  margin: 31px 0 30px;
  color: #10265c;
  font-size: 20px;
  line-height: 1.35;
  width: min(100%, 232px);
  max-width: none;
  font-weight: 800;
}

.section-final__partners {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 200px;
  padding-top: 28px;
  border-top: 1px solid #d6dfef;
}

.section-final__partner {
  min-height: 0;
  min-width: 0;
  border: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0;
}

.section-final__partner--fbf {
  width: 74px;
  height: 88px;
}

.section-final__partner--liga {
  width: 88px;
  height: 88px;
}

.section-final__partner img {
  width: 100%;
  height: auto;
  display: block;
}

.section-final__hero {
  position: relative;
  z-index: 1;
  margin: -200px -30px 0;
  height: 450px;
  background: var(--img-final-stadium) 70% 50% / cover no-repeat;
  /*clip-path: polygon(0 0, 100% 0, 100% 100%, 0 92%);*/
  /*filter: drop-shadow(0 20px 22px rgba(4, 18, 42, 0.1));*/
}

.section-final__hero::before {
  content: none;
}

/*.section-final__hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 86px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(247, 249, 253, 0) 0%, rgba(247, 249, 253, 0.85) 72%, #f7f9fd 100%);
}*/

.section-final__follow {
  margin: 28px 0 24px;
  text-align: center;
  color: #2e64f7;
  font-size: 22px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
}

.socials {
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

.socials-round a {
  width: 64px;
  height: 64px;
  border: 1px solid #e2e8f5;
  border-radius: 50%;
  background: #fff;
  text-decoration: none;
  color: #153a9e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 20px rgba(18, 45, 97, 0.06);
}

.socials-round a:focus-visible {
  outline: 3px solid rgba(20, 85, 238, 0.22);
  outline-offset: 3px;
}

.socials-round a svg {
  width: 32px;
  height: 32px;
  display: block;
}

.section-final__period {
  margin: 46px 0 0;
  text-align: center;
  color: #6f7d99;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 500;
}

.section-final__links {
  margin-top: 16px;
  padding-top: 28px;
  border-top: 1px solid #e1e7f2;
}

.section-final__links p {
  margin: 18px 0;
  text-align: center;
}

.section-final__links .legal-link {
  color: #2d68f7;
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
}

.section-final__disclaimer {
  margin: 24px 0 0;
  text-align: center;
  color: #626f89;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.section-final__legal {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  text-align: center;
  margin: 24px 0 0 0;
}

.section-final__legal p:first-child {
  margin: 0 0 10px 0;
  /* max-width: 320px; */
  color: #626f89;
}

.section-final__legal p:last-child {
  color: #626f89;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 500;
}

.section-final__legal img {
  max-width: 100%;
  height: auto;
  max-width: 220px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1305;
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(216, 221, 231, 0) 0%, rgba(216, 221, 231, 0.88) 34%, rgba(216, 221, 231, 1) 100%);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.sticky-cta.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
}

.sticky-cta__inner {
  width: min(100%, var(--page-w));
  margin: 0 auto;
  padding: 0 16px;
}

.sticky-cta__button {
  min-height: 50px;
  border-radius: 9px;
  font-size: var(--cta-size);
  box-shadow: 0 10px 20px rgba(26, 80, 214, 0.28);
}

.hp {
  position: absolute;
  width: 1px;
  height: 1px;
  left: -9999px;
  opacity: 0;
}

.legal-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 12px;
  background: rgba(8, 19, 45, 0.62);
  z-index: 2000;
}

.legal-modal.is-open {
  display: flex;
}

.legal-modal__panel {
  width: min(100%, var(--page-w));
  height: min(88vh, 760px);
  border: 1px solid #c9d4e8;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 24px 56px rgba(10, 22, 51, 0.34);
  display: grid;
  grid-template-rows: auto 1fr;
}

.legal-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #f7faff 0%, #edf3ff 100%);
  border-bottom: 1px solid #d7e2f6;
}

.legal-modal__title {
  margin: 0;
  color: #0d285f;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 800;
}

.legal-modal__close {
  width: 34px;
  height: 34px;
  border: 1px solid #c7d5f0;
  border-radius: 50%;
  background: #fff;
  color: #10285e;
  padding: 0;
  text-align: center;
  font-size: 25px;
  line-height: 1;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.legal-modal__close:hover,
.legal-modal__close:focus-visible {
  outline: none;
}

.legal-modal__iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
}

.status-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(8, 19, 45, 0.62);
  z-index: 2100;
}

.status-modal.is-open {
  display: flex;
}

.status-modal__panel {
  width: min(100%, 390px);
  border: 1px solid #d2def2;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fd 100%);
  box-shadow: 0 24px 56px rgba(10, 22, 51, 0.3);
  padding: 22px 18px 18px;
}

.status-modal__title {
  margin: 0;
  color: #0a2460;
  font-size: 26px;
  line-height: 1.06;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.status-modal__text {
  margin: 12px 0 0;
  color: #1a2e59;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 600;
}

.status-modal__button {
  margin-top: 16px;
  min-height: 50px;
  width: 100%;
  font-size: var(--cta-size);
}

/* Responsive reconstruction layer: mobile reference first, then tablet/desktop composition. */
:root {
  --page-w: 100%;
  --container: 72rem;
  --container-wide: 80rem;
  --container-pad: clamp(0.75rem, 4vw, 2.5rem);
  --section-inline: max(var(--container-pad), calc((100% - var(--container)) / 2));
  --space-xs: clamp(0.5rem, 1.4vw, 0.75rem);
  --space-sm: clamp(0.75rem, 2vw, 1.125rem);
  --space-md: clamp(1rem, 3vw, 1.75rem);
  --space-lg: clamp(2rem, 6vw, 4.75rem);
  --space-xl: clamp(3rem, 8vw, 7rem);
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --h1-line: clamp(2.1rem, 10.8vw, 3.2rem);
  --h1-accent: clamp(3.8rem, 19vw, 5.75rem);
  --h2: 2.05rem;
  --h2-large: 2.55rem;
  --button-text: 1.1rem;
  --tap-size: 2.75rem;
  --header-h: clamp(4.875rem, 18vw, 5.375rem);
  --modal-w: 43rem;
  --radius-xl: 2rem;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
}

html,
body {
  overflow-x: hidden;
}

img,
picture {
  max-width: 100%;
}

picture {
  display: block;
}

img {
  height: auto;
}

.page {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  overflow: hidden;
  box-shadow: none;
}

.section {
  padding: var(--space-lg) var(--section-inline);
  overflow: hidden;
}

.hero-main__title-line,
.section-title,
.form-title,
.card-prize__line,
.card-prize__qty,
.step-card__content strong,
.winner-section h2,
.cta,
.status-modal__title {
  letter-spacing: 0;
}

#screen-1 {
  min-height: 50rem;
  padding: calc(var(--header-h) + var(--space-md)) var(--section-inline) 0;
}

.hero-main__top {
  width: 100%;
  min-height: var(--header-h);
  padding: 0.75rem var(--section-inline);
  grid-template-columns: minmax(0, 1fr) 1px auto;
  gap: var(--space-xs);
}

.hero-main__brand-left {
  min-width: 0;
  grid-template-columns: auto minmax(3.25rem, 1fr);
  gap: var(--space-xs);
}

.hero-main__logo {
  min-width: 0;
}

.hero-main__logo img {
  width: clamp(6.4rem, 32vw, 10.9375rem);
}

.hero-main__sponsor {
  min-width: 0;
  font-size: clamp(0.66rem, 2.5vw, 0.72rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-main__divider {
  height: clamp(3rem, 15vw, 4.25rem);
}

.hero-main__brand-right {
  gap: clamp(0.35rem, 1.6vw, 0.75rem);
}

.hero-main__badge {
  width: clamp(2.2rem, 10.5vw, 3.625rem);
  height: clamp(2.2rem, 10.5vw, 3.625rem);
}

.hero-main__badge--fbf {
  width: clamp(2rem, 9.5vw, 3.25rem);
}

.hero-main__title {
  margin-top: var(--space-md);
}

.hero-main__title-line {
  font-size: var(--h1-line);
  line-height: 0.86;
}

.hero-main__title-line--accent {
  margin: 0.45rem 0 0.55rem;
  font-size: var(--h1-accent);
  line-height: 0.82;
}

.hero-main__subtitle {
  max-width: 22rem;
  margin-top: var(--space-md);
  font-size: var(--text-lg);
  line-height: 1.3;
}

.hero-main__image {
  inset-inline: 0;
  height: 34rem;
  background: var(--img-hero-moped) 92% 72% / cover no-repeat;
  overflow: hidden;
}

.hero-main__image::after {
  height: 3.75rem;
}

#screen-2,
#screen-3,
#winner-screen,
#register-screen,
#screen-6 {
  min-height: 0;
}

.section-title,
.form-title {
  max-width: 24rem;
  font-size: var(--h2);
  line-height: 0.98;
}

.cards,
.cards-steps {
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.card-prize {
  min-height: 11.25rem;
  padding: 0.75rem clamp(8.15rem, 41vw, 11.5rem) 0.75rem 0.75rem;
  border-radius: var(--radius-md);
}

.card-prize__content {
  max-width: 10.5rem;
}

.card-prize__line--grand {
  max-width: 8rem;
  font-size: 2.45rem;
}

.card-prize__line--label,
.card-prize__line--combo>span:last-child {
  font-size: 1.375rem;
}

.card-prize__qty {
  font-size: 3.65rem;
}

.card-prize__media {
  width: 52%;
  background-image: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.card-prize__media--moped {
  width: 54%;
}

.card-prize__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

.card-prize__media--moped img {
  object-fit: cover;
  object-position: right center;
}

.step-card {
  min-height: 8.75rem;
  padding: 1rem 1rem 1rem 3.85rem;
  grid-template-columns: minmax(5.75rem, 7rem) minmax(0, 1fr);
  gap: var(--space-sm);
}

.step-card__tag {
  top: 1.3rem;
  left: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  font-size: 1.625rem;
}

.step-card__icon {
  width: clamp(5.5rem, 27vw, 7.125rem);
  height: clamp(5.5rem, 27vw, 7.125rem);
  background-size: 58%;
}

.step-card__content p {
  font-size: var(--text-base);
}

#winner-screen {
  padding-top: var(--space-lg);
  padding-bottom: var(--space-lg);
}

#winner-screen::before {
  content: none;
}

.section>.winner-section__bg {
  position: absolute;
  z-index: 0;
}

.winner-section__bg {
  inset: -15rem 0 auto;
  height: 45rem;
  pointer-events: none;
  overflow: hidden;
}

.winner-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% 30%;
  display: block;
}

#winner-screen::after {
  top: 3rem;
  height: 34rem;
}

.winner-section h2 {
  max-width: 23rem;
  font-size: var(--h2-large);
}

.muted {
  max-width: 22rem;
  margin-top: var(--space-sm);
  font-size: var(--text-lg);
}

.winner-panel {
  max-width: 34rem;
  margin-top: var(--space-lg);
  padding: var(--space-md);
  border-radius: var(--radius-xl);
}

.team-grid {
  gap: var(--space-md) var(--space-xs);
}

.team-pill {
  min-height: 6.6rem;
  gap: 0.6rem;
}

.team-pill::before {
  width: clamp(4.75rem, 24vw, 5.875rem);
  height: 4.35rem;
}

.team-pill__flag {
  width: 3.25rem;
  height: 3.25rem;
  font-size: 2rem;
}

.team-pill__label {
  font-size: var(--text-sm);
}

.winner-panel__search {
  min-height: 3.75rem;
  padding-inline: var(--space-sm);
  grid-template-columns: 1.6rem minmax(0, 1fr) 1.4rem;
}

.winner-panel__search input {
  min-height: 3.25rem;
  font-size: var(--text-lg);
}

.winner-panel__search-icon,
.winner-panel__search-chevron {
  font-size: 1.75rem;
}

.winner-selection-box {
  grid-template-columns: 3.1rem minmax(0, 1fr) auto;
  gap: var(--space-xs);
  padding: 0.75rem;
}

.winner-selection-box__flag {
  width: 2.85rem;
  height: 2.85rem;
  font-size: 1.75rem;
}

#winnerTeamPreview {
  font-size: var(--text-lg);
}

.winner-selection-box__change {
  min-width: var(--tap-size);
  font-size: var(--text-sm);
}

.cta {
  min-height: 3.5rem;
  padding: 0.75rem 1rem;
  font-size: var(--cta-size);
  line-height: 1.05;
}

.cta-outline {
  max-width: 34rem;
}

form {
  max-width: 42rem;
}

label {
  font-size: var(--text-xs);
}

input,
select {
  min-height: 3.5rem;
  padding: 0.75rem 1rem;
  font-size: var(--text-base);
}

.phone-field,
.phone-field__prefix,
.phone-field input {
  min-height: 3.5rem;
}

.phone-field__prefix {
  padding-inline: 0.9rem;
  font-size: var(--text-base);
}

.check,
.check-label,
.legal-link-inline {
  font-size: var(--text-sm);
}

.form-notice {
  min-height: 3.75rem;
  padding: 0.9rem 1rem 0.9rem 4rem;
  font-size: var(--text-sm);
}

.form-notice strong {
  white-space: normal;
}

.cta-dark {
  min-height: 4rem;
  font-size: var(--cta-size);
}

#screen-6 {
  padding-bottom: calc(var(--space-lg) + 4rem);
}

.section-final__top {
  padding: 0;
}

.section-final__hero {
  margin: -15rem calc(var(--container-pad) * -1) 0;
  height: 30rem;
  background: none;
  overflow: hidden;
}

.section-final__hero picture,
.section-final__hero img {
  width: 100%;
  height: 100%;
}

.section-final__hero img {
  display: block;
  object-fit: cover;
  object-position: 70% 50%;
}

.socials-round a {
  width: 3.5rem;
  height: 3.5rem;
  min-width: var(--tap-size);
  min-height: var(--tap-size);
}

.sticky-cta__inner {
  width: min(100%, var(--container));
  padding-inline: var(--container-pad);
}

.sticky-cta__button {
  max-width: 28rem;
  margin-inline: auto;
  display: block;
}

.legal-modal__panel {
  width: min(100%, var(--modal-w));
}

@supports (overflow: clip) {

  html,
  body,
  .page,
  .section {
    overflow-x: clip;
  }
}

@media (min-width: 30em) {
  :root {
    --h1-line: clamp(3.2rem, 12vw, 3.75rem);
    --h1-accent: clamp(6rem, 22vw, 7rem);
    --h2: 2.35rem;
    --h2-large: 3rem;
    --button-text: 1.25rem;
  }

  #screen-1 {
    min-height: 55rem;
  }

  .hero-main__image {
    height: 39rem;
    background: var(--img-hero-moped) 92% 36% / cover no-repeat;
  }

  .section-final__hero img {
    object-position: 70% 30%;
  }

  .winner-section__bg {
    height: 48rem;
  }

  .card-prize {
    min-height: 12.375rem;
  }

  .card-prize__line--grand {
    font-size: 3rem;
  }

  .card-prize__qty {
    font-size: 4.35rem;
  }

  .card-prize__line--label,
  .card-prize__line--combo>span:last-child {
    font-size: 1.65rem;
  }
}

@media (min-width: 48em) {
  .winner-section__bg {
    height: 53rem;
  }

  .winner-section__bg img {
    object-position: 92% 30%;
  }

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

@media (min-width: 30em) and (max-width: 63.99em) {
  .winner-section h2 {
    max-width: none;
    font-size: clamp(3rem, 8.1vw, 3.6rem);
    line-height: 0.92;
  }

  .winner-section h2 span {
    white-space: nowrap;
  }

  .winner-panel,
  .winner-section .cta-outline,
  .winner-section .message {
    max-width: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  #register-screen form,
  #register-screen .form-title {
    max-width: none;
    width: 100%;
  }
}

@media (min-width: 64em) {
  :root {
    --container: 68rem;
    --header-h: 5.25rem;
    --h1-line: 4rem;
    --h1-accent: 7.6rem;
    --h2: 2.7rem;
    --h2-large: 3.35rem;
    --text-base: 1.0625rem;
    --text-lg: 1.2rem;
  }

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

  .hero-main__top {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-xs);
  }

  .hero-main__logo img {
    width: 10.9375rem;
  }

  .hero-main__brand-left,
  .hero-main__brand-right {
    flex: 0 0 auto;
  }

  .hero-main .hero-main__top-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    margin: 0 0 0 auto;
    padding: 0.7rem 1.1rem;
    font-size: clamp(0.85rem, 1.7vw, 1.125rem);
    line-height: 1;
    border-radius: 0.75rem;
    white-space: nowrap;
    width: auto;
    flex: 0 0 auto;
  }

  #screen-1 {
    min-height: 42rem;
    padding-bottom: var(--space-lg);
    display: grid;
    grid-template-columns: minmax(18rem, 0.9fr) minmax(20rem, 1.1fr);
    grid-template-rows: auto auto;
    align-content: center;
    align-items: center;
    gap: var(--space-md) var(--space-lg);
  }

  .hero-main__title {
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    margin: 0;
    text-align: left;
  }

  .hero-main__title-line:last-child {
    white-space: nowrap;
    font-size: clamp(3rem, 4.4vw, 3.9rem);
    line-height: 0.9;
  }

  .hero-main__subtitle {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    text-align: left;
  }

  .hero-main .hero-main__cta {
    grid-column: 1;
    grid-row: 3;
    display: inline-flex;
    width: min(100%, 22rem);
    margin: 0;
    align-items: center;
    justify-content: center;
  }

  .hero-main__image {
    position: relative;
    grid-column: 2;
    grid-row: 1 / 4;
    inset: auto;
    width: calc(100% + clamp(4.5rem, 7vw, 8rem));
    margin-left: clamp(-4.5rem, -7vw, -8rem);
    height: 31rem;
    align-self: end;
    border-radius: 0;
    background-position: 60% 50%;
  }

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

  .card-prize {
    min-height: 20rem;
    padding: 1.25rem;
    align-items: flex-start;
  }

  .card-prize--moped {
    grid-column: 1 / -1;
  }

  .card-prize__content {
    max-width: 17rem;
  }

  .card-prize__line--grand {
    max-width: 12rem;
    font-size: 3.35rem;
  }

  .card-prize__media,
  .card-prize__media--moped {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 74%;
    align-items: flex-end;
    justify-content: center;
  }

  .card-prize__media img,
  .card-prize__media--moped img {
    object-position: center bottom;
  }

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

  .step-card {
    min-height: 16rem;
    padding: 1.25rem;
    grid-template-columns: 1fr;
    align-content: start;
    justify-items: start;
  }

  .step-card__tag {
    position: static;
  }

  .step-card__icon {
    width: 6.75rem;
    height: 6.75rem;
  }

  .winner-section {
    display: grid;
    grid-template-columns: minmax(18rem, 0.9fr) minmax(21rem, 1.1fr);
    gap: var(--space-md) var(--space-lg);
    align-items: start;
  }

  .winner-section__bg {
    inset: 0 0 0 -34%;
    height: auto;
  }

  .winner-section__bg img {
    object-fit: contain;
    object-position: 58% 50%;
  }

  #winner-screen::after {
    content: none;
  }

  .winner-section h2,
  .winner-section__subtitle {
    grid-column: 1;
  }

  .winner-panel {
    grid-column: 2;
    grid-row: 1 / span 3;
    width: 100%;
    max-width: none;
    margin-top: 0;
  }

  .winner-section .cta-outline,
  .winner-section .message {
    grid-column: 2;
    width: 100%;
    max-width: none;
    margin-top: 0;
  }

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

  #register-screen {
    display: grid;
    grid-template-columns: minmax(16rem, 0.85fr) minmax(24rem, 1.15fr);
    gap: var(--space-lg);
    align-items: start;
  }

  .form-title {
    max-width: 23rem;
  }

  #register-screen form {
    margin-top: 0;
  }

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

  form>label:nth-of-type(3),
  .check,
  .form-notice,
  .form-meta-note,
  form>.cta,
  form>.message {
    grid-column: 1 / -1;
  }

  .section-final {
    display: grid;
    grid-template-columns: minmax(18rem, 0.8fr) minmax(24rem, 1.2fr);
    gap: var(--space-md) var(--space-lg);
    align-items: center;
  }

  .section-final__top {
    grid-column: 1;
    grid-row: 1;
  }

  .section-final__hero {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    height: 30rem;
    border-radius: var(--radius-xl);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 94%);
  }

  .section-final__follow,
  .socials,
  .section-final__period,
  .section-final__links,
  .section-final__disclaimer {
    grid-column: 1 / -1;
  }

  .section-final__links {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
  }

  .section-final__links p {
    margin-block: 0;
  }

  .sticky-cta {
    display: none;
  }
}

@media (min-width: 64em) {
  :root {
    --container: 72rem;
    --h1-line: 4.25rem;
    --h1-accent: 8.6rem;
    --h2: 3.1rem;
    --h2-large: 3.65rem;
    --button-text: 1.35rem;
  }

  #screen-1 {
    min-height: 46rem;
    grid-template-columns: minmax(22rem, 0.88fr) minmax(28rem, 1.12fr);
  }

  .hero-main__image {
    height: 36rem;
  }

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

  .card-prize--moped {
    grid-column: auto;
  }

  .card-prize {
    min-height: 22rem;
  }

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

  .step-card {
    min-height: 17rem;
  }

  .winner-section {
    grid-template-columns: minmax(22rem, 0.85fr) minmax(28rem, 1.15fr);
  }

  .winner-section h2 {
    max-width: 34rem;
    font-size: clamp(2.95rem, 4.2vw, 3.35rem);
    line-height: 0.9;
  }

  .winner-section h2 span {
    white-space: nowrap;
  }

  .winner-panel {
    padding: 2rem;
  }

  .team-pill::before {
    width: 5.875rem;
  }

  #register-screen {
    grid-template-columns: minmax(20rem, 0.8fr) minmax(30rem, 1.2fr);
  }

  .section-final__hero {
    height: 34rem;
  }

  .sticky-cta {
    padding-top: 0.75rem;
  }
}

@media (min-width: 80em) {
  :root {
    --container: var(--container-wide);
    --h1-line: 4.6rem;
    --h1-accent: 9.2rem;
    --h2: 3.4rem;
    --h2-large: 4rem;
  }

  #screen-1 {
    min-height: 49rem;
  }

  .hero-main__image {
    height: 39rem;
  }

  .section-title,
  .form-title {
    max-width: 30rem;
  }

  .card-prize {
    min-height: 24rem;
  }

  .card-prize__media,
  .card-prize__media--moped {
    height: 74%;
  }
}

@media (min-width: 125em) {
  .winner-section__bg {
    inset: 0 0 0 -23%;
  }
}