:root {
  color-scheme: dark;
  background: #000;
  --cta-blue-top: #98ddfa;
  --cta-blue-mid: #52c7f1;
  --cta-blue-bottom: #08aee2;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #000;
}

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

body {
  min-width: 320px;
  overflow-x: hidden;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1;
  text-rendering: optimizeSpeed;
}

main,
section,
picture,
img {
  display: block;
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  border: 0;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  user-select: none;
}

a {
  color: inherit;
}

.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;
}

.landing {
  width: 100%;
  background: #000;
}

.visual-section {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #000;
  line-height: 0;
}

.visual-section img {
  aspect-ratio: var(--mobile-w) / var(--mobile-h);
}

.pre-video-cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: clamp(24px, 5vw, 88px) clamp(24px, 7vw, 112px) clamp(12px, 2vw, 28px);
  background: #000;
}

.video-section {
  width: 100%;
  margin: 0;
  padding: clamp(12px, 2vw, 28px) clamp(24px, 7vw, 112px) clamp(24px, 4vw, 72px);
  background: #000;
}

.youtube-player {
  position: relative;
  display: block;
  width: min(84vw, 860px);
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.1), transparent 36%),
    linear-gradient(180deg, #151515 0%, #070707 100%);
  box-shadow: none;
}

.final-cta:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 5px;
}

.youtube-player iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.cta-section {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  min-height: clamp(118px, 19.6vw, 490px);
  margin: 0;
  padding-top: clamp(31px, 5.16vw, 129px);
  background: #000;
}

.campaign-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(76vw, 310px);
  min-height: clamp(36px, 9.2vw, 44px);
  padding: 0 clamp(18px, 4vw, 28px);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--cta-blue-top) 0%, var(--cta-blue-mid) 45%, var(--cta-blue-bottom) 100%);
  color: #020202;
  font-size: clamp(13px, 3.45vw, 17px);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  transition: transform 160ms ease, filter 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.campaign-cta-static {
  user-select: none;
}

.final-cta:hover {
  filter: brightness(1.04);
  transform: translateY(-1px);
}

.final-cta:active {
  filter: brightness(0.96);
  transform: translateY(1px);
}

@media (min-width: 768px) {
  .visual-section img {
    aspect-ratio: var(--desktop-w) / var(--desktop-h);
  }

  .video-section {
    padding-right: clamp(64px, 18vw, 420px);
    padding-left: clamp(64px, 18vw, 420px);
  }

  .youtube-player {
    width: min(64vw, 760px);
  }

  .campaign-cta {
    width: min(34vw, 520px);
    min-width: 380px;
    min-height: clamp(46px, 3.35vw, 58px);
    padding: 0 clamp(24px, 2.6vw, 42px);
    font-size: clamp(18px, 1.35vw, 24px);
  }

  .cta-section {
    min-height: clamp(150px, 14vw, 300px);
    padding-top: clamp(44px, 4.2vw, 90px);
  }
}

@media (max-width: 430px) {
  .video-section {
    padding-top: 14px;
    padding-bottom: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto;
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}
