/*!
 * crawlerbase trace - stylesheet v0.5
 * Design-Sync mit crawlerbase.de (Light-Theme, Orange-Akzent, Inter Tight)
 * (c) 2026 Dennis Andres / crawlerbase.de
 */

:root {
  --bg: #fafafa; --bg-soft: #f4f4f6; --bg-2: #ededf0; --bg-warm: #fef7f2;
  --bg-dark: #0f172a; --bg-darker: #0b1220; --surface: #ffffff;
  --text: #0f172a; --text-soft: #334155; --muted: #64748b; --dim: #94a3b8;
  --line: #e2e8f0; --line-soft: #eef0f3; --line-strong: #cbd5e1;
  --accent: #ea580c; --accent-h: #c2410c; --accent-soft: #fef0e6; --accent-faint: #fff7f1;
  --accent-2: #0f766e; --accent-2-soft: #ccfbf1;
  --pass: #16a34a; --warn: #ea580c; --fail: #dc2626;
  --pass-soft: #dcfce7; --warn-soft: #fed7aa; --fail-soft: #fee2e2;
  --r-sm: 6px; --r-md: 10px; --r-lg: 14px; --r-xl: 20px;
  --sh-sm: 0 1px 2px rgba(15,23,42,0.04);
  --sh: 0 2px 8px -2px rgba(15,23,42,0.06), 0 1px 3px rgba(15,23,42,0.04);
  --sh-md: 0 8px 24px -8px rgba(15,23,42,0.10), 0 2px 6px rgba(15,23,42,0.04);
  --sh-lg: 0 24px 48px -12px rgba(15,23,42,0.18), 0 4px 12px rgba(15,23,42,0.06);
  --sans: "Inter Tight", "Inter", system-ui, -apple-system, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--nav-h) + 12px); }
body {
  font-family: var(--sans); font-size: 16px; font-weight: 400;
  color: var(--text); background: var(--bg);
  line-height: 1.55; -webkit-font-smoothing: antialiased;
  font-feature-settings: "tnum", "ss01"; min-height: 100vh; overflow-x: hidden;
}
::selection { background: var(--accent); color: #fff; }
a { color: inherit; text-decoration: none; }
.mono { font-family: var(--mono); font-feature-settings: "calt", "ss01"; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 50; height: var(--nav-h);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  height: 100%; max-width: 1320px; margin: 0 auto; padding: 0 28px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center;
}
.brand-row { display: inline-flex; align-items: baseline; gap: 10px; }
.brand {
  display: inline-flex; align-items: baseline; gap: 0;
  color: var(--text); font-weight: 800; font-size: 22px;
  letter-spacing: -0.025em; transition: transform .2s;
}
.brand:hover { transform: translateY(-1px); }
.brand-c { color: var(--accent); animation: dot-pulse 2.4s ease-in-out infinite; display: inline-block; }
@keyframes dot-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }
.brand-sep { color: var(--dim); font-weight: 300; font-size: 22px; line-height: 1; }
.brand-tool {
  font-weight: 700; font-size: 19px; color: var(--text-soft);
  letter-spacing: -0.02em; transition: color .15s;
}
.brand-tool:hover { color: var(--accent); }
.brand-tool.is-active { color: var(--accent); }

.nav-links { display: flex; gap: 4px; font-size: 14.5px; font-weight: 600; justify-self: center; }
.nav-link {
  padding: 8px 14px; border-radius: 8px; color: var(--text-soft);
  position: relative; transition: color .15s, background .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.nav-link::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .2s;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--accent); background: var(--accent-soft); }

.ext-pill {
  font-family: var(--mono); font-size: 9px; font-weight: 700;
  padding: 2px 6px; background: var(--accent); color: #fff;
  border-radius: 999px; letter-spacing: 0.05em; text-transform: uppercase;
}

.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; background: var(--accent); color: #fff;
  border-radius: 999px; font-size: 13.5px; font-weight: 700;
  box-shadow: var(--sh); transition: transform .2s, box-shadow .2s, background .2s;
}
.nav-cta:hover { background: var(--accent-h); transform: translateY(-1px); box-shadow: var(--sh-md); }
.nav-cta .arrow { font-size: 14px; transition: transform .2s; }
.nav-cta:hover .arrow { transform: translateX(3px); }

@media (max-width: 720px) {
  .nav-inner { grid-template-columns: auto auto; padding: 0 18px; gap: 12px; }
  .nav-links { display: none; }
  .brand { font-size: 19px; }
  .brand-tool { font-size: 16px; }
  .nav-cta { padding: 7px 13px; font-size: 12.5px; }
}

.main { position: relative; }

/* === EYEBROW (universell) === */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--accent);
  background: var(--accent-soft); padding: 7px 16px;
  border-radius: 999px; margin-bottom: 28px;
  border: 1px solid rgba(234,88,12,0.25);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  animation: eye-pulse 2.4s ease-in-out infinite;
}
@keyframes eye-pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 12px;
  font-size: 15px; font-weight: 700; letter-spacing: -0.005em;
  transition: all .2s; cursor: pointer; border: 0;
  font-family: var(--sans);
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: var(--sh); }
.btn-primary:hover { background: var(--accent-h); transform: translateY(-2px); box-shadow: var(--sh-md); }
.btn-primary .arrow { transition: transform .2s; font-size: 16px; }
.btn-primary:hover .arrow { transform: translateX(3px); }
.btn-secondary {
  background: var(--surface); color: var(--text); border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); box-shadow: var(--sh); }
.btn-sm { padding: 9px 16px; font-size: 13px; border-radius: 9px; }

/* === HERO === */
.hero { padding: 120px 28px 80px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -100px; right: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(circle at 30% 30%, rgba(234,88,12,0.18), transparent 60%);
  border-radius: 50%; filter: blur(40px); pointer-events: none;
  animation: float-1 24s ease-in-out infinite;
}
.hero::after {
  content: ""; position: absolute; bottom: -160px; left: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle at 70% 70%, rgba(15,118,110,0.14), transparent 60%);
  border-radius: 50%; filter: blur(50px); pointer-events: none;
  animation: float-2 30s ease-in-out infinite;
}
@keyframes float-1 { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(40px, -30px) rotate(20deg); } }
@keyframes float-2 { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(-30px, -50px) rotate(-15deg); } }

.hero-inner { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; text-align: center; }
h1.hero-h {
  font-weight: 800; font-size: clamp(48px, 8vw, 96px);
  line-height: 0.96; letter-spacing: -0.04em;
  margin: 0 auto 28px; max-width: 18ch; color: var(--text);
}
h1.hero-h .accent {
  background: linear-gradient(135deg, var(--accent), #fb923c);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  position: relative; display: inline-block;
}
h1.hero-h .accent::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
  height: 4px; background: var(--accent); border-radius: 2px;
  opacity: 0.3; transform-origin: left; transform: scaleX(0);
  animation: hero-underline 1s 0.6s cubic-bezier(.65,0,.35,1) forwards;
}
@keyframes hero-underline { to { transform: scaleX(1); } }

.hero-lede {
  color: var(--text-soft); font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 400; max-width: 60ch; margin: 0 auto 36px; line-height: 1.55;
}
.hero-lede strong { color: var(--text); font-weight: 700; }

/* === SEARCH FORM (Hero-Tool-Eingabe) === */
.search-form { max-width: 640px; margin: 0 auto 24px; }
.search-wrap {
  display: flex; align-items: stretch; gap: 0;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 14px; overflow: hidden;
  box-shadow: var(--sh-md);
  transition: border-color .2s, box-shadow .2s;
}
.search-wrap:focus-within { border-color: var(--accent); box-shadow: var(--sh-lg), 0 0 0 4px var(--accent-soft); }
.search-icon {
  display: inline-flex; align-items: center; padding: 0 16px 0 20px;
  color: var(--muted);
}
.search-wrap:focus-within .search-icon { color: var(--accent); }
.search-input {
  flex: 1; min-width: 0; background: transparent; border: 0; outline: 0;
  color: var(--text); font: inherit; font-size: 16px; padding: 18px 18px 18px 0;
  font-family: var(--mono); font-weight: 500;
}
.search-input::placeholder { color: var(--dim); }
.search-submit {
  background: var(--accent); color: #fff; border: 0;
  padding: 0 26px; font: inherit; font-weight: 700; font-size: 15px;
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; transition: background .15s;
}
.search-submit:hover { background: var(--accent-h); }
.search-submit .arrow { transition: transform .15s; }
.search-submit:hover .arrow { transform: translateX(3px); }
.search-hint { color: var(--muted); font-size: 13px; margin-top: 14px; text-align: center; }

/* Demo-Buttons unter dem Search */
.demo-row {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 8px; margin-top: 22px;
  font-size: 13px;
}
.demo-label { color: var(--muted); font-weight: 500; }
.demo-btn {
  font-family: var(--mono); font-size: 12.5px; font-weight: 600;
  padding: 7px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--text-soft); transition: all .15s;
  box-shadow: var(--sh-sm);
}
.demo-btn:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-1px); box-shadow: var(--sh); }

/* Hero quickfacts */
.hero-quick {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 28px;
  margin-top: 36px;
  font-family: var(--mono); font-size: 12.5px; color: var(--muted); font-weight: 500;
}
.hero-quick > div { display: inline-flex; align-items: center; gap: 8px; }
.hero-quick > div::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

.hero-inner > .eyebrow,
.hero-inner > h1.hero-h,
.hero-inner > .hero-lede,
.hero-inner > .search-form,
.hero-inner > .demo-row,
.hero-inner > .hero-quick {
  animation: rise 0.8s cubic-bezier(.2,.8,.2,1) backwards;
}
.hero-inner > h1.hero-h     { animation-delay: 0.1s; }
.hero-inner > .hero-lede    { animation-delay: 0.25s; }
.hero-inner > .search-form  { animation-delay: 0.4s; }
.hero-inner > .demo-row     { animation-delay: 0.55s; }
.hero-inner > .hero-quick   { animation-delay: 0.7s; }
@keyframes rise { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Honeypot - komplett weg */
.hp-wrap {
  position: absolute !important; left: -10000px !important; top: auto !important;
  width: 1px; height: 1px; overflow: hidden; pointer-events: none;
}

/* === SECTION HEAD === */
.section-head { margin-bottom: 56px; max-width: 720px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 {
  font-weight: 800; font-size: clamp(30px, 4.5vw, 48px);
  line-height: 1.05; letter-spacing: -0.03em;
  margin: 8px 0 16px; color: var(--text);
}
.section-head h2 .accent {
  background: linear-gradient(135deg, var(--accent), #fb923c);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.section-head p {
  color: var(--text-soft); font-size: 17.5px;
  max-width: 56ch; line-height: 1.55;
}
.section-head.center p { margin-left: auto; margin-right: auto; }

/* === FEATURES (4-Card Grid) === */
.features { padding: 96px 28px; background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.features-inner { max-width: 1240px; margin: 0 auto; }
.features-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.feature {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 30px 30px 26px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s, border-color .3s, background .3s;
}
.feature::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--accent); background: var(--surface); }
.feature:hover::before { transform: scaleX(1); }
.feature-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 12px;
  transition: background .3s, color .3s, transform .3s;
}
.feature:hover .feature-icon { background: var(--accent); color: #fff; transform: scale(1.05) rotate(-3deg); }
.feature-num {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  color: var(--muted); letter-spacing: 0.12em;
}
.feature h3 { font-weight: 700; font-size: 19px; letter-spacing: -0.015em; color: var(--text); }
.feature p { color: var(--text-soft); font-size: 14.5px; line-height: 1.65; }
.feature .mono { color: var(--text); font-weight: 600; }

/* === HOWTO Steps === */
.howto { padding: 96px 28px; background: var(--bg-soft); }
.howto-inner { max-width: 1100px; margin: 0 auto; }
.howto-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.howto-list li {
  display: grid; grid-template-columns: 56px 1fr; gap: 22px; align-items: start;
  padding: 26px 30px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-sm);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.howto-list li:hover { transform: translateY(-2px); box-shadow: var(--sh-md); border-color: var(--accent); }
.howto-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  background: var(--accent-soft); color: var(--accent);
  border-radius: 12px; font-weight: 800; font-size: 18px;
  font-family: var(--mono);
  transition: background .25s, color .25s, transform .25s;
}
.howto-list li:hover .howto-num { background: var(--accent); color: #fff; transform: scale(1.05); }
.howto-list h3 { font-weight: 700; font-size: 18px; margin-bottom: 8px; letter-spacing: -0.01em; }
.howto-list p { color: var(--text-soft); font-size: 14.5px; line-height: 1.65; }
.howto-list .mono { color: var(--text); font-weight: 600; font-size: 13px; }

/* === USECASES === */
.usecase { padding: 96px 28px; background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.usecase-inner { max-width: 1240px; margin: 0 auto; }
.uc-grid {
  display: grid; gap: 18px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
.uc-card {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px 26px;
  transition: transform .25s, box-shadow .25s, border-color .25s, background .25s;
  box-shadow: var(--sh-sm);
}
.uc-card:hover { transform: translateY(-3px); box-shadow: var(--sh-md); border-color: var(--accent); background: var(--surface); }
.uc-card h3 {
  font-weight: 700; font-size: 17px; margin-bottom: 10px;
  color: var(--text); display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.01em;
}
.uc-card h3::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0;
}
.uc-card p { color: var(--text-soft); font-size: 14px; line-height: 1.65; }
.uc-card a { color: var(--accent); font-weight: 600; border-bottom: 1px solid currentColor; }

/* === GLOSSARY === */
.glossary { padding: 96px 28px; background: var(--bg-soft); }
.glossary-inner { max-width: 1240px; margin: 0 auto; }
.glossary-list {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}
.glossary-list > div {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 20px 22px;
  display: grid; grid-template-columns: 36px 1fr; gap: 14px; align-items: start;
  box-shadow: var(--sh-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.glossary-list > div:hover { transform: translateY(-2px); box-shadow: var(--sh); border-color: var(--accent); }
.g-init {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: var(--accent-soft); color: var(--accent);
  font-family: var(--mono); font-size: 14px; font-weight: 700;
}
.glossary-list dt {
  font-weight: 700; font-size: 15px; color: var(--text);
  margin-bottom: 6px; letter-spacing: -0.01em;
}
.glossary-list dd { color: var(--text-soft); font-size: 13.5px; line-height: 1.6; }
.glossary-list .mono { color: var(--text); font-size: 12.5px; }

/* === FAQ === */
.faq { padding: 96px 28px; background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq-inner { max-width: 880px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: border-color .2s, box-shadow .2s;
}
.faq-item[open] { border-color: var(--accent); box-shadow: var(--sh-sm); background: var(--surface); }
.faq-item > summary {
  cursor: pointer; padding: 18px 22px;
  font-size: 15.5px; font-weight: 600; color: var(--text);
  list-style: none; user-select: none;
  display: flex; align-items: center; gap: 14px;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: ""; margin-left: auto;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent-soft); color: var(--accent);
  font-family: var(--mono); font-size: 16px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .25s, background .25s;
}
.faq-item > summary::after { content: "+"; }
.faq-item[open] > summary::after { content: "-"; background: var(--accent); color: #fff; }
.faq-item > p {
  padding: 0 22px 22px; color: var(--text-soft);
  font-size: 14.5px; line-height: 1.7;
}
.faq-item code {
  font-family: var(--mono); font-size: 12.5px;
  background: var(--bg-soft); padding: 2px 6px; border-radius: 4px;
  border: 1px solid var(--line);
}

/* === RICH-CONTENT-SECTIONS (auf /bots) === */
.rich { padding: 96px 28px; }
.rich.alt { background: var(--bg-soft); }
.rich-inner { max-width: 880px; margin: 0 auto; }
.rich h3 {
  font-weight: 700; font-size: 21px; letter-spacing: -0.02em;
  margin-top: 36px; margin-bottom: 12px; color: var(--text);
}
.rich h3:first-of-type { margin-top: 24px; }
.rich > .rich-inner > p {
  color: var(--text-soft); font-size: 16px; line-height: 1.75;
  margin-bottom: 16px;
}
.rich .mono { color: var(--text); font-size: 13.5px; font-weight: 600; }
.rich strong { color: var(--text); font-weight: 700; }
.rich-list {
  margin: 12px 0 20px 22px; padding: 0;
  color: var(--text-soft); font-size: 15px; line-height: 1.75;
}
.rich-list li { margin-bottom: 8px; }
.rich-pre {
  background: var(--bg-darker); color: rgba(255,255,255,0.85);
  border-radius: var(--r-lg); padding: 22px 24px;
  margin: 16px 0 24px;
  font-size: 13px; line-height: 1.75; overflow-x: auto;
  border: 1px solid var(--bg-dark);
  font-family: var(--mono);
  box-shadow: var(--sh-md);
}
.rich-pre code { color: rgba(255,255,255,0.85); }
.rb-c  { color: #94a3b8; font-style: italic; }
.rb-k  { color: #fb923c; font-weight: 700; }
.rb-v  { color: #fff; }
.rb-d  { color: #f87171; font-weight: 700; }
.rb-a  { color: #60a5fa; font-weight: 700; }
.rb-cd { color: #c4b5fd; font-weight: 700; }
.rb-sm { color: #6ee7b7; font-weight: 700; }
.rich-cards {
  display: grid; gap: 16px; margin-top: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.rich-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 22px 24px;
  box-shadow: var(--sh-sm); transition: transform .2s, box-shadow .2s, border-color .2s;
}
.rich.alt .rich-card { background: var(--surface); }
.rich-card:hover { transform: translateY(-2px); box-shadow: var(--sh); border-color: var(--accent); }
.rich-card h3 {
  font-weight: 700; font-size: 16px; margin: 0 0 10px;
  color: var(--text); letter-spacing: -0.01em;
  display: flex; align-items: center; gap: 10px;
}
.rich-card h3::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  flex-shrink: 0;
}
.rich-card p { color: var(--text-soft); font-size: 14px; line-height: 1.65; margin: 0; }

/* === RELATED === */
.related { padding: 96px 28px; background: var(--surface); border-top: 1px solid var(--line); }
.related-inner { max-width: 1240px; margin: 0 auto; }
.rel-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(360px, 1fr)); }
.rel-card {
  display: block; padding: 30px 32px;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r-xl);
  transition: transform .25s, box-shadow .25s, border-color .25s, background .25s;
  position: relative; overflow: hidden;
}
.rel-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s;
}
.rel-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--accent); background: var(--surface); }
.rel-card:hover::before { transform: scaleX(1); }
.rel-tag {
  display: inline-block;
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  margin-bottom: 14px;
}
.rel-card h3 { font-weight: 700; font-size: 19px; margin-bottom: 10px; letter-spacing: -0.015em; }
.rel-card p { color: var(--text-soft); font-size: 14.5px; line-height: 1.65; }

/* === FOOTER (DARK wie Hauptseite) === */
.foot { background: var(--bg-darker); color: rgba(255,255,255,0.65); padding: 72px 28px 40px; }
.foot-inner {
  max-width: 1240px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center;
}
.foot-brand { display: flex; align-items: baseline; gap: 14px; }
.foot-name { font-weight: 800; font-size: 22px; letter-spacing: -0.025em; color: #fff; }
.foot-c { color: var(--accent); }
.foot-tag { font-size: 13px; color: rgba(255,255,255,0.5); }
.foot-nav { display: flex; gap: 24px; font-size: 14px; font-weight: 500; justify-content: center; flex-wrap: wrap; }
.foot-nav a { color: rgba(255,255,255,0.7); position: relative; transition: color .15s; }
.foot-nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .2s;
}
.foot-nav a:hover { color: #fff; }
.foot-nav a:hover::after { transform: scaleX(1); }
.foot-meta { font-family: var(--mono); font-size: 11.5px; color: rgba(255,255,255,0.4); }
@media (max-width: 720px) {
  .foot-inner { grid-template-columns: 1fr; gap: 16px; text-align: center; }
  .foot-brand { justify-content: center; }
}

/* === REVEAL === */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s cubic-bezier(.2,.8,.2,1), transform .8s cubic-bezier(.2,.8,.2,1); }
.reveal.is-in { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESULT-VIEW
   ============================================================ */

/* Sticky result-bar */
.result-bar {
  position: sticky; top: var(--nav-h); z-index: 30;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.result-bar-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; padding: 14px 28px;
}
.rb-l { min-width: 0; flex: 1; }
.rb-host { font-family: var(--mono); font-weight: 700; font-size: 16px; color: var(--text); }
.rb-meta { display: block; color: var(--muted); font-size: 12.5px; margin-top: 2px; }
.rb-actions { display: flex; gap: 8px; flex-shrink: 0; }
.rb-act {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 9px;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--text-soft); font-size: 13px; font-weight: 600;
  cursor: pointer; transition: all .15s; font-family: var(--sans);
}
.rb-act:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-1px); box-shadow: var(--sh-sm); }
.rb-act.primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.rb-act.primary:hover { background: var(--accent-h); border-color: var(--accent-h); color: #fff; }

/* Result Layout: TOC + Main */
.result-wrap { max-width: 1320px; margin: 0 auto; padding: 32px 28px 80px; }
.result-grid {
  display: grid; gap: 32px;
  grid-template-columns: 240px 1fr;
}
@media (max-width: 1024px) { .result-grid { grid-template-columns: 1fr; } }

/* TOC sidebar */
.toc {
  position: sticky; top: calc(var(--nav-h) + 90px);
  align-self: start;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 18px;
  box-shadow: var(--sh-sm);
  max-height: calc(100vh - var(--nav-h) - 110px);
  overflow-y: auto;
}
@media (max-width: 1024px) { .toc { position: static; max-height: none; } }
.toc-title {
  font-family: var(--mono); font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.toc-list { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.toc-link {
  display: flex; align-items: center; justify-content: space-between;
  gap: 8px;
  padding: 9px 12px; border-radius: 8px;
  font-size: 13.5px; font-weight: 500; color: var(--text-soft);
  transition: all .15s;
}
.toc-link:hover { background: var(--bg-soft); color: var(--text); }
.toc-link.is-active { background: var(--accent-soft); color: var(--accent); font-weight: 600; }
.toc-pill {
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  padding: 2px 8px; border-radius: 999px;
  background: var(--bg-2); color: var(--muted);
}
.toc-link.is-active .toc-pill { background: var(--accent); color: #fff; }

/* Result Cards */
.result-main { display: flex; flex-direction: column; gap: 22px; min-width: 0; }
.r-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 28px 30px;
  box-shadow: var(--sh-sm);
}
.r-card-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding-bottom: 18px; margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.r-card-head h2 { font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.r-card-meta { color: var(--muted); font-size: 13.5px; display: inline-flex; align-items: center; gap: 10px; flex-wrap: wrap; }

/* Summary card with score-feel */
.r-summary {
  background: linear-gradient(135deg, var(--accent-faint), var(--surface) 60%);
  border: 1px solid var(--line);
}
.r-summary-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 22px;
  align-items: center;
}
@media (max-width: 720px) { .r-summary-grid { grid-template-columns: 1fr 1fr; } }
.r-stat { display: flex; flex-direction: column; gap: 4px; }
.r-stat-num {
  font-family: var(--mono); font-size: 28px; font-weight: 700;
  color: var(--text); line-height: 1; letter-spacing: -0.02em;
}
.r-stat-num.accent { color: var(--accent); }
.r-stat-num.pass   { color: var(--pass); }
.r-stat-num.fail   { color: var(--fail); }
.r-stat-label { font-family: var(--mono); font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* Hops Timeline */
.hops { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.hop {
  display: grid; grid-template-columns: 56px 1fr; gap: 18px;
  position: relative;
}
.hop-stem {
  display: flex; flex-direction: column; align-items: center;
  padding-top: 4px; position: relative;
}
.hop-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: var(--bg-soft); border: 1px solid var(--line);
  font-family: var(--mono); font-size: 13px; font-weight: 700;
  color: var(--text-soft);
  box-shadow: var(--sh-sm);
}
.hop-line {
  flex: 1; width: 2px; min-height: 24px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin-top: 8px; opacity: 0.45;
}
.hop-body {
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 16px 18px;
  transition: border-color .15s, box-shadow .15s;
}
.hop:hover .hop-body { border-color: var(--accent); box-shadow: var(--sh-sm); }
.hop-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.hop-status {
  font-family: var(--mono); font-weight: 700; font-size: 13px;
  padding: 5px 11px; border-radius: 8px;
  min-width: 56px; text-align: center;
  letter-spacing: -0.01em;
}
.hop-status.ok    { background: var(--pass-soft); color: #166534; }
.hop-status.redir { background: #dbeafe;          color: #1e40af; }
.hop-status.warn  { background: var(--warn-soft); color: #9a3412; }
.hop-status.fail  { background: var(--fail-soft); color: #991b1b; }
.hop-http { color: var(--muted); font-size: 11.5px; font-family: var(--mono); }
.hop-url {
  font-family: var(--mono); font-size: 13px; font-weight: 500;
  color: var(--text); word-break: break-all; flex: 1;
}
.hop-meta {
  display: flex; flex-wrap: wrap; gap: 14px;
  color: var(--text-soft); font-size: 12.5px;
  padding: 8px 0; border-top: 1px dashed var(--line); margin-top: 4px;
}
.hop-meta strong {
  color: var(--muted); font-weight: 600; margin-right: 4px;
  text-transform: uppercase; font-size: 10px; letter-spacing: 0.06em;
}
.hop-loc, .hop-tls {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  background: var(--surface); border: 1px solid var(--line);
  padding: 9px 13px; border-radius: 8px; margin-top: 10px;
  font-size: 12.5px; color: var(--text-soft);
}
.hop-loc strong, .hop-tls strong { color: var(--muted); font-weight: 600; margin-right: 4px; text-transform: uppercase; font-size: 10px; letter-spacing: 0.06em; }
.loc-arrow { color: var(--accent); font-weight: 700; font-size: 14px; }
.loc-rel { color: var(--muted); font-size: 11.5px; }
.tls-pill {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.08em; padding: 3px 8px; border-radius: 5px;
}
.tls-pill.ok   { background: var(--pass-soft); color: #166534; }
.tls-pill.warn { background: var(--warn-soft); color: #9a3412; }

.hop-headers { margin-top: 12px; }
.hop-headers > summary {
  cursor: pointer; font-size: 12.5px; color: var(--muted);
  padding: 6px 10px; border-radius: 6px; user-select: none;
  font-family: var(--mono); font-weight: 600;
  list-style: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.hop-headers > summary::-webkit-details-marker { display: none; }
.hop-headers > summary::before { content: "+"; font-weight: 700; color: var(--accent); }
.hop-headers[open] > summary::before { content: "-"; }
.hop-headers > summary:hover { background: var(--bg-2); color: var(--text); }
.hdr-table { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 12.5px; }
.hdr-table tr { border-top: 1px solid var(--line); }
.hdr-table tr:first-child { border-top: 0; }
.hdr-k { padding: 7px 12px 7px 8px; color: var(--muted); white-space: nowrap; vertical-align: top; width: 1%; font-family: var(--mono); }
.hdr-v { padding: 7px 8px; color: var(--text-soft); word-break: break-word; font-family: var(--mono); }
.hdr-sec   .hdr-k { color: var(--accent); font-weight: 700; }
.hdr-cache .hdr-k { color: #2563eb; font-weight: 700; }
.hdr-cookie .hdr-k { color: #9333ea; font-weight: 700; }

.hop-error .hop-body { border-color: var(--fail); background: var(--fail-soft); }
.hop-err { color: var(--fail); margin-top: 6px; font-size: 13.5px; font-weight: 600; }

/* robots.txt cards */
.rob-sitemaps { font-size: 13.5px; color: var(--text-soft); margin-bottom: 14px; }
.rob-sitemaps strong { color: var(--text); }
.rob-sitemaps ul { list-style: none; padding-left: 0; margin-top: 8px; display: flex; flex-direction: column; gap: 4px; }
.rob-sitemaps a { color: var(--accent); border-bottom: 1px solid currentColor; word-break: break-all; font-family: var(--mono); font-size: 12.5px; }
.rob-raw > summary {
  cursor: pointer; font-size: 12.5px; color: var(--muted);
  padding: 6px 10px; border-radius: 6px;
  font-family: var(--mono); font-weight: 600;
  list-style: none; display: inline-flex; align-items: center; gap: 8px;
}
.rob-raw > summary::-webkit-details-marker { display: none; }
.rob-raw > summary::before { content: "+"; font-weight: 700; color: var(--accent); }
.rob-raw[open] > summary::before { content: "-"; }
.rob-pre {
  margin-top: 12px; padding: 16px 18px;
  background: var(--bg-darker); color: rgba(255,255,255,0.85);
  border-radius: var(--r-md); font-size: 12px; line-height: 1.65;
  white-space: pre-wrap; word-break: break-word;
  max-height: 360px; overflow: auto; font-family: var(--mono);
}

/* Badges für Header */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; border-radius: 999px;
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
}
.badge.ok   { background: var(--pass-soft); color: #166534; }
.badge.warn { background: var(--warn-soft); color: #9a3412; }
.badge.fail { background: var(--fail-soft); color: #991b1b; }
.badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.85; }

/* Bot-Matrix */
.bot-cat {
  border-top: 1px solid var(--line); margin-top: 10px; padding-top: 14px;
}
.bot-cat:first-of-type { border-top: 0; margin-top: 0; padding-top: 0; }
.bot-cat > summary {
  cursor: pointer; font-size: 15px; font-weight: 700; padding: 6px 0;
  list-style: none; user-select: none;
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.01em;
}
.bot-cat > summary::-webkit-details-marker { display: none; }
.bot-cat > summary::before {
  content: "+"; width: 18px; color: var(--accent); font-weight: 700;
  font-family: var(--mono);
}
.bot-cat[open] > summary::before { content: "-"; }
.cat-count { color: var(--muted); font-weight: 500; font-size: 13px; font-family: var(--mono); }

.bot-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  margin-top: 10px; font-size: 13px;
  border: 1px solid var(--line); border-radius: var(--r-md); overflow: hidden;
}
.bot-table thead th {
  text-align: left; padding: 10px 12px; color: var(--muted);
  text-transform: uppercase; font-size: 10.5px; letter-spacing: 0.06em;
  font-weight: 700; background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.bot-table tbody td {
  padding: 12px; border-bottom: 1px solid var(--line); vertical-align: top;
  background: var(--surface);
}
.bot-table tbody tr:last-child td { border-bottom: 0; }
.bot-table tbody tr:hover td { background: var(--bg-soft); }
.bot-name { font-weight: 700; color: var(--text); font-size: 13.5px; }
.bot-owner { color: var(--muted); font-size: 11.5px; margin-top: 2px; }
.verdict {
  font-family: var(--mono); font-size: 10.5px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px; white-space: nowrap;
  display: inline-flex; align-items: center; gap: 5px;
}
.verdict::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; opacity: 0.85; }
.verdict.ok   { background: var(--pass-soft); color: #166534; }
.verdict.fail { background: var(--fail-soft); color: #991b1b; }
.bot-row.fail td:first-child { box-shadow: inset 3px 0 0 var(--fail); }
.bot-row.ok   td:first-child { box-shadow: inset 3px 0 0 var(--pass); }

.bot-foot { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); color: var(--text-soft); font-size: 14px; }
.bot-foot a { color: var(--accent); font-weight: 600; border-bottom: 1px solid currentColor; }

/* ============================================================
   /BOTS PAGE - Generator + List
   ============================================================ */

.bots-main { padding-bottom: 80px; }

.bots-hero { padding: 80px 28px 24px; text-align: center; position: relative; overflow: hidden; }
.bots-hero::before {
  content: ""; position: absolute; top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle at 30% 30%, rgba(234,88,12,0.15), transparent 60%);
  border-radius: 50%; filter: blur(40px); pointer-events: none;
}
.bots-hero-inner { position: relative; max-width: 880px; margin: 0 auto; }
.bots-hero h1 {
  font-weight: 800; font-size: clamp(36px, 6vw, 64px);
  line-height: 1.0; letter-spacing: -0.03em;
  margin: 0 0 18px;
}
.bots-hero h1 .accent {
  background: linear-gradient(135deg, var(--accent), #fb923c);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.bots-hero p {
  color: var(--text-soft); font-size: 17px; line-height: 1.6;
  max-width: 720px; margin: 0 auto;
}
.bots-hero strong { color: var(--text); font-weight: 700; }

.bots-jump {
  display: flex; flex-wrap: wrap; gap: 8px;
  justify-content: center; margin-top: 28px;
  font-family: var(--mono); font-size: 12.5px;
}
.bots-jump a {
  padding: 7px 14px; border-radius: 999px;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--text-soft); transition: all .15s; box-shadow: var(--sh-sm);
  font-weight: 600;
}
.bots-jump a:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-1px); box-shadow: var(--sh); }

.bots-grid { max-width: 1320px; margin: 32px auto 0; padding: 0 28px; display: grid; grid-template-columns: 360px 1fr; gap: 28px; align-items: start; }
@media (max-width: 980px) { .bots-grid { grid-template-columns: 1fr; } }

.bots-sidebar { position: sticky; top: calc(var(--nav-h) + 16px); }
@media (max-width: 980px) { .bots-sidebar { position: static; } }

.gen-box {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: 26px;
  box-shadow: var(--sh);
}
.gen-box h2 { font-weight: 800; font-size: 19px; margin-bottom: 18px; letter-spacing: -0.02em; }
.gen-row { margin-bottom: 18px; }
.gen-label { display: block; color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 10px; font-weight: 700; font-family: var(--mono); }
.gen-radios { display: flex; flex-direction: column; gap: 8px; }
.gen-radios label { display: flex; align-items: center; gap: 10px; font-size: 14px; cursor: pointer; }
.gen-radios input[type="radio"] { accent-color: var(--accent); width: 16px; height: 16px; }
.gen-input {
  width: 100%; background: var(--bg-soft); border: 1px solid var(--line);
  color: var(--text); font: inherit; font-size: 14px;
  padding: 11px 14px; border-radius: 8px; outline: 0;
  font-family: var(--mono);
}
.gen-input:focus { border-color: var(--accent); background: var(--surface); }
#gen-path-row[data-show-when="0"] { display: none; }

.gen-actions { display: flex; gap: 8px; margin-bottom: 18px; }
.gen-output {
  background: var(--bg-darker); color: rgba(255,255,255,0.85);
  border-radius: var(--r-md); padding: 14px; box-shadow: var(--sh-md);
}
.gen-output-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; color: rgba(255,255,255,0.6); margin-bottom: 10px;
  font-family: var(--mono); font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase;
}
.copy-btn {
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85); padding: 5px 12px; border-radius: 6px;
  font: inherit; font-size: 11px; cursor: pointer; transition: all .15s;
  font-family: var(--mono); font-weight: 600;
}
.copy-btn:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.gen-pre {
  font-size: 11.5px; line-height: 1.65; font-family: var(--mono);
  white-space: pre-wrap; word-break: break-word;
  max-height: 420px; overflow: auto;
}
.gen-hint { margin-top: 16px; color: var(--muted); font-size: 13px; line-height: 1.55; }
.gen-hint .mono { color: var(--text); }

/* Bots-Liste */
.bots-controls {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap; margin-bottom: 18px;
}
.bots-filter { display: flex; gap: 6px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--surface); border: 1px solid var(--line);
  color: var(--text-soft); font-size: 13px; font-weight: 600;
  padding: 7px 13px; border-radius: 999px;
  transition: all .15s; box-shadow: var(--sh-sm);
}
.chip:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-1px); }
.chip.is-active { background: var(--accent); color: #fff; border-color: var(--accent); }
.chip-count {
  background: var(--bg-2); padding: 1px 7px; border-radius: 999px;
  font-family: var(--mono); font-size: 10.5px; color: var(--muted); font-weight: 700;
}
.chip.is-active .chip-count { background: rgba(255,255,255,0.2); color: #fff; }

.bots-search { display: flex; gap: 6px; align-items: center; }
.bots-search input[type="search"] {
  background: var(--surface); border: 1px solid var(--line); color: var(--text);
  padding: 9px 13px; border-radius: 8px; font: inherit; font-size: 13px;
  outline: 0; min-width: 240px; box-shadow: var(--sh-sm);
}
.bots-search input[type="search"]:focus { border-color: var(--accent); }

.bots-quick {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  margin-bottom: 20px; padding: 12px 16px;
  background: var(--accent-faint); border: 1px solid rgba(234,88,12,0.15);
  border-radius: var(--r-md); font-size: 13px;
}
.quick-label { color: var(--accent); margin-right: 6px; font-weight: 700; }
.btn-quick {
  background: var(--surface); border: 1px solid var(--line);
  color: var(--text-soft); padding: 6px 12px; border-radius: 7px;
  font: inherit; font-size: 12.5px; cursor: pointer; font-weight: 600;
  transition: all .15s;
}
.btn-quick:hover { color: var(--accent); border-color: var(--accent); transform: translateY(-1px); }

.bots-cards { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.bot-card {
  display: grid; grid-template-columns: 32px 1fr; gap: 14px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 16px 18px;
  transition: all .15s; box-shadow: var(--sh-sm);
}
.bot-card:hover { border-color: var(--accent); transform: translateY(-1px); box-shadow: var(--sh); }
.bot-card.is-selected {
  border-color: var(--accent); background: var(--accent-faint);
  box-shadow: var(--sh);
}
.bot-pick { display: flex; align-items: center; justify-content: center; padding-top: 2px; }
.bot-pick input { position: absolute; opacity: 0; width: 18px; height: 18px; cursor: pointer; }
.bot-pick-box {
  width: 18px; height: 18px; border-radius: 5px;
  border: 1.5px solid var(--line-strong); background: var(--surface);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all .12s;
}
.bot-pick input:checked + .bot-pick-box {
  background: var(--accent); border-color: var(--accent);
}
.bot-pick input:checked + .bot-pick-box::after {
  content: ""; width: 10px; height: 5px;
  border-left: 2px solid #fff; border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
}

.bot-head {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  margin-bottom: 6px;
}
.bot-name { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.bot-owner { color: var(--muted); font-size: 12px; }

.bot-cat-tag {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 999px;
  background: var(--bg-2); color: var(--text-soft);
}
.bot-cat-tag.bot-cat-search     { background: #dbeafe; color: #1e40af; }
.bot-cat-tag.bot-cat-ai         { background: var(--accent-soft); color: var(--accent); }
.bot-cat-tag.bot-cat-seo        { background: #fef3c7; color: #92400e; }
.bot-cat-tag.bot-cat-social     { background: #f3e8ff; color: #6b21a8; }
.bot-cat-tag.bot-cat-archive    { background: #f1f5f9; color: var(--text-soft); }
.bot-cat-tag.bot-cat-monitoring { background: #ccfbf1; color: #115e59; }
.bot-cat-tag.bot-cat-security   { background: var(--fail-soft); color: #991b1b; }

.bot-rec {
  font-family: var(--mono); font-size: 10px; font-weight: 700;
  letter-spacing: 0.04em; padding: 3px 9px; border-radius: 999px;
  border: 1px dashed currentColor;
}
.bot-rec-allow    { color: var(--pass); }
.bot-rec-opt-in   { color: var(--warn); }
.bot-rec-optional { color: var(--muted); }

.bot-purpose { color: var(--text-soft); font-size: 13.5px; margin-bottom: 8px; line-height: 1.55; }

.bot-detail > summary {
  cursor: pointer; font-size: 11.5px; color: var(--muted);
  padding: 4px 0; user-select: none;
  font-family: var(--mono); font-weight: 600;
  list-style: none;
}
.bot-detail > summary::-webkit-details-marker { display: none; }
.bot-detail > summary::before { content: "+ "; color: var(--accent); }
.bot-detail[open] > summary::before { content: "- "; }
.bot-detail > summary:hover { color: var(--accent); }

.bot-dl {
  display: grid; grid-template-columns: 110px 1fr; gap: 6px 14px;
  margin-top: 10px; padding: 12px 14px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 8px;
  font-size: 12.5px;
}
.bot-dl dt { color: var(--muted); font-weight: 600; }
.bot-dl dd { color: var(--text-soft); word-break: break-word; }
.bot-dl dd a { color: var(--accent); border-bottom: 1px solid currentColor; }

.empty {
  text-align: center; padding: 60px 20px; color: var(--muted);
  border: 1px dashed var(--line-strong); border-radius: var(--r-lg);
  background: var(--surface);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
