:root {
  color-scheme: light;
  --bg: #fff4fb;
  --bg-2: #ffe7f4;
  --card: rgba(255, 255, 255, 0.92);
  --card-strong: rgba(255, 255, 255, 0.98);
  --text: #3b2a3f;
  --muted: #7b5f80;
  --accent: #ff7ab6;
  --accent-2: #8ee6cf;
  --accent-3: #ffd1a6;
  --border: rgba(255, 122, 182, 0.2);
  --shadow: 0 18px 40px rgba(255, 122, 182, 0.18);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 10% 10%, rgba(255, 122, 182, 0.25), transparent 60%),
              radial-gradient(900px 600px at 90% 20%, rgba(142, 230, 207, 0.3), transparent 60%),
              linear-gradient(180deg, #fff4fb 0%, #fffafc 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 20px 80px;
  position: relative;
  z-index: 1;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 20px;
}

.brand-badge {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  background: linear-gradient(135deg, #ff7ab6, #a78bfa);
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
  letter-spacing: 0.5px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
  color: var(--muted);
}

.sparkle-field {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.sparkle {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffffff 0%, #ffe1f0 60%, transparent 70%);
  opacity: 0.8;
  animation: twinkle 4s ease-in-out infinite;
}

.sparkle.s1 { top: 10%; left: 6%; animation-delay: 0s; }
.sparkle.s2 { top: 22%; left: 80%; animation-delay: 1s; }
.sparkle.s3 { top: 65%; left: 12%; animation-delay: 2s; }
.sparkle.s4 { top: 75%; left: 70%; animation-delay: 0.6s; }
.sparkle.s5 { top: 35%; left: 45%; animation-delay: 1.6s; }
.sparkle.s6 { top: 12%; left: 45%; animation-delay: 2.4s; }
.sparkle.s7 { top: 55%; left: 88%; animation-delay: 1.2s; }
.sparkle.s8 { top: 82%; left: 30%; animation-delay: 2.8s; }

.sticker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 0;
}

.sticker {
  background: #fff5fb;
  border: 2px dashed rgba(255, 122, 182, 0.35);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  color: #6a4c75;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  animation: floaty 5s ease-in-out infinite;
}

.sticker:nth-child(2n) {
  animation-delay: 0.6s;
}

.sticker:nth-child(3n) {
  animation-delay: 1.2s;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 30px;
}

.hero-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.hero h1 {
  font-size: 44px;
  line-height: 1.1;
  margin: 0 0 16px;
}

.hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.cta {
  border-radius: 999px;
  padding: 12px 20px;
  border: 1px solid transparent;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta.primary {
  background: linear-gradient(135deg, #ff7ab6, #a78bfa);
  color: white;
  box-shadow: 0 14px 24px rgba(255, 122, 182, 0.25);
}

.cta.secondary {
  border-color: rgba(255, 122, 182, 0.25);
  color: var(--text);
  background: rgba(255, 255, 255, 0.8);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  display: grid;
  gap: 8px;
  box-shadow: 0 12px 24px rgba(255, 122, 182, 0.12);
}

.feature h3 {
  margin: 0;
  font-size: 18px;
}

.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.section {
  margin-top: 60px;
}

.section h2 {
  margin: 0 0 16px;
  font-size: 28px;
}

.section p {
  color: var(--muted);
  line-height: 1.6;
}

.highlight {
  background: linear-gradient(135deg, rgba(255, 122, 182, 0.25), rgba(167, 139, 250, 0.25));
  border: 1px solid var(--border);
  padding: 20px;
  border-radius: 16px;
}

.footer {
  margin-top: 80px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 13px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.badge {
  border: 1px solid rgba(255, 122, 182, 0.25);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  color: #6a4c75;
  background: #fff0f7;
}

.card-list {
  display: grid;
  gap: 16px;
}

.card {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 18px;
  box-shadow: 0 10px 18px rgba(255, 122, 182, 0.08);
}

.card strong {
  display: block;
  margin-bottom: 6px;
}

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

.kbd {
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.08);
  font-size: 12px;
}

.hero-visual {
  display: grid;
  gap: 16px;
}

.mascot-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  background: var(--card-strong);
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: 0 14px 26px rgba(255, 122, 182, 0.16);
}

.mascot-face {
  width: 72px;
  height: 72px;
  border-radius: 24px;
  background: linear-gradient(135deg, #ffb4d9, #b9b4ff);
  position: relative;
  display: grid;
  place-items: center;
  border: 3px solid rgba(255, 255, 255, 0.7);
  animation: wobble 6s ease-in-out infinite;
}

.mascot-face .eye {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #3b2a3f;
  border-radius: 50%;
  top: 24px;
}

.mascot-face .eye.left { left: 20px; }
.mascot-face .eye.right { right: 20px; }

.mascot-face .mouth {
  position: absolute;
  width: 18px;
  height: 10px;
  border-bottom: 3px solid #3b2a3f;
  border-radius: 0 0 20px 20px;
  bottom: 20px;
}

.mascot-face .blush {
  position: absolute;
  width: 12px;
  height: 8px;
  background: #ff8ac7;
  border-radius: 999px;
  top: 38px;
  opacity: 0.7;
}

.mascot-face .blush.left { left: 10px; }
.mascot-face .blush.right { right: 10px; }

.mascot-label {
  display: grid;
  gap: 6px;
}

.hero-stat {
  background: var(--card-strong);
  border-radius: 16px;
  padding: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 18px rgba(255, 122, 182, 0.12);
}

@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes twinkle {
  0%, 100% { transform: scale(0.8); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 1; }
}

@keyframes wobble {
  0%, 100% { transform: rotate(-2deg); }
  50% { transform: rotate(2deg); }
}

.hero-stat h4 {
  margin: 0 0 6px;
  font-size: 16px;
}

.hero-stat p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

@media (max-width: 700px) {
  .hero h1 {
    font-size: 34px;
  }
}
