:root {
  --white: #ffffff;
  --ink: #292938;
  --ink-secondary: #737385;
  --blue: #dceaff;
  --blue-strong: #e3edff;
  --lavender: #ebe0ff;
  --mint: #dbf5e6;
  --peach: #ffe6d6;
  --pink: #ffdeeb;
  --yellow: #fff2cf;
  --shadow: rgba(0, 0, 0, 0.10);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

.wrap {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

/* ---------- Top bar ---------- */

.topbar {
  padding: 20px 0;
}

.wordmark {
  font-weight: 800;
  font-size: 18px;
}

/* ---------- Hero ---------- */

.hero {
  text-align: center;
  padding: 24px 24px 56px;
}

.bunny-wrap {
  position: relative;
  width: 220px;
  height: 240px;
  margin: 0 auto 8px;
}

.bunny {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 14px 24px rgba(160, 180, 220, 0.35));
  animation: float 5s ease-in-out infinite;
}

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

.bunny-sparkle {
  position: absolute;
  fill: var(--lavender);
}
.bunny-sparkle path { fill: inherit; }
.bs1 { width: 26px; top: 6px; right: 6px; fill: #dff3ec; animation: twinkle 2.6s ease-in-out infinite; }
.bs2 { width: 40px; top: 96px; left: -18px; fill: var(--lavender); animation: twinkle 3.2s ease-in-out infinite 0.4s; }
.bs3 { width: 30px; bottom: 30px; right: -10px; fill: var(--blue-strong); animation: twinkle 2.9s ease-in-out infinite 0.8s; }

@keyframes twinkle {
  0%, 100% { opacity: 0.55; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.05); }
}

h1 {
  font-size: 40px;
  font-weight: 900;
  margin: 12px 0 14px;
  letter-spacing: -0.5px;
}

.subtitle {
  max-width: 480px;
  margin: 0 auto 32px;
  color: var(--ink-secondary);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
}

.cta {
  display: inline-block;
  background: var(--blue);
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
  font-size: 17px;
  padding: 16px 32px;
  border-radius: 20px;
  box-shadow: 0 10px 24px var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px var(--shadow);
}

/* ---------- Feature cards ---------- */

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 8px 24px 64px;
}

.card {
  background: var(--white);
  border-radius: 28px;
  padding: 28px 22px;
  box-shadow: 0 14px 32px var(--shadow);
  text-align: left;
}

.icon-badge {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.icon-badge svg { width: 22px; height: 22px; }
.icon-badge.mint { background: var(--mint); }
.icon-badge.blue { background: var(--blue); }
.icon-badge.pink { background: var(--pink); }

.card h3 {
  font-size: 18px;
  font-weight: 800;
  margin: 0 0 8px;
}

.card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-secondary);
  margin: 0;
  font-weight: 400;
}

/* ---------- Steps ---------- */

.steps {
  text-align: center;
  padding: 8px 24px 72px;
}

.steps h2 {
  font-size: 28px;
  font-weight: 900;
  margin: 0 0 32px;
}

.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 17px;
  box-shadow: 0 8px 18px var(--shadow);
}

.step p {
  color: var(--ink-secondary);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  max-width: 220px;
  font-weight: 400;
}

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--lavender);
  padding: 56px 24px;
}

.cta-band-inner {
  text-align: center;
}

.cta-band h2 {
  font-size: 26px;
  font-weight: 900;
  margin: 0 0 24px;
}

.cta-light {
  background: var(--white);
}

/* ---------- Footer ---------- */

.footer {
  text-align: center;
  padding: 28px 24px 40px;
  color: var(--ink-secondary);
  font-size: 13px;
  font-weight: 400;
}

.footer a {
  color: var(--ink-secondary);
  text-decoration: underline;
}

.footer a:hover {
  color: var(--ink);
}

/* ---------- Simple content pages (privacy policy) ---------- */

.legal {
  max-width: 680px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal a {
  color: var(--ink);
}

.legal .back-link {
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  color: var(--ink-secondary);
}

.legal .back-link:hover {
  color: var(--ink);
}

.legal h1 {
  font-size: 30px;
  margin: 0 0 4px;
  text-align: left;
}

.legal .updated {
  color: var(--ink-secondary);
  font-size: 14px;
  margin: 0 0 32px;
}

.legal h2 {
  font-size: 19px;
  font-weight: 800;
  margin: 32px 0 10px;
  text-align: left;
}

.legal p, .legal li {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 400;
}

.legal ul {
  padding-left: 20px;
  margin: 8px 0;
}

/* ---------- Background sparkles ---------- */

.bg-sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  fill: var(--blue-strong);
  opacity: 0.7;
}

.s1 { width: 20px; top: 8%; left: 10%; fill: var(--mint); }
.s2 { width: 30px; top: 18%; right: 12%; fill: var(--lavender); }
.s3 { width: 16px; top: 42%; left: 4%; fill: var(--blue-strong); }
.s4 { width: 24px; top: 65%; right: 8%; fill: var(--mint); }
.s5 { width: 18px; top: 80%; left: 14%; fill: var(--lavender); }
.s6 { width: 22px; top: 30%; right: 30%; fill: var(--blue-strong); }

/* ---------- Responsive ---------- */

@media (max-width: 720px) {
  .features {
    grid-template-columns: 1fr;
  }
  .steps-row {
    grid-template-columns: 1fr;
  }
  h1 {
    font-size: 32px;
  }
}
