:root {
  --black: #111111;
  --text: #333333;
  --muted: #f2f2f2;
  --teal: #a4d6de;
  --blue: #0033a0;
  --white: #ffffff;
  --display: "Objectivity", "Inter", Arial, sans-serif;
  --body: "Inter", Arial, sans-serif;
  --container: 1312px;
  --gutter: 32px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.hero {
  position: relative;
  min-height: 850px;
  overflow: hidden;
  color: var(--white);
}

.hero__image,
.footer__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image {
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(17, 17, 17, 0.84) 0%,
    rgba(17, 17, 17, 0.46) 55%,
    rgba(17, 17, 17, 0.18) 100%
  );
}

.site-header {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
}

.site-header__logo {
  display: inline-flex;
  width: 336px;
  max-width: 52vw;
}

.site-header__logo img,
.footer__bar img {
  width: 100%;
  height: auto;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 170px 0 120px;
}

.hero__headline {
  display: flex;
  align-items: baseline;
  gap: 10px;
  max-width: 100%;
}

.hero__headline h1 {
  min-width: 0;
  overflow-wrap: break-word;
}

.hero__icon {
  width: 60px;
  height: 60px;
  flex: 0 0 60px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-family: var(--display);
  font-size: 76px;
  line-height: 1.05;
  letter-spacing: 0.8px;
}

.hero__copy {
  width: min(560px, 100%);
  margin-top: 10px;
  overflow-wrap: break-word;
}

.eyebrow,
.section__heading h2 {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.4px;
}

.eyebrow {
  color: var(--teal);
  margin-bottom: 10px;
  white-space: nowrap;
}

.hero__copy p:last-child,
.section__heading p,
.steps p,
.benefit-card p,
.callout,
.footer__bar {
  font-size: 16px;
  letter-spacing: 0.65px;
}

.hero__session {
  width: min(351px, 100%);
  margin-top: 50px;
  margin-bottom: 20px;
}

.hero__session p {
  color: var(--teal);
  font-size: 16px;
  letter-spacing: 0.65px;
}

.hero__session strong {
  display: block;
  margin-top: 2px;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: 0.25px;
}

.button {
  display: inline-flex;
  min-width: 216px;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  padding: 16px 26px;
  border-radius: 5px;
  background: var(--teal);
  color: var(--black);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: #b8e5ec;
  transform: translateY(-2px);
}

.section {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  padding: 100px 0;
}

.section__heading {
  max-width: 820px;
  margin-bottom: 50px;
}

.section__heading h2 {
  margin-bottom: 10px;
}

.section__heading h2 span {
  color: var(--teal);
}

.section__heading p {
  color: var(--text);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.benefit-card,
.info-card {
  border-radius: 8px;
  background: var(--muted);
}

.benefit-card {
  min-height: 190px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.benefit-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.benefit-card__head span {
  width: 72px;
  height: 1px;
  background: var(--teal);
}

.benefit-card__head strong {
  color: var(--teal);
  font-size: 18px;
  letter-spacing: 1px;
}

.benefit-card h3,
.steps h3,
.info-card h3 {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.25px;
}

.benefit-card p {
  color: var(--text);
  line-height: 1.4;
}

.instructions {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 610px) minmax(0, 560px);
  justify-content: center;
  align-items: center;
  gap: 70px;
  padding: 100px var(--gutter);
  background: var(--muted);
}

.instructions__image {
  overflow: hidden;
  border-radius: 8px;
}

.instructions__image img {
  width: 100%;
  aspect-ratio: 61 / 62;
  object-fit: cover;
}

.instructions__content .section__heading {
  margin-bottom: 45px;
}

.steps {
  display: grid;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}

.steps li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.steps span {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 5px;
  background: var(--teal);
  color: var(--black);
  font-size: 18px;
  font-weight: 800;
}

.steps h3 {
  margin-bottom: 10px;
}

.steps p {
  color: var(--text);
}

.information {
  padding-bottom: 85px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
}

.info-card {
  padding: 48px;
}

.info-card p {
  margin-top: 6px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.65px;
}

.info-card ul {
  display: grid;
  gap: 24px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.info-card li {
  position: relative;
  padding-left: 30px;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.25px;
}

.info-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
}

.callout {
  margin-top: 50px;
  padding: 36px;
  border-radius: 8px;
  background: var(--teal);
  color: var(--black);
  text-align: center;
}

.footer {
  position: relative;
  min-height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
}

.footer__image {
  object-position: center;
}

.footer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.5);
}

.footer__message {
  position: relative;
  z-index: 1;
  width: min(584px, calc(100% - (var(--gutter) * 2)));
  font-family: var(--display);
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.4px;
  text-align: center;
  transform: translateY(-20px);
}

.footer__bar {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 20px;
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
}

.footer__bar img {
  width: 336px;
  height: auto;
  max-width: 36vw;
}

.footer__bar p {
  text-align: right;
}

.footer__bar nav {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

.footer__bar a {
  text-decoration: none;
}

.footer__bar a:hover,
.footer__bar a:focus-visible {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  :root {
    --gutter: 28px;
  }

  .hero {
    min-height: 760px;
  }

  .hero__content {
    padding-top: 150px;
  }

  h1 {
    font-size: 56px;
  }

  .eyebrow,
  .section__heading h2,
  .footer__message {
    font-size: 34px;
  }

  .benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .instructions {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .instructions__image,
  .instructions__content {
    width: min(720px, 100%);
    justify-self: center;
  }

  .info-grid {
    gap: 28px;
  }

  .info-card {
    padding: 36px;
  }

  .info-card li {
    font-size: 22px;
  }

  .footer__bar {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer__bar img {
    max-width: 260px;
  }

  .footer__bar p {
    text-align: center;
  }
}

@media (max-width: 700px) {
  :root {
    --gutter: 20px;
  }

  .hero {
    min-height: 680px;
  }

  .hero__image,
  .footer__image {
    object-position: 62% center;
  }

  .hero__overlay {
    background: linear-gradient(
      90deg,
      rgba(17, 17, 17, 0.9) 0%,
      rgba(17, 17, 17, 0.66) 70%,
      rgba(17, 17, 17, 0.42) 100%
    );
  }

  .site-header {
    padding-top: 22px;
  }

  .site-header__logo {
    width: 230px;
  }

  .hero__content {
    padding-top: 120px;
    padding-bottom: 80px;
  }

  .hero__headline {
    align-items: center;
    flex-wrap: wrap;
  }

  .hero__icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  h1 {
    font-size: 36px;
  }

  .eyebrow,
  .section__heading h2,
  .footer__message {
    font-size: 30px;
  }

  .eyebrow {
    font-size: clamp(24px, 6.5vw, 30px);
  }

  .hero__session strong,
  .benefit-card h3,
  .steps h3,
  .info-card h3,
  .info-card li {
    font-size: 22px;
  }

  .section {
    padding: 70px 0;
  }

  .benefits__grid,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: 170px;
  }

  .instructions {
    padding: 70px var(--gutter);
  }

  .steps li {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 20px;
  }

  .steps span {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .info-card {
    padding: 28px;
  }

  .callout {
    padding: 28px;
  }

  .footer {
    min-height: 520px;
    padding: 80px 0 190px;
  }
}

@media (max-width: 430px) {
  .hero__headline {
    align-items: flex-start;
  }

  h1 {
    font-size: 32px;
  }

  .hero__copy p:last-child,
  .section__heading p,
  .steps p,
  .benefit-card p,
  .callout,
  .footer__bar {
    font-size: 15px;
  }

  .button {
    width: 100%;
  }

  .footer__bar nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero__content,
  .section {
    width: min(300px, calc(100% - (var(--gutter) * 2)));
  }

  .instructions__image,
  .instructions__content {
    width: min(300px, 100%);
  }

  .instructions {
    width: 100%;
  }

  h1 {
    font-size: 26px;
  }

  .hero__icon {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .section__heading h2,
  .footer__message {
    font-size: 26px;
  }

  .eyebrow {
    font-size: 16px;
  }

  .footer__bar {
    width: min(300px, calc(100% - (var(--gutter) * 2)));
  }
}
