:root {
  --green: #3ddc65;
  --green-deep: #2bb34f;
  --blue: #3da9fc;
  --blue-deep: #2b8fe0;
  --pink: #ff5cb3;
  --pink-deep: #e84a9c;
  --yellow: #ffe14a;
  --ink: #2a1a4a;
  --body: #1a1a1a;
  --cream: #fff8f0;
  --cream-deep: #fff3c4;
  --panel: #fffdf8;
  --muted: #5a4d6b;
  --shadow: 0 8px 0 rgba(42, 26, 74, 0.18);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Nunito, ui-rounded, system-ui, sans-serif;
  font-weight: 700;
  color: var(--body);
  background:
    radial-gradient(circle at 12% 8%, #ffd6ee 0 90px, transparent 91px),
    radial-gradient(circle at 88% 12%, #c8f7d4 0 70px, transparent 71px),
    radial-gradient(circle at 70% 90%, #cce8ff 0 110px, transparent 111px),
    var(--cream);
  line-height: 1.55;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue-deep); }
.wrap { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }

.nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(255, 248, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 4px solid var(--ink);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; padding: 10px 0;
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--ink);
  font-family: "Sour Gummy", Nunito, sans-serif;
  font-weight: 800; font-size: 1.25rem;
}
.brand img { width: 46px; height: 46px; border-radius: 12px; border: 3px solid var(--ink); }
.nav-links { display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; }
.nav-links a {
  color: var(--ink); text-decoration: none; font-weight: 800; font-size: 0.95rem;
}
.nav-links a:hover { color: var(--pink-deep); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 10px 22px;
  border-radius: 999px; border: 4px solid #fff;
  outline: 3px solid var(--ink);
  color: #fff; text-decoration: none; font-weight: 900;
  letter-spacing: 0.02em; text-transform: uppercase;
  box-shadow: var(--shadow);
}
.btn-green { background: linear-gradient(#3ddc65, #2bb34f); }
.btn-blue { background: linear-gradient(#3da9fc, #2b8fe0); }
.btn-pink { background: linear-gradient(#ff5cb3, #e84a9c); }
.btn:hover { transform: translateY(-1px); }

.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 36px;
  align-items: center; padding: 48px 0 28px;
}
.hero h1 {
  font-family: "Sour Gummy", Nunito, sans-serif;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 0.95; margin: 0 0 12px;
  color: var(--yellow);
  -webkit-text-stroke: 6px var(--ink);
  paint-order: stroke fill;
  text-shadow: 0 6px 0 rgba(42, 26, 74, 0.2);
}
.kicker {
  display: inline-block; background: var(--pink); color: #fff;
  border: 3px solid var(--ink); border-radius: 999px;
  padding: 4px 12px; font-size: 0.8rem; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 10px;
}
.lead { font-size: 1.15rem; color: var(--ink); max-width: 38rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero-art {
  border-radius: 32px; overflow: hidden;
  border: 5px solid var(--ink); box-shadow: var(--shadow);
}
.hero-art img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }

.section { padding: 42px 0; }
.section h2 {
  font-family: "Sour Gummy", Nunito, sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--ink); margin: 0 0 8px;
}
.sub { color: var(--muted); margin: 0 0 22px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card {
  background: var(--panel);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.card img { width: 100%; height: 180px; object-fit: cover; }
.card-body { padding: 16px 18px 20px; }
.card h3 { margin: 0 0 6px; color: var(--ink); }

.band {
  background: #2a1a4a; color: #fff; padding: 48px 0;
}
.band h2 { color: var(--yellow); }
.band p { color: #f4e9ff; }
.price {
  display: flex; align-items: flex-end; gap: 8px;
  font-family: "Sour Gummy", sans-serif; font-size: 3rem; line-height: 1;
  color: var(--yellow); margin: 10px 0 16px;
}
.price small { font-size: 1rem; color: #fff; margin-bottom: 8px; }

.legal, .prose {
  background: var(--panel);
  border: 4px solid var(--ink);
  border-radius: var(--radius);
  padding: 28px 28px 36px;
  box-shadow: var(--shadow);
}
.prose h1, .legal h1 {
  font-family: "Sour Gummy", sans-serif;
  color: var(--ink); margin-top: 0;
}
.prose h2, .legal h2 { font-size: 1.35rem; margin-top: 1.6em; }
.prose p, .legal p, .legal li { color: #2b2238; }
.muted { color: var(--muted); font-size: 0.92rem; }

.faq details {
  background: #fff; border: 3px solid var(--ink);
  border-radius: 16px; padding: 10px 14px; margin: 10px 0;
}
.faq summary { cursor: pointer; font-weight: 900; color: var(--ink); }

.footer {
  border-top: 4px solid var(--ink);
  padding: 28px 0 40px; margin-top: 28px;
  display: grid; gap: 8px;
}
.footer nav { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.footer a { color: var(--ink); font-weight: 800; }

@media (max-width: 820px) {
  .hero, .cards { grid-template-columns: 1fr; }
  .hero { padding-top: 24px; }
  .nav-links { justify-content: flex-end; }
}
