/* KI-Telefonsex — "Nachtleitung": Switchboard-Editorial. */

/* ---------- Token ---------- */
:root {
  --bg: #0b0708;
  --bg-2: #140d0f;
  --bg-3: #1c1315;
  --bg-tief: #080506;
  --ink: #f4ece8;
  --ink-2: #c2a9a3;
  --ink-3: #8a736f;
  --line: rgba(244, 236, 232, .12);
  --line-2: rgba(244, 236, 232, .26);
  --heat: #ef5d70;
  --heat-hi: #ff8391;
  --heat-tief: #9b2d45;
  --signal: #d9973c;
  --auf-heat: #1b0508;
  --font-display: "Big Shoulders Display", "Arial Narrow", sans-serif;
  --font-body: "Instrument Sans", system-ui, sans-serif;
  --font-mono: "DM Mono", ui-monospace, "SF Mono", Menlo, monospace;
  --rand: 1.25rem;
  --breit: 1240px;
}
@media (max-width: 519px) { :root { --rand: .95rem; } }
@media (min-width: 900px) { :root { --rand: 2.5rem; } }

/* ---------- Schrift ---------- */
@font-face { font-family: "Big Shoulders Display"; src: url("/fonts/bigshoulders-700.woff2") format("woff2"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Big Shoulders Display"; src: url("/fonts/bigshoulders-800.woff2") format("woff2"); font-weight: 800; font-display: swap; }
@font-face { font-family: "Instrument Sans"; src: url("/fonts/instrumentsans-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Instrument Sans"; src: url("/fonts/instrumentsans-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }
@font-face { font-family: "Instrument Sans"; src: url("/fonts/instrumentsans-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }
@font-face { font-family: "DM Mono"; src: url("/fonts/dmmono-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "DM Mono"; src: url("/fonts/dmmono-500.woff2") format("woff2"); font-weight: 500; font-display: swap; }

/* ---------- Basis ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.55;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--heat); text-decoration: none; }
a:hover { color: var(--heat-hi); }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, .gate-title {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: .9;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}
p { margin: 0; }
::selection { background: var(--heat); color: var(--auf-heat); }
:focus-visible { outline: 2px solid var(--heat); outline-offset: 2px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
.wrap { min-height: 100dvh; }
.inner { max-width: var(--breit); margin: 0 auto; }
.korn {
  position: absolute; inset: 0; pointer-events: none; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Kleinschrift / Labels ---------- */
.kicker, .mono {
  font-family: var(--font-mono);
  font-size: .69rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin: 0;
}
.kicker { color: var(--heat); }
.mono { color: var(--ink-3); }
.secnum { font-family: var(--font-mono); font-size: .69rem; letter-spacing: .24em; text-transform: uppercase; color: var(--heat); margin: 0; }
.lead { color: var(--ink-2); font-size: 1.06rem; max-width: 38rem; margin: 0; text-wrap: pretty; }
.fine { color: var(--ink-3); font-size: .85rem; }
.heat { color: var(--heat); }
.punkt {
  width: 7px; height: 7px; border-radius: 50%; background: var(--signal);
  box-shadow: 0 0 0 3px rgba(217,151,60,.16); flex: 0 0 auto;
}

/* ---------- Statusleiste ---------- */
.statusbar {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 38px; padding: .4rem var(--rand);
  border-bottom: 1px solid var(--line);
  background: var(--bg-tief);
  position: relative; z-index: 45;
}
.statusbar > * { display: flex; align-items: center; gap: .6rem; }
.statusbar .frei { color: var(--signal); }
.statusbar .mitte, .statusbar .rechts { display: none; }
@media (min-width: 760px) { .statusbar .mitte { display: flex; } }
@media (min-width: 1040px) { .statusbar .rechts { display: flex; } }

/* ---------- Kopf ---------- */
.brand {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 68px; padding: .6rem var(--rand);
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  position: relative; z-index: 40;
}
@media (min-width: 900px) { .brand { min-height: 88px; } }
.brand a { color: var(--ink); }
.wortmarke { display: inline-flex; align-items: center; gap: .55rem; }
.wortmarke svg { display: block; flex: 0 0 auto; width: 22px; height: 22px; }
@media (min-width: 900px) { .wortmarke svg { width: 26px; height: 26px; } }
.wortmarke b {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.2rem, 3.4vw, 1.7rem);
  text-transform: uppercase; letter-spacing: .01em; line-height: 1;
}
.wortmarke i { color: var(--heat); font-style: normal; }
.brand-nav { display: flex; align-items: center; gap: 1.1rem; }
.brand-nav a { color: var(--ink-2); font-size: .95rem; font-weight: 500; }
.brand-nav a:hover { color: var(--ink); }
.brand-nav a.btn { color: var(--auf-heat); font-weight: 600; min-height: 46px; padding: .6rem 1.3rem; }
.brand-nav a.btn:hover { color: var(--auf-heat); }
.brand-nav .nur-breit { display: none; }
@media (min-width: 860px) { .brand-nav { gap: 1.6rem; } .brand-nav .nur-breit { display: inline-flex; } }
.brand span { color: var(--ink-3); font-family: var(--font-mono); font-size: .69rem; letter-spacing: .16em; text-transform: uppercase; }
/* Alt-Wortmarke (Journal-Seiten) bleibt nutzbar */
.brand-mark { height: clamp(1.7rem, 4.4vw, 2.3rem); width: auto; object-fit: contain; object-position: left center; }
.gate-mark { display: none; }

/* ---------- Aktionen ---------- */
button, .btn {
  appearance: none; border: 0; border-radius: 0;
  background: var(--heat); color: var(--auf-heat);
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: 56px; padding: .9rem 1.6rem;
  cursor: pointer; text-align: center;
  transition: background .15s ease, transform .15s ease;
}
button:hover, .btn:hover { background: var(--heat-hi); color: var(--auf-heat); transform: translateY(-1px); }
button svg, .btn svg { flex: 0 0 auto; }
.ghost {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 56px; padding: .9rem 1.4rem;
  border: 1px solid var(--line-2); background: transparent;
  color: var(--ink-2); font-weight: 500;
  transition: border-color .15s ease, color .15s ease;
}
.ghost:hover { border-color: var(--heat); color: var(--ink); transform: none; }
.cta-row { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 1.4rem; align-items: center; }
.actions { display: flex; gap: .7rem; flex-wrap: wrap; }
.btn-rot {
  border: 1px solid var(--heat); background: rgba(239,93,112,.10); color: var(--heat);
  font-family: var(--font-display); font-weight: 800; font-size: 1.35rem;
  text-transform: uppercase; letter-spacing: .02em;
}
.btn-rot:hover { background: rgba(239,93,112,.18); color: var(--heat); }
.btn-rot::before { content: ""; width: 10px; height: 10px; background: var(--heat); flex: 0 0 auto; }

/* ---------- Pegel ---------- */
.vu { display: flex; align-items: flex-end; gap: 3px; height: 20px; }
.vu i { display: block; width: 3px; background: var(--heat); transform-origin: bottom; animation: vu 1.1s ease-in-out infinite; }
.vu i:nth-child(1) { height: 8px; }
.vu i:nth-child(2) { height: 16px; animation-delay: .13s; }
.vu i:nth-child(3) { height: 11px; animation-delay: .26s; }
.vu i:nth-child(4) { height: 20px; animation-delay: .39s; }
.vu i:nth-child(5) { height: 13px; animation-delay: .52s; }
.vu i:nth-child(6) { height: 18px; animation-delay: .65s; }
.vu i:nth-child(7) { height: 9px;  animation-delay: .78s; }
.vu i:nth-child(8) { height: 15px; animation-delay: .91s; }
@keyframes vu { 0%, 100% { transform: scaleY(.3); } 50% { transform: scaleY(1); } }

/* ---------- 18+ Tür ---------- */
#gate {
  min-height: 100dvh;
  display: grid; place-content: center;
  padding: 3rem var(--rand);
  text-align: center;
  position: relative;
  background:
    radial-gradient(70% 55% at 50% 0%, rgba(239,93,112,.20), transparent 62%),
    radial-gradient(50% 40% at 82% 96%, rgba(217,151,60,.10), transparent 66%),
    var(--bg);
}
#gate .wortmarke { justify-content: center; margin-bottom: 1.6rem; }
#gate .wortmarke svg { width: 34px; height: 34px; }
#gate .wortmarke b { font-size: clamp(1.9rem, 7vw, 3.4rem); }
#gate > .kicker { display: inline-flex; align-items: center; gap: 1rem; justify-content: center; margin-bottom: 1rem; }
#gate > .kicker::before, #gate > .kicker::after { content: ""; width: 3rem; height: 1px; background: var(--line-2); }
#gate h1, #gate .gate-title {
  font-size: clamp(2.2rem, 8vw, 3.9rem);
  margin: 0 0 1rem;
  max-width: 20ch;
  margin-inline: auto;
}
#gate .lead { margin: 0 auto 2.4rem; font-size: 1.12rem; }
.gate { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; margin: 0 0 2.6rem; align-items: center; }
.gate .ghost { border-color: transparent; color: var(--ink-3); }
.gate .ghost:hover { color: var(--ink-2); border-color: var(--line); }
.tuer-fakten {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border: 1px solid var(--line); background: rgba(8,5,6,.6);
  text-align: left; max-width: 46rem; margin-inline: auto;
}
@media (min-width: 720px) { .tuer-fakten { grid-template-columns: repeat(3, 1fr); } }
.tuer-fakten div { padding: 1rem 1.6rem; border-bottom: 1px solid var(--line); }
.tuer-fakten div:last-child { border-bottom: 0; }
@media (min-width: 720px) {
  .tuer-fakten div { border-bottom: 0; border-right: 1px solid var(--line); }
  .tuer-fakten div:last-child { border-right: 0; }
}
.tuer-fakten .kicker { white-space: nowrap; }
.tuer-fakten p { font-family: var(--font-mono); font-size: .95rem; color: var(--ink); margin-top: .35rem; }
html.ist-18 #gate { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 78dvh; display: grid; align-items: end; overflow: hidden; }
@media (min-width: 900px) { .hero { min-height: 84dvh; } }
.hero picture, .hero img { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.hero img { object-fit: cover; object-position: center top; animation: ken 24s ease-in-out infinite alternate; }
@media (min-width: 769px) { body.home .hero img { object-position: right center; } }
@keyframes ken { from { transform: scale(1.02); } to { transform: scale(1.08); } }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to top, rgba(11,7,8,.96) 10%, rgba(11,7,8,.55) 45%, rgba(11,7,8,.25));
}
@media (min-width: 900px) {
  .hero { align-items: center; }
  .hero::after { background: linear-gradient(100deg, rgba(11,7,8,.97) 26%, rgba(11,7,8,.82) 48%, rgba(11,7,8,.22) 80%); }
}
.hero-copy { position: relative; z-index: 2; padding: 2rem var(--rand) 2.6rem; max-width: 46rem; }
.hero-marke { display: flex; align-items: center; gap: .9rem; margin-bottom: 1.1rem; flex-wrap: wrap; }
.hero-marke::after { content: ""; width: 2.8rem; height: 1px; background: var(--heat); order: 1; }
.hero-marke .secnum { order: 0; }
.hero-marke .mono { order: 2; }
.hero-copy h1 { font-size: clamp(2.9rem, 9vw, 5.7rem); margin: 0 0 1.1rem; }
.hero-copy .lead { font-size: clamp(1.02rem, 2.2vw, 1.25rem); margin-bottom: .4rem; }
.hero-pegel { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }

/* ---------- Leitungs-Ticker ---------- */
.ticker {
  display: flex; align-items: center; gap: 1.6rem;
  padding: .9rem var(--rand);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--bg-tief);
  overflow-x: auto; scrollbar-width: none;
}
.ticker::-webkit-scrollbar { display: none; }
.ticker > .kicker { flex: 0 0 auto; }
.ticker ol { display: flex; align-items: center; gap: 1.4rem; list-style: none; margin: 0; padding: 0; }
.ticker li { flex: 0 0 auto; }
.ticker a { display: inline-flex; align-items: center; gap: .45rem; color: var(--ink-2); font-family: var(--font-mono); font-size: .69rem; letter-spacing: .16em; text-transform: uppercase; }
.ticker a:hover { color: var(--ink); }
.ticker a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--signal); }

/* ---------- Abschnitte ---------- */
.section { padding: 3.6rem var(--rand) 4rem; border-top: 1px solid var(--line); position: relative; }
@media (min-width: 900px) { .section { padding: 6rem var(--rand) 6.5rem; } }
.section.tief { background: var(--bg-tief); }
.section h1, .section h2 { font-size: clamp(1.9rem, 5.4vw, 3.9rem); margin: .9rem 0 .9rem; }
.section-kopf { display: flex; align-items: flex-end; justify-content: space-between; gap: 2.5rem; flex-wrap: wrap; margin-bottom: 2.4rem; }
.section-kopf > div:first-child { max-width: 40rem; }
.section-kopf .nebenan { display: flex; flex-direction: column; gap: .35rem; }
@media (min-width: 900px) { .section-kopf .nebenan { text-align: right; } }
.strichzeile { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.4rem; }
.strichzeile hr { flex: 1 1 auto; height: 1px; background: var(--line); border: 0; margin: 0; }

/* ---------- Cast ---------- */
.cast { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .9rem; }
@media (min-width: 620px) { .cast { gap: 1.4rem; } }
@media (min-width: 900px) { .cast { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.75rem; } }
.cast a { display: block; color: inherit; position: static; overflow: visible; min-height: 0; }
.cast a > picture, .cast-frame { display: block; position: relative; overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); aspect-ratio: 4 / 5; }
.cast a img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  transition: transform .5s ease;
}
.cast a:hover img { transform: scale(1.04); }
.cast-copy {
  position: static; padding: .85rem 0 0; margin-top: .8rem;
  border-top: 1px solid var(--line); background: none;
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .2rem .8rem;
  align-items: baseline;
}
.cast-copy h3 { grid-column: 1; font-size: clamp(1.5rem, 4.4vw, 2.5rem); margin: 0; }
.cast-copy .kicker { grid-column: 2; grid-row: 1; text-align: right; }
.cast-copy p { grid-column: 1 / -1; color: var(--ink-2); font-size: .95rem; margin-top: .2rem; }
.cast a:hover .cast-copy { border-top-color: var(--heat); }
.cast-mini { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
@media (min-width: 760px) { .cast-mini { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.5rem; } }
.cast-mini a > picture, .cast-mini .cast-frame { aspect-ratio: 1 / 1; }
.cast-mini .cast-copy p { display: none; }

/* ---------- Preis ---------- */
.preis-split { display: grid; grid-template-columns: 1fr; gap: 2.6rem; align-items: start; }
@media (min-width: 980px) { .preis-split { grid-template-columns: 28rem minmax(0, 1fr); gap: 5rem; } }
.preis-zahl { display: flex; align-items: baseline; gap: .6rem; }
.preis-zahl strong { font-family: var(--font-display); font-weight: 800; font-size: clamp(5.5rem, 18vw, 10.5rem); line-height: .82; color: var(--heat); }
.preis-zahl span { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.8rem, 5vw, 2.9rem); text-transform: uppercase; }
.preis-einheit { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.4rem, 4vw, 2.1rem); text-transform: uppercase; margin-top: .2rem; }
.price-strip { display: flex; flex-wrap: wrap; gap: .8rem 1.2rem; align-items: baseline; margin: 1.6rem 0 0; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.price-strip strong { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; color: var(--heat); line-height: 1; }
.price-strip span { color: var(--ink-2); font-size: .95rem; }

/* ---------- Pakete ---------- */
.packs { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 780px) { .packs { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; } }
.pack, .packs .door, button.door {
  display: flex; flex-direction: column; align-items: stretch; text-align: left;
  width: 100%; min-height: 0;
  border: 1px solid var(--line-2); border-radius: 0;
  background: var(--bg-2); color: inherit;
  font: inherit; font-family: var(--font-body);
  padding: 1.6rem 1.5rem 1.5rem;
  cursor: pointer; position: relative;
  transition: border-color .15s ease, background .15s ease;
}
.pack:hover, .packs .door:hover, button.door:hover { border-color: var(--heat); background: var(--bg-3); transform: none; }
.pack h3, .door h3 { font-size: clamp(1.9rem, 5vw, 2.8rem); margin: .7rem 0 0; }
.door .kicker, .pack .kicker { color: var(--ink-3); }
.door .preis, .pack .preis { font-family: var(--font-mono); font-weight: 500; font-size: 1.35rem; color: var(--ink); margin-top: .7rem; }
.door .rate, .pack .rate { font-family: var(--font-mono); font-size: .75rem; letter-spacing: .1em; color: var(--heat); margin-top: .25rem; }
.door .rate.basis, .pack .rate.basis { color: var(--ink-3); }
.door .satz, .pack .satz { color: var(--ink-2); font-size: .95rem; margin-top: 1rem; flex: 1 1 auto; }
.door .als-btn, .pack .als-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 48px; margin-top: 1.3rem;
  border: 1px solid var(--line-2); color: var(--ink-2); font-weight: 500; font-size: .95rem;
}
.door:hover .als-btn { border-color: var(--heat); color: var(--ink); }
.door.beliebt, .pack.beliebt { border-color: var(--heat); }
.door.beliebt .als-btn, .pack.beliebt .als-btn { background: var(--heat); border-color: var(--heat); color: var(--auf-heat); font-weight: 600; }
.door.beliebt::before, .pack.beliebt::before {
  content: "Meist geladen";
  position: absolute; top: -9px; left: 1.4rem;
  background: var(--heat); color: var(--auf-heat);
  font-family: var(--font-mono); font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .15rem .6rem;
}

/* ---------- Ablauf ---------- */
.leitung-steps, .ablauf {
  list-style: none; padding: 0; margin: 1.6rem 0 0;
  display: grid; gap: 1.4rem; counter-reset: step;
}
@media (min-width: 780px) { .leitung-steps, .ablauf { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.75rem; } }
.leitung-steps li, .ablauf li {
  counter-increment: step;
  border: 0; border-top: 2px solid var(--line-2);
  padding: 1.1rem 0 0; background: none;
}
.leitung-steps li:first-child, .ablauf li:first-child { border-top-color: var(--heat); }
.leitung-steps li::before, .ablauf li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono); font-size: .8rem; color: var(--ink-3);
  display: block; margin-bottom: .6rem;
}
.leitung-steps li:first-child::before, .ablauf li:first-child::before { color: var(--heat); }
.leitung-steps li strong, .ablauf li strong {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 2.1rem); text-transform: uppercase; line-height: .95;
  margin-bottom: .5rem; color: var(--ink);
}
.leitung-steps li br, .ablauf li br { display: none; }
.leitung-steps li { color: var(--ink-2); font-size: 1rem; }

/* ---------- Andere / Wir ---------- */
.vergleich { display: grid; grid-template-columns: 1fr; gap: 0; border-top: 1px solid var(--line-2); margin-top: 2.2rem; }
@media (min-width: 860px) { .vergleich { grid-template-columns: 1fr 1fr; column-gap: 3.75rem; } }
.vergleich div { display: flex; align-items: baseline; gap: .9rem; padding: 1.1rem 0; border-bottom: 1px solid var(--line); }
.vergleich .mono { flex: 0 0 3.6rem; }
.vergleich .andere p { color: var(--ink-3); font-size: 1.02rem; }
.vergleich .wir p { color: var(--ink); font-size: 1.02rem; }
.vergleich .wir .mono { color: var(--heat); }

/* ---------- Leitungsseite ---------- */
.call-hero { min-height: 0; }
.leitung-oben { display: grid; grid-template-columns: 1fr; border-bottom: 1px solid var(--line); }
@media (min-width: 1000px) { .leitung-oben { grid-template-columns: minmax(0, 1fr) 34rem; } }
.leitung-oben .hero { min-height: 62dvh; border-bottom: 1px solid var(--line); }
@media (min-width: 1000px) { .leitung-oben .hero { min-height: 46rem; border-bottom: 0; border-right: 1px solid var(--line); align-items: end; } }
@media (min-width: 1000px) { .leitung-oben .hero::after { background: linear-gradient(to top, rgba(11,7,8,.95) 12%, rgba(11,7,8,.45) 50%, rgba(11,7,8,.2)); } }
.leitung-oben .hero-copy h1 { font-size: clamp(3.4rem, 14vw, 8rem); }
.callpanel {
  background: var(--bg-tief); padding: 2rem var(--rand) 2.4rem;
  display: flex; flex-direction: column; position: relative;
}
@media (min-width: 1000px) { .callpanel { padding: 3.5rem 3rem; } }
.guthaben-box { border: 1px solid var(--line-2); background: var(--bg-2); padding: 1.4rem 1.4rem 1.3rem; margin: 1.4rem 0 1.6rem; }
.guthaben-kopf { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-bottom: .8rem; }
.wallet-line { display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem .8rem; margin: 0; }
.wallet-chip {
  display: inline-block; border: 0; padding: 0;
  font-family: var(--font-mono); font-weight: 500;
  font-size: clamp(1.9rem, 6vw, 2.9rem); line-height: 1; color: var(--ink);
}
.balken { height: 4px; background: rgba(244,236,232,.10); margin-top: 1.1rem; }
.balken i { display: block; height: 4px; background: var(--signal); width: 0; transition: width .4s ease; }
.callpanel .btn { min-height: 72px; font-size: 1.15rem; width: 100%; }
.callpanel .ghost { min-height: 52px; width: 100%; margin-top: 1.1rem; }
.mikro-hinweis { display: flex; align-items: center; gap: .7rem; margin-top: .9rem; color: var(--ink-3); }
.mikro-hinweis svg { flex: 0 0 auto; }
.safeword { margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); display: flex; gap: .8rem; align-items: flex-start; }
.safeword::before { content: ""; width: 10px; height: 10px; background: var(--heat); margin-top: .5rem; flex: 0 0 auto; }
.safeword h3 { font-size: 1.35rem; }
.safeword p { color: var(--ink-2); font-size: .95rem; margin-top: .35rem; }
.leitung-split { display: grid; gap: 2.6rem; }
@media (min-width: 900px) { .leitung-split { grid-template-columns: 1.15fr .85fr; gap: 5rem; align-items: start; } }
.leitung-bio p { color: var(--ink-2); max-width: 42rem; font-size: 1.06rem; line-height: 1.65; }
.leitung-bio p + p { margin-top: 1.1rem; }
.expect { list-style: none; padding: 0; margin: .6rem 0 0; }
.expect li { border-top: 1px solid var(--line); padding: 1.1rem 0; color: var(--ink-2); font-size: .98rem; }
.expect li:last-child { border-bottom: 1px solid var(--line); }
.expect strong {
  display: block; color: var(--heat);
  font-family: var(--font-mono); font-size: .69rem; letter-spacing: .16em; text-transform: uppercase;
  margin-bottom: .4rem;
}
.leitung-galerie { display: grid; gap: 1.25rem; grid-template-columns: 1fr; margin-top: 1.4rem; }
@media (min-width: 760px) { .leitung-galerie { grid-template-columns: 1fr 1.35fr; } }
.leitung-galerie img { width: 100%; height: 22rem; object-fit: cover; object-position: center top; border: 1px solid var(--line); }
@media (min-width: 900px) { .leitung-galerie img { height: 26rem; } }

/* ---------- Chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1.2rem 0 0; }
.chip {
  border: 1px solid var(--line-2); padding: .45rem .8rem;
  font-family: var(--font-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-2);
}

/* ---------- FAQ ---------- */
.faq { margin-top: 1.4rem; }
.faq details { border-top: 1px solid var(--line); padding: 1.1rem 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-family: var(--font-display); font-weight: 800; font-size: clamp(1.15rem, 3.4vw, 1.6rem); text-transform: uppercase; list-style: none; color: var(--ink-2); }
.faq details[open] summary { color: var(--ink); }
.faq summary::-webkit-details-marker { display: none; }
.faq details p { color: var(--ink-2); margin: .7rem 0 0; max-width: 42rem; font-size: .98rem; }

/* ---------- Kasse ---------- */
.atelier-form input, input[type="text"], input[type="tel"], input[type="email"] {
  width: 100%; max-width: 26rem; min-height: 56px; padding: .8rem 1rem;
  background: #100a0c; border: 1px solid var(--line-2); border-radius: 0;
  color: var(--ink); font: inherit; font-family: var(--font-body);
  margin: .4rem 0 1rem;
}
.atelier-form input:focus, input:focus { border-color: var(--heat); outline: none; }
.atelier-form input::placeholder { color: var(--ink-3); }
.kasse-split { display: grid; grid-template-columns: 1fr; gap: 2.8rem; align-items: start; }
@media (min-width: 1000px) { .kasse-split { grid-template-columns: 29rem minmax(0, 1fr); gap: 5rem; } }
.kasse-fakten { display: grid; grid-template-columns: 1fr; gap: 1.4rem; margin-top: 2rem; padding-top: 1.6rem; border-top: 1px solid var(--line); }
@media (min-width: 700px) { .kasse-fakten { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.kasse-fakten p { color: var(--ink-2); font-size: .95rem; margin-top: .5rem; }
#stand { font-family: var(--font-mono); }
.call-log { max-width: 42rem; margin: 1rem var(--rand) 3rem; font-size: .85rem; color: var(--ink-3); font-family: var(--font-mono); }
.call-log div { margin: .35rem 0; }

/* ---------- Kauf-Strecke ---------- */
.kauf-anrede { margin: 0 0 2.4rem; }
.kauf-anrede h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); margin-bottom: .5rem; }
.kauf-anrede .lead { margin-bottom: 1rem; }
.anrede-zeile { display: flex; flex-wrap: wrap; gap: .7rem; align-items: stretch; }
.anrede-zeile input { flex: 1 1 14rem; max-width: none; margin: 0; }
.anrede-zeile .ghost { flex: 0 0 auto; }
.door[disabled], .door:disabled { opacity: .5; cursor: progress; }
.door[disabled]:hover, .door:disabled:hover { border-color: var(--line-2); background: var(--bg-2); }
#packs-stand:empty { display: none; }
#packs-stand { margin-top: 1rem; }
#name-stand:empty { display: none; }
#name-stand { margin-top: .7rem; }

/* ---------- Nav / Journal / Recht ---------- */
.nav { display: flex; flex-wrap: wrap; gap: 1.2rem; padding: 1.6rem var(--rand) 0; font-size: .95rem; }
.nav a { color: var(--ink-2); }
.nav a:hover { color: var(--ink); }
.legal-links { margin-top: 2.4rem; font-size: .9rem; color: var(--ink-3); }
.legal-links a { color: var(--ink-2); }
.legal-page { max-width: 42rem; padding: 3.5rem var(--rand) 4rem; }
.legal-page h1 { font-size: clamp(2rem, 6vw, 3rem); margin-bottom: 1.2rem; }
.legal-page p { color: var(--ink-2); margin-bottom: .9rem; }
.journal-list { list-style: none; padding: 0; margin: 1.6rem 0 0; }
.journal-list li { border-top: 1px solid var(--line); padding: 1.1rem 0; }
.journal-list li:last-child { border-bottom: 1px solid var(--line); }
.journal-list a { color: var(--ink); font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: clamp(1.2rem, 3.6vw, 1.7rem); }
.journal-list a:hover { color: var(--heat); }
.article { max-width: 44rem; padding: 3.5rem var(--rand) 4rem; }
.article h1 { font-size: clamp(2rem, 6vw, 3.2rem); margin-bottom: 1.2rem; }
.article h2 { font-size: clamp(1.5rem, 4vw, 2.1rem); margin: 2.4rem 0 .8rem; }
.article h3 { font-size: clamp(1.2rem, 3.4vw, 1.6rem); margin: 1.8rem 0 .6rem; }
.article p { color: var(--ink-2); margin-bottom: 1rem; line-height: 1.7; }
.article ul, .article ol { color: var(--ink-2); padding-left: 1.2rem; margin-bottom: 1.2rem; }
.article li { margin-bottom: .5rem; }
.article table { width: 100%; border-collapse: collapse; margin-bottom: 1.4rem; font-size: .95rem; }
.article th, .article td { border-bottom: 1px solid var(--line); padding: .7rem .5rem; text-align: left; color: var(--ink-2); }
.article th { color: var(--heat); font-family: var(--font-mono); font-size: .69rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 400; }

/* ---------- Fuß ---------- */
.site-footer { padding: 2.8rem var(--rand) 3rem; border-top: 1px solid var(--line); }
.site-footer .inner { display: grid; grid-template-columns: 1fr; gap: 2.4rem; }
@media (min-width: 860px) { .site-footer .inner { grid-template-columns: minmax(0, 26rem) auto; justify-content: space-between; gap: 4rem; } }
.fuss-text { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .06em; line-height: 1.9; color: var(--ink-3); margin-top: 1rem; }
.fuss-spalten { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
@media (min-width: 620px) { .fuss-spalten { grid-template-columns: repeat(3, auto); gap: 3.5rem; } }
.fuss-spalten ul { list-style: none; margin: .6rem 0 0; padding: 0; display: grid; gap: .55rem; }
.fuss-spalten a { color: var(--ink-2); font-size: .95rem; }
.fuss-spalten a:hover { color: var(--ink); }

/* ---------- Dialoge aus call.js / start.js ----------
   Beide Boxen haengt das JS ans Ende von <main>. Ohne feste Positionierung
   landen sie am Seitenfuss — der Anrufer steht oben am Knopf und sieht nichts
   passieren. Darum: echter Dialog ueber der Seite. */
#ohr-start, #ohr-pay, #ohr-karte, #ohr-konto {
  position: fixed; inset: 0; z-index: 90;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem; overflow-y: auto;
  background: rgba(6, 3, 4, .84);
  backdrop-filter: blur(2px);
}
#ohr-start[hidden], #ohr-pay[hidden], #ohr-karte[hidden], #ohr-konto[hidden] { display: none; }
#ohr-start-hint[hidden] { display: none; }
#ohr-start .pay-card, #ohr-pay .pay-card, #ohr-karte .pay-card, #ohr-konto .pay-card {
  width: min(34rem, 100%); max-height: 92dvh; overflow-y: auto;
  background: var(--bg-2); border: 1px solid var(--line-2);
  padding: 2rem 1.75rem 1.75rem;
}
#ohr-start h2, #ohr-pay h2, #ohr-karte h2, #ohr-konto h2, #pay-title {
  font-size: clamp(1.5rem, 4.6vw, 2.1rem); margin: .5rem 0 .6rem;
}
#ohr-start .lead, #ohr-pay .lead, #ohr-karte .lead, #ohr-konto .lead { margin-bottom: 1.1rem; }
#ohr-start label, #ohr-karte label, #ohr-konto label { display: block; margin-bottom: .3rem; }
#ohr-start input[type="text"], #ohr-start textarea,
#ohr-karte input[type="text"], #ohr-karte textarea,
#ohr-konto input[type="email"], #ohr-konto input[type="password"] {
  width: 100%; max-width: none; margin: 0 0 1.1rem;
  min-height: 56px; padding: .8rem 1rem;
  background: #100a0c; border: 1px solid var(--line-2); border-radius: 0;
  color: var(--ink); font: inherit; font-family: var(--font-body);
}
#ohr-start textarea, #ohr-karte textarea { min-height: 6.5rem; resize: vertical; line-height: 1.5; }
#ohr-start input:focus, #ohr-start textarea:focus,
#ohr-karte input:focus, #ohr-karte textarea:focus { border-color: var(--heat); outline: none; }
.start-steps { display: flex; gap: .5rem; margin: 0 0 .6rem; }
.start-dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border: 1px solid var(--line-2);
  font-family: var(--font-mono); font-size: .72rem; color: var(--ink-3);
}
.start-dot.on { border-color: var(--heat); color: var(--heat); }
.start-actions, #pay-actions, #ohr-karte .actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: .4rem; }
.start-actions button, #pay-actions button { flex: 0 0 auto; }
#start-stand:empty, #pay-lead:empty, #karte-form-stand:empty { display: none; }
#ohr-karte .karte-form { margin: 0; }
#start-stand { margin-top: .9rem; }

/* kleine Anstupser-Leiste (start.js) */
#ohr-start-hint {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 60;
  display: flex; align-items: center; gap: .8rem; flex-wrap: wrap;
  max-width: min(26rem, calc(100vw - 2rem));
  padding: .9rem 1rem; background: var(--bg-3); border: 1px solid var(--line-2);
}
#ohr-start-hint p { color: var(--ink-2); font-size: .9rem; margin: 0; }
#ohr-start-hint button { min-height: 44px; padding: .6rem 1.1rem; font-size: .9rem; }

/* Konto-Fenster (js/konto.js) */
.konto-tabs { display: flex; gap: .5rem; margin: 0 0 1.2rem; }
.konto-tabs button {
  flex: 1 1 auto; min-height: 44px; padding: .5rem .8rem;
  background: transparent; border: 1px solid var(--line-2); color: var(--ink-3);
  font-family: var(--font-body); font-weight: 500; font-size: .9rem;
}
.konto-tabs button.an { border-color: var(--heat); color: var(--ink); background: rgba(239,93,112,.10); }
.konto-tabs button:hover { color: var(--ink); transform: none; }
.konto-check {
  display: flex !important; align-items: flex-start; gap: .6rem;
  margin: 0 0 .9rem; color: var(--ink-2); font-size: .92rem; cursor: pointer;
}
.konto-check[hidden] { display: none !important; }
.konto-check input { width: 18px; height: 18px; margin: .18rem 0 0; flex: 0 0 auto; accent-color: var(--heat); }
.konto-actions { margin-top: 1.2rem; }
#konto-stand { margin-top: .9rem; }
#konto-stand:empty { display: none; }

/* ---------- Im Gespräch ---------- */
body.im-gespraech .brand,
body.im-gespraech .statusbar { border-bottom-color: var(--line-2); }
body.im-gespraech .statusbar .frei { color: var(--heat); }
body.im-gespraech .statusbar .punkt { background: var(--heat); box-shadow: 0 0 0 3px rgba(239,93,112,.18); }
body.im-gespraech .callpanel { background: #0a0405; }
body.im-gespraech .callpanel .btn { background: var(--bg-3); color: var(--ink); }
body.im-gespraech .callpanel .btn:hover { background: #241a1c; }
body.im-gespraech .gespraech-nur { display: flex; }
.gespraech-nur { display: none; }

/* ---------- Lane ---------- */
body.gay-hero, .gay-hero { --heat: #6eb5ff; --heat-hi: #9ccdff; --heat-tief: #2a5f9e; --auf-heat: #04121f; }
body.gay-hero ::selection { background: var(--heat); color: var(--auf-heat); }

/* ---------- Schmale Displays ---------- */
@media (max-width: 700px) {
  .brand { gap: .8rem; }
  .wortmarke { flex: 0 0 auto; }
  .wortmarke b { font-size: .98rem; }
  .wortmarke svg { width: 20px; height: 20px; }
  .brand-nav {
    flex: 1 1 auto; justify-content: flex-end;
    gap: .8rem; overflow-x: auto; scrollbar-width: none;
  }
  .brand-nav::-webkit-scrollbar { display: none; }
  .brand-nav a { font-size: .84rem; white-space: nowrap; flex: 0 0 auto; }
  .brand-nav a.btn { min-height: 44px; padding: .5rem .95rem; font-size: .85rem; }
  .statusbar { min-height: 34px; }
  .cast-copy { grid-template-columns: 1fr; }
  .cast-copy .kicker { grid-column: 1; grid-row: 2; text-align: left; }
  .cast-copy p { font-size: .9rem; }
  .article table { display: block; overflow-x: auto; white-space: nowrap; }
  .leitung-galerie img { height: 17rem; }
}

/* ---------- Bewegung aus ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero img { animation: none; }
  .vu i { animation: none; }
  * { transition-duration: .01ms !important; }
}

/* --------------------------------------------------------------------------
   Ersatz fuer Inline-styles.
   Die CSP der Seite hat kein style-src 'unsafe-inline' — style="" wird vom
   Browser verworfen. Was frueher im Attribut stand, steht jetzt hier.
   -------------------------------------------------------------------------- */
.wortmarke svg { color: var(--heat); }
.mikro-hinweis .mono { text-transform: none; letter-spacing: .04em; }
.callpanel #status { margin-top: 1rem; }
.lead-luft { margin-top: 1.2rem; }
.fine-luft { margin-top: 1.6rem; }
.cta-row.luft { margin-top: 2.6rem; }
.lead-abschnitt {
  margin-top: 2.6rem;
  border-top: 1px solid var(--line);
  padding-top: 1.4rem;
}
