/* =====================================================================
   SCUM-SERVER WEBSEITE  —  Gemeinsames Stylesheet
   Design: dunkel, militärisch, apokalyptisch
   ===================================================================== */

/* ---- Design-Variablen ------------------------------------------- */
:root {
  --bg:        #0a0c07;
  --bg-2:      #10130b;
  --surface:   #171b10;
  --surface-2: #1f2416;
  --line:      #2c331e;
  --text:      #d9dcc6;
  --muted:     #8b917a;
  --accent:    #9dc433;   /* militärgrün */
  --accent-2:  #b6e04a;
  --hazard:    #e8842c;   /* warn-orange */
  --danger:    #cf3b2b;
  --ok:        #4caf50;
  --radius:    4px;
  --maxw:      1180px;
  --shadow:    0 10px 40px rgba(0,0,0,.55);
  --font-head: "Oswald", "Arial Narrow", "Impact", sans-serif;
  --font-body: "Rajdhani", "Segoe UI", system-ui, sans-serif;
  --font-mono: "Consolas", "SFMono-Regular", ui-monospace, monospace;
}

/* ---- Reset ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(157,196,51,.08), transparent 60%),
    radial-gradient(900px 500px at 0% 20%, rgba(232,132,44,.06), transparent 55%),
    var(--bg);
  background-attachment: fixed;
}

/* subtiler Grunge-/Noise-Layer über der gesamten Seite */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
body > * { position: relative; z-index: 1; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 .5em;
}
a { color: var(--accent-2); text-decoration: none; }
a:hover { color: var(--accent); }
p { margin: 0 0 1em; }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Warn-Streifen als wiederkehrendes Motiv */
.hazard-bar {
  height: 8px;
  background: repeating-linear-gradient(
    45deg, var(--hazard) 0 22px, #1a1a12 22px 44px);
  opacity: .85;
}

/* ---- Kopf / Navigation ------------------------------------------ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,12,7,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; gap: 24px;
  height: 68px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1.25rem;
  color: var(--text);
  white-space: nowrap;
}
.brand .logo {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--accent);
  color: #0a0c07; font-weight: 700;
  border-radius: var(--radius);
  box-shadow: 0 0 0 3px rgba(157,196,51,.18);
}
.brand .brand-logo {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(157,196,51,.25);
}
.brand b { color: var(--accent); }
.nav-links { display: flex; gap: 6px; margin-left: auto; align-items: center; }
.nav-links a {
  color: var(--muted);
  font-family: var(--font-head);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .95rem;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: .15s;
}
.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a.active { color: var(--accent); }
.nav-links a.btn-discord {
  background: #5865F2; color: #fff;
  padding: 9px 16px;
}
.nav-links a.btn-discord:hover { background: #4752c4; color:#fff; }

.nav-toggle {
  display: none; margin-left: auto;
  background: var(--surface); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--radius);
  font-size: 1.4rem; width: 44px; height: 44px; cursor: pointer;
}

/* ---- Buttons ---------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: .05em;
  font-size: 1rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: .15s;
}
.btn-primary { background: var(--accent); color: #0a0c07; font-weight: 600; }
.btn-primary:hover { background: var(--accent-2); color:#0a0c07; transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--text); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-hazard { background: var(--hazard); color:#160c02; font-weight:600; }
.btn-hazard:hover { filter: brightness(1.1); transform: translateY(-2px); }

/* ---- Hero ------------------------------------------------------- */
.hero {
  position: relative;
  padding: 90px 0 80px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(10,12,7,.35), rgba(10,12,7,.9)),
    linear-gradient(120deg, #14180d 0%, #0a0c07 60%);
}
.hero::after {   /* zerkratztes Fadenkreuz-/Sektor-Muster */
  content:""; position:absolute; inset:0; opacity:.15; pointer-events:none;
  background-image:
    linear-gradient(rgba(157,196,51,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157,196,51,.12) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 70% 40%, #000, transparent 70%);
}
.hero-inner { position: relative; max-width: 760px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); text-transform: uppercase;
  letter-spacing: .18em; font-size: .85rem;
  color: var(--hazard);
  border: 1px solid var(--line);
  padding: 6px 14px; border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); margin-bottom: .2em; }
.hero h1 .accent { color: var(--accent); }
.hero .tagline { font-size: 1.4rem; color: var(--muted); margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---- Live-Status-Badge ------------------------------------------ */
.status-badge {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 20px;
  margin-top: 34px;
  font-family: var(--font-mono);
}
.status-dot {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--muted);
  box-shadow: 0 0 0 4px rgba(255,255,255,.04);
}
.status-badge.online  .status-dot { background: var(--ok);     box-shadow: 0 0 0 4px rgba(76,175,80,.25); animation: pulse 2s infinite; }
.status-badge.offline .status-dot { background: var(--danger); box-shadow: 0 0 0 4px rgba(207,59,43,.25); }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.45} }
.status-text b { color: var(--text); }
.status-players { font-size: 1.15rem; color: var(--accent); }

/* ---- Live-Status-Leiste (ganz oben) ----------------------------- */
.live-bar-wrap {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.live-bar {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 8px 28px;
  padding: 11px 20px;
  font-family: var(--font-mono);
  font-size: .95rem;
}
.live-item { display: inline-flex; align-items: center; gap: 8px; }
.live-item .li-ic { line-height: 1; }
.live-item .li-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--muted); flex: none; }
.live-item.online  .li-dot { background: var(--ok); box-shadow: 0 0 0 3px rgba(76,175,80,.2); animation: pulse 2s infinite; }
.live-item.offline .li-dot { background: var(--danger); }
.live-item .li-label { color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: .72rem; }
.live-item .li-val { color: var(--text); font-weight: 600; }
.live-item.online  .li-val { color: var(--accent); }
.live-item.offline .li-val { color: var(--muted); }

/* ---- Hero-Badges (Server-Status + Spielleiter nebeneinander) ----- */
.hero-badges {
  display: flex; flex-wrap: wrap; gap: 12px;
  align-items: stretch;          /* gleiche Höhe beider Kästen */
  margin-top: 34px;
}
.hero-badges .status-badge { margin-top: 0; }
.hero-badges .warden-badge { margin: 0; }

/* ---- Spielleiter-Status ("Warden") ------------------------------ */
.warden-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 18px;
  font-family: var(--font-mono);
}
.warden-badge .warden-icon { filter: grayscale(1); opacity: .55; }
.warden-badge.online  .warden-icon { filter: none; opacity: 1; }
.warden-badge.online  .warden-text { color: var(--accent); }
.warden-badge.offline .warden-text { color: var(--muted); }

.warden-tag {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing: .04em;
  font-size: .6rem; line-height: 1;
  color: #0a0c07; background: var(--accent);
  border-radius: 3px; padding: 2px 6px; margin-left: 4px;
}

/* ---- Abschnitte / Sektionen ------------------------------------- */
.section { padding: 72px 0; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head .kicker {
  color: var(--hazard); font-family: var(--font-head);
  letter-spacing: .18em; font-size: .9rem; text-transform: uppercase;
}
.section-head h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-top: 8px; }
.section-head p { color: var(--muted); font-size: 1.15rem; }
.section-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transition: .18s;
}
.card:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow); }
.card .icon { font-size: 2rem; margin-bottom: 12px; display:block; }
.card h3 { font-size: 1.25rem; color: var(--text); }
.card p { color: var(--muted); margin: 0; font-size: 1rem; }

/* ---- Fakten-Kacheln --------------------------------------------- */
.fact {
  text-align: center; padding: 26px 18px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius);
}
.fact .value { font-family: var(--font-head); font-size: 1.9rem; color: var(--accent); letter-spacing: .03em; }
.fact .label { color: var(--muted); text-transform: uppercase; letter-spacing: .08em; font-size: .82rem; }

/* ---- Verbinden-Box ---------------------------------------------- */
.connect-box {
  background: var(--surface); border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px; max-width: 640px;
}
.connect-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 16px;
}
.connect-label { color: var(--muted); text-transform: uppercase; letter-spacing:.08em; font-size:.82rem; min-width: 90px; }
.connect-value {
  font-family: var(--font-mono); font-size: 1.2rem; color: var(--text);
  background: var(--bg); border: 1px solid var(--line);
  padding: 8px 14px; border-radius: var(--radius);
  flex: 1; min-width: 200px;
}
.copy-btn {
  background: var(--surface-2); color: var(--text);
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 9px 16px; cursor: pointer; font-family: var(--font-head);
  text-transform: uppercase; letter-spacing:.05em; font-size:.85rem;
  transition:.15s; white-space: nowrap;
}
.copy-btn:hover { border-color: var(--accent); color: var(--accent); }
.copy-btn.copied { background: var(--ok); color:#0a0c07; border-color: var(--ok); }

/* ---- Regeln / Listen -------------------------------------------- */
.rule {
  display: flex; gap: 18px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px;
  margin-bottom: 14px;
}
.rule .num {
  font-family: var(--font-head); font-size: 1.5rem; color: var(--accent);
  min-width: 42px;
}
.rule h3 { font-size: 1.15rem; margin-bottom: 4px; color: var(--text); }
.rule p { color: var(--muted); margin: 0; }

.notice {
  display: flex; gap: 16px; align-items: flex-start;
  background: rgba(232,132,44,.08);
  border: 1px solid rgba(232,132,44,.35);
  border-radius: var(--radius); padding: 20px 24px;
  color: var(--text);
}
.notice .icon { font-size: 1.6rem; }

/* ---- Preis-/Rang-Karten ----------------------------------------- */
.tier {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px; text-align: center;
  display: flex; flex-direction: column;
}
.tier.featured { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent); }
.tier .tier-name { font-family: var(--font-head); font-size: 1.4rem; color: var(--accent); text-transform: uppercase; }
.tier .price { font-family: var(--font-head); font-size: 2.4rem; color: var(--text); margin: 10px 0; }
.tier .price small { font-size: 1rem; color: var(--muted); }
.tier ul { list-style: none; padding: 0; margin: 18px 0 24px; text-align: left; }
.tier ul li { padding: 8px 0; border-bottom: 1px dashed var(--line); color: var(--muted); }
.tier ul li::before { content: "✚ "; color: var(--accent); }
.tier .btn { margin-top: auto; }

/* ---- Bot-Befehle-Tabelle ---------------------------------------- */
.cmd-table { width:100%; border-collapse: collapse; overflow: hidden; border-radius: var(--radius); }
.cmd-table th, .cmd-table td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.cmd-table th { background: var(--surface-2); font-family: var(--font-head); text-transform: uppercase; letter-spacing:.06em; color: var(--muted); font-weight:600; }
.cmd-table td code { font-family: var(--font-mono); color: var(--accent); background: var(--bg); padding: 3px 8px; border-radius: 3px; }
.cmd-table tr:hover td { background: var(--surface); }
.cmd-table td.cmd-group { background: var(--surface-2); font-family: var(--font-head); text-transform: uppercase; letter-spacing:.06em; color: var(--accent); font-size:.8rem; }
.cmd-table tr:hover td.cmd-group { background: var(--surface-2); }

/* ---- FAQ / Accordion-ähnlich ------------------------------------ */
details.faq {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); margin-bottom: 12px; padding: 4px 22px;
}
details.faq summary {
  cursor: pointer; padding: 16px 0; font-family: var(--font-head);
  text-transform: uppercase; letter-spacing:.03em; color: var(--text);
  list-style: none;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::before { content: "▸ "; color: var(--accent); }
details.faq[open] summary::before { content: "▾ "; }
details.faq p { color: var(--muted); padding-bottom: 16px; margin: 0; }

/* ---- Event-Banner ----------------------------------------------- */
.event-banner {
  background: linear-gradient(120deg, rgba(232,132,44,.16), rgba(157,196,51,.10));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.event-inner {
  display: flex; align-items: center; gap: 18px;
  padding: 18px 0;
}
.event-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head); text-transform: uppercase; letter-spacing:.1em;
  font-size: .8rem; color: var(--hazard);
  border: 1px solid var(--hazard); border-radius: 999px; padding: 5px 12px;
  white-space: nowrap;
}
.event-badge .dot { width: 8px; height: 8px; border-radius:50%; background: var(--hazard); animation: pulse 1.6s infinite; }
.event-text { color: var(--text); }
.event-text b { color: var(--accent); font-family: var(--font-head); text-transform: uppercase; letter-spacing:.03em; }
.event-text .meta { color: var(--muted); font-size: .9rem; }

/* ---- Live-Shop -------------------------------------------------- */
.shop-cat-title {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing:.06em;
  color: var(--hazard); font-size: .95rem; margin: 26px 0 12px;
}
.pack {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 20px;
}
.pack .pack-top { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.pack .pack-name { font-family: var(--font-head); text-transform: uppercase; letter-spacing:.03em; color: var(--text); font-size: 1.1rem; }
.pack .pack-price { font-family: var(--font-head); color: var(--accent); font-size: 1.25rem; white-space: nowrap; }
.pack .pack-price small { color: var(--muted); font-size: .7rem; }
.pack .pack-desc { color: var(--muted); font-size: .95rem; margin: 8px 0 0; }
.pack .pack-limit { color: var(--muted); font-size: .78rem; margin-top: 10px; font-family: var(--font-mono); }
.shop-empty { color: var(--muted); }

/* ---- Bestenliste ------------------------------------------------ */
.lb-table { width: 100%; border-collapse: collapse; overflow: hidden; border-radius: var(--radius); }
.lb-table th, .lb-table td { text-align: left; padding: 13px 16px; border-bottom: 1px solid var(--line); }
.lb-table th { background: var(--surface-2); font-family: var(--font-head); text-transform: uppercase; letter-spacing:.06em; color: var(--muted); font-weight:600; font-size:.82rem; }
.lb-table td.num, .lb-table th.num { text-align: right; font-family: var(--font-mono); }
.lb-table tr:hover td { background: var(--surface); }
.lb-rank { font-family: var(--font-head); color: var(--muted); width: 46px; }
.lb-table tr:nth-child(1) .lb-rank { color: #ffd34d; }
.lb-table tr:nth-child(2) .lb-rank { color: #cfd3dc; }
.lb-table tr:nth-child(3) .lb-rank { color: #e0904a; }
.lb-name { color: var(--text); font-weight: 600; }
.lb-empty { color: var(--muted); }

/* ---- In-Game-Spielerfenster ------------------------------------- */
.ingame-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 24px;
  max-width: 720px;
}
.ig-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.ig-head .ig-title { font-family: var(--font-head); text-transform: uppercase; letter-spacing:.05em; color: var(--text); }
.ig-count {
  margin-left: auto; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); color: var(--accent);
}
.ig-count .status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(157,196,51,.2); animation: pulse 2s infinite; }
.ig-members { display: flex; flex-wrap: wrap; gap: 8px; }
.ig-player {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 14px 6px 12px;
}
.ig-player .st { width: 9px; height: 9px; border-radius: 50%; background: #3ba55d; flex: none; }
.ig-player .ig-name { color: var(--text); }
.ig-player .ig-time { color: var(--muted); font-size: .82rem; font-family: var(--font-mono); }
.ig-empty { color: var(--muted); }
.ig-loading { color: var(--muted); font-family: var(--font-mono); }

/* ---- Discord-Statusfenster -------------------------------------- */
.discord-widget {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 4px solid #5865F2;
  border-radius: var(--radius);
  padding: 24px;
  max-width: 720px;
}
.dw-head {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 16px; margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.dw-head .dw-logo {
  width: 34px; height: 34px; border-radius: 8px;
  background: #5865F2; color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 1.1rem;
}
.dw-head .dw-title { font-family: var(--font-head); text-transform: uppercase; letter-spacing:.05em; color: var(--text); }
.dw-count {
  margin-left: auto; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); color: var(--ok);
}
.dw-count .status-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--ok); box-shadow: 0 0 0 4px rgba(76,175,80,.2); animation: pulse 2s infinite; }

.dw-group { margin-bottom: 18px; }
.dw-group:last-child { margin-bottom: 0; }
.dw-group-title {
  font-family: var(--font-head); text-transform: uppercase; letter-spacing:.06em;
  font-size: .85rem; color: var(--muted); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.dw-members { display: flex; flex-wrap: wrap; gap: 8px; }
.dw-member {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg); border: 1px solid var(--line);
  border-radius: 999px; padding: 5px 12px 5px 6px;
  font-size: .95rem;
}
.dw-avatar { width: 24px; height: 24px; border-radius: 50%; background: var(--surface-2); }
.dw-member .st { width: 9px; height: 9px; border-radius: 50%; background: var(--muted); flex: none; }
.dw-member .st.online { background: #3ba55d; }
.dw-member .st.idle   { background: #faa61a; }
.dw-member .st.dnd    { background: #ed4245; }
.dw-voice-tag { color: var(--accent); }

.dw-note { color: var(--muted); font-size: .85rem; margin: 14px 0 0; }
.dw-empty { color: var(--muted); }
.dw-loading { color: var(--muted); font-family: var(--font-mono); }
.dw-disabled { display: flex; gap: 14px; align-items: flex-start; color: var(--text); }
.dw-disabled .icon { font-size: 1.6rem; }
.dw-disabled code { font-family: var(--font-mono); color: var(--accent); background: var(--bg); padding: 2px 7px; border-radius: 3px; }

/* ---- CTA-Streifen ----------------------------------------------- */
.cta {
  text-align: center; padding: 70px 0;
  background:
    linear-gradient(rgba(10,12,7,.8), rgba(10,12,7,.8)),
    linear-gradient(120deg, var(--accent) 0%, var(--hazard) 100%);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.cta h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.cta p { color: var(--muted); font-size: 1.15rem; max-width: 560px; margin: 0 auto 28px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Fußzeile --------------------------------------------------- */
.site-footer {
  background: var(--bg-2); border-top: 1px solid var(--line);
  padding: 46px 0 30px; color: var(--muted); font-size: .95rem;
}
.footer-grid { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; margin-bottom: 30px; }
.site-footer h4 { color: var(--text); font-size: 1rem; margin-bottom: 14px; }
.site-footer a { color: var(--muted); display: block; padding: 4px 0; }
.site-footer a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 20px; display:flex; flex-wrap:wrap; gap:12px; justify-content: space-between; }
.footer-bottom .disclaimer { max-width: 620px; font-size: .82rem; opacity: .8; }

/* ---- Seiten-Kopf (Unterseiten) ---------------------------------- */
.page-hero {
  padding: 60px 0; border-bottom: 1px solid var(--line);
  background: linear-gradient(120deg, #14180d, #0a0c07);
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.page-hero p { color: var(--muted); font-size: 1.15rem; max-width: 640px; }
.breadcrumb { color: var(--muted); font-size: .9rem; margin-bottom: 14px; font-family: var(--font-mono); }
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--accent); }

/* ---- Hilfsklassen ----------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---- Responsiv -------------------------------------------------- */
@media (max-width: 900px) {
  .grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  body { font-size: 17px; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; top: 68px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line);
    padding: 10px; margin-left: 0;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; }
  .grid.cols-2, .grid.cols-3, .grid.cols-4 { grid-template-columns: 1fr; }
  .footer-grid { flex-direction: column; gap: 26px; }
}
