* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lilita One", sans-serif;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.52)),
    url("assets/background.webp") center center / cover no-repeat;
  z-index: -1;
}

.card {
  margin-top: 200px;
  background: #ffffff;
  max-width: 420px;
  width: 90vw;
  padding: 90px 12px 20px;
  border-radius: 40px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  position: relative;
  text-align: center;
}

.logo-wrap {
  position: absolute;
  left: 50%;
  top: -150px;
  transform: translateX(-50%);
  width: 300px;
  height: 300px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 18px;
  overflow: hidden;
  clip-path: inset(0 0 60px 0);
}

.logo-wrap img {
  max-width: 80%;
  height: auto;
  display: block;
}

.intro-text {
  font-family: "Nunito", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.45;
  color: #333;
  margin-bottom: 20px;
  text-wrap: pretty;
}

.intro-text-bottom {
  margin-top: 22px;
  margin-bottom: 14px;
}

.intro-text-small {
  margin-bottom: 0;
}

.button-column {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.button-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 20px 0;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 20px;
  padding-left: 20px;
  padding-right: 20px;
}

.cta-btn {
  border: none;
  border-radius: 18px;
  min-height: 68px;
  padding: 10px 14px;
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.18);
  width: 75%;
  margin: 0 auto;
  cursor: pointer;
  font-family: "Lilita One", sans-serif;
  text-align: center;
  line-height: 1.15;
  letter-spacing: 0.4px;
}

.button-grid .cta-btn {
  width: 90%;
  margin: 0 auto;
}

.button-grid .cta-btn:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  width: 72%;
  max-width: 300px;
  justify-self: center;
}

.cta-blue {
  background: #3b7db2;
}

.cta-yellow {
  background: #f9be51;
}

.cta-pink {
  background: #f886a8;
}

.cta-green {
  background: #36905e;
}

.cta-red {
  background: #ed6957;
}

.email-pill {
  display: inline-block;
  padding: 12px 22px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  font-size: 16px;
  font-weight: 700;
  color: #139a55;
  font-family: "Nunito", sans-serif;
  text-align: center;
  margin-bottom: 40px;
}

.email-pill a {
  color: inherit;
  text-decoration: none;
}

.footer-wrap {
  text-align: center;
}

@media (max-width: 600px) {
  body {
    justify-content: flex-start;
    padding-top: 24px;
    gap: 12px;
  }

  .card {
    margin-top: 140px;
    padding: 80px 20px 20px;
    max-width: 360px;
    width: calc(100% - 32px);
  }

  .logo-wrap {
    top: -130px;
    width: 230px;
    height: 230px;
    clip-path: inset(0 0 45px 0);
  }

  .intro-text {
    font-size: 14px;
    margin-bottom: 16px;
    text-wrap: pretty;
  }

  .button-grid {
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    max-width: 100%;
    gap: 14px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .cta-btn {
    min-height: 60px;
    font-size: 16px;
    padding: 8px 10px;
    width: 80%;
  }

  .button-grid .cta-btn {
    width: 90%;
    margin: 0 auto;
  }

  .button-grid .cta-btn:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: 78%;
    max-width: 260px;
    justify-self: center;
  }

  .email-pill {
    font-size: 15px;
    padding: 10px 20px;
    margin-bottom: 32px;
  }
}