/* NoData.ForSale – zentrales Designsystem / Master-Baseline v3.71 – Callout-Stil nach GrapheneOS
   Keine externen Ressourcen. Display: Michroma 400. Text: Barlow.
   Verbindliche Projektregeln: ../MASTER.md */

:root {
  --bg: #06111e;
  --bg-deep: #020812;
  --panel: rgba(9, 24, 39, .78);
  --line: rgba(120, 174, 207, .22);
  --muted: #81909f;
  --text: #d7e0e8;
  --blue: #118bd0;
  --blue-soft: #55b8ed;
  --brand-nodata: #dce5ec;
  --brand-forsale: #118bd0;
  --heading-primary: #dce5ec;
  --heading-accent: #8ec9e8;
  --heading-secondary: #bcc9d3;
  --body-copy: #9aa8b5;
  --body-strong: #d2dde5;
  --header-height: 108px;
  --layout-gutter: clamp(24px, 8vw, 120px);
  --hero-height: 100svh;
  --content-top-space: 90px;
  --content-bottom-space: 120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--bg-deep);
  font-family: "Barlow", system-ui, sans-serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: .035;
  background-image: repeating-linear-gradient(0deg, transparent 0, transparent 3px, #fff 4px);
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }
h1, h2, p { margin-top: 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  overflow: hidden;
  background:
    radial-gradient(circle at 38% 45%, rgba(31, 63, 88, .27), transparent 35%),
    linear-gradient(115deg, #091827 0%, #071421 49%, #020811 100%);
}

/* ------------------------------------------------------------------
   Header, Wortmarke und Navigation
   ------------------------------------------------------------------ */
.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  gap: clamp(38px, 4.2vw, 68px);
  padding: 0 clamp(24px, 5.5vw, 78px);
}

.brand,
.footer-brand {
  position: relative;
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: -.07em;
  text-shadow: 0 8px 18px rgba(0, 0, 0, .55);
  white-space: nowrap;
}
.brand > span:first-child,
.footer-brand > span:first-child { color: var(--brand-nodata); }
.brand > strong,
.footer-brand > strong {
  color: var(--brand-forsale);
  font-weight: 400;
}

.brand-tagline,
.footer-brand-tagline {
  position: absolute;
  top: calc(100% + 5px);
  font-family: inherit;
  font-size: clamp(.30rem, .42vw, .44rem);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: .025em;
  color: rgba(126, 190, 225, .72);
  text-shadow: 0 0 10px rgba(17, 139, 208, .12);
  white-space: nowrap;
  text-transform: none;
}
.brand-tagline { left: 0; text-align: left; }
.footer-brand-tagline {
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* Header-Wortmarke bewusst etwas präsenter als die Footer-Variante. */
.brand {
  font-size: clamp(2.1rem, 3.4vw, 3.2rem);
}
.brand-tagline {
  font-size: clamp(.52rem, .75vw, .72rem);
  line-height: 1.55;
  letter-spacing: .035em;
  color: rgba(160, 213, 240, .92);
}

.menu-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.menu-button { display: none; }

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3.3vw, 52px);
  color: #adb8c2;
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: .72rem;
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.main-nav a {
  position: relative;
  padding: 15px 0;
  transition: color .2s ease;
}
.main-nav a:hover,
.main-nav a.active { color: #eef8ff; }
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 7px;
  height: 1px;
  background: var(--blue-soft);
  transform: scaleX(0);
  transition: transform .2s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }

.main-nav .nav-item { position: relative; }
.main-nav .nav-item > a { display: block; }
.submenu {
  position: absolute;
  top: calc(100% - 2px);
  left: -18px;
  min-width: 190px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  background: rgba(3, 12, 22, .97);
  border: 1px solid rgba(85, 184, 237, .22);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .45);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.submenu a {
  display: block;
  padding: 11px 12px;
  white-space: nowrap;
  color: #9fb1c1;
  border-bottom: 1px solid rgba(120, 174, 207, .10);
}
.submenu a:last-child { border-bottom: 0; }
.submenu a::after { display: none; }
.submenu a:hover,
.submenu a.active {
  color: #eef8ff;
  background: rgba(17, 139, 208, .10);
}
.has-submenu:hover .submenu,
.has-submenu:focus-within .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ------------------------------------------------------------------
   Fixiertes Face-Motiv – v3.52 – neues Face-Finish
   Desktop unverändert; Mobile etwas präsenter beim Scrollen.
   ------------------------------------------------------------------ */
.fixed-face {
  position: fixed;
  z-index: 0;
  top: 0;
  right: 0;
  width: min(57vw, 880px);
  height: 100svh;
  pointer-events: none;
  background: url("../images/face.webp") center top / cover no-repeat;
  filter: saturate(.92) contrast(1.08);
  /* Das neue Face-Motiv besitzt einen sehr dunklen linken Rand.
     Eine echte Alpha-Maske lässt diesen auf Desktop weich in den
     originalen Seitenhintergrund übergehen, statt Farbe darüberzulegen. */
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, .16) 7%,
    rgba(0, 0, 0, .48) 15%,
    rgba(0, 0, 0, .78) 23%,
    #000 32%,
    #000 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 0, 0, .16) 7%,
    rgba(0, 0, 0, .48) 15%,
    rgba(0, 0, 0, .78) 23%,
    #000 32%,
    #000 100%
  );
}

/* Der eigentliche Seiteninhalt scrollt über dem fixierten Motiv. */
main,
.metal-bar,
.site-footer {
  position: relative;
  z-index: 1;
}

/* ------------------------------------------------------------------
   Gemeinsames Hero-Motiv
   ------------------------------------------------------------------ */
.hero,
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.face-layer {
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  bottom: auto;
  width: min(57vw, 880px);
  height: 100svh;
  background: transparent;
}

/* v3.47: face.webp liegt als eigene fixe Viewport-Ebene hinter dem
   scrollenden Inhalt. Die Hero-face-layer enthält nur noch die
   dekorativen Daten-/Lichteffekte des Einstiegsbereichs. */

.face-layer::before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  top: 0;
  height: 168px;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(2, 8, 18, .96) 0%,
    rgba(2, 8, 18, .88) 24%,
    rgba(2, 8, 18, .62) 48%,
    rgba(2, 8, 18, .30) 68%,
    rgba(2, 8, 18, .10) 84%,
    rgba(2, 8, 18, 0) 100%
  );
}
.face-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 59% 20%,
    rgba(0, 153, 234, .16) 0%,
    rgba(0, 153, 234, .09) 4%,
    rgba(0, 153, 234, .035) 8%,
    rgba(0, 153, 234, 0) 13%
  );
  mix-blend-mode: screen;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(6, 17, 30, .99) 0%,
      rgba(6, 17, 30, .97) 22%,
      rgba(6, 17, 30, .86) 38%,
      rgba(6, 17, 30, .58) 54%,
      rgba(6, 17, 30, .28) 69%,
      rgba(6, 17, 30, .10) 83%,
      rgba(6, 17, 30, 0) 97%
    ),
    linear-gradient(
      0deg,
      rgba(3, 10, 18, .96) 0%,
      rgba(3, 10, 18, .78) 9%,
      rgba(3, 10, 18, .46) 20%,
      rgba(3, 10, 18, .18) 32%,
      rgba(3, 10, 18, 0) 46%
    );
}

.scanline {
  position: absolute;
  top: 0;
  right: 3.5%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(92, 190, 240, .5), transparent);
  box-shadow: -18px 0 30px rgba(35, 151, 211, .25);
  animation: scan 7s linear infinite;
}
@keyframes scan {
  0%, 100% { opacity: .1; transform: translateX(-22px); }
  50% { opacity: .65; transform: translateX(22px); }
}

.data-stream {
  position: absolute;
  color: rgba(172, 220, 244, .10);
  font: 400 clamp(.55rem, .68vw, .7rem)/1.55 monospace;
  letter-spacing: .08em;
  text-align: right;
}
.data-two { left: 12%; bottom: 16%; }

.eyebrow {
  margin: 0 0 19px;
  color: var(--blue-soft);
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: .58rem;
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: .32em;
  text-transform: uppercase;
}

/* ------------------------------------------------------------------
   Startseite
   ------------------------------------------------------------------ */
.hero {
  min-height: var(--hero-height);
  padding: calc(var(--header-height) + 95px) var(--layout-gutter) 118px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-copy {
  position: relative;
  z-index: 2;
  width: min(580px, 48vw);
  margin-top: 20px;
}
.welcome-copy {
  width: min(720px, 58vw);
  align-self: flex-start;
}

h1 {
  margin-bottom: 23px;
  color: var(--heading-primary);
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-weight: 400;
  font-synthesis: none;
  text-transform: uppercase;
}
h1 span,
h1 strong { display: block; }
h1 strong {
  margin-top: 12px;
  color: var(--blue);
  font-weight: 400;
}
.hero h1 {
  font-size: clamp(2.25rem, 3.7vw, 4.1rem);
  line-height: 1.02;
  letter-spacing: .015em;
}
.welcome-copy h1 {
  font-size: clamp(2.05rem, 3.35vw, 3.7rem);
  line-height: 1.08;
}

.welcome-text {
  max-width: 650px;
  color: #98a7b3;
  font-size: 1rem;
  line-height: 1.72;
}
.welcome-text p { margin: 0 0 1.25em; }
.welcome-statement,
.closing-lines {
  color: #8ec9e8;
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: .76rem;
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.75;
  letter-spacing: .035em;
}
.data-list { color: #afbbc5; line-height: 1.85; }
.home-decision-title {
  margin: 2.25em 0 1em;
  color: var(--heading-accent);
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.15rem, 2.3vw, 1.7rem);
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.3;
  letter-spacing: .02em;
}
.home-brand-signoff {
  margin-top: 2.1em !important;
  color: var(--blue);
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: .82rem;
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: .035em;
}

.closing-lines { margin-top: 2em !important; }
.closing-lines strong { color: var(--blue-soft); font-weight: 400; }

/* ------------------------------------------------------------------
   Inhaltsseiten – Hero
   ------------------------------------------------------------------ */
.page-hero {
  min-height: var(--hero-height);
  padding: calc(var(--header-height) + 110px) var(--layout-gutter) 90px;
  display: flex;
  align-items: flex-end;
}
.page-title {
  position: relative;
  z-index: 2;
  width: min(980px, 64vw);
}
.page-title h1 {
  margin-bottom: 18px;
  max-width: 100%;
  font-size: clamp(2.7rem, 4.75vw, 4.85rem);
  line-height: 1.04;
  letter-spacing: .015em;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}
.page-title p {
  max-width: 620px;
  color: #96a6b4;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ------------------------------------------------------------------
   Redaktionelle Inhalte und Rechtliches
   ------------------------------------------------------------------ */
.article-content,
.home-content {
  min-height: 55vh;
  padding: var(--content-top-space) var(--layout-gutter) var(--content-bottom-space);
  background:
    linear-gradient(90deg,
      rgba(7, 19, 31, .995) 0%,
      rgba(7, 19, 31, .985) 50%,
      rgba(7, 19, 31, .94) 66%,
      rgba(7, 19, 31, .80) 82%,
      rgba(7, 19, 31, .66) 100%
    ),
    radial-gradient(circle at 76% 20%, rgba(17, 139, 208, .07), transparent 25%);
}
.home-content .welcome-text {
  max-width: 650px;
}
.article-content .content-wrap { max-width: 900px; }
.article-content .content-wrap > h2 { margin-top: 72px; }
.article-content .content-wrap > .meta + h2 { margin-top: 0; }

.article-content h2 {
  margin-bottom: 24px;
  max-width: 100%;
  color: var(--heading-accent);
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: .015em;
  text-transform: uppercase;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}
.article-content h3 {
  margin: 2.75em 0 .9em;
  max-width: 100%;
  color: var(--heading-secondary);
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.14rem, 2.05vw, 1.62rem);
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.4;
  letter-spacing: .008em;
  text-shadow: 0 0 18px rgba(7, 20, 33, .14);
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}
.article-content h4 {
  margin: 2.1em 0 .75em;
  max-width: 100%;
  color: #b2c3cf;
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(.86rem, 1.45vw, 1.08rem);
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.52;
  letter-spacing: .012em;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: balance;
}
.article-content p {
  margin-bottom: 1.48em;
  color: var(--body-copy);
  font-size: 1.05rem;
  line-height: 1.92;
}
.article-content strong {
  color: var(--body-strong);
  font-weight: 600;
}
.article-content .meta {
  margin-bottom: 20px;
  color: var(--blue-soft);
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: .63rem;
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.article-content ul {
  margin: -.35em 0 1.6em 1.25em;
  padding-left: 1.15em;
  color: var(--body-copy);
}
.article-content li {
  margin: .5em 0;
  padding-left: .25em;
  color: var(--body-copy);
  font-size: 1.04rem;
  line-height: 1.7;
}
.article-content code {
  padding: .13em .38em;
  border: 1px solid rgba(85, 184, 237, .16);
  border-radius: 4px;
  background: rgba(17, 139, 208, .065);
  color: #acd8ee;
  font: .91em/1.5 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  overflow-wrap: anywhere;
}
.article-content a:not(.button) {
  color: var(--blue-soft);
  text-decoration: underline;
  text-decoration-color: rgba(85, 184, 237, .35);
  text-underline-offset: .18em;
}
.article-content a:not(.button):hover {
  color: #b9e4fa;
  text-decoration-color: currentColor;
}

.article-content .article-lead {
  margin-bottom: 2.15em;
  color: #b4c1cb;
  font-size: 1.11rem;
  line-height: 1.82;
}
.article-content .article-highlight {
  margin: 2em 0 2.25em;
  padding: .05em 0 .05em 24px;
  border-left: 3px solid rgba(85, 184, 237, .62);
  color: #92d0ef;
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(.98rem, 1.75vw, 1.3rem);
  font-weight: 400;
  font-synthesis: none;
  font-style: normal;
  line-height: 1.82;
  letter-spacing: .008em;
}
/* v3.71: Der komplette Highlight-Inhalt folgt der GrapheneOS-Referenz.
   Damit bleiben auch mehrzeilige/div-basierte Highlights in Über mich,
   Artikeln und Impulsen einheitlich – inklusive verschachteltem em/strong. */
.article-content .article-highlight p {
  margin: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: normal;
  line-height: inherit;
  letter-spacing: inherit;
}
.article-content .article-highlight p + p { margin-top: .72em; }
.article-content .article-highlight strong,
.article-content .article-highlight em {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: 400;
  font-synthesis: none;
  font-style: normal;
  line-height: inherit;
  letter-spacing: inherit;
}
.article-content .article-subheading {
  margin: -.25em 0 1.7em;
  color: var(--blue-soft);
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: .68rem;
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.6;
  letter-spacing: .03em;
  text-transform: uppercase;
}
.article-content .article-brand-statement {
  color: var(--blue);
  font-size: clamp(2rem, 4vw, 3.7rem);
  letter-spacing: .02em;
  text-transform: none;
}
.legal-note {
  margin-top: 2.8em;
  padding: 18px 20px;
  border-left: 2px solid rgba(85, 184, 237, .55);
  background: rgba(17, 139, 208, .045);
}


.article-content .article-divider {
  height: 1px;
  margin: clamp(42px, 6vw, 68px) 0 clamp(36px, 5vw, 58px);
  border: 0;
  background: linear-gradient(90deg, rgba(85, 184, 237, .38), rgba(85, 184, 237, 0));
}
.article-content .article-quote {
  margin: 1.85em 0 2.1em;
  padding: .25em 0 .25em 24px;
  border-left: 3px solid rgba(85, 184, 237, .55);
}
.article-content .article-quote p {
  margin: .55em 0;
  color: #c0ccd5;
  font-size: clamp(1.1rem, 1.85vw, 1.34rem);
  line-height: 1.78;
  font-style: italic;
}

/* v3.70: Redaktionelle Balken-Statements in Artikeln/Impulsen übernehmen
   exakt die Typografie des GrapheneOS-Highlights. Historische Zitatseiten
   behalten bewusst ihre eigenständige Zitatdarstellung. */
body:not(.page-zitat) .article-content .article-quote {
  margin: 2em 0 2.25em;
  padding: .05em 0 .05em 24px;
  border-left: 3px solid rgba(85, 184, 237, .62);
}
body:not(.page-zitat) .article-content .article-quote p {
  margin: 0;
  color: #92d0ef;
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(.98rem, 1.75vw, 1.3rem);
  font-weight: 400;
  font-synthesis: none;
  font-style: normal;
  line-height: 1.82;
  letter-spacing: .008em;
}
.article-content .source-ref {
  margin: -.4em 0 1.4em;
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: .64rem;
  font-weight: 400;
  font-synthesis: none;
}
.article-content .source-ref a { text-decoration: none; }
.article-sources {
  margin-top: clamp(64px, 8vw, 96px);
  padding-top: clamp(36px, 5vw, 58px);
  border-top: 1px solid rgba(85, 184, 237, .24);
}
.article-sources .article-sources-title { margin-top: 0; }
.article-sources .source-entry { scroll-margin-top: 110px; }
.article-check-title { margin-top: clamp(64px, 8vw, 96px) !important; }

/* Tabellen innerhalb längerer Artikel: kompakt, mobil innerhalb des Inhalts scrollbar */
.article-table-wrap {
  width: 100%;
  margin: 2em 0 2.25em;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(85, 184, 237, .20);
  background: rgba(4, 15, 26, .42);
}
.article-table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  color: var(--body-copy);
  font-size: .98rem;
  line-height: 1.55;
}
.article-table th,
.article-table td {
  padding: 13px 16px;
  border-right: 1px solid rgba(85, 184, 237, .12);
  border-bottom: 1px solid rgba(85, 184, 237, .12);
  text-align: left;
  vertical-align: top;
}
.article-table th {
  color: var(--body-strong);
  background: rgba(17, 139, 208, .075);
  font-weight: 600;
}
.article-table th:last-child,
.article-table td:last-child { border-right: 0; }
.article-table tbody tr:last-child td { border-bottom: 0; }



/* v3.67: lange Mustertexte und nummerierte Listen in Impulsen */
.article-content ol {
  margin: -.35em 0 1.6em 1.25em;
  padding-left: 1.15em;
  color: var(--body-copy);
}
.article-content pre {
  margin: 1.6em 0 2em;
  padding: 18px 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(85, 184, 237, .20);
  border-radius: 5px;
  background: rgba(4, 15, 26, .56);
  color: #b9c8d3;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.article-content pre code {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: .91rem;
  line-height: 1.65;
}

/* ------------------------------------------------------------------
   Artikelübersicht / Magazin-Karten
   ------------------------------------------------------------------ */
.article-index .content-wrap { max-width: 1180px; }
.article-index .article-lead { max-width: 860px; }
.article-index > .content-wrap > p:not(.meta):not(.article-lead) { max-width: 860px; }

.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
  margin-top: clamp(44px, 6vw, 72px);
}
.article-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(85, 184, 237, .20);
  background:
    linear-gradient(145deg, rgba(17, 139, 208, .075), rgba(5, 17, 29, .20) 48%),
    rgba(4, 15, 26, .58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .025);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.article-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 2px;
  background: linear-gradient(180deg, var(--blue-soft), rgba(85, 184, 237, 0));
  opacity: .42;
  transition: opacity .25s ease;
}
.article-card:hover {
  transform: translateY(-4px);
  border-color: rgba(85, 184, 237, .42);
  background:
    linear-gradient(145deg, rgba(17, 139, 208, .11), rgba(5, 17, 29, .24) 48%),
    rgba(4, 15, 26, .66);
  box-shadow: 0 20px 48px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .035);
}
.article-card:hover::before { opacity: .9; }
.article-card-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 46px;
}
.article-card-index {
  color: rgba(85, 184, 237, .32);
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: .72rem;
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: .12em;
}
.article-card .article-card-meta {
  margin: 0;
  color: var(--blue-soft);
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: .57rem;
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: .09em;
  text-align: right;
  text-transform: uppercase;
}
.article-card h3 {
  margin: 0 0 18px;
  color: var(--heading-secondary);
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  line-height: 1.35;
}
.article-card > p {
  margin: 0 0 30px;
  color: var(--body-copy);
  font-size: 1rem;
  line-height: 1.72;
}
.article-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(85, 184, 237, .13);
  color: #8ec9e8 !important;
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: .62rem;
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: .06em;
  text-decoration: none !important;
  text-transform: uppercase;
}
.article-card-link span:last-child {
  font-family: "Barlow", system-ui, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  transition: transform .2s ease;
}
.article-card-link:hover { color: #d6f1ff !important; }
.article-card-link:hover span:last-child { transform: translateX(4px); }

.article-index-note {
  margin-top: clamp(54px, 7vw, 86px);
  padding: clamp(24px, 3vw, 34px);
  border-left: 3px solid rgba(85, 184, 237, .54);
  background: linear-gradient(90deg, rgba(17, 139, 208, .06), transparent 72%);
}
.article-index-note h3 { margin-top: 0; }
.article-index-note p { max-width: 760px; margin-bottom: 0; }

/* ------------------------------------------------------------------
   Buttons und Spezialseiten
   ------------------------------------------------------------------ */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-width: 222px;
  margin-top: 20px;
  padding: 15px 21px;
  border: 1px solid rgba(49, 150, 205, .55);
  border-radius: 6px;
  color: #8ec9e8;
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: .68rem;
  font-weight: 400;
  font-synthesis: none;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: background .25s, color .25s, box-shadow .25s;
}
.cta:hover {
  color: #fff;
  background: rgba(15, 130, 190, .14);
  box-shadow: 0 0 28px rgba(19, 139, 208, .15);
}
.cta span { font-size: 1.5rem; line-height: .5; }

.social-hero .page-title { width: min(850px, 78vw); }
.social-hero .page-title h1 { margin-bottom: 18px; }
.social-kicker {
  margin: 0 0 18px;
  color: rgba(85, 184, 237, .38);
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.7rem);
  font-weight: 400;
  font-synthesis: none;
  line-height: .95;
  letter-spacing: -.045em;
  text-transform: uppercase;
  text-shadow: 0 0 34px rgba(17, 139, 208, .12);
}
.social-content .content-wrap { max-width: 850px; }
.social-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 34px 0 10px;
}
.social-principles article {
  padding: 23px 22px;
  border: 1px solid rgba(120, 174, 207, .18);
  border-radius: 8px;
  background: rgba(7, 22, 36, .48);
}
.social-principles h3 {
  margin: 2.6em 0 .8em;
  color: var(--heading-secondary);
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(1.08rem, 2vw, 1.55rem);
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.35;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.social-principles p {
  margin: 0;
  color: var(--body-copy);
  font-size: 1.04rem;
  line-height: 1.65;
}

.error-code {
  margin: 0 0 12px;
  color: rgba(85, 184, 237, .34);
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(5.5rem, 14vw, 11rem);
  font-weight: 400;
  font-synthesis: none;
  line-height: .8;
  letter-spacing: -.055em;
  text-shadow: 0 0 38px rgba(17, 139, 208, .14);
}
.error-hero .page-title { width: min(820px, 76vw); }
.error-hero .page-title h1 { margin-bottom: 18px; }
.error-content .content-wrap { max-width: 760px; }

/* ------------------------------------------------------------------
   Trenner und Footer
   ------------------------------------------------------------------ */
.metal-bar {
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(17, 139, 208, 0) 0%,
    rgba(17, 139, 208, .38) 18%,
    rgba(85, 184, 237, .72) 50%,
    rgba(17, 139, 208, .38) 82%,
    rgba(17, 139, 208, 0) 100%
  );
  box-shadow: 0 0 12px rgba(17, 139, 208, .12);
}

.site-footer {
  min-height: 188px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 42px;
  padding: 34px clamp(24px, 5.5vw, 78px) 48px;
  background: linear-gradient(#020914, #06101c);
  color: #74818e;
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.site-footer p { margin: 0; }
.footer-brand {
  font-size: clamp(2rem, 3.15vw, 3.35rem);
  text-transform: none;
}
.footer-brand-tagline {
  top: calc(100% + 8px);
  font-size: clamp(.46rem, .58vw, .60rem);
  line-height: 1.62;
  letter-spacing: .035em;
  color: rgba(154, 207, 236, .90);
}
.footer-meta {
  display: grid;
  gap: 10px;
  justify-items: start;
}
.footer-legal,
.footer-social {
  display: flex;
}
.footer-social-wrap {
  justify-self: end;
  display: grid;
  gap: 12px;
  width: max-content;
}
.footer-rss {
  justify-self: stretch;
  color: var(--blue-soft);
  text-align: center;
}
.footer-legal {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 18px;
}
.footer-social {
  justify-content: center;
  gap: 30px;
}
.footer-legal a,
.footer-social a,
.footer-rss { white-space: nowrap; }
.footer-legal a.active { color: var(--blue-soft); }
.site-footer a:hover { color: var(--blue-soft); }

/* ------------------------------------------------------------------
   News / Meldungen
   ------------------------------------------------------------------ */
.news-content .content-wrap { max-width: 920px; }
.news-entry-header { margin-bottom: 34px; }
.news-entry-header h2 { margin-top: 0; }
.news-status {
  display: inline-block;
  margin: 0 0 1.8em !important;
  padding: .55em .8em;
  border: 1px solid rgba(85, 184, 237, .28);
  background: rgba(17, 139, 208, .07);
  color: var(--blue-soft) !important;
  font-family: "Michroma", "Arial Narrow", Arial, sans-serif;
  font-size: .63rem !important;
  font-weight: 400;
  font-synthesis: none;
  line-height: 1.5 !important;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.news-check {
  margin-top: .4em !important;
  padding: 22px 24px 22px 42px !important;
  border-left: 3px solid rgba(85, 184, 237, .52);
  background: rgba(17, 139, 208, .035);
}
.news-divider {
  height: 1px;
  margin: 72px 0 58px;
  border: 0;
  background: linear-gradient(90deg, rgba(85, 184, 237, .45), rgba(85, 184, 237, 0));
}
.news-sources h3 { margin-top: 0; }
.news-sources h4 { color: var(--blue-soft); }


@media (min-width: 901px) and (max-width: 1180px) {
  .site-header {
    gap: clamp(22px, 2.8vw, 34px);
    padding-left: clamp(24px, 4vw, 46px);
    padding-right: clamp(24px, 4vw, 46px);
  }
  .brand { font-size: clamp(1.65rem, 2.45vw, 2rem); }
  .brand-tagline { font-size: clamp(.40rem, .52vw, .48rem); }
  .main-nav {
    gap: clamp(17px, 2.2vw, 26px);
    font-size: .66rem;
  }
  .page-title { width: min(820px, 66vw); }
}

/* ------------------------------------------------------------------
   Tablet / Mobile
   ------------------------------------------------------------------ */
@media (max-width: 900px) {
  :root {
    --header-height: 82px;
    --layout-gutter: clamp(24px, 6vw, 54px);
    --hero-height: 96svh;
    --mobile-title-start: clamp(330px, 52svh, 500px);
    --content-top-space: 82px;
    --content-bottom-space: 104px;
  }
  .footer-social-wrap { justify-self: center; width: max-content; }

  .site-header { justify-content: space-between; }
  .brand { font-size: 1.28rem; }
  .brand-tagline {
    font-size: .40rem;
    line-height: 1.48;
    color: rgba(142, 201, 232, .88);
  }
  .menu-button {
    position: relative;
    z-index: 12;
    display: grid;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 10px;
    border: 1px solid var(--line);
    background: rgba(4, 13, 23, .75);
    color: #fff;
    cursor: pointer;
  }
  .menu-button span:not(.sr-only) {
    height: 1px;
    background: #a8cce0;
    transition: .25s;
  }
  .menu-toggle:checked + .menu-button span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle:checked + .menu-button span:nth-child(2) { opacity: 0; }
  .menu-toggle:checked + .menu-button span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .main-nav {
    position: fixed;
    inset: 0;
    z-index: 11;
    height: 100dvh;
    max-height: 100dvh;
    padding:
      calc(96px + env(safe-area-inset-top))
      35px
      calc(34px + env(safe-area-inset-bottom));
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    background: rgba(2, 8, 18, .97);
    transform: translateX(100%);
    transition: transform .3s ease;
    font-size: 1.25rem;
  }
  .menu-toggle:checked ~ .main-nav { transform: translateX(0); }
  .main-nav .nav-item { width: 100%; }
  .submenu {
    position: static;
    min-width: 0;
    padding: 3px 0 0 18px;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    border: 0;
    box-shadow: none;
  }
  .submenu a {
    padding: 9px 0;
    font-size: .85rem;
    border: 0;
  }

  /* Mobile v3.66: Der Titel startet auf allen Seitentypen an derselben
     vertikalen Position. Lange Titel verlängern den Hero nach unten,
     statt nach oben in das Gesicht hineinzuwachsen. */
  .hero,
  .page-hero {
    min-height: var(--hero-height);
    padding-top: var(--mobile-title-start);
    padding-right: var(--layout-gutter);
    padding-bottom: 76px;
    padding-left: var(--layout-gutter);
  }
  .hero { justify-content: flex-start; }
  .hero-copy { width: 100%; margin-top: 0; }
  .welcome-copy { width: 100%; }
  .welcome-text { max-width: 680px; }

  .page-hero { align-items: flex-start; }
  .page-title,
  .social-hero .page-title,
  .error-hero .page-title { width: 100%; }

  .fixed-face {
    width: 100%;
    height: 74svh;
    opacity: .82;
    background-position: 61% top;
    /* v3.66: Das Gesicht bleibt länger sichtbar. Der Titel startet erst
       im unteren Fade-Bereich, damit Bild und Typografie nicht konkurrieren. */
    -webkit-mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 58%,
      rgba(0, 0, 0, .94) 66%,
      rgba(0, 0, 0, .72) 76%,
      rgba(0, 0, 0, .42) 86%,
      rgba(0, 0, 0, .16) 94%,
      transparent 100%
    );
    mask-image: linear-gradient(
      180deg,
      #000 0%,
      #000 58%,
      rgba(0, 0, 0, .94) 66%,
      rgba(0, 0, 0, .72) 76%,
      rgba(0, 0, 0, .42) 86%,
      rgba(0, 0, 0, .16) 94%,
      transparent 100%
    );
  }
  .face-layer {
    width: 100%;
    height: 74svh;
    opacity: 1;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 60%, rgba(0,0,0,.72) 78%, transparent 100%);
    mask-image: linear-gradient(180deg, #000 0%, #000 60%, rgba(0,0,0,.72) 78%, transparent 100%);
  }
  .face-layer::before {
    height: 132px;
    background: linear-gradient(
      180deg,
      rgba(2, 8, 18, .95) 0%,
      rgba(2, 8, 18, .80) 32%,
      rgba(2, 8, 18, .46) 60%,
      rgba(2, 8, 18, .16) 82%,
      rgba(2, 8, 18, 0) 100%
    );
  }
  .hero::before,
  .page-hero::before {
    background:
      linear-gradient(
        0deg,
        rgba(6, 17, 30, 1) 0%,
        rgba(6, 17, 30, .97) 18%,
        rgba(6, 17, 30, .84) 36%,
        rgba(6, 17, 30, .56) 52%,
        rgba(6, 17, 30, .24) 66%,
        rgba(6, 17, 30, .07) 78%,
        rgba(6, 17, 30, 0) 90%
      ),
      linear-gradient(
        90deg,
        rgba(6, 17, 30, .26) 0%,
        rgba(6, 17, 30, .12) 48%,
        rgba(6, 17, 30, 0) 82%
      );
  }

  .article-grid { grid-template-columns: 1fr; }
  .article-card { min-height: 0; }

  .social-principles { grid-template-columns: 1fr; }
  .error-code { font-size: clamp(4.5rem, 25vw, 8rem); }

  .site-footer {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 36px;
    padding-bottom: calc(52px + env(safe-area-inset-bottom));
    text-align: center;
  }
  .footer-meta { justify-items: center; }
  .footer-legal,
  .footer-social {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  :root {
    --layout-gutter: clamp(20px, 5.5vw, 28px);
    --content-top-space: 72px;
    --content-bottom-space: 92px;
  }
  .footer-brand-tagline {
    font-size: clamp(.38rem, 1.9vw, .48rem);
    line-height: 1.58;
  }

  .hero,
  .page-hero {
    padding-left: var(--layout-gutter);
    padding-right: var(--layout-gutter);
  }
  .page-title {
    min-width: 0;
    max-width: 100%;
  }
  .page-title h1 {
    font-size: clamp(1.35rem, 7.5vw, 2.45rem);
    line-height: 1.12;
    letter-spacing: .01em;
    hyphens: none;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }
  .hero .welcome-copy h1 {
    font-size: clamp(1.3rem, 6.5vw, 2.2rem);
    line-height: 1.12;
    letter-spacing: .01em;
  }

  .article-content,
  .home-content {
    padding-left: var(--layout-gutter);
    padding-right: var(--layout-gutter);
    background:
      linear-gradient(90deg, rgba(7, 19, 31, .94), rgba(7, 19, 31, .86)),
      radial-gradient(circle at 76% 20%, rgba(17, 139, 208, .055), transparent 25%);
  }
  .article-content .content-wrap > h2 { margin-top: 54px; }
  .article-content .content-wrap > .meta + h2 { margin-top: 0; }
  .article-content h2 {
    font-size: clamp(1.25rem, 6.2vw, 1.8rem);
    line-height: 1.28;
    letter-spacing: .01em;
    hyphens: none;
    overflow-wrap: anywhere;
    text-wrap: balance;
  }
  .article-content h3 {
    font-size: clamp(1rem, 4.6vw, 1.2rem);
    hyphens: none;
    overflow-wrap: anywhere;
    line-height: 1.48;
  }
  .article-content h4 {
    font-size: clamp(.8rem, 3.8vw, 1rem);
    hyphens: none;
    overflow-wrap: anywhere;
    line-height: 1.5;
  }
  .article-card { padding: 24px 22px; }
  .article-card-top { margin-bottom: 34px; }
  .article-card .article-card-meta { font-size: .53rem; }

  .article-content .article-brand-statement {
    font-size: clamp(1.2rem, 6vw, 1.95rem);
    line-height: 1.25;
    overflow-wrap: normal;
  }
  .article-content .article-highlight {
    padding-left: 18px;
  }
  .article-content .article-highlight {
    font-size: clamp(.84rem, 4.3vw, 1rem);
    line-height: 1.8;
  }
  .article-content .article-quote {
    padding-left: 18px;
  }
  .article-content .article-quote p {
    font-size: clamp(1rem, 4.9vw, 1.14rem);
    line-height: 1.72;
  }
  body:not(.page-zitat) .article-content .article-quote {
    padding-left: 18px;
  }
  body:not(.page-zitat) .article-content .article-quote p {
    font-size: clamp(.84rem, 4.3vw, 1rem);
    line-height: 1.8;
  }
  .social-principles h3 {
    font-size: clamp(.95rem, 4.4vw, 1.15rem);
    line-height: 1.42;
  }

  .footer-brand { font-size: clamp(1.2rem, 6vw, 1.7rem); }
}

@media (max-width: 520px) {
  :root {
    --hero-height: 94svh;
    --mobile-title-start: clamp(315px, 51svh, 420px);
  }
  .brand { font-size: 1.22rem; }
  .brand-tagline { font-size: .40rem; }
  .eyebrow { letter-spacing: .25em; }
  .fixed-face {
    height: 72svh;
    background-position: 58% top;
  }
  .face-layer { height: 72svh; }
  
  .welcome-text {
    font-size: .96rem;
    line-height: 1.7;
  }
  .welcome-statement,
  .closing-lines { font-size: .63rem; }

  .article-content .article-lead { font-size: 1.02rem; }
  .article-content .article-highlight { font-size: .76rem; }
  body:not(.page-zitat) .article-content .article-quote p { font-size: .76rem; }
  .article-content .article-subheading { font-size: .58rem; }

  .footer-social { gap: 16px; }
}

@media (max-width: 360px) {
  .brand { font-size: 1.16rem; }
  .brand-tagline { font-size: .36rem; }
  .page-title h1 { font-size: 7.2vw; }
  .article-content h2 { font-size: clamp(1.1rem, 5.8vw, 1.35rem); }
}

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