:root {
  --bg: #FFF9F2;
  --bg-2: #FDF1E7;
  --text: #3A312B;
  --muted: #8A7870;
  --pink: #FF9ECF;
  --rose: #FF5E7D;
  --yellow: #FFD93D;
  --green: #7BD389;
  --blue: #6BCBFF;
  --card: #FFFFFF;
  --radius: 24px;
  --shadow: 0 10px 30px rgba(58, 49, 43, 0.10);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--rose); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 249, 242, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(58, 49, 43, 0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 20px; color: var(--text); }
.brand img { width: 38px; height: 38px; object-fit: contain; }
.nav-links { display: flex; gap: 22px; font-weight: 700; }
.nav-links a { color: var(--text); }

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 90px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.hero h1 {
  font-size: clamp(34px, 6vw, 56px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 18px;
}
.hero p { font-size: clamp(17px, 2.4vw, 21px); color: var(--muted); max-width: 560px; margin: 0 auto 32px; }
.hero img.mascot { width: clamp(140px, 30vw, 220px); margin-bottom: 28px; filter: drop-shadow(0 14px 24px rgba(58,49,43,0.18)); }

.btn {
  display: inline-block;
  background: var(--rose);
  color: #fff;
  font-weight: 800;
  padding: 14px 30px;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(255, 94, 125, 0.35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translateY(-2px); text-decoration: none; box-shadow: 0 12px 24px rgba(255,94,125,0.45); }

.dots { position: absolute; inset: 0; pointer-events: none; }
.dot { position: absolute; border-radius: 50%; opacity: .55; }

/* ── Features ── */
.features { padding: 70px 0; }
.features h2 { text-align: center; font-size: clamp(26px, 4vw, 36px); font-weight: 900; margin-bottom: 44px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 22px; }
.feature {
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
}
.feature .emoji { font-size: 40px; display: block; margin-bottom: 14px; }
.feature h3 { font-size: 19px; font-weight: 800; margin-bottom: 8px; }
.feature p { color: var(--muted); font-size: 15px; }

/* ── Legal pages ── */
.legal { padding: 56px 0 90px; }
.legal-card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 56px);
}
.legal h1 { font-size: clamp(28px, 5vw, 40px); font-weight: 900; margin-bottom: 6px; }
.legal .updated { color: var(--muted); font-size: 15px; margin-bottom: 32px; }
.legal h2 { font-size: 22px; font-weight: 800; margin: 34px 0 12px; }
.legal h3 { font-size: 18px; font-weight: 800; margin: 22px 0 8px; }
.legal p, .legal li { color: #4a4039; font-size: 16px; margin-bottom: 12px; }
.legal ul, .legal ol { padding-left: 22px; margin-bottom: 16px; }
.legal li { margin-bottom: 6px; }
.legal table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 15px; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border-bottom: 1px solid rgba(58,49,43,0.10); }
.legal th { background: var(--bg-2); font-weight: 800; }
.legal hr { border: none; border-top: 1px solid rgba(58,49,43,0.10); margin: 28px 0; }
.legal .back { display: inline-block; margin-bottom: 26px; font-weight: 700; }

/* ── Footer ── */
.footer {
  background: var(--bg-2);
  padding: 40px 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.footer .brand { justify-content: center; margin-bottom: 14px; }
.footer-links { display: flex; gap: 20px; justify-content: center; margin-bottom: 16px; font-weight: 700; }
.footer-links a { color: var(--text); }

@media (max-width: 600px) {
  .nav-links { gap: 16px; font-size: 15px; }
}
