* {
  box-sizing: border-box;
}

:root {
  --off-black: #1d1d1f;
  --text-color: var(--off-black);
}

body {
  font-family: system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-synthesis: none;

  font-size: 16px;
  line-height: 1.5;

  margin: 0;
  padding: 0;
}

h1, h2, h3, p {
  color: var(--text-color);
  margin: 0;
  padding: 0;
}

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

.privacy-link {
  text-decoration: none;
  color:dodgerblue
}

.privacy-link:hover {
  text-decoration: underline;
}

.privacy-link:active {
  opacity: 0.5;
}

.module-content {
  padding: 40px 24px;
}

.hero {
  background-color: #f5f5f7;

  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;

  text-align: center;
  box-sizing: border-box;
}

.hero .copy-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-size: 48px;
  font-weight: 600;
  margin: 0;
  line-height: 1.1;
}

dl, dt, dd {
  margin: 0;
}

.subhead {
  font-size: 24px;
  margin-top: 20px;
  max-width: 650px;
  line-height: 1.2;
  text-wrap: pretty;
}

.hero-screenshot{
  width: auto;
  height: 70vh;
}

.app-store-download {
  height: 56px;
  margin-top: 30px;
  width: auto;
}

.features {
  background-color: rgba(25, 195, 65, 0.05);
  margin-top: 12px;
}

.features-content {
  max-width: 1200px;
  margin: auto;
}

h2 {
  font-size: 16px;
}

h3 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}

.features .copy-wrapper p {
  margin-top: 8px;
  font-size: 20px;
}
.features-title {
    text-align: center;
    color: #19C341;
    font-weight: bold;
}

.copy-and-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: var(--column-gap);
  margin-top: 40px;

  --column-gap: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(var(--columns), 1fr);
  grid-template-rows: repeat(var(--rows), 1fr);
  column-gap: var(--column-gap);
  row-gap: 40px;
  margin-top: 4px;
  color: var(--text-color);
  grid-auto-flow: column;
  grid-column: span 2;

  --columns: 2;
  --rows: 3;
}

.feature-grid-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 8px;
}

.feature-grid-item svg {
  color: red;
}

.feature-grid-item dt {
  font-weight: bold;
  font-size: 18px;
}

@media screen and (max-width: 1024px) {
  .copy-and-features {
    display: block;
    margin-top: 24px;
  }

  .feature-grid {
    margin-top: 48px;
    grid-column: auto;
  }
}

@media screen and (max-width: 640px) {
  .feature-grid {
    grid-template-rows: repeat(var(--rows), max-content);
    --columns: 1;
    --rows: 6;
  }

  h1 {
    font-size: 40px;
  }

  .subhead {
    font-size: 21px;
  }
}

footer {
  background-color: #f5f5f7;
  margin-top: 12px;
}

footer .module-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-legal-text, footer a{
  font-size: 12px;
  color: rgba(0, 0, 0, 0.5);
  text-align: center;
}

footer a {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.75);
  margin-top: 5px;
}

footer a:hover {
  text-decoration: underline;
}

.copy-wrapper .coming-soon {
  margin-top: 40px;
}