@font-face {
  font-family: "Neue Kalimat";
  src: url("assets/fonts/neue-kalimat.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Glancyr";
  src: url("assets/fonts/Glancyr/Glancyr-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Glancyr";
  src: url("assets/fonts/Glancyr/Glancyr-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Glancyr";
  src: url("assets/fonts/Glancyr/Glancyr-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Glancyr";
  src: url("assets/fonts/Glancyr/Glancyr-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Glancyr";
  src: url("assets/fonts/Glancyr/Glancyr-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Glancyr";
  src: url("assets/fonts/Glancyr/Glancyr-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --yellow: #ffd404;
  --yellow-dark: #a98c00;
  --black: #0b0b0b;
  --panel: #181818;
  --white: #fafafa;
  --muted: #b7b7b7;
  --line: #3d3d3d;
  --container: 1260px;
  --display: "Neue Kalimat", "DIN Condensed", "Avenir Next Condensed", "Arial Narrow", Impact, sans-serif;
  --body: "Glancyr", "Montserrat", "Avenir Next", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--body);
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(var(--container), calc(100vw - 48px));
  margin: 0 auto;
}

.section-dark {
  background: var(--black);
}

.section-yellow {
  background: linear-gradient(180deg, var(--yellow) 0%, #c6a400 100%);
  color: #181818;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 24px;
  left: 50%;
  width: min(var(--container), calc(100vw - 48px));
  height: 76px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 32px;
  border-radius: 60px;
  background: rgba(250, 250, 250, .1);
  backdrop-filter: blur(15px);
}

.brand img {
  position: absolute;
  left: -3%;
  top: -46.45%;
  width: 108.15%;
  height: 192.9%;
  max-width: none;
  object-fit: fill;
}

.brand {
  position: relative;
  display: block;
  width: 233px;
  height: 56px;
  overflow: hidden;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 10px 24px;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--body);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: .05em;
  cursor: pointer;
}

.button-yellow,
.submit-button {
  background: var(--yellow);
  color: #181818;
}

.button-dark {
  margin-top: 64px;
  min-height: 60px;
  padding: 12px 32px;
  background: #181818;
  color: var(--white);
  font-size: 24px;
}

.button-large {
  min-height: 60px;
  padding-inline: 32px;
  font-size: 24px;
}

.hero {
  position: relative;
  min-height: 1024px;
  overflow: hidden;
  border-bottom-right-radius: 100px;
  background: linear-gradient(180deg, var(--yellow) 74.5%, #c9a700 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 71px;
  background: linear-gradient(180deg, rgba(255, 212, 4, .72), rgba(255, 212, 4, 0));
  z-index: 0;
}

.hero-bg {
  --hero-bg-height: 953px;
  --hero-image-frame: 889px;
  --hero-curve-radius: 200px;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: var(--hero-bg-height);
  overflow: hidden;
  border-bottom-right-radius: var(--hero-curve-radius);
  background: #181818;
}

.hero-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--hero-image-frame) * -.5861);
  width: calc(100vw * 1.0112);
  height: calc(var(--hero-image-frame) * 1.5861);
  background: url("assets/hero-bg.png") left top / 100% 100% no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 21.822%, #000 101.74%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: 953px;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 804px;
  padding-top: 257px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  margin: 0;
  padding: 8px 24px;
  border-radius: 60px;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: .05em;
}

.pill img {
  width: 17px;
  height: 26px;
  object-fit: contain;
}

.pill-white {
  background: rgba(255, 255, 255, .1);
}

.pill-yellow {
  background: rgba(255, 255, 255, .3);
  color: #181818;
}

.pill-outline {
  border: 1px solid var(--yellow);
  background: rgba(255, 212, 4, .1);
}

.hero h1,
.check-head h2,
.signup-copy h2 {
  font-family: var(--display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .045em;
}

.hero h1 {
  width: 804px;
  max-width: none;
  margin: 32px 0 34px;
  font-size: 120px;
  line-height: .92;
  letter-spacing: 6px;
  white-space: nowrap;
  transform: none;
}

.hero-text {
  max-width: 686px;
  margin: 0;
  color: #e2e0e0;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: .05em;
}

.hero-text strong {
  font-weight: 400;
}

.yellow {
  color: var(--yellow);
}

.learn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 96px;
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
}

.icon-arrow-down,
.icon-arrow-up,
.external-arrow {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
}

.icon-arrow-down,
.icon-arrow-up {
  width: 24px;
  height: 24px;
}

.icon-arrow-down::before,
.icon-arrow-up::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 4px;
  width: 2px;
  height: 14px;
  background: currentColor;
}

.icon-arrow-down::after,
.icon-arrow-up::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.icon-arrow-up::before {
  top: 6px;
}

.icon-arrow-up::after {
  top: 4px;
  transform: rotate(225deg);
}

.external-arrow {
  width: 16px;
  height: 16px;
  margin-left: 4px;
  vertical-align: -2px;
}

.external-arrow::before {
  content: "";
  position: absolute;
  right: 2px;
  top: 2px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.external-arrow::after {
  content: "";
  position: absolute;
  right: 3px;
  top: 8px;
  width: 12px;
  height: 2px;
  background: currentColor;
  transform: rotate(-45deg);
  transform-origin: right center;
}

.calendar-icon {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid currentColor;
  border-radius: 4px;
}

.calendar-icon::before {
  content: "";
  position: absolute;
  left: -2px;
  right: -2px;
  top: 4px;
  border-top: 2px solid currentColor;
}

.calendar-icon::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 4px;
  top: -5px;
  height: 7px;
  border-left: 2px solid currentColor;
  border-right: 2px solid currentColor;
}

.hero-person {
  position: absolute;
  z-index: 1;
  left: 824px;
  right: auto;
  top: 225px;
  width: 447px;
  height: 731px;
  max-width: none;
  overflow: hidden;
}

.hero-person img {
  position: absolute;
  left: -.03%;
  top: 0;
  width: 100.07%;
  height: 155.42%;
  max-width: none;
  object-fit: fill;
}

.intro {
  margin-top: -71px;
  padding: 150px 0 104px;
  scroll-margin-top: 0;
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0, 0, 0, .8);
}

.section-kicker img {
  width: 289px;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 610px) 508px;
  grid-template-areas:
    "headline headline"
    "body logos"
    "cta logos";
  gap: 40px 142px;
  align-items: end;
  padding-top: 72px;
}

.intro-grid > div:first-child {
  display: contents;
}

.intro h2 {
  grid-area: headline;
  max-width: 1120px;
  margin: 0;
  font-size: clamp(36px, 3.35vw, 48px);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: .05em;
}

.intro p {
  grid-area: body;
  max-width: 559px;
  margin: 0;
  color: #413602;
  font-size: 24px;
  line-height: 1.58;
  letter-spacing: .05em;
}

.intro strong {
  color: #181818;
}

.logo-grid {
  grid-area: logos;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
  justify-items: center;
  column-gap: 22px;
  row-gap: 28px;
  width: min(508px, 100%);
  justify-self: end;
  align-self: center;
}

.intro .button-dark {
  grid-area: cta;
  justify-self: start;
  margin-top: 8px;
}

.brand-logo {
  display: block;
  background-repeat: no-repeat;
}

.brand-logo-img {
  display: block;
  max-width: 100%;
}

.brand-logo-chevrolet {
  width: 87px;
  height: 55px;
  background-image: url("assets/logos-row-1.svg");
  background-size: 539px 65px;
  background-position: 0 -1px;
}

.brand-logo-citroen {
  width: 64px;
  height: 58px;
  background-image: url("assets/logos-row-1.svg");
  background-size: 493px 60px;
  background-position: -217px -1px;
}

.brand-logo-gac {
  width: 69px;
  height: 57px;
  background-image: url("assets/logos-row-1.svg");
  background-size: 553px 67px;
  background-position: -484px -5px;
}

.brand-logo-geely {
  width: 100px;
  height: 18px;
  background-image: url("assets/logos-row-2.svg");
  background-size: 392px 44px;
  background-position: -187px -14px;
}

.brand-logo-gwm {
  width: 78px;
  height: 62px;
  background-image: url("assets/logos-row-2.svg");
  background-size: 538px 61px;
  background-position: 0 0;
}

.brand-logo-harley {
  width: 82px;
  height: 50px;
  background-image: url("assets/logos-row-2.svg");
  background-size: 440px 50px;
  background-position: -359px 0;
}

.brand-logo-honda {
  width: 78px;
  height: 49px;
  background-image: url("assets/logos-row-2.svg");
  background-size: 416px 47px;
  background-position: -91px 0;
}

.brand-logo-kia {
  width: 82px;
  aspect-ratio: 699.3 / 256.4;
  height: auto;
}

.brand-logo-peugeot {
  width: 54px;
  height: 57px;
  background-image: url("assets/logos-row-1.svg");
  background-size: 469px 57px;
  background-position: -115px 0;
}

.brand-logo-renault {
  width: 64px;
  height: 53px;
  background-image: url("assets/logos-row-1.svg");
  background-size: 446px 54px;
  background-position: -288px 0;
}

.checklist {
  position: relative;
  margin-top: -1px;
  padding: 160px 0 108px;
  overflow: hidden;
  border-top-left-radius: 100px;
  scroll-margin-top: 120px;
}

.check-bg {
  position: absolute;
  inset: 0 0 auto;
  height: 703px;
  background:
    linear-gradient(90deg, #0d0d0d 0%, rgba(13,13,13,.78) 44%, rgba(13,13,13,.2) 100%),
    linear-gradient(180deg, rgba(13,13,13,0) 0%, #0d0d0d 96%),
    url("assets/check-bg.png") right top / auto 687px no-repeat;
  opacity: .88;
}

.checklist .container {
  position: relative;
  z-index: 1;
}

.check-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
}

.check-head > img {
  width: 233px;
}

.check-head h2 {
  max-width: 935px;
  margin: 40px 0 0;
  font-size: clamp(58px, 6.95vw, 100px);
  line-height: 1.03;
}

.check-head span,
.signup-copy span {
  color: var(--yellow);
}

.check-subhead {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 48px;
  margin-top: 72px;
  padding: 0 0 32px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.check-subhead p:first-child {
  max-width: 561px;
  margin: 0;
  padding-top: 24px;
  border-top: 4px solid rgba(255, 255, 255, .78);
  color: #fafafa;
  font-size: 24px;
  line-height: 1.58;
  letter-spacing: .05em;
}

.check-subhead p:last-child {
  margin: 0;
  font-size: 18px;
  letter-spacing: .05em;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}

.check-card {
  position: relative;
  min-height: 482px;
  overflow: hidden;
  border-radius: 10px;
  background: #111;
}

.check-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,.05) 36%, #000 100%);
}

.check-card img {
  width: 100%;
  height: 100%;
  min-height: 482px;
  object-fit: cover;
}

.check-card div {
  position: absolute;
  z-index: 1;
  inset: 24px 24px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.check-card h3 {
  width: fit-content;
  margin: 0;
  padding-bottom: 2px;
  border-bottom: 2px solid var(--yellow);
  font-size: 40px;
  line-height: 1.2;
}

.check-card p {
  max-width: 319px;
  margin: 0;
  color: #aeaeae;
  font-size: 20px;
  line-height: 1.45;
  letter-spacing: .05em;
}

.center {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}

.campaign {
  padding: 0 0 88px;
}

.campaign-grid {
  display: grid;
  grid-template-columns: 435px minmax(0, 646px);
  justify-content: space-between;
  gap: 64px;
  align-items: start;
}

.campaign-grid > * {
  min-width: 0;
}

.campaign-grid > img {
  width: 100%;
}

.campaign p {
  margin: 0 0 24px;
  color: #bdbdbd;
  font-size: 24px;
  line-height: 1.58;
  letter-spacing: .05em;
}

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

.campaign strong:not(.yellow) {
  color: var(--white);
}

.signup {
  padding-bottom: 0;
  scroll-margin-top: 120px;
}

.signup-panel {
  display: grid;
  grid-template-columns: minmax(0, 569px) minmax(0, 614px);
  justify-content: space-between;
  gap: 77px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 135px 90px 96px;
  border-radius: 50px;
  background: var(--panel);
}

.eyebrow {
  margin: 0 0 16px;
  color: #aeaeae;
  font-size: 18px;
  text-transform: uppercase;
}

.signup-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(62px, 6.95vw, 100px);
  line-height: .95;
  white-space: nowrap;
}

.signup-copy > p:not(.eyebrow) {
  margin: 0;
  color: #bdbdbd;
  font-size: 24px;
  font-weight: 200;
  line-height: 1.58;
  letter-spacing: .05em;
}

.field-block {
  margin-top: 64px;
}

.step,
.lead-form h3 {
  display: block;
  margin: 0 0 24px;
  color: var(--white);
  font-size: 24px;
  font-weight: 300;
  line-height: 1.35;
  letter-spacing: .05em;
}

.city-fieldset {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
  padding: 0;
  border: 0;
}

.city-option {
  cursor: pointer;
}

.city-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.city-option span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 179px;
  min-height: 45px;
  padding: 8px 20px;
  border: 1px solid transparent;
  border-radius: 30px;
  background: rgba(250, 250, 250, .1);
  color: var(--white);
  font-size: 18px;
  font-weight: 400;
  white-space: nowrap;
}

.city-option input:checked + span {
  border-color: var(--yellow);
  background: transparent;
  color: var(--yellow);
}

.city-option input:focus-visible + span,
.dealership-select:focus-visible,
.lead-input:focus-visible,
.submit-button:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(255, 212, 4, .5);
  outline-offset: 3px;
}

.dealership-select,
.lead-input {
  width: 100%;
  height: 58px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #0b0b0b;
  color: #fafafa;
  font: 300 18px/1 var(--body);
  letter-spacing: .05em;
  outline: none;
}

.dealership-select {
  padding: 0 56px 0 32px;
  border-color: var(--yellow);
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, #fafafa 50%), linear-gradient(135deg, #fafafa 50%, transparent 50%);
  background-position: calc(100% - 45px) 25px, calc(100% - 37px) 25px;
  background-size: 8px 8px, 8px 8px;
  background-repeat: no-repeat;
}

.lead-form {
  justify-self: end;
  width: 550px;
  max-width: 100%;
  padding: 32px 0;
  border-radius: 20px;
  background: rgba(24, 24, 24, .4);
  backdrop-filter: blur(15px);
}

.lead-form label {
  display: block;
  margin: 20px 0 8px;
  font-size: 16px;
  font-weight: 400;
}

.lead-input {
  padding: 0 24px;
}

.lead-input::placeholder {
  color: #b6b6b6;
  opacity: 1;
}

.submit-button {
  width: 100%;
  min-height: 70px;
  margin-top: 40px;
  border: 0;
  border-radius: 60px;
  cursor: pointer;
  font: 400 24px/1.15 var(--body);
}

.form-note {
  margin: 48px 0 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: .05em;
}

.form-status {
  min-height: 20px;
  margin: 16px 0 0;
  color: var(--yellow);
  font-size: 14px;
}

.quote {
  position: relative;
  min-height: 638px;
  overflow: hidden;
  border-bottom: 10px solid var(--yellow);
}

.quote-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0) 20%, rgba(0,0,0,.52) 55%, #000 100%),
    linear-gradient(180deg, rgba(0,0,0,0) 0%, #000 110%),
    url("assets/quote-bg.png") center / cover no-repeat;
}

.quote-inner {
  position: relative;
  min-height: 638px;
}

.quote-person {
  position: absolute;
  left: -18px;
  top: 74px;
  width: 400px;
}

.quote-ribbon {
  position: absolute;
  left: 309px;
  top: 220px;
  width: 193px;
}

.quote-copy {
  position: absolute;
  left: 538px;
  top: 210px;
  max-width: 720px;
}

.quote-copy p {
  margin: 0 0 28px;
  font-size: 24px;
  line-height: 1.55;
}

.quote-copy blockquote {
  position: relative;
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  line-height: 1.22;
}

.quote-copy blockquote::before,
.quote-copy blockquote::after {
  position: absolute;
  color: var(--yellow);
  font-size: 54px;
  line-height: 1;
}

.quote-copy blockquote::before {
  content: "“";
  left: -52px;
  top: -2px;
}

.quote-copy blockquote::after {
  content: "”";
  right: -34px;
  bottom: -6px;
}

.site-footer {
  padding: 64px 0 19px;
  background: var(--panel);
}

.footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 356px) minmax(0, 316px);
  justify-content: space-between;
  align-items: start;
  gap: 24px 48px;
  padding-right: 96px;
}

.footer-logo {
  width: 323px;
  margin-bottom: 24px;
}

.site-footer p,
.site-footer h2 {
  margin: 0 0 16px;
  font-size: 20px;
  line-height: 1.6;
  font-weight: 300;
  letter-spacing: .05em;
}

.site-footer a {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 10px;
  color: #aeaeae;
  font-size: 20px;
  font-weight: 300;
  text-decoration: none;
}

.footer-campaign {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  white-space: nowrap;
}

.footer-campaign img {
  width: 17px;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 50%;
  font-weight: 800;
}

.socials svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.scroll-top {
  position: absolute;
  right: 0;
  top: 5px;
  width: 67px;
  height: 67px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #121212;
  color: var(--yellow);
  cursor: pointer;
  font-size: 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--yellow);
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
}

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

@media (min-width: 1441px) {
  :root {
    --container: min(1768px, calc(100vw - 180px));
  }

  .hero {
    --hero-large-height: max(1024px, min(100vh, 1180px));
    min-height: var(--hero-large-height);
  }

  .hero::after {
    height: 71px;
  }

  .hero-bg {
    --hero-bg-height: calc(var(--hero-large-height) - 71px);
    --hero-image-frame: calc(var(--hero-bg-height) - 64px);
    height: var(--hero-bg-height);
  }

  .hero-inner {
    min-height: calc(var(--hero-large-height) - 71px);
  }

  .hero-copy {
    width: 804px;
  }

  .hero-person {
    left: min(1160px, calc(100vw - 780px));
    right: auto;
    top: auto;
    bottom: 0;
  }
}

@media (max-width: 1180px) {
  .container {
    width: min(calc(100vw - 140px), 904px);
  }

  .site-header {
    top: 21px;
    width: min(calc(100vw - 140px), 904px);
    height: 55px;
    padding: 7px 28px;
  }

  .brand {
    width: 160px;
    height: 39px;
  }

  .site-header .button {
    min-height: 36px;
    padding-inline: 18px;
    font-size: 14px;
  }

  .hero {
    min-height: 746px;
    border-bottom-right-radius: 0;
    background: #181818;
  }

  .hero-inner {
    min-height: 688px;
  }

  .hero::after {
    display: none;
  }

  .hero-bg {
    --hero-bg-height: 688px;
    --hero-image-frame: 624px;
    --hero-curve-radius: 0;
    inset: 0;
    height: auto;
  }

  .hero-copy {
    width: 620px;
    padding-top: 187px;
  }

  .hero h1 {
    width: 1000px;
    max-width: none;
    margin: 27px 0 24px;
    font-size: 76px;
    line-height: 1.03;
    letter-spacing: .045em;
    transform: scaleX(.72);
  }

  .hero-text {
    max-width: 540px;
    font-size: 21px;
    line-height: 1.55;
    letter-spacing: .035em;
  }

  .pill {
    min-height: 35px;
    padding: 6px 18px;
    font-size: 16px;
  }

  .pill img {
    width: 13px;
    height: 20px;
  }

  .learn-link {
    margin-top: 76px;
    font-size: 13px;
  }

  .hero-person {
    left: auto;
    top: auto;
    right: -20px;
    bottom: 58px;
    width: 310px;
    height: 514px;
    max-width: none;
  }

  .intro-grid,
  .signup-panel,
  .campaign-grid {
    grid-template-columns: 1fr;
  }

  .intro {
    margin-top: 0;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    overflow: hidden;
  }

  .intro-grid {
    grid-template-areas:
      "headline"
      "body"
      "cta"
      "logos";
    gap: 40px;
  }

  .logo-grid {
    justify-content: start;
    padding-bottom: 0;
  }

  .signup-panel {
    padding-inline: 48px;
  }

  .lead-form {
    justify-self: stretch;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 32px;
    padding-right: 84px;
  }

  .footer-grid > div {
    min-width: 0;
  }

  .footer-campaign {
    flex-wrap: wrap;
  }

  .quote-copy {
    left: 44%;
  }
}

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, 720px);
  }

  .site-header {
    width: calc(100vw - 32px);
  }

  .site-header .button {
    min-height: 42px;
    padding-inline: 16px;
    font-size: 14px;
  }

  .brand {
    width: 150px;
    height: 36px;
  }

  .hero {
    min-height: 860px;
    border-bottom-right-radius: 0;
  }

  .hero-inner {
    min-height: 800px;
  }

  .hero-bg {
    --hero-bg-height: 802px;
    --hero-image-frame: 738px;
    --hero-curve-radius: 0;
    inset: 0;
    background-position: center top;
  }

  .hero::after {
    display: none;
  }

  .hero-copy {
    width: 100%;
    padding-top: 160px;
  }

  .hero h1 {
    max-width: 640px;
    font-size: clamp(56px, 13vw, 96px);
    width: 100%;
    white-space: normal;
    transform: none;
  }

  .hero-text {
    max-width: 560px;
    font-size: 22px;
  }

  .learn-link {
    margin-top: 48px;
  }

  .hero-person {
    left: auto;
    top: 330px;
    right: -12px;
    bottom: auto;
    width: 300px;
    height: 490px;
    max-width: 48vw;
    overflow: visible;
  }

  .intro {
    margin-top: 0;
    padding-top: 150px;
  }

  .section-kicker {
    align-items: flex-start;
    flex-direction: column;
  }

  .intro-grid {
    gap: 56px;
    padding-top: 56px;
  }

  .logo-grid {
    grid-template-columns: repeat(4, minmax(72px, 1fr));
    gap: 16px;
  }

  .button-dark,
  .button-large {
    width: 100%;
    font-size: 20px;
    text-align: center;
  }

  .checklist {
    padding-top: 112px;
    border-top-left-radius: 60px;
  }

  .check-head,
  .check-subhead {
    flex-direction: column;
    align-items: flex-start;
  }

  .check-head > img {
    width: 190px;
  }

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

  .check-card,
  .check-card img {
    min-height: 420px;
  }

  .campaign {
    padding-bottom: 80px;
  }

  .campaign-grid img {
    max-width: 380px;
  }

  .signup-panel {
    padding: 80px 32px;
    border-radius: 32px;
  }

  .signup-copy h2 {
    white-space: normal;
  }

  .city-fieldset {
    grid-template-columns: 1fr;
  }

  .city-option span {
    width: 100%;
  }

  .quote {
    min-height: 900px;
  }

  .quote-inner {
    min-height: 900px;
  }

  .quote-person {
    left: -10px;
    top: 50px;
    bottom: auto;
    width: 230px;
  }

  .quote-ribbon {
    left: 214px;
    top: 285px;
    width: 110px;
  }

  .quote-copy {
    left: min(300px, 42vw);
    right: 32px;
    top: 560px;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 28px;
    padding-right: 0;
  }

  .footer-grid > div {
    width: 100%;
  }

  .scroll-top {
    top: 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 28px);
  }

  .site-header {
    width: calc(100vw - 24px);
    padding: 10px 12px;
  }

  .brand {
    width: 124px;
    height: 30px;
  }

  .site-header .button {
    flex-shrink: 0;
    max-width: none;
    min-height: 38px;
    padding: 8px 10px;
    font-size: clamp(10px, 2.85vw, 12px);
    letter-spacing: 0;
    white-space: nowrap;
  }

  .hero {
    min-height: 920px;
    border-bottom-right-radius: 0;
  }

  .hero-inner {
    min-height: 860px;
  }

  .hero-bg {
    --hero-bg-height: 862px;
    --hero-image-frame: 798px;
    --hero-curve-radius: 0;
  }

  .pill {
    min-height: 42px;
    padding: 8px 14px;
    font-size: 14px;
    letter-spacing: 0;
  }

  .hero-copy {
    padding-top: 138px;
  }

  .hero h1 {
    max-width: 360px;
    font-size: clamp(42px, 12vw, 54px);
    line-height: 1;
    letter-spacing: .035em;
  }

  .hero-text {
    max-width: 310px;
    font-size: 18px;
    letter-spacing: .02em;
  }

  .hero-person {
    left: auto;
    top: auto;
    right: -4px;
    bottom: 58px;
    width: 230px;
    height: 380px;
    max-width: 62vw;
    overflow: visible;
  }

  .intro {
    padding: 128px 0 88px;
  }

  .intro h2 {
    font-size: 32px;
    letter-spacing: .02em;
  }

  .intro p,
  .campaign p,
  .check-subhead p:first-child,
  .signup-copy > p:not(.eyebrow) {
    font-size: 19px;
    letter-spacing: .02em;
  }

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

  .check-head h2,
  .signup-copy h2 {
    font-size: 52px;
    letter-spacing: .035em;
  }

  .signup-panel {
    width: 100%;
    padding: 64px 20px;
    border-radius: 24px;
  }

  .step,
  .lead-form h3 {
    font-size: 21px;
  }

  .submit-button {
    font-size: 19px;
  }

  .quote {
    min-height: 980px;
  }

  .quote-inner {
    min-height: 980px;
  }

  .quote-copy {
    top: 690px;
    left: 20px;
    right: 20px;
  }

  .quote-copy blockquote {
    font-size: 30px;
  }

  .quote-person {
    top: 52px;
    width: 205px;
  }

  .quote-ribbon {
    left: 158px;
    top: 290px;
    width: 82px;
  }

  .footer-logo {
    width: min(240px, calc(100% - 94px));
    margin-bottom: 32px;
  }

  .site-footer p,
  .site-footer h2 {
    margin-bottom: 14px;
  }

  .site-footer a {
    margin-top: 12px;
  }

  .footer-campaign {
    max-width: calc(100% - 24px);
    white-space: normal;
  }

  .scroll-top {
    width: 72px;
    height: 72px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 18px;
  }
}
