:root {
  --pink: #ff6b9d;
  --pink-light: #fff0f5;
  --pink-glow: #ffb6d5;
  --purple: #a855f7;
  --purple-light: #f3e8ff;
  --purple-deep: #7c3aed;
  --yellow: #fbbf24;
  --yellow-light: #fef9e7;
  --white: #fffbfe;
  --cream: #fef7ff;
  --text: #3d2052;
  --text-light: #6b5280;
  --mint: #a7f3d0;
  --sky: #bae6fd;
  --radius: 20px;
  --radius-sm: 12px;
}

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

body {
  font-family: 'Quicksand', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* NAV */
.nav {
  padding: 18px 24px;
  background: rgba(255, 251, 254, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--pink-light);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-icon {
  font-size: 1.6rem;
}
.logo-text {
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-tagline {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  display: none;
}
@media (min-width: 640px) {
  .nav-tagline { display: block; }
}

/* HERO */
.hero {
  position: relative;
  padding: 80px 24px 100px;
  background: linear-gradient(170deg, var(--pink-light) 0%, var(--purple-light) 40%, var(--yellow-light) 100%);
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--pink-glow) 0%, transparent 70%);
  opacity: 0.4;
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-sparkles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sparkle {
  position: absolute;
  font-size: 1.5rem;
  animation: float 6s ease-in-out infinite;
}
.s1 { top: 10%; left: 8%; animation-delay: 0s; }
.s2 { top: 15%; right: 12%; animation-delay: 1s; }
.s3 { top: 50%; left: 5%; animation-delay: 2s; font-size: 1.2rem; }
.s4 { bottom: 20%; right: 8%; animation-delay: 0.5s; }
.s5 { top: 25%; left: 80%; animation-delay: 3s; font-size: 2rem; }
.s6 { bottom: 30%; left: 15%; animation-delay: 1.5s; font-size: 1.8rem; }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.7; }
  50% { transform: translateY(-20px) rotate(10deg); opacity: 1; }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.hero-kicker {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--purple-deep);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}
.hero-gradient {
  background: linear-gradient(135deg, var(--pink), var(--purple-deep), var(--yellow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 580px;
  margin: 0 auto 32px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}
.badge {
  background: rgba(255,255,255,0.8);
  border: 1.5px solid var(--pink-glow);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  backdrop-filter: blur(4px);
}

/* CATEGORIES */
.categories {
  padding: 80px 24px;
  background: var(--white);
}
.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-title {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  text-align: center;
  color: var(--text);
  margin-bottom: 12px;
}
.section-sub, .section-subtitle {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.cat-card {
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--card-accent, var(--pink));
  border-radius: var(--radius) var(--radius) 0 0;
}
.cat-card:hover {
  border-color: var(--card-accent, var(--pink));
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(168, 85, 247, 0.1);
}
.cat-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}
.cat-card h3 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.cat-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* AGES */
.ages {
  padding: 80px 24px;
  background: linear-gradient(180deg, var(--purple-light) 0%, var(--pink-light) 100%);
}
.age-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.age-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease;
}
.age-card:hover {
  transform: translateY(-4px);
}
.age-range {
  font-family: 'Fredoka', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.age-little .age-range { color: var(--pink); }
.age-explorer .age-range { color: var(--purple-deep); }
.age-teen .age-range { color: var(--yellow); }
.age-name {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}
.age-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-light);
  margin-bottom: 18px;
}
.age-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.age-tags span {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 50px;
  background: var(--cream);
  color: var(--text);
}
.age-little .age-tags span { border: 1.5px solid var(--pink-glow); }
.age-explorer .age-tags span { border: 1.5px solid rgba(168, 85, 247, 0.3); }
.age-teen .age-tags span { border: 1.5px solid rgba(251, 191, 36, 0.4); }

/* EDUCATION */
.education {
  padding: 80px 24px;
  background: var(--white);
}
.section-subtitle {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.15rem;
  color: var(--purple-deep);
  font-weight: 600;
  margin-top: -8px;
}
.edu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.edu-item {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--pink-light), var(--purple-light));
  transition: transform 0.3s ease;
}
.edu-item:hover {
  transform: scale(1.03);
}
.edu-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}
.edu-item h4 {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text);
}
.edu-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* CLOSING */
.closing {
  padding: 100px 24px;
  background: linear-gradient(170deg, var(--cream) 0%, var(--pink-light) 50%, var(--purple-light) 100%);
  text-align: center;
  position: relative;
}
.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.closing-sparkle {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.closing-headline {
  font-family: 'Fredoka', sans-serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin-bottom: 20px;
}
.closing-text {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-light);
  margin-bottom: 32px;
}
.closing-values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.closing-values span {
  background: rgba(255,255,255,0.7);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  border: 1.5px solid var(--pink-glow);
}

/* NAV SHOP BUTTON */
.nav-shop-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  color: white;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 50px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-shop-btn:hover { opacity: 0.88; }

/* LANDING CTA BUTTON */
.landing-cta-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--pink), var(--purple-deep));
  color: white;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 50px;
  font-family: 'Fredoka', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 24px;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.25);
}
.landing-cta-btn:hover { opacity: 0.88; transform: translateY(-2px); }

/* CAT CARD LINK */
.cat-card-link { text-decoration: none; display: block; color: inherit; }

/* FOOTER */
.footer {
  padding: 40px 24px;
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}
.footer-inner {
  max-width: 800px;
  margin: 0 auto;
}
.footer-brand {
  margin-bottom: 20px;
}
.footer-logo {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pink-glow);
  display: block;
  margin-bottom: 8px;
}
.footer-brand p {
  font-size: 0.9rem;
  font-style: italic;
}
.footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 640px) {
  .hero { padding: 60px 20px 80px; }
  .hero-kicker { font-size: 0.8rem; letter-spacing: 1px; }
  .hero-sub { font-size: 1rem; }
  .badge { font-size: 0.78rem; padding: 6px 14px; }
  .categories, .ages, .education, .closing { padding: 60px 20px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat-card { padding: 24px 16px; }
  .cat-icon { font-size: 1.8rem; }
  .cat-card h3 { font-size: 1rem; }
  .cat-card p { font-size: 0.82rem; }
  .age-cards { grid-template-columns: 1fr; }
  .edu-grid { grid-template-columns: 1fr 1fr; }
}