/* ============================================================
   CRS Space — Cinematic Dark Design System
   Basis: Motion-Footer-Referenz (21st.dev) + CRS-Mockups (Gold)
   ============================================================ */

/* ---------- Fonts (self-hosted, variable 200–800) ---------- */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('../fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Design Tokens ---------- */
:root {
  --bg: #07070a;
  --bg-elev: #0d0d13;
  --fg: #f4f2ec;
  --fg-muted: #a39d8f;
  --fg-faint: #6d675c;
  --gold: #d4b25e;
  --gold-bright: #e9cd7c;
  --gold-deep: #a8842f;
  --blue: #5e7ad2;
  --destructive: #e5484d;
  --border: rgba(244, 242, 236, 0.08);
  --radius: 12px;

  /* Glass-Pill-Variablen (aus Referenz-Design abgeleitet) */
  --pill-bg-1: rgba(244, 242, 236, 0.04);
  --pill-bg-2: rgba(244, 242, 236, 0.01);
  --pill-shadow: rgba(0, 0, 0, 0.5);
  --pill-highlight: rgba(244, 242, 236, 0.10);
  --pill-inset-shadow: rgba(0, 0, 0, 0.8);
  --pill-border: rgba(244, 242, 236, 0.09);
  --pill-bg-1-hover: rgba(244, 242, 236, 0.09);
  --pill-bg-2-hover: rgba(244, 242, 236, 0.02);
  --pill-border-hover: rgba(244, 242, 236, 0.22);
  --pill-shadow-hover: rgba(0, 0, 0, 0.7);
  --pill-highlight-hover: rgba(244, 242, 236, 0.20);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset / Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
::selection { background: rgba(212, 178, 94, 0.35); color: var(--fg); }

/* ---------- Hintergrund-Ebenen ---------- */
#starfield {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.bg-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-size: 60px 60px;
  background-image:
    linear-gradient(to right, rgba(244, 242, 236, 0.03) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(244, 242, 236, 0.03) 1px, transparent 1px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 30%, black 70%, transparent);
}
.aurora {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80vw;
  height: 60vh;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(212, 178, 94, 0.13) 0%,
    rgba(94, 122, 210, 0.11) 40%,
    transparent 70%
  );
  animation: breathe 8s ease-in-out infinite alternate;
}
@keyframes breathe {
  0%   { transform: translate(-50%, -50%) scale(1);   opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

/* Riesiger Hintergrund-Schriftzug */
.giant-text {
  position: absolute;
  bottom: -5vh;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  font-size: 26vw;
  line-height: 0.75;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 242, 236, 0.05);
  background: linear-gradient(180deg, rgba(244, 242, 236, 0.10) 0%, transparent 60%);
  -webkit-background-clip: text;
  background-clip: text;
}

/* ---------- Typo-Effekte ---------- */
.text-glow {
  background: linear-gradient(180deg, var(--fg) 0%, rgba(244, 242, 236, 0.4) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(244, 242, 236, 0.15));
}
.text-gold {
  background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 24px rgba(212, 178, 94, 0.25));
}
.kicker {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
h1, h2, h3 { line-height: 1.05; letter-spacing: -0.03em; }
h2.section-title {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
}

/* ---------- Glass Pills ---------- */
.glass-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(145deg, var(--pill-bg-1) 0%, var(--pill-bg-2) 100%);
  border: 1px solid var(--pill-border);
  box-shadow:
    0 10px 30px -10px var(--pill-shadow),
    inset 0 1px 1px var(--pill-highlight),
    inset 0 -1px 2px var(--pill-inset-shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  transition: all 0.4s var(--ease-out-expo);
  cursor: pointer;
  will-change: transform;
}
.glass-pill:hover {
  background: linear-gradient(145deg, var(--pill-bg-1-hover) 0%, var(--pill-bg-2-hover) 100%);
  border-color: var(--pill-border-hover);
  box-shadow:
    0 20px 40px -10px var(--pill-shadow-hover),
    inset 0 1px 1px var(--pill-highlight-hover);
  color: var(--fg);
}
.pill-lg { padding: 1.1rem 2.4rem; font-weight: 700; font-size: 0.95rem; }
.pill-md { padding: 0.75rem 1.5rem; font-weight: 600; font-size: 0.85rem; color: var(--fg-muted); }
.pill-md:hover { color: var(--fg); }
.pill-icon {
  width: 3rem;
  height: 3rem;
  justify-content: center;
  color: var(--fg-muted);
}
.pill-icon:hover { color: var(--fg); }

/* Gold-CTA */
.gold-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 999px;
  padding: 1.1rem 2.4rem;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #14100a;
  background: linear-gradient(160deg, var(--gold-bright) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  border: 1px solid rgba(233, 205, 124, 0.6);
  box-shadow:
    0 10px 40px -8px rgba(212, 178, 94, 0.45),
    inset 0 1px 1px rgba(255, 245, 214, 0.8);
  transition: all 0.4s var(--ease-out-expo);
  will-change: transform;
}
.gold-pill:hover {
  box-shadow:
    0 18px 60px -8px rgba(212, 178, 94, 0.65),
    inset 0 1px 1px rgba(255, 245, 214, 0.9);
  filter: brightness(1.06);
}

/* ---------- Navigation ---------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.2rem, 4vw, 3rem);
  transition: background 0.4s var(--ease-out-expo), border-color 0.4s var(--ease-out-expo);
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled {
  background: rgba(7, 7, 10, 0.65);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}
.nav-logo { display: flex; align-items: baseline; gap: 0.45rem; }
.nav-logo .mark {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--fg);
}
.nav-logo .mark em { font-style: normal; color: var(--gold); }
.nav-logo .sub {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--fg-faint);
}
.nav-links { display: flex; align-items: center; gap: 1.8rem; list-style: none; }
.nav-links a {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--fg); }
.nav-cta { white-space: nowrap; }
@media (max-width: 900px) { .nav-links { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 7rem 1.5rem 5rem;
}
.hero h1 {
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.8rem;
}
.hero .lede {
  max-width: 34rem;
  color: var(--fg-muted);
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  margin: 0 auto 2.6rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--fg-faint);
  animation: hint-bob 2.4s ease-in-out infinite;
}
@keyframes hint-bob {
  0%, 100% { transform: translate(-50%, 0); opacity: 0.5; }
  50%      { transform: translate(-50%, 8px); opacity: 1; }
}

/* ---------- Marquee-Band ---------- */
.marquee-band {
  position: relative;
  z-index: 10;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(7, 7, 10, 0.6);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 1rem 0;
  transform: rotate(-2deg) scale(1.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  margin: -1.5rem 0 3rem;
}
.marquee-band.straight { transform: none; margin: 0; box-shadow: none; }
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.marquee-chunk { display: flex; align-items: center; gap: 3rem; padding: 0 1.5rem; }
.marquee-chunk .star-gold { color: rgba(212, 178, 94, 0.6); }
.marquee-chunk .star-blue { color: rgba(94, 122, 210, 0.6); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding: clamp(4.5rem, 9vw, 8rem) 1.5rem;
  z-index: 1;
}
.section-inner { max-width: 72rem; margin: 0 auto; position: relative; z-index: 1; }
.section-head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4.5rem); }

/* Bereichs-Karten */
.division-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.5rem;
}
.division-card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--pill-border);
  background: linear-gradient(155deg, var(--pill-bg-1) 0%, var(--pill-bg-2) 100%);
  box-shadow:
    0 10px 30px -10px var(--pill-shadow),
    inset 0 1px 1px var(--pill-highlight);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: 2.2rem 2rem;
  transition: all 0.4s var(--ease-out-expo);
  overflow: hidden;
}
.division-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 40% at 50% 0%, rgba(212, 178, 94, 0.08), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-expo);
}
.division-card:hover {
  transform: translateY(-6px);
  border-color: var(--pill-border-hover);
  box-shadow:
    0 25px 50px -12px var(--pill-shadow-hover),
    inset 0 1px 1px var(--pill-highlight-hover);
}
.division-card:hover::before { opacity: 1; }
.division-icon {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 178, 94, 0.35);
  color: var(--gold);
  margin-bottom: 1.4rem;
  background: rgba(212, 178, 94, 0.06);
}
.division-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.division-card .claim { color: var(--gold); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.6rem; }
.division-card p { color: var(--fg-muted); font-size: 0.9rem; margin-bottom: 1.4rem; }
.division-card .more {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: color 0.25s ease, gap 0.25s ease;
}
.division-card .more:hover { color: var(--gold); gap: 0.7rem; }

/* Werte */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 2.5rem 2rem;
  text-align: center;
}
.value-item .value-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1.1rem;
  color: var(--gold);
  filter: drop-shadow(0 0 12px rgba(212, 178, 94, 0.35));
}
.value-item h3 {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
.value-item p { color: var(--fg-muted); font-size: 0.88rem; max-width: 18rem; margin: 0 auto; }

/* Timeline (Vorgeschichte) */
.quote {
  max-width: 46rem;
  margin: 0 auto 3.5rem;
  text-align: center;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 600;
  font-style: italic;
  color: var(--fg-muted);
}
.quote strong { color: var(--gold); font-style: normal; }
.timeline { position: relative; max-width: 44rem; margin: 0 auto; padding-left: 2rem; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0.4rem;
  top: 0.5rem;
  bottom: 0.5rem;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212, 178, 94, 0.4) 15%, rgba(212, 178, 94, 0.4) 85%, transparent);
}
.timeline-item { position: relative; padding-bottom: 2.4rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.93rem;
  top: 0.45rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(212, 178, 94, 0.7);
}
.timeline-item .chapter {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.timeline-item h3 { font-size: 1.1rem; font-weight: 800; margin: 0.3rem 0 0.5rem; }
.timeline-item p { color: var(--fg-muted); font-size: 0.9rem; }

/* Referral */
.referral-card {
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
  border-radius: calc(var(--radius) * 2);
  border: 1px solid var(--pill-border);
  background: linear-gradient(155deg, var(--pill-bg-1) 0%, var(--pill-bg-2) 100%);
  box-shadow: 0 10px 30px -10px var(--pill-shadow), inset 0 1px 1px var(--pill-highlight);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  padding: clamp(2rem, 5vw, 3.5rem);
}
.referral-card h3 { font-size: 1.4rem; font-weight: 800; margin-bottom: 0.6rem; }
.referral-card p { color: var(--fg-muted); font-size: 0.92rem; margin-bottom: 1.6rem; }
.referral-code {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  border: 1px dashed rgba(212, 178, 94, 0.5);
  background: rgba(212, 178, 94, 0.06);
  font-family: ui-monospace, 'Cascadia Mono', Consolas, monospace;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gold-bright);
}
.referral-code button {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-muted);
  transition: color 0.25s ease;
}
.referral-code button:hover { color: var(--fg); }

/* ---------- Cinematic Footer (Vorhang-Effekt) ---------- */
.footer-curtain {
  position: relative;
  height: 100svh;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.cinematic-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 100svh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--bg);
  color: var(--fg);
}
.footer-center {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
  margin-top: 4rem;
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}
.footer-center h2 {
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.2rem;
}
.footer-center .footer-lede {
  color: var(--fg-muted);
  text-align: center;
  max-width: 30rem;
  margin-bottom: 2.8rem;
}
.footer-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 1.6rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 0.8rem 1rem; justify-content: center; }
.footer-bottom {
  position: relative;
  z-index: 20;
  width: 100%;
  padding: 0 clamp(1.5rem, 4vw, 3rem) 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.footer-copy {
  color: var(--fg-faint);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  max-width: 26rem;
}
.crafted {
  gap: 0.5rem;
  padding: 0.75rem 1.4rem;
  cursor: default;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
}
.crafted .heart {
  color: var(--destructive);
  font-size: 0.95rem;
  animation: heartbeat 2s cubic-bezier(0.25, 1, 0.5, 1) infinite;
}
.crafted .brand { color: var(--fg); font-weight: 800; letter-spacing: 0.02em; margin-left: 0.2rem; }
@keyframes heartbeat {
  0%, 100% { transform: scale(1);   filter: drop-shadow(0 0 5px rgba(229, 72, 77, 0.5)); }
  15%, 45% { transform: scale(1.2); filter: drop-shadow(0 0 10px rgba(229, 72, 77, 0.8)); }
  30%      { transform: scale(1); }
}
#scroll-top svg { transition: transform 0.3s ease; }
#scroll-top:hover svg { transform: translateY(-5px); }

/* ---------- Reveal-Basiszustand (JS animiert) ---------- */
[data-reveal], .hero [data-hero] { opacity: 0; transform: translateY(40px); }
.no-js [data-reveal], .reduced-motion [data-reveal],
.no-js .hero [data-hero], .reduced-motion .hero [data-hero] { opacity: 1; transform: none; }

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .aurora, .scroll-hint, .crafted .heart { animation: none; }
  .marquee-track { animation-duration: 240s; }
  [data-reveal], .hero [data-hero] { opacity: 1; transform: none; }
}

/* ---------- Kleinere Screens ---------- */
@media (max-width: 640px) {
  .marquee-band { transform: rotate(-2deg) scale(1.15); }
  .footer-bottom { justify-content: center; text-align: center; }
}

/* ============================================================
   Unterseiten-Komponenten (nach Mockups in /Idee)
   ============================================================ */

/* Akzent-Theme: Medic/Science = Teal */
.theme-teal {
  --gold: #4fd1a5;
  --gold-bright: #7ee8c6;
  --gold-deep: #2b8f6d;
}
/* Abteilungs-Themes nach Logo-Farbcode */
.theme-blue {
  --gold: #5aa9e6;
  --gold-bright: #8cc5f0;
  --gold-deep: #2f6fa8;
}
.theme-purple {
  --gold: #a06ae8;
  --gold-bright: #c19af2;
  --gold-deep: #6f3fb0;
}
.theme-green {
  --gold: #9fc23f;
  --gold-bright: #c4e06a;
  --gold-deep: #6d8a26;
}

/* ---------- Logo-Embleme (schwarzer Bild-Hintergrund wird weggeblendet) ---------- */
.logo-img { mix-blend-mode: screen; display: block; }
.hero-logo-badge {
  width: 6.5rem;
  height: auto;
  margin-bottom: 1.4rem;
  filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.8));
}
.hero-art.logo-art {
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(60% 60% at 50% 50%, rgba(244,242,236,0.04), transparent 75%);
  border: 1px solid var(--border);
}
.hero-art.logo-art::after { content: none; }
.hero-art.logo-art img {
  position: static;
  width: min(70%, 22rem);
  height: auto;
  object-fit: contain;
  animation: logo-float 7s ease-in-out infinite alternate;
}
@keyframes logo-float {
  0%   { transform: translateY(-6px) scale(1); }
  100% { transform: translateY(10px) scale(1.03); }
}
@media (prefers-reduced-motion: reduce) { .hero-art.logo-art img { animation: none; } }

/* Unit-Card mit Logo statt SVG-Emblem */
.unit-card .uc-logo {
  position: absolute;
  left: 1.1rem;
  bottom: -1.7rem;
  width: 4rem;
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.8));
}

/* ---------- Fachbereiche-Hub ---------- */
.dept-section { padding-top: clamp(3rem, 6vw, 5rem); }
.dept-head {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.dept-head .dept-logo { width: 7.5rem; height: auto; flex-shrink: 0; }
.dept-head h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
}
.dept-head .dept-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.dept-head p { color: var(--fg-muted); font-size: 0.9rem; max-width: 40rem; margin-top: 0.4rem; }

/* Kompakte Abteilungs-Karte (Hub) */
.dept-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
  padding: 1.8rem 1.2rem 1.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(13, 13, 19, 0.6);
  transition: all 0.4s var(--ease-out-expo);
}
.dept-card:hover {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--gold) 45%, transparent);
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.7);
}
.dept-card img { width: 8.5rem; height: auto; margin-bottom: 0.6rem; transition: transform 0.4s var(--ease-out-expo); }
.dept-card:hover img { transform: scale(1.07); }
.dept-card h3 { font-size: 0.95rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.dept-card p { font-size: 0.78rem; color: var(--fg-muted); }
.dept-card .dc-more {
  margin-top: 0.6rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Organigramm-Logos */
.orgc-unit img.logo-img { width: 3.4rem; height: auto; margin: 0 auto 0.4rem; }

/* ---------- Nav-Erweiterung: aktiver Punkt + Dropdown + Burger ---------- */
.nav-links a.active {
  color: var(--gold);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 0.3rem;
}
.nav-item-dd { position: relative; }
.nav-dd {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 14rem;
  padding: 0.6rem;
  border-radius: var(--radius);
  border: 1px solid var(--pill-border);
  background: rgba(10, 10, 14, 0.92);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 50px -12px rgba(0, 0, 0, 0.8);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s var(--ease-out-expo);
  list-style: none;
  z-index: 60;
}
.nav-item-dd:hover .nav-dd, .nav-item-dd:focus-within .nav-dd {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dd li a {
  display: block;
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}
.nav-dd li a:hover { background: rgba(244, 242, 236, 0.06); color: var(--gold); }
.nav-dd .dd-sep { border-top: 1px solid var(--border); margin: 0.4rem 0.5rem; }
.nav-burger { display: none; }
@media (max-width: 900px) {
  .nav-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.8rem;
  }
  .nav-burger span { width: 22px; height: 2px; background: var(--fg); transition: transform 0.3s ease, opacity 0.3s ease; }
  .site-nav.menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .site-nav.menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  .site-nav.menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    gap: 0;
    padding: 0.8rem 1.2rem 1.4rem;
    background: rgba(7, 7, 10, 0.96);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
  }
  .site-nav.menu-open .nav-links > li > a { display: block; padding: 0.7rem 0; }
  .site-nav.menu-open .nav-dd {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    border: none;
    background: none;
    box-shadow: none;
    padding: 0 0 0 1rem;
  }
  .nav-cta { display: none; }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-faint);
  margin-bottom: 2.2rem;
}
.breadcrumb a { color: var(--fg-muted); transition: color 0.25s ease; }
.breadcrumb a:hover { color: var(--fg); }
.breadcrumb .sep { color: var(--fg-faint); }
.breadcrumb .current { color: var(--gold); }

/* ---------- Seiten-Hero (Split mit Artwork) ---------- */
.page-hero {
  position: relative;
  padding: 7.5rem 0 0;
  overflow: hidden;
}
.page-hero .hero-grid {
  position: relative;
  max-width: 76rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2.5rem;
  align-items: stretch;
  z-index: 1;
}
.page-hero.with-leader .hero-grid { grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr) 300px; }
.page-hero .hero-copy { padding: 1rem 0 2.5rem; }
.page-hero .hero-art {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}
.page-hero .hero-art img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-hero .hero-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 0%, transparent 22%),
              linear-gradient(to top, rgba(7,7,10,0.55) 0%, transparent 35%);
}
.hero-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.2rem;
  height: 5.8rem;
  margin-bottom: 1.6rem;
  color: var(--gold);
  background: rgba(212, 178, 94, 0.05);
  border: 2px solid rgba(212, 178, 94, 0.55);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  filter: drop-shadow(0 0 18px rgba(212, 178, 94, 0.25));
}
.theme-teal .hero-badge {
  background: rgba(79, 209, 165, 0.05);
  border-color: rgba(79, 209, 165, 0.55);
  filter: drop-shadow(0 0 18px rgba(79, 209, 165, 0.25));
}
.page-hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.page-hero .tagline {
  font-size: clamp(0.85rem, 1.6vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.page-hero .hero-copy p { color: var(--fg-muted); font-size: 0.95rem; max-width: 30rem; margin-bottom: 0.9rem; }
@media (max-width: 1080px) {
  .page-hero.with-leader .hero-grid { grid-template-columns: 1fr 1fr; }
  .page-hero.with-leader .leader-card { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .page-hero .hero-grid, .page-hero.with-leader .hero-grid { grid-template-columns: 1fr; }
  .page-hero .hero-art { min-height: 240px; order: -1; margin-top: -1rem; }
}

/* ---------- Bereichsleitung-Sidebar ---------- */
.leader-card {
  border-radius: var(--radius);
  border: 1px solid rgba(212, 178, 94, 0.35);
  background: linear-gradient(165deg, rgba(212, 178, 94, 0.05), rgba(7, 7, 10, 0.4));
  padding: 1.6rem 1.5rem;
  text-align: center;
  align-self: start;
}
.theme-teal .leader-card {
  border-color: rgba(79, 209, 165, 0.35);
  background: linear-gradient(165deg, rgba(79, 209, 165, 0.05), rgba(7, 7, 10, 0.4));
}
.leader-card .lc-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.leader-person { display: flex; flex-direction: column; align-items: center; margin-bottom: 1rem; }
.leader-person.row { flex-direction: row; gap: 0.9rem; text-align: left; }
.leader-person img {
  width: 4.6rem;
  height: 4.6rem;
  border-radius: 50%;
  border: 2px solid rgba(212, 178, 94, 0.6);
  object-fit: cover;
}
.theme-teal .leader-person img { border-color: rgba(79, 209, 165, 0.6); }
.leader-person .lp-name { font-weight: 800; font-size: 1.05rem; margin-top: 0.6rem; }
.leader-person.row .lp-name { margin-top: 0; }
.leader-person .lp-role { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.leader-card .lc-text { color: var(--fg-muted); font-size: 0.82rem; margin-bottom: 1.2rem; }
.leader-card.wanted .wanted-icon {
  width: 5rem; height: 5rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 2px dashed rgba(212, 178, 94, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}
.leader-card.wanted h3 { font-size: 1.15rem; font-weight: 800; text-transform: uppercase; margin-bottom: 0.9rem; }

/* ---------- Feature-Strip (Spielstil / Werte-Zeile) ---------- */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 0;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(13, 13, 19, 0.6);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
.feature-strip .fs-item {
  padding: 1.8rem 1.2rem;
  text-align: center;
  border-left: 1px solid var(--border);
}
.feature-strip .fs-item:first-child { border-left: none; }
.feature-strip .fs-icon { width: 2.4rem; height: 2.4rem; margin: 0 auto 0.9rem; color: var(--gold); filter: drop-shadow(0 0 10px rgba(212,178,94,0.3)); }
.theme-teal .feature-strip .fs-icon { filter: drop-shadow(0 0 10px rgba(79,209,165,0.3)); }
.feature-strip h3 { font-size: 0.78rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.45rem; }
.feature-strip p { font-size: 0.76rem; color: var(--fg-muted); }
.strip-with-intro { display: grid; grid-template-columns: minmax(15rem, 0.9fr) 3fr; gap: 0; align-items: stretch; }
.strip-with-intro .fs-intro { padding: 1.8rem 1.6rem; border-right: 1px solid var(--border); }
.strip-with-intro .fs-intro h2 { font-size: 1.25rem; font-weight: 800; text-transform: uppercase; margin-bottom: 0.8rem; }
.strip-with-intro .fs-intro h2::after { content: ''; display: block; width: 2.2rem; height: 2px; background: var(--gold); margin-top: 0.5rem; }
.strip-with-intro .fs-intro p { font-size: 0.8rem; color: var(--fg-muted); }
.strip-with-intro .feature-strip { border: none; border-radius: 0; background: none; }
.panel-wrap {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(13, 13, 19, 0.6);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  overflow: hidden;
}
@media (max-width: 900px) {
  .strip-with-intro { grid-template-columns: 1fr; }
  .strip-with-intro .fs-intro { border-right: none; border-bottom: 1px solid var(--border); }
}

/* ---------- Panels (Aufgaben / Anforderungen / Passt das zu dir) ---------- */
.panel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(19rem, 1fr));
  gap: 1.5rem;
  align-items: start;
}
.panel {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(13, 13, 19, 0.6);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  padding: 1.8rem 1.6rem;
}
.panel > h2 {
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.panel > h2::after { content: ''; display: block; width: 2.2rem; height: 2px; background: var(--gold); margin-top: 0.5rem; }
.panel .panel-intro { font-size: 0.82rem; color: var(--fg-muted); margin: -0.6rem 0 1.2rem; }
.panel-task-layout { display: grid; grid-template-columns: 8.5rem 1fr; gap: 1.2rem; }
.panel-task-layout .task-img { border-radius: 8px; overflow: hidden; }
.panel-task-layout .task-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 480px) { .panel-task-layout { grid-template-columns: 1fr; } .panel-task-layout .task-img { max-height: 180px; } }

/* Icon-Liste (Aufgaben, Passt das zu dir) */
.icon-list { list-style: none; display: flex; flex-direction: column; gap: 1.05rem; }
.icon-list li { display: grid; grid-template-columns: 2rem 1fr; gap: 0.8rem; }
.icon-list .il-icon { width: 1.7rem; height: 1.7rem; color: var(--gold); margin-top: 0.15rem; }
.icon-list h4 { font-size: 0.85rem; font-weight: 800; margin-bottom: 0.15rem; }
.icon-list p { font-size: 0.78rem; color: var(--fg-muted); }

/* Check-Liste (Anforderungen) */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 1.05rem; }
.check-list li { display: grid; grid-template-columns: 1.7rem 1fr; gap: 0.8rem; }
.check-list .cl-icon {
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}
.check-list .cl-icon svg { width: 0.75rem; height: 0.75rem; }
.check-list h4 { font-size: 0.85rem; font-weight: 800; margin-bottom: 0.15rem; }
.check-list p { font-size: 0.78rem; color: var(--fg-muted); }

/* ---------- Einheiten-Karten (Security-Übersicht) ---------- */
.unit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.5rem;
}
.unit-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(13, 13, 19, 0.6);
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
}
.unit-card:hover { transform: translateY(-6px); border-color: rgba(212, 178, 94, 0.4); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.7); }
.unit-card .uc-img { position: relative; aspect-ratio: 2 / 1; overflow: hidden; }
.unit-card .uc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out-expo); }
.unit-card:hover .uc-img img { transform: scale(1.05); }
.unit-card .uc-emblem {
  position: absolute;
  left: 1.3rem;
  bottom: -1.4rem;
  width: 3rem;
  height: 3.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  background: #0d0d13;
  border: 1.5px solid rgba(212, 178, 94, 0.7);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.unit-card .uc-body { padding: 2.2rem 1.5rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.unit-card h3 { font-size: 1.05rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.6rem; }
.unit-card .uc-body > p { font-size: 0.82rem; color: var(--fg-muted); margin-bottom: 1rem; }
.unit-card .uc-checks { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.4rem; }
.unit-card .uc-checks li { display: flex; gap: 0.5rem; font-size: 0.78rem; color: var(--fg-muted); align-items: baseline; }
.unit-card .uc-checks li::before { content: '✓'; color: var(--gold); font-weight: 800; }
.unit-card .uc-btn {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 178, 94, 0.5);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out-expo);
}
.unit-card .uc-btn:hover { background: rgba(212, 178, 94, 0.1); border-color: var(--gold); }
.unit-card.locked .uc-img::after { content: ''; position: absolute; inset: 0; background: rgba(7,7,10,0.55); }
.unit-card.locked h3, .unit-card.locked .uc-btn { color: var(--fg-faint); }
.unit-card.locked .uc-btn { border-color: var(--border); pointer-events: none; justify-content: center; }
.unit-card.locked .uc-emblem { color: var(--fg-faint); border-color: var(--border); }

/* ---------- Galerie-Strip ---------- */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9.5rem, 1fr));
  gap: 1rem;
}
.gallery-strip figure {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
}
.gallery-strip img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out-expo); }
.gallery-strip figure:hover img { transform: scale(1.07); }

/* ---------- CTA-Banner ---------- */
.cta-banner {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  padding: clamp(1.8rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  background: rgba(13, 13, 19, 0.7);
}
.cta-banner .cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  opacity: 0.55;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg) 25%, rgba(7,7,10,0.45) 70%, rgba(7,7,10,0.15));
}
.cta-banner .cta-copy { position: relative; z-index: 1; flex: 1 1 24rem; }
.cta-banner h2 { font-size: clamp(1.4rem, 3vw, 2.1rem); font-weight: 800; text-transform: uppercase; margin-bottom: 0.7rem; }
.cta-banner p { color: var(--fg-muted); font-size: 0.9rem; max-width: 34rem; }
.cta-banner .cta-action { position: relative; z-index: 1; }

/* ---------- Onboarding: Schritte ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(7.4rem, 1fr));
  gap: 1.6rem 0.6rem;
  counter-reset: step;
}
.step { text-align: center; position: relative; padding: 0 0.4rem; }
.step .step-num {
  width: 2rem;
  height: 2rem;
  margin: 0 auto 0.9rem;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step .step-icon { width: 2.6rem; height: 2.6rem; margin: 0 auto 0.9rem; color: var(--fg); }
.step h4 { font-size: 0.75rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.5rem; }
.step p { font-size: 0.74rem; color: var(--fg-muted); }
.step:not(:last-child)::after {
  content: '›';
  position: absolute;
  right: -0.5rem;
  top: 2.6rem;
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 800;
}
@media (max-width: 640px) { .step:not(:last-child)::after { display: none; } }
.step-note {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  border-radius: 8px;
  border: 1px dashed rgba(212, 178, 94, 0.4);
  color: var(--fg-muted);
  font-size: 0.82rem;
}
.step-note .sn-icon { color: var(--gold); flex-shrink: 0; }

/* ---------- Wall of Recognition ---------- */
.wall-section { display: grid; grid-template-columns: minmax(14rem, 0.85fr) 2.2fr; gap: 2rem; align-items: start; }
.wall-section .ws-head h2 { font-size: 1.3rem; font-weight: 800; text-transform: uppercase; display: flex; align-items: center; gap: 0.7rem; margin-bottom: 0.9rem; }
.wall-section .ws-head h2 svg { color: var(--gold); width: 1.6rem; height: 1.6rem; flex-shrink: 0; }
.wall-section .ws-head p { color: var(--fg-muted); font-size: 0.85rem; margin-bottom: 1.4rem; }
.ws-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(212, 178, 94, 0.5);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out-expo);
}
.ws-link:hover { background: rgba(212, 178, 94, 0.1); }
@media (max-width: 860px) { .wall-section { grid-template-columns: 1fr; } }

.screenshot-grid { display: grid; grid-template-columns: 2.6fr 1fr; gap: 1rem; }
.screenshot-main { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.screenshot-main > img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.screenshot-main figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.9rem 1.2rem;
  background: rgba(7, 7, 10, 0.78);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
  font-size: 0.72rem;
}
.screenshot-main .sc-by { display: flex; flex-direction: column; }
.screenshot-main .sc-label { color: var(--fg-faint); letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.6rem; }
.screenshot-main .sc-value { color: var(--gold); font-weight: 800; }
.screenshot-thumbs { display: grid; grid-template-rows: repeat(3, 1fr); gap: 1rem; }
.screenshot-thumbs figure { border-radius: 8px; overflow: hidden; border: 1px solid var(--border); }
.screenshot-thumbs img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 700px) { .screenshot-grid { grid-template-columns: 1fr; } .screenshot-thumbs { grid-template-rows: none; grid-template-columns: repeat(3, 1fr); } }

.project-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); gap: 1.2rem; }
.project-card { border-radius: var(--radius); border: 1px solid var(--border); background: rgba(13,13,19,0.6); overflow: hidden; }
.project-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.project-card .pc-body { padding: 1.1rem 1.2rem 1.3rem; }
.project-card h3 { font-size: 0.85rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 0.5rem; }
.project-card p { font-size: 0.75rem; color: var(--fg-muted); margin-bottom: 1rem; }
.project-card .pc-lead { display: flex; align-items: center; gap: 0.6rem; font-size: 0.72rem; }
.project-card .pc-lead .lead-label { color: var(--fg-faint); font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; display: block; }
.project-card .pc-lead .lead-name { color: var(--gold); font-weight: 800; }
.project-card .pc-lead .lead-dot { width: 1.6rem; height: 1.6rem; border-radius: 50%; background: rgba(212,178,94,0.15); border: 1px solid rgba(212,178,94,0.4); flex-shrink: 0; }

.award-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(8.2rem, 1fr)); gap: 1.2rem; }
.award-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(13,13,19,0.6);
  padding: 1.6rem 1.1rem;
  text-align: center;
}
.award-card .aw-icon {
  width: 3.6rem; height: 3.6rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 2px solid rgba(212,178,94,0.55);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 0 12px rgba(212,178,94,0.3));
}
.award-card h3 { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.4rem; }
.award-card .aw-name { color: var(--gold); font-weight: 800; font-size: 0.95rem; margin-bottom: 0.4rem; }
.award-card p { font-size: 0.72rem; color: var(--fg-muted); margin-bottom: 0.8rem; }
.award-card .aw-date { font-size: 0.6rem; letter-spacing: 0.2em; color: var(--fg-faint); text-transform: uppercase; }

.booster-panel {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(13,13,19,0.6);
  padding: 1.8rem;
  display: grid;
  grid-template-columns: minmax(13rem, 0.9fr) 2fr;
  gap: 1.8rem;
  align-items: center;
}
.booster-panel .bp-head h3 { font-size: 1rem; font-weight: 800; text-transform: uppercase; display: flex; gap: 0.6rem; align-items: center; margin-bottom: 0.7rem; }
.booster-panel .bp-head h3 svg { color: var(--gold); }
.booster-panel .bp-head p { font-size: 0.78rem; color: var(--fg-muted); }
.booster-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr)); gap: 0.7rem 1.4rem; list-style: none; }
.booster-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.82rem; font-weight: 600; }
.booster-list li::before { content: '◆'; font-size: 0.7rem; }
.booster-list li:nth-child(4n+1)::before { color: #6ee7b7; }
.booster-list li:nth-child(4n+2)::before { color: var(--gold); }
.booster-list li:nth-child(4n+3)::before { color: #7aa2f7; }
.booster-list li:nth-child(4n+4)::before { color: #f38ba8; }
@media (max-width: 760px) { .booster-panel { grid-template-columns: 1fr; } }

/* ---------- Gremium / Organigramm ---------- */
.org-box {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(13,13,19,0.6);
  padding: clamp(1.5rem, 4vw, 3rem);
}
.org-title { text-align: center; margin-bottom: 2.5rem; }
.org-title h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; text-transform: uppercase; }
.org-title .org-sep { color: var(--gold); letter-spacing: 0.5em; margin-top: 0.4rem; }
.ceo-card {
  max-width: 30rem;
  margin: 0 auto 2.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(212,178,94,0.45);
  background: linear-gradient(160deg, rgba(212,178,94,0.07), rgba(7,7,10,0.3));
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 1.2rem;
  align-items: center;
}
.ceo-card img { width: 5.5rem; height: 5.5rem; border-radius: 50%; border: 2px solid var(--gold); object-fit: cover; }
.ceo-card .cc-role { color: var(--gold); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.25em; text-transform: uppercase; }
.ceo-card h3 { font-size: 1.25rem; font-weight: 800; margin: 0.15rem 0 0.4rem; }
.ceo-card p { font-size: 0.78rem; color: var(--fg-muted); }
.gremium-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); gap: 1.2rem; }
.gremium-card {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(7,7,10,0.5);
  padding: 1.5rem 1.2rem;
  text-align: center;
}
.gremium-card .gc-role { color: var(--gold); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 1.1rem; }
.gremium-card .gc-people { display: flex; justify-content: center; gap: 1rem; margin-bottom: 0.9rem; }
.gremium-card .gc-person { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.gremium-card img { width: 4.2rem; height: 4.2rem; border-radius: 50%; border: 2px solid rgba(212,178,94,0.55); object-fit: cover; }
.gremium-card .gc-name { font-weight: 800; font-size: 0.88rem; }
.gremium-card p { font-size: 0.74rem; color: var(--fg-muted); }

/* Organigramm-Baum */
.orgc { display: flex; flex-direction: column; align-items: center; gap: 0; }
.orgc-node {
  border-radius: 10px;
  border: 1px solid;
  padding: 0.9rem 1.4rem;
  text-align: center;
  background: rgba(13,13,19,0.75);
  min-width: 13rem;
}
.orgc-node .on-title { font-weight: 800; font-size: 0.85rem; letter-spacing: 0.12em; text-transform: uppercase; }
.orgc-node .on-sub { font-size: 0.64rem; color: var(--fg-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 0.25rem; }
.orgc-gold { border-color: rgba(212,178,94,0.6); box-shadow: 0 0 24px -8px rgba(212,178,94,0.4); }
.orgc-gold .on-title { color: var(--gold); }
.orgc-red { border-color: rgba(224,82,82,0.55); }
.orgc-red .on-title { color: #e05252; }
.orgc-blue { border-color: rgba(90,169,230,0.55); }
.orgc-blue .on-title { color: #5aa9e6; }
.orgc-green { border-color: rgba(184,212,74,0.55); }
.orgc-green .on-title { color: #b8d44a; }
.orgc-purple { border-color: rgba(160,106,232,0.55); }
.orgc-purple .on-title { color: #a06ae8; }
.orgc-connector { width: 1px; height: 1.6rem; background: rgba(212,178,94,0.45); }
.orgc-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr)); gap: 1.2rem; width: 100%; }
.orgc-row-3 { max-width: 60rem; }
.orgc-units { display: grid; grid-template-columns: repeat(auto-fit, minmax(7.5rem, 1fr)); gap: 0.8rem; width: 100%; }
.orgc-unit {
  border-radius: 8px;
  border: 1px solid;
  padding: 0.8rem 0.5rem;
  text-align: center;
  background: rgba(13,13,19,0.75);
}
.orgc-unit .ou-icon { width: 1.8rem; height: 1.8rem; margin: 0 auto 0.5rem; }
.orgc-unit .ou-name { font-size: 0.62rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.orgc-unit .ou-om { font-size: 0.56rem; font-weight: 800; letter-spacing: 0.2em; margin-top: 0.3rem; }
.orgc-legend { display: grid; grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr)); gap: 1.5rem; margin-top: 2.5rem; width: 100%; }
.orgc-legend .ol-col h3 { font-size: 0.8rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 0.7rem; display: flex; align-items: center; gap: 0.5rem; }
.orgc-legend .ol-col ul { list-style: none; }
.orgc-legend .ol-col li { font-size: 0.75rem; color: var(--fg-muted); padding: 0.2rem 0; display: flex; gap: 0.5rem; align-items: baseline; }
.orgc-legend .ol-col li::before { content: '•'; }
.orgc-legend .red li::before, .orgc-legend .red h3 { color: #e05252; }
.orgc-legend .blue li::before, .orgc-legend .blue h3 { color: #5aa9e6; }
.orgc-legend .green li::before, .orgc-legend .green h3 { color: #b8d44a; }

/* ---------- Einfacher Footer (Unterseiten) ---------- */
.simple-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2rem clamp(1.5rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: rgba(7,7,10,0.7);
}
.simple-footer .sf-copy { color: var(--fg-faint); font-size: 0.68rem; }
.simple-footer .sf-links { display: flex; gap: 1.2rem; }
.simple-footer .sf-links a { color: var(--fg-muted); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.simple-footer .sf-links a:hover { color: var(--gold); }

/* ---------- Landing: Division-Card-Bild ---------- */
.division-card .dc-img {
  margin: -2.2rem -2rem 1.4rem;
  aspect-ratio: 2 / 1;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.division-card .dc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out-expo); }
.division-card:hover .dc-img img { transform: scale(1.05); }

/* Landing-Hero: Text links, Artwork rechts (wie Mockup) */
.hero {
  align-items: flex-start;
  text-align: left;
  padding-left: clamp(1.5rem, 7vw, 6rem);
}
.hero > h1, .hero > .lede, .hero > .hero-ctas { position: relative; z-index: 1; }
.hero .lede { margin-left: 0; max-width: 26rem; }
.hero-ctas { justify-content: flex-start; }
@media (max-width: 860px) {
  .hero { align-items: center; text-align: center; padding-left: 1.5rem; }
  .hero .lede { margin: 0 auto 2.6rem; }
  .hero-ctas { justify-content: center; }
}

.hero .hero-art-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: min(56vw, 900px);
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  opacity: 0.85;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 38%),
                      linear-gradient(to top, transparent 2%, black 30%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(to right, transparent 0%, black 38%);
  pointer-events: none;
}
@media (max-width: 860px) { .hero .hero-art-bg { width: 100vw; opacity: 0.35; } }
