:root {
  --gray: #6e6e6e;
  --muted: #8d8d8d;
  --green: #2dcf3c;
  --blue: #1e8ff4;
  --orange: #ffa72c;
  --nav-green: #7ed321;
  --line: #c1ec93;
  --page-gradient: linear-gradient(180deg, #fff 0%, #fff 20%, #e0ffbe 100%);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #f7f7f7;
  color: var(--gray);
  font-family: Roboto, Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

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

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

.landing {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding: 40px 35px;
  background: var(--page-gradient);
}

.hero,
.topbar,
.hero-icons,
.download-row,
.feature-copy,
.closing {
  display: flex;
}

.hero,
.feature-copy,
.closing {
  flex-direction: column;
}

.hero,
.topbar,
.hero-icons,
.download-row,
.closing {
  align-items: center;
}

.topbar {
  justify-content: center;
  width: 100%;
  height: 42px;
}

.logo {
  width: min(265px, 100%);
  height: auto;
}

.nav {
  display: none;
}

.hero-icons {
  justify-content: center;
  gap: 15px;
  width: 100%;
  margin-top: 40px;
}

.hero-icons img {
  flex: 1 1 0;
  width: 0;
  max-width: 200px;
  aspect-ratio: 200 / 197;
  object-fit: contain;
}

h1 {
  width: 100%;
  margin-top: 30px;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  letter-spacing: 0;
  text-align: center;
}

.subtitle {
  width: 100%;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0;
  text-align: center;
}

.text-green {
  color: var(--green);
}

.text-blue {
  color: var(--blue);
}

.text-orange {
  color: var(--orange);
}

.download-row {
  justify-content: center;
  gap: 20px;
  width: 100%;
  margin-top: 30px;
}

.download-row a {
  flex: 0 1 150px;
}

.download-row img {
  width: 100%;
  height: auto;
}

.feature,
.closing {
  width: 100%;
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.feature {
  display: flex;
  flex-direction: column;
}

.feature-media {
  width: 100%;
}

.feature-media img {
  width: 100%;
  aspect-ratio: 1204 / 1010;
  object-fit: contain;
}

.feature-copy {
  align-items: flex-start;
  width: 100%;
}

.feature-copy h2 {
  width: 100%;
  margin-top: 20px;
  font-size: 22px;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: 0;
}

.feature-copy p {
  width: 100%;
  margin-top: 30px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0;
}

.shortcut {
  width: 150px;
  height: auto;
  margin-top: 20px;
}

.feature-copy small {
  margin-top: 10px;
  padding-left: 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
  line-height: 20px;
}

.closing {
  text-align: center;
}

.closing p {
  width: 100%;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0;
}

.closing strong {
  font-weight: 700;
}

.desktop-line-break {
  display: none;
}

footer {
  margin-top: 50px;
  color: var(--gray);
  font-size: 15px;
  font-weight: 400;
  line-height: 30px;
  text-align: center;
}

@media (min-width: 1100px) {
  .landing {
    width: 100%;
    padding: 40px 50px;
  }

  .topbar {
    position: relative;
    height: 40px;
    justify-content: center;
  }

  .logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 265px;
  }

  .nav {
    display: flex;
    align-items: center;
    gap: 76px;
    color: var(--nav-green);
    font-size: 20px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
  }

  .hero-icons {
    gap: 50px;
    margin-top: 70px;
  }

  .hero-icons img {
    flex: 0 0 200px;
    width: 200px;
  }

  h1 {
    margin-top: 50px;
    font-size: 28px;
    line-height: 40px;
  }

  .subtitle {
    font-size: 20px;
    line-height: 40px;
  }

  .download-row {
    gap: 70px;
    margin-top: 50px;
  }

  .download-row a {
    flex-basis: 243px;
  }

  .feature,
  .closing {
    margin-top: 70px;
    padding-top: 70px;
  }

  .feature {
    display: grid;
    align-items: center;
    justify-content: center;
  }

  .feature-media-first {
    grid-template-columns: minmax(0, 602px) 530px;
  }

  .feature-text-first {
    grid-template-columns: 490px minmax(0, 602px);
  }

  .feature-text-first .feature-media {
    order: 2;
  }

  .feature-text-first .feature-copy {
    order: 1;
  }

  .feature-media img {
    width: 100%;
    height: auto;
    max-width: 602px;
    max-height: 505px;
  }

  .feature-media-first .feature-copy {
    padding-left: 80px;
  }

  .feature-text-first .feature-copy {
    padding-right: 40px;
  }

  .feature-copy {
    align-self: stretch;
    justify-content: flex-start;
    padding-top: 10px;
  }

  .feature-copy h2 {
    margin-top: 0;
    font-size: 28px;
    line-height: 40px;
  }

  .feature-copy p {
    margin-top: 20px;
    font-size: 23px;
    line-height: 40px;
  }

  .shortcut {
    width: 190px;
  }

  .feature-copy small {
    margin-top: 0;
    font-size: 15px;
    line-height: 40px;
  }

  .closing p {
    font-size: 28px;
    line-height: 40px;
  }

  .desktop-line-break {
    display: inline;
  }

  footer {
    margin-top: 100px;
    font-size: 18px;
    line-height: 30px;
  }
}
