:root {
  --pink: #ff5fa2;
  --pink-2: #ff8cc0;
  --pink-soft: #ffe6f2;
  --bg: #fff5fa;
  --cream: #fffdf7;
  --red: #ff3d6e;
  --yellow: #ffd84d;
  --ink: #5a2a44;
  --ink-soft: #9a6b84;
  --muted: #b58aa0;
  --line: #ffd6e8;
  --card: #ffffff;
  --shadow: 0 18px 44px -20px rgba(255, 95, 162, 0.55);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Baloo 2", "Quicksand", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, #fff 6px, transparent 7px) 0 0/54px 54px,
    radial-gradient(circle at 60% 50%, #ffe0ee 5px, transparent 6px) 0 0/54px 54px,
    var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { margin: 0 0 .4em; line-height: 1.15; font-weight: 800; letter-spacing: -.01em; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; }
.wrap { width: min(1120px, 92vw); margin: 0 auto; }
.wrap-narrow { width: min(760px, 92vw); margin: 0 auto; }
.muted { color: var(--muted); }
.center { text-align: center; }

a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 3px solid var(--pink); outline-offset: 3px; border-radius: 12px;
}
@media (prefers-reduced-motion: reduce) { * { animation: none !important; transition: none !important; } }

/* buttons — pill, bouncy */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .8rem 1.5rem; border-radius: 999px; font-weight: 800; font-size: 1rem;
  border: 3px solid transparent; cursor: pointer; transition: transform .12s ease, box-shadow .2s;
  font-family: inherit;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: linear-gradient(120deg, var(--pink), var(--pink-2)); color: #fff; box-shadow: 0 10px 24px -8px rgba(255,61,110,.6); }
.btn-primary:hover { box-shadow: 0 16px 30px -8px rgba(255,61,110,.7); }
.btn-ghost { background: #fff; border-color: var(--line); color: var(--pink); }
.btn-ghost:hover { border-color: var(--pink); }
.btn-cream { background: var(--yellow); color: #6b4a00; box-shadow: 0 8px 20px -8px rgba(255,216,77,.8); }
.btn-lg { padding: 1rem 1.9rem; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* nav */
.nav { position: sticky; top: 0; z-index: 30; background: rgba(255,245,250,.9); backdrop-filter: blur(10px); border-bottom: 3px dotted var(--line); }
.nav-inner { display: flex; align-items: center; gap: 1.2rem; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; font-weight: 800; font-size: 1.2rem; }
.brand .kitty { width: 34px; height: 34px; }
.nav-links { display: flex; gap: 1.3rem; margin-left: auto; font-weight: 700; color: var(--ink-soft); }
.nav-links a:hover { color: var(--pink); }
.nav-cta { display: flex; gap: .5rem; }

/* hero */
.hero { padding: 3.5rem 0 3rem; }
.hero-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: center; }
.pill { display: inline-flex; align-items:center; gap:.4rem; background: #fff; border: 3px solid var(--line); color: var(--pink); font-weight: 800; font-size: .82rem; padding: .4rem .95rem; border-radius: 999px; margin-bottom: 1.1rem; }
.hero h1 { font-size: clamp(2.3rem, 5.2vw, 3.7rem); }
.grad { color: var(--pink); }
.lead { font-size: 1.14rem; color: var(--ink-soft); max-width: 33rem; font-weight: 600; }
.hero-actions { display: flex; gap: .7rem; margin: 1.5rem 0 1.8rem; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.hero-trust div { display: flex; flex-direction: column; }
.hero-trust strong { font-size: 1.2rem; color: var(--pink); }
.hero-trust span { color: var(--muted); font-size: .82rem; font-weight: 600; }

.hero-card { background: #fff; border: 4px solid var(--pink-soft); border-radius: 30px; padding: 1.6rem; box-shadow: var(--shadow); position: relative; }
.hero-card .kitty-big { display: block; width: 132px; height: 132px; margin: -3.6rem auto .4rem; }
.chip { display: inline-block; background: var(--pink-soft); color: var(--pink); font-weight: 800; font-size: .78rem; padding: .3rem .85rem; border-radius: 999px; }
.mono { margin: 1rem 0 1.2rem; display: grid; gap: .55rem; font-family: ui-monospace, Menlo, monospace; font-size: .9rem; }
.mono div { display: flex; justify-content: space-between; border-bottom: 2px dotted var(--line); padding-bottom: .5rem; }
.mono span { color: var(--muted); }

/* sections */
.section { padding: 3.8rem 0; }
.section-title { text-align: center; font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
.section-sub { text-align: center; color: var(--ink-soft); max-width: 40rem; margin: 0 auto 2.4rem; font-weight: 600; }
.bow-divider { text-align: center; font-size: 1.6rem; margin-bottom: .4rem; }

/* features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.feature { background: var(--card); border: 3px solid var(--line); border-radius: var(--radius); padding: 1.5rem; transition: transform .16s, box-shadow .2s; }
.feature:hover { transform: translateY(-5px) rotate(-1deg); box-shadow: var(--shadow); }
.fi { font-size: 1.9rem; margin-bottom: .5rem; }
.feature h3 { font-size: 1.1rem; }
.feature p { color: var(--ink-soft); margin: 0; font-weight: 500; }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.1rem; }
.step { background: #fff; border: 3px solid var(--line); border-radius: var(--radius); padding: 1.5rem; text-align: center; }
.step-n { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(120deg, var(--pink), var(--pink-2)); color: #fff; font-weight: 800; margin-bottom: .6rem; }
.step p { color: var(--ink-soft); margin: 0; font-weight: 500; }

/* pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; align-items: stretch; }
.price-card { position: relative; background: #fff; border: 4px solid var(--line); border-radius: 28px; padding: 2rem 1.6rem; display: flex; flex-direction: column; }
.price-card.pop { border-color: var(--pink); box-shadow: var(--shadow); transform: translateY(-6px); }
.badge { position: absolute; top: -16px; left: 50%; transform: translateX(-50%); background: var(--red); color: #fff; font-weight: 800; font-size: .74rem; padding: .35rem 1rem; border-radius: 999px; box-shadow: 0 6px 14px -6px rgba(255,61,110,.7); }
.price-card h3 { font-size: 1.15rem; }
.price { font-size: 3rem; font-weight: 800; color: var(--pink); line-height: 1; margin: .3rem 0; }
.price .cur { font-size: 1.4rem; vertical-align: super; }
.price .per { font-size: 1rem; color: var(--muted); font-weight: 700; }
.price.sm { font-size: 2.1rem; }
.price-desc { color: var(--ink-soft); min-height: 3em; font-weight: 500; }
.ticks { list-style: none; padding: 0; margin: .7rem 0 1.3rem; display: grid; gap: .5rem; }
.ticks li { padding-left: 1.7rem; position: relative; color: var(--ink-soft); font-weight: 600; }
.ticks li::before { content: "🎀"; position: absolute; left: 0; font-size: .9rem; }
.price-card .btn { margin-top: auto; }

.trial { margin-top: 1.5rem; background: linear-gradient(120deg, #fff0f7, #ffe7f1); border: 3px dashed var(--pink); border-radius: 28px; padding: 1.6rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.4rem; flex-wrap: wrap; }
.trial h3 { font-size: 1.3rem; }
.trial .muted { margin: 0; }
.trial-cta { display: flex; align-items: center; gap: 1.2rem; }
.pay-note { text-align: center; color: var(--muted); margin-top: 1.5rem; font-weight: 600; }

/* faq */
details { background: #fff; border: 3px solid var(--line); border-radius: 18px; padding: 1rem 1.2rem; margin-bottom: .7rem; }
details[open] { border-color: var(--pink); }
summary { font-weight: 800; cursor: pointer; list-style: none; }
summary::after { content: "🎀"; float: right; }
details p { color: var(--ink-soft); margin: .7rem 0 0; font-weight: 500; }

/* checkout + result */
.panel { background: #fff; border: 3px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.checkout-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 1.3rem; align-items: start; }
.summary-total { display: flex; justify-content: space-between; align-items: baseline; border-block: 3px dotted var(--line); padding: .9rem 0; margin: 1rem 0; }
.summary-total strong { font-size: 1.5rem; color: var(--pink); }
form label { display: block; font-weight: 800; margin-bottom: 1rem; }
form input[type=email], form input[type=text] { width: 100%; margin-top: .4rem; padding: .8rem .95rem; border: 3px solid var(--line); border-radius: 14px; font: inherit; }
form input:focus { outline: none; border-color: var(--pink); }
.methods { display: grid; gap: .7rem; margin: .5rem 0 1.2rem; }
.method { display: flex; align-items: center; gap: .8rem; border: 3px solid var(--line); border-radius: 16px; padding: .9rem 1rem; cursor: pointer; font-weight: 600; }
.method:has(input:checked) { border-color: var(--pink); background: var(--pink-soft); }
.method-body { display: flex; flex-direction: column; }
.method-body small { color: var(--muted); font-weight: 500; }
.fine { font-size: .82rem; margin-top: .8rem; }
.form-error { background: #fff0f2; border: 3px solid #ffc7d5; color: #c11d47; padding: .8rem 1rem; border-radius: 14px; margin-bottom: 1rem; font-weight: 700; }
.back { color: var(--ink-soft); font-weight: 700; display: inline-block; margin-bottom: 1rem; }

.result-icon { width: 92px; height: 92px; margin: 0 auto 1rem; }
.result-card { background: #fff; border: 3px solid var(--line); border-radius: var(--radius); padding: 1.2rem 1.5rem; max-width: 430px; margin: 1.3rem auto; }
.result-card .row { display: flex; justify-content: space-between; padding: .5rem 0; border-bottom: 2px dotted var(--line); }
.result-card .row:last-child { border-bottom: none; }
.result-card .row span { color: var(--muted); }
.claim-box { background: #fff; border: 4px solid var(--pink); border-radius: var(--radius); padding: 1.6rem; max-width: 460px; margin: 1.4rem auto 0; box-shadow: var(--shadow); }
.claim-form { display: flex; flex-direction: column; gap: .7rem; margin: 1rem 0 .4rem; }
.claim-form input { text-align: center; }

/* cta + footer */
.cta-band { background: linear-gradient(120deg, var(--pink), var(--pink-2)); }
.cta-inner { text-align: center; padding: 3rem 0; }
.cta-band h2 { color: #fff; }
.cta-band .btn { background: #fff; color: var(--pink); }
.footer { background: #fff; border-top: 3px dotted var(--line); padding: 2.6rem 0 1.4rem; margin-top: 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 1.4rem; }
.footer h4 { color: var(--pink); }
.footer a { display: block; color: var(--ink-soft); margin-bottom: .4rem; font-weight: 600; }
.footer a:hover { color: var(--pink); }
.footer-legal { border-top: 2px dotted var(--line); margin-top: 1.6rem; padding-top: 1rem; color: var(--muted); font-weight: 600; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { order: -1; margin-top: 2.6rem; }
  .nav-links { display: none; }
  .feature-grid, .steps, .price-grid { grid-template-columns: 1fr; }
  .price-card.pop { transform: none; }
  .checkout-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
