/* Starter-Gestaltung für puerio.de. Farben nur hier als Tokens. */
:root {
  --grund: #fbfaff;
  --text: #1f1d2b;
  --gedaempft: #4a4760;
  --akzent: #3b2f8f;
  --flaeche: #ffffff;
  --rand: #e3e0f2;
  --breite: 44rem;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--grund);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
a { color: var(--akzent); text-underline-offset: 0.15em; }
a:focus-visible { outline: 3px solid var(--akzent); outline-offset: 3px; border-radius: 4px; }
.skip { position: absolute; left: -999px; top: 0; padding: 0.75rem 1rem; background: var(--flaeche); }
.skip:focus { left: 1rem; top: 1rem; z-index: 10; }
.kopf, .fuss, main { width: 100%; max-width: var(--breite); margin: 0 auto; padding: 1rem; }
.kopf { padding-top: 1.5rem; }
.marke { font-weight: 700; font-size: 1.25rem; text-decoration: none; color: var(--akzent); display: inline-block; padding: 0.5rem 0; }
main { flex: 1; }
.held { padding: 3rem 0; }
.held h1 { font-size: clamp(2.25rem, 8vw, 3.5rem); line-height: 1.1; margin: 0 0 1rem; color: var(--akzent); }
.unterzeile { font-size: 1.25rem; margin: 0 0 1.5rem; }
.hinweis { color: var(--gedaempft); background: var(--flaeche); border: 1px solid var(--rand); border-radius: 0.75rem; padding: 1rem; }
.text h1 { font-size: 2rem; }
.text h2 { font-size: 1.25rem; margin-top: 2rem; }
.text { overflow-wrap: anywhere; }
.fuss { border-top: 1px solid var(--rand); color: var(--gedaempft); font-size: 0.9375rem; }
.fuss nav { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
.fuss nav a { display: inline-block; padding: 0.5rem 0; min-height: 44px; }
@media (prefers-reduced-motion: reduce) { * { transition: none !important; animation: none !important; } }
