section.hero {
  background: var(--blue, #43507f);
  color: var(--alabaster, #f5f6f5);
  position: relative;
  overflow: hidden;
}
.hero .wrap {
  display: grid;
  max-width: none;
  padding: 0;
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
  gap: 0;
  align-items: stretch;
  position: relative;
}
.hero_copy {
  align-self: center;
  
  padding-block-start: clamp(56px, 8vw, 42px); {# top #}
  padding-block-end: clamp(40px, 6vw, 42px);{# bottom #}

  padding-inline-start: clamp(24px, 3vw, 64px);{# left #}
  padding-inline-end: clamp(20px, 2vw, 32px);{# right #}
  
  {#
  padding-block: clamp(56px, 8vw, 108px);
  padding-inline-end: clamp(20px, 3vw, 44px);
  padding-inline-start: clamp(24px, 5vw, 96px);
  #}
}
.hero .eyebrow {
  color: var(--green, #D4E279);
  margin-bottom: 1rem;
}
.hero h1 {
  color: var(--white, #fff);
  {#font-size: clamp(2.7rem, 5.6vw, 4.5rem);#}
  {#font-size: clamp(2.0rem, calc(72 * 100vw / 1800), 4.0rem);#}
  line-height: 1.04;
  max-width: 16ch;
}
.hero .tagline_script {
  color: var(--gold, #f9b825);
}
.hero .subhead,
.hero .subhead p {
  {#font-size: clamp(1.08rem, 1.6vw, 1.28rem);#}
  color: var(--alabaster, #f5f6f5);
  max-width: 42ch;
  margin-bottom: 2.1rem;
  line-height: 1.55;
}
.hero .fineprint {
  font-size: .9rem;
  color: rgba(245, 246, 245, .75);
}
.hero_copy p {
  margin-bottom: 0;
}
.fineprint {
  padding-top: 1.0rem;
}

.phone {
  position: relative;
  width: 234px;
  aspect-ratio: 1 / 2;
  z-index: 2;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .45));
}
.phone_img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.hero_art {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  min-height: 100%;
}
.hero_photo {
  position: relative;
  width: 100%;
  min-height: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
  background: radial-gradient(120% 90% at 18% 12%, rgba(212, 226, 121, .45), transparent 55%), radial-gradient(130% 100% at 92% 92%, rgba(25, 118, 210, .4), transparent 55%), linear-gradient(150deg, #5b6aa0, #36406A);
}

.hero_video {
  position: relative;
  overflow: hidden;
}
.hero_video_plan {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .hero_video_plan {
    object-position: left center;
  }
}

.logo_subhead {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 16px;
  margin-bottom: 0;
}

.store_badge {
  {#display: inline-flex;#}
  align-items: center;
  text-decoration: none;
}
.store_badge img {
  display: block;
  height: 40px;
  width: auto;
}
.logo_space {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero .wrap > .phone {
  position: absolute;
  left: calc(40% + 24px);
  top: 50%;
  transform: translateY(-50%);
  height: min(86%, 560px);
  width: auto;
  z-index: 5;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .45));
}

{#html,
body {
  overflow-x: hidden;
}#}

@media (max-width: 620px) {
  .hero .wrap > .phone {
    width: 160px;
  }
}