:root {
  --cream: #fff4ea;
  --ink: #2a2140;
  --muted: #6b5f7a;
  --pink: #ff8fab;
  --mint: #7ee0c6;
  --lilac: #c9b6ff;
  --peach: #ffd6a5;
  --card: #ffffff;
  --line: rgba(42, 33, 64, 0.08);
}
* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--cream);
  color: var(--ink);
  font: 17px/1.55 ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: #6b4cff; text-decoration: none; }
a:hover { text-decoration: underline; }
.wrap { max-width: 1080px; margin: 0 auto; padding: 22px 20px 80px; }
nav {
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
nav .brand {
  display: flex; align-items: center; gap: 10px;
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, sans-serif; font-weight: 700; font-size: 1.25rem;
  color: var(--ink); margin-right: auto;
}
nav .brand img { width: 36px; height: 36px; border-radius: 10px; }
nav a:not(.brand) { color: var(--muted); font-weight: 700; font-size: 0.92rem; }
h1 { font-family: ui-rounded, "SF Pro Rounded", -apple-system, sans-serif; letter-spacing: -0.03em; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: center;
  margin: 36px 0 64px;
  position: relative;
}
.hero h1 {
  font-family: ui-rounded, "SF Pro Rounded", -apple-system, sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 14px;
}
.hero p { color: var(--muted); font-size: 1.12rem; margin: 0 0 22px; }
.cta {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 8px 0 #c9b6ff;
}
.cta:hover { text-decoration: none; transform: translateY(1px); box-shadow: 0 7px 0 #c9b6ff; }
.mascot {
  position: absolute; right: 42%; top: -18px; width: 120px;
  filter: drop-shadow(0 12px 18px rgba(80,40,120,.18));
  animation: float 4s ease-in-out infinite;
}
@keyframes float { 50% { transform: translateY(-8px); } }

.stage {
  display: flex; justify-content: center;
}
.phone {
  width: min(290px, 78vw);
  background: #1c1a22;
  border-radius: 38px;
  padding: 12px;
  box-shadow: 0 30px 60px rgba(42,33,64,.22), 0 0 0 10px #2a2140;
  transform: rotate(3deg);
}
.phone img { width: 100%; display: block; border-radius: 28px; }

.pills { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0 0; }
.pill {
  background: #fff; border: 1px solid var(--line); border-radius: 999px;
  padding: 6px 12px; font-weight: 800; font-size: 0.82rem;
}

.grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 18px; margin: 28px 0;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  overflow: hidden;
}
.card h2 { font-family: ui-rounded, "SF Pro Rounded", -apple-system, sans-serif; margin: 0 0 8px; font-size: 1.35rem; }
.card p { color: var(--muted); margin: 0; }
.card img.wide { width: 100%; border-radius: 16px; margin-top: 14px; display: block; }
.comics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 14px; margin-top: 18px; }
.comics figure { margin: 0; background: #fff; border-radius: 20px; padding: 10px; border: 1px solid var(--line); }
.comics img { width: 100%; border-radius: 12px; display: block; }
.comics figcaption { font-weight: 800; font-size: 0.88rem; padding: 8px 4px 2px; }

footer {
  margin-top: 56px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 14px; color: var(--muted);
}
@media (max-width: 820px) {
  .hero, .grid, .comics { grid-template-columns: 1fr; }
  .mascot { right: 8px; top: auto; bottom: 260px; width: 88px; }
  .phone { transform: none; }
}
@media (prefers-reduced-motion: reduce) { .mascot { animation: none; } }
