/* Tablet */
@media (min-width: 640px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .plan-cards__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .how-it-works__steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__columns {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/* Desktop */
@media (min-width: 800px) {
  .nav__links {
    display: flex;
  }

  .nav__actions {
    display: flex;
  }

  .nav__hamburger {
    display: none;
  }

  .hero__container {
    flex-direction: row;
    text-align: left;
    align-items: center;
  }

  .hero__content {
    text-align: left;
    flex: 1;
  }

  .hero__cta {
    justify-content: flex-start;
  }

  .hero__metric-card {
    flex: 0 0 420px;
  }

  .hero__subtitle {
    max-width: 480px;
  }

  .hero__goal-carousel {
    text-align: left;
  }

  .hero__goal--exit {
    left: 0;
    transform: translateY(-15px);
  }

  .features__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .how-it-works__steps {
    grid-template-columns: repeat(3, 1fr);
  }

  .plan-cards__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__container {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer__brand {
    flex: 0 0 280px;
  }

  .footer__columns {
    flex: 1;
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Wide desktop */
@media (min-width: 1060px) {
  :root {
    --container-padding: 32px;
  }
}
