:root {
  --ground: #F4F7F9;
  --surface: #FBFCFD;
  --ink: #16232C;
  --muted: #5E7280;
  --faint: #A9B8C2;
  --accent: #2E7E93;
  --accent-ink: #FFFFFF;
  --line: rgba(22, 35, 44, 0.10);
  --streak: rgba(46, 126, 147, 0.16);
  --band: #E8EFF2;
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --ground: #0D141B;
    --surface: #121C24;
    --ink: #E5EDF2;
    --muted: #8FA3B0;
    --faint: #4A5D6A;
    --accent: #5FAEC2;
    --accent-ink: #0D141B;
    --line: rgba(229, 237, 242, 0.12);
    --streak: rgba(95, 174, 194, 0.14);
    --band: #14212B;
  }
}
:root[data-theme="dark"] {
  --ground: #0D141B;
  --surface: #121C24;
  --ink: #E5EDF2;
  --muted: #8FA3B0;
  --faint: #4A5D6A;
  --accent: #5FAEC2;
  --accent-ink: #0D141B;
  --line: rgba(229, 237, 242, 0.12);
  --streak: rgba(95, 174, 194, 0.14);
  --band: #14212B;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--ground);
  color: var(--ink);
  font-family: "Instrument Sans", "Segoe UI", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

.wrap { max-width: 68rem; margin: 0 auto; padding: 0 1.5rem; }

/* Kopf */
.nav {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.4rem 0;
}
.brand {
  font-family: "Schibsted Grotesk", "Segoe UI", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  text-decoration: none;
}
.brand .tld { color: var(--accent); font-weight: 400; }
.nav nav { display: flex; gap: 1.6rem; font-size: 0.9rem; }
.nav nav a { text-decoration: none; color: var(--muted); }
.nav nav a:hover, .nav nav a:focus-visible { color: var(--ink); outline: none; }

/* Hero (Startseite) */
.hero { position: relative; overflow: hidden; border-bottom: 1px solid var(--line); }
#wind { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.hero-inner { position: relative; z-index: 1; padding: 5.5rem 0 6rem; max-width: 42rem; }
.eyebrow {
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.2rem;
}
h1 {
  font-family: "Schibsted Grotesk", "Segoe UI", system-ui, sans-serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 5vw, 3rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  text-wrap: balance;
  margin: 0;
}
.lede { margin: 1.6rem 0 0; color: var(--muted); font-size: 1.1rem; max-width: 36rem; }

/* Sektionen */
section { padding: 4.5rem 0; }
.section-head { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 2.2rem; }
.section-head h2 {
  font-family: "Schibsted Grotesk", "Segoe UI", system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.5rem;
  margin: 0;
}
.section-head .rule { flex: 1; height: 1px; background: var(--line); }

.articles { display: grid; grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr)); gap: 1.4rem; }
article.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.6rem 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.card .kicker { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); }
.card h3 {
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.25;
  margin: 0;
  text-wrap: balance;
}
.card h3 a { text-decoration: none; }
.card h3 a:hover, .card h3 a:focus-visible { color: var(--accent); outline: none; }
.card p { margin: 0; color: var(--muted); font-size: 0.95rem; flex: 1; }
.card .meta { font-size: 0.8rem; color: var(--faint); }

.manifest p {
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.3rem;
  line-height: 1.6;
  max-width: 40rem;
  margin: 0;
}
.manifest p + p { margin-top: 1.2rem; }

.bridge { background: var(--band); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.bridge-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 760px) { .bridge-grid { grid-template-columns: 1fr; gap: 1.8rem; } }
.bridge h2 {
  font-family: "Schibsted Grotesk", "Segoe UI", system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.25;
  margin: 0 0 1rem;
  text-wrap: balance;
}
.bridge p { color: var(--muted); margin: 0 0 1rem; }
.cta {
  display: inline-block;
  background: var(--accent);
  color: var(--accent-ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
}
.cta:hover, .cta:focus-visible { filter: brightness(1.08); outline: none; }
.bridge-quote {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
  border-left: 2px solid var(--accent);
  padding-left: 1.2rem;
  margin: 0;
}
.bridge-quote cite {
  display: block;
  margin-top: 0.6rem;
  font-family: "Instrument Sans", system-ui, sans-serif;
  font-style: normal;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Artikelseite */
.artikel { max-width: 42rem; margin: 0 auto; padding: 3rem 1.5rem 4rem; }
.artikel .kicker { font-size: 0.76rem; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin: 0 0 1rem; }
.artikel h1 { font-size: clamp(1.8rem, 4.5vw, 2.5rem); }
.artikel .dateline { color: var(--faint); font-size: 0.85rem; margin: 1rem 0 0; }
.artikel .kurz {
  background: var(--band);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 1.2rem 1.4rem;
  margin: 2.2rem 0;
  font-size: 0.98rem;
}
.artikel .kurz strong { font-family: "Schibsted Grotesk", system-ui, sans-serif; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; font-size: 0.76rem; color: var(--accent); display: block; margin-bottom: 0.4rem; }
.artikel .body { font-family: "Newsreader", Georgia, serif; font-size: 1.14rem; line-height: 1.7; }
.artikel .body p { margin: 0 0 1.2rem; }
.artikel .body h2 {
  font-family: "Schibsted Grotesk", "Segoe UI", system-ui, sans-serif;
  font-weight: 500;
  font-size: 1.35rem;
  line-height: 1.3;
  margin: 2.4rem 0 0.9rem;
  text-wrap: balance;
}
.artikel .body ul, .artikel .body ol { margin: 0 0 1.2rem; padding-left: 1.4rem; }
.artikel .body li { margin-bottom: 0.5rem; }
.artikel .body a { color: var(--accent); }
.artikel .hinweis { font-family: "Instrument Sans", system-ui, sans-serif; font-size: 0.88rem; color: var(--muted); border-top: 1px solid var(--line); margin-top: 2.5rem; padding-top: 1.2rem; }
.artikel .weiter { border-top: 1px solid var(--line); margin-top: 2.5rem; padding-top: 1.6rem; font-size: 0.95rem; }
.artikel .weiter .label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); display: block; margin-bottom: 0.5rem; }
.artikel .weiter a { color: var(--accent); text-decoration: none; }
.artikel .weiter a:hover, .artikel .weiter a:focus-visible { text-decoration: underline; outline: none; }

/* Fuß */
footer.site { border-top: 1px solid var(--line); padding: 2rem 0 2.4rem; font-size: 0.82rem; color: var(--faint); }
.foot-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; }
footer.site a { color: var(--faint); text-decoration: none; }
footer.site a:hover, footer.site a:focus-visible { color: var(--muted); outline: none; }
