:root {
  --sun: #ffd54a;
  --orange: #ff8a4c;
  --pink: #ff5d8f;
  --violet: #7c5cff;
  --sky: #4ecdc4;
  --ink: #1d1648;
  --paper: #fff8ef;
  --shadow: 0 18px 50px rgba(29, 22, 72, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  min-height: 100%;
}

body {
  font-family: Nunito, system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, #ffe08a 0%, transparent 55%),
    radial-gradient(900px 500px at 110% 10%, #ffb3d0 0%, transparent 50%),
    radial-gradient(800px 500px at 50% 120%, #7de8df 0%, transparent 55%),
    linear-gradient(180deg, #89d4ff 0%, #c9f5e8 55%, #ffe9b8 100%);
  overflow-x: hidden;
}

.sky {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.55;
  animation: float 9s ease-in-out infinite;
}

.blob-a {
  width: 180px;
  height: 180px;
  left: 8%;
  top: 18%;
  background: var(--pink);
  animation-delay: -2s;
}

.blob-b {
  width: 140px;
  height: 140px;
  right: 10%;
  top: 12%;
  background: var(--violet);
  animation-duration: 11s;
}

.blob-c {
  width: 220px;
  height: 220px;
  right: 18%;
  bottom: 8%;
  background: var(--sun);
  animation-delay: -4s;
}

.star {
  position: absolute;
  color: #fff;
  font-size: 1.4rem;
  text-shadow: 0 4px 10px rgba(29, 22, 72, 0.2);
  animation: twinkle 2.8s ease-in-out infinite;
}

.s1 { top: 12%; left: 22%; }
.s2 { top: 28%; right: 24%; animation-delay: 0.4s; font-size: 1.8rem; }
.s3 { bottom: 22%; left: 14%; animation-delay: 1s; }
.s4 { bottom: 16%; right: 12%; animation-delay: 1.6s; }

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-content: center;
  gap: 1.6rem;
  padding: 2.4rem 1.2rem 3rem;
  text-align: center;
}

.brand .logo {
  width: 92px;
  height: 92px;
  margin: 0 auto 0.8rem;
  filter: drop-shadow(0 10px 16px rgba(255, 138, 76, 0.4));
  animation: bounce 2.6s ease-in-out infinite;
}

.eyebrow {
  display: inline-block;
  background: #fff;
  color: var(--violet);
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(124, 92, 255, 0.18);
}

h1 {
  font-family: Fredoka, Nunito, sans-serif;
  font-size: clamp(3.4rem, 12vw, 6.4rem);
  line-height: 0.95;
  margin: 0.35rem 0 0.2rem;
  color: #fff;
  text-shadow:
    0 6px 0 #ff5d8f,
    0 14px 24px rgba(29, 22, 72, 0.25);
}

.tagline {
  font-size: clamp(1.05rem, 3vw, 1.4rem);
  font-weight: 800;
  color: var(--ink);
}

.card {
  max-width: 38rem;
  margin: 0 auto;
  background: var(--paper);
  border-radius: 28px;
  padding: 1.6rem 1.4rem 1.5rem;
  box-shadow: var(--shadow);
  border: 4px solid #fff;
}

.badge {
  display: inline-block;
  background: var(--sky);
  color: #083c39;
  font-weight: 800;
  font-size: 0.82rem;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.7rem;
}

.card h2 {
  font-family: Fredoka, Nunito, sans-serif;
  font-size: clamp(1.35rem, 4vw, 1.85rem);
  line-height: 1.2;
}

.lead {
  font-size: 1.08rem;
  font-weight: 800;
  margin: 0.35rem 0 0.8rem;
}

.note {
  color: #4a4570;
  line-height: 1.5;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  list-style: none;
}

.pills li {
  background: #fff;
  font-weight: 800;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(29, 22, 72, 0.12);
}

.pills li:nth-child(1) { color: #c2410c; }
.pills li:nth-child(2) { color: #7c3aed; }
.pills li:nth-child(3) { color: #0f766e; }
.pills li:nth-child(4) { color: #be185d; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-18px) rotate(8deg); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.35; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 640px) {
  .blob-a,
  .blob-c {
    width: 110px;
    height: 110px;
  }
}
