@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./nunito-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('./nunito-800.woff2') format('woff2');
}

/* Welcome canon (single template for every product; restyle via these tokens only). */
:root {
  --canvas: #f5f4f6;
  --ink: #1f2328;
  --muted: #59616b;
  --accent: #8f2058;
  --step: #e53935; /* instruction red — must match the badges inside the shots */
  --sans: 'Nunito', ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.5;
}
#confetti-canvas { position: fixed; inset: 0; pointer-events: none; }

.welcome-shell {
  max-width: 940px;
  margin: 0 auto;
  padding: clamp(20px, 3vw, 36px) 20px 60px;
}
h1 {
  margin: 0 0 14px;
  text-align: center;
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 800;
  text-wrap: balance;
}
.party { border: 0; background: none; font: inherit; cursor: pointer; padding: 0 6px 0 0; }
.line { margin: 6px 0; text-align: center; color: var(--muted); }
/* Owner word 29.08: plain black circles in the text lines, regular weight
   (diverges from the in-shot red instruction badges deliberately). */
.line .n {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  border: 1.5px solid #111111;
  font-size: 13px;
  font-weight: 400;
  margin: 0 3px;
}
.shot {
  display: block;
  width: 100%;
  max-width: 760px;
  margin: 14px auto 26px;
  border-radius: 10px;
  box-shadow: 0 8px 26px rgba(31, 35, 40, 0.10);
}
@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }

.foot { margin-top: 28px; font-size: 14px; opacity: .72 }
.foot a { color: inherit }
