/* =====================================================
   We.Protect.Media. — Design System
   v1.0 · 2026.05
   Coral primary + Cool Ice secondary
   ===================================================== */

:root {
  --ink:        #0A0A0A;
  --ink-soft:   #141414;
  --line:       #1A1A1A;
  --line-soft:  #232323;
  --paper:      #E8E6E1;
  --mute:       #9A9A9A;
  --mute-2:     #6B6B6B;
  --accent:     #FF6B5B;        /* Coral · Primärakzent */
  --accent-2:   #CFEAF1;        /* Cool Ice · Sekundär (--wpm-accent equivalent) */
  --container:  1200px;
  --pad:        24px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  touch-action: pan-y;
}

body {
  background: var(--ink);
  color: var(--paper);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
  overscroll-behavior-x: none;
}

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

h1, h2, h3, h4, p, a, span, div, li {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

section, header, footer, nav, .container { max-width: 100%; }
img, svg, video, iframe { max-width: 100%; height: auto; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}

section {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}
section.no-border { border-top: none; }

.eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}
.eyebrow .marker {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--accent);
  margin-right: 12px;
  vertical-align: middle;
}

h1, h2, h3, h4 { font-weight: 600; letter-spacing: -0.02em; line-height: 1.1; }
h1 { font-size: clamp(36px, 5.4vw, 64px); letter-spacing: -0.03em; line-height: 1.05; }
h2 { font-size: clamp(28px, 3.6vw, 44px); }
h3 { font-size: clamp(20px, 2.2vw, 26px); }
h4 { font-size: 18px; font-weight: 600; }

.em { color: var(--accent); font-style: normal; }
.em-ice { color: var(--accent-2); font-style: normal; }

p { color: var(--paper); }
.lead { font-size: 18px; color: var(--mute); max-width: 60ch; }
.muted { color: var(--mute); }

/* WORDMARK — Cool Ice dots */
.wordmark {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.wordmark .dot { color: var(--accent-2); }
.wordmark-pic {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* HEADER */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(10,10,10,0.72);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-links {
  display: none;
  gap: 32px;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--mute);
}
@media (min-width: 760px) { .nav-links { display: flex; } }
.nav-links a:hover { color: var(--paper); }
.nav-links a.active { color: var(--paper); }
.nav-cta {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--paper);
  border: 1px solid var(--line-soft);
  padding: 10px 18px;
  text-transform: uppercase;
  font-weight: 600;
  transition: border-color 160ms ease, color 160ms ease;
  white-space: nowrap;
}
.nav-cta:hover { border-color: var(--accent); color: var(--accent); }

/* HERO */
.hero {
  padding: 120px 0 96px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: 64px; }
}

.hero h1 {
  margin-top: 24px;
  margin-bottom: 32px;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.hero-body {
  max-width: 60ch;
  font-size: 18px;
  line-height: 1.55;
  color: var(--mute);
  margin-bottom: 40px;
}
.hero-body strong { color: var(--paper); font-weight: 500; }

.signature {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 13px;
  color: var(--mute);
  line-height: 1.55;
}
.signature .name {
  color: var(--paper);
  font-weight: 600;
  letter-spacing: -0.005em;
  display: block;
  margin-bottom: 4px;
}

/* HERO STAGE — Akten-Stack (Vorschlag 02) */
.hero-stage {
  position: relative;
  height: 480px;
  width: 100%;
  display: none;
}
@media (min-width: 960px) { .hero-stage { display: block; } }

.akte {
  position: absolute;
  background: var(--ink-soft);
  border: 1px solid var(--line-soft);
  padding: 24px 28px;
  width: 320px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  color: var(--paper);
  font-size: 13px;
  line-height: 1.5;
  transition: transform 400ms ease, box-shadow 400ms ease;
}
.akte:hover {
  box-shadow: 0 30px 70px rgba(0,0,0,0.7);
  z-index: 10;
}
.akte-1 { top: 30px; right: 20px; transform: rotate(2.5deg); z-index: 3; }
.akte-2 { top: 175px; left: 0; transform: rotate(-2deg); z-index: 2; }
.akte-3 { top: 320px; right: 40px; transform: rotate(1.5deg); z-index: 1; }

.akte-1:hover { transform: rotate(0deg) translateY(-4px); }
.akte-2:hover { transform: rotate(0deg) translateY(-4px); }
.akte-3:hover { transform: rotate(0deg) translateY(-4px); }

.akte-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute-2);
  font-weight: 600;
  margin-bottom: 14px;
}
.akte-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--accent);
  display: inline-block;
}
.akte-tag.bearb::before { background: var(--accent-2); }
.akte-tag.uebergabe::before { background: var(--mute); }

.akte-id {
  font-size: 10px;
  color: var(--mute-2);
  font-feature-settings: "tnum";
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}
.akte-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--paper);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.25;
}
.akte-meta {
  font-size: 12px;
  color: var(--mute);
  line-height: 1.55;
  margin-bottom: 14px;
}
.akte-meta strong { color: var(--paper); font-weight: 500; }
.akte-stamp {
  display: inline-block;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 4px 10px;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  transform: rotate(-3deg);
  margin-top: 4px;
  background: rgba(255,107,91,0.06);
}
.akte-stamp.green {
  border-color: var(--accent-2);
  color: var(--accent-2);
  background: rgba(207,234,241,0.06);
}
.akte-stamp.muted {
  border-color: var(--mute);
  color: var(--mute);
  background: transparent;
}

/* CTA Cluster + Buttons */
.cta-cluster {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 600px) { .cta-cluster { flex-direction: row; align-items: center; } }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 160ms ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--accent);
}
.btn-primary:hover { filter: brightness(1.06); transform: translateY(-1px); }

.btn-secondary {
  background: transparent;
  color: var(--paper);
  border-color: var(--line-soft);
}
.btn-secondary:hover { border-color: var(--paper); }

.btn .arrow { transition: transform 160ms ease; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* MISSION */
.mission { background: var(--ink-soft); }
.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
}
@media (min-width: 960px) {
  .mission-grid { grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: 64px; }
}
.mission h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.15;
}
.mission-body p { font-size: 17px; line-height: 1.65; color: var(--mute); }
.mission-body p + p { margin-top: 18px; }
.mission-body strong { color: var(--paper); font-weight: 500; }

/* TARGET / PERSONAS */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 56px;
}
@media (min-width: 720px) { .pain-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .pain-grid { grid-template-columns: repeat(4, 1fr); } }

.pain-card {
  border: 1px solid var(--line);
  padding: 32px 28px;
  background: var(--ink-soft);
  transition: border-color 240ms ease, transform 240ms ease;
  position: relative;
  overflow: hidden;
}
.pain-card:hover { border-color: var(--accent); transform: translateY(-3px); }
.pain-card::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 280ms ease;
}
.pain-card:hover::after { width: 100%; right: auto; left: 0; }
.pain-card .num {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  font-weight: 600;
}
.pain-card h3 { margin-bottom: 12px; font-size: 20px; }
.pain-card p { font-size: 14px; color: var(--mute); line-height: 1.6; }

/* PROCESS / 4 BAUSTEINE */
.process { background: var(--ink-soft); }
.process-list { margin-top: 48px; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  transition: padding-left 200ms ease;
}
.step:hover { padding-left: 8px; }
.step:last-child { border-bottom: 1px solid var(--line); }
.step .step-num {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.step h3 { margin-bottom: 12px; }
.step p { font-size: 15px; color: var(--mute); line-height: 1.65; max-width: 60ch; }
.step p strong { color: var(--paper); font-weight: 500; }

/* DIFFERENTIATION TABLE */
.diff-table {
  width: 100%;
  margin-top: 48px;
  border: 1px solid var(--line);
}
.diff-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}
.diff-row:last-child { border-bottom: 0; }
.diff-row > div {
  padding: 20px 24px;
  font-size: 14px;
  border-right: 1px solid var(--line);
  min-width: 0;
}
.diff-row > div:last-child { border-right: 0; }
.diff-row.head > div {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
  background: var(--ink-soft);
  font-weight: 600;
}
.diff-row .us { color: var(--paper); font-weight: 500; }
.diff-row .us::before { content: "▶ "; color: var(--accent); margin-right: 4px; }
.diff-row .them { color: var(--mute); }

@media (max-width: 719px) {
  .diff-row {
    grid-template-columns: 1fr !important;
    padding: 16px 0;
  }
  .diff-row > div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 14px 20px;
  }
  .diff-row > div:last-child { border-bottom: 0; }
  .diff-row.head { display: none; }
  .diff-row > div::before {
    display: block;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--mute-2);
    margin-bottom: 6px;
    font-weight: 600;
  }
  .diff-row > div:nth-child(1) { background: var(--ink-soft); font-weight: 600; color: var(--paper); }
  .diff-row > div:nth-child(1)::before { content: "Aspekt"; color: var(--paper); }
  .diff-row > div:nth-child(2)::before { content: "Andere Schutz-Anbieter"; }
  .diff-row > div:nth-child(3)::before { content: "We Protect Media"; color: var(--accent); }
}

/* CONFIDENTIALITY SECTION */
.confidentiality { background: var(--ink); position: relative; }
.confidentiality::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(207,234,241,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(207,234,241,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6), transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6), transparent 70%);
}
.confidentiality .container { position: relative; z-index: 1; }

.conf-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 960px) {
  .conf-grid { grid-template-columns: 5fr 7fr; gap: 72px; }
}

.conf-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}
.conf-pillar {
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 20px;
  align-items: start;
}
.conf-pillar .icon {
  width: 32px;
  height: 32px;
  border: 1px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  font-feature-settings: "tnum";
  flex-shrink: 0;
}
.conf-pillar h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 6px;
}
.conf-pillar p {
  color: var(--mute);
  font-size: 14px;
  line-height: 1.6;
}
.conf-pillar p strong { color: var(--paper); font-weight: 500; }

.conf-vendor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.conf-vendor {
  border: 1px solid var(--line-soft);
  padding: 12px 16px;
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.conf-vendor strong { color: var(--paper); font-weight: 600; letter-spacing: -0.005em; }
.conf-vendor .dot-mark {
  width: 6px;
  height: 6px;
  background: var(--accent-2);
  display: inline-block;
}

/* FOUNDER */
.founder { background: var(--ink-soft); }
.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}
@media (min-width: 960px) { .founder-grid { grid-template-columns: 5fr 7fr; gap: 72px; } }

.founder-photo {
  aspect-ratio: 4/5;
  background: var(--line);
  border: 1px solid var(--line-soft);
  overflow: hidden;
  position: relative;
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: contrast(1.02) saturate(0.92);
}
.founder-photo .placeholder {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(135deg, #1a1a1a 0%, #0e0e0e 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mute-2);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-body p { color: var(--mute); font-size: 16px; line-height: 1.7; }
.founder-body p + p { margin-top: 16px; }
.founder-body strong { color: var(--paper); font-weight: 500; }

.credentials {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--line);
}
.credentials > div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.credentials > div:nth-child(odd) { padding-right: 24px; }
.credentials > div:nth-child(even) { padding-left: 24px; border-left: 1px solid var(--line); }
.credentials .label {
  font-size: 11px;
  color: var(--mute-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.credentials .value { font-size: 14px; color: var(--paper); font-weight: 500; }

.co-founder {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.co-founder .label {
  font-size: 11px;
  color: var(--mute-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.co-founder .name { color: var(--paper); font-weight: 600; font-size: 16px; }
.co-founder .role { color: var(--mute); font-size: 14px; margin-top: 4px; line-height: 1.5; }

/* CTA SECTION */
.cta-section {
  text-align: center;
  padding: 120px 0;
}
.cta-section h2 { max-width: 24ch; margin: 0 auto 24px; }
.cta-section .lead { margin: 0 auto 48px; }
.cta-section .cta-cluster { justify-content: center; }

.confidential {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--mute-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 32px;
}
.confidential::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent-2);
  display: inline-block;
}

/* QUOTE PULL */
.pull-quote {
  border-left: 3px solid var(--accent);
  padding: 32px 40px;
  background: var(--ink-soft);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.35;
  color: var(--paper);
  margin: 56px 0;
  max-width: 60ch;
}
.pull-quote .author {
  display: block;
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute-2);
  font-weight: 500;
}

/* FORM */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 48px;
}
@media (min-width: 720px) { .form-grid { grid-template-columns: 1fr 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-size: 11px;
  color: var(--mute-2);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
.form-field input,
.form-field select,
.form-field textarea {
  background: var(--ink-soft);
  border: 1px solid var(--line);
  color: var(--paper);
  padding: 16px 18px;
  font-family: inherit;
  font-size: 15px;
  transition: border-color 160ms ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-field textarea { min-height: 140px; resize: vertical; line-height: 1.55; }
.form-field .hint { font-size: 12px; color: var(--mute-2); margin-top: 4px; line-height: 1.5; }

.form-checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--mute);
  line-height: 1.55;
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid var(--line-soft);
  background: var(--ink-soft);
  margin-top: 2px;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}
.form-checkbox input[type="checkbox"]:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.form-checkbox input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
}
.form-checkbox a { color: var(--paper); border-bottom: 1px solid var(--line-soft); }

/* BLOG */
.blog-list { margin-top: 48px; display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line); }
.blog-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 200ms ease;
}
@media (min-width: 720px) {
  .blog-item { grid-template-columns: 160px 1fr 120px; gap: 32px; align-items: baseline; }
}
.blog-item:hover { padding-left: 12px; border-bottom-color: var(--accent); }
.blog-item .date { font-size: 12px; color: var(--mute-2); letter-spacing: 0.08em; font-feature-settings: "tnum"; }
.blog-item .title { font-size: 22px; font-weight: 600; letter-spacing: -0.015em; line-height: 1.25; color: var(--paper); }
.blog-item .meta { font-size: 11px; color: var(--mute-2); letter-spacing: 0.16em; text-transform: uppercase; text-align: right; }
.blog-empty {
  border: 1px solid var(--line);
  padding: 56px 32px;
  text-align: center;
  margin-top: 48px;
}

/* LEGAL */
.legal-grid { max-width: 760px; margin: 0 auto; }
.legal-grid h2 { margin-top: 56px; margin-bottom: 16px; font-size: 24px; }
.legal-grid h2:first-child { margin-top: 0; }
.legal-grid h3 { margin-top: 32px; margin-bottom: 8px; font-size: 16px; color: var(--paper); }
.legal-grid p, .legal-grid li { font-size: 15px; color: var(--mute); line-height: 1.7; }
.legal-grid p + p { margin-top: 12px; }
.legal-grid ul { margin: 12px 0 12px 24px; }
.legal-grid strong { color: var(--paper); font-weight: 500; }
.legal-grid a { color: var(--paper); border-bottom: 1px solid var(--line-soft); }

/* FOOTER */
footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 32px;
  background: var(--ink);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 12px;
  color: var(--mute-2);
}
.footer-grid a { color: var(--mute); }
.footer-grid a:hover { color: var(--paper); }
.footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.footer-meta { font-feature-settings: "tnum"; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms ease, transform 700ms ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

::selection { background: var(--accent); color: var(--ink); }

@media (max-width: 380px) {
  .hero { padding: 80px 0 64px; }
  :root { --pad: 18px; }
  .hero h1 { font-size: 32px; line-height: 1.1; }
  .hero-body { font-size: 16px; }
  .nav-inner { gap: 12px; }
  .nav-cta { padding: 8px 12px; font-size: 11px; }
  .wordmark { font-size: 13px; }
}

/* =====================================================
   SHARED COMPONENTS (from WPF)
   Adopted to local --accent / --accent-2
   ===================================================== */

/* Trust Pillars — 4 cards directly under hero */
.trust-pillars {
  padding: 80px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--ink-soft);
}
.trust-pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  background: var(--line);
  border: 1px solid var(--line);
  gap: 0;
}
.trust-pillar {
  background: var(--ink-soft);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trust-pillar:last-child { border-right: 0; }
.trust-icon {
  width: 28px;
  height: 28px;
  color: var(--accent-2);
  flex-shrink: 0;
}
.trust-pillar h3 {
  font-size: 17px;
  font-weight: 600;
  color: var(--paper);
  margin: 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.trust-pillar p {
  font-size: 14px;
  color: var(--paper);
  line-height: 1.55;
  margin: 0;
  opacity: 0.85;
}
@media (max-width: 720px) {
  .trust-pillars { padding: 48px 0; }
  .trust-pillar { padding: 28px 22px; border-right: 0; }
  .trust-pillar:not(:last-child) { border-bottom: 1px solid var(--line); }
}

/* FAQ Accordion */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item:first-of-type { border-top: 1px solid var(--line); }
.faq-item summary {
  font-size: 17px;
  font-weight: 600;
  color: var(--paper);
  cursor: pointer;
  list-style: none;
  padding-right: 32px;
  position: relative;
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: var(--accent-2);
  transition: transform 200ms;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item summary:hover { color: var(--accent-2); }
.faq-item p {
  margin-top: 12px;
  font-size: 15px;
  color: var(--mute);
  line-height: 1.65;
  max-width: 70ch;
}
@media (max-width: 720px) {
  .faq-item summary { font-size: 15px; padding-right: 28px; }
  .faq-item p { font-size: 14px; }
}

/* LinkedIn Verification Card */
.linkedin-card {
  margin-top: 32px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  text-decoration: none;
  background: var(--ink);
  transition: border-color 200ms ease, background 200ms ease;
}
.linkedin-card:hover {
  border-color: var(--accent-2);
  background: rgba(255,255,255,0.03);
}
.linkedin-icon {
  width: 36px;
  height: 36px;
  color: var(--accent-2);
  flex-shrink: 0;
}
.linkedin-body { min-width: 0; }
.linkedin-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
  margin-bottom: 4px;
}
.linkedin-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.linkedin-role {
  font-size: 12px;
  color: var(--paper);
  opacity: 0.7;
  line-height: 1.4;
}
.linkedin-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.linkedin-cta .arrow {
  transition: transform 200ms ease;
  display: inline-block;
}
.linkedin-card:hover .linkedin-cta .arrow {
  transform: translateX(4px);
}
@media (max-width: 600px) {
  .linkedin-card {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
    padding: 18px 20px;
  }
  .linkedin-cta {
    grid-column: 1 / -1;
    text-align: right;
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }
}
}

/* LinkedIn Verification Card */
.linkedin-card {
  margin-top: 32px;
  padding: 20px 24px;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  text-decoration: none;
  background: var(--ink);
  transition: border-color 200ms ease, background 200ms ease;
}
.linkedin-card:hover {
  border-color: var(--accent-2);
  background: rgba(255,255,255,0.03);
}
.linkedin-icon {
  width: 36px;
  height: 36px;
  color: var(--accent-2);
  flex-shrink: 0;
}
.linkedin-body { min-width: 0; }
.linkedin-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-2);
  font-weight: 700;
  margin-bottom: 4px;
}
.linkedin-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--paper);
  margin-bottom: 4px;
  letter-spacing: -0.01em;
}
.linkedin-role {
  font-size: 12px;
  color: var(--paper);
  opacity: 0.7;
  line-height: 1.4;
}
.linkedin-cta {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-2);
  letter-spacing: 0.04em;
  white-space: nowrap;
  flex-shrink: 0;
}
.linkedin-cta .arrow {
  transition: transform 200ms ease;
  display: inline-block;
}
.linkedin-card:hover .linkedin-cta .arrow {
  transform: translateX(4px);
}
@media (max-width: 600px) {
  .linkedin-card {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
    padding: 18px 20px;
  }
  .linkedin-cta {
    grid-column: 1 / -1;
    text-align: right;
    border-top: 1px solid var(--line);
    padding-top: 12px;
  }
}

/* ============================================================
   HERO BRANDMARK + 1530 LOGO (added 2026.05)
   ============================================================ */
.hero-brandmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  color: var(--paper);
}
.hero-brandmark svg { flex-shrink: 0; opacity: 0.95; }
.hero-brandmark-text {
  font-family: "Saans", "Inter", system-ui, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--paper);
}
.hero-brandmark .dot { color: var(--accent-2); }

.mark-1530 {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  color: var(--paper);
}
.mark-1530-descender {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.42em;
  color: var(--accent-2);
  padding-left: 1px;
}

/* ============================================================
   EVIDENCE CARD · Beweissicherung (Creator-Threat)
   ============================================================ */
.evidence-card-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.evidence-card {
  width: 100%;
  max-width: 640px;
  margin-left: auto;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px 26px 28px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.03) inset, 0 30px 60px -20px rgba(0,0,0,0.6);
  font-family: "Inter", system-ui, sans-serif;
  color: #e5e5e5;
}
.evidence-card .ec-header { display: flex; align-items: center; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.evidence-card .ec-avatar { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 50%; background: #2a2a2a; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.evidence-card .ec-avatar svg { width: 34px; height: 34px; color: var(--accent-2); transform: translateY(4px); }
.evidence-card .ec-identity { display: flex; flex-direction: column; gap: 4px; min-width: 0; flex: 1; }
.evidence-card .ec-identity-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; min-height: 18px; }
.evidence-card .ec-redact { display: inline-block; background: #3a3a3a; border-radius: 3px; vertical-align: middle; background-image: linear-gradient(100deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 70%); background-size: 200% 100%; animation: ec-shimmer 3.6s ease-in-out infinite; }
@keyframes ec-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -100% 0; } }
.evidence-card .ec-redact.ec-name { width: 180px; height: 16px; }
.evidence-card .ec-redact.ec-handle { width: 96px; height: 14px; }
.evidence-card .ec-handle-row { color: #8a8a8a; font-size: 14px; display: flex; align-items: center; gap: 6px; }
.evidence-card .ec-at { color: #8a8a8a; }
.evidence-card .ec-bubble { margin-top: 18px; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; padding: 18px 20px; font-size: 16px; line-height: 1.55; color: #e5e5e5; letter-spacing: 0.005em; min-height: 120px; }
.evidence-card .ec-bubble .ec-redact.inline { height: 19px; border-radius: 3px; margin: 0 2px; position: relative; top: 3px; }
.evidence-card .ec-caret { display: inline-block; width: 2px; height: 18px; background: #e5e5e5; margin-left: 1px; vertical-align: -3px; animation: ec-blink 1s steps(1) infinite; }
@keyframes ec-blink { 0%,50%{opacity:1;} 50.01%,100%{opacity:0;} }
.evidence-card .ec-caret.hidden { display: none; }
.evidence-card .ec-flag { margin-top: 18px; display: flex; align-items: flex-start; gap: 10px; color: var(--accent-2); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.4; opacity: 0; transform: translateY(4px); transition: opacity .4s ease, transform .4s ease; }
.evidence-card .ec-flag.show { opacity: 1; transform: translateY(0); }
.evidence-card .ec-flag svg { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 1px; stroke: var(--accent-2); fill: none; stroke-width: 1.6; }
.evidence-card .ec-flag span { display: inline-block; }

/* ============================================================
   REALITY CHAIN · Was die Bedrohung wirklich auslöst
   ============================================================ */
.value-chain {
  margin-top: 48px;
  padding: 36px 32px;
  background: var(--ink-soft);
  border-left: 3px solid var(--accent-2);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.value-chain .vc-label { font-family: "JetBrains Mono", ui-monospace, monospace; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-2); font-weight: 700; margin-bottom: 20px; }
/* WPM · Reality-Chain — simpler vertical narrative, less boxy */
.reality-chain .rc-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
}
.reality-chain .rc-list li {
  padding: 20px 0 22px;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.reality-chain .rc-list li:last-child { border-bottom: none; }
.reality-chain .rc-item-head {
  font-size: 17px;
  font-weight: 700;
  color: var(--paper);
  letter-spacing: -0.005em;
  margin: 0;
  line-height: 1.35;
}
.reality-chain .rc-list p { font-size: 15px; line-height: 1.65; color: var(--mute); margin: 0; max-width: 80ch; }
.reality-chain .rc-counsel {
  margin-top: 12px;
  padding: 32px 32px 28px;
  background: var(--ink-soft);
  border-left: 3px solid var(--accent-2);
}
.reality-chain .rc-counsel-label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.reality-chain .rc-counsel-lead { font-size: 15px; line-height: 1.6; color: var(--paper); margin: 0 0 24px; max-width: 80ch; }
.reality-chain .rc-options {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
}
.reality-chain .rc-options li {
  padding: 14px 0 16px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--paper);
  opacity: 0.94;
  border-bottom: 1px solid var(--line);
}
.reality-chain .rc-options li:last-child { border-bottom: none; }
.reality-chain .rc-options li strong {
  color: var(--accent-2);
  margin-right: 6px;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.reality-chain .rc-conclusion { font-size: 15px; line-height: 1.6; color: var(--paper); margin: 0; padding-top: 18px; border-top: 1px solid var(--line); max-width: 80ch; }

/* ============================================================
   STAT STRIP · Empirie-Karten
   ============================================================ */
.stat-strip { margin-top: 48px; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.stat-strip .stat-card { background: var(--ink); padding: 36px 28px 32px; display: flex; flex-direction: column; gap: 16px; }
.stat-strip .stat-num { font-size: clamp(36px, 4.4vw, 56px); font-weight: 800; color: var(--accent-2); letter-spacing: -0.03em; line-height: 1; font-feature-settings: "tnum" 1; }
.stat-strip .stat-label { font-size: 14px; line-height: 1.55; color: var(--paper); opacity: 0.92; }
.empirie-kicker { margin-top: 32px; font-size: 16px; line-height: 1.6; color: var(--paper); max-width: 80ch; }
.empirie-sources { margin-top: 24px; font-size: 12px; line-height: 1.55; color: var(--mute); font-style: italic; max-width: 90ch; padding-top: 18px; border-top: 1px solid var(--line); }

/* ============================================================
   FOUNDER STATEMENT · Doppelte Perspektive
   ============================================================ */
.founder-statement { max-width: 68ch; margin: 0 auto; padding: 0; }
.founder-statement .fs-body { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.founder-statement .fs-body p { font-size: 16px; line-height: 1.7; color: var(--paper); margin: 0; }
.founder-statement .fs-pullquote { margin: 36px 0 28px; padding: 28px 32px; background: var(--ink); border-left: 3px solid var(--accent-2); border-top: 1px solid var(--line); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.founder-statement .fs-pullquote p { font-size: 17px; line-height: 1.6; color: var(--paper); margin: 0; letter-spacing: -0.005em; }
.founder-statement .fs-pullquote-conclusion { margin-top: 18px !important; padding-top: 18px; border-top: 1px solid var(--line); color: var(--accent-2) !important; font-weight: 700 !important; letter-spacing: 0.005em !important; }

/* ============================================================
   MODERN BUTTONS (mirror WPF · 2026.05)
   ============================================================ */
.btn-primary {
  background: transparent;
  color: var(--accent-2);
  border: 1.5px solid var(--accent-2);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color .35s ease;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent-2);
  transform: translateX(-101%);
  transition: transform .35s cubic-bezier(.7,0,.3,1);
  z-index: -1;
}
.btn-primary:hover { color: var(--ink); }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary .arrow { transition: transform .25s ease; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-secondary {
  background: transparent;
  color: var(--paper);
  border: 0;
  border-bottom: 2px solid var(--accent-2);
  padding: 14px 0 12px;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: color .25s ease, border-color .25s ease;
}
.btn-secondary .arrow { color: var(--accent-2); transition: transform .3s ease; }
.btn-secondary:hover {
  color: var(--accent-2);
  border-bottom-color: var(--paper);
}
.btn-secondary:hover .arrow { transform: translateX(6px); }

/* ============================================================
   EDITORIAL STRIP + RC-IMAGE-CARD (mirror WPC)
   ============================================================ */
.editorial-strip {
  position: relative;
  width: 100%;
  aspect-ratio: 16/5;
  overflow: hidden;
  isolation: isolate;
  background-color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.editorial-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--strip-bg, none);
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.7) contrast(1.05);
  z-index: -1;
}
.editorial-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.55) 100%);
}
.editorial-strip .es-watermark {
  position: absolute;
  right: 24px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
  opacity: 0.82;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.6));
}
.editorial-strip .es-watermark svg { flex-shrink: 0; }
.editorial-strip .es-watermark span {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.editorial-strip .es-watermark .dot { color: var(--accent-2); }

/* ============================================================
   HERO WPM · Studio-Hintergrund A2
   ============================================================ */
.hero.hero-wpm-bg { position: relative; isolation: isolate; overflow: hidden; }
.hero.hero-wpm-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 980px;
  background-image: url("hero-wpm-studio.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%) brightness(0.55) contrast(1.05);
  z-index: -2;
  pointer-events: none;
}
.hero.hero-wpm-bg::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 980px;
  background-image: linear-gradient(180deg,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.45) 25%,
    rgba(10,10,10,0.78) 60%,
    rgba(10,10,10,0.96) 88%,
    rgba(10,10,10,1) 100%);
  z-index: -1;
  pointer-events: none;
}

/* RC-Image-Card mirror — filter isolated to ::before so watermark stays clean */
.rc-image-card {
  position: relative;
  margin: 32px 0 32px;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid var(--line);
  isolation: isolate;
}
.rc-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--card-bg, none);
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.85) contrast(1.04);
  z-index: -1;
}
.rc-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0) 0%, rgba(10,10,10,0.42) 100%);
  pointer-events: none;
}
.rc-image-card-watermark {
  position: absolute;
  top: 12px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--paper);
  opacity: 0.85;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.7));
}
.rc-image-card-watermark svg { flex-shrink: 0; }
.rc-image-card-watermark span {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.rc-image-card-watermark .dot { color: var(--accent-2); }

/* ============================================================
   STAT SUBLABEL + Hero-Pair-Grid + Targeting + Chart Visuals
   (mirrored from WPF · 2026.05)
   ============================================================ */
.stat-sublabel {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.hero-pair-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0 14px;
  align-items: stretch;
}
@media (max-width: 820px) {
  .hero-pair-grid { grid-template-columns: 1fr; }
}
.hero-pair-grid > * { min-width: 0; }

/* Targeting-Card (Cascade-Map) */
.targeting-card {
  position: relative;
  overflow: hidden;
  background: var(--ink-soft);
  border: 1px solid var(--line-soft);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  transition: border-color .25s ease;
}
.targeting-card:hover { border-color: #3A3A3A; }
.targeting-card .tc-img {
  position: absolute;
  inset: 0;
  background-image: var(--tc-bg, none);
  background-size: cover;
  background-position: center;
  filter: grayscale(70%) brightness(0.5) contrast(1.06);
  z-index: 0;
}
.targeting-card .tc-veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.45) 0%, rgba(10,10,10,0.62) 55%, rgba(10,10,10,0.92) 100%);
  z-index: 1;
}
.targeting-card .tc-content {
  position: relative;
  z-index: 2;
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.targeting-card .tc-eyebrow {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  text-transform: uppercase;
  font-weight: 700;
}
.targeting-card h4 {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.25;
  color: var(--paper);
  margin: 0 0 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.targeting-card h4 em { color: var(--accent-2); font-style: normal; font-weight: 600; }
.targeting-card .tc-body {
  font-size: 12px;
  color: #C8C6C2;
  margin: 0;
  line-height: 1.55;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.targeting-card .tc-body strong { color: var(--accent-2); font-weight: 600; }

/* Hotspots */
.tc-hotspots {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}
.tc-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-2);
  border: 2px solid rgba(10,10,10,0.85);
  cursor: pointer;
  pointer-events: auto;
  padding: 0;
  box-shadow: 0 0 0 0 rgba(255, 107, 91, 0.6);
  animation: pulse-dot-wpm 2.4s infinite ease-out;
}
@keyframes pulse-dot-wpm {
  0%   { box-shadow: 0 0 0 0 rgba(255, 107, 91, 0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(255, 107, 91, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 107, 91, 0); }
}
.tc-dot[data-pos="1"] { top: 28%; left: 14%; animation-delay: 0s; }
.tc-dot[data-pos="2"] { top: 22%; right: 18%; animation-delay: 0.6s; }
.tc-dot[data-pos="3"] { bottom: 42%; left: 42%; animation-delay: 1.2s; }
.tc-dot[data-pos="4"] { bottom: 26%; right: 28%; animation-delay: 1.8s; }
.tc-dot:hover, .tc-dot:focus-visible { outline: none; background: var(--paper); }
.tc-dot.active { background: var(--paper); animation: none; }

.tc-info-panel {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 5;
  background: rgba(10, 10, 10, 0.97);
  border: 1px solid var(--accent-2);
  padding: 12px 14px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--paper);
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  box-shadow: 0 10px 28px rgba(0,0,0,0.6);
}
.tc-info-panel.show { opacity: 1; transform: translateY(0); }
.tc-info-panel::before {
  content: "→";
  display: inline-block;
  color: var(--accent-2);
  font-weight: 700;
  margin-right: 8px;
}

/* Chart-Card (Hass-Welle nach Sendung) */
.chart-card {
  position: relative;
  background: var(--ink-soft);
  border: 1px solid var(--line-soft);
  padding: 24px 26px 22px;
  overflow: hidden;
  transition: border-color .25s ease;
}
.chart-card:hover { border-color: #3A3A3A; }
.chart-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.chart-card .chart-eyebrow {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--accent-2);
  text-transform: uppercase;
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}
.chart-card h4 {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.25;
  color: var(--paper);
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.chart-card h4 em { color: var(--accent-2); font-style: normal; font-weight: 600; }
.chart-stats {
  text-align: right;
  font-family: "JetBrains Mono", ui-monospace, monospace;
}
.chart-stats .label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--mute);
  text-transform: uppercase;
  font-weight: 600;
}
.chart-stats .value {
  color: var(--accent-2);
  font-size: 22px;
  font-weight: 700;
  display: block;
  letter-spacing: -0.01em;
  margin-top: 2px;
  line-height: 1.1;
}
.chart-stats .sub {
  display: block;
  font-size: 10px;
  color: var(--mute);
  letter-spacing: 0.06em;
  margin-top: 4px;
  font-weight: 500;
}
.chart-viz {
  position: relative;
  height: 200px;
  margin: 14px 0 8px;
}
.chart-viz svg { width: 100%; height: 100%; display: block; }
.chart-viz .tc-hotspots { position: absolute; inset: 0; pointer-events: none; z-index: 3; }
.chart-viz .tc-dot[data-pos="1"] { top: 78%; left: 14%; }
.chart-viz .tc-dot[data-pos="2"] { top: 14%; left: 38%; }
.chart-viz .tc-dot[data-pos="3"] { top: 45%; left: 60%; }
.chart-viz .tc-dot[data-pos="4"] { top: 32%; left: 82%; }
.chart-x-labels {
  display: flex;
  justify-content: space-between;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 10px;
  color: var(--mute);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 4px 14px;
  border-top: 1px solid var(--line);
}
.chart-card .tc-info-panel { bottom: 14px; left: 14px; right: 14px; }

.chart-watermark {
  position: absolute;
  bottom: 12px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: -0.01em;
  color: var(--paper);
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
  font-weight: 700;
  line-height: 1;
}
.chart-watermark svg { color: var(--paper); flex-shrink: 0; }
.chart-watermark .wm-mark .dot { color: var(--accent-2); }
@media (max-width: 540px) {
  .chart-watermark { display: none; }
}

/* Evidence Card (Drohbrief-Card) — ensure CSS exists */
.evidence-card-wrap { position: relative; display: flex; flex-direction: column; align-items: stretch; }
.evidence-card {
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px 26px 28px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.03) inset, 0 30px 60px -20px rgba(0,0,0,0.6);
  font-family: "Inter", system-ui, sans-serif;
  color: #e5e5e5;
}
.evidence-card .ec-header { display: flex; align-items: center; gap: 14px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.evidence-card .ec-avatar { width: 46px; height: 46px; flex: 0 0 46px; border-radius: 50%; background: #2a2a2a; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.evidence-card .ec-avatar svg { width: 34px; height: 34px; color: var(--accent-2); transform: translateY(4px); }
.evidence-card .ec-identity { display: flex; flex-direction: column; gap: 4px; min-width: 0; flex: 1; }
.evidence-card .ec-identity-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; min-height: 18px; }
.evidence-card .ec-redact { display: inline-block; background: #3a3a3a; border-radius: 3px; vertical-align: middle; background-image: linear-gradient(100deg, rgba(255,255,255,0) 30%, rgba(255,255,255,0.05) 50%, rgba(255,255,255,0) 70%); background-size: 200% 100%; animation: ec-shimmer 3.6s ease-in-out infinite; }
@keyframes ec-shimmer { 0% { background-position: 200% 0; } 100% { background-position: -100% 0; } }
.evidence-card .ec-redact.ec-name { width: 180px; height: 16px; }
.evidence-card .ec-redact.ec-handle { width: 96px; height: 14px; }
.evidence-card .ec-handle-row { color: #8a8a8a; font-size: 14px; display: flex; align-items: center; gap: 6px; }
.evidence-card .ec-at { color: #8a8a8a; }
.evidence-card .ec-bubble { margin-top: 18px; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.05); border-radius: 14px; padding: 18px 20px; font-size: 16px; line-height: 1.55; color: #e5e5e5; letter-spacing: 0.005em; min-height: 120px; }
.evidence-card .ec-bubble .ec-redact.inline { height: 19px; border-radius: 3px; margin: 0 2px; position: relative; top: 3px; }
.evidence-card .ec-caret { display: inline-block; width: 2px; height: 18px; background: #e5e5e5; margin-left: 1px; vertical-align: -3px; animation: ec-blink 1s steps(1) infinite; }
@keyframes ec-blink { 0%,50%{opacity:1;} 50.01%,100%{opacity:0;} }
.evidence-card .ec-caret.hidden { display: none; }
.evidence-card .ec-flag { margin-top: 18px; display: flex; align-items: flex-start; gap: 10px; color: var(--accent-2); font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.4; opacity: 0; transform: translateY(4px); transition: opacity .4s ease, transform .4s ease; }
.evidence-card .ec-flag.show { opacity: 1; transform: translateY(0); }
.evidence-card .ec-flag svg { width: 18px; height: 18px; flex: 0 0 18px; margin-top: 1px; stroke: var(--accent-2); fill: none; stroke-width: 1.6; }
.evidence-card .ec-flag span { display: inline-block; }
