:root{
  --bg: #0b0f14;
  --panel: rgba(18, 24, 32, 0.78);
  --panel2: rgba(18, 24, 32, 0.55);
  --border: rgba(255,255,255,0.10);
  --text: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.68);
  --muted2: rgba(255,255,255,0.52);
  --accent: #d58b3c;      /* dein orange */
  --accent2:#a96b2e;
  --shadow: 0 20px 60px rgba(0,0,0,0.55);
  --radius: 18px;
  --radius2: 14px;
  --max: 980px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(1200px 600px at 20% 0%, rgba(213,139,60,0.18), transparent 55%),
    radial-gradient(900px 700px at 80% 10%, rgba(213,139,60,0.10), transparent 60%),
    linear-gradient(180deg, #070a0f 0%, #0b0f14 60%, #090d12 100%);
}

a{color:inherit; text-decoration:none}
a:hover{color: var(--accent)}
.wrap{max-width:var(--max); margin:0 auto; padding: 22px 16px 46px}

/* Topbar */
header{
  display:flex; align-items:flex-start; justify-content:space-between; gap:14px;
  margin-bottom: 16px;
}
.brand{
  display:flex; flex-direction:column; gap:6px;
}
.brand .name{
  font-weight: 800; letter-spacing: 0.2px;
  font-size: 22px; line-height: 1.1;
}
.brand .tag{
  font-size: 13px; color: var(--muted);
}
.chips{
  display:flex; flex-wrap:wrap; gap:8px; justify-content:flex-end;
  margin-top: 2px;
}
.chip{
  font-size: 12px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
}

/* Hero */
.hero{
  position:relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
  overflow:hidden;
  padding: 18px;
}
.hero::before{
  content:"";
  position:absolute; inset:-1px;
  background:
    radial-gradient(600px 260px at 35% 20%, rgba(213,139,60,0.18), transparent 60%),
    radial-gradient(560px 260px at 80% 60%, rgba(213,139,60,0.10), transparent 65%);
  pointer-events:none;
}
.hero-inner{position:relative; display:flex; gap:14px; align-items:center; flex-wrap:wrap}
.kicker{
  width:100%;
  display:flex; align-items:center; gap:10px; margin-bottom: 6px;
  color: var(--muted);
  font-size: 13px;
}
.kicker .bar{
  height:4px; width:42px; border-radius:999px; background: var(--accent);
  box-shadow: 0 0 0 1px rgba(213,139,60,0.12);
}
h1{
  margin:0;
  font-size: 30px;
  letter-spacing: -0.2px;
  line-height: 1.1;
}
.sub{
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 90ch;
  line-height: 1.45;
}

/* Tabs container */
.panel{
  margin-top: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--panel);
  box-shadow: 0 16px 50px rgba(0,0,0,0.45);
  overflow:hidden;
  backdrop-filter: blur(14px);
}
.tabbar{
  display:flex; gap:8px;
  padding: 10px;
  border-bottom: 1px solid var(--border);
  background: rgba(0,0,0,0.20);
}
.tabbtn{
  flex: 1 1 auto;
  border: 1px solid transparent;
  background: rgba(255,255,255,0.04);
  color: var(--muted);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.1px;
  cursor:pointer;
  transition: transform .06s ease, background .2s ease, border-color .2s ease, color .2s ease;
  min-width: 110px;
}
.tabbtn:hover{background: rgba(255,255,255,0.06); color: var(--text)}
.tabbtn:active{transform: translateY(1px)}
.tabbtn[aria-selected="true"]{
  background: rgba(213,139,60,0.14);
  border-color: rgba(213,139,60,0.35);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(213,139,60,0.12);
}

.content{padding: 14px 14px 16px}
.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 720px){
  .grid{grid-template-columns: 1.2fr 0.8fr}
  h1{font-size: 34px}
}

.card{
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: var(--panel2);
  padding: 14px;
}
.card h2{
  margin:0 0 8px;
  font-size: 16px;
  letter-spacing: 0.2px;
}
.card p{margin:0; color: var(--muted); line-height: 1.5}
.bullets{margin: 10px 0 0; padding-left: 18px; color: var(--muted)}
.bullets li{margin: 6px 0}

.meta{
  display:flex; flex-wrap:wrap; gap:10px; margin-top: 12px;
}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding: 9px 10px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  color: var(--muted);
  font-size: 12px;
}
.dot{width:10px; height:10px; border-radius:999px; background: var(--accent); opacity: 0.9}

/* Footer */
footer{
  margin-top: 18px;
  display:flex; gap:12px; flex-wrap:wrap; justify-content:space-between; align-items:center;
  color: var(--muted2);
  font-size: 13px;
}
.footlinks{display:flex; gap:12px; flex-wrap:wrap}
.footlinks a{color: var(--muted2)}
.footlinks a:hover{color: var(--accent)}
.back{
  display:inline-flex; align-items:center; gap:8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
}

/* === Startseite: kleine Zusatz-Styles (ans Ende deiner style.css) === */

.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:12px;
  margin: 18px 0 10px;
}

.section-head h2{
  margin:0;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.section-head .hint{
  color: var(--muted2);
  font-size: 12px;
}

.btnrow{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 12px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-weight: 750;
  letter-spacing: 0.1px;
  cursor:pointer;
}

.btn:hover{border-color: rgba(213,139,60,0.35); background: rgba(213,139,60,0.10);}
.btn:active{transform: translateY(1px);}

.btn.secondary{
  background: rgba(255,255,255,0.03);
  color: var(--muted);
}

.overview-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

@media (min-width: 720px){
  .overview-grid{
    grid-template-columns: repeat(3, 1fr);
  }
}

.card .k{
  display:flex;
  align-items:center;
  gap:10px;
  margin-bottom: 10px;
}

.badge-dot{
  width:12px;
  height:12px;
  border-radius:999px;
  background: var(--accent);
  opacity: 0.9;
  box-shadow: 0 0 0 3px rgba(213,139,60,0.10);
}

.card .more{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top: 10px;
  color: var(--accent);
  font-weight: 700;
}

.card .orange{
  color: var(--accent);
}

.navbox{
  border-radius: var(--radius2);
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.12);
  overflow:hidden;
}

.navitem{
  display:flex;
  align-items:center;
  gap:12px;
  padding: 14px;
  border-top: 1px solid var(--border);
  text-decoration:none;
}

.navitem:first-child{border-top:none;}

.navitem:hover{
  background: rgba(255,255,255,0.03);
}

.navitem .left{
  min-width: 180px;
  font-weight: 800;
  letter-spacing: 0.2px;
}

.navitem .right{
  color: var(--muted);
  flex: 1 1 auto;
}

.navitem .chev{
  color: var(--accent);
  font-weight: 900;
  font-size: 18px;
  opacity: 0.9;
}

.small-note{
  color: var(--muted2);
  font-size: 12px;
  line-height: 1.45;
}

hr.soft{
  border:0;
  border-top: 1px solid var(--border);
  margin: 14px 0;
}
