/* ── «Время пробовать» · base / reset ─────────────────────────────
   Clean white canvas, Nunito throughout, sane defaults.
------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: var(--lh-normal);
  color: var(--text-body);
  background: var(--surface-app);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-strong);
  margin: 0;
  letter-spacing: var(--ls-tight);
}

p { margin: 0; }

button { font-family: inherit; }

::selection { background: var(--coral-soft); color: var(--ink); }

/* subtle, clean focus ring for keyboard users */
:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--coral) 45%, white);
  outline-offset: 2px;
}
