/* =========================================================
   Krypto-Kreditkarten Vergleich — Bloomberg / Cyber Theme
   ========================================================= */

:root {
  --bg: #0a0d13;
  --bg-2: #0f1320;
  --bg-3: #151a2b;
  --panel: #131826;
  --panel-2: #1a2036;
  --line: #232a44;
  --line-2: #2c3552;

  --text: #e7ecf5;
  --text-soft: #a8b2c7;
  --text-dim: #6e7791;

  --gold: #ffc847;
  --gold-2: #ffb020;
  --gold-glow: rgba(255, 200, 71, 0.25);
  --green: #21d07a;
  --green-2: #14a460;
  --red: #ff4d5e;
  --red-2: #c9213a;
  --red-bg: #2a0e15;
  --cyan: #4ad7ff;

  --radius: 14px;
  --radius-s: 8px;
  --shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 0 1px rgba(255, 200, 71, 0.18), 0 24px 60px -25px rgba(255, 176, 32, 0.25);

  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(1200px 800px at 80% -10%, #1a2036 0%, transparent 60%),
              radial-gradient(900px 700px at -10% 30%, #1a1830 0%, transparent 55%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "ss01", "cv11";
}

img, svg { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color .15s; }
a:hover { color: var(--gold-2); text-decoration: underline; }

h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.015em; line-height: 1.18; margin: 0 0 0.6em; }
h1 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--text-soft); }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 860px; }

/* =================== TICKER =================== */
.ticker {
  background: linear-gradient(180deg, #060810, #0a0d13);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
}
.ticker__track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  padding: 8px 0;
  animation: ticker 60s linear infinite;
  color: var(--text-dim);
}
.ticker__track span em {
  color: var(--green);
  font-style: normal;
  margin-left: 8px;
  font-weight: 700;
}
.ticker__track span em:first-letter:not(:where(em[data-up] em)) { /* fallback noop */ }
.ticker__track span:nth-child(5n) em { color: var(--red); }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =================== HEADER =================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 13, 19, 0.85);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--text); font-weight: 800; font-size: 1.05rem;
  text-decoration: none;
}
.logo:hover { text-decoration: none; color: var(--gold); }
.logo span b { color: var(--text); }
.logo span i { color: var(--gold); font-style: normal; margin-left: 4px; }

.nav { display: flex; gap: 28px; }
.nav a {
  color: var(--text-soft); font-weight: 500; font-size: 0.95rem;
  text-decoration: none;
}
.nav a:hover { color: var(--gold); }

@media (max-width: 720px) {
  .nav { display: none; }
}

/* =================== HERO =================== */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(0deg, transparent 0 39px, rgba(255,200,71,.04) 39px 40px),
    repeating-linear-gradient(90deg, transparent 0 39px, rgba(255,200,71,.04) 39px 40px);
  mask-image: radial-gradient(ellipse at 50% 30%, black 30%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 920px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__right { order: -1; }
}

.hero__left { position: relative; }

.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  background: rgba(255, 200, 71, 0.12);
  border: 1px solid rgba(255, 200, 71, 0.3);
  color: var(--gold);
}
.badge--update { margin-bottom: 18px; }
.badge--winner {
  background: rgba(33, 208, 122, .14);
  border-color: rgba(33, 208, 122, .35);
  color: var(--green);
}
.badge--eu {
  background: rgba(74, 215, 255, .12);
  border-color: rgba(74, 215, 255, .35);
  color: var(--cyan);
}

.hero h1 { margin: 0 0 14px; }
.hero__sub {
  display: block;
  font-size: 0.55em;
  color: var(--text-soft);
  font-weight: 600;
  margin-top: 6px;
  letter-spacing: -0.005em;
}
.lead { font-size: 1.1rem; color: var(--text-soft); max-width: 560px; }
.lead strong { color: var(--text); font-weight: 700; }

.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin: 30px 0 36px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px;
  border-radius: var(--radius-s);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.98rem;
  transition: transform .12s, box-shadow .15s, background .15s;
  border: 1px solid transparent;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--primary {
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-2) 100%);
  color: #1a1200;
  box-shadow: 0 12px 28px -10px var(--gold-glow), inset 0 1px 0 rgba(255,255,255,.3);
}
.btn--primary:hover { color: #1a1200; }
.btn--ghost {
  background: transparent; color: var(--text);
  border-color: var(--line-2);
}
.btn--ghost:hover { background: var(--panel); color: var(--gold); }
.btn--danger {
  background: linear-gradient(180deg, var(--red) 0%, var(--red-2) 100%);
  color: white;
  box-shadow: 0 12px 28px -10px rgba(255,77,94,.4);
}
.btn--danger:hover { color: white; }
.btn--xl { padding: 18px 36px; font-size: 1.1rem; }

.hero__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 540px;
}
.hero__trust > div {
  padding: 14px 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  text-align: center;
}
.hero__trust strong {
  display: block;
  color: var(--gold);
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
}
.hero__trust span {
  display: block;
  color: var(--text-dim);
  font-size: 0.75rem;
  margin-top: 2px;
}

/* ====== Card Stack (Hero right) ====== */
.card-stack {
  position: relative;
  height: 380px;
  perspective: 1200px;
}
.cc {
  position: absolute;
  width: 320px;
  height: 200px;
  border-radius: 16px;
  padding: 22px 24px;
  font-family: 'JetBrains Mono', monospace;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,.6);
  display: flex; flex-direction: column; justify-content: space-between;
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .25s;
}
.cc:hover { transform: translateY(-4px) rotate(0deg) !important; }
.cc__chip {
  width: 38px; height: 28px;
  background: linear-gradient(135deg, #d6c170, #8e7a36);
  border-radius: 5px;
  position: relative;
}
.cc__chip::before, .cc__chip::after {
  content: ''; position: absolute; background: rgba(0,0,0,.18);
  left: 4px; right: 4px; height: 1px;
}
.cc__chip::before { top: 9px; }
.cc__chip::after { top: 17px; }
.cc__brand { position: absolute; top: 22px; right: 24px; font-weight: 800; letter-spacing: 1px; }
.cc__num { font-size: 1.05rem; letter-spacing: 2px; }
.cc__bottom { display: flex; justify-content: space-between; font-size: 0.85rem; }
.cc__exp { opacity: .75; }

.cc--gold {
  top: 0; left: 30px;
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 60%, #92400e 100%);
  color: #1a1200;
  transform: rotate(-6deg);
}
.cc--carbon {
  top: 80px; left: 130px;
  background: linear-gradient(135deg, #1f2333 0%, #0a0d18 100%);
  color: #f2f4f8;
  transform: rotate(4deg);
}
.cc--reject {
  top: 180px; left: 50px;
  background: linear-gradient(135deg, #2a0e15 0%, #14060a 100%);
  color: #ff8b96;
  transform: rotate(-3deg);
  border: 1px dashed rgba(255, 77, 94, .5);
  position: relative;
  overflow: hidden;
}
.cc__stamp {
  position: absolute;
  top: 28px; left: -12px;
  transform: rotate(-12deg);
  background: var(--red);
  color: white;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 14px;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(255,77,94,.4);
}

@media (max-width: 920px) {
  .card-stack { height: 320px; margin: 0 auto; max-width: 380px; }
}

/* =================== SECTIONS =================== */
.section { padding: 90px 0; position: relative; }
.section--alt {
  background: linear-gradient(180deg, transparent, var(--bg-2) 30%, var(--bg-2) 70%, transparent);
}
.section--danger {
  background: linear-gradient(180deg, transparent, rgba(255,77,94,.05) 30%, rgba(255,77,94,.05) 70%, transparent);
  border-top: 1px solid rgba(255,77,94,.15);
  border-bottom: 1px solid rgba(255,77,94,.15);
}
.section__head { text-align: center; max-width: 760px; margin: 0 auto 50px; }
.kicker {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid rgba(255,200,71,.3);
  border-radius: 4px;
  margin-bottom: 16px;
}
.kicker--danger { color: var(--red); border-color: rgba(255,77,94,.4); }
.section__lede { font-size: 1.05rem; color: var(--text-soft); margin-top: 10px; }

/* =================== TABLE =================== */
.table-wrap {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-x: auto;
  box-shadow: var(--shadow);
}
.compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  min-width: 800px;
}
.compare thead th {
  text-align: left;
  padding: 18px 16px;
  background: var(--bg-3);
  color: var(--text-dim);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--line);
}
.compare tbody td {
  padding: 20px 16px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody tr:hover { background: rgba(255,255,255,.02); }

.row--winner { background: linear-gradient(90deg, rgba(255,200,71,.06), transparent 60%); }
.row--loser  { background: linear-gradient(90deg, rgba(255,77,94,.07), transparent 60%); }

.provider {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.02rem;
}
.provider b { color: var(--text); font-weight: 700; }
.rank {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  background: var(--gold);
  color: #1a1200;
  border-radius: 50%;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: 0.85rem;
}
.rank--bad { background: var(--red); color: white; }
.tag {
  display: inline-block;
  font-size: 0.7rem;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.tag--bad { background: rgba(255,77,94,.15); color: var(--red); }

.stars {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold);
  font-size: 0.95rem;
}
.stars em {
  font-style: normal;
  color: var(--text);
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}
.stars--bad { color: var(--red); }

.table__note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* =================== WARNING BANNER =================== */
.warning-banner {
  display: flex; align-items: center; gap: 24px;
  margin-bottom: 40px;
}
.warning-banner__icon {
  flex-shrink: 0;
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--red), var(--red-2));
  color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 2rem;
  box-shadow: 0 0 0 6px rgba(255,77,94,.15), 0 12px 30px -10px rgba(255,77,94,.4);
}
.warning-banner h2 { margin: 6px 0 0; }

/* =================== GRID + CARDS =================== */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 880px) { .grid--2 { grid-template-columns: 1fr; } }

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}
.card--danger {
  border-color: rgba(255,77,94,.3);
  background: linear-gradient(180deg, var(--panel) 70%, var(--red-bg));
}
.card h3 { color: var(--text); margin-bottom: 18px; }

.checks { list-style: none; padding: 0; margin: 0 0 20px; }
.checks li {
  position: relative;
  padding: 14px 0 14px 36px;
  border-bottom: 1px solid var(--line);
  color: var(--text-soft);
}
.checks li:last-child { border-bottom: 0; }
.checks li b { color: var(--text); }
.checks--bad li::before {
  content: '✗';
  position: absolute;
  left: 0; top: 14px;
  width: 24px; height: 24px;
  background: var(--red);
  color: white;
  font-weight: 800;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.85rem;
}

.card__cta { margin-top: 24px; }

.vs {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}
.vs thead th {
  text-align: left;
  padding: 12px 14px;
  background: var(--bg-3);
  color: var(--text-dim);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.vs thead th:first-child { border-radius: var(--radius-s) 0 0 0; }
.vs thead th:last-child { border-radius: 0 var(--radius-s) 0 0; }
.vs tbody td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}
.vs tbody tr:last-child td { border-bottom: 0; }
.vs tbody td:first-child {
  color: var(--text-dim);
  font-style: italic;
}
.vs tbody td:last-child {
  color: var(--text);
  font-weight: 600;
}

.hint {
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-dim);
  padding: 12px 14px;
  background: var(--bg-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-s) var(--radius-s) 0;
}

/* =================== PROVIDER CARDS =================== */
.provider-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  transition: transform .2s, border-color .2s;
}
.provider-card:hover { border-color: var(--line-2); transform: translateY(-2px); }
.provider-card--gold {
  border-color: rgba(255,200,71,.35);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(180deg, var(--panel) 70%, rgba(255,200,71,.04));
}

.provider-card__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.provider-card__brand {
  display: flex; align-items: center; gap: 18px;
}
.provider-card__brand h3 {
  display: flex; align-items: center; gap: 10px;
  margin: 0 0 4px;
  flex-wrap: wrap;
}
.provider-card__brand p {
  color: var(--text-dim);
  margin: 0;
  font-size: 0.95rem;
}

.brand-mark {
  width: 64px; height: 64px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}
.brand-mark--cdc   { background: linear-gradient(135deg, #003cdb, #00081f); }
.brand-mark--nexo  { background: linear-gradient(135deg, #1e2f5a, #0d1428); }
.brand-mark--bybit { background: linear-gradient(135deg, #f7a600, #5b3700); color: #1a1200; }
.brand-mark--wirex { background: linear-gradient(135deg, #00e5ce, #006359); color: #001b18; }

.rating--big {
  text-align: center;
  padding: 6px 18px;
  border-left: 1px solid var(--line);
}
.rating__score {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--gold);
  font-family: 'JetBrains Mono', monospace;
  line-height: 1;
}
.rating__stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-top: 4px;
}
.rating--big small { color: var(--text-dim); font-size: 0.75rem; }

@media (max-width: 600px) {
  .rating--big { border-left: 0; padding: 0; }
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
@media (max-width: 700px) { .pros-cons { grid-template-columns: 1fr; } }
.pros-cons h4 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  margin-bottom: 12px;
  font-weight: 700;
}
.pros-cons div:first-child h4 { color: var(--green); }
.pros-cons div:last-child h4 { color: var(--red); }
.pros-cons ul { list-style: none; padding: 0; margin: 0; }
.pros-cons li {
  padding: 8px 0 8px 22px;
  position: relative;
  color: var(--text-soft);
  border-bottom: 1px dashed rgba(255,255,255,.04);
  font-size: 0.94rem;
}
.pros-cons li:last-child { border-bottom: 0; }
.pros-cons div:first-child li::before {
  content: '+';
  position: absolute; left: 0; top: 8px;
  color: var(--green); font-weight: 800;
}
.pros-cons div:last-child li::before {
  content: '−';
  position: absolute; left: 0; top: 8px;
  color: var(--red); font-weight: 800;
}

.specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 0;
  padding: 18px;
  background: var(--bg-2);
  border-radius: var(--radius-s);
  border: 1px solid var(--line);
}
@media (max-width: 700px) { .specs { grid-template-columns: repeat(2, 1fr); } }
.specs > div { text-align: center; }
.specs dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 4px;
}
.specs dd {
  margin: 0;
  font-weight: 700;
  color: var(--text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88rem;
}

/* =================== CRITERIA =================== */
.criteria {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .criteria { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .criteria { grid-template-columns: 1fr; } }
.crit {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform .15s, border-color .15s;
}
.crit:hover {
  transform: translateY(-3px);
  border-color: rgba(255,200,71,.3);
}
.crit__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}
.crit h3 { font-size: 1.1rem; margin-bottom: 8px; }
.crit p { font-size: 0.92rem; margin: 0; }

/* =================== FAQ =================== */
.faq {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color .15s;
}
.faq:hover { border-color: var(--line-2); }
.faq[open] { border-color: rgba(255,200,71,.3); }
.faq summary {
  cursor: pointer;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--text);
  list-style: none;
  position: relative;
  padding-right: 56px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  background: var(--bg-3);
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.2rem;
  color: var(--gold);
  font-weight: 700;
  transition: transform .15s;
}
.faq[open] summary::after { content: '−'; }
.faq > div {
  padding: 0 22px 22px;
  color: var(--text-soft);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: -1px;
}
.faq > div p { margin: 0; }

/* =================== FINAL CTA =================== */
.cta-final {
  padding: 80px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255,200,71,.08), transparent 70%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.cta-final h2 { margin-bottom: 14px; }
.cta-final p {
  max-width: 600px; margin: 0 auto 30px;
  color: var(--text-soft);
  font-size: 1.05rem;
}

/* =================== FOOTER =================== */
.site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 60px 0 24px;
  color: var(--text-soft);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 820px) { .footer__grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: var(--text); margin-bottom: 14px; font-size: 1rem; }
.site-footer p { font-size: 0.9rem; margin: 0; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: var(--text-soft); font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold); }

.footer__legal {
  display: flex;
  gap: 28px;
  padding: 20px 0;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  justify-content: center;
}
.footer__legal a {
  color: var(--text);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: border-color .15s, color .15s;
}
.footer__legal a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
  text-decoration: none;
}

.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 24px;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* =================== A11Y / MOTION =================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

::selection { background: var(--gold); color: #1a1200; }

/* =================== TIMELINE (Meine Geschichte) =================== */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 27px; top: 18px; bottom: 18px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), var(--red) 60%, var(--line));
  opacity: 0.4;
}
.timeline__step {
  display: flex;
  gap: 22px;
  padding-bottom: 32px;
  position: relative;
}
.timeline__step:last-child { padding-bottom: 0; }
.timeline__marker {
  flex-shrink: 0;
  width: 56px; height: 56px;
  background: var(--panel);
  border: 2px solid var(--gold);
  color: var(--gold);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: 1rem;
  z-index: 2;
  box-shadow: 0 0 0 6px var(--bg);
}
.timeline__marker--alert {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-bg);
  box-shadow: 0 0 0 6px var(--bg), 0 0 24px rgba(255, 77, 94, 0.4);
}
.timeline__content {
  flex: 1;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 28px;
}
.timeline__step--alert .timeline__content {
  border-color: rgba(255, 77, 94, 0.35);
  background: linear-gradient(180deg, var(--panel) 70%, rgba(255, 77, 94, 0.08));
}
.timeline__content h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
  color: var(--text);
}
.timeline__content p { margin: 0 0 12px; }
.timeline__content p:last-child { margin-bottom: 0; }
.timeline__content strong { color: var(--text); }
.timeline__content em {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}

.callout {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-s);
  font-size: 0.93rem;
  border-left: 4px solid;
}
.callout--danger {
  background: rgba(255, 77, 94, 0.08);
  border-color: var(--red);
  color: var(--text);
}
.callout--info {
  background: rgba(74, 215, 255, 0.06);
  border-color: var(--cyan);
  color: var(--text);
  margin-top: 32px;
  padding: 20px 22px;
}
.callout strong { color: var(--text); }

.story-cta {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* =================== STEPS (Was tun?) =================== */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.steps li {
  background: var(--panel);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-s);
  padding: 22px 26px;
  margin-bottom: 16px;
  transition: transform .15s, border-color .15s;
}
.steps li:hover {
  transform: translateX(4px);
  border-left-color: var(--gold-2);
}
.steps h3 {
  margin: 0 0 8px;
  color: var(--text);
  font-size: 1.1rem;
}
.steps p { margin: 0; }
.steps strong { color: var(--text); }
.steps em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

/* =================== ABOUT-BOX =================== */
.about-box {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
@media (max-width: 700px) {
  .about-box { flex-direction: column; align-items: center; text-align: center; }
}
.about-box__avatar { flex-shrink: 0; }
.about-box h2 { margin: 6px 0 14px; }
.about-box p { margin-bottom: 12px; }
.about-box strong { color: var(--text); }
.about-box__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--text-dim);
}
.about-box__meta strong { color: var(--text); }

/* =================== SOURCES =================== */
.sources {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sources li {
  padding: 16px 20px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  margin-bottom: 10px;
  font-size: 0.95rem;
}
.sources li strong { color: var(--text); margin-right: 8px; }
.sources li a {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.88rem;
  word-break: break-all;
}

/* =================== LEGAL PAGES =================== */
.legal {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px 44px;
  box-shadow: var(--shadow);
}
@media (max-width: 600px) {
  .legal { padding: 28px 22px; }
}
.legal h2 {
  font-size: 1.35rem;
  color: var(--gold);
  margin: 32px 0 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { border-top: 0; padding-top: 0; margin-top: 0; }
.legal h3 {
  font-size: 1.05rem;
  color: var(--text);
  margin: 20px 0 8px;
}
.legal p, .legal ul, .legal li { color: var(--text-soft); }
.legal ul { padding-left: 20px; margin-bottom: 14px; }
.legal li { margin-bottom: 6px; }
.legal strong { color: var(--text); }
.legal em { color: var(--gold); font-style: italic; }
.legal a { color: var(--gold); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.legal a:hover { color: var(--gold-2); }
.legal__note {
  display: block;
  margin-top: 4px;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
}
.legal__source {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--text-dim);
  font-style: italic;
}

/* =================== EVIDENCE BLOCK =================== */
.evidence {
  background: linear-gradient(180deg, var(--panel) 0%, var(--red-bg) 100%);
  border: 1px solid rgba(255, 77, 94, 0.35);
  border-left: 6px solid var(--red);
  border-radius: var(--radius);
  padding: 36px 40px;
  margin: 32px 0;
  box-shadow: 0 24px 60px -20px rgba(255, 77, 94, 0.2), var(--shadow);
  position: relative;
}
@media (max-width: 600px) {
  .evidence { padding: 24px 22px; }
}
.evidence__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}
.evidence__seal {
  width: 60px; height: 60px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.1;
  text-align: center;
  box-shadow: 0 0 0 6px rgba(255, 77, 94, 0.15), 0 8px 20px -6px rgba(255, 77, 94, 0.4);
  flex-shrink: 0;
}
.evidence__title {
  flex: 1;
  min-width: 200px;
}
.evidence__title h3 {
  margin: 0 0 4px;
  font-size: 1.35rem;
  color: var(--text);
}
.evidence__title small {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.evidence__meta {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 14px 18px;
  margin-bottom: 20px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.8;
}
.evidence__meta strong {
  color: var(--text);
  display: inline-block;
  min-width: 110px;
}

.evidence__quote {
  background: #0a0d13;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius-s);
  padding: 18px 22px;
  margin: 0 0 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.94rem;
  line-height: 1.7;
  color: #e9d39a;
  white-space: pre-line;
  overflow-x: auto;
}
.evidence__quote-label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-dim);
  margin-bottom: 14px;
}
.evidence__verdict {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}
.evidence__verdict > div {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  padding: 14px 18px;
}
.evidence__verdict h4 {
  margin: 0 0 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--red);
}
.evidence__verdict p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-soft);
}
.evidence__footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
}
.evidence__footer strong {
  color: var(--text);
  font-style: normal;
}

/* =================== BREADCRUMBS =================== */
.breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 0.85rem;
  font-family: 'JetBrains Mono', monospace;
  color: var(--text-dim);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}
.breadcrumb a {
  color: var(--text-dim);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb span:not(:has(a)) {
  color: var(--gold);
}
.breadcrumb > span:nth-child(2n) {
  opacity: 0.5;
}

