/* ============================================================
   OVERDRAFT — shared site design system
   Ink / Paper / Red base (studio-constant), one accent per title.
   ============================================================ */

/* Selbst gehostet: keine Besucher-IP geht an Google (vgl. LG München I, 3 O 17493/20),
   und kein serialisierter @import-Wasserfall vor dem ersten Text.
   Archivo + Inter sind Variable Fonts (wght 100-900) - eine Datei pro Familie. */

@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-var.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Mono';
  src: url('../fonts/SpaceMono-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Space Mono';
  src: url('../fonts/SpaceMono-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --ink: #0d0d0f;
  --ink-2: #16161a;
  --ink-3: #1d1d22;
  --paper: #ece8e1;
  --paper-dim: rgba(236,232,225,0.68);
  --muted: #86827d;
  --od-red: #d6332a;
  --od-red-deep: #8f1d18;
  --line: rgba(236,232,225,0.09);
  --line-2: rgba(236,232,225,0.16);

  /* default accent = studio red; game pages override */
  --accent: var(--od-red);
  --accent-deep: var(--od-red-deep);
  --accent-ink: #fff;

  --disp: 'Archivo', sans-serif;
  --mono: 'Space Mono', monospace;
  --body: 'Inter', sans-serif;

  --maxw: 1080px;
}

[data-game="clean-money"] {
  --accent: #c8872a;
  --accent-deep: #7a4f14;
  --accent-ink: #17120a;
}

[data-game="ember"] {
  --accent: #f26522;
  --accent-deep: #9a3c0f;
  --accent-ink: #1a0e08;
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

.mono { font-family: var(--mono); }

.eyebrow, .sec-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: block;
}

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(13,13,15,0.97);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px; gap: 1rem;
}
.brand-lockup { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  font-family: var(--disp); font-weight: 900; font-size: 1.05rem;
  letter-spacing: -0.02em; text-transform: uppercase; color: var(--paper);
  position: relative; padding-right: 10px;
}
.brand-mark::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 5px; height: 5px; border-radius: 50%; background: var(--od-red);
  box-shadow: 0 0 8px var(--od-red);
}
.brand-sub {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em;
  color: var(--muted); text-transform: uppercase; display: none;
}
@media (min-width: 560px) { .brand-sub { display: inline; } }

.nav-toggle { display: none; }
.nav-toggle-label {
  display: none; cursor: pointer; width: 26px; height: 20px; position: relative;
}
.nav-toggle-label span, .nav-toggle-label::before, .nav-toggle-label::after {
  content: ''; position: absolute; left: 0; right: 0; height: 2px; background: var(--paper);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle-label::before { top: 0; }
.nav-toggle-label span { top: 9px; }
.nav-toggle-label::after { bottom: 0; }

.site-nav { display: flex; align-items: center; gap: 1.75rem; }
.nav-links { display: flex; align-items: center; gap: 1.75rem; }
.nav-links a {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--paper-dim);
  padding-bottom: 2px; border-bottom: 1px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--paper); border-color: var(--accent); }

.lang-switch {
  display: flex; align-items: center; gap: 2px;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  border: 1px solid var(--line-2); border-radius: 20px; padding: 3px;
}
.lang-switch a {
  padding: 4px 10px; border-radius: 16px; color: var(--muted); text-transform: uppercase;
  transition: background .15s ease, color .15s ease;
}
.lang-switch a.active { background: var(--paper); color: var(--ink); }
.lang-switch a:not(.active):hover { color: var(--paper); }

@media (max-width: 760px) {
  .nav-toggle-label { display: block; }
  .site-nav {
    position: fixed; inset: 64px 0 0 0; background: var(--ink);
    flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem;
    gap: 2rem; transform: translateX(100%); transition: transform .25s ease;
    overflow-y: auto;
  }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 1.4rem; }
  .nav-links a { font-size: 13px; }
  .nav-toggle:checked ~ .site-nav { transform: translateX(0); }
  .nav-toggle:checked ~ .nav-toggle-label span { opacity: 0; }
  .nav-toggle:checked ~ .nav-toggle-label::before { transform: translateY(9px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-toggle-label::after { transform: translateY(-9px) rotate(-45deg); }
}

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 62vh; display: flex; flex-direction: column;
  justify-content: center; padding: 4.5rem 0 3.5rem; overflow: hidden;
}
/* Mobil den ganzen ersten Screen beanspruchen. svh statt vh: vh ist auf
   mobilen Browsern der GROSSE Viewport und wird von der URL-Leiste gefressen. */
@media (max-width: 720px) {
  .hero { min-height: 100svh; }
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center;
}
/* Oben leicht, damit das Artwork sichtbar bleibt; schwer erst dort, wo Text sitzt. */
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(13,13,15,0.28) 0%,
    rgba(13,13,15,0.42) 38%,
    rgba(13,13,15,0.88) 78%,
    var(--ink) 100%);
}
.hero.glow { background: radial-gradient(ellipse 62% 55% at 50% 38%, rgba(214,51,42,0.16) 0%, transparent 70%); }
.hero.strata {
  background: linear-gradient(180deg, #F2EBDA 0%, #E8E4D8 6%, #C9A24B 13%, #8A6E3A 20%,
    #3A3F47 34%, #24282E 52%, #14171B 72%, var(--ink) 100%);
  min-height: 92vh; justify-content: flex-end; padding-bottom: 4rem;
}
.hero.strata::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(13,13,15,0) 0%, rgba(13,13,15,0.1) 38%, rgba(13,13,15,0.8) 76%, var(--ink) 100%);
}
.spark-glow {
  position: absolute; left: 50%; bottom: 8%; width: min(58vw, 480px); height: min(58vw, 480px);
  transform: translateX(-50%); border-radius: 50%; z-index: 1; filter: blur(8px);
  background: radial-gradient(circle, rgba(242,101,34,.85) 0%, rgba(246,178,60,.4) 24%, rgba(242,101,34,.1) 48%, transparent 68%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-kicker {
  display: inline-flex; align-items: center; gap: 10px; margin-bottom: 1.4rem;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--accent);
}
.hero-kicker .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--accent); }
.hero h1 {
  font-family: var(--disp); font-weight: 900; font-size: clamp(2.6rem, 8vw, 5.4rem);
  line-height: 0.92; letter-spacing: -0.02em; text-transform: uppercase; color: var(--paper);
  max-width: 900px;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-lede {
  margin-top: 1.4rem; max-width: 620px; font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--paper-dim);
}
.hero-lede b { color: var(--paper); font-weight: 500; }

/* Der Hero-Scrim ist oben bewusst leicht, damit das Artwork zu sehen ist.
   Der Preis waere Lesbarkeit ueber dem unruhigen Bild - daher Textschatten
   statt eines schwereren Scrims. Nur dort, wo ein Bild liegt. */
.hero:has(.hero-bg) .hero-kicker,
.hero:has(.hero-bg) h1,
.hero:has(.hero-bg) .hero-lede {
  text-shadow: 0 1px 14px rgba(13,13,15,0.92), 0 1px 3px rgba(13,13,15,0.8);
}
.hero:has(.hero-bg) .hero-lede { color: rgba(236,232,225,0.86); }
.hero-app-tile { display: flex; align-items: center; gap: 14px; margin-top: 1.8rem; }
.icon-chip { width: 56px; height: 56px; border-radius: 14px; overflow: hidden; border: 1px solid var(--line-2); flex: 0 0 auto; }
.hero-app-tile .iat-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em; color: var(--muted); text-transform: uppercase; }
.hero-app-tile .iat-name { font-family: var(--disp); font-weight: 700; font-size: 1.02rem; margin-top: 2px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 1.8rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 2rem; }

.badge {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--paper-dim); border: 1px solid var(--line-2); border-radius: 4px; padding: 6px 10px;
  display: inline-flex; align-items: center; gap: 6px;
}
.badge.accent { color: var(--accent-ink); background: var(--accent); border-color: var(--accent); font-weight: 700;}
.badge .dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

.btn {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--mono);
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; padding: 13px 22px;
  border-radius: 3px; border: 1px solid var(--line-2); transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); border-color: var(--accent); }
.btn.primary { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); font-weight: 700; }
.btn.primary:hover { filter: brightness(1.08); }
.btn:focus-visible, summary:focus-visible, a:focus-visible {
  outline: 2px solid var(--accent); outline-offset: 3px;
}

/* ---------- CTA ---------- */
/* Der eine Konversionsweg: Play-Vorregistrierung.
   data-cta="pending" = URL noch nicht via configure.sh gesetzt. Bewusst
   auffaellig kaputt, damit kein toter Button versehentlich live geht. */

.btn.cta {
  font-size: 13px; padding: 17px 30px; font-weight: 700;
  background: var(--accent); border-color: var(--accent); color: var(--accent-ink);
  box-shadow: 0 2px 0 rgba(0,0,0,.35);
}
.btn.cta:hover { filter: brightness(1.09); transform: translateY(-1px); }
.btn.cta .gp { font-size: 15px; line-height: 1; }

.btn.cta[data-cta="pending"] {
  background: transparent; color: var(--muted);
  border: 1px dashed var(--muted); box-shadow: none;
  cursor: not-allowed; pointer-events: none;
  flex-wrap: wrap; justify-content: center;
}
/* Hinweis bricht auf eine eigene Zeile, statt den Label-Text zu zerdruecken. */
.btn.cta[data-cta="pending"]::after {
  content: 'configure.sh --prereg fehlt';
  flex: 0 0 100%; text-align: center;
  font-size: 8.5px; letter-spacing: .04em; opacity: .8; text-transform: none;
}
/* In der schmalen Sticky-Leiste waere der Hinweis nur Rauschen. */
.sticky-cta .btn.cta[data-cta="pending"]::after { content: none; }

.cta-micro {
  margin-top: 10px; font-family: var(--mono); font-size: 10px;
  letter-spacing: .08em; color: var(--muted); text-transform: uppercase;
}

/* Grosser Abschluss-Block */
.cta-block {
  border-top: 1px solid var(--line);
  padding: 4.5rem 0;
  background: radial-gradient(ellipse 70% 120% at 50% 100%, rgba(214,51,42,.10) 0%, transparent 70%);
}
.cta-block .wrap { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.cta-block h2 {
  font-family: var(--disp); font-weight: 900; font-size: clamp(1.6rem, 4.4vw, 2.6rem);
  line-height: 1.06; letter-spacing: -.02em; text-transform: uppercase; max-width: 18ch;
}
.cta-block p { color: var(--paper-dim); max-width: 52ch; }
.cta-block .btn.cta { margin-top: .6rem; }

/* Inline-CTA innerhalb einer FAQ-Antwort */
.cta-inline {
  margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: flex-start; gap: 2px;
}

/* Sticky-Leiste, mobil, sobald der Hero raus ist */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; align-items: center; justify-content: space-between; gap: 12px;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(13,13,15,0.97); border-top: 1px solid var(--line-2);
}
.sticky-cta .sc-label {
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); line-height: 1.35;
}
.sticky-cta .btn { padding: 11px 18px; flex: 0 0 auto; }
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  body.has-sticky-cta { padding-bottom: 74px; }
}

/* ---------- SECTIONS ---------- */
.sec { padding: 4rem 0; border-top: 1px solid var(--line); }
.sec.tight { padding: 2.5rem 0; }
/* Zwischenueberschrift innerhalb einer Sektion (h3 - schliesst die
   Heading-Luecke h2 -> h4, die vorher uebersprungen wurde) */
.sub-head {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--accent);
  margin: 2.8rem 0 1.2rem; padding-bottom: .7rem;
  border-bottom: 1px solid var(--line-2);
}
.sec-head + .sub-head { margin-top: 0; }
.sec-title {
  font-family: var(--disp); font-weight: 700; font-size: clamp(1.5rem, 3.6vw, 2.2rem);
  letter-spacing: -0.01em; margin-bottom: 0.9rem; max-width: 720px;
}
.sec-body { font-size: 1rem; color: var(--paper-dim); max-width: 640px; line-height: 1.8; }
.sec-body + .sec-body { margin-top: 0.9rem; }
.sec-body b { color: var(--paper); font-weight: 500; }
.sec-head { margin-bottom: 2.2rem; }

/* ---------- GAME CARDS (studio home) ---------- */
.game-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 2rem; }
@media (min-width: 760px) { .game-grid { grid-template-columns: 1fr 1fr; } }
.game-card {
  position: relative; display: block; border: 1px solid var(--line-2); padding: 1.8rem;
  overflow: hidden; transition: transform .2s ease, border-color .2s ease;
  background: var(--ink-2);
}
.game-card::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 3px; background: var(--gc-accent); }
.game-card:hover { transform: translateY(-3px); border-color: var(--gc-accent); }
.game-card .gc-status {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}
.game-card h3 {
  font-family: var(--disp); font-weight: 900; font-size: 2rem; text-transform: uppercase;
  letter-spacing: -0.02em; color: var(--gc-accent); margin: 0.5rem 0 0.6rem;
}
.game-card p { color: var(--paper-dim); font-size: 0.95rem; max-width: 46ch; }
.game-card .gc-more {
  margin-top: 1.2rem; font-family: var(--mono); font-size: 11px; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--paper);
}
.game-card.cm { --gc-accent: #c8872a; }
.game-card.em { --gc-accent: #f26522; }

/* ---------- FEATURE GRID ---------- */
.feature-grid { display: grid; grid-template-columns: 1fr; gap: 1px; margin-top: 2rem; background: var(--line); }
@media (min-width: 640px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 960px) { .feature-grid { grid-template-columns: repeat(3, 1fr); } }
.feature {
  background: var(--ink); padding: 1.6rem 1.5rem;
}
.feature .f-num { font-family: var(--mono); font-size: 11px; color: var(--accent); margin-bottom: 0.7rem; display:block; }
.feature h4 { font-family: var(--disp); font-weight: 700; font-size: 1.05rem; margin-bottom: 0.5rem; }
.feature p { font-size: 0.9rem; color: var(--paper-dim); }

/* ---------- LADDER / LIST ROWS ---------- */
.row-list { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 2px; }
.row-item {
  display: grid; grid-template-columns: 2.4rem 1fr; gap: 1rem; align-items: baseline;
  padding: 0.9rem 1rem; background: var(--ink-2); border-left: 2px solid transparent;
}
.row-item .r-idx { font-family: var(--mono); font-size: 0.85rem; color: var(--accent); }
.row-item .r-name { font-family: var(--disp); font-weight: 700; font-size: 1rem; }
.row-item .r-desc { font-size: 0.85rem; color: var(--paper-dim); margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq-group { margin-top: 2.6rem; }
.faq-group:first-of-type { margin-top: 1.4rem; }
.faq-group-title {
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.6rem; padding-bottom: 0.8rem; border-bottom: 1px solid var(--line-2);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1.15rem 0.1rem; font-family: var(--disp); font-weight: 700;
  font-size: clamp(0.98rem, 1.6vw, 1.12rem); color: var(--paper);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; font-family: var(--mono); font-weight: 400; font-size: 1.3rem; color: var(--accent);
  flex: 0 0 auto; transition: transform .2s ease;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-a { padding: 0 0.1rem 1.4rem; max-width: 66ch; color: var(--paper-dim); font-size: 0.96rem; line-height: 1.8; }
.faq-a p + p { margin-top: 0.8rem; }
.faq-a b { color: var(--paper); font-weight: 500; }
.faq-a .aside { color: var(--muted); font-size: 0.9rem; font-style: italic; }

/* Epigraph: eine Stimme pro Gruppe. Steht bewusst NEBEN keiner Antwort —
   Charme darf nie eine Preis-, Termin- oder Altersfrage beantworten. */
.faq-epigraph {
  margin: 0.9rem 0 0.4rem; max-width: 52ch;
  font-family: var(--disp); font-weight: 500; font-style: italic;
  font-size: clamp(0.98rem, 2vw, 1.15rem); line-height: 1.5; color: var(--paper-dim);
  border-left: 2px solid var(--accent); padding-left: 1rem;
}

/* ---------- MEDIA ---------- */
/* Screenshot-Raster. Bis echte Shots da sind, rendern die Slots als
   sichtbare Leerstellen — nicht als Fake-Bilder. */
.shot-grid {
  display: grid; gap: 12px; margin-top: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.shot {
  aspect-ratio: 9 / 16; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--line-2); background: var(--ink-2);
  position: relative; display: flex; align-items: center; justify-content: center;
}
.shot img { width: 100%; height: 100%; object-fit: cover; }
.shot.empty { border-style: dashed; }
.shot.empty::after {
  content: attr(data-slot); font-family: var(--mono); font-size: 9px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
  text-align: center; padding: 0 10px; line-height: 1.6;
}
.shot-cap {
  margin-top: 8px; font-family: var(--mono); font-size: 9.5px;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}

/* Loop-Video: das eine Asset, das den Heat-Meter fuehlbar macht */
.loop-frame {
  margin-top: 1.8rem; border: 1px solid var(--line-2); border-radius: 10px;
  overflow: hidden; background: var(--ink-2); aspect-ratio: 16 / 10;
  display: flex; align-items: center; justify-content: center;
}
.loop-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.loop-frame.empty { border-style: dashed; }
.loop-frame.empty p {
  font-family: var(--mono); font-size: 10px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted); text-align: center;
  max-width: 34ch; line-height: 1.9; padding: 1rem;
}
.faq-a code { font-family: var(--mono); font-size: 0.85em; background: var(--ink-2); padding: 1px 5px; border-radius: 3px; color: var(--accent); }

.feature-grid.two { grid-template-columns: 1fr; }
@media (min-width: 640px) { .feature-grid.two { grid-template-columns: 1fr 1fr; } }

/* ---------- DUO GRID (Regime vs. Widerstand / Keep vs. Avoid) ---------- */
.duo-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 2rem; }
@media (min-width: 700px) { .duo-grid { grid-template-columns: 1fr 1fr; } }
.duo-col { border: 1px solid var(--line-2); background: var(--ink-2); padding: 1.6rem 1.7rem; border-top: 3px solid var(--duo-c, var(--accent)); }
.duo-col h5 {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--duo-c, var(--accent)); margin-bottom: 1rem;
}
.duo-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.duo-col li { position: relative; padding-left: 20px; font-size: 0.9rem; color: var(--paper-dim); }
.duo-col.keep li::before { content: '+'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }
.duo-col.avoid li::before { content: '×'; position: absolute; left: 0; color: #c6606a; font-weight: 700; }
.duo-col.avoid { --duo-c: #c6606a; }

/* ---------- CALLOUT ---------- */
.callout {
  margin-top: 1rem; border: 1px solid var(--line-2); border-left: 3px solid var(--accent);
  background: var(--ink-2); padding: 1.1rem 1.3rem; font-size: 0.9rem; color: var(--paper-dim);
}
.callout b { color: var(--paper); }

/* ---------- FOOTER ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 2.6rem 0; }
.site-footer .wrap { display: flex; flex-direction: column; gap: 1rem; }
.footer-top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.4rem; align-items: center; }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 1.2rem;
  font-family: var(--mono); font-size: 11px; letter-spacing: .1em;
  text-transform: uppercase; color: var(--paper-dim);
  padding-bottom: .4rem; border-bottom: 1px solid var(--line);
}
.footer-links a:hover { color: var(--accent); }
.footer-note {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; color: var(--muted);
  text-transform: uppercase; line-height: 1.9;
}

/* ---------- UTIL ---------- */
.center { text-align: center; }
.mt-lg { margin-top: 3rem; }

/* ---------- RECHTSTEXTE / LANGFORM ---------- */
.legal { padding: 3rem 0 4rem; }
.legal .wrap { max-width: 780px; }
.legal h1 {
  font-family: var(--disp); font-weight: 900; font-size: clamp(1.8rem, 5vw, 2.6rem);
  text-transform: uppercase; letter-spacing: -.02em; margin-bottom: .5rem;
}
.legal h2 {
  font-family: var(--disp); font-weight: 700; font-size: 1.15rem;
  margin: 2.4rem 0 .7rem; color: var(--paper);
}
.legal h3 {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin: 1.6rem 0 .5rem;
}
.legal p, .legal li { color: var(--paper-dim); font-size: .95rem; line-height: 1.8; }
.legal p + p { margin-top: .8rem; }
.legal ul { margin: .6rem 0 0 1.1rem; list-style: disc; }
.legal li { margin-bottom: .35rem; }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal .updated {
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 2rem;
}

/* Auszufuellende Stelle - im Browser unuebersehbar, damit nichts
   Unausgefuelltes versehentlich live geht. */
.fill {
  background: rgba(214,51,42,.16); border: 1px dashed var(--od-red);
  color: var(--paper); font-family: var(--mono); font-size: .85em;
  padding: .1em .45em; border-radius: 2px; font-style: normal;
}
.fill-note {
  border-left: 3px solid var(--od-red); background: var(--ink-2);
  padding: 1rem 1.2rem; margin: 1.4rem 0;
  font-size: .9rem; color: var(--paper-dim);
}
.fill-note b { color: var(--od-red); }
