body {
  margin: 0;
  background: #5755FF;
  font-family: "Inter", sans-serif;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 100svh;
  width: 100%;
}

/* MAIN LAYOUT */
.landing {
  flex: 1;
  padding: 0 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.content {
  max-width: 620px;
}

/* LOGO */
.logo {
  margin: 0 0 32px;
  max-width: 256px;
}

.logo .yellow {
  color: #FFB800;
}

.logo .green {
  color: #00D34A;
}

/* TEXT */
.subtitle {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 300;
}

.subtitle strong {
  font-weight: 600;
}

.highlight {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* BUTTON */
.cta {
  display: inline-block;
  background: #FF6A00;
  color: white;
  text-decoration: none;
  padding: 14px 40px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 400;
  transition: background 0.2s ease;
}

.cta:hover {
  background: #ff5a00;
}

/* FOOTER */
.footer {
  max-width: 100%;
  padding: 40px 16px;
  text-align: center;
  font-size: 12px;
  opacity: 0.8;
  border-top: 1px solid white;
}

/* RESPONSIVE */
@media (max-width: 480px) {
  .logo {
    max-width: 160px;
  }

  .subtitle,
  .highlight {
    font-size: 16px;
  }

  .cta {
    width: 100%;
    padding: 14px 0;
    font-size: 15px;
  }
}