
:root{
  --bg: #ffffff;
  --text: #111111;
  --muted: rgba(0,0,0,.62);
  --line: rgba(0,0,0,.14);
  --line-strong: rgba(0,0,0,.22);
  --shadow: 0 10px 30px rgba(0,0,0,.08);

  --radius: 18px;
  --radius-sm: 12px;

  --pad: 18px;
  --pad-lg: 24px;

  --container: 980px;

  --focus: rgba(0,0,0,.55);
  --ok: #0b7a2f;
  --bad: #b00020;

  --t: 220ms;
  --ease: cubic-bezier(.2,.8,.2,1);
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

*{ box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
}

a{ color: inherit; }

.page{
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 22px;
}

.muted{ color: var(--muted); }

.dot{ opacity: .6; }

@media (prefers-reduced-motion: reduce){
  *{ transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
