
.hero {
  position: relative;
  height: 800px;
  overflow: hidden;
  background: var(--color-dark);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__phone {
  position: absolute;
  left: calc(50% + 146.83px);
  top: 122px;
}

.hero__phone.parallax {
  transform: translate3d(0, var(--shift, 0px), 0);
}

.hero__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 154px;
  background: linear-gradient(to top, var(--color-dark) 0%, rgba(2, 3, 7, 0) 100%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  padding-top: 124px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  width: 687px;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.hero__title {
  font: var(--fw-semibold) 80px/80px var(--font-sans);
  letter-spacing: -5.3px;
  color: var(--color-white);
  text-wrap: balance;
}
.hero__title-accent { color: var(--color-yellow); }

.hero__lead { color: var(--color-grey); }

.hero__badge {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  /* Widened from 441px so 16px badge text fits one line at the longest
     translation (EN/FR need ~296px, only ~280px was available at 441px). */
  width: 460px;
  padding: 12px 20px 20px;

  transform: scale(var(--hover-scale, 1));
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hero__badge.reveal {
  transform: scale(var(--hover-scale, 1));
}

.hero__badge:hover {
  background-color: rgba(240, 240, 240, 0.02);
  box-shadow: inset 0 0 20px 0 rgba(240, 240, 240, 0.05);
  --ring-paint: linear-gradient(180deg, rgba(240, 240, 240, 0.16) 0%, rgba(240, 240, 240, 0) 66.327%);
}
@media (prefers-reduced-motion: reduce) {
  .hero__badge:hover { transform: none; }
}

.hero__badge-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  /* Laurels sit ~7px + 48.66px wide from each edge of .hero__badge — reserve
     that much on both sides so longer translations wrap inside the pill
     instead of running text under the laurel graphics. */
  padding-inline: 58px;
  max-width: 100%;
  box-sizing: border-box;
}

/* -2px from the t-body-lg base (18px/28px); badge widened above to fit this
   size on one line across languages instead of wrapping. */
.hero__badge-title { font-size: 16px; line-height: 24px; text-align: center; }
.hero__badge-title strong {
  font: var(--fw-semibold) 16px/24px var(--font-sans);
  letter-spacing: -0.01em;
  font-feature-settings: 'dlig' 1, 'lnum' 1, 'pnum' 1;
}

.hero__stars {
  display: flex;
  align-items: center;
  gap: 6.5px;
  color: var(--color-yellow);
}
.hero__star {
  width: 24px;
  height: 24px;
}

.hero__laurel {
  position: absolute;
  top: -12.99px;
  width: 48.66px;
  height: 90.68px;
}
.hero__laurel--left { left: 7px; }
.hero__laurel--right {
  right: 7px;
  transform: scaleX(-1);
}

.hero__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 441px;
  margin-top: 40px;
}

.hero__stores {
  display: flex;
  gap: 12px;
}

.hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 7px 11px;
  color: var(--color-grey);
}
.hero__meta-dot {
  flex: none;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-icon-bg-wi);
}

.hero__nav {
  position: absolute;
  top: 428px;
  left: calc(50% + 107px);
  z-index: 2;
  display: flex;
  justify-content: space-between;
  width: 500px;
}
.hero__nav .btn__icon { color: var(--color-white); }
.hero__nav-prev .btn__icon { transform: scaleX(-1); }

.hero__mobile-bg,
.hero__mobile-rock,
.hero__mobile-dots {
  display: none;
}

.hero__phone-stage { display: contents; }

.hero__laurel-wrap { display: contents; }

@media (max-width: 767px) {

  .hero {
    height: 1176px;
    display: flex;
    flex-direction: column;
    padding-top: 112px;
  }

  .hero__bg {
    display: none;
  }

  .hero__mobile-bg,
  .hero__mobile-rock,
  .hero__mobile-dots {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
  }
  .hero__mobile-bg   { z-index: 0; }
  .hero__mobile-rock { z-index: 1; }
  .hero__mobile-dots { z-index: 2; }

  .hero__fade {
    top: 1022px;
    bottom: auto;
    height: 154px;
    z-index: 3;
  }

  .hero .hero__inner {
    order: 1;
    z-index: 2;
    padding-top: 0;
    padding-inline: 16px;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    width: 100%;
  }

  .hero__content { display: contents; }

  .hero__text { width: 100%; }

  .hero__title {
    font: var(--fw-semibold) 40px/40px var(--font-sans);
    letter-spacing: -2px;
  }

  .hero .hero__lead {
    font: var(--fw-medium) 16px/24px var(--font-sans);
    letter-spacing: -0.16px;
  }

  .hero__badge { width: 100%; }

  .hero__badge-title { text-align: center; }

  .hero__laurel-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 87.48px;
    height: 102.86px;
  }
  .hero__laurel-wrap--left { left: -29.41px; top: 21.92px; }
  .hero__laurel-wrap--right { right: -28.08px; top: -28.08px; }

  .hero__laurel-wrap .hero__laurel {
    position: static;
    top: auto;
    left: auto;
    right: auto;
  }
  .hero__laurel-wrap--left .hero__laurel { transform: rotate(-30deg); }
  .hero__laurel-wrap--right .hero__laurel { transform: scaleY(-1) rotate(-150deg); }

  .hero__cta {
    width: 100%;
    margin-top: 0;
  }

  .hero__stores { flex-direction: column; }
  .hero__stores .btn { width: 100%; }

  .hero__meta { width: 100%; }

  .hero__phone-stage .hero__nav {
    display: flex;
    position: absolute;
    left: 0;
    top: 231.5px;
    z-index: 3;
    width: 100%;
    padding-inline: 16px;
  }
  .hero__phone-stage .hero__nav .btn {
    --btn-height: 56px;
    width: 72px;
  }

  .hero__phone-stage {
    display: block;
    position: relative;
    order: 2;
    z-index: 4;
    width: 100%;
    height: 463px;
    overflow: hidden;
    flex: none;
  }

  .hero__phone-stage::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 42%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(248, 255, 19, 0.18) 0%, rgba(248, 255, 19, 0) 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
  }

  .hero__phone-stage .hero__phone,
  .hero__phone-stage .hero__phone.parallax,
  .hero__phone-stage .hero__phone.reveal,
  .hero__phone-stage .hero__phone.reveal.is-visible {
    position: absolute;
    left: calc(50% - 153.56px);
    top: 52px;
    transform: scale(0.7323);
    transform-origin: top left;
    z-index: 1;
  }

  .hero__phone-stage::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 112px;
    background: linear-gradient(to top, var(--color-dark) 0%, rgba(2, 3, 7, 0) 100%);
    pointer-events: none;
    z-index: 2;
  }
}

@media (min-width: 768px) and (max-width: 1279px) {

  .hero {
    height: clamp(620px, 58vw, 760px);
    overflow: hidden;
  }

  .hero__inner {
    position: relative;
    z-index: 2;
    height: 100%;
    padding-top: 0;
    padding-inline: clamp(24px, 5vw, 56px);
    display: flex;
    align-items: center;
  }

  .hero__content {
    width: min(52%, 460px);
    flex: none;
    gap: clamp(20px, 2.5vw, 32px);
  }

  .hero__text { gap: clamp(16px, 2vw, 24px); }

  .hero__title {
    font: var(--fw-semibold) clamp(36px, 5vw, 56px) / 1.05 var(--font-sans);
    letter-spacing: -0.035em;
  }

  .hero .hero__lead {
    font: var(--fw-medium) clamp(14px, 1.6vw, 17px) / 1.5 var(--font-sans);
    letter-spacing: -0.01em;
  }

  .hero__badge {
    width: 100%;
    padding: clamp(10px, 1.2vw, 12px) clamp(14px, 2vw, 20px) clamp(16px, 2vw, 20px);
  }

  .hero__badge-title,
  .hero__badge-title strong {
    font-size: clamp(13px, 1.4vw, 15px);
  }

  .hero__laurel--right {
    left: auto;
    right: 7px;
  }

  .hero__cta {
    width: 100%;
    margin-top: clamp(24px, 3vw, 32px);
  }

  .hero__stores { flex-direction: column; }
  .hero__stores .btn { width: 100%; justify-content: flex-start; }

  .hero__meta { width: 100%; }

  .hero__nav { display: none; }

  .hero__phone-stage {
    display: flex;
    position: absolute;
    right: 0;
    top: 0;
    width: min(44%, 420px);
    height: 100%;
    overflow: hidden;
    z-index: 1;
  }

  .hero__phone-stage::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 45%;
    width: clamp(360px, 45vw, 560px);
    height: clamp(360px, 45vw, 560px);
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(248, 255, 19, 0.18) 0%, rgba(248, 255, 19, 0) 70%);
    filter: blur(40px);
    pointer-events: none;
    z-index: 0;
  }

  .hero__phone-stage .hero__phone,
  .hero__phone-stage .hero__phone.parallax,
  .hero__phone-stage .hero__phone.reveal,
  .hero__phone-stage .hero__phone.reveal.is-visible {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) scale(clamp(0.5, 0.42 + (100vw - 768px) / 2044, 0.66));
    transform-origin: center;
    z-index: 1;
  }

  .hero__phone-stage::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 96px;
    background: linear-gradient(to top, var(--color-dark) 0%, rgba(2, 3, 7, 0) 100%);
    pointer-events: none;
    z-index: 2;
  }
}
