/* Header and hero */
.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  width: min(1180px, calc(100% - 40px));
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 24px 0;
}

.brand img {
  width: 168px;
  height: auto;
}

.header-cta {
  border-bottom: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
  align-items: center;
  gap: 80px;
  overflow: hidden;
  padding: 132px max(32px, calc((100vw - 1180px) / 2)) 88px;
}

.hero::before {
  position: absolute;
  top: -20%;
  right: -14%;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  background: rgba(221, 207, 189, 0.45);
  content: "";
}

.hero__copy {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero h2,
.section-heading h2,
.signup__intro h2,
.location h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h2 {
  max-width: 680px;
  font-size: clamp(3.4rem, 6.6vw, 6.5rem);
}

.hero__lead {
  max-width: 620px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}

.text-link {
  font-size: 0.87rem;
  font-weight: 700;
  text-decoration: none;
}

.text-link span {
  margin-left: 8px;
}

.hero__note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.hero__note span {
  color: var(--bronze);
}

.hero__visual {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 480px;
  place-items: center;
}

.benefit-card {
  position: relative;
  display: flex;
  width: min(100%, 390px);
  min-height: 500px;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid rgba(216, 198, 168, .45);
  border-radius: 18px;
  background: var(--green);
  padding: 30px;
  box-shadow: 0 34px 70px rgba(31, 42, 29, .25);
  color: var(--paper);
}

.benefit-card::before,
.benefit-card::after {
  position: absolute;
  right: -150px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(216, 198, 168, .14);
  border-radius: 50%;
  content: "";
}

.benefit-card::after {
  right: -120px;
  bottom: -60px;
}

.benefit-card__topline,
.benefit-card__main,
.benefit-card__footer {
  position: relative;
  z-index: 1;
}

.benefit-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(244, 239, 231, .2);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.benefit-card__launch {
  border-radius: 999px;
  background: var(--bronze-dark);
  padding: 8px 11px;
  font-size: .55rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.benefit-card__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  text-align: center;
}

.benefit-card__eyebrow {
  color: var(--paper-deep);
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.benefit-card__percent {
  margin-top: 12px;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: clamp(5.4rem, 9vw, 7.4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .82;
}

.benefit-card__percent sup {
  position: relative;
  top: -.45em;
  padding-left: 8px;
  color: var(--bronze-light);
  font-size: .39em;
  letter-spacing: -.06em;
}

.benefit-card__main p {
  max-width: 245px;
  margin: 25px 0 0;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.benefit-card__main strong {
  color: var(--paper-deep);
}

.benefit-card__footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(244, 239, 231, .2);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.benefit-card__footer small {
  grid-column: 1 / -1;
  color: rgba(244, 239, 231, .7);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: none;
}

.hero__exclusions {
  max-width: 390px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: .72rem;
  text-align: center;
}

/* How it works */
.how {
  padding: 110px max(32px, calc((100vw - 1180px) / 2));
  background: var(--green);
  color: var(--paper);
}

.how .eyebrow,
.step__number {
  color: var(--paper-deep);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.section-heading h2,
.signup__intro h2,
.location h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.steps {
  display: grid;
  margin: 58px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  list-style: none;
}

.step {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  align-items: start;
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255,255,255,0.18);
}

.step__number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
}

.step h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  font-weight: 400;
}

.step p {
  margin: 8px 0 0;
  color: rgba(255,255,255,0.63);
}
