/* Außenwebsite FIPS — bewusst minimal.
   Kein Build-Schritt, kein Framework, keine externen Ressourcen (Fonts, CDN).
   Farben lehnen sich an die Warteseite an, die diese Site ersetzt. */

:root {
  --bg: #0f1115;
  --fg: #f4f4f5;
  --muted: #a1a1aa;
  --line: #27272a;
  --accent: #ff6b35;
  --maxw: 44rem;
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #ffffff;
    --fg: #18181b;
    --muted: #52525b;
    --line: #e4e4e7;
  }
}

* { box-sizing: border-box; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font: 16px/1.65 system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  -webkit-text-size-adjust: 100%;
}

header.site,
footer.site,
main {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.25rem;
}

header.site {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: baseline;
  border-bottom: 1px solid var(--line);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1.1rem;
  color: var(--fg);
  text-decoration: none;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  font-size: 0.95rem;
}

a { color: var(--accent); }
a:hover { text-decoration: none; }

h1 {
  font-size: 1.6rem;
  line-height: 1.25;
  margin: 1.5rem 0 0.5rem;
}

h2 {
  font-size: 1.15rem;
  margin: 2rem 0 0.4rem;
}

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

address {
  font-style: normal;
  padding: 0.85rem 1rem;
  border-left: 3px solid var(--accent);
  background: color-mix(in srgb, var(--fg) 4%, transparent);
}

.meta,
.langs {
  color: var(--muted);
  font-size: 0.85rem;
}

footer.site {
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
}

.langs a {
  color: var(--muted);
  text-decoration: none;
}
.langs a:hover { color: var(--accent); }

/* Startseite */
.lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 34rem;
}

ul.points {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 1rem;
}
ul.points li {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.6rem;
}
ul.points strong { display: block; }
