*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: Roboto, "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #000;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

.container {
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.nav {
  background: #fff;
  padding: 20px 0 8px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffd608;
  color: #04165e;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.1px;
  text-transform: uppercase;
  text-decoration: none;
  height: 40px;
  padding: 0 28px;
  border: 0;
  cursor: pointer;
}

.blog-btn:hover {
  background: #e0c91f;
}

.brand img {
  display: block;
  width: 170px;
  height: auto;
}

.hero {
  padding: 72px 0 40px;
}

.title {
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  font-size: 36px;
  line-height: 108.8%;
  text-align: center;
  color: #000;
  margin: 0 0 16px;
}

.subtitle {
  font-family: "Roboto Slab", serif;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
  color: #04165e;
  margin: 0 0 12px;
}

.lede {
  font-family: "Roboto Slab", serif;
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #3c4858;
  max-width: 680px;
  margin: 0 auto 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
}

.hero-art {
  width: 100%;
  max-width: 480px;
  height: auto;
  justify-self: start;
}

.hero-copy {
  text-align: left;
}

.ditch {
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 108.8%;
  color: #000;
  margin: 0 0 10px;
}

.ditch-sub {
  font-family: "Roboto Slab", serif;
  font-size: 16px;
  line-height: 108.8%;
  color: #000;
  margin: 0 0 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ffd608;
  color: #04165e;
  font-family: Roboto, sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.1px;
  text-transform: uppercase;
  height: 42px;
  padding: 0 28px;
  border: 0;
}

.band {
  background: #04165e url("assets/Group 45.png") no-repeat right center;
  background-size: cover;
  padding: 48px 0;
  margin-top: 40px;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.band-item {
  font-family: "Roboto Slab", serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 1.25;
  color: #fff;
  margin: 0;
}

.band-item span {
  margin-right: 8px;
}

.footer {
  background-color: #000000de;
  color: #ffffffc7;
  padding: 40px 0 28px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.footer h2 {
  font-family: "Roboto Slab", serif;
  font-size: 20px;
  font-weight: 700;
  color: #ffffffc7;
  margin: 0 0 8px;
}

.footer p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.footer hr {
  border: 0;
  border-top: 1px solid #fff;
  margin: 28px 0 24px;
}

.social {
  display: flex;
  gap: 8px;
}

.social a {
  color: #ffffffc7;
  font-size: 22px;
  text-decoration: none;
}

.social a:hover {
  color: #ffd608;
}

.disclaimer {
  font-size: 12px !important;
  line-height: 14px !important;
  color: #aaa;
  margin-bottom: 16px !important;
}

.copyright {
  text-align: center;
  font-size: 13px !important;
  color: #ffffffc7;
  margin-top: 20px !important;
}

@media (max-width: 767px) {
  .hero {
    padding: 40px 0 24px;
  }

  .title {
    font-size: 22px;
  }

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

  .hero-art {
    display: none;
  }

  .hero-copy {
    text-align: center;
  }

  .ditch {
    font-size: 24px;
  }

  .band-grid {
    grid-template-columns: 1fr;
  }

  .band-item {
    font-size: 18px;
  }

  .footer-top {
    flex-direction: column;
  }
}
