/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:    #e84c9c;
  --orange:  #f97316;
  --purple:  #c026d3;
  --grad:    linear-gradient(135deg, #e84c9c 0%, #f97316 100%);
  --grad-soft: linear-gradient(135deg, #fdf2f8 0%, #fff7ed 100%);
  --text:    #1e1b4b;
  --muted:   #6b7280;
  --border:  #f3e8ff;
  --white:   #ffffff;
  --radius:  16px;
  --shadow:  0 4px 24px rgba(232,76,156,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a  { color: var(--pink); text-decoration: none; }
a:hover { text-decoration: underline; }

/* ===== NAV ===== */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 5vw;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { width: 36px; height: 36px; }
.nav-logo span { font-weight: 700; font-size: 1.2rem; background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a { color: var(--text); font-size: .95rem; font-weight: 500; }
.nav-links a:hover { color: var(--pink); text-decoration: none; }
.btn-nav {
  background: var(--grad); color: var(--white) !important;
  padding: 9px 22px; border-radius: 50px; font-weight: 600;
  transition: opacity .2s; white-space: nowrap;
}
.btn-nav:hover { opacity: .88; text-decoration: none !important; }

/* ===== HERO ===== */
.hero {
  background: var(--grad-soft);
  padding: 80px 5vw 90px;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 48px; justify-content: center;
}
.hero-text { max-width: 520px; }
.hero-text .eyebrow {
  display: inline-block;
  background: var(--grad); color: var(--white);
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 50px; margin-bottom: 18px;
}
.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800; line-height: 1.18; margin-bottom: 20px;
}
.hero-text h1 span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-text p { font-size: 1.15rem; color: var(--muted); margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad); color: var(--white);
  padding: 14px 28px; border-radius: 50px; font-weight: 700; font-size: 1rem;
  box-shadow: var(--shadow); transition: transform .2s, opacity .2s;
}
.btn-primary:hover { transform: translateY(-2px); opacity: .9; text-decoration: none; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--text);
  padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 1rem;
  border: 2px solid var(--border); transition: border-color .2s;
}
.btn-secondary:hover { border-color: var(--pink); text-decoration: none; }

.hero-image { position: relative; }
.hero-image img { width: 220px; filter: drop-shadow(0 20px 40px rgba(232,76,156,.25)); animation: float 4s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ===== BADGES / STORE ===== */
.store-badge img { height: 42px; transition: transform .2s; }
.store-badge:hover img { transform: scale(1.04); }

/* ===== FEATURES ===== */
.section { padding: 80px 5vw; }
.section-center { text-align: center; }
.section-eyebrow {
  display: inline-block;
  background: var(--grad); color: var(--white);
  font-size: .78rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 50px; margin-bottom: 14px;
}
.section h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.section h2 span { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.section .subtitle { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto 52px; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px; max-width: 1100px; margin: 0 auto;
}
.feature-card {
  background: var(--grad-soft); border-radius: var(--radius);
  padding: 32px 28px; border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.feature-icon { font-size: 2.2rem; margin-bottom: 14px; }
.feature-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.feature-card p  { color: var(--muted); font-size: .95rem; }

/* ===== MASCOT ROW ===== */
.mascots { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; padding: 24px 0 0; }
.mascots img { width: 70px; opacity: .85; transition: opacity .2s, transform .2s; }
.mascots img:hover { opacity: 1; transform: scale(1.15); }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--grad); color: var(--white);
  padding: 64px 5vw; text-align: center;
}
.cta-band h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 800; margin-bottom: 12px; }
.cta-band p  { opacity: .88; font-size: 1.05rem; margin-bottom: 32px; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--pink);
  padding: 14px 32px; border-radius: 50px; font-weight: 700; font-size: 1rem;
  transition: transform .2s;
}
.btn-white:hover { transform: translateY(-2px); text-decoration: none; }

/* ===== FOOTER ===== */
footer {
  background: #1e1b4b; color: rgba(255,255,255,.75);
  padding: 48px 5vw 32px;
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 32px;
  justify-content: space-between; align-items: flex-start;
  max-width: 1100px; margin: 0 auto 36px;
}
.footer-brand img { width: 48px; margin-bottom: 12px; }
.footer-brand p { font-size: .9rem; max-width: 220px; opacity: .7; }
.footer-brand .brand-name { font-weight: 700; font-size: 1.1rem; color: var(--white); margin-bottom: 6px; }
.footer-col h4 { color: var(--white); font-size: .85rem; letter-spacing: .07em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; color: rgba(255,255,255,.65); font-size: .9rem; margin-bottom: 8px; transition: color .2s; }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px; text-align: center; font-size: .82rem; opacity: .5;
  max-width: 1100px; margin: 0 auto;
}

/* ===== LEGAL PAGES ===== */
.legal-hero {
  background: var(--grad-soft); border-bottom: 1px solid var(--border);
  padding: 60px 5vw 50px;
}
.legal-hero .back-link { display: inline-flex; align-items: center; gap: 6px; color: var(--pink); font-weight: 600; font-size: .9rem; margin-bottom: 24px; }
.legal-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; }
.legal-hero .last-updated { color: var(--muted); font-size: .9rem; margin-top: 8px; }

.legal-body { max-width: 820px; margin: 0 auto; padding: 60px 5vw 80px; }
.legal-body h2 { font-size: 1.3rem; font-weight: 700; margin: 40px 0 12px; color: var(--text); }
.legal-body h3 { font-size: 1.05rem; font-weight: 700; margin: 24px 0 8px; }
.legal-body p  { color: #374151; margin-bottom: 14px; }
.legal-body ul { margin: 0 0 16px 24px; }
.legal-body ul li { color: #374151; margin-bottom: 6px; }
.legal-body a  { color: var(--pink); }

/* ===== RESPONSIVE ===== */
@media (max-width: 640px) {
  .nav-links { display: none; }
  .hero { padding: 56px 5vw 64px; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-image img { width: 160px; }
  .mascots img { width: 52px; }
}
