@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+SC:wght@400;600;800&display=swap");

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

body {
  font-family: "Noto Sans SC", sans-serif;
  background: radial-gradient(circle at top, #fef6ff, #e4f5ff 55%, #fff7e2);
  color: #2b2b2b;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
}

.page {
  width: min(1000px, 100%);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero {
  background: #ffffffcc;
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 24px 60px rgba(88, 68, 113, 0.18);
  backdrop-filter: blur(10px);
}

.badge {
  display: inline-flex;
  padding: 6px 14px;
  background: #ffdaff;
  color: #6a1fa0;
  font-weight: 600;
  border-radius: 999px;
  margin-bottom: 16px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 46px);
  margin-bottom: 12px;
  font-weight: 800;
}

.subtitle {
  font-size: 18px;
  color: #4f4f4f;
  margin-bottom: 24px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

button {
  border: none;
  padding: 12px 24px;
  border-radius: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.primary {
  background: #6b5bff;
  color: #fff;
}

.ghost {
  background: #fff5cc;
  color: #7a5c00;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: #ffffffb8;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 16px 40px rgba(30, 46, 74, 0.12);
  min-height: 150px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h2 {
  font-size: 20px;
  font-weight: 700;
}

.card ul {
  list-style: none;
  display: grid;
  gap: 8px;
}

.card ul li {
  background: #f3f0ff;
  padding: 8px 12px;
  border-radius: 12px;
}

.weather {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
}

.emoji {
  font-size: 28px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chips span {
  background: #e8fff1;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 14px;
}

.statement {
  background: #ffffffde;
  border-radius: 24px;
  padding: 28px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: center;
  box-shadow: 0 18px 50px rgba(65, 86, 132, 0.16);
}

.blob {
  width: 80px;
  height: 80px;
  border-radius: 30% 70% 55% 45%;
  background: linear-gradient(135deg, #ff9ecf, #f9d423, #6ad9ff);
  animation: blob 6s ease-in-out infinite;
}

.statement p {
  font-size: 18px;
  color: #3d3d3d;
  line-height: 1.6;
}

.dance {
  animation: dance 0.8s ease-in-out infinite;
}

@keyframes blob {
  0% {
    border-radius: 30% 70% 55% 45%;
    transform: rotate(0deg);
  }
  50% {
    border-radius: 60% 40% 30% 70%;
    transform: rotate(6deg);
  }
  100% {
    border-radius: 30% 70% 55% 45%;
    transform: rotate(0deg);
  }
}

@keyframes dance {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-6px) rotate(-3deg);
  }
  50% {
    transform: translateY(0) rotate(3deg);
  }
  75% {
    transform: translateY(-4px) rotate(-2deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 28px;
  }

  .statement {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .blob {
    margin: 0 auto;
  }
}
