/* ═══════════════════════════════════════════════════════════
   KI-Lotse360 — Design System v3  (2026)
   Font: Inter via Bunny Fonts (DSGVO-konform, EU-gehostet)
   Stacks: Glassmorphism · Aurora · Gradient-Text · Scroll-Reveal
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ──────────────────────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:      #03071a;
  --bg1:     #060d1f;
  --bg2:     #09122a;
  --bg3:     #0e1a35;
  --bg4:     #141f3d;
  --glass:   rgba(9,18,42,.55);
  --glass2:  rgba(14,26,53,.7);

  /* Borders */
  --border:   rgba(255,255,255,.06);
  --border2:  rgba(255,255,255,.1);
  --border3:  rgba(59,130,246,.22);
  --border4:  rgba(59,130,246,.45);

  /* Text */
  --text:    #dde6f5;
  --text2:   #b8c8e0;
  --muted:   #445872;
  --muted2:  #7a90b0;
  --white:   #fff;

  /* Brand */
  --blue:    #3b82f6;
  --blue2:   #60a5fa;
  --cyan:    #06b6d4;
  --green:   #10b981;
  --amber:   #f59e0b;
  --red:     #ef4444;
  --purple:  #8b5cf6;
  --pink:    #ec4899;

  /* Gradients */
  --grad-blue:   linear-gradient(135deg,#3b82f6 0%,#06b6d4 100%);
  --grad-purple: linear-gradient(135deg,#8b5cf6 0%,#ec4899 100%);
  --grad-text:   linear-gradient(120deg,#60a5fa 0%,#06b6d4 50%,#a78bfa 100%);

  /* Radius */
  --r:   8px;
  --r2:  12px;
  --r3:  16px;
  --r4:  24px;

  /* Shadows */
  --shadow-sm: 0 2px 12px rgba(0,0,0,.35);
  --shadow-md: 0 8px 32px rgba(0,0,0,.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.6);
  --glow-blue: 0 0 32px rgba(59,130,246,.25);
  --glow-blue2: 0 0 60px rgba(59,130,246,.15);

  /* Sizes */
  --max: 1160px;
}

/* ── RESET + BASE ────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0 }
html {
  background: var(--bg);
  color-scheme: dark;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  line-height: 1.55;
}
a { text-decoration: none; color: inherit }
img { max-width: 100%; display: block }
button { cursor: pointer; font-family: inherit }
::-webkit-scrollbar { width: 5px; height: 5px }
::-webkit-scrollbar-track { background: var(--bg) }
::-webkit-scrollbar-thumb { background: var(--bg4); border-radius: 3px }
::-webkit-scrollbar-thumb:hover { background: var(--bg3) }

/* ── FOKUS-SICHTBARKEIT (Accessibility / BITV 2.0) ───────────── */
:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

/* ── LAYOUT UTILS ────────────────────────────────────────────── */
.w  { max-width: var(--max); margin: 0 auto; padding: 0 20px }
section { padding: 64px 0 }
@media(max-width:600px) { section { padding: 40px 0 } .w { padding: 0 14px } }

/* ── SECTION LABELS ──────────────────────────────────────────── */
.s-eye {
  font-size: .64rem;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-bottom: 10px;
}
.s-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 16px;
  flex-wrap: wrap;
}
.s-head h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.035em;
}
.s-head a {
  font-size: .78rem;
  color: var(--blue);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color .12s;
}
.s-head a:hover { color: var(--blue2); text-decoration: underline }
@media(max-width:600px) { .s-head h2 { font-size: 1.15rem } }

/* ── NAVIGATION ──────────────────────────────────────────────── */
nav {
  height: 52px;
  background: rgba(3,7,26,.75);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 200;
}
.logo {
  font-size: .92rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  display: flex;
  align-items: center;
  gap: .45rem;
  margin-right: 28px;
  white-space: nowrap;
}
.logo-dot {
  width: 7px; height: 7px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--blue), 0 0 20px rgba(59,130,246,.5);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; box-shadow: 0 0 8px var(--blue), 0 0 20px rgba(59,130,246,.5) }
  50%      { opacity:.7; box-shadow: 0 0 4px var(--blue) }
}
.nav-links { display: flex; gap: 0; list-style: none }
.nav-links a {
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted2);
  padding: 0 14px;
  height: 52px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid transparent;
  transition: color .14s, border-color .14s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--white) }
.nav-links a.active { color: var(--white); border-bottom-color: var(--blue) }
.nav-right { margin-left: auto; display: flex; align-items: center; gap: 10px }
.live-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .68rem;
  font-weight: 600;
  color: var(--green);
  background: rgba(16,185,129,.08);
  border: 1px solid rgba(16,185,129,.2);
  padding: .22rem .7rem;
  border-radius: 20px;
}
.live-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-live 2s ease-in-out infinite;
}
@keyframes pulse-live {
  0%,100% { opacity:1; transform:scale(1) }
  50%      { opacity:.4; transform:scale(.7) }
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 4.5px;
  background: none;
  border: none;
  padding: 6px;
  margin-left: auto;
}
.hamburger span { width: 18px; height: 2px; background: var(--muted2); border-radius: 2px; transition: background .14s }
.hamburger:hover span { background: var(--white) }
.mob-menu {
  display: none;
  position: fixed;
  top: 52px;
  left: 0; right: 0;
  z-index: 199;
  background: rgba(3,7,26,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  padding: .6rem 20px 1.2rem;
}
.mob-menu.open { display: flex }
.mob-menu a {
  font-size: .88rem;
  color: var(--muted2);
  padding: .55rem 0;
  border-bottom: 1px solid var(--border);
  min-height: 44px;
  display: flex;
  align-items: center;
}
.mob-menu a:last-child { border: none }
.mob-menu a:hover { color: var(--white) }
.mob-sub {
  border-left: 2px solid rgba(59,130,246,.25);
  padding-left: 14px;
  overflow: hidden;
  transition: max-height .25s ease, opacity .2s;
}
.mob-sub a { font-size: .8rem; color: var(--muted); padding: .32rem 0; border:none!important; min-height:38px }
.mob-sub a:hover { color: var(--white) }
.mob-arrow { font-size: .55rem; margin-left: 6px; display: inline-block; transition: transform .2s; opacity: .7 }
.mob-arrow.up { transform: rotate(180deg) }
.has-drop { position: relative }
.drop-arrow { font-size: .5rem; margin-left: 3px; display: inline-block; transition: transform .18s; opacity: .6 }
.has-drop:hover .drop-arrow, .has-drop.open .drop-arrow { transform: rotate(180deg) }
.nav-drop {
  position: absolute;
  top: 50px;
  left: -10px;
  background: rgba(9,18,42,.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border2);
  border-radius: var(--r2);
  padding: 6px 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  min-width: 200px;
  z-index: 500;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .14s, transform .14s;
}
.has-drop:hover .nav-drop,
.has-drop.open .nav-drop,
.has-drop:focus-within .nav-drop {
  opacity: 1; pointer-events: all; transform: translateY(0)
}
.nav-drop a {
  font-size: .73rem;
  font-weight: 500;
  color: var(--muted2);
  padding: 6px 10px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  border-bottom: none!important;
  height: auto!important;
  min-height: unset!important;
}
.nav-drop a:hover { background: rgba(255,255,255,.06); color: var(--white) }
@media(max-width:900px) {
  .nav-links, .nav-right { display: none }
  .hamburger { display: flex }
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn-primary {
  background: linear-gradient(135deg,#2563eb 0%,#3b82f6 60%,#0ea5e9 100%);
  color: #fff;
  font-size: .85rem;
  font-weight: 700;
  padding: .68rem 1.6rem;
  border-radius: var(--r2);
  border: none;
  transition: transform .15s, box-shadow .15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 20px rgba(59,130,246,.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(59,130,246,.45);
}
.btn-primary:active { transform: translateY(0); box-shadow: none }
.btn-secondary {
  background: rgba(255,255,255,.04);
  color: var(--muted2);
  font-size: .85rem;
  font-weight: 600;
  padding: .68rem 1.6rem;
  border-radius: var(--r2);
  border: 1.5px solid var(--border2);
  transition: all .15s;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.btn-secondary:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.2);
  background: rgba(255,255,255,.07);
  transform: translateY(-1px);
}
.btn-blue {
  background: linear-gradient(135deg,#2563eb,#3b82f6);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  padding: .55rem 1.2rem;
  border-radius: var(--r);
  border: none;
  transition: transform .14s, box-shadow .14s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 3px 14px rgba(59,130,246,.3);
}
.btn-blue:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(59,130,246,.4) }
.btn-outline {
  background: transparent;
  color: var(--muted2);
  font-size: .82rem;
  font-weight: 600;
  padding: .55rem 1.2rem;
  border-radius: var(--r);
  border: 1px solid var(--border2);
  transition: all .14s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-outline:hover { color: var(--white); border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.05) }

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 20px 80px;
  text-align: center;
}
.hero-aurora {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 1100px 600px at 50% -80px, rgba(59,130,246,.16) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 85% 20%,   rgba(139,92,246,.1) 0%, transparent 55%),
    radial-gradient(ellipse 400px 300px at 12% 70%,   rgba(6,182,212,.08) 0%, transparent 50%),
    radial-gradient(ellipse 500px 300px at 50% 120%,  rgba(59,130,246,.06) 0%, transparent 55%);
  animation: aurora-shift 12s ease-in-out infinite alternate;
}
@keyframes aurora-shift {
  0%  { opacity:.7 }
  100%{ opacity:1 }
}
.hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(59,130,246,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59,130,246,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 15%, transparent 70%);
}
.hero-inner { position: relative; max-width: var(--max); margin: 0 auto }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  font-weight: 700;
  color: var(--blue2);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 24px;
  background: rgba(59,130,246,.07);
  border: 1px solid rgba(59,130,246,.2);
  padding: .35rem 1.1rem;
  border-radius: 40px;
  backdrop-filter: blur(8px);
}
.hero-badge-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 6px var(--blue);
  animation: pulse-live 2s ease-in-out infinite;
}
.hero-h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.05em;
  line-height: 1.06;
  margin-bottom: 20px;
}
.hero-h1 .grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(.9rem, 2vw, 1.06rem);
  color: var(--muted2);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 40px;
}
.hero-sub strong { color: var(--text) }

/* Hero Search */
.hero-search {
  max-width: 560px;
  margin: 0 auto 30px;
  position: relative;
}
.hero-search input {
  width: 100%;
  background: rgba(9,18,42,.8);
  backdrop-filter: blur(12px);
  border: 1.5px solid var(--border2);
  color: var(--white);
  font-size: .95rem;
  font-family: inherit;
  padding: .85rem 148px .85rem 1.3rem;
  border-radius: var(--r3);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.hero-search input:focus {
  border-color: var(--border4);
  box-shadow: 0 0 0 4px rgba(59,130,246,.12), var(--glow-blue2);
}
.hero-search input::placeholder { color: var(--muted) }
.hero-search-btn {
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg,#2563eb,#3b82f6);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  font-family: inherit;
  border: none;
  padding: .52rem 1.1rem;
  border-radius: var(--r2);
  transition: transform .12s, box-shadow .12s;
  white-space: nowrap;
}
.hero-search-btn:hover {
  transform: translateY(-51%) scale(1.03);
  box-shadow: 0 6px 20px rgba(59,130,246,.4);
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-ql {
  display: flex;
  gap: 7px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-ql a {
  font-size: .73rem;
  font-weight: 500;
  color: var(--muted2);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 40px;
  padding: .3rem .95rem;
  transition: all .15s;
  white-space: nowrap;
}
.hero-ql a:hover {
  color: var(--white);
  border-color: var(--border3);
  background: rgba(59,130,246,.07);
  transform: translateY(-1px);
}
.hero-popular {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 6px;
}
.pop-label { font-size: .65rem; color: var(--muted); white-space: nowrap }
.pop-tag {
  font-size: .72rem;
  font-weight: 500;
  color: var(--muted2);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: .22rem .68rem;
  cursor: pointer;
  transition: all .13s;
  white-space: nowrap;
}
.pop-tag:hover {
  color: var(--white);
  background: rgba(59,130,246,.09);
  border-color: var(--border3);
  transform: translateY(-1px);
}
@media(max-width:600px) {
  .hero { padding: 60px 14px 52px }
  .hero-h1 { letter-spacing: -.04em }
  .hero-search input { padding: .78rem 110px .78rem 1rem; font-size: .88rem }
}

/* ── STATS BAR ───────────────────────────────────────────────── */
.stats-bar {
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: stretch;
}
.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  border-right: 1px solid var(--border);
  min-width: 0;
  transition: background .2s;
}
.stat-item:last-child { border-right: none }
.stat-item:hover { background: rgba(255,255,255,.015) }
.stat-val {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.04em;
  line-height: 1;
}
.stat-lbl {
  font-size: .6rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-top: 5px;
}
@media(max-width:580px) {
  .stat-item { padding: 12px 8px }
  .stat-val { font-size: 1.1rem }
}
@media(max-width:520px) {
  .stats-bar-inner { display: grid; grid-template-columns: repeat(3,1fr) }
  .stat-item { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 10px 6px }
  .stat-item:nth-child(3), .stat-item:last-child { border-right: none }
  .stat-val { font-size: .95rem }
  .stat-lbl { font-size: .55rem }
}

/* ── CATEGORY CARDS ──────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(7,1fr);
  gap: 10px;
}
.cat-card {
  position: relative;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 22px 12px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  text-align: center;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, var(--cc-col, var(--blue)) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .22s;
}
.cat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--cc-col, var(--blue));
  opacity: 0;
  transition: opacity .2s;
  filter: blur(1px);
}
.cat-card:hover { border-color: var(--cc-col, var(--blue)); transform: translateY(-5px); box-shadow: 0 20px 48px rgba(0,0,0,.5) }
.cat-card:hover::before { opacity: .06 }
.cat-card:hover::after { opacity: .9 }
.cat-icon { font-size: 1.8rem; line-height: 1; transition: transform .2s; position: relative }
.cat-card:hover .cat-icon { transform: scale(1.15) }
.cat-name { font-size: .78rem; font-weight: 800; color: var(--white); letter-spacing: -.01em; position: relative }
.cat-count-pill {
  font-size: .62rem;
  font-weight: 600;
  color: var(--muted);
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: .1rem .55rem;
  transition: all .2s;
  position: relative;
}
.cat-card:hover .cat-count-pill {
  background: rgba(59,130,246,.1);
  border-color: var(--border3);
  color: var(--blue2);
}
.cat-top { font-size: .62rem; color: var(--muted); line-height: 1.4; position: relative }
@media(max-width:960px) { .cat-grid { grid-template-columns: repeat(4,1fr) } }
@media(max-width:520px)  { .cat-grid { grid-template-columns: repeat(2,1fr) } }

/* ── FEATURED CARDS ──────────────────────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
}
.feat-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.feat-card:hover {
  border-color: rgba(255,255,255,.13);
  transform: translateY(-4px);
  box-shadow: 0 24px 56px rgba(0,0,0,.5);
}
.feat-top-bar { height: 3px; background: var(--fc, var(--blue)); border-radius: 0 }
.feat-body { padding: 18px 20px 16px; flex: 1; display: flex; flex-direction: column }
.feat-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.feat-rank-badge {
  font-size: .62rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  display: flex;
  align-items: center;
  gap: 5px;
}
.feat-rank-num {
  background: rgba(255,255,255,.06);
  border-radius: 6px;
  padding: .1rem .48rem;
  font-size: .8rem;
  color: var(--white);
}
.feat-head-row { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 10px }
.feat-ico {
  width: 40px; height: 40px;
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.feat-title { font-size: .93rem; font-weight: 800; color: var(--white); letter-spacing: -.02em; line-height: 1.2 }
.feat-prov { font-size: .68rem; color: var(--muted); margin-top: 2px }
.feat-desc {
  font-size: .74rem;
  color: var(--muted2);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 14px;
}
.feat-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: auto }
.feat-cat-tag { font-size: .62rem; font-weight: 700; padding: .15rem .55rem; border-radius: 5px }
.feat-cta {
  font-size: .72rem;
  color: var(--blue);
  font-weight: 600;
  padding: .3rem .75rem;
  border: 1px solid rgba(59,130,246,.22);
  border-radius: 6px;
  transition: background .12s, border-color .12s;
  white-space: nowrap;
}
.feat-cta:hover { background: rgba(59,130,246,.1); border-color: var(--border4) }
@media(max-width:860px) { .feat-grid { grid-template-columns: 1fr 1fr } }
@media(max-width:540px) { .feat-grid { grid-template-columns: 1fr } }

/* ── MOVER STRIP ─────────────────────────────────────────────── */
.mover-strip {
  background: rgba(16,185,129,.04);
  border: 1px solid rgba(16,185,129,.12);
  border-radius: var(--r2);
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.mover-label {
  font-size: .67rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .1em;
  white-space: nowrap;
}
.mover-list { display: flex; gap: 8px; flex-wrap: wrap; flex: 1 }
.mover-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .73rem;
  color: var(--muted2);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: .28rem .72rem;
  transition: border-color .14s;
}
.mover-item:hover { border-color: rgba(16,185,129,.3) }
.mover-item strong { color: var(--white); font-weight: 700 }
.mover-up { color: var(--green) }
.mover-dn { color: var(--red) }
@media(max-width:600px) {
  .mover-strip { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px 16px }
  .mover-item { font-size: .7rem }
}

/* ── PRICE STRIP ─────────────────────────────────────────────── */
#price-strip {
  background: rgba(6,182,212,.04);
  border: 1px solid rgba(6,182,212,.12);
  border-radius: var(--r2);
  padding: 13px 22px;
  display: none;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}
#price-strip.loaded { display: flex }
.price-label { font-size: .64rem; font-weight: 700; color: var(--cyan); text-transform: uppercase; letter-spacing: .1em; white-space: nowrap; flex-shrink: 0 }
.price-chips { display: flex; gap: 8px; flex-wrap: wrap; flex: 1; align-items: center }
.price-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .73rem;
  color: var(--muted2);
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: .28rem .85rem;
  white-space: nowrap;
}
.price-chip strong { color: var(--white); font-weight: 700; font-size: .78rem }
.price-chip .chip-in  { color: var(--green); font-size: .65rem }
.price-chip .chip-out { color: var(--amber); font-size: .65rem }
.price-ts { font-size: .62rem; color: var(--muted); margin-left: auto; white-space: nowrap }

/* ── USE CASE SECTION ────────────────────────────────────────── */
.uc-section {
  background: linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 50%, var(--bg1) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.uc-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}
.uc-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 24px 20px;
  transition: all .2s;
  display: flex;
  flex-direction: column;
  gap: 9px;
  position: relative;
  overflow: hidden;
}
.uc-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity .2s;
}
.uc-card:hover { border-color: var(--border3); background: rgba(59,130,246,.02); transform: translateY(-3px); box-shadow: var(--shadow-md) }
.uc-card:hover::before { opacity: .7 }
.uc-emoji { font-size: 1.7rem; line-height: 1 }
.uc-title { font-size: .9rem; font-weight: 800; color: var(--white) }
.uc-text { font-size: .74rem; color: var(--muted2); line-height: 1.65; flex: 1 }
.uc-link  { font-size: .74rem; color: var(--blue); font-weight: 600; margin-top: 4px }
.uc-icon  { font-size: 1.6rem; line-height: 1; margin-bottom: 8px }
@media(max-width:860px) { .uc-grid { grid-template-columns: 1fr 1fr } }
@media(max-width:480px) { .uc-grid { grid-template-columns: 1fr } }

/* ── TRUST BAR ───────────────────────────────────────────────── */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
}
.trust-col {
  background: var(--bg2);
  padding: 24px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background .2s;
}
.trust-col:hover { background: var(--bg3) }
.trust-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 1px }
.trust-title { font-size: .84rem; font-weight: 800; color: var(--white); margin-bottom: 6px; letter-spacing: -.01em }
.trust-text { font-size: .73rem; color: var(--muted2); line-height: 1.65 }
.trust-text a { color: var(--blue); font-weight: 600 }
.trust-text a:hover { text-decoration: underline }
@media(max-width:760px) {
  .trust-bar { grid-template-columns: 1fr }
  .trust-col { padding: 18px 20px }
}

/* ── CTA BANNER ──────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(37,99,235,.1) 0%, rgba(139,92,246,.07) 50%, rgba(6,182,212,.05) 100%);
  border: 1.5px solid rgba(59,130,246,.2);
  border-radius: var(--r3);
  padding: 44px 40px;
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: radial-gradient(ellipse, rgba(59,130,246,.1), transparent 70%);
  pointer-events: none;
}
.cta-banner-text { flex: 1; min-width: 220px }
.cta-banner-text h2 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -.03em;
}
.cta-banner-text p { font-size: .79rem; color: var(--muted2); line-height: 1.65 }
.cta-banner-btns { display: flex; flex-direction: column; gap: 9px; flex-shrink: 0 }
@media(max-width:600px) {
  .cta-banner { padding: 28px 22px }
  .cta-banner-btns { flex-direction: row; flex-wrap: wrap }
}

/* ── TRENDING GRID ───────────────────────────────────────────── */
.trending-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px }
.trend-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all .2s;
}
.trend-card:hover { border-color: var(--border2); transform: translateY(-2px); box-shadow: var(--shadow-sm) }
.trend-num { font-size: .62rem; font-weight: 900; color: var(--muted); min-width: 18px }
.trend-ico { width: 32px; height: 32px; border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; border: 1px solid var(--border) }
.trend-body { flex: 1; min-width: 0 }
.trend-name { font-size: .82rem; font-weight: 800; color: var(--white); letter-spacing: -.01em; display: flex; align-items: center; gap: 5px }
.trend-prov { font-size: .65rem; color: var(--muted); margin-top: 1px }
.trend-score { font-size: .78rem; font-weight: 900; color: var(--blue); margin-left: auto; flex-shrink: 0 }
.trend-badge { font-size: .55rem; font-weight: 800; padding: .06rem .38rem; border-radius: 4px }
@media(max-width:860px) { .trending-grid { grid-template-columns: 1fr 1fr } }
@media(max-width:520px)  { .trending-grid { grid-template-columns: 1fr } }

/* ── LIVE STATUS ─────────────────────────────────────────────── */
.live-status { display: inline-flex; align-items: center; gap: 5px; font-size: .65rem; color: var(--muted); transition: color .3s }
.live-status.ok  { color: var(--green) }
.live-status.err { color: var(--amber) }
.count-spin { display: inline-block; transition: transform .15s ease; will-change: transform }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
  font-size: .7rem;
  color: var(--muted);
}
footer a { color: var(--blue) }
footer a:hover { text-decoration: underline; color: var(--blue2) }
.footer-links {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.footer-links a { color: var(--muted2); font-weight: 500; transition: color .14s }
.footer-links a:hover { color: var(--white); text-decoration: none }

/* ── ARTICLE PAGES ───────────────────────────────────────────── */
.art-hero {
  background: linear-gradient(135deg,rgba(59,130,246,.08),rgba(139,92,246,.05));
  border-bottom: 1px solid var(--border);
  padding: 36px 20px;
}
.art-hero-inner { max-width: 780px; margin: 0 auto }
.breadcrumb { font-size: .7rem; color: var(--muted2); margin-bottom: 12px }
.breadcrumb a { color: var(--blue) }
.breadcrumb a:hover { text-decoration: underline }
.art-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 12px }
.art-tag { font-size: .63rem; font-weight: 700; padding: .12rem .55rem; border-radius: 5px; background: rgba(59,130,246,.12); color: var(--blue) }
.art-hero-inner h1,
h1.art-h1 {
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  line-height: 1.22;
  margin-bottom: 12px;
}
.art-lead { font-size: 1rem; color: var(--muted2); line-height: 1.68; margin-bottom: 16px }
.art-meta-bar { font-size: .72rem; color: var(--muted); display: flex; gap: 16px; flex-wrap: wrap }
.main { max-width: 780px; margin: 0 auto; padding: 36px 20px 72px }
.main h2 { font-size: 1.15rem; font-weight: 800; color: var(--white); letter-spacing: -.02em; margin: 36px 0 12px; padding-bottom: 8px; border-bottom: 1px solid var(--border) }
.main h3 { font-size: .96rem; font-weight: 700; color: var(--muted2); margin: 20px 0 8px }
.main p { margin-bottom: 14px; color: var(--text) }
ul.art-list { margin: 0 0 14px 18px; color: var(--text); line-height: 1.9 }
ul.art-list li { margin-bottom: 4px }
.callout {
  background: rgba(59,130,246,.06);
  border: 1px solid rgba(59,130,246,.18);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--r2) var(--r2) 0;
  padding: 14px 18px;
  margin: 20px 0;
  font-size: .84rem;
  color: var(--muted2);
}
.callout strong { color: var(--white) }
.callout-amber { background: rgba(245,158,11,.06); border-color: rgba(245,158,11,.2); border-left-color: var(--amber) }
.callout-green  { background: rgba(16,185,129,.06); border-color: rgba(16,185,129,.2);  border-left-color: var(--green) }
.callout-red    { background: rgba(239,68,68,.06);  border-color: rgba(239,68,68,.2);   border-left-color: var(--red) }
table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: .82rem }
thead th {
  text-align: left;
  padding: 8px 10px;
  font-size: .64rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
tbody td { padding: 9px 10px; border-bottom: 1px solid rgba(255,255,255,.04); vertical-align: top }
tbody tr:hover { background: rgba(255,255,255,.02) }
.tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.2rem 0 }

/* ── SHARE BAR ───────────────────────────────────────────────── */
.share-bar { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin: 2rem 0 1rem }
.share-bar span { font-size: .8rem; color: var(--muted2); font-weight: 600; text-transform: uppercase; letter-spacing: .05em }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 6px;
  font-size: .82rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity .15s, transform .15s;
  cursor: pointer;
  border: none;
  font-family: inherit;
}
.share-btn:hover { opacity: .85; transform: translateY(-1px) }
.share-btn.twitter { background: #000; color: #fff }
.share-btn.linkedin { background: #0a66c2; color: #fff }
.share-btn.copy-link { background: rgba(255,255,255,.07); color: var(--muted2); border: 1px solid var(--border2) }
.share-btn.copy-link.copied { background: rgba(16,185,129,.15); color: var(--green) }

/* ── RELATED BOX ─────────────────────────────────────────────── */
.related-box { border-top: 1px solid var(--border); margin-top: 3rem; padding-top: 2rem }
.related-box h3 { font-size: 1rem; font-weight: 700; margin: 0 0 1rem; color: var(--muted2); text-transform: uppercase; letter-spacing: .06em }
.related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 12px }
.related-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 14px;
  text-decoration: none;
  display: block;
  transition: border-color .15s, transform .15s;
}
.related-card:hover { border-color: rgba(59,130,246,.5); transform: translateY(-2px) }
.related-card p { margin: 0; font-size: .85rem; font-weight: 600; color: var(--text); line-height: 1.35 }
.related-card span { font-size: .75rem; color: var(--muted2); margin-top: 4px; display: block }

/* ── BADGES ──────────────────────────────────────────────────── */
.badge-hot  { background: rgba(239,68,68,.13);  color: #f87171; border: 1px solid rgba(239,68,68,.25);  font-size: .59rem; font-weight: 800; padding: .09rem .46rem; border-radius: 5px; text-transform: uppercase; letter-spacing: .06em }
.badge-new  { background: rgba(16,185,129,.13); color: #34d399; border: 1px solid rgba(16,185,129,.25); font-size: .59rem; font-weight: 800; padding: .09rem .46rem; border-radius: 5px; text-transform: uppercase; letter-spacing: .06em }
.badge-live { background: rgba(59,130,246,.13); color: var(--blue2);  border: 1px solid rgba(59,130,246,.25); font-size: .59rem; font-weight: 800; padding: .09rem .46rem; border-radius: 5px; text-transform: uppercase; letter-spacing: .06em }
.badge-eu   { background: rgba(6,182,212,.13);  color: #22d3ee;  border: 1px solid rgba(6,182,212,.25);  font-size: .59rem; font-weight: 800; padding: .09rem .46rem; border-radius: 5px; text-transform: uppercase; letter-spacing: .06em }
.badge-oss  { background: rgba(139,92,246,.13); color: #a78bfa; border: 1px solid rgba(139,92,246,.25); font-size: .59rem; font-weight: 800; padding: .09rem .46rem; border-radius: 5px; text-transform: uppercase; letter-spacing: .06em }
.badge-soon { background: rgba(245,158,11,.13); color: #fbbf24; border: 1px solid rgba(245,158,11,.25); font-size: .59rem; font-weight: 800; padding: .09rem .46rem; border-radius: 5px; text-transform: uppercase; letter-spacing: .06em }

/* ── TAG COLORS ──────────────────────────────────────────────── */
.tag-green, .tag-g { color: #34d399; font-weight: 700 }
.tag-amber, .tag-a { color: #fbbf24; font-weight: 700 }
.tag-red,   .tag-r { color: #f87171; font-weight: 700 }
.tag-blue,  .tag-b { color: var(--blue2); font-weight: 700 }
.tag-p              { color: #a78bfa; font-weight: 700 }
.mtag-green { background: rgba(16,185,129,.12); color: #34d399; border: 1px solid rgba(16,185,129,.22); border-radius: 5px; padding: .1rem .45rem; font-size: .68rem; font-weight: 700 }
.mtag-amber { background: rgba(245,158,11,.12); color: #fbbf24; border: 1px solid rgba(245,158,11,.22); border-radius: 5px; padding: .1rem .45rem; font-size: .68rem; font-weight: 700 }

/* ── CHIPS ───────────────────────────────────────────────────── */
.chip-blue  { background: rgba(59,130,246,.12); color: var(--blue2); border: 1px solid rgba(59,130,246,.22); border-radius: 5px; padding: .12rem .5rem; font-size: .72rem; font-weight: 600 }
.chip-green { background: rgba(16,185,129,.12); color: #34d399;     border: 1px solid rgba(16,185,129,.22); border-radius: 5px; padding: .12rem .5rem; font-size: .72rem; font-weight: 600 }

/* ── RANK CHANGE ─────────────────────────────────────────────── */
.rc-up  { color: #34d399; font-size: .7rem; font-weight: 700 }
.rc-dn  { color: #f87171; font-size: .7rem; font-weight: 700 }
.rc-eq  { color: var(--muted); font-size: .7rem; font-weight: 700 }
.rc-new { color: var(--blue2); font-size: .7rem; font-weight: 700 }

/* ── HEADER BADGES ───────────────────────────────────────────── */
.hb-blue   { background: rgba(59,130,246,.1);  border: 1px solid rgba(59,130,246,.2);  color: var(--blue2); border-radius: 6px; padding: .15rem .55rem; font-size: .68rem; font-weight: 700 }
.hb-green  { background: rgba(16,185,129,.1);  border: 1px solid rgba(16,185,129,.2);  color: #34d399;      border-radius: 6px; padding: .15rem .55rem; font-size: .68rem; font-weight: 700 }
.hb-purple { background: rgba(139,92,246,.1);  border: 1px solid rgba(139,92,246,.2);  color: #a78bfa;      border-radius: 6px; padding: .15rem .55rem; font-size: .68rem; font-weight: 700 }
.hb-red    { background: rgba(239,68,68,.1);   border: 1px solid rgba(239,68,68,.2);   color: #f87171;      border-radius: 6px; padding: .15rem .55rem; font-size: .68rem; font-weight: 700 }

/* ── RATING ARROWS ───────────────────────────────────────────── */
.ra-primary   { color: var(--blue2); font-size: .7rem; font-weight: 800 }
.ra-secondary { color: var(--muted2); font-size: .7rem }

/* ── REDAKTIONELLER HINWEIS ──────────────────────────────────── */
.redakt-hinweis {
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px 20px 4px;
  border-top: 1px solid var(--border);
}
.redakt-hinweis p {
  font-size: .74rem;
  color: var(--muted);
  line-height: 1.65;
}
.redakt-hinweis strong { color: var(--muted2) }
.redakt-hinweis a { color: var(--blue) }

/* ── SCROLL REVEAL (IntersectionObserver) ────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── FADE-IN ANIMATION ───────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px) }
  to   { opacity: 1; transform: translateY(0) }
}
.fade-up { animation: fadeUp .5s ease both }
.fade-up-1 { animation-delay: .05s }
.fade-up-2 { animation-delay: .12s }
.fade-up-3 { animation-delay: .19s }

/* ── GRADIENT TEXT UTIL ──────────────────────────────────────── */
.text-grad {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── GLASS CARD ──────────────────────────────────────────────── */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border2);
  border-radius: var(--r2);
}

/* ── REDUCED MOTION ──────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .fade-up {
    animation: none;
    opacity: 1;
    transform: none;
  }
  html { scroll-behavior: auto }
}

/* ═══════════════════════════════════════════════════════════
   APP-SEITEN KOMPONENTEN (Ranking · Finder · Kategorie · Modell)
   ═══════════════════════════════════════════════════════════ */

/* ── MAIN WIDE (App-Seiten überschreiben 780px) ──────────────── */
.main-app { max-width: var(--max); margin: 0 auto; padding: 0 20px 60px }

/* ── PAGE HEADER ─────────────────────────────────────────────── */
.page-hdr {
  background: var(--bg1);
  border-bottom: 1px solid var(--border);
  padding: 0 20px;
}
.page-hdr-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 0;
  min-height: 44px;
  font-size: .74rem;
  color: var(--muted2);
}
.page-title {
  font-size: .96rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.page-title span { color: var(--blue2) }
.page-sub { font-size: .65rem; color: var(--muted) }
.tracked {
  font-size: .72rem;
  font-weight: 700;
  color: var(--cyan);
  background: rgba(6,182,212,.08);
  border: 1px solid rgba(6,182,212,.18);
  padding: .12rem .6rem;
  border-radius: 20px;
}

/* ── CATEGORY TABS BAR ───────────────────────────────────────── */
.cat-bar {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  margin-bottom: 10px;
  padding: 0;
}
.cat-tab {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  color: var(--muted2);
  font-size: .75rem;
  font-weight: 600;
  font-family: inherit;
  padding: .38rem .85rem;
  border-radius: var(--r);
  cursor: pointer;
  transition: all .14s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.cat-tab:hover { color: var(--white); border-color: var(--border2); background: rgba(255,255,255,.06) }
.cat-tab.active {
  background: rgba(59,130,246,.14);
  border-color: rgba(59,130,246,.35);
  color: var(--blue2);
}
.cat-count {
  background: rgba(255,255,255,.07);
  border-radius: 4px;
  padding: .05rem .38rem;
  font-size: .65rem;
  font-weight: 700;
  color: var(--muted2);
}
.cat-tab.active .cat-count { color: var(--blue2) }

/* ── TOOLBAR ─────────────────────────────────────────────────── */
.toolbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 12px;
  padding: 10px 14px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
}
.search-wrap { flex: 1; min-width: 140px; max-width: 240px }
.search-wrap input {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border2);
  color: var(--white);
  font-size: .8rem;
  font-family: inherit;
  padding: .42rem .8rem;
  border-radius: var(--r);
  outline: none;
  transition: border-color .14s;
}
.search-wrap input:focus { border-color: var(--border4) }
.search-wrap input::placeholder { color: var(--muted) }
.filter-pills { display: flex; gap: 5px; flex-wrap: wrap }
.pill {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  color: var(--muted2);
  font-size: .72rem;
  font-weight: 600;
  font-family: inherit;
  padding: .3rem .75rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all .13s;
  white-space: nowrap;
}
.pill:hover { color: var(--white); border-color: var(--border2); background: rgba(255,255,255,.06) }
.pill.on {
  background: rgba(59,130,246,.14);
  border-color: rgba(59,130,246,.35);
  color: var(--blue2);
}
.tb-right { margin-left: auto; display: flex; align-items: center; gap: 8px }
.update-txt { font-size: .65rem; color: var(--muted) }
.refresh-btn {
  background: none;
  border: 1px solid var(--border2);
  color: var(--muted2);
  font-size: .85rem;
  font-family: inherit;
  width: 28px; height: 28px;
  border-radius: var(--r);
  cursor: pointer;
  transition: all .14s;
  display: flex; align-items: center; justify-content: center;
}
.refresh-btn:hover { color: var(--white); border-color: var(--border3); background: rgba(59,130,246,.1) }

/* ── FILTER DROPDOWN (fdd) ───────────────────────────────────── */
.fdd { position: relative }
.fdd-row { display: flex; gap: 6px; align-items: flex-start }
.fdd-btn {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border2);
  color: var(--muted2);
  font-size: .75rem;
  font-weight: 600;
  font-family: inherit;
  padding: .35rem .85rem;
  border-radius: var(--r);
  cursor: pointer;
  transition: all .14s;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}
.fdd-btn:hover { color: var(--white); border-color: var(--border3); background: rgba(255,255,255,.06) }
.fdd-btn.active-green { color: var(--green); border-color: rgba(16,185,129,.3); background: rgba(16,185,129,.08) }
.fdd-btn.active-purple { color: var(--purple); border-color: rgba(139,92,246,.3); background: rgba(139,92,246,.08) }
.fdd-arrow { font-size: .55rem; opacity: .7; transition: transform .15s }
.fdd.open .fdd-arrow { transform: rotate(180deg) }
.fdd-panel {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 300;
  background: rgba(9,18,42,.97);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border2);
  border-radius: var(--r2);
  padding: 12px 14px;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
}
.fdd.open .fdd-panel { display: block }
.fdd-label {
  font-size: .64rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .09em;
  margin-bottom: 8px;
}
.fdd-pills { display: flex; gap: 5px; flex-wrap: wrap }
.tpill, .bpill {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  color: var(--muted2);
  font-size: .72rem;
  font-weight: 600;
  font-family: inherit;
  padding: .28rem .68rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all .13s;
  white-space: nowrap;
}
.tpill:hover, .bpill:hover { color: var(--white); border-color: var(--border2) }
.tpill.on { background: rgba(16,185,129,.12); border-color: rgba(16,185,129,.3); color: var(--green) }
.bpill.on { background: rgba(139,92,246,.12); border-color: rgba(139,92,246,.3); color: var(--purple) }

/* ── RESULT LINE ─────────────────────────────────────────────── */
.result-line {
  font-size: .7rem;
  color: var(--muted);
  margin-bottom: 8px;
  padding: 0 2px;
}

/* ── TABLE: APP PAGES ────────────────────────────────────────── */
.td-rank {
  font-size: .78rem;
  font-weight: 900;
  color: var(--muted2);
  text-align: center;
  white-space: nowrap;
}
.rank-chg {
  font-size: .58rem;
  font-weight: 800;
  margin-left: 3px;
  vertical-align: middle;
}
.sys-row { display: flex; align-items: center; gap: 10px }
.sys-icon {
  width: 34px; height: 34px;
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.sys-name {
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
}
.sys-name a { color: var(--white); transition: color .12s }
.sys-name a:hover { color: var(--blue2); text-decoration: underline }
.sys-prov { font-size: .65rem; color: var(--muted); margin-top: 2px }
.td-score { text-align: right; white-space: nowrap }
.td-delta { text-align: right; white-space: nowrap }
.td-spark { text-align: center }
.td-mini { text-align: right; white-space: nowrap }
thead th { cursor: default }
thead th[onclick] { cursor: pointer }
thead th.sorted { color: var(--blue2) }
thead th.sorted::after { content: ' ↓'; font-size: .7em }
thead th.sorted.asc::after { content: ' ↑' }

/* Score badges */
.sc-gold { color: #fbbf24; font-weight: 900; font-size: .88rem }
.sc-blue { color: var(--blue2); font-weight: 800; font-size: .85rem }
.sc-green { color: #34d399; font-weight: 700; font-size: .83rem }
.sc-gray { color: var(--muted2); font-weight: 600; font-size: .82rem }

/* Delta */
.dpos { color: #34d399; font-weight: 700; font-size: .75rem }
.dneg { color: #f87171; font-weight: 700; font-size: .75rem }
.dzero { color: var(--muted); font-size: .75rem }

/* Mini bar */
.mini-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .74rem;
  font-weight: 700;
  color: var(--muted2);
  justify-content: flex-end;
}
.mb-bg {
  width: 44px; height: 5px;
  background: rgba(255,255,255,.06);
  border-radius: 3px;
  overflow: hidden;
}
.mb-fg { height: 100%; border-radius: 3px; transition: width .3s ease }

/* Show more */
.show-more-wrap { text-align: center; margin-top: 14px }
.show-more-btn {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border2);
  color: var(--muted2);
  font-size: .8rem;
  font-weight: 600;
  font-family: inherit;
  padding: .55rem 2rem;
  border-radius: var(--r2);
  cursor: pointer;
  transition: all .14s;
}
.show-more-btn:hover { color: var(--white); border-color: var(--border3); background: rgba(59,130,246,.08) }

/* ── DETAIL ROW ──────────────────────────────────────────────── */
.detail-row td { padding: 0 !important }
.detail-box {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border3);
  border-bottom: 1px solid var(--border);
}
.det-sect {
  background: var(--bg3);
  padding: 16px 18px;
}
.det-lbl {
  font-size: .63rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 6px;
}
.det-val {
  font-size: .76rem;
  color: var(--text2);
  line-height: 1.6;
}
.det-links { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 10px }
.det-link {
  font-size: .72rem;
  font-weight: 600;
  color: var(--blue);
  border: 1px solid rgba(59,130,246,.25);
  border-radius: 5px;
  padding: .22rem .65rem;
  transition: background .12s;
}
.det-link:hover { background: rgba(59,130,246,.1) }
.sb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  border-bottom: 1px solid var(--border);
  font-size: .74rem;
}
.sb-row:last-child { border: none }
.sb-key { color: var(--muted2) }
.sb-val { color: var(--white); font-weight: 700 }
.hist-row {
  display: flex;
  justify-content: space-between;
  font-size: .7rem;
  padding: 2px 0;
}
.hr-k { color: var(--muted) }
.hr-v { color: var(--text2); font-weight: 600 }
@media(max-width:760px) { .detail-box { grid-template-columns: 1fr } }

/* ═══════════════════════════════════════════════════════════
   BLOG-SEITE
   ═══════════════════════════════════════════════════════════ */
.page-tag {
  font-size: .62rem;
  font-weight: 700;
  color: var(--blue2);
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-bottom: 6px;
}
.topics {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.topic {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border2);
  color: var(--muted2);
  font-size: .74rem;
  font-weight: 600;
  font-family: inherit;
  padding: .35rem .9rem;
  border-radius: 20px;
  cursor: pointer;
  transition: all .14s;
}
.topic:hover { color: var(--white); border-color: var(--border3) }
.topic.on {
  background: rgba(59,130,246,.14);
  border-color: rgba(59,130,246,.35);
  color: var(--blue2);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.article {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.article:hover {
  border-color: rgba(255,255,255,.13);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,.45);
}
.article.featured {
  grid-column: span 2;
  flex-direction: row;
}
@media(max-width:700px) { .article.featured { grid-column: span 1; flex-direction: column } }
.art-img {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  flex-shrink: 0;
}
.feat-img { min-height: 100%; min-width: 180px; width: 180px }
@media(max-width:700px) { .feat-img { width: 100%; min-height: 100px } }
.art-body {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.feat-body { padding: 20px 22px }
.art-title {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}
.feat-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.art-excerpt {
  font-size: .75rem;
  color: var(--muted2);
  line-height: 1.65;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 12px;
}
.art-meta {
  display: flex;
  gap: 12px;
  font-size: .65rem;
  color: var(--muted);
  margin-top: auto;
}

/* ═══════════════════════════════════════════════════════════
   KI-FINDER
   ═══════════════════════════════════════════════════════════ */
.finder-hero {
  background: linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 100%);
  border-bottom: 1px solid var(--border);
  padding: 40px 20px 32px;
  text-align: center;
}
.finder-tag {
  font-size: .62rem;
  font-weight: 700;
  color: var(--blue2);
  text-transform: uppercase;
  letter-spacing: .13em;
  margin-bottom: 12px;
}
.finder-h1 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.04em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.finder-sub {
  font-size: .88rem;
  color: var(--muted2);
  line-height: 1.6;
}
.quiz-wrap {
  max-width: 620px;
  margin: 32px auto;
  padding: 0 20px;
}
.progress-bar {
  height: 4px;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 4px;
  transition: width .35s ease;
}
.step-label {
  font-size: .65rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.question {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.025em;
  line-height: 1.3;
  margin-bottom: 6px;
}
.question-sub {
  font-size: .78rem;
  color: var(--muted2);
  margin-bottom: 18px;
}
.options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 8px;
  margin-bottom: 20px;
}
.opt {
  background: var(--bg2);
  border: 1.5px solid var(--border2);
  border-radius: var(--r2);
  padding: 14px 12px;
  cursor: pointer;
  transition: all .15s;
  text-align: center;
}
.opt:hover { border-color: var(--border3); background: rgba(59,130,246,.05) }
.opt.selected {
  border-color: rgba(59,130,246,.5);
  background: rgba(59,130,246,.1);
}
.opt-icon { font-size: 1.6rem; margin-bottom: 6px; line-height: 1 }
.opt-label { font-size: .8rem; font-weight: 700; color: var(--white); margin-bottom: 3px }
.opt-desc { font-size: .65rem; color: var(--muted2); line-height: 1.4 }
.btn-back, .btn-next {
  font-family: inherit;
  font-size: .82rem;
  font-weight: 700;
  padding: .6rem 1.4rem;
  border-radius: var(--r2);
  cursor: pointer;
  transition: all .15s;
}
.btn-back {
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--muted2);
  margin-right: 10px;
}
.btn-back:hover { color: var(--white); border-color: var(--border3) }
.btn-next {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border: none;
  color: #fff;
  box-shadow: 0 4px 16px rgba(59,130,246,.3);
}
.btn-next:hover:not(:disabled) { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(59,130,246,.4) }
.btn-next:disabled { opacity: .4; cursor: not-allowed }
.results-wrap { max-width: 680px; margin: 32px auto; padding: 0 20px }
.results-header { text-align: center; margin-bottom: 24px }
.results-h2 {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -.04em;
  margin-bottom: 6px;
}
.results-sub { font-size: .8rem; color: var(--muted2) }
.match-cards { display: flex; flex-direction: column; gap: 10px; margin: 20px 0 }
.match-card {
  background: var(--bg2);
  border: 1px solid var(--border2);
  border-radius: var(--r2);
  padding: 18px 20px;
  transition: border-color .15s;
}
.match-card.best {
  border-color: rgba(59,130,246,.4);
  background: rgba(59,130,246,.05);
}
.match-rank { font-size: 1.3rem; margin-bottom: 8px }
.match-icon {
  width: 38px; height: 38px;
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  border: 1px solid var(--border);
  flex-shrink: 0;
}
.match-name { font-size: .92rem; font-weight: 800; color: var(--white); letter-spacing: -.02em }
.match-prov { font-size: .65rem; color: var(--muted); margin-top: 2px }
.match-why { font-size: .76rem; color: var(--muted2); line-height: 1.6; margin: 8px 0 }
.match-tags { display: flex; gap: 5px; flex-wrap: wrap; margin: 6px 0 }
.match-score { display: flex; align-items: center; gap: 8px; margin-top: 8px }
.ms-val { font-size: 1.1rem; font-weight: 900; letter-spacing: -.04em }
.ms-lbl { font-size: .62rem; color: var(--muted); text-transform: uppercase; letter-spacing: .08em }
.results-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; margin-top: 20px }
.ra-btn {
  font-family: inherit;
  font-size: .82rem;
  font-weight: 700;
  padding: .62rem 1.4rem;
  border-radius: var(--r2);
  cursor: pointer;
  transition: all .15s;
}
.ra-btn.ra-primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  border: none;
  color: #fff;
  box-shadow: 0 4px 16px rgba(59,130,246,.3);
}
.ra-btn.ra-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(59,130,246,.4) }
.ra-btn.ra-secondary {
  background: transparent;
  border: 1.5px solid var(--border2);
  color: var(--muted2);
}
.ra-btn.ra-secondary:hover { color: var(--white); border-color: rgba(255,255,255,.2) }
.mtag {
  font-size: .62rem;
  font-weight: 700;
  padding: .1rem .48rem;
  border-radius: 4px;
  background: rgba(255,255,255,.06);
  color: var(--muted2);
  border: 1px solid var(--border);
}
.mtag.mtag-green { background: rgba(16,185,129,.12); color: #34d399; border-color: rgba(16,185,129,.22) }
.mtag.mtag-amber { background: rgba(245,158,11,.12); color: #fbbf24; border-color: rgba(245,158,11,.22) }

/* ═══════════════════════════════════════════════════════════
   METHODIK-SEITE
   ═══════════════════════════════════════════════════════════ */
.info-bar {
  background: rgba(59,130,246,.05);
  border: 1px solid rgba(59,130,246,.15);
  border-radius: var(--r2);
  padding: 16px 20px;
  margin-bottom: 28px;
  font-size: .8rem;
  color: var(--muted2);
  line-height: 1.65;
}
.formula-box {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--r2);
  padding: 16px 20px;
  font-family: 'Courier New', monospace;
  font-size: .78rem;
  color: var(--cyan);
  margin-bottom: 24px;
  overflow-x: auto;
}
.comment { color: var(--muted); font-style: italic }
.components { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px }
.comp {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--r2);
  padding: 18px 20px;
  transition: border-color .2s;
}
.comp:hover { border-color: var(--border2) }
.comp-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.comp-pct {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -.04em;
  min-width: 48px;
}
.comp-name {
  font-size: .88rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.01em;
}
.comp-desc {
  font-size: .76rem;
  color: var(--muted2);
  line-height: 1.65;
  margin-bottom: 10px;
}
.comp-items { display: flex; flex-direction: column; gap: 4px }
.ci {
  font-size: .74rem;
  color: var(--muted2);
  padding: 3px 0;
  border-bottom: 1px solid var(--border);
}
.ci:last-child { border: none }
.cats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 8px;
  margin-bottom: 28px;
}
.cats-grid .cat-card {
  padding: 14px 10px 12px;
  text-align: center;
  text-decoration: none;
}
.cats-grid .cat-card .icon { font-size: 1.4rem; margin-bottom: 5px }
.cats-grid .cat-card .label {
  font-size: .78rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 3px;
}
.cats-grid .cat-card .count {
  font-size: .62rem;
  color: var(--muted);
  line-height: 1.3;
}
.prose {
  font-size: .82rem;
  color: var(--muted2);
  line-height: 1.72;
  margin-bottom: 14px;
}
.prose strong { color: var(--text) }
.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
.faq-item:last-child { border: none }
.faq-q {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
  margin-bottom: 8px;
  cursor: pointer;
}
.faq-a {
  font-size: .78rem;
  color: var(--muted2);
  line-height: 1.7;
}
.faq-a code {
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border2);
  border-radius: 4px;
  padding: .1rem .4rem;
  font-size: .76rem;
  color: var(--cyan);
  font-family: 'Courier New', monospace;
}

/* ═══════════════════════════════════════════════════════════
   UNIVERSELLE UTILITY + SEITEN-SPEZIFISCHE KLASSEN
   ═══════════════════════════════════════════════════════════ */

/* ── Container / Layout ──────────────────────────────────── */
.container, .content-w, .wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px }
.box { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2); padding: 20px }
.border-t { border-top: 1px solid var(--border) }
.divider { border: none; border-top: 1px solid var(--border); margin: 24px 0 }
.sec { padding: 40px 20px }
.sec-border { border-top: 1px solid var(--border) }
.ctr { text-align: center }
.num { text-align: right }

/* ── Typography util ─────────────────────────────────────── */
.eyebrow, .page-label, .sec-lbl {
  font-size: .62rem; font-weight: 700; color: var(--blue2);
  text-transform: uppercase; letter-spacing: .13em; margin-bottom: 8px;
}
.lead, .sub, .subtitle, .sec-sub {
  font-size: .9rem; color: var(--muted2); line-height: 1.7; margin-bottom: 16px;
}
.meta { font-size: .68rem; color: var(--muted); display: flex; gap: 12px; flex-wrap: wrap }
.lbl { font-size: .62rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em }
.val { font-size: .88rem; font-weight: 700; color: var(--white) }
.last-updated { font-size: .68rem; color: var(--muted); margin-top: 6px }
.code, .code-block {
  background: var(--bg3); border: 1px solid var(--border2); border-radius: var(--r);
  padding: 12px 16px; font-family: 'Courier New', monospace; font-size: .78rem;
  color: var(--cyan); overflow-x: auto; margin: 12px 0;
}
.section-head { margin-bottom: 28px }

/* ── Cards / Grids ───────────────────────────────────────── */
.card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 18px 20px; transition: border-color .2s, transform .2s;
}
.card:hover { border-color: var(--border2); transform: translateY(-2px) }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 12px }
.card-icon { font-size: 1.5rem; margin-bottom: 10px }
.card-title { font-size: .88rem; font-weight: 800; color: var(--white); margin-bottom: 6px; letter-spacing: -.01em }
.card-meta { font-size: .68rem; color: var(--muted); margin-top: 8px }
.card-badge {
  font-size: .6rem; font-weight: 800; padding: .1rem .45rem; border-radius: 4px;
  background: rgba(59,130,246,.12); color: var(--blue2); border: 1px solid rgba(59,130,246,.2);
}

/* ── Tool cards ──────────────────────────────────────────── */
.tool-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 14px }
.tool-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 18px 20px; display: flex; flex-direction: column; gap: 8px;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.tool-card:hover { border-color: var(--border3); transform: translateY(-3px); box-shadow: var(--shadow-md) }
.tool-header { display: flex; align-items: center; gap: 10px; margin-bottom: 4px }
.tool-rank { font-size: .65rem; font-weight: 900; color: var(--muted); min-width: 20px }
.tool-name { font-size: .9rem; font-weight: 800; color: var(--white); letter-spacing: -.01em }
.tool-title { font-size: .88rem; font-weight: 800; color: var(--white); letter-spacing: -.01em }
.tool-cat { font-size: .62rem; font-weight: 700; color: var(--blue2) }
.tool-desc { font-size: .74rem; color: var(--muted2); line-height: 1.65; flex: 1 }
.tool-price { font-size: .72rem; font-weight: 700; color: var(--green) }
.tool-pros { font-size: .72rem; color: var(--muted2); line-height: 1.6 }
.tool-specs { font-size: .72rem; color: var(--muted2); line-height: 1.6 }
.tool-badge {
  font-size: .6rem; font-weight: 800; padding: .08rem .42rem; border-radius: 4px;
  background: rgba(59,130,246,.12); color: var(--blue2); border: 1px solid rgba(59,130,246,.2);
}
.tool-rec { font-size: .72rem; font-style: italic; color: var(--muted2) }
.tool-use { font-size: .72rem; color: var(--cyan) }

/* ── Callout boxes ───────────────────────────────────────── */
.highlight-box, .honest-box, .tip-box, .impact-box, .def-box, .roi-box, .limit-box, .cta-box, .red-box, .warn-box, .warning-box, .transparency-box {
  border-radius: var(--r2); padding: 14px 18px; margin: 16px 0;
  font-size: .82rem; line-height: 1.65;
}
.highlight-box { background: rgba(59,130,246,.06); border: 1px solid rgba(59,130,246,.18); color: var(--muted2) }
.honest-box, .tip-box { background: rgba(16,185,129,.06); border: 1px solid rgba(16,185,129,.18); color: var(--muted2) }
.impact-box { background: rgba(139,92,246,.06); border: 1px solid rgba(139,92,246,.18); color: var(--muted2) }
.def-box { background: var(--bg2); border: 1px solid var(--border2); color: var(--text) }
.roi-box { background: rgba(16,185,129,.07); border: 1px solid rgba(16,185,129,.2); color: var(--muted2) }
.limit-box { background: rgba(245,158,11,.06); border: 1px solid rgba(245,158,11,.18); color: var(--muted2) }
.cta-box {
  background: linear-gradient(135deg, rgba(37,99,235,.1), rgba(139,92,246,.07));
  border: 1.5px solid rgba(59,130,246,.2); color: var(--text); text-align: center;
}
.red-box, .warn-box, .warning-box { background: rgba(239,68,68,.06); border: 1px solid rgba(239,68,68,.18); color: var(--muted2) }
.transparency-box { background: rgba(6,182,212,.06); border: 1px solid rgba(6,182,212,.18); color: var(--muted2) }
.tip-label, .def-label, .roi-label, .limit-label, .impact-title, .warn-icon {
  font-weight: 800; color: var(--white); margin-bottom: 6px; display: block;
}

/* ── Tags ────────────────────────────────────────────────── */
.tags { display: flex; gap: 5px; flex-wrap: wrap; margin: 6px 0 }
.type-tag, .rel-tag, .winner-tag, .tool-use, .free-badge, .pro-tag, .step-tag {
  font-size: .62rem; font-weight: 700; padding: .1rem .48rem; border-radius: 4px;
}
.type-tag { background: rgba(59,130,246,.12); color: var(--blue2); border: 1px solid rgba(59,130,246,.2) }
.rel-tag { background: rgba(255,255,255,.06); color: var(--muted2); border: 1px solid var(--border) }
.winner-tag { background: rgba(245,158,11,.15); color: #fbbf24; border: 1px solid rgba(245,158,11,.25) }
.free-badge { background: rgba(16,185,129,.12); color: #34d399; border: 1px solid rgba(16,185,129,.22) }
.pro-tag { background: rgba(139,92,246,.12); color: #a78bfa; border: 1px solid rgba(139,92,246,.22) }
.step-tag { background: rgba(59,130,246,.1); color: var(--blue2); border: 1px solid rgba(59,130,246,.2) }
.coming { opacity: .5 }
.good { color: #34d399; font-weight: 700 }
.highlight { color: var(--blue2); font-weight: 700 }
.check { color: #34d399; font-weight: 700 }
.warn { color: #fbbf24; font-weight: 700 }

/* ── Steps ───────────────────────────────────────────────── */
.flow { display: flex; flex-direction: column; gap: 12px; margin: 20px 0 }
.flow-step {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2); padding: 16px 18px;
}
.step-num {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(59,130,246,.15); border: 1px solid rgba(59,130,246,.3);
  color: var(--blue2); font-size: .78rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.step-text { font-size: .8rem; color: var(--muted2); line-height: 1.65; flex: 1 }

/* ── Next Steps ──────────────────────────────────────────── */
.next-steps {
  background: linear-gradient(135deg, rgba(37,99,235,.08), rgba(6,182,212,.06));
  border: 1px solid rgba(59,130,246,.2); border-radius: var(--r2);
  padding: 20px 24px; margin-top: 24px;
}

/* ── VS / Comparison ─────────────────────────────────────── */
.vs-row { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border) }
.vs-row:last-child { border: none }
.vs-name { font-size: .82rem; font-weight: 700; color: var(--white); flex: 1 }
.vs-sep { color: var(--muted); font-size: .72rem; flex-shrink: 0 }
.decision-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px }
.decision-item {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2); padding: 16px;
  transition: border-color .2s;
}
.decision-item:hover { border-color: var(--border3) }
.model-table { width: 100%; border-collapse: collapse; font-size: .8rem }
.model-name { font-weight: 700; color: var(--white) }

/* ── Prompt Engineering ──────────────────────────────────── */
.technique {
  background: var(--bg2); border: 1px solid var(--border); border-left: 3px solid var(--blue);
  border-radius: 0 var(--r2) var(--r2) 0; padding: 16px 18px; margin: 12px 0;
}
.example-box { background: var(--bg3); border: 1px solid var(--border2); border-radius: var(--r); padding: 12px 16px; margin: 10px 0 }
.example-title { font-size: .72rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px }
.prompt-good, .prompt-bad { font-family: 'Courier New', monospace; font-size: .78rem; padding: 10px 14px; border-radius: var(--r); margin: 6px 0 }
.prompt-good { background: rgba(16,185,129,.08); border: 1px solid rgba(16,185,129,.2); color: #34d399 }
.prompt-bad { background: rgba(239,68,68,.08); border: 1px solid rgba(239,68,68,.2); color: #f87171 }
/* .toc defined in legal/datenschutz section below */

/* ── Pricing (ki-preise) ─────────────────────────────────── */
.pakete { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px }
.paket {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 20px; display: flex; flex-direction: column; gap: 10px; transition: border-color .2s, transform .2s;
}
.paket:hover { border-color: var(--border3); transform: translateY(-3px) }
.paket-badge {
  font-size: .62rem; font-weight: 800; padding: .1rem .5rem; border-radius: 4px; display: inline-block;
  background: rgba(59,130,246,.12); color: var(--blue2); border: 1px solid rgba(59,130,246,.2);
}
.paket-price { font-size: 1.4rem; font-weight: 900; color: var(--white); letter-spacing: -.04em }
.paket-desc { font-size: .74rem; color: var(--muted2); line-height: 1.6; flex: 1 }
.btn-paket {
  background: rgba(59,130,246,.12); border: 1px solid rgba(59,130,246,.25); color: var(--blue2);
  font-size: .8rem; font-weight: 700; font-family: inherit; padding: .5rem 1rem;
  border-radius: var(--r); cursor: pointer; transition: all .14s; text-align: center;
}
.btn-paket:hover { background: rgba(59,130,246,.2) }
.balance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px }
@media(max-width:520px) { .balance-grid { grid-template-columns: 1fr } }
.balance-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2); padding: 16px;
}
.stat-row { display: flex; justify-content: space-between; padding: 5px 0; border-bottom: 1px solid var(--border); font-size: .78rem }
.stat-row:last-child { border: none }
.stat-n { font-weight: 700; color: var(--white) }

/* ── Free tools ──────────────────────────────────────────── */
.free-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2);
  overflow: hidden; transition: border-color .2s, transform .2s;
}
.free-card:hover { border-color: var(--border3); transform: translateY(-3px) }
.free-card-header { padding: 16px 18px 10px; border-bottom: 1px solid var(--border) }
.limit-box { padding: 10px 14px; margin: 0 }

/* ── Score preview (modell) ──────────────────────────────── */
.score-preview { display: flex; align-items: center; gap: 10px; margin: 12px 0 }
.score-chip {
  font-size: .88rem; font-weight: 900; padding: .22rem .75rem;
  border-radius: var(--r); border: 1px solid var(--border2);
}
.spec { font-size: .74rem; color: var(--muted2); padding: 4px 0; border-bottom: 1px solid var(--border) }

/* ── Kategorie page ──────────────────────────────────────── */
.cat-hdr { background: var(--bg1); border-bottom: 1px solid var(--border); padding: 28px 20px }
.cat-hdr-inner { max-width: var(--max); margin: 0 auto }
.cat-big-icon { font-size: 2.4rem; margin-bottom: 10px }
.cat-hdr-title { font-size: clamp(1.3rem, 3vw, 1.8rem); font-weight: 900; color: var(--white); letter-spacing: -.04em; margin-bottom: 6px }
.cat-hdr-sub { font-size: .82rem; color: var(--muted2); line-height: 1.65 }
.cat-switcher { display: flex; gap: 5px; flex-wrap: wrap; margin-top: 14px }

/* ── Use case / risks / opportunities ────────────────────── */
.opportunities, .risks { display: flex; flex-direction: column; gap: 8px }
.use-case-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2); padding: 16px 18px;
  transition: border-color .2s; display: flex; gap: 12px; align-items: flex-start;
}
.use-case-card:hover { border-color: var(--border3) }
.uc-example { font-size: .74rem; color: var(--muted2); line-height: 1.65; margin-top: 6px }

/* ── Workflow cards ──────────────────────────────────────── */
.workflow-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2); padding: 18px 20px;
  margin-bottom: 12px; transition: border-color .2s;
}
.workflow-card:hover { border-color: var(--border2) }
.workflow-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px }
.workflow-num {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(59,130,246,.15);
  border: 1px solid rgba(59,130,246,.3); color: var(--blue2);
  display: flex; align-items: center; justify-content: center; font-size: .8rem; font-weight: 900; flex-shrink: 0;
}
.workflow-title { font-size: .9rem; font-weight: 800; color: var(--white); letter-spacing: -.01em }
.workflow-meta { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px }
.workflow-steps { font-size: .74rem; color: var(--muted2); line-height: 1.7 }
.wf-meta-item { font-size: .65rem; color: var(--muted2) }

/* ── Types grid ──────────────────────────────────────────── */
.types-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px }
.type-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2); padding: 16px;
  transition: border-color .2s, transform .2s;
}
.type-card:hover { border-color: var(--border3); transform: translateY(-2px) }
.type-icon { font-size: 1.5rem; margin-bottom: 8px }

/* ── Value proposition (ueber-uns) ──────────────────────── */
.values { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px }
.val-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2); padding: 18px;
}
.val-icon { font-size: 1.5rem; margin-bottom: 8px }
.val-title { font-size: .88rem; font-weight: 800; color: var(--white); margin-bottom: 6px }
.val-text { font-size: .74rem; color: var(--muted2); line-height: 1.65 }
.ueber-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px }
@media(max-width:680px) { .ueber-grid { grid-template-columns: 1fr } }
.ueber-content { font-size: .84rem; color: var(--muted2); line-height: 1.75 }

/* ── Profile (ueber-uns) ─────────────────────────────────── */
.profile { display: flex; align-items: flex-start; gap: 18px; margin-bottom: 24px }
.profile-img {
  width: 64px; height: 64px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--border2); flex-shrink: 0;
}
.avatar {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(59,130,246,.15);
  border: 2px solid var(--border3); display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem; flex-shrink: 0;
}
.profile-name { font-size: .92rem; font-weight: 800; color: var(--white); margin-bottom: 2px }
.profile-title { font-size: .72rem; color: var(--blue2); margin-bottom: 6px }
.profile-bio { font-size: .78rem; color: var(--muted2); line-height: 1.65 }

/* ── Beratung / Contact ──────────────────────────────────── */
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px }
@media(max-width:640px) { .kontakt-grid { grid-template-columns: 1fr } }
.contact-box {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2); padding: 22px;
}
.address-block { font-size: .78rem; color: var(--muted2); line-height: 1.9 }
.kinfo { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px }
.kinfo-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px }
.form-group { margin-bottom: 14px }
.form-group label { display: block; font-size: .72rem; font-weight: 600; color: var(--muted2); margin-bottom: 5px }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: rgba(255,255,255,.04); border: 1px solid var(--border2);
  color: var(--white); font-size: .82rem; font-family: inherit;
  padding: .5rem .85rem; border-radius: var(--r); outline: none; transition: border-color .14s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--border4) }
.form-group textarea { min-height: 100px; resize: vertical }
.btn-submit {
  background: linear-gradient(135deg, #2563eb, #3b82f6); border: none; color: #fff;
  font-size: .85rem; font-weight: 700; font-family: inherit; padding: .68rem 1.8rem;
  border-radius: var(--r2); cursor: pointer; transition: all .15s;
  box-shadow: 0 4px 16px rgba(59,130,246,.3);
}
.btn-submit:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(59,130,246,.4) }

/* ── Related articles ────────────────────────────────────── */
.rel-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 14px 16px; text-decoration: none; display: block; transition: border-color .15s, transform .15s;
}
.rel-card:hover { border-color: rgba(59,130,246,.4); transform: translateY(-2px) }
.rel-title { font-size: .85rem; font-weight: 700; color: var(--white); line-height: 1.35; margin-bottom: 5px }

/* ── Misc ────────────────────────────────────────────────── */
.not-found { text-align: center; padding: 80px 20px }
.top3 { display: flex; flex-direction: column; gap: 10px }
.nav-btns { display: flex; gap: 8px; flex-wrap: wrap }
.btn-ghost {
  background: transparent; border: 1px solid var(--border2); color: var(--muted2);
  font-size: .8rem; font-weight: 600; font-family: inherit; padding: .45rem 1rem;
  border-radius: var(--r); cursor: pointer; transition: all .14s;
}
.btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,.2) }
.glossary { display: flex; flex-direction: column; gap: 0 }
.g-row { display: flex; gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--border); align-items: flex-start }
.g-row:last-child { border: none }
.g-term { font-size: .82rem; font-weight: 700; color: var(--white); min-width: 160px; flex-shrink: 0 }
.g-def { font-size: .78rem; color: var(--muted2); line-height: 1.65 }
.case-study {
  background: var(--bg2); border: 1px solid var(--border); border-left: 3px solid var(--cyan);
  border-radius: 0 var(--r2) var(--r2) 0; padding: 16px 18px; margin: 16px 0;
}

/* ═══════════════════════════════════════════════════════════════
   UNIVERSAL MISSING CLASSES — Full audit patch (May 2026)
   ═══════════════════════════════════════════════════════════════ */

/* ── Generic utilities ──────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg, #2563eb, #3b82f6); color: #fff;
  border: none; font-size: .85rem; font-weight: 700; font-family: inherit;
  padding: .6rem 1.4rem; border-radius: var(--r2); cursor: pointer;
  text-decoration: none; transition: all .15s;
  box-shadow: 0 4px 16px rgba(59,130,246,.25);
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(59,130,246,.4); color: #fff }
.btn-o {
  display: inline-flex; align-items: center; gap: 6px;
  background: transparent; color: var(--blue2);
  border: 1px solid rgba(59,130,246,.35); font-size: .85rem; font-weight: 700; font-family: inherit;
  padding: .6rem 1.4rem; border-radius: var(--r2); cursor: pointer;
  text-decoration: none; transition: all .15s;
}
.btn-o:hover { background: rgba(59,130,246,.08); border-color: rgba(59,130,246,.6); color: var(--blue2) }
.btn-p {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(139,92,246,.12); color: #a78bfa;
  border: 1px solid rgba(139,92,246,.3); font-size: .85rem; font-weight: 700; font-family: inherit;
  padding: .6rem 1.4rem; border-radius: var(--r2); cursor: pointer;
  text-decoration: none; transition: all .15s;
}
.btn-p:hover { background: rgba(139,92,246,.2); border-color: rgba(139,92,246,.5); color: #a78bfa }

/* ── Color utility classes ──────────────────────────────────── */
.green { color: #34d399 !important }
.red   { color: #f87171 !important }

/* ── .badge base (used with badge-hot / badge-new etc) ──────── */
.badge {
  display: inline-block; font-size: .59rem; font-weight: 800; padding: .09rem .46rem;
  border-radius: 5px; text-transform: uppercase; letter-spacing: .06em; vertical-align: middle;
}

/* ── .hb base (used with hb-blue / hb-green etc) ───────────── */
.hb {
  display: inline-flex; align-items: center;
  border-radius: 6px; padding: .15rem .55rem; font-size: .68rem; font-weight: 700;
}

/* ── .tag generic pill ──────────────────────────────────────── */
.tag {
  display: inline-block; background: rgba(59,130,246,.1); color: var(--blue2);
  border: 1px solid rgba(59,130,246,.2); font-size: .72rem; font-weight: 600;
  padding: .18rem .6rem; border-radius: 20px; white-space: nowrap;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin: 8px 0 }

/* ── .section wrapper ───────────────────────────────────────── */
.section { margin: 24px 0 }

/* ── .stat + .stat-n / .stat-l (hero stats inline) ─────────── */
.stat {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  padding: 10px 16px;
}
.stat-n { font-size: 1.35rem; font-weight: 900; color: var(--white); line-height: 1 }
.stat-l { font-size: .68rem; font-weight: 600; color: var(--muted2); text-align: center }
.stat-l { font-size: .68rem; font-weight: 600; color: var(--muted2); text-align: center }
.hero-stats { display: flex; flex-wrap: wrap; gap: 4px; margin-top: 16px; border-top: 1px solid var(--border); padding-top: 14px }

/* ── .step (numbered step) ──────────────────────────────────── */
.step {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.step:last-child { border: none }

/* ── .related (section container) ──────────────────────────── */
.related { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border) }

/* ── .pros strength/weakness list ──────────────────────────── */
.pros { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px }
.pros li { padding: 6px 0; padding-left: 22px; position: relative; font-size: .83rem; color: var(--text); line-height: 1.5 }
.pros.green li::before { content: "✓"; position: absolute; left: 0; color: #34d399; font-weight: 800 }
.pros.red   li::before { content: "✗"; position: absolute; left: 0; color: #f87171; font-weight: 800 }

/* ── FAQ section (faq-section / faq-question / faq-answer) ──── */
.faq { display: flex; flex-direction: column; gap: 0 }
.faq-section { display: flex; flex-direction: column; gap: 0; margin: 20px 0 }
.faq-item { border-bottom: 1px solid var(--border) }
.faq-item:last-child { border: none }
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; font-size: .9rem; font-weight: 700; color: var(--white);
  cursor: pointer; gap: 12px; line-height: 1.4;
}
.faq-icon { font-size: .85rem; color: var(--muted2); flex-shrink: 0; transition: transform .2s }
.faq-answer {
  padding: 0 0 14px; font-size: .83rem; color: var(--text); line-height: 1.65;
  display: block;
}

/* ── Impressum / legal page ─────────────────────────────────── */
/* main element: base only — no max-width (handled per page via .main class or .legal-main) */
main { display: block }

/* legal pages (impressum, datenschutz inner main) */
.legal-main, main.legal {
  max-width: 780px; margin: 0 auto; padding: 20px 20px 72px;
}
.legal-main section, main.legal section {
  margin: 0 0 32px; padding: 0; display: block;
}
.legal-main h1, main.legal h1 { font-size: 1.7rem; font-weight: 900; color: var(--white); margin: 12px 0 6px; letter-spacing: -.03em }
.legal-main h2, main.legal h2 { font-size: 1rem; font-weight: 800; color: var(--white); margin: 0 0 10px; padding-bottom: 8px; border-bottom: 1px solid var(--border) }
.legal-main h3, main.legal h3 { font-size: .9rem; font-weight: 700; color: var(--muted2); margin: 14px 0 6px }
.legal-main p,  main.legal p  { margin: 0 0 12px; color: var(--text); font-size: .88rem; line-height: 1.7 }
.legal-main ul, main.legal ul { padding-left: 20px; margin: 0 0 12px }
.legal-main ul li, main.legal ul li { color: var(--text); font-size: .88rem; line-height: 1.7; margin-bottom: 4px }
.address-block {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 16px 20px; font-size: .85rem; color: var(--muted2); line-height: 2; margin: 10px 0 16px;
  font-style: normal;
}

/* ── Datenschutz: sidebar layout (only for datenschutz.html) ── */
/* NOTE: .wrap is a general max-width container — sidebar uses .legal-sidebar */
.legal-sidebar {
  max-width: var(--max); margin: 0 auto; padding: 0 20px;
  display: flex; gap: 40px; align-items: flex-start;
}
.toc {
  position: sticky; top: 88px; width: 220px; flex-shrink: 0;
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 18px 16px; margin-top: 36px;
}
.toc h4 { font-size: .78rem; font-weight: 800; color: var(--muted2); text-transform: uppercase; letter-spacing: .07em; margin: 0 0 10px }
.toc ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px }
.toc ul li a { font-size: .78rem; color: var(--muted2); text-decoration: none; transition: color .14s; display: block; padding: 2px 0 }
.toc ul li a:hover { color: var(--blue2) }
.legal-sidebar main { max-width: none !important; flex: 1; padding: 20px 0 72px }
@media(max-width:768px) {
  .legal-sidebar { flex-direction: column; gap: 20px }
  .toc { position: static; width: 100%; margin-top: 0 }
}
.box {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 16px 20px; margin: 12px 0;
}
.box p { margin-bottom: 8px; font-size: .85rem }
.box p:last-child { margin-bottom: 0 }

/* ── modell.html — hero card ────────────────────────────────── */
.hero-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 24px; margin-bottom: 20px;
}
.hero-top { display: flex; gap: 18px; align-items: flex-start; flex-wrap: wrap }
.hero-icon {
  width: 58px; height: 58px; border-radius: 14px; display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem; flex-shrink: 0;
}
.hero-info { flex: 1; min-width: 0 }
.hero-name { font-size: 1.45rem; font-weight: 900; color: var(--white); margin: 0 0 4px; letter-spacing: -.03em }
.hero-prov { font-size: .8rem; color: var(--muted2); margin-bottom: 8px }
.hero-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 6px }
.hero-desc { font-size: .88rem; color: var(--text); line-height: 1.65; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border) }
.hero-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px }
.hl {
  display: inline-flex; align-items: center; gap: 5px; font-size: .8rem; font-weight: 700;
  color: var(--blue2); text-decoration: none; padding: .4rem .9rem;
  background: rgba(59,130,246,.08); border: 1px solid rgba(59,130,246,.2);
  border-radius: var(--r); transition: all .14s;
}
.hl:hover { background: rgba(59,130,246,.15); border-color: rgba(59,130,246,.4) }
.hl-cta {
  background: linear-gradient(135deg,#2563eb,#3b82f6); color: #fff; border-color: transparent;
  box-shadow: 0 4px 12px rgba(59,130,246,.3);
}
.hl-cta:hover { background: linear-gradient(135deg,#1d4ed8,#2563eb); color: #fff }

/* ── Score box in hero ──────────────────────────────────────── */
.score-box {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 14px 18px; text-align: center; flex-shrink: 0; min-width: 88px;
}
.sb-score { font-size: 1.8rem; font-weight: 900; line-height: 1 }
.sb-rank  { font-size: .72rem; font-weight: 700; color: var(--muted2); margin-top: 4px }

/* ── Score / benchmark bar rows ─────────────────────────────── */
.bar-row { display: flex; align-items: center; gap: 10px; padding: 6px 0 }
.br-lbl  { font-size: .78rem; color: var(--muted2); min-width: 120px; flex-shrink: 0 }
.br-bar  { flex: 1; height: 8px; background: rgba(255,255,255,.06); border-radius: 4px; overflow: hidden }
.br-fill { height: 100%; border-radius: 4px; transition: width .4s ease }
.br-val  { font-size: .78rem; font-weight: 700; color: var(--white); min-width: 32px; text-align: right }
.br-src  { font-size: .65rem; color: var(--muted); min-width: 70px; text-align: right }

/* ── kategorie.html bar: bar-wrap/bar-bg/bar-fg/td-bar ──────── */
.bar-wrap { width: 70px }
.bar-bg   { height: 6px; background: rgba(255,255,255,.07); border-radius: 3px; overflow: hidden }
.bar-fg   { height: 100%; border-radius: 3px; transition: width .4s ease }
.td-bar   { min-width: 80px }

/* ── Grid layouts ───────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px }
@media(max-width:768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr }
}
@media(max-width:960px) {
  .grid-3 { grid-template-columns: repeat(2,1fr) }
}

/* ── Key-value row2 ─────────────────────────────────────────── */
.row2 { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; border-bottom: 1px solid var(--border) }
.row2:last-child { border: none }
.r2k { font-size: .8rem; color: var(--muted2); flex: 1; min-width: 120px }
.r2v { font-size: .8rem; font-weight: 700; color: var(--white); flex: 1; text-align: right }

/* ── fw-note (footnote cell in matrix) ──────────────────────── */
.fw-note { font-size: .7rem; color: var(--muted); line-height: 1.4; padding-left: 8px }

/* ── score history strip ────────────────────────────────────── */
.hist-item { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; border-bottom: 1px solid var(--border) }
.hist-item:last-child { border: none }
.hi-k { font-size: .75rem; color: var(--muted2) }
.hi-v { font-size: .8rem; font-weight: 800; color: var(--white) }

/* ── DACH section ───────────────────────────────────────────── */
.dach-flags { font-size: 1.5rem; margin-bottom: 12px; letter-spacing: 4px }
.lang-grid  { display: flex; flex-wrap: wrap; gap: 10px }
.lang-item  { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r); padding: 8px 12px; flex: 1; min-width: 140px }
.lang-lbl   { font-size: .78rem; color: var(--muted2) }
.lang-stars { font-size: .9rem; color: #fbbf24; margin-bottom: 4px }

/* ── Learning curve ─────────────────────────────────────────── */
.lc-row   { display: flex; align-items: center; gap: 10px; padding: 6px 0 }
.lc-lbl   { font-size: .78rem; color: var(--muted2); min-width: 140px; flex-shrink: 0 }
.lc-bar   { flex: 1; height: 8px; background: rgba(255,255,255,.06); border-radius: 4px; overflow: hidden }
.lc-fill  { height: 100%; background: var(--blue); border-radius: 4px; transition: width .4s ease }
.lc-level { font-size: .75rem; font-weight: 700; min-width: 60px; text-align: right }

/* ── Variants grid ──────────────────────────────────────────── */
.variants-grid  { display: grid; grid-template-columns: repeat(auto-fill,minmax(180px,1fr)); gap: 12px; margin-top: 10px }
.variant-card   { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r2); padding: 14px }
.variant-name   { font-size: .88rem; font-weight: 800; color: var(--white); margin-bottom: 4px }
.variant-badge  { font-size: .65rem; font-weight: 700; padding: .12rem .45rem; border-radius: 4px; background: rgba(59,130,246,.1); color: var(--blue2) }
.variant-desc   { font-size: .75rem; color: var(--muted2); margin-top: 6px; line-height: 1.5 }

/* ── DACH scenarios ─────────────────────────────────────────── */
.scenario-grid  { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 14px; margin-top: 10px }
.scenario-card  { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r2); padding: 16px }
.scenario-icon  { font-size: 1.5rem; margin-bottom: 8px }
.scenario-title { font-size: .88rem; font-weight: 800; color: var(--white); margin-bottom: 6px }
.scenario-desc  { font-size: .78rem; color: var(--text); line-height: 1.55 }

/* ── Prompt examples ────────────────────────────────────────── */
.prompt-card  {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 14px 16px; margin-bottom: 10px; position: relative;
}
.prompt-label { font-size: .72rem; font-weight: 700; color: var(--blue2); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px }
.prompt-text  { font-size: .82rem; color: var(--white); line-height: 1.55; font-family: 'Courier New', monospace; white-space: pre-wrap }
.prompt-copy  {
  position: absolute; top: 10px; right: 10px; font-size: .68rem; font-weight: 700;
  color: var(--muted2); background: var(--bg2); border: 1px solid var(--border);
  padding: .2rem .55rem; border-radius: 4px; cursor: pointer; transition: all .14s;
}
.prompt-copy:hover { color: var(--white); border-color: var(--border3) }

/* ── Version timeline ───────────────────────────────────────── */
.timeline { position: relative; padding-left: 20px }
.timeline::before { content: ''; position: absolute; left: 5px; top: 0; bottom: 0; width: 2px; background: var(--border) }
.tl-item  { position: relative; display: flex; gap: 14px; padding: 8px 0 14px }
.tl-dot   { position: absolute; left: -19px; top: 12px; width: 10px; height: 10px; border-radius: 50%; background: var(--blue); border: 2px solid var(--bg) }
.tl-date  { font-size: .72rem; color: var(--muted2); white-space: nowrap; padding-top: 2px; min-width: 60px }
.tl-label { font-size: .83rem; font-weight: 700; color: var(--white); margin-bottom: 3px }
.tl-desc  { font-size: .77rem; color: var(--text); line-height: 1.5 }

/* ── Community grid ─────────────────────────────────────────── */
.comm-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin-top: 10px }
.comm-item { background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r2); padding: 14px; text-align: center }
.comm-val  { font-size: 1.2rem; font-weight: 900; color: var(--white); line-height: 1 }
.comm-lbl  { font-size: .7rem; color: var(--muted2); margin-top: 4px }
@media(max-width:600px) { .comm-grid { grid-template-columns: repeat(2,1fr) } }

/* ── Verdict card ───────────────────────────────────────────── */
.verdict-card {
  background: linear-gradient(135deg,rgba(59,130,246,.06),rgba(139,92,246,.06));
  border: 1px solid rgba(59,130,246,.2); border-radius: var(--r2); padding: 20px;
}
.verdict-stars { font-size: 1.2rem; color: #fbbf24; margin-bottom: 8px }
.verdict-text  { font-size: .85rem; color: var(--text); line-height: 1.65; margin-bottom: 12px }
.verdict-chips { display: flex; flex-wrap: wrap; gap: 6px }
.chip-yes  { background: rgba(16,185,129,.1); color: #34d399; border: 1px solid rgba(16,185,129,.2); font-size: .72rem; font-weight: 700; padding: .18rem .55rem; border-radius: 20px }
.chip-warn { background: rgba(245,158,11,.1); color: #fbbf24; border: 1px solid rgba(245,158,11,.2); font-size: .72rem; font-weight: 700; padding: .18rem .55rem; border-radius: 20px }
.chip-no   { background: rgba(239,68,68,.1);  color: #f87171; border: 1px solid rgba(239,68,68,.2);  font-size: .72rem; font-weight: 700; padding: .18rem .55rem; border-radius: 20px }

/* ── Matrix table ───────────────────────────────────────────── */
.matrix-table { width: 100%; border-collapse: collapse; font-size: .82rem; margin-top: 10px }
.matrix-table th { background: var(--bg3); color: var(--muted2); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; padding: 8px 12px; text-align: left; border-bottom: 1px solid var(--border) }
.matrix-table td { padding: 8px 12px; border-bottom: 1px solid var(--border); color: var(--text); vertical-align: top }
.matrix-table tr:last-child td { border: none }
.matrix-table tr:hover td { background: rgba(255,255,255,.015) }

/* ── Similar models grid ────────────────────────────────────── */
.similar-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(150px,1fr)); gap: 10px; margin-top: 10px }
.sim-card     {
  background: var(--bg3); border: 1px solid var(--border); border-radius: var(--r2);
  padding: 14px; text-align: center; text-decoration: none; transition: all .15s; display: block;
}
.sim-card:hover { border-color: rgba(59,130,246,.4); transform: translateY(-2px) }
.sim-icon  { font-size: 1.4rem; margin-bottom: 6px }
.sim-name  { font-size: .8rem; font-weight: 800; color: var(--white); margin-bottom: 2px }
.sim-prov  { font-size: .7rem; color: var(--muted2) }
.sim-score { font-size: 1rem; font-weight: 900; margin-top: 6px }

/* ── kategorie.html top-3 cards ─────────────────────────────── */
.t3c {
  display: flex; align-items: center; gap: 14px; padding: 14px 18px;
  background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r2);
  text-decoration: none; transition: all .15s; cursor: pointer;
}
.t3c:hover { border-color: rgba(59,130,246,.4); transform: translateY(-2px) }
.t3-rank   { font-size: .7rem; font-weight: 700; color: var(--muted2); min-width: 80px }
.t3-icon   { font-size: 1.4rem; flex-shrink: 0 }
.t3-name   { font-size: .95rem; font-weight: 800; color: var(--white); flex: 1 }
.t3-prov   { font-size: .72rem; color: var(--muted2) }
.t3-score  { font-size: 1.2rem; font-weight: 900; min-width: 48px; text-align: right }
@media(max-width:600px) { .t3c { flex-wrap: wrap } }

/* ── hero-btns (agenten.html) ───────────────────────────────── */
.hero-btns { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px }

/* ── stat-l (inline label variant) ─────────────────────────── */
.stat-l { font-size: .68rem; font-weight: 600; color: var(--muted2) }

/* ── sb-rank / sb-score (used outside .score-box too) ───────── */
.sb-rank  { font-size: .72rem; color: var(--muted2); font-weight: 700 }

/* ── redakt-hinweis red-box alias ──────────────────────────── */
.redakt-hinweis {
  background: rgba(239,68,68,.05); border: 1px solid rgba(239,68,68,.15);
  border-radius: var(--r2); padding: 14px 16px; font-size: .78rem; color: var(--muted2);
  line-height: 1.6; margin-top: 28px;
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE SYSTEM — Tablet & Smartphone (Full Audit May 2026)
   Breakpoints: 960 · 768 · 600 · 480 · 380
   ═══════════════════════════════════════════════════════════════ */

/* ── 960px: Tablet Landscape ──────────────────────────────────── */
@media(max-width:960px) {
  /* Hero font scale */
  .hero-h1 { font-size: clamp(1.6rem, 4vw, 2.4rem) }

  /* Blog grid: 2 columns */
  .blog-grid { grid-template-columns: 1fr 1fr }
  .article.featured { grid-column: span 2 }

  /* Cards grid */
  .cards-grid { grid-template-columns: repeat(2, 1fr) }

  /* Ranking cat-bar: horizontal scroll */
  .cat-bar { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch;
             padding-bottom: 4px; scrollbar-width: none; -ms-overflow-style: none; gap: 3px }
  .cat-bar::-webkit-scrollbar { display: none }

  /* modell.html hero */
  .hero-top { gap: 12px }
  .score-box { min-width: 74px }

  /* Pakete (beratung) */
  .pakete { grid-template-columns: repeat(2, 1fr) }
}

/* ── 768px: Tablet Portrait ───────────────────────────────────── */
@media(max-width:768px) {
  /* General padding */
  .main { padding: 28px 16px 56px }
  .main.legal { padding: 16px 16px 56px }
  .legal-main, main.legal { padding: 16px 16px 56px }

  /* Nav */
  nav { padding: 0 16px }

  /* Hero adjustments */
  .hero { padding: 56px 16px 44px }
  .hero-h1 { font-size: clamp(1.4rem, 5vw, 2rem) }
  .hero-ctas { flex-wrap: wrap }
  .hero-badge { font-size: .68rem }
  .art-hero { padding: 28px 16px }
  .art-lead { font-size: .92rem }

  /* Art hero inner for article pages */
  .art-hero-inner h1, h1.art-h1 { font-size: clamp(1.25rem, 4vw, 1.7rem) }

  /* Blog: 1 column on tablet */
  .blog-grid { grid-template-columns: 1fr }
  .article.featured { grid-column: span 1; flex-direction: column }
  .feat-img { width: 100%; min-height: 120px }

  /* Cards single col */
  .cards-grid { grid-template-columns: 1fr }

  /* Ranking page header */
  .page-hdr-inner { flex-wrap: wrap; gap: 6px; padding: 8px 0 }
  .page-title { font-size: .88rem }

  /* ── Toolbar: 3-Zeilen-Layout auf Mobile ── */
  .toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 12px;
  }
  /* Zeile 1: Suche voll breit */
  .search-wrap { max-width: 100%; width: 100% }
  .search-wrap input { font-size: .85rem; padding: .5rem .9rem }
  /* Zeile 2: Filter-Pills horizontal scrollbar */
  .filter-pills {
    display: flex; flex-wrap: nowrap; gap: 5px;
    overflow-x: auto; -webkit-overflow-scrolling: touch;
    padding-bottom: 2px; scrollbar-width: none; -ms-overflow-style: none;
    width: 100%;
  }
  .filter-pills::-webkit-scrollbar { display: none }
  .pill { flex-shrink: 0; font-size: .72rem; padding: .3rem .7rem }
  /* Zeile 3: Dropdowns nebeneinander */
  .fdd-row { width: 100% }
  .fdd-row .fdd { flex: 1; min-width: 0 }
  .fdd-btn { width: 100%; justify-content: space-between }
  .tb-right { margin-left: 0; width: 100%; justify-content: flex-start; flex-wrap: wrap; gap: 6px }
  /* Live-Status kompakt */
  .update-txt { font-size: .6rem }
  .refresh-btn { width: 26px; height: 26px; font-size: .75rem }

  /* Ranking table: hide bar column on mobile */
  .td-bar, th:last-child:not(:first-child) { display: none }

  /* Finder */
  .finder-hero { padding: 36px 16px 28px }
  .finder-h1 { font-size: clamp(1.3rem, 5vw, 1.8rem) }
  .quiz-wrap { padding: 20px 16px }
  .match-cards { grid-template-columns: 1fr }

  /* Methodik */
  .cats-grid { grid-template-columns: repeat(2, 1fr) }
  .comp-head { flex-direction: column; gap: 6px }

  /* Modell detail page */
  .hero-top { flex-direction: column; align-items: flex-start }
  .score-box { align-self: flex-start }
  .comm-grid { grid-template-columns: repeat(2, 1fr) }

  /* Legal sidebar → stack */
  .legal-sidebar { flex-direction: column; gap: 16px; padding: 0 16px }
  .toc { position: static; width: 100%; margin-top: 16px }

  /* Pakete → 1 col */
  .pakete { grid-template-columns: 1fr }

  /* Profile (ueber-uns) */
  .profile { flex-direction: column }
  .profile-img { width: 80px; height: 80px }

  /* Vergleiche hero stats */
  .hero-stats { gap: 0; border-top: 1px solid var(--border); padding-top: 12px }
  .stat { flex: 1; min-width: 80px }

  /* Footer */
  footer { padding: 20px 16px; text-align: center }
  .footer-links { justify-content: center; gap: 10px }

  /* Wrap pages (handwerk, hr) */
  .wrap { padding: 0 16px }
  
  /* Beratung sec */
  .sec { padding: 28px 16px }

  /* General spacing */
  .section-head { margin-bottom: 18px }
  .page-hdr { padding: 0 16px }
  .main-app { padding: 0 16px 48px }

  /* grid-2, grid-3 already handled above but reinforce */
  .grid-2 { grid-template-columns: 1fr }
  .grid-3 { grid-template-columns: 1fr }
}

/* ── 600px: Large Phone ───────────────────────────────────────── */
@media(max-width:600px) {
  /* Global side padding */
  body { overflow-x: hidden }

  /* Nav */
  nav { padding: 0 14px; height: 56px }
  .logo { font-size: .9rem }

  /* Hero */
  .hero { padding: 44px 14px 36px }
  .hero-h1 { font-size: clamp(1.25rem, 6vw, 1.75rem); letter-spacing: -.04em }
  .hero-desc { font-size: .84rem }
  .hero-search { flex-direction: column; gap: 8px }
  .hero-search input { padding: .75rem 1rem; font-size: .88rem; border-radius: var(--r2) }
  .hero-search-btn { width: 100%; justify-content: center; border-radius: var(--r2) }
  .hero-btns { flex-direction: column; gap: 8px }
  .hero-btns a, .hero-btns button { width: 100%; text-align: center; justify-content: center }

  /* Stats bar */
  .stats-bar-inner { flex-wrap: wrap }
  .stat-item { min-width: 33% }

  /* Art hero */
  .art-hero { padding: 22px 14px }
  .art-hero-inner h1, h1.art-h1 { font-size: clamp(1.1rem, 5.5vw, 1.5rem) }
  .art-lead { font-size: .85rem }
  .art-meta-bar { gap: 8px; font-size: .68rem }

  /* Article content */
  .main { padding: 20px 14px 48px }
  .main h2 { font-size: 1rem }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; gap: 12px }
  .article { flex-direction: column }
  .art-img { width: 100%; height: 160px }
  .art-body { padding: 12px }
  .feat-title { font-size: 1.2rem }

  /* Ranking cat tabs: allow scrolling */
  .cat-bar { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding: 0 0 6px }
  .cat-tab { font-size: .7rem; padding: .3rem .65rem }

  /* Finder quiz */
  .finder-hero { padding: 28px 14px 20px }
  .finder-h1 { font-size: 1.35rem }
  .quiz-wrap { padding: 16px 14px }
  .options { gap: 8px }
  .opt { padding: 12px 14px }
  .btn-next, .btn-back { width: 100%; justify-content: center }

  /* Methodik */
  .formula-box { font-size: .78rem; padding: 14px 16px; overflow-x: auto }
  .comp { flex-direction: column; gap: 6px }
  .comp-pct { font-size: 1.4rem }
  .cats-grid { grid-template-columns: 1fr }
  .faq-question { font-size: .85rem }

  /* Modell page */
  .hero-card { padding: 16px }
  .hero-name { font-size: 1.15rem }
  .grid-2, .grid-3 { grid-template-columns: 1fr }
  .comm-grid { grid-template-columns: repeat(2, 1fr) }
  .matrix-table { font-size: .75rem }
  .matrix-table th, .matrix-table td { padding: 6px 8px }
  .tl-date { min-width: 50px; font-size: .68rem }
  .scenario-grid { grid-template-columns: 1fr }
  .similar-grid { grid-template-columns: repeat(2, 1fr) }

  /* Kategorie top-3 */
  .t3c { padding: 10px 12px; gap: 8px }
  .t3-icon { font-size: 1.1rem }
  .t3-name { font-size: .82rem }

  /* CTA Banner */
  .cta-banner { padding: 22px 16px; gap: 16px; flex-direction: column; align-items: flex-start }
  .cta-banner-btns { flex-direction: row; flex-wrap: wrap }

  /* Cards (vergleiche, beratung) */
  .cards-grid { grid-template-columns: 1fr }
  .tool-grid { grid-template-columns: 1fr }

  /* Legal */
  .legal-main, main.legal { padding: 14px 14px 48px }
  main.legal h1 { font-size: 1.3rem }
  main.legal h2 { font-size: .92rem }
  .address-block { font-size: .8rem; padding: 12px 14px }

  /* Related box */
  .related-grid { grid-template-columns: 1fr }
  .related-card { padding: 12px }

  /* Share bar */
  .share-bar { flex-wrap: wrap; gap: 8px }
  .share-btn { font-size: .78rem; padding: 6px 10px }

  /* Tables horizontal scroll */
  .tbl-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -14px; padding: 0 14px }

  /* Breadcrumb */
  .breadcrumb { font-size: .65rem }

  /* Callout */
  .callout { padding: 12px 14px; font-size: .81rem }

  /* Impressum / legal sections */
  main.legal section { margin-bottom: 20px }
}

/* ── 480px: Medium Phone ──────────────────────────────────────── */
@media(max-width:480px) {
  /* Hero h1 very small */
  .hero-h1 { font-size: clamp(1.15rem, 7vw, 1.5rem) }
  .hero-sub { font-size: .82rem }
  .hero-badge { display: none } /* Hide badges on tiny screens */

  /* Nav */
  nav { height: 52px }
  .logo { font-size: .85rem }

  /* Stats bar: 2-column grid */
  .stats-bar-inner { display: grid; grid-template-columns: repeat(2, 1fr) }
  .stat-item:nth-child(2) { border-right: none }

  /* Category cards: 2 col */
  .cat-grid { grid-template-columns: repeat(2, 1fr) }
  .cat-card { padding: 14px 10px }
  .cat-icon { font-size: 1.5rem }
  .cat-name { font-size: .72rem }

  /* Featured cards */
  .feat-grid { grid-template-columns: 1fr }

  /* Article */
  .art-hero-inner h1, h1.art-h1 { font-size: clamp(1rem, 6vw, 1.35rem) }

  /* Ranking table: only show name + score */
  .td-bar { display: none }
  .td-rank { font-size: .7rem }
  .sys-icon { width: 28px; height: 28px; font-size: .9rem }
  .sys-name { font-size: .75rem }

  /* Finder results */
  .match-card { flex-direction: column; gap: 8px }
  .ra-btn { width: 100%; text-align: center; justify-content: center }

  /* Modell comm grid: 2 col */
  .comm-grid { grid-template-columns: repeat(2, 1fr) }
  .similar-grid { grid-template-columns: 1fr }

  /* Pakete: 1 col */
  .pakete { grid-template-columns: 1fr }

  /* Profile stack */
  .profile { gap: 14px }
  .ueber-content { font-size: .85rem }

  /* Page header */
  .page-title { font-size: .82rem }
  .page-sub { display: none }
  .tracked { font-size: .65rem }
}

/* ── 380px: Small Phone (iPhone SE, etc.) ─────────────────────── */
@media(max-width:380px) {
  /* Even tighter padding */
  nav { padding: 0 10px }
  .hero { padding: 36px 10px 30px }
  .main { padding: 16px 10px 40px }
  .art-hero { padding: 18px 10px }
  .sec { padding: 22px 10px }
  .wrap { padding: 0 10px }
  .legal-main, main.legal { padding: 12px 10px 40px }

  /* Font reductions */
  .hero-h1 { font-size: 1.1rem }
  .art-hero-inner h1, h1.art-h1 { font-size: 1.05rem }
  .stat-val { font-size: .9rem }
  .cat-name { font-size: .65rem }
  .cat-icon { font-size: 1.3rem }
  
  /* Single-col everything */
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 6px }
  .tool-grid, .cards-grid, .pakete { grid-template-columns: 1fr }
  .comm-grid { grid-template-columns: 1fr }

  /* Table: very compact */
  thead th { font-size: .58rem; padding: 6px 6px }
  tbody td { padding: 7px 6px; font-size: .75rem }
  .sys-name a { font-size: .72rem }

  /* Verdict/timeline compact */
  .verdict-chips { gap: 4px }
  .chip-yes, .chip-warn, .chip-no { font-size: .65rem; padding: .1rem .38rem }
  .tl-item { gap: 8px }
  .tl-label { font-size: .78rem }
  .tl-desc { font-size: .72rem }

  /* Footer */
  footer { font-size: .75rem; padding: 16px 10px }
  .footer-links { gap: 8px }
  .footer-links a { font-size: .72rem }
}

/* ── Utility: prevent horizontal overflow everywhere ──────────── */
img, video, table, pre, code { max-width: 100% }
.tbl-wrap { max-width: 100vw }
* { box-sizing: border-box }
