/* ------------------------------------------------------------------
   Schriftarten - lokal eingebunden (kein Google-Fonts-CDN).
   Grund: Beim Laden ueber Google wird die IP-Adresse jedes Besuchers
   an Google uebertragen. Das ist in Deutschland datenschutzrechtlich
   angreifbar. Die Dateien liegen jetzt unter assets/fonts/.
   ------------------------------------------------------------------ */
@font-face {
  font-family: "Fraunces";
  src: url("../assets/fonts/fraunces-latin-opsz-normal.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../assets/fonts/inter-latin-wght-normal.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../assets/fonts/ibm-plex-mono-latin-400-normal.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "IBM Plex Mono";
  src: url("../assets/fonts/ibm-plex-mono-latin-500-normal.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* =========================================================
   SPK — Unternehmenswebsite
   Design tokens — abgeleitet aus dem offiziellen SPK-Logo
   bg        #0D0C12  – Seitenhintergrund (near-black)
   bg-raised #17151D  – Karten / abgesetzte Flächen
   text      #F5F1EA  – Fließtext, Überschriften (warmes Weiß)
   text-soft #B6AFA8  – sekundärer Text
   rose      #F2B4C0  – Akzent (aus dem "S" im Logo)
   gold      #E3B876  – Akzent (aus dem "K" im Logo)
   gold-deep #B98A4E  – dunklerer Gold-Ton für Kontrast/Hover
   ========================================================= */

:root {
  --bg: #0d0c12;
  --bg-raised: #17151d;
  --bg-raised-2: #1e1b24;
  --text: #f5f1ea;
  --text-soft: #b6afa8;
  --rose: #f2b4c0;
  --gold: #e3b876;
  --gold-deep: #b98a4e;
  --line: rgba(245, 241, 234, 0.12);
  --line-strong: rgba(245, 241, 234, 0.24);

  --gradient-brand: linear-gradient(100deg, var(--rose) 0%, var(--text) 50%, var(--gold) 100%);
  --gradient-accent: linear-gradient(100deg, var(--rose), var(--gold));

  --font-display: "Fraunces", "Iowan Old Style", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --max-w: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 3px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
html, body { overflow-x: hidden; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.08; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }
button { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ---------- Eyebrow / labels ---------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gradient-accent);
  display: inline-block;
}

/* ---------- Arc — Signatur-Element aus dem Logo ----------
   Zwei dünne, gegenläufige Bögen mit Rose→Gold-Verlauf, wie im
   SPK-Monogramm. Ersetzt Icons/Ornamente durch ein Motiv, das
   direkt aus der Marke selbst kommt. */
.arc {
  display: block;
  width: 100%;
  height: auto;
}
.arc-divider {
  width: 64px;
  height: 20px;
  margin: 0 auto 1.4rem;
  opacity: 0.9;
}
.arc-divider.left {
  margin: 0 0 1.4rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background-color 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  white-space: nowrap;
  max-width: 100%;
}
@media (max-width: 420px) {
  .btn { white-space: normal; text-align: center; }
}
.btn-primary {
  background: var(--gradient-accent);
  color: #17120d;
  font-weight: 600;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px -8px rgba(227, 184, 118, 0.45); }
.btn-secondary { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 12, 18, 0.86);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem var(--gutter);
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 0.75rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  min-width: 0;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  flex-shrink: 0;
  display: block;
}
.nav-links {
  display: flex;
  gap: 2.1rem;
  font-size: 0.92rem;
}
.nav-links a {
  position: relative;
  padding: 0.3rem 0;
  color: var(--text-soft);
  transition: color 0.2s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--gold); }
.nav-links a[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gradient-accent);
}
.nav-cta { display: none; }
@media (min-width: 860px) { .nav-cta:not(.mobile) { display: inline-flex; } }

.nav-toggle {
  display: inline-flex;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 0.5rem 0.65rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--text);
}
@media (min-width: 860px) { .nav-toggle { display: none; } }
@media (max-width: 859px) {
  .nav-links {
    position: fixed;
    inset: 64px 0 auto 0;
    background: var(--bg-raised);
    flex-direction: column;
    padding: 1.5rem var(--gutter) 2rem;
    gap: 1.1rem;
    border-bottom: 1px solid var(--line);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  }
  .nav-links.is-open { opacity: 1; transform: translateY(0); visibility: visible; }
  .nav-cta.mobile { display: inline-flex; margin-top: 0.4rem; }
}

/* ---------- Hero ---------- */
.hero {
  padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.25fr 0.9fr; gap: 4rem; }
}
.hero h1 {
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  margin: 1.1rem 0 1.4rem;
}
@media (max-width: 420px) {
  .hero h1 { font-size: 2.05rem; }
}
.hero h1 em {
  font-style: normal;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 42ch;
  margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- Sections ---------- */
section { padding: clamp(3rem, 7vw, 5.5rem) 0; }
.section-head { max-width: 62ch; margin-bottom: 3rem; }
.section-head--tight { margin-bottom: 2rem; }
.section-head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-top: 1rem; }
.section-head p { color: var(--text-soft); margin-top: 1rem; font-size: 1.05rem; }
.section-alt { background: var(--bg-raised); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  animation: fadeUp 0.7s var(--ease) both;
  animation-delay: calc(var(--reveal-order, 0) * 70ms);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { animation: none; }
}
.grid .card:nth-child(1), .values-grid .value-item:nth-child(1) { --reveal-order: 0; }
.grid .card:nth-child(2), .values-grid .value-item:nth-child(2) { --reveal-order: 1; }
.grid .card:nth-child(3), .values-grid .value-item:nth-child(3) { --reveal-order: 2; }
.grid .card:nth-child(4), .values-grid .value-item:nth-child(4) { --reveal-order: 3; }

/* ---------- Cards / grid ---------- */
.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.card:hover { border-color: var(--gold-deep); transform: translateY(-3px); }
.card .num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.card h3 {
  font-size: 1.25rem;
  margin: 0.9rem 0 0.6rem;
  color: var(--text);
}
.card p { color: var(--text-soft); font-size: 0.97rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--bg-raised-2);
  border: 1px solid var(--line-strong);
  color: var(--text);
  border-radius: var(--radius);
  padding: clamp(2.2rem, 5vw, 3.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-accent);
  opacity: 0.06;
  pointer-events: none;
}
.cta-band h2 { color: var(--text); font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 26ch; }
.cta-band .eyebrow { color: var(--gold); }
.cta-band .eyebrow::before { background: var(--gradient-accent); }

/* ---------- Page header (non-home pages) ---------- */
.page-header { padding: clamp(2.8rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3rem); border-bottom: 1px solid var(--line); }
.page-header h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin-top: 1rem; max-width: 20ch; }
.page-header p.lead { margin-top: 1.2rem; font-size: 1.05rem; color: var(--text-soft); max-width: 56ch; }

/* ---------- Content prose (Impressum / Datenschutz) ---------- */
.prose { max-width: 74ch; }
.prose h2 { font-size: 1.4rem; margin: 2.4rem 0 0.9rem; color: var(--text); }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { color: var(--text-soft); font-size: 0.99rem; margin-bottom: 0.9rem; }
.prose ul { margin-bottom: 1rem; }
.prose li { position: relative; padding-left: 1.2rem; }
.prose li::before { content: "–"; position: absolute; left: 0; color: var(--gold); }
.prose a { color: var(--gold); border-bottom: 1px solid var(--line-strong); }
.prose a:hover { color: var(--rose); border-color: var(--rose); }
.prose strong { color: var(--text); }

.cfg-placeholder { font-style: italic; color: var(--rose); opacity: 0.9; }
.todo-box {
  background: var(--bg-raised);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  padding: 1.1rem 1.3rem;
  margin: 1.2rem 0 2rem;
  border-radius: var(--radius);
}
.todo-box .eyebrow { margin-bottom: 0.5rem; color: var(--rose); }
.todo-box .eyebrow::before { background: var(--gradient-accent); }
.todo-box p { color: var(--text-soft); font-size: 0.93rem; }
.todo-box code { font-family: var(--font-mono); background: rgba(245,241,234,0.08); color: var(--text); padding: 0.1em 0.4em; border-radius: 2px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 860px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 3.5rem; } }

.social-buttons { display: grid; gap: 0.9rem; }
.social-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg-raised);
  color: var(--text);
  font-weight: 600;
  font-size: 1rem;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.social-btn:hover { border-color: var(--gold); transform: translateY(-2px); }
.social-btn .ico {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gradient-accent); color: #17120d;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 0.78rem; font-weight: 700; flex-shrink: 0;
}

.form { display: grid; gap: 1.1rem; background: var(--bg-raised); border: 1px solid var(--line); padding: 1.9rem; border-radius: var(--radius); }
.form-row { display: grid; gap: 0.4rem; }
.form-row label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-soft); }
.form-row input, .form-row textarea {
  font-family: var(--font-body);
  font-size: 0.97rem;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  resize: vertical;
}
.form-row input:focus, .form-row textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; border-color: var(--gold); }
.form-note { font-size: 0.85rem; color: var(--text-soft); }
.form-note a { color: var(--gold); border-bottom: 1px solid var(--line-strong); }
.form-note a:hover { color: var(--rose); border-color: var(--rose); }
/* Honeypot: hidden from humans (incl. screen readers), visible to bots. */
.form-trap { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { font-family: var(--font-mono); font-size: 0.85rem; display: none; padding: 0.7rem 0.9rem; border-radius: var(--radius); }
.form-status.is-visible { display: block; }
.form-status.ok { background: rgba(227,184,118,0.14); color: var(--gold); }

/* ---------- Team / values ---------- */
.values-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-top: 2.5rem; }
.value-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; color: var(--text); }
.value-item p { color: var(--text-soft); font-size: 0.94rem; }
.value-item .num { font-family: var(--font-mono); color: var(--gold); font-size: 0.8rem; display: block; margin-bottom: 0.6rem; }

.bio-block { display: grid; gap: 2.5rem; grid-template-columns: 1fr; align-items: start; }
@media (min-width: 860px) { .bio-block { grid-template-columns: 0.85fr 1.15fr; } }
.bio-copy p { color: var(--text-soft); margin-bottom: 1.1rem; font-size: 1.02rem; }
.bio-copy h2 { margin-bottom: 1rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 3rem 0 2rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1.3fr 1fr 1fr; }
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { color: var(--text-soft); font-size: 0.92rem; margin-top: 0.9rem; max-width: 32ch; }
.footer-col h4 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 1rem; }
.footer-col ul { display: grid; gap: 0.65rem; }
.footer-col a { font-size: 0.92rem; color: var(--text-soft); transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-soft);
}

/* ---------- Pull quote ---------- */
.pull-quote {
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--text);
  border-left: 2px solid var(--gold);
  padding-left: 1.4rem;
  margin: 2.2rem 0;
  font-style: normal;
}
.pull-quote cite {
  display: block;
  margin-top: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-style: normal;
}

/* ---------- Branch chips (Kooperationen: passende Branchen) ---------- */
.branch-row { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.branch-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg-raised);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.branch-chip:hover { border-color: var(--gold); transform: translateY(-2px); }
.branch-chip .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gradient-accent);
  flex-shrink: 0;
}

/* ---------- Story sections (Über uns) ---------- */
.story-section + .story-section { border-top: 1px solid var(--line); }
.story-copy { max-width: 68ch; }
.story-copy p { color: var(--text-soft); font-size: 1.02rem; margin-bottom: 1.1rem; }
.story-copy p:last-child { margin-bottom: 0; }
.milestone-intro { max-width: 62ch; color: var(--text-soft); margin: 1rem 0 2.5rem; font-size: 1.05rem; }

/* ---------- Real photography (hero / bio / story) ---------- */
.hero-photo-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  aspect-ratio: 4 / 5;
}
.hero-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.hero-photo-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(13,12,18,0.78) 0%, rgba(13,12,18,0.05) 38%, transparent 60%);
  pointer-events: none;
}
.hero-photo-caption {
  position: absolute;
  left: 1.4rem; right: 1.4rem; bottom: 1.2rem;
  z-index: 1;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-photo-caption span { display: block; color: var(--text-soft); margin-top: 0.3rem; font-size: 0.7rem; letter-spacing: 0.04em; }

.bio-photo {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  aspect-ratio: 4 / 5;
  position: relative;
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.bio-photo .photo-tag {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1.6rem 1.2rem 1rem;
  background: linear-gradient(0deg, rgba(13,12,18,0.85) 0%, transparent 100%);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-pair { display: grid; gap: 1.2rem; grid-template-columns: 1fr; margin: 2.2rem 0; }
@media (min-width: 640px) { .story-pair { grid-template-columns: 1fr 1fr; } }
.story-pair figure { margin: 0; }
.story-pair img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  display: block;
}
.story-pair figcaption {
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.bio-photo-stack { display: grid; gap: 1rem; }
.bio-photo-stack .bio-photo { aspect-ratio: 4 / 3; }

.story-photo { margin: 2.2rem 0; }
.story-photo img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  display: block;
}
.story-photo figcaption {
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-soft);
}

/* ---------- Trust-building (Kooperationen): Partner, Presse, Kennzahlen, Stimmen ---------- */
.trust-block + .trust-block { margin-top: 3rem; }
.trust-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 1.2rem;
}
.stat-row { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); }
.stat-item { text-align: left; }
.stat-item .stat-value { font-family: var(--font-display); font-size: 2.2rem; color: var(--text); }
.stat-item .stat-label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-soft); margin-top: 0.4rem; }
.platform-stats { display: grid; gap: 1.8rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.platform-stat-group { border-left: 2px solid var(--line-strong); padding-left: 1.2rem; }
.platform-name { font-family: var(--font-display); font-size: 1.05rem; color: var(--text); margin: 0 0 0.9rem; }
.platform-stat-group .stat-row { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
.platform-stat-group .stat-value { font-size: 1.7rem; }

/* Introductory teaser on the homepage (Kurzvorstellung) */
.intro-teaser { max-width: 62ch; }
.intro-teaser p { color: var(--text-soft); font-size: 1.05rem; margin-bottom: 1rem; }

/* Skip link */
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gradient-accent);
  color: #17120d;
  padding: 0.8rem 1.2rem;
  z-index: 100;
  font-weight: 600;
}
.skip-link:focus { left: 1rem; top: 1rem; }
