:root {
  --bg: #06070a;
  --panel: rgba(12, 12, 15, 0.45);
  --text: #e8e8ea;
  --muted: #9a9aa2;
  --accent: #48b0ff; /* technisch/blau statt rot */
  --danger: #c43434;
  --shadow: 0 16px 40px rgba(0,0,0,0.35);
  --ff-base: "Montserrat", system-ui, sans-serif;
  --ff-serif: "Crimson Text", "Times New Roman", serif;
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #151720 0%, #06070a 70%);
  color: var(--text);
  font-family: var(--ff-base);
}

.inner {
  width: min(1140px, 100% - 2.8rem);
  margin: 0 auto;
}

.site-header {
  background: rgba(6, 7, 10, 0.5);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.025);
  position: sticky;
  top: 0;
  z-index: 20;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 62px;
  gap: 1rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.16em;
}

.tagline {
  font-size: 0.7rem;
  color: var(--muted);
  margin-top: 0.3rem;
}

.main-nav .nav-list {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
}
.nav-list a {
  color: var(--text);
  opacity: 0.8;
  font-size: 0.78rem;
  text-decoration: none;
  transition: opacity 0.25s ease, color 0.25s ease;
}
.nav-list a:hover {
  opacity: 1;
  color: var(--accent);
}

/* mobile toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  width: 28px;
  height: 28px;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.nav-toggle span {
  background: #fff;
  height: 2px;
  width: 100%;
}

@media (max-width: 780px) {
  .nav-toggle { display: flex; }
  .nav-list {
    position: absolute;
    right: 1.4rem;
    top: 60px;
    background: rgba(6, 7, 10, 0.95);
    flex-direction: column;
    align-items: flex-end;
    padding: 1.2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255,255,255,0.03);
    display: none;
  }
  .nav-list.is-open { display: flex; }
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 4.2rem 0 3.4rem;
}
.hero-flex {
  display: grid;
  grid-template-columns: 1.1fr 0.65fr;
  gap: 1.6rem;
  align-items: stretch;
}
.hero .overline {
  text-transform: uppercase;
  font-size: 0.6rem;
  letter-spacing: 0.135em;
  color: var(--muted);
}
.hero h1 {
  font-size: clamp(2.3rem, 3vw, 3rem);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.hero .lead {
  color: var(--muted);
  margin-bottom: 1rem;
}
.hero .lead.secondary {
  font-size: 0.78rem;
  opacity: 0.9;
}
.hero-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  border: 1px solid rgba(255,255,255,0.02);
  font-weight: 600;
  font-size: 0.72rem;
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(120deg, #48b0ff 0%, #4becec 100%);
  color: #06070a;
  box-shadow: 0 10px 30px rgba(72,176,255,0.3);
}
.btn-ghost {
  background: rgba(255,255,255,0.03);
  color: var(--text);
}
.btn:hover {
  transform: translateY(-1px);
}

/* HERO-BOX */
.hero-box {
  background: rgba(12,12,16,0.5);
  border: 1px solid rgba(255,255,255,0.02);
  border-radius: 1.2rem;
  padding: 1.1rem 1.2rem;
  box-shadow: var(--shadow);
  align-self: flex-start;
}
.hero-box h2 {
  margin-top: 0;
  font-size: 1rem;
}
.hero-box-title {
  font-weight: 600;
  margin-bottom: 0.3rem;
}
.hero-box-meta {
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.hero-box-text {
  font-size: 0.75rem;
  margin-bottom: 0.6rem;
}
.hero-link {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
}

/* SECTION */
.section {
  padding: 3.1rem 0 3.2rem;
}
.section h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.section-sub {
  color: var(--muted);
  margin-bottom: 1.4rem;
}

/* AKTEN-GRID */
.akten-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}
.akten-card {
  background: rgba(11, 11, 14, 0.45);
  border: 1px solid rgba(255,255,255,0.015);
  border-radius: 1rem;
  padding: 0.9rem 1rem 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.akten-card.is-active {
  border: 1px solid rgba(72, 176, 255, 0.5);
  background: radial-gradient(circle at top, rgba(72,176,255,0.12) 0%, rgba(11, 11, 14, 0.5) 60%);
}
.akten-meta {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}
.akten-card h3 {
  font-size: 1rem;
  margin: 0;
}
.akten-card p {
  font-size: 0.75rem;
  color: var(--muted);
  flex: 1;
}
.akten-link {
  font-size: 0.7rem;
  color: var(--accent);
  font-weight: 600;
}
.akten-status {
  display: inline-block;
  font-size: 0.62rem;
  text-transform: uppercase;
  background: rgba(255,255,255,0.03);
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
}

/* INFO GRID */
.info-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr;
  gap: 1.3rem;
}
.about-box {
  background: rgba(11, 11, 14, 0.4);
  border: 1px solid rgba(255,255,255,0.02);
  border-radius: 1rem;
  padding: 1rem;
}
.about-box h3 {
  margin-top: 0;
}
.about-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about-box li {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

/* FOOTER */
.site-footer {
  border-top: 1px solid rgba(255,255,255,0.03);
  padding: 1.4rem 0 1.1rem;
}
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  color: var(--muted);
}
.site-footer a {
  color: var(--muted);
}
.site-footer a:hover {
  color: var(--accent);
}

@media (max-width: 860px) {
  .hero-flex {
    grid-template-columns: 1fr;
  }
  .info-grid {
    grid-template-columns: 1fr;
  }
}

/* BREADCRUMB */
.breadcrumb {
  background: rgba(255, 255, 255, 0.01);
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-size: 0.75rem;
  margin-bottom: 1.6rem;
}

.breadcrumb ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.7rem 0;
  margin: 0;
}

.breadcrumb li {
  display: flex;
  align-items: center;
  color: var(--muted);
}

.breadcrumb li:not(:last-child)::after {
  content: "›";
  color: var(--muted);
  opacity: 0.45;
  margin-left: 0.5rem;
  font-size: 0.8rem;
}

.breadcrumb a {
  color: var(--text); /* Weiß */
  opacity: 0.85;
  text-decoration: none;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.breadcrumb a:hover {
  opacity: 1;
  color: var(--accent); /* Hellblau beim Hover */
}

.breadcrumb li:last-child span[itemprop="name"] {
  color: var(--accent); /* Blau für aktuelle Seite */
  font-weight: 600;
}
