:root {
  --brand-color-50: #fefaec;
  --brand-color-100: #f8f5e3;
  --brand-color-200: #faebab;
  --brand-color-300: #f5d76e;
  --brand-color-400: #facb4b;
  --brand-color-500: #e9b117;
  --brand-color-600: #e9ad0a;
  --brand-color-700: #f5d76e;
  --brand-color-800: #411b06;
  --brand-color-900: #2e1303;
  --brand-color-950: #1b0b02;
}

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: #fff;
  font-family: "Poppins", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  color: var(--brand-color-950);
}

.main-content {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
  background: #fff;
}

.subtitle {
  font-size: 24px;
  color: var(--brand-color-800);
  margin-bottom: 16px;
  font-weight: 600;
  letter-spacing: 0.16px;
}

.headline {
  font-size: 48px;
  font-weight: 800;
  max-width: 860px;
  text-align: center;
  color: var(--brand-color-950);
  margin: 0 0 32px 0;
  line-height: 1.15;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  width: 100%;
  max-width: 480px;
}

.benefits-list li {
  font-size: 18px;
  display: flex;
  align-items: flex-start;
  margin-bottom: 19.2px;
  color: var(--brand-color-950);
  background: var(--brand-color-100);
  border-radius: 12px;
  padding: 12px 16px;
  box-shadow: 0 2px 8px 0 rgba(105, 76, 255, 0.06);
}

.benefits-list li a {
  text-decoration: none;
  color: inherit;
}

.bullet {
  font-size: 22px;
  display: flex;
  align-items: center;
  margin-right: 14.4px;
  margin-top: 4.8px;
  color: var(--brand-color-500);
  flex-shrink: 0;
}

.cta-button {
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  background: var(--brand-color-700);
  color: #000;
  font-weight: 600;
  padding: 16px 35.2px;
  border: none;
  border-radius: 99px;
  text-decoration: none;
  box-shadow: 0 4px 16px 0 rgba(105, 76, 255, 0.13);
  transition: background 0.2s;
  margin-bottom: 16px;
  gap: 11.2px;
  cursor: pointer;
}

.cta-button:hover,
.cta-button:focus {
  background: var(--brand-color-500);
}

.button-icon {
  font-size: 22px;
}

/* Animation keyframes for moving right and back */
@keyframes iconMoveRight {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(8px);
  }
}

/* Apply animation on hover */
.cta-button:hover .button-icon,
.cta-button:focus .button-icon {
  animation: iconMoveRight 0.7s ease-in-out infinite;
}

.join-note {
  font-size: 16px;
  /* color: var(--brand-color-700); */
  margin-top: 0;
  text-align: center;
}

.join-note strong {
  color: var(--brand-color-900);
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .subtitle {
    font-size: 20px;
  }

  .headline {
    font-size: 42px;
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .subtitle {
    font-size: 20px;
  }

  .headline {
    font-size: 40px;
    max-width: 600px;
  }
}
