.button {
  align-items: center;
  background: var(--green-accent);
  border: 0;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 500;
  justify-content: center;
  line-height: 1.25;
  min-height: 40px;
  padding: 12px 24px;
  text-align: center;
  text-decoration: none;
  transition: background 160ms ease, transform 160ms ease;
}

.button:hover {
  background: #248b31;
  transform: translateY(-1px);
}

.copy-block h2,
.contact-card h2,
.early-access h2 {
  color: var(--text);
  font-size: 45px;
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}

.copy-block p {
  color: var(--text);
  font-size: 17px;
  font-weight: 300;
  line-height: 2;
  margin: 15px 0 0;
}

.copy-block--dark h2,
.copy-block--dark p {
  color: var(--white);
}

.image-frame {
  margin: 0;
}

.image-frame img {
  width: 100%;
}

.icon-card {
  align-items: flex-start;
  display: flex;
  gap: 20px;
}

.icon-card__symbol {
  color: var(--muted);
  flex: 0 0 auto;
  font-size: 50px;
  line-height: 1;
  min-width: 54px;
  text-align: center;
}

.icon-card h3 {
  color: var(--text);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 20px;
  transition: color 160ms ease;
}

.icon-card:hover h3 {
  color: #19da31;
}

.icon-card p {
  color: var(--text);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 900px) {
  .copy-block h2,
  .early-access h2 {
    font-size: 37px;
  }

  .copy-block p {
    line-height: 1.8;
  }
}

@media (max-width: 767px) {
  .copy-block h2,
  .early-access h2 {
    font-size: 32px;
    line-height: 1.18;
  }

  .copy-block p,
  .icon-card p {
    font-size: 16px;
    line-height: 1.7;
  }

  .icon-card {
    display: block;
    text-align: center;
  }

  .icon-card__symbol {
    display: block;
    font-size: 42px;
    margin: 0 0 18px;
  }

  .icon-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }
}

@media (max-width: 420px) {
  .button {
    display: flex;
    padding-left: 18px;
    padding-right: 18px;
    width: 100%;
  }
}
