/* PoisonZero — base.css
   Dunkles „Security-Console"-Theme, geteilt mit dem Panel:
   Slate #0a0e14 · surface #0f1622 · Emerald/Teal-Akzent #10b981.
   Schriften: Inter (UI/Text) + IBM Plex Mono (Technisches). */

:root {
  --bg: #0a0e14;
  --bg-soft: #0f1622;
  --surface: #121b2a;
  --line: #1e2a3c;
  --line-soft: #18222f;
  --ink: #eaf1f8;
  --muted: #9fb0c3;
  --faint: #6c7d92;
  --accent: #10b981;
  --accent-soft: rgba(16, 185, 129, 0.12);
  --accent-line: rgba(16, 185, 129, 0.32);
  --danger: #f0506e;
  --warn: #f5a623;
  --radius: 14px;
  --radius-lg: 20px;
  --maxw: 1120px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'IBM Plex Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/* --- Topbar ---------------------------------------------------------------- */
.topbar {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; gap: 18px;
  padding: 14px clamp(16px, 4vw, 40px);
  background: rgba(10, 14, 20, 0.72);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid var(--line-soft);
}
.topbar-left { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.logo-icon { display: block; }
.logo-text { font-size: 17px; letter-spacing: -0.01em; }

/* --- Wortmarke „POISON/ZERO" -------------------------------------------------
   Versalien, schwere Schrift, markanter (geneigter) Schrägstrich, zweifarbig.
   Größe wird vom Kontext (font-size des Eltern) bestimmt; Farben via Tokens. */
.wordmark {
  font-family: "Michroma", var(--font-sans);
  font-weight: 400; text-transform: uppercase; letter-spacing: -0.01em;
  line-height: 1; white-space: nowrap; display: inline-flex; align-items: baseline;
  font-size: 0.82em; /* Michroma läuft breit — etwas kleiner, damit die Topbar passt */
}
.wordmark .wm-poison { color: var(--accent); }
.wordmark .wm-zero { color: var(--ink); }
.wordmark .wm-slash {
  color: var(--accent); display: inline-block;
  transform: skewX(-12deg); margin: 0 0.05em;
}
.topbar-nav { margin-left: auto; display: flex; gap: 4px; align-items: center; }

/* Sprachumschalter (verlinkt dieselbe Seite in anderen Sprachen). */
.lang-switch { display: inline-flex; gap: 2px; margin: 0 4px; }
.lang-switch a {
  padding: 5px 8px; border-radius: 7px; font-size: 12px; font-weight: 600;
  color: var(--faint); transition: color .15s, background .15s;
}
.lang-switch a:hover { color: var(--ink); }
.lang-switch a.active { color: var(--accent); background: var(--accent-soft); }

/* Brand-Slogan (Footer). */
.footer-slogan {
  font-family: var(--font-mono); font-size: 13px; color: var(--accent);
  margin-top: 12px; letter-spacing: 0.01em;
}
.footer-brand .footer-slogan + p { margin-top: 8px; }
.topbar-link {
  padding: 8px 14px; border-radius: 9px; color: var(--muted);
  font-size: 14.5px; font-weight: 500; transition: color .15s, background .15s;
}
.topbar-link:hover { color: var(--ink); background: var(--bg-soft); }
.topbar-cta {
  margin-left: 8px; color: var(--accent); border: 1px solid var(--accent-line);
  white-space: nowrap; /* CTA nie umbrechen lassen */
}
.topbar-cta:hover { background: var(--accent-soft); color: var(--accent); }
@media (max-width: 720px) {
  .topbar-nav .topbar-link:not(.topbar-cta) { display: none; }
  .topbar-nav { margin-left: auto; }
}
@media (max-width: 560px) {
  .topbar { gap: 10px; padding-left: 14px; padding-right: 14px; }
  .lang-switch { margin: 0 2px; gap: 0; }
  .lang-switch a { padding: 4px 5px; font-size: 11px; }
  .topbar-cta { margin-left: 2px; padding: 8px 12px; font-size: 13px; }
  .topbar-login { padding: 8px 4px; }
}
@media (max-width: 440px) {
  /* Schmale Phones: Sprachumschalter ausblenden (Sprache deckt Hinweis-Banner +
     Footer ab), damit der CTA-Button einzeilig und sauber passt. */
  .topbar-nav .lang-switch { display: none; }
}
@media (max-width: 359px) {
  /* Sehr schmale Geräte: Wortmarke ausblenden, Logo-Icon bleibt als Marke. */
  .topbar-left .wordmark { display: none; }
}

/* --- Cookie-Consent-Banner ------------------------------------------------- */
.consent {
  position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%);
  z-index: 60; width: min(680px, calc(100% - 24px));
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 15px 18px; box-shadow: 0 14px 44px rgba(0,0,0,.55);
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.consent[hidden] { display: none; }
.consent-text { font-size: 13.5px; color: var(--muted); flex: 1 1 280px; line-height: 1.5; margin: 0; }
.consent-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.consent-actions { display: flex; gap: 10px; flex: none; margin-left: auto; }
.consent-actions .btn { padding: 9px 18px; font-size: 14px; }
@media (max-width: 520px) {
  .consent { bottom: 0; width: 100%; border-radius: var(--radius-lg) var(--radius-lg) 0 0; }
  .consent-actions { width: 100%; margin-left: 0; }
  .consent-actions .btn { flex: 1; }
}

/* --- Buttons --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 24px; border-radius: 11px; font-size: 15px; font-weight: 600;
  cursor: pointer; transition: transform .12s, filter .15s, background .15s, border-color .15s;
  border: 1px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #052e22; }
.btn-primary:hover { filter: brightness(1.08); }
.btn-ghost { border-color: var(--line); color: var(--ink); background: var(--bg-soft); }
.btn-ghost:hover { border-color: var(--faint); }
.btn-arrow::after { content: "→"; font-weight: 500; }

/* --- Layout-Primitives ----------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(16px, 4vw, 40px); }
.section { padding: clamp(64px, 10vw, 120px) 0; position: relative; }
.eyebrow {
  display: inline-block; font-family: var(--font-mono); font-size: 12.5px;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  padding: 5px 12px; border-radius: 100px; margin-bottom: 20px;
}
.section-title {
  font-size: clamp(28px, 4.5vw, 46px); font-weight: 700; line-height: 1.08;
  letter-spacing: -0.025em; max-width: 18ch;
}
.section-lead {
  margin-top: 18px; font-size: clamp(16px, 1.8vw, 19px); color: var(--muted);
  max-width: 60ch; line-height: 1.65;
}

/* --- Hero ------------------------------------------------------------------ */
.hero { position: relative; padding: clamp(72px, 12vw, 150px) 0 clamp(56px, 8vw, 110px); overflow: hidden; }
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 75%);
  opacity: 0.5;
}
.hero-glow {
  position: absolute; z-index: 0; pointer-events: none; left: 50%; top: -10%;
  width: 720px; height: 720px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(16,185,129,0.16), transparent 60%);
  filter: blur(20px);
}
.hero-inner { position: relative; z-index: 1; max-width: 1080px; }
/* Hero-Kopf: Bildmarke links, Headline rechts daneben (vertikal zentriert). */
.hero-head {
  display: flex; align-items: center; gap: clamp(16px, 3vw, 36px);
  margin-bottom: 22px;
}
.hero-head h1 { margin-bottom: 0; }
/* Freistehende Bildmarke — keine Box/Umrandung. Glow folgt der Schildform
   (drop-shadow auf transparenter SVG) plus weicher Halo dahinter. */
.hero-logo {
  flex: none; position: relative; isolation: isolate;
  display: block; width: -moz-fit-content; width: fit-content;
}
.hero-logo::before {
  content: ""; position: absolute; z-index: -1; left: 50%; top: 50%;
  width: 175%; height: 175%; transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(16, 185, 129, 0.34), transparent 62%);
  filter: blur(20px); pointer-events: none;
}
.hero-logo img {
  display: block; width: clamp(144px, 18vw, 204px); height: auto;
  filter: drop-shadow(0 6px 22px rgba(16, 185, 129, 0.48))
          drop-shadow(0 2px 6px rgba(0, 0, 0, 0.5));
}
@media (max-width: 600px) {
  .hero-head { gap: 12px; }
  .hero-logo img { width: clamp(86px, 26vw, 124px); }
}
.hero h1 {
  font-size: clamp(38px, 7vw, 76px); font-weight: 800; line-height: 1.02;
  letter-spacing: -0.04em; margin-bottom: 22px;
}
.hero h1 .accent { color: var(--accent); }
.hero-lead { font-size: clamp(17px, 2.2vw, 22px); color: var(--muted); max-width: 56ch; line-height: 1.6; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
.hero-meta {
  margin-top: 30px; display: flex; gap: 22px; flex-wrap: wrap;
  font-family: var(--font-mono); font-size: 13px; color: var(--faint);
}
.hero-meta span::before { content: "▸ "; color: var(--accent); }

/* --- Karten / Feature-Grid ------------------------------------------------- */
.grid { display: grid; gap: 20px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 860px) { .grid-3 { grid-template-columns: 1fr; } .grid-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; transition: border-color .2s, transform .2s;
}
.card:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.card-icon {
  width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent);
  font-family: var(--font-mono); font-weight: 600; margin-bottom: 16px;
}
.card h3 { font-size: 19px; font-weight: 650; letter-spacing: -0.01em; margin-bottom: 9px; }
.card p { color: var(--muted); font-size: 15px; line-height: 1.62; }

/* Schritt-für-Schritt (Funktionsweise) */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step { display: flex; gap: 18px; align-items: flex-start; }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono); font-size: 14px; color: var(--accent);
  border: 1px solid var(--accent-line); border-radius: 10px; padding: 8px 11px;
  background: var(--accent-soft); flex: none;
}
.step h3 { font-size: 18px; margin-bottom: 5px; }
.step p { color: var(--muted); font-size: 15px; }

/* Code-/Terminal-Block */
.terminal {
  background: #070a0f; border: 1px solid var(--line); border-radius: var(--radius);
  font-family: var(--font-mono); font-size: 13.5px; overflow: hidden;
}
.terminal-bar {
  display: flex; gap: 7px; padding: 11px 14px; border-bottom: 1px solid var(--line-soft);
}
.terminal-bar i { width: 11px; height: 11px; border-radius: 50%; background: var(--line); }
.terminal pre { padding: 16px; overflow-x: auto; line-height: 1.7; color: var(--muted); }
.terminal .c-accent { color: var(--accent); }
.terminal .c-danger { color: var(--danger); }
.terminal .c-faint { color: var(--faint); }

/* --- CTA-Band -------------------------------------------------------------- */
.cta-band {
  background: linear-gradient(135deg, var(--bg-soft), var(--surface));
  border: 1px solid var(--accent-line); border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 64px); text-align: center; position: relative; overflow: hidden;
}
.cta-band h2 { font-size: clamp(26px, 4vw, 40px); font-weight: 750; letter-spacing: -0.03em; }
.cta-band p { color: var(--muted); margin: 16px auto 30px; max-width: 52ch; font-size: 17px; }

/* --- Prose (Artikel) ------------------------------------------------------- */
.prose { max-width: 740px; margin: 0 auto; padding: clamp(48px, 7vw, 88px) clamp(16px, 4vw, 24px); }
.prose .eyebrow { margin-bottom: 16px; }
.prose h1 { font-size: clamp(30px, 5vw, 46px); font-weight: 780; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 18px; }
.prose .lead { font-size: 19px; color: var(--muted); line-height: 1.65; margin-bottom: 14px; }
.prose h2 { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; margin: 42px 0 14px; }
.prose h3 { font-size: 20px; font-weight: 650; margin: 30px 0 10px; }
.prose p { color: #c4d2e0; margin-bottom: 16px; line-height: 1.75; }
.prose ul, .prose ol { margin: 0 0 18px 22px; color: #c4d2e0; }
.prose li { margin-bottom: 8px; line-height: 1.7; }
.prose strong { color: var(--ink); }
.prose code {
  font-family: var(--font-mono); font-size: 0.88em; background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 6px; padding: 1px 6px; color: var(--accent);
}
/* Admin-API-Doku: mehrzeilige Code-Blöcke (curl-Beispiele) */
.prose .api-code{background:var(--bg-soft);border:1px solid var(--line);border-radius:10px;padding:14px 16px;overflow-x:auto;margin:0 0 18px}
.prose .api-code code{background:none;border:0;padding:0;display:block;white-space:pre;color:var(--muted);font-size:.85em}
.prose a:not(.btn) { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.callout {
  border-left: 3px solid var(--accent); background: var(--accent-soft);
  border-radius: 0 12px 12px 0; padding: 16px 20px; margin: 22px 0; color: #cfe9df;
}
.callout.danger { border-left-color: var(--danger); background: rgba(240,80,110,0.10); color: #f3c4cf; }
.article-meta { font-family: var(--font-mono); font-size: 13px; color: var(--faint); margin-bottom: 28px; }

/* Wissens-Hub Liste */
.article-list { display: grid; gap: 14px; }
.article-link {
  display: block; background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px 24px; transition: border-color .18s, transform .18s;
}
.article-link:hover { border-color: var(--accent-line); transform: translateX(4px); }
.article-link h3 { font-size: 19px; font-weight: 640; margin-bottom: 6px; letter-spacing: -0.01em; }
.article-link p { color: var(--muted); font-size: 15px; }
.article-link .tag { font-family: var(--font-mono); font-size: 11.5px; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; }

/* --- Footer ---------------------------------------------------------------- */
.footer { border-top: 1px solid var(--line-soft); padding: 48px 0 60px; margin-top: 40px; }
.footer-grid { display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.footer-brand { max-width: 280px; }
.footer-brand p { color: var(--faint); font-size: 14px; margin-top: 12px; line-height: 1.6; }
.footer-col h4 { font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--faint); margin-bottom: 14px; font-family: var(--font-mono); }
.footer-col a { display: block; color: var(--muted); font-size: 14.5px; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line-soft); color: var(--faint); font-size: 13px; display: flex; flex-wrap: wrap; gap: 8px 20px; justify-content: space-between; }

/* --- Reveal-Animation ------------------------------------------------------
   WICHTIG: Das Verstecken ist hinter html.js gegated. Ohne JavaScript (oder
   falls parallax.js nicht lädt) bleibt der Inhalt vollständig sichtbar —
   kein „schwarzer Screen", und Crawler/Reader sehen alles. Die .js-Klasse
   setzt ein Inline-Script ganz oben im <head> (kein FOUC). */
html.js [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
html.js [data-reveal].is-visible { opacity: 1; transform: none; }
html.js [data-reveal][data-delay="1"] { transition-delay: .08s; }
html.js [data-reveal][data-delay="2"] { transition-delay: .16s; }
html.js [data-reveal][data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  html.js [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* Trenner */
.divider { height: 1px; background: var(--line-soft); border: 0; }

/* --- Attack-Chain-Diagramm („Darstellung") --------------------------------- */
.chain { margin: 30px 0; }
.chain-flow { display: flex; align-items: stretch; gap: 28px; }
.chain .node {
  position: relative; flex: 1 1 0; min-width: 0;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 14px; padding: 16px;
}
.chain .node.wide { flex: 1.35 1 0; }
.chain .node::after {
  content: "→"; position: absolute; right: -23px; top: 50%; transform: translateY(-50%);
  color: var(--faint); font-size: 18px; font-weight: 700; z-index: 1;
}
.chain .node:last-child::after { content: none; }
.chain .kx { font-family: var(--font-mono); font-size: 10.5px; color: var(--faint); text-transform: uppercase; letter-spacing: .07em; }
.chain .node h4 { font-size: 14.5px; font-weight: 650; margin: 8px 0 6px; letter-spacing: -.01em; line-height: 1.2; }
.chain .node p { font-size: 12px; color: var(--muted); line-height: 1.5; margin: 0; }
.chain .node code { font-family: var(--font-mono); font-size: 11px; color: var(--accent); word-break: break-all; }
.chain .node.attack { border-color: rgba(240,80,110,.4); }
.chain .node.attack .kx { color: var(--danger); }
.chain .node.gate {
  border-color: var(--accent-line);
  background: linear-gradient(180deg, var(--accent-soft), var(--bg-soft));
  box-shadow: 0 0 22px rgba(16,185,129,.12);
}
.chain .node.gate::after { color: var(--accent); }
.chain .gate-head { display: flex; align-items: center; gap: 8px; }
.chain .gate-head img { width: 22px; height: 22px; }
.chain .gate-name { font-weight: 700; font-size: 14px; }
.chain .verdict {
  margin-top: 9px; font-family: var(--font-mono); font-size: 11px; color: var(--accent);
  background: var(--accent-soft); border: 1px solid var(--accent-line); border-radius: 7px;
  padding: 4px 8px; display: inline-block;
}
.chain .node.blocked { opacity: .5; }
.chain .node.blocked::after { content: "✕"; color: var(--danger); opacity: 1; right: -22px; font-size: 15px; }
.chain .node.blocked h4 { text-decoration: line-through; text-decoration-color: var(--danger); }
.chain .node.blocked .steps2 { font-size: 11.5px; color: var(--faint); margin-top: 4px; line-height: 1.7; }
.chain-note {
  margin-top: 22px; font-size: 13.5px; color: var(--muted); border-left: 3px solid var(--accent);
  padding: 11px 16px; background: var(--accent-soft); border-radius: 0 10px 10px 0;
}
.chain-note strong { color: var(--ink); }
/* Attack-Chain darf aus der schmalen Prosa-Spalte (740px) ausbrechen, damit die
   5 Nodes nicht zu eng werden und Inhalte (Monospace-Verdict etc.) nicht die
   Box-Ränder sprengen. Zentriert relativ zur Spalte. */
@media (min-width: 821px) {
  .chain {
    width: min(960px, calc(100vw - 48px));
    margin-left: 50%; transform: translateX(-50%);
  }
}
/* Sicherheitsnetz: Node-Inhalte brechen immer um, nie über den Rand. */
.chain .node h4, .chain .node p, .chain .verdict, .chain .node .steps2 { overflow-wrap: anywhere; }
@media (max-width: 820px) {
  .chain-flow { flex-direction: column; gap: 26px; }
  .chain .node { flex: none; }
  .chain .node::after { content: "↓"; right: auto; left: 50%; top: auto; bottom: -23px; transform: translateX(-50%); }
  .chain .node.blocked::after { content: "✕"; left: 50%; bottom: -22px; }
}

/* --- Language hint banner -------------------------------------------------- */
.langhint {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 9px 16px; background: var(--accent-soft);
  border-bottom: 1px solid var(--accent-line); font-size: 14px;
}
.langhint[hidden] { display: none; }
.langhint-link { color: var(--accent); font-weight: 600; }
.langhint-link:hover { text-decoration: underline; text-underline-offset: 2px; }
.langhint-close {
  background: none; border: none; color: var(--faint); font-size: 18px;
  line-height: 1; cursor: pointer; padding: 0 4px;
}
.langhint-close:hover { color: var(--ink); }

/* --- Discreet login (topbar) ---------------------------------------------- */
.topbar-login {
  padding: 8px 10px; color: var(--faint); font-size: 14px; font-weight: 500;
  transition: color .15s;
}
.topbar-login:hover { color: var(--ink); }
@media (max-width: 720px) {
  .topbar-login { padding: 8px 6px; font-size: 13px; }
}

/* --- Pricing --------------------------------------------------------------- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch;
}
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px 24px;
}
.price-card.popular {
  border-color: var(--accent-line);
  box-shadow: 0 0 0 1px var(--accent-line), 0 24px 60px -30px rgba(16,185,129,0.45);
}
.price-badge {
  position: absolute; top: -11px; left: 24px;
  background: var(--accent); color: #052e22; font-family: var(--font-mono);
  font-size: 11px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 100px;
}
.price-name { font-size: 15px; font-weight: 600; color: var(--muted); letter-spacing: 0.02em; }
.price-amount { margin-top: 8px; font-size: clamp(28px, 4vw, 36px); font-weight: 800; letter-spacing: -0.03em; }
.price-note { display: block; font-size: 13px; font-weight: 500; color: var(--faint); letter-spacing: 0; margin-top: 2px; }
.price-desc { margin-top: 12px; color: var(--muted); font-size: 15px; }
.price-features { list-style: none; margin: 20px 0 24px; padding: 0; display: grid; gap: 11px; }
.price-features li { position: relative; padding-left: 26px; font-size: 14.5px; color: var(--ink); line-height: 1.45; }
.price-features li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--accent); font-weight: 700; }
.price-features .soon {
  font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.06em;
  color: var(--warn); border: 1px solid rgba(245,166,35,0.4); border-radius: 100px;
  padding: 1px 7px; margin-left: 6px; vertical-align: middle;
}
.price-cta { margin-top: auto; width: 100%; }
@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .price-card.popular { order: -1; }
}

/* --- Contact form ---------------------------------------------------------- */
.contact-form { display: grid; gap: 16px; max-width: 520px; margin-top: 28px; }
.contact-form label { display: grid; gap: 6px; font-size: 14px; font-weight: 600; color: var(--muted); }
.contact-form input, .contact-form textarea {
  font: inherit; color: var(--ink); background: var(--bg-soft);
  border: 1px solid var(--line); border-radius: 11px; padding: 12px 14px; width: 100%;
  transition: border-color .15s;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--accent-line); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-form .btn { width: fit-content; }
.form-status { font-size: 14px; margin: 0; }
.form-status[hidden] { display: none; }
.form-status.ok { color: var(--accent); }
.form-status.err { color: var(--danger); }
.contact-direct { margin-top: 22px; color: var(--muted); font-size: 14.5px; }
.contact-direct a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* --- Download-Seite -------------------------------------------------------- */
.prose.download { max-width: 900px; }
.dl-ver {
  font-family: var(--font-mono); font-size: 0.5em; font-weight: 500;
  color: var(--accent); background: var(--accent-soft); border: 1px solid var(--accent-line);
  border-radius: 100px; padding: 2px 9px; vertical-align: middle; margin-left: 8px;
}
.dl-prereq {
  font-size: 14.5px; color: var(--muted);
  border-left: 3px solid var(--accent); background: var(--accent-soft);
  padding: 10px 14px; border-radius: 0 10px 10px 0; margin: 8px 0 8px;
}
.cmd-list { display: grid; gap: 12px; margin: 14px 0 8px; }
.cmd-os { display: block; font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .05em;
  text-transform: uppercase; color: var(--faint); margin-bottom: 5px; }
.cmd-line {
  display: flex; align-items: center; gap: 12px; width: 100%; text-align: left;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 11px;
  padding: 12px 14px; cursor: pointer; transition: border-color .15s, background .15s;
  overflow-x: auto;
}
.cmd-line:hover { border-color: var(--accent-line); }
.cmd-line code { font-family: var(--font-mono); font-size: 13px; color: var(--ink); white-space: nowrap; flex: 1; }
.cmd-copy { color: var(--faint); font-size: 15px; flex: none; }
.cmd-line.copied { border-color: var(--accent); }
.cmd-line.copied .cmd-copy { color: var(--accent); }
.cmd-line.copied .cmd-copy::after { content: " ✓"; }
.dl-platform { margin-top: 30px; }
.dl-os { font-size: 20px; margin: 0 0 12px; }
.dl-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.dl-table th {
  text-align: left; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase;
  letter-spacing: .05em; color: var(--faint); font-weight: 500; padding: 0 10px 8px; border-bottom: 1px solid var(--line);
}
.dl-table td { padding: 12px 10px; border-bottom: 1px solid var(--line-soft); vertical-align: middle; }
.dl-arch { font-weight: 600; color: var(--ink); }
.mono { font-family: var(--font-mono); font-size: 12px; }
.faint { color: var(--faint); }
.sha { font-family: var(--font-mono); font-size: 11px; color: var(--muted); word-break: break-all; }
.dl-btn {
  display: inline-block; white-space: nowrap; font-size: 13px; font-weight: 600; color: var(--accent);
  border: 1px solid var(--accent-line); border-radius: 9px; padding: 7px 12px; transition: background .15s;
}
.dl-btn:hover { background: var(--accent-soft); }
.dl-sub td { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .05em;
  color: var(--faint); padding-top: 16px; border-bottom: none; }
@media (max-width: 560px) {
  .dl-table, .dl-table tbody, .dl-table tr, .dl-table td { display: block; }
  .dl-table thead { display: none; }
  .dl-table tr { border: 1px solid var(--line); border-radius: 12px; padding: 6px 10px; margin-bottom: 10px; }
  .dl-table td { border-bottom: none; padding: 6px 0; }
}

/* --- „Works with"-Agents-Strip (Hero) -------------------------------------- */
.agents-strip { margin-top: 24px; display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.agents-label {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .06em;
  text-transform: uppercase; color: var(--faint); margin-right: 4px;
}
.agent-chip {
  font-size: 13px; font-weight: 600; color: var(--ink);
  background: var(--bg-soft); border: 1px solid var(--line);
  border-radius: 100px; padding: 5px 12px; white-space: nowrap;
}
.agents-more { font-size: 12.5px; color: var(--faint); }

/* Agent-Chips mit Inline-Logo (fill folgt der Textfarbe). */
.agent-chip { display: inline-flex; align-items: center; gap: 7px; }
.agent-chip svg { width: 14px; height: 14px; fill: currentColor; flex: none; }

/* Marken-Disclaimer im Footer (referierende Nennung, § 23 MarkenG). */
.footer-trademarks { margin-top: 14px; font-size: 11.5px; color: var(--faint); line-height: 1.5; }
