:root{
  /* DZ-CI-ish: Graphit + Kupfer + kalkiges Weiß */
  --bg:#070708;
  --panel:#0e0f11;
  --text:#e9e9ea;
  --muted:#a9aaad;
  --graphite:#2c2f33;
  --graphite2:#1b1d20;
  --copper:#b87333;
  --copper2:#d08a48;
  --line:#202226;
  --focus:#ffffff;
  --radius:18px;
  --max:980px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font:16px/1.55 system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,"Noto Sans",sans-serif;
  background: radial-gradient(1200px 700px at 50% -10%, #121317 0%, var(--bg) 55%);
  color:var(--text);
}

a{color:var(--text); text-decoration:none}
a:hover{ text-decoration:underline; }
a:focus-visible, summary:focus-visible{
  outline:2px solid var(--focus);
  outline-offset:3px;
  border-radius:10px;
}

.mast{
  padding:28px 18px 14px;
  border-bottom:1px solid var(--line);
  background: linear-gradient(180deg, rgba(20,21,25,.65), rgba(7,7,8,0));
}

.brand{
  display:flex;
  gap:18px;
  align-items:center;
  max-width:var(--max);
  margin:0 auto;
}

.sigil{
  width:74px;
  height:74px;
  border-radius:50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(0,0,0,.0) 0 52%, rgba(0,0,0,0) 52%),
    conic-gradient(from 300deg, var(--graphite) 0 340deg, var(--copper) 340deg 360deg),
    radial-gradient(circle at 50% 50%, var(--graphite2) 0 100%);
  box-shadow: 0 10px 30px rgba(0,0,0,.55), inset 0 0 0 1px rgba(255,255,255,.06);
  position:relative;
}

/* Blitz-Notch als “Riss” */
.sigil::after{
  content:"";
  position:absolute;
  inset:10px 32px 10px 32px;
  background: linear-gradient(180deg, var(--copper2), var(--copper));
  clip-path: polygon(55% 0%, 80% 0%, 58% 40%, 78% 40%, 40% 100%, 52% 58%, 34% 58%);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.6));
  opacity:.95;
}

.brandtext h1{
  margin:0;
  font-weight:700;
  letter-spacing:.2px;
  font-size:22px;
}
.tagline{
  margin:4px 0 0;
  color:var(--muted);
  font-size:14px;
}

.nav{
  max-width:var(--max);
  margin:14px auto 0;
  padding:0 2px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.nav a{
  padding:6px 10px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  background: rgba(255,255,255,.03);
}
.nav a:hover{
  background: rgba(255,255,255,.06);
  text-decoration:none;
}

.hint{
  max-width:var(--max);
  margin:12px auto 0;
  color:var(--muted);
  font-size:13px;
  padding:0 2px;
}

.wrap{
  max-width:var(--max);
  margin:0 auto;
  padding:18px;
}

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.01));
  border:1px solid rgba(255,255,255,.08);
  border-radius:var(--radius);
  padding:18px 18px 16px;
  margin:14px 0;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

.card h2{
  margin:0 0 10px;
  font-size:18px;
  letter-spacing:.15px;
}

.links{margin:10px 0 0}
.http{
  border-bottom:1px dotted rgba(255,255,255,.35);
}

details{
  margin:12px 0 0;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.18);
}
summary{
  cursor:pointer;
  font-weight:650;
  color:var(--text);
}
details ul{margin:10px 0 0 18px; color:var(--muted)}
details li{margin:6px 0}

.note{color:var(--muted); margin:10px 0 0}

.nogo{
  display:inline-block;
  padding:2px 8px;
  border-radius:999px;
  border:1px solid rgba(208,138,72,.35);
  background: rgba(184,115,51,.08);
  color: var(--copper2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
}

.contacts{
  margin:12px 0 0;
  padding:0;
  list-style:none;
}
.contacts li{
  display:flex;
  gap:10px;
  align-items:baseline;
  padding:8px 0;
  border-bottom:1px dashed rgba(255,255,255,.08);
}
.contacts li:last-child{border-bottom:0}
.label{
  min-width:70px;
  color:var(--muted);
  font-size:13px;
}

.foot{
  margin:18px 0 0;
  padding:10px 2px 18px;
  color:var(--muted);
  font-size:13px;
}
.sep{opacity:.5; padding:0 8px}
.dim{opacity:.8}

code{
  color: var(--text);
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  padding:2px 6px;
  border-radius:10px;
}