@media (max-width: 768px) {

  .brand-text {
    display: none;
  }

  .brand-logo {
    height: 48px;
  }

  .cta-pill {
    width: auto;
    display: inline-flex;
    justify-content: center;
    white-space: nowrap;
  }

  .brand-name {
    font-size: 0.85rem;
    font-weight: 700;
  }

  .nav-inner {
    padding: 0.6rem 1rem;
  }

  .nav-links {
    flex-shrink: 0;
  }

  .hero-meta {
    grid-template-columns: 1fr;
  }

  .countdown {
    justify-content: center;
  }

  .footer-inner {
    text-align: center;
    align-items: center;
  }

  .footer-links {
    justify-content: center;
  }

}

@media (min-width: 769px) {

  .hero-meta {
    grid-template-columns: repeat(3, 1fr);
    justify-content: center;
  }

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

}

@media (min-width: 1024px) {

  .hero-copy h1 {
    font-size: 5rem;
  }

}