:root {
  --ink: #2a1a24;
  --cream: #fff6e8;
  --paper: #ffffff;
  --orange: #f7823a;
  --pink: #ff5fa2;
  --blue: #3fa9f5;
  --green: #5ccd3d;
  --purple: #8c66f2;
  --muted: #6b5a63;
  --radius: 22px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: "Fredoka", ui-rounded, "SF Pro Rounded", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.55;
}

a { color: #d9407f; font-weight: 600; }

img { max-width: 100%; display: block; }

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 16px; }

/* ---------- nav ---------- */
nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 12px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 700; font-size: 20px; }
.brand img { width: 40px; height: 40px; border-radius: 10px; border: 2.5px solid var(--ink); }
.links { display: flex; gap: 16px; flex-wrap: wrap; }
.links a { color: var(--ink); text-decoration: none; font-weight: 600; font-size: 16px; }
.links a:hover { color: var(--pink); }

/* ---------- chunky cartoon bits ---------- */
.outlined {
  font-weight: 700;
  color: #fff;
  -webkit-text-stroke: 3px var(--ink);
  paint-order: stroke fill;
  text-shadow: 0 5px 0 var(--ink);
  letter-spacing: 1px;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 26px; border-radius: 999px;
  background: var(--green); color: #fff; text-decoration: none;
  font-weight: 700; font-size: 20px;
  border: 3.5px solid var(--ink);
  box-shadow: 0 6px 0 var(--ink), inset 0 4px 0 rgba(255,255,255,.4);
  transition: transform .1s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(3px); box-shadow: 0 2px 0 var(--ink); }
.btn.soon { background: var(--purple); cursor: default; }
.card {
  background: var(--paper); border: 3.5px solid var(--ink); border-radius: var(--radius);
  box-shadow: 0 6px 0 var(--ink);
}

/* ---------- hero ---------- */
.hero {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 24px; align-items: center;
  padding: 24px 0 40px;
}
.hero h1 { font-size: clamp(54px, 9vw, 96px); line-height: .95; margin: 0 0 12px; }
.hero h1 .p { color: var(--pink); }
.hero h1 .s { color: var(--blue); }
.hero p.lead { font-size: 22px; margin: 0 0 22px; max-width: 30ch; }
.hero .art { position: relative; }
.hero .art .cat { width: min(420px, 80%); margin: 0 auto; animation: sway 2.4s ease-in-out infinite; transform-origin: bottom center; }
.hero .art .can { position: absolute; width: 18%; animation: bob 2s ease-in-out infinite; }
.hero .art .c1 { left: 2%; top: 8%; }
.hero .art .c2 { right: 4%; top: 2%; animation-delay: .4s; }
.hero .art .c3 { right: 0; bottom: 6%; animation-delay: .8s; }
.hero .art .c4 { left: 0; bottom: 10%; animation-delay: 1.2s; }
.badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.badge { font-size: 15px; font-weight: 600; padding: 6px 12px; border-radius: 999px; background: #fff; border: 2.5px solid var(--ink); }

@keyframes sway { 50% { transform: rotate(-3deg); } }
@keyframes bob { 50% { transform: translateY(-10px) rotate(4deg); } }
@media (prefers-reduced-motion: reduce) { .hero .art .cat, .hero .art .can { animation: none; } }

/* ---------- sections ---------- */
section { padding: 32px 0; }
section h2 { font-size: clamp(34px, 5vw, 48px); margin: 0 0 18px; text-align: center; }

.shots { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.shots figure { margin: 0; overflow: hidden; }
.shots img { width: 100%; }
.shots figcaption { padding: 10px 14px; font-weight: 600; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.feature { padding: 18px; }
.feature .emoji { font-size: 34px; }
.feature h3 { margin: 6px 0; font-size: 21px; }
.feature p { margin: 0; color: var(--muted); font-size: 16px; }

/* ---------- docs (privacy / support) ---------- */
.doc { padding: 26px; margin: 16px 0 40px; }
.doc h1 { font-size: 40px; margin: 0 0 4px; }
.doc h2 { font-size: 24px; margin: 26px 0 6px; text-align: left; }
.doc .date { color: var(--muted); margin: 0 0 12px; }
.doc ul { padding-left: 22px; }
.doc li { margin: 4px 0; }
.faq details { border-top: 2px dashed #e7d9cb; padding: 12px 0; }
.faq summary { font-weight: 700; cursor: pointer; }

/* ---------- footer ---------- */
footer { padding: 28px 0 40px; text-align: center; color: var(--muted); font-size: 16px; }
footer .x { display: inline-flex; align-items: center; gap: 6px; color: var(--ink); text-decoration: none; font-weight: 700; }

@media (max-width: 760px) {
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
  .badges { justify-content: center; }
  .shots, .features { grid-template-columns: 1fr; }
  .links { gap: 12px; }
  .brand span { display: none; }
}
