/* ==========================================================================
   Lokale Schriften (DSGVO-konform, keine Google-CDN-Verbindung)
   Dateien im Ordner /fonts – siehe fonts/SCHRIFTEN-ANLEITUNG.md
   ========================================================================== */
@font-face { font-family:'Space Grotesk'; font-style:normal; font-weight:300 700; font-display:swap; src:url('../fonts/space-grotesk.woff2') format('woff2'); }
@font-face { font-family:'IBM Plex Mono'; font-style:normal; font-weight:400; font-display:swap; src:url('../fonts/ibm-plex-mono-400.woff2') format('woff2'); }
@font-face { font-family:'IBM Plex Mono'; font-style:normal; font-weight:500; font-display:swap; src:url('../fonts/ibm-plex-mono-500.woff2') format('woff2'); }

/* ==========================================================================
   nexpaper – Design System · "Signal Light"
   Ink #090C1C · Grün #159E5F · Lime #84ED15 · Mist #F4F6F1
   Space Grotesk (Text/Headlines) · IBM Plex Mono (Labels)
   ========================================================================== */

:root {
  --ink: #090C1C;
  --ink-soft: #1D2433;
  --green: #159E5F;
  --green-dark: #0F7C46;
  --lime: #84ED15;
  --paper: #FFFFFF;
  --mist: #F4F6F1;
  --mist-2: #EDF1E8;
  --line: #E4E8DF;
  --muted: #52604F;
  --muted-2: #8A9384;

  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 30px 60px -34px rgba(9, 12, 28, 0.28);
  --shadow-sm: 0 12px 30px -18px rgba(9, 12, 28, 0.22);

  --font-head: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, monospace;

  --maxw: 1200px;
}

@keyframes np-pulse { 0%,100%{opacity:.35;transform:scale(1)} 50%{opacity:1;transform:scale(1.25)} }

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--mist);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.05; font-weight: 700; letter-spacing: -0.022em; color: var(--ink); }
h1 { font-size: clamp(2.6rem, 5.2vw, 4.1rem); line-height: 1.02; letter-spacing: -0.028em; }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.85rem); }
h3 { font-size: 1.25rem; }
p { color: var(--muted); }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.section { padding: 92px 0; background: var(--paper); }
.section--mist { background: var(--mist); }
.section--tight { padding: 60px 0; }
.center { text-align: center; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 640px; }
.center .lead { margin-left: auto; margin-right: auto; }

/* Eyebrow / kicker – mono */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-weight: 500;
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green);
}

/* Pill badge with pulsing dot (hero) */
.badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-weight: 500;
  font-size: 0.75rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--green); border: 1px solid rgba(21,158,95,.32); border-radius: 999px;
  padding: 7px 15px; background: rgba(21,158,95,.05);
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--lime); display: inline-block; animation: np-pulse 1.8s ease-in-out infinite; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 600; font-size: 1rem;
  padding: 15px 26px; border-radius: 10px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.btn--primary, .btn--green { background: var(--green); color: #fff; }
.btn--primary:hover, .btn--green:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(21,158,95,.6); background: #128251; }
.btn--ghost { background: #fff; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--green); color: var(--green-dark); }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn .arrow { transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== Header / Nav (dark) ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(9,12,28,.86);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.nav__logo img { height: 32px; width: auto; transition: transform .2s ease; transform-origin: left center; }
.nav__logo:hover img { transform: scale(1.06); }
.nav__links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav__links a {
  font-family: var(--font-head); font-weight: 500; font-size: 0.98rem; color: #A6ADBD;
  position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; width: 0; height: 2px;
  background: var(--lime); border-radius: 2px; transition: width .25s ease;
}
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }
.nav__links a:hover, .nav__links a.is-active { color: #fff; }
.nav__cta { display: flex; align-items: center; gap: 14px; }
.lang { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: .78rem; letter-spacing: .04em; }
.lang a { color: #A6ADBD; padding: 2px 3px; transition: color .2s ease; }
.lang a:hover { color: #fff; }
.lang a.is-current { color: #fff; font-weight: 600; }
.lang span { color: #3a4152; }
.lang a { cursor: pointer; }
.page-lang[data-l="en"] { display: none; }
html[data-lang="en"] .page-lang[data-l="en"] { display: block; }
html[data-lang="en"] .page-lang[data-l="de"] { display: none; }
.nav__cta .btn { background: var(--lime); color: #08130A; }
.nav__cta .btn:hover { background: #76d80f; box-shadow: 0 16px 30px -14px rgba(132,237,21,.5); }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: .3s; }
.nav__toggle span + span { margin-top: 6px; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; padding: 88px 0 80px; background: var(--mist); }
.hero::after {
  content: ""; position: absolute; right: 0; top: 0; width: 60%; height: 90%;
  background: radial-gradient(120% 90% at 90% 4%, rgba(21,158,95,.14) 0%, rgba(244,246,241,0) 55%); z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { margin: 24px 0 0; }
.hero h1 .accent { color: var(--green); }
.hero__lead { font-size: 1.2rem; color: var(--muted); max-width: 500px; margin-top: 22px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero__stats { display: flex; gap: 40px; margin-top: 46px; flex-wrap: wrap; }
.hero__stat .num { font-family: var(--font-head); font-weight: 700; font-size: 1.7rem; color: var(--ink); }
.hero__stat .lbl { font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted-2); letter-spacing: .02em; margin-top: 2px; }

/* Hero visual – light dashboard */
.hero__visual {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 22px;
  box-shadow: var(--shadow); position: relative;
}
.hv-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.hv-title { font-family: var(--font-mono); font-weight: 500; font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); }
.hv-status { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .1em; color: var(--green); display: inline-flex; align-items: center; gap: 6px; }
.hv-status .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: np-pulse 1.8s ease-in-out infinite; }
.hv-bars { display: flex; align-items: flex-end; gap: 7px; height: 140px; padding: 14px; background: var(--mist); border-radius: 10px; margin-bottom: 14px; }
.hv-bars span { flex: 1; border-radius: 3px; background: #CFD6CB; }
.hv-bars span.g { background: #7BC79C; }
.hv-bars span.gg { background: var(--green); }
.hv-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hv-tile { background: var(--mist); border-radius: 10px; padding: 14px; }
.hv-tile .k { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .1em; color: var(--muted-2); text-transform: uppercase; }
.hv-tile .v { font-family: var(--font-head); font-size: 1.6rem; font-weight: 700; color: var(--ink); margin-top: 4px; }
.hv-tile .v small { font-size: .85rem; color: var(--green); }

/* ===== Trust bar ===== */
.trust { padding: 40px 0; background: #fff; border-bottom: 1px solid var(--line); }
.trust p { text-align: center; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 22px; }
.trust__row { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 40px; align-items: center; }
.trust__row span { font-family: var(--font-head); font-weight: 600; font-size: 1rem; color: #9AA394; letter-spacing: .01em; }

/* ===== Section header ===== */
.sec-head { max-width: 680px; margin-bottom: 52px; }
.sec-head.center { margin-left: auto; margin-right: auto; }
.sec-head h2 { margin: 16px 0 16px; }
.sec-head p { color: var(--muted); font-size: 1.08rem; }

/* ===== Cards grid ===== */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  padding: 28px; transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.section--mist .card { background: #fff; }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); border-color: rgba(21,158,95,.3); }
.card__icon {
  width: 50px; height: 50px; border-radius: 12px; display: grid; place-items: center;
  background: var(--mist-2); margin-bottom: 18px; color: var(--green);
}
.card__icon svg { width: 25px; height: 25px; }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); font-size: .96rem; }

/* Problem/solution split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.panel { border-radius: 16px; padding: 34px; }
.panel--dark { background: var(--ink); color: #fff; }
.panel--dark h3 { color: #fff; }
.panel--dark p { color: #AEB6C4; }
.panel--light { background: var(--mist); border: 1px solid var(--line); }
.panel .tagline { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.panel--dark .tagline { color: var(--lime); }
.panel--light .tagline { color: var(--green); }
.check-list { list-style: none; margin-top: 18px; display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 1rem; }
.check-list li svg { flex: none; width: 22px; height: 22px; margin-top: 2px; }
.panel--light .check-list li { color: var(--ink-soft); }
.panel--dark .check-list li { color: #D7DCE4; }

/* ===== Feature rows (technologie) ===== */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.feature + .feature { margin-top: 88px; }
.feature__media {
  background: var(--mist); border: 1px solid var(--line); border-radius: 20px;
  padding: 34px; min-height: 300px; display: grid; align-content: center;
}
.feature__num { font-family: var(--font-mono); font-weight: 500; color: var(--green); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.feature h3 { font-size: 1.75rem; margin: 10px 0 16px; }
.feature ul { list-style: none; margin-top: 18px; display: grid; gap: 12px; }
.feature ul li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-soft); }
.feature ul li svg { flex: none; width: 20px; height: 20px; margin-top: 4px; color: var(--green); }

/* Mock UI element – light dashboard */
.mock { background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 22px; box-shadow: var(--shadow-sm); }
.mock__row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.mock__pill { font-family: var(--font-mono); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; }
.pill-green { background: rgba(21,158,95,.12); color: var(--green-dark); }
.pill-amber { background: rgba(230,170,30,.16); color: #B7791F; }
.mock__bar { height: 10px; border-radius: 6px; background: var(--mist-2); overflow: hidden; margin: 8px 0 4px; }
.mock__bar i { display: block; height: 100%; background: var(--green); border-radius: 6px; }
.mock__label { font-size: .82rem; color: var(--muted); }
.mock__val { font-family: var(--font-head); font-weight: 700; color: var(--ink); }
.mockchart { background: var(--mist); border: 1px solid var(--line); border-radius: 10px; padding: 10px 10px 4px; }
.mockchart svg { width: 100%; height: auto; display: block; }
.mock__legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 10px; font-family: var(--font-mono); font-size: .64rem; color: var(--muted); }
.mock__legend i { display: inline-block; width: 12px; height: 3px; border-radius: 2px; margin-right: 6px; vertical-align: middle; }
.section--dark .mockchart { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }

/* Eingebetteter Live-Qualitätsmonitor (echte HTML) */
.feature__media--embed { padding: 0; overflow: hidden; background: #0b0f22; border-color: rgba(255,255,255,.1); }
.monitor-embed { position: relative; width: 100%; aspect-ratio: 1200 / 800; overflow: hidden; background: #0b0f22; }
.monitor-embed iframe { position: absolute; top: 0; left: 0; width: 1200px; height: 800px; border: 0; transform-origin: top left; }

/* Live-Qualitätsmonitor */
@keyframes np-blink { 0%,100% { border-color:#e5484d; box-shadow:0 0 0 0 rgba(229,72,77,0); } 50% { border-color:#ff8a8d; box-shadow:0 0 18px -2px rgba(229,72,77,.65); } }
@keyframes np-blinkdot { 0%,100% { opacity:1; box-shadow:0 0 0 0 rgba(229,72,77,.5); } 50% { opacity:.45; box-shadow:0 0 0 6px rgba(229,72,77,0); } }
.monitor { background:#0b0f22; border:1px solid rgba(255,255,255,.1); border-radius:16px; padding:18px; box-shadow:0 30px 60px -30px rgba(0,0,0,.8); }
.monitor__head { display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; }
.monitor__brand { font-family:var(--font-head); font-weight:700; color:var(--lime); font-size:1.05rem; letter-spacing:-.01em; }
.monitor__live { font-family:var(--font-mono); font-size:.64rem; color:var(--lime); display:inline-flex; gap:6px; align-items:center; letter-spacing:.14em; }
.monitor__live .dot { width:7px; height:7px; border-radius:50%; background:var(--lime); animation:np-pulse 1.6s ease-in-out infinite; }
.monitor__alert { display:flex; gap:12px; align-items:center; background:#2a1a20; border:1.5px solid #e5484d; border-radius:12px; padding:12px 14px; margin-bottom:14px; animation:np-blink 1.1s ease-in-out infinite; }
.monitor__alertdot { width:12px; height:12px; border-radius:50%; background:#e5484d; flex:none; animation:np-blinkdot 1.1s ease-in-out infinite; }
.monitor__alert strong { display:block; color:#ff7a7e; font-family:var(--font-head); font-size:.9rem; font-weight:600; }
.monitor__alert span { color:#e79aa0; font-size:.8rem; }
.monitor__statusrow { display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; }
.monitor__metric { font-family:var(--font-mono); font-size:.72rem; color:#9AA3B0; letter-spacing:.02em; }
.monitor__metric b { color:#fff; font-family:var(--font-head); font-weight:700; margin-left:4px; }
@keyframes np-draw { 0% { stroke-dashoffset:1; } 55% { stroke-dashoffset:0; } 100% { stroke-dashoffset:0; } }
.monitor__chart polyline.draw { stroke-dasharray:1; stroke-dashoffset:1; animation:np-draw 5.5s ease-in-out infinite; }
.monitor__chart circle.pulse { animation:np-pulse 1.6s ease-in-out infinite; transform-box:fill-box; transform-origin:center; }
.monitor__chart { background:rgba(255,255,255,.03); border:1px solid rgba(255,255,255,.07); border-radius:10px; padding:10px 10px 4px; }
.monitor__chart svg { width:100%; height:auto; display:block; }
.monitor__legend { display:flex; flex-wrap:wrap; gap:14px; margin-top:12px; font-family:var(--font-mono); font-size:.64rem; color:#9AA3B0; }
.monitor__legend i { display:inline-block; width:12px; height:3px; border-radius:2px; margin-right:6px; vertical-align:middle; }

/* ===== Process track ===== */
.steps { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.steps--3 { grid-template-columns: repeat(3, 1fr); }
.steps::before {
  content: ""; position: absolute; top: 19px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, #CFD6CB, var(--green), var(--lime));
}
.step { position: relative; text-align: center; }
.step__n {
  font-family: var(--font-mono); font-weight: 500; font-size: .95rem; color: var(--green);
  width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 2px solid var(--line);
  display: grid; place-items: center; margin: 0 auto 18px;
}
.step:last-child .step__n { background: var(--green); color: #fff; border-color: var(--green); box-shadow: 0 0 0 5px rgba(21,158,95,.15); }
.step h4 { font-size: 1.05rem; margin-bottom: 6px; }
.step p { font-size: .9rem; color: var(--muted); }
.section--mist .step__n { background: var(--mist); }
.section--mist .step:last-child .step__n { background: var(--green); }

/* ===== Metric strip ===== */
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.metric { background: #fff; padding: 30px 26px; text-align: center; }
.metric .num { font-family: var(--font-head); font-weight: 700; font-size: 2.6rem; color: var(--ink); line-height: 1; }
.metric .num.green { color: var(--green); }
.metric .lbl { font-family: var(--font-mono); font-size: .72rem; color: var(--muted); margin-top: 8px; letter-spacing: .02em; }

/* ===== Team ===== */
.team-card { text-align: left; }
.team-card__avatar {
  aspect-ratio: 1/1; border-radius: 14px; margin-bottom: 18px;
  background: repeating-linear-gradient(135deg, #E3E8DD 0 12px, #EDF1E8 12px 24px);
  display: grid; place-items: center; position: relative; overflow: hidden;
}
.team-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-card__avatar { cursor: pointer; }
.team-card__bio { position: absolute; inset: 0; background: rgba(9,12,28,.93); color: #E8EAF0; padding: 22px; display: flex; flex-direction: column; justify-content: center; gap: 12px; opacity: 0; transition: opacity .28s ease; }
.team-card__avatar:hover .team-card__bio, .team-card__avatar:focus-within .team-card__bio { opacity: 1; }
.team-card__bio div { font-size: .86rem; line-height: 1.45; color: #D7DCE4; }
.team-card__bio strong { display: block; font-family: var(--font-mono); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--lime); margin-bottom: 3px; }
.team-card__avatar .team-card__hint { position: absolute; top: 12px; right: 12px; width: 24px; height: 24px; border-radius: 50%; background: #fff; color: var(--ink); display: grid; place-items: center; font-family: 'Georgia', 'Times New Roman', serif; font-style: italic; font-weight: 700; font-size: .9rem; line-height: 1; z-index: 2; box-shadow: 0 2px 8px rgba(9,12,28,.28); opacity: 1; transition: opacity .28s ease; }
.team-card__avatar:hover .team-card__hint, .team-card__avatar:focus-within .team-card__hint { opacity: 0; }
.team-card__ai { position: absolute; left: 10px; bottom: 10px; z-index: 3; font-family: var(--font-mono); font-size: .56rem; letter-spacing: .04em; color: #fff; background: rgba(9,12,28,.5); padding: 3px 7px; border-radius: 6px; pointer-events: none; }
.team-card h3 { margin-top: 2px; }
.team-card .role { font-family: var(--font-mono); color: var(--green); font-size: .82rem; letter-spacing: .04em; margin-top: 4px; }
.team-card__foot { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
.team-card__li { flex: none; color: var(--muted-2); margin-top: 4px; transition: color .2s ease, transform .2s ease; }
.team-card__li:hover { color: #0A66C2; transform: translateY(-1px); }
.team-card__li svg { width: 22px; height: 22px; display: block; }

.advisor { display: flex; gap: 16px; align-items: flex-start; }
.advisor__ini { flex: none; width: 48px; height: 48px; border-radius: 12px; background: var(--mist-2); color: var(--green); display: grid; place-items: center; font-family: var(--font-head); font-weight: 700; }
.advisor h4 { font-size: 1.05rem; }
.advisor .role { font-size: .76rem; color: var(--green); font-family: var(--font-mono); letter-spacing: .04em; }
.advisor p { font-size: .92rem; color: var(--muted); margin-top: 6px; }

/* ===== Förderung & Partner ===== */
.partners { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px; margin-bottom: 40px; }
.partner-logo {
  display: grid; place-items: center; background: #fff; border: 1px solid var(--line);
  border-radius: 12px; padding: 22px 34px; min-width: 220px; min-height: 116px;
  transition: box-shadow .25s ease, transform .25s ease;
}
.partner-logo:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.partner-logo img { max-height: 72px; width: auto; }
.partner-logo--badge { border: none; background: transparent; padding: 0; min-width: 0; min-height: 0; box-shadow: none; }
.partner-logo--badge:hover { box-shadow: none; }
.partner-logo--badge img { max-height: 188px; }
.partner-logo .ph { text-align: center; }
.partner-logo .ph strong { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; color: var(--ink); display: block; }
.partner-logo .ph span { font-family: var(--font-mono); font-size: .72rem; color: var(--muted-2); letter-spacing: .02em; }
/* Vor-Ort Foto-Grid */
.photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.photo-grid figure { margin: 0; position: relative; border-radius: 18px; overflow: hidden; box-shadow: var(--shadow-sm); }
.photo-grid img { width: 100%; height: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.photo-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 34px 22px 16px;
  font-family: var(--font-mono); font-size: .74rem; letter-spacing: .04em; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(9,12,28,.72));
}
@media (max-width: 700px) { .photo-grid { grid-template-columns: 1fr; } }

/* Qualitätsmonitor (Berstdruck-Prognose) */
.qmon { border-radius:18px; overflow:hidden; box-shadow:var(--shadow); background:#0b0f22; border:1px solid rgba(255,255,255,.08); }
.qmon__bar { display:flex; justify-content:space-between; align-items:center; padding:14px 18px 6px; }
.qmon__meld { font-family:var(--font-mono); font-size:.62rem; letter-spacing:.14em; color:var(--lime); }
.qmon__clock { font-family:var(--font-mono); font-size:.62rem; color:#9AA3B0; display:inline-flex; align-items:center; gap:6px; }
.qmon__clock i { width:6px; height:6px; border-radius:50%; background:var(--lime); animation:np-pulse 1.6s ease-in-out infinite; }
.qmon__alerts { display:grid; grid-template-columns:1fr 1fr; gap:10px; padding:8px 18px 16px; }
.qmon__alert { background:#2a1216; border:1px solid #5c2b2e; border-radius:12px; padding:11px 13px; animation:np-blink 1.2s ease-in-out infinite; }
.qmon__alert strong { display:block; color:#ff7a7e; font-family:var(--font-head); font-size:.82rem; font-weight:600; margin-bottom:5px; padding-left:16px; position:relative; }
.qmon__alert strong::before { content:""; position:absolute; left:0; top:5px; width:9px; height:9px; border-radius:50%; background:#e5484d; animation:np-blinkdot 1.2s ease-in-out infinite; }
.qmon__alert p { color:#c99a9e; font-size:.66rem; line-height:1.45; margin-bottom:6px; }
.qmon__alert a { color:#ff7a7e; font-size:.64rem; font-family:var(--font-mono); }
.qmon__panel { background:#eef1ea; padding:15px 18px 16px; }
.qmon__kicker { font-family:var(--font-mono); font-size:.6rem; letter-spacing:.14em; color:var(--green); text-transform:uppercase; }
.qmon__h { font-size:1.05rem; margin:4px 0 12px; color:var(--ink); }
.qmon__card { background:#fff; border:1px solid var(--line); border-radius:12px; padding:12px 12px 6px; }
.qmon__cardhead { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:2px; }
.qmon__cardhead .t { font-family:var(--font-head); font-weight:700; color:var(--ink); font-size:.92rem; }
.qmon__cardhead .u { font-family:var(--font-mono); font-size:.62rem; color:var(--muted-2); }
.qmon__chart { width:100%; height:auto; display:block; }
.qmon__chart circle.pulse { animation:np-pulse 1.6s ease-in-out infinite; transform-box:fill-box; transform-origin:center; }
.qmon--nocmt .qmon__alerts { grid-template-columns:1fr; }
.qmon--nocmt .qmon__alert--cmt { display:none; }
@media (max-width:520px){ .qmon__alerts { grid-template-columns:1fr; } }

/* Team-Gruppenbild Banner */
.team-banner { position: relative; margin: 0; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); }
.team-banner img { width: 100%; display: block; }
.team-banner figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 46px 24px 18px; color: #fff; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .04em; background: linear-gradient(180deg, transparent, rgba(9,12,28,.72)); }

/* Recognition tiles */
.rec { text-align: center; }
.rec__logo { background: #fff; border: 1px solid var(--line); border-radius: 14px; height: 156px; display: grid; place-items: center; padding: 22px; margin-bottom: 16px; }
.rec__logo img { max-height: 112px; width: auto; }
.rec__logo a, .partner-logo a, .partner-logo--badge a { display: inline-flex; transition: opacity .2s ease, transform .2s ease; }
.rec__logo a:hover, .partner-logo a:hover, .partner-logo--badge a:hover { opacity: .82; transform: translateY(-2px); }
.rec h3 { font-size: 1.15rem; }

.foerder-bar {
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 34px 40px; max-width: 940px; margin: 0 auto; box-shadow: var(--shadow-sm);
}
.foerder-bar a { display: block; }
.foerder-bar img { width: 100%; height: auto; }
.foerder-note { text-align: center; font-family: var(--font-mono); font-size: .78rem; color: var(--muted-2); max-width: 780px; margin: 20px auto 0; line-height: 1.6; }

/* ===== Leitsatz / Zitat ===== */
.leitsatz { margin: 56px auto 0; max-width: 760px; text-align: center; }
.leitsatz blockquote { font-family: var(--font-head); font-weight: 600; font-size: clamp(1.6rem, 3.4vw, 2.4rem); line-height: 1.2; letter-spacing: -0.02em; color: var(--ink); margin: 0; }
.leitsatz figcaption { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--green); margin-top: 14px; }

/* ===== CTA band ===== */
.cta {
  background: var(--ink); border-radius: 22px; padding: 62px; text-align: center; position: relative; overflow: hidden;
}
.cta::before { content:""; position:absolute; inset:0; background: radial-gradient(100% 80% at 50% 0%, rgba(21,158,95,.35), transparent 55%); }
.cta--photo { background-image: linear-gradient(rgba(9,12,28,.48), rgba(9,12,28,.56)), url('../img/team-gruppe.jpg'); background-size: cover; background-position: center 40%; padding-top: 104px; padding-bottom: 104px; }
.cta--photo h2, .cta--photo p { text-shadow: 0 2px 14px rgba(9,12,28,.8); }
.cta--photo p { color: #EAEDF2; }
.cta--photo::before { background: radial-gradient(100% 80% at 50% 0%, rgba(21,158,95,.16), transparent 50%); }
.cta > * { position: relative; z-index: 1; }
.cta h2 { color: #fff; margin-bottom: 14px; }
.cta p { color: #AEB6C4; max-width: 560px; margin: 0 auto 28px; }
.cta .btn--green { background: var(--lime); color: #08130A; }
.cta .btn--green:hover { background: #76d80f; box-shadow: 0 16px 30px -14px rgba(132,237,21,.5); }
.cta .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.28); }
.cta .btn--ghost:hover { border-color: #fff; color: #fff; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; }
.contact-info { display: grid; gap: 22px; align-content: start; }
.contact-info .item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info .item svg { flex: none; width: 22px; height: 22px; color: var(--green); margin-top: 3px; }
.contact-info .item .k { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted-2); }
.contact-info .item a, .contact-info .item span.v { font-size: 1.05rem; color: var(--ink); }
form.contact-form { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 32px; box-shadow: var(--shadow-sm); }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--font-mono); font-weight: 500; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: var(--mist); transition: border-color .2s, background .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green); background: #fff; }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-family: var(--font-mono); font-size: .72rem; color: var(--muted-2); margin-top: 6px; line-height: 1.6; }

/* ===== Footer ===== */
.site-footer { background: #070912; color: #AEB6C4; padding: 64px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 34px; }
.footer__brand img { height: 28px; margin-bottom: 18px; }
.footer__brand p { color: #7A8295; font-size: .95rem; max-width: 300px; }
.footer__li { display: inline-flex; margin-top: 16px; color: #7A8295; transition: color .2s ease, transform .2s ease; }
.footer__li:hover { color: #0A66C2; transform: translateY(-1px); }
.footer__li svg { width: 18px; height: 18px; display: block; }
.footer h5 { font-family: var(--font-mono); font-weight: 500; color: #5B6472; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer ul { list-style: none; display: grid; gap: 10px; }
.footer ul a { color: #AEB6C4; font-size: .95rem; transition: color .2s; }
.footer ul a:hover { color: var(--lime); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 46px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.08); font-family: var(--font-mono); font-size: .78rem; color: #5B6472; flex-wrap: wrap; }

/* ===== Dark sections (Hybrid) ===== */
.section--dark { background: var(--ink); color: #E8EAF0; }
.section--dark.section--deep { background: #0b0f22; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p, .section--dark .sec-head p, .section--dark .lead { color: #AAB1C2; }
.section--dark .kicker { color: var(--lime); }
.section--dark .card { background: linear-gradient(180deg,#0e1330,#0b0f24); border-color: rgba(255,255,255,.1); }
.section--dark .card:hover { border-color: rgba(132,237,21,.35); box-shadow: 0 30px 60px -34px rgba(0,0,0,.7); }
.section--dark .card h3 { color: #fff; }
.section--dark .card p { color: #AAB1C2; }
.section--dark .card__icon { background: rgba(255,255,255,.06); color: var(--lime); }
.section--dark .feature__num { color: var(--lime); }
.section--dark .feature h3 { color: #fff; }
.section--dark .feature ul li { color: #C4CBD6; }
.section--dark .feature ul li svg { color: var(--lime); }
.section--dark .feature__media { background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.1); }
.section--dark .panel--dark { border: 1px solid rgba(255,255,255,.1); }
.section--dark .panel--light { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.1); }
.section--dark .panel--light h3 { color: #fff; }
.section--dark .panel--light .tagline { color: var(--lime); }
.section--dark .panel--light .check-list li { color: #C4CBD6; }
.section--dark .steps::before { background: linear-gradient(90deg,#2a3354,var(--green),var(--lime)); }
.section--dark .step__n { background: #0b0f22; border-color: rgba(255,255,255,.16); color: var(--lime); }
.section--dark .step:last-child .step__n { background: var(--lime); color: #08130A; border-color: var(--lime); box-shadow: 0 0 0 5px rgba(132,237,21,.15); }
.section--dark .step h4 { color: #fff; }
.section--dark .step p { color: #AAB1C2; }
.section--dark .team-card__avatar { background: repeating-linear-gradient(135deg,#11162b 0 12px,#0d1124 12px 24px); }
.section--dark .team-card__avatar span { color: var(--lime); }
.section--dark .team-card .role, .section--dark .advisor .role { color: var(--lime); }
.section--dark .advisor__ini { background: rgba(255,255,255,.06); color: var(--lime); }
.section--dark .advisor h4 { color: #fff; }
.section--dark .advisor p { color: #AAB1C2; }
.section--dark .mock { background: linear-gradient(180deg,#0e1330,#0b0f24); border-color: rgba(255,255,255,.1); box-shadow: 0 30px 60px -30px rgba(0,0,0,.8); }
.section--dark .mock__val, .section--dark .mock__label { color: #E8EAF0; }
.section--dark .trust__row span { color: #6D758A; }
.section--dark .btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.2); }
.section--dark .btn--ghost:hover { border-color: #fff; color: #fff; }

/* ===== Reveal animation ===== */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ===== Responsive ===== */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; gap: 42px; }
  .feature { grid-template-columns: 1fr; gap: 30px; }
  .feature + .feature { margin-top: 60px; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: block; }
  .nav.is-open .nav__links {
    display: flex; position: absolute; top: 78px; left: 0; right: 0; flex-direction: column; gap: 0;
    background: #0b0f22; border-bottom: 1px solid rgba(255,255,255,.08); padding: 8px 0; box-shadow: var(--shadow-sm);
  }
  .nav.is-open .nav__links li { width: 100%; }
  .nav.is-open .nav__links a { display: block; padding: 14px 32px; color: #A6ADBD; }
  .section { padding: 66px 0; }
  .split, .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .split .grid { grid-template-columns: 1fr !important; }
  .metrics { grid-template-columns: 1fr; }
  .cta { padding: 44px 24px; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__stats { gap: 26px; }
}
@media (max-width: 480px) {
  .steps, .grid-4 { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}
