@charset "UTF-8";
/* CSS Document */

body {
  margin: 0;
  background: #efefef;
  color: #141414;
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 500;
}

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

a {
  text-decoration: none;
}


/* HEADER */

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  z-index: 50;
}

header img {
  height: 55px;
}

.header-buttons {
  display: flex;
  gap: 12px;
}

.header-buttons a {
  padding: 14px 22px;
  border-radius: 8px;
  font-weight: 700;
  color: #141414;
  background: #07c78f;
}

.header-buttons .login {
  background: #ffffff;
}


/* HERO */

.hero {
  background: #ed1c24;
  background: linear-gradient(0deg,rgba(237, 28, 36, 1) 0%, rgba(194, 22, 22, 1) 100%);
  padding: 120px 24px 60px;
  color: #ffffff;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

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

.hero-image-wrap {
  flex: 1;
  text-align: right;
}

.hero-image {
  width: 100%;
  max-width: 460px;
  margin-left: auto;
}

.hero-safe-logos {
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-safe-logos img {
  height: 24px;
}

.tab {
  display: inline-block;
  background: #141414;
  border-radius: 999px;
  padding: 8px 18px;
  margin-bottom: 18px;
}

.hero h1 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 900;
  color: #ffffff;
}

.hero h2 {
  margin: 0 0 16px;
  font-size: 4.2rem;
  line-height: 0.9;
  letter-spacing: -3px;
  font-weight: 900;
}

.hero h3 {
  margin: 0 0 30px;
  font-size: 1.8rem;
  line-height: 1.1;
  letter-spacing: -1px;
  font-weight: 900;
}

.cta-btn {
  display: inline-block;
  background: #07c78f;
  color: #141414;
  padding: 16px 70px;
  border-radius: 8px;
  font-weight: 900;
}

.term-link {
  display: inline-block;
  background: rgba(0,0,0,0.5);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
}
.term-link-pod {
  display: inline-block;
  background: rgba(0,0,0,0.1);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.8rem;
}


/* PAYMENT STRIP */

.payment-strip {
  background: #141414;
  padding: 28px 20px;
  text-align: center;
}

.payment-strip p {
  color: #ffffff;
  margin-bottom: 20px;
}

.payment-strip-logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.payment-strip-logos img {
  height: 36px;
  background: #202020;
  padding: 10px 14px;
  border-radius: 10px;
}


/* PROMOS */

.pod {
  padding: 70px 20px;
}

.section-heading {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 40px;
  font-weight: 900;
}

.pod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.pod {
  background: #ed1c24;
  border-radius: 14px;
  padding: 24px;
  color: #ffffff;
  text-align: center;
}

.pod strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 12px;
  font-weight: 900;
}

.center-btn {
  text-align: center;
  margin-top: 40px;
}



/* SPLIT SECTIONS */

.split-section {
  padding: 80px 20px;
}

.split-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.reverse .split-grid {
  flex-direction: row-reverse;
}

.split-image,
.split-copy {
  flex: 1;
}

.split-copy h2 {
  margin: 0 0 20px;
  font-size: 4.5rem;
  line-height: 0.9;
  font-weight: 900;
}

.split-copy h2 span {
  color: #ed1c24;
  display: block;
}

.split-copy p {
  max-width: 450px;
  line-height: 1.5;
  margin-bottom: 30px;
}


/* TERMS */

.full-terms {
  background: #ffffff;
  padding: 40px 20px;
  line-height: 1.6;
}


/* FOOTER */

footer {
  background: #141414;
  color: #ffffff;
  text-align: center;
  padding: 40px 20px;
}

.safe-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.safe-logos img {
  height: 28px;
}

footer a {
  color: #ffffff;
}


/* MOBILE */

@media (max-width: 768px) {

  header {
    padding: 12px 16px;
  }

  header img {
    height: 44px;
  }

  .header-buttons a {
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .hero {
    padding: 90px 20px 50px;
  }

  .hero-inner {
    flex-direction: column-reverse;
    text-align: center;
  }

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

  .hero-image-wrap {
    text-align: center;
  }

  .hero-image {
    margin: 0 auto;
  }

  .hero-safe-logos {
    justify-content: center;
  }

  .hero h2 {
    font-size: 3rem;
  }

  .hero h3 {
    font-size: 1.3rem;
  }

  .section-heading {
    font-size: 2rem;
  }

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

  .split-grid,
  .reverse .split-grid {
    flex-direction: column;
    text-align: center;
  }

  .split-copy h2 {
    font-size: 3rem;
  }

  .split-copy p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-btn {
    padding: 16px 50px;
  }

}

/* Default visibility */

.mobile-logos {
  display: none;
}

.desktop-logos {
  display: flex;
}


/* Mobile */

@media (max-width: 768px) {

  .desktop-logos {
    display: none;
  }

  .mobile-logos {
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }

}