/* Nur Reset — jede Variante gestaltet komplett selbst. */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
/* `sanft` setzt das Skript beim ersten Tippen oder Klicken — Begruendung dort. */
html.sanft { scroll-behavior: smooth; }
/* clip statt hidden — hidden wuerde position:sticky abschalten. */
html, body { overflow-x: clip; }
body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
:focus-visible { outline: 2px solid var(--focus, currentColor); outline-offset: 3px; }

/* Ein Raster mit automatischer Spalte misst sich am Inhalt — die Spur des
   Bandes ist zehntausend Pixel breit und zoege die Schiene mit sich. */
.hero, .talk-pin, .belts { grid-template-columns: minmax(0, 1fr); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important; animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html.sanft { scroll-behavior: auto; }
}
