/* ============================================================
   ls8 — VIP-Bewerbungsfunnel — LollySpins
   Tokens übernommen aus ls5/styles.css, sprechend umbenannt
   (ls5 nannte die eigentlich lila/pinke Palette irreführend
   "gold"/"green-cta" — hier klare Namen).
   Look: dunkles Violett, Pink + Lila nur als Akzent.
   Keine Candy-Illustrationen, keine helle verspielte Fläche.
   ============================================================ */

:root {
  /* Hintergrund — Violett/Anthrazit */
  --bg-deep:  #1A0D3E;
  --bg-mid:   #2A1461;
  --bg-light: #3D1F7A;

  /* Marken-Akzente (aus ls5 übernommen, korrekt benannt) */
  --purple:      #7A4CE6;
  --purple-dim:  #4B2A9C;
  --pink:        #FF83DD;
  --magenta:     #A62A84;
  --cream:       #FFFFFF;

  --go:    #22c55e; /* CTA-Bestätigungsfarbe (Betrag/Zahlweg gewählt, freier CTA) */
  --go-bg: #0e2417;
  --red:   #f87171; /* Ablehnungspfad */
  --red-bg:#241113;

  --radius-pill: 9999px;
  --radius-lg: 1.5rem;
  --radius-md: 1rem;
  --radius-sm: 0.75rem;

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body:    'Poppins', system-ui, sans-serif;

  --maxw: 30rem;
}

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

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 50% 0%, rgba(122,76,230,0.18) 0%, transparent 55%),
    linear-gradient(180deg, #1A0D3E 0%, #2A1461 45%, #1A0D3E 100%);
  color: var(--cream);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
.hidden { display: none !important; }

/* ============== BRAND BAR ============== */
.brand-bar {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1rem 1.1rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.brand-logo { height: 30px; width: auto; }
.ad-label {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap;
}

/* ============== SCREEN SWITCHING ============== */
main#funnel {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 0 2rem;
}
.screen { display: none; }
.screen.on { display: block; animation: screen-in 220ms ease-out; }
@keyframes screen-in {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============== PRIMARY BUTTON ============== */
.btn-primary {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffb3ec 0%, var(--pink) 45%, var(--purple) 100%);
  color: var(--bg-deep);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.02em;
  text-align: center;
  box-shadow:
    0 6px 0 var(--magenta),
    0 0 0 1px var(--bg-deep),
    inset 0 1px 0 rgba(255,255,255,0.5);
  transition: transform 150ms ease, filter 150ms ease;
}
.btn-primary:hover:not(:disabled) { filter: brightness(1.05); }
.btn-primary:active:not(:disabled) {
  transform: translateY(3px);
  box-shadow: 0 2px 0 var(--magenta), 0 0 0 1px var(--bg-deep), inset 0 1px 0 rgba(255,255,255,0.5);
}
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; box-shadow: none; }
.btn-primary.btn-go {
  background: linear-gradient(180deg, #9dffc0 0%, var(--go) 55%, #16913f 100%);
  box-shadow: 0 6px 0 #0e6b2c, 0 0 0 1px var(--bg-deep), inset 0 1px 0 rgba(255,255,255,0.4);
  color: #04140a;
}
.btn-primary.btn-go:active:not(:disabled) {
  box-shadow: 0 2px 0 #0e6b2c, 0 0 0 1px var(--bg-deep), inset 0 1px 0 rgba(255,255,255,0.4);
}
.btn-primary.btn-go:disabled { opacity: 0.35; box-shadow: none; }

/* ============== S0 · HERO ============== */
.hero { padding: 0.6rem 1.1rem 2rem; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(122,76,230,0.18);
  border: 1px solid rgba(122,76,230,0.55);
  color: var(--pink);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.7rem;
}
.hero-h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 0.65rem;
}
.hero-sub { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.45; margin-bottom: 0.9rem; }

.perks { display: grid; gap: 0.5rem; margin-bottom: 0.9rem; }
.perk {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 0.7rem 0.95rem;
}
.perk-icon { font-size: 1.1rem; line-height: 1.3; flex: 0 0 auto; color: var(--pink); }
.perk-text { font-size: 0.9rem; line-height: 1.4; display: flex; flex-direction: column; gap: 0.15rem; }
.perk-text strong { color: var(--cream); font-weight: 700; }
.perk-text span { color: rgba(255,255,255,0.6); font-size: 0.8rem; }
.perk.top { border-color: var(--pink); background: rgba(255,131,221,0.08); }
.perk.top .perk-text strong { color: var(--pink); }

.hero-note {
  font-size: 0.85rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.8);
  background: rgba(122,76,230,0.1);
  border-left: 3px solid var(--purple);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.75rem 0.95rem;
  margin-bottom: 1rem;
}
.hero-foot { text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 0.85rem; }

/* ============== S1-S4 · FRAGEN ============== */
.q { padding: 1.25rem 1.1rem 2rem; }
.progress { display: flex; gap: 5px; margin-bottom: 1.25rem; }
.progress i { flex: 1; height: 4px; border-radius: 2px; background: rgba(255,255,255,0.12); }
.progress i.on { background: var(--pink); }

.back-btn {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  padding: 0.5rem 0;
  margin-bottom: 0.5rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.back-btn:hover { color: rgba(255,255,255,0.8); }

.qn {
  font-size: 0.7rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.qt { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; line-height: 1.25; margin-bottom: 0.4rem; }
.qs { color: rgba(255,255,255,0.6); font-size: 0.9rem; margin-bottom: 1.25rem; }

.answers { display: grid; gap: 0.6rem; }
.answer {
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  text-align: left;
  transition: border-color 140ms ease, background 140ms ease;
}
.answer:hover { border-color: rgba(255,255,255,0.28); background: rgba(255,255,255,0.06); }
.answer.sel { border-color: var(--pink); background: rgba(255,131,221,0.1); }
.answer-label { font-size: 1rem; font-weight: 600; }
.answer-hint { font-size: 0.8rem; color: rgba(255,255,255,0.45); text-align: right; flex: 0 0 auto; }
.answer.sel .answer-hint { color: var(--pink); }

/* ============== S5/S7 · SPINNER ============== */
.eval { padding: 6rem 1.1rem; text-align: center; }
.spinner {
  width: 42px; height: 42px;
  margin: 0 auto 1.25rem;
  border: 3px solid rgba(255,255,255,0.15);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.eval p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }

/* ============== S6 · ERGEBNIS ============== */
.block { padding: 1.5rem 1.1rem 0; }
.block h2 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 0.65rem; }
.block h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.9rem; }
.block p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.5; margin-bottom: 0.5rem; }
.block p strong { color: var(--cream); }

.profile-card {
  margin: 1.5rem 1.1rem 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
}
.profile-kicker { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); font-weight: 700; margin-bottom: 0.4rem; }
.profile-tier { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--pink); margin-bottom: 0.5rem; }
.profile-text { font-size: 0.9rem; color: rgba(255,255,255,0.75); line-height: 1.5; }

#perk-list { display: grid; gap: 0.6rem; }
#pay-section { padding-top: 1.15rem; }

.ladder-card {
  margin: 1rem 1.1rem 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.15rem;
}
.bar-row { margin-bottom: 0.9rem; }
.bar-row:last-child { margin-bottom: 0; }
.bar-label { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 0.4rem; }
.bar-label span:first-child { color: rgba(255,255,255,0.65); }
.bar-value { font-weight: 700; font-size: 0.8rem; }
.bar-value.dim { color: rgba(255,255,255,0.45); }
.bar-value.hi { color: var(--pink); }
.bar-track { position: relative; height: 6px; background: rgba(255,255,255,0.1); border-radius: 4px; }
.bar-fill { position: absolute; left: 0; top: 0; height: 100%; border-radius: 4px; width: 0%; transition: width 0.8s ease; }
.bar-fill.dim { background: rgba(255,255,255,0.35); }
.bar-fill.hi { background: var(--pink); box-shadow: 0 0 12px rgba(255,131,221,0.5); }
.bar-marks { display: flex; justify-content: space-between; font-size: 0.65rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 700; margin-top: 0.5rem; }

.calc-card {
  margin-top: 0.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.25rem 1.1rem;
}
.calc-row {
  display: flex; justify-content: space-between; gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
}
.calc-row:last-child { border-bottom: none; }
.calc-row span:first-child { color: rgba(255,255,255,0.6); }
.calc-row span:last-child { font-weight: 700; }
.calc-row.hi span:last-child { color: var(--pink); }
.calc-footnote { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 0.75rem; }

/* Unlock */
.unlock-card {
  margin-top: 0.75rem;
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.03);
  overflow: hidden;
  transition: border-color 300ms ease, background 300ms ease;
}
.unlock-card.open {
  border-color: var(--pink);
  background: linear-gradient(160deg, rgba(255,131,221,0.12), rgba(255,255,255,0.03));
}
.unlock-head {
  padding: 0.85rem 1.1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.unlock-status { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 800; color: rgba(255,255,255,0.5); }
.unlock-card.open .unlock-status { color: var(--pink); }
.unlock-sub { font-size: 0.75rem; color: rgba(255,255,255,0.45); font-weight: 700; }
.unlock-body { padding: 0.3rem 1.1rem 0.85rem; filter: blur(5px); opacity: 0.4; transition: filter 400ms ease, opacity 400ms ease; }
.unlock-card.open .unlock-body { filter: none; opacity: 1; }
.unlock-row { display: flex; justify-content: space-between; gap: 0.75rem; padding: 0.65rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.92rem; }
.unlock-row:last-child { border-bottom: none; }
.unlock-row .v { font-weight: 700; font-variant-numeric: tabular-nums; }
.unlock-row .v.gold { color: var(--pink); }
.block > .btn-primary { margin-top: 0.9rem; }

.after-unlock { margin-top: 0; }

.terms-card {
  margin-top: 0.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.2rem 1.1rem;
}
.terms-row { display: flex; justify-content: space-between; gap: 0.75rem; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.88rem; }
.terms-row:last-child { border-bottom: none; }
.terms-row span:first-child { color: rgba(255,255,255,0.6); }
.terms-row span:last-child { font-weight: 700; text-align: right; }
.terms-note { margin-top: 0.75rem; font-size: 0.82rem; }

/* Placeholder für offene Anbieter-Werte — §6 Regel: sichtbar, nicht erfunden */
.ph {
  background: rgba(255,131,221,0.12);
  color: var(--pink);
  font-weight: 700;
  padding: 0.05rem 0.4rem;
  border-radius: 4px;
  font-size: 0.85em;
  white-space: nowrap;
}

.chip-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; margin-top: 0.6rem; }
.chip {
  min-height: 50px;
  background: rgba(255,255,255,0.03);
  border: 1.5px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  font-variant-numeric: tabular-nums;
  transition: border-color 140ms ease, background 140ms ease, color 140ms ease;
}
.chip:hover { border-color: rgba(255,255,255,0.3); }
.chip.sel { border-color: var(--go); background: var(--go-bg); color: #7ee2a8; }

.steps { list-style: none; counter-reset: s; margin-top: 0.5rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-md); padding: 0.2rem 1.1rem; }
.steps li { counter-increment: s; display: flex; gap: 0.8rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); font-size: 0.9rem; color: rgba(255,255,255,0.65); }
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(s);
  flex: 0 0 24px; height: 24px; margin-top: 1px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--cream);
  font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.steps li.pay { color: var(--cream); font-weight: 600; }
.steps li.pay::before { background: var(--go); color: #04140a; }
.steps li strong { color: var(--cream); font-weight: 800; }
.fineprint { font-size: 0.8rem; color: rgba(255,255,255,0.45); margin-top: 0.75rem; }

.cta-block { padding-bottom: 1.5rem; }
.cta-micro { text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-top: 0.7rem; }

/* ============================================================
   ANGLEICHUNG AN ls5 v6 (2026-08-12)
   ============================================================ */

/* ---------- Staffel: 400 % als Summe lesbar machen ---------- */
.ladder-sub { font-size: 0.88rem; color: rgba(255,255,255,0.7); margin-bottom: 0.75rem; line-height: 1.5; }
.ladder-sub strong { color: var(--cream); font-weight: 800; }

.ladder {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 0.1rem 1.05rem;
  overflow: hidden;
}
.ld {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.88rem;
}
.ld:last-child { border-bottom: none; }
.ld-n { flex: 0 0 4.2rem; font-size: 0.72rem; font-weight: 800; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.04em; }
.ld-v { flex: 1; font-weight: 800; color: var(--cream); font-variant-numeric: tabular-nums; }
.ld-max { flex: 0 0 auto; font-size: 0.72rem; color: rgba(255,255,255,0.4); font-variant-numeric: tabular-nums; }
.ld-badge {
  flex: 0 0 auto;
  background: var(--pink); color: var(--bg-deep);
  font-size: 0.6rem; font-weight: 900; letter-spacing: 0.05em;
  padding: 0.15rem 0.5rem; border-radius: var(--radius-pill);
}
.ld.first { background: rgba(255,131,221,0.09); margin: 0 -1.05rem; padding-left: 1.05rem; padding-right: 1.05rem; }
.ld.sum { border-top: 1.5px solid rgba(255,255,255,0.18); border-bottom: none; padding-top: 0.8rem; }
.ld.sum .ld-n { color: rgba(255,255,255,0.7); }
.ld.sum .ld-v { color: var(--pink); font-weight: 900; }

/* ---------- Betrags- und Zahlungswahl ---------- */
.choose-sub { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.45; margin-bottom: 0.2rem; }
.choose-sub-pay { margin-top: 1.15rem; font-weight: 600; color: var(--cream); }
.choose-why { font-weight: 400; color: rgba(255,255,255,0.6); font-size: 0.82rem; }

.chip-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 0.45rem; margin-top: 0.9rem; }
.chip-wrap { position: relative; }
.chip-wrap .chip { width: 100%; padding: 0.85rem 0.15rem; font-size: 0.9rem; }
.chip-tag {
  position: absolute; top: -0.45rem; left: 50%; transform: translateX(-50%);
  white-space: nowrap; z-index: 2;
  background: var(--pink); color: var(--bg-deep);
  font-size: 0.58rem; font-weight: 900; letter-spacing: 0.03em;
  padding: 0.12rem 0.45rem; border-radius: var(--radius-pill);
}
.chip-more {
  grid-column: 1 / -1;
  border-style: dashed;
  background: transparent;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem; font-weight: 600;
  min-height: 44px;
}
.pay-ok {
  margin-top: 0.6rem; min-height: 1.2rem;
  font-size: 0.88rem; font-weight: 700; color: #7ee2a8;
  opacity: 0; transition: opacity 200ms ease;
}
.pay-ok.on { opacity: 1; }

/* ---------- Vorschau-Karte ---------- */
.sumcard {
  background: linear-gradient(155deg, rgba(255,131,221,0.16), rgba(122,76,230,0.08));
  border: 1.5px solid rgba(255,131,221,0.45);
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.15rem;
}
.sumcard-k { font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--pink); font-weight: 900; margin-bottom: 0.5rem; }
.sl {
  display: flex; justify-content: space-between; gap: 0.9rem;
  padding: 0.4rem 0; font-size: 0.92rem;
  color: rgba(255,255,255,0.7); font-variant-numeric: tabular-nums;
}
.sl b { color: var(--cream); font-weight: 800; }
.sl.big { border-top: 1px solid rgba(255,255,255,0.18); margin-top: 0.35rem; padding-top: 0.7rem; font-size: 1.05rem; }
.sl.big b { color: var(--pink); font-size: 1.3rem; font-weight: 900; }

.once {
  margin-top: 0.8rem;
  background: rgba(255,131,221,0.08);
  border: 1px solid rgba(255,131,221,0.28);
  border-radius: var(--radius-md);
  padding: 0.75rem 0.95rem;
  font-size: 0.85rem; line-height: 1.5;
  color: rgba(255,255,255,0.75);
}
.once strong { color: var(--cream); font-weight: 800; }

.cta-reassure { text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.5; margin-top: 0.6rem; }
.trust-chips { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.45rem; margin-top: 0.85rem; }
.tchip {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  padding: 0.32rem 0.7rem;
  font-size: 0.72rem; color: rgba(255,255,255,0.6); font-weight: 600;
}
.tchip b { color: var(--cream); font-weight: 800; }

/* ---------- Akkordeon: Detailebene unter den CTA ---------- */
.acc {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  margin-bottom: 0.6rem;
}
.acc summary {
  padding: 0.9rem 1.05rem; cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 0.75rem;
  font-size: 0.9rem; color: rgba(255,255,255,0.75);
  min-height: 48px;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary b { color: var(--cream); font-weight: 800; }
.acc-ch { flex: 0 0 auto; font-size: 1.1rem; font-weight: 800; color: rgba(255,255,255,0.4); line-height: 1; transition: transform 200ms ease; }
.acc[open] .acc-ch { transform: rotate(45deg); }
.acc[open] summary { border-bottom: 1px solid rgba(255,255,255,0.08); }
.acc-in { padding: 0.2rem 1.05rem 0.9rem; }
.acc-in .steps, .acc-in .terms-card { border: none; background: none; padding: 0; margin-top: 0; }

/* ---------- Hero-Feinschliff ---------- */
.perks-label {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.6rem;
}
.hero-sub strong { color: var(--pink); font-weight: 800; }

/* ---------- Unlock-Karte nach dem Freischalten ----------
   Eingedampft auf die Bestätigungszeile: dieselben vier Werte standen
   sonst dreimal auf demselben Screen. */
.unlock-card.collapsed .unlock-body { display: none; }
.unlock-card.collapsed .unlock-head { border-bottom: none; }
.unlock-card.collapsed { margin-bottom: 0.25rem; }

/* ---------- Unscharfe Spielewand hinter dem Hero ----------
   Sagt in einer Zehntelsekunde "Casino", ohne ein einziges Wort zu
   verdecken. Kein Bild-Download: die Kacheln sind dieselben Verläufe
   wie in der Spiele-Vorschau, nur unscharf.
   Der Overlay-Verlauf darüber hält den Textkontrast bei >= 12:1. */
#screen-hero { position: relative; overflow: hidden; }
.hero-bg {
  position: absolute; inset: -12% -12% auto -12%; height: 78%;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  filter: blur(30px) saturate(1.5);
  opacity: 0.85;
  pointer-events: none; z-index: 0;
}
.hero-bg i { display: block; aspect-ratio: 3/4; border-radius: 14px; }
.hero-bg::after {
  content: ''; position: absolute; inset: -20%;
  background:
    radial-gradient(130% 85% at 50% -10%, rgba(26,13,62,0.15) 0%, rgba(26,13,62,0.62) 45%, var(--bg-deep) 100%),
    linear-gradient(180deg, rgba(26,13,62,0.3) 0%, rgba(26,13,62,0.75) 55%, var(--bg-deep) 100%);
}
#screen-hero .hero { position: relative; z-index: 1; }
body.no-herobg .hero-bg { display: none; }
@media (prefers-reduced-motion: reduce) { .hero-bg { opacity: 0.35; } }

/* ---------- Trust-Leiste unter dem Hero-CTA ---------- */
.trustbar {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem;
  margin-top: 1.1rem;
}
.tb {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.3rem; text-align: center;
}
.tb-v { display: block; font-size: 1rem; font-weight: 900; color: var(--pink); line-height: 1.2; }
.tb-l { display: block; font-size: 0.68rem; color: rgba(255,255,255,0.5); font-weight: 700; margin-top: 0.1rem; }

/* ---------- Spiele-Vorschau ---------- */
.games-sub { display: flex; justify-content: space-between; align-items: baseline; gap: 0.75rem; }
.swipehint { font-size: 0.72rem; color: rgba(255,255,255,0.4); white-space: nowrap; }
.games {
  display: flex; gap: 0.5rem;
  margin: 0.7rem -1.1rem 0.5rem; padding: 0 1.1rem 0.3rem;
  overflow-x: auto; scroll-snap-type: x proximity; -webkit-overflow-scrolling: touch;
}
.games::-webkit-scrollbar { display: none; }
.g {
  flex: 0 0 6.5rem; scroll-snap-align: start; padding: 0;
  border: 1px solid rgba(255,255,255,0.1); border-radius: 0.65rem;
  background: rgba(255,255,255,0.03); overflow: hidden; text-align: center;
}
.g-art {
  display: flex; align-items: center; justify-content: center;
  aspect-ratio: 3/4; font-size: 1.9rem; position: relative; overflow: hidden;
}
.g-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-bd {
  position: absolute; top: 0.3rem; left: 0.3rem; z-index: 2;
  font-size: 0.52rem; font-weight: 900; letter-spacing: 0.04em;
  padding: 0.15rem 0.35rem; border-radius: 0.25rem;
  background: var(--pink); color: var(--bg-deep);
  box-shadow: 0 1px 4px rgba(0,0,0,0.4);
}
.g-nm {
  display: block; padding: 0.35rem 0.25rem;
  font-size: 0.62rem; font-weight: 800; line-height: 1.25; color: var(--cream);
}
.provline { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-align: center; }
.rtpline {
  margin-top: 0.55rem; text-align: center;
  font-size: 0.82rem; color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill);
  padding: 0.45rem 0.8rem;
}
.rtpline strong { color: #7ee2a8; font-weight: 900; }

/* ---------- Bonus-Rechner ---------- */
.calc-box {
  background: rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 1rem 1rem 1.1rem; margin-top: 0.9rem;
}
.calc-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 0.75rem; }
.ch-side { flex: 1; text-align: center; }
.ch-l {
  display: block; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.ch-v {
  display: block; font-size: 1.55rem; font-weight: 900; line-height: 1.15;
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.ch-v.dep { color: var(--cream); }
.ch-v.bon { color: var(--pink); }
.ch-plus { flex: 0 0 auto; font-size: 1.2rem; font-weight: 900; color: rgba(255,255,255,0.35); padding-bottom: 0.25rem; }
.calc-play {
  text-align: center; border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 0.75rem; padding-top: 0.75rem;
}
.cp-l {
  display: block; font-size: 0.68rem; font-weight: 800; letter-spacing: 0.06em;
  text-transform: uppercase; color: rgba(255,255,255,0.45);
}
.cp-v {
  display: block; font-size: 2rem; font-weight: 900; color: #7ee2a8;
  letter-spacing: -0.03em; line-height: 1.15; font-variant-numeric: tabular-nums;
}
.cp-fs { display: block; font-size: 0.82rem; font-weight: 800; color: var(--pink); margin-top: 0.1rem; }

.slidewrap { margin: 0.9rem 0 0.3rem; }
input[type=range] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 44px; background: transparent; cursor: pointer;
}
input[type=range]::-webkit-slider-runnable-track {
  height: 8px; border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--pink) var(--pct,10%), rgba(255,255,255,0.13) var(--pct,10%));
}
input[type=range]::-moz-range-track { height: 8px; border-radius: var(--radius-pill); background: rgba(255,255,255,0.13); }
input[type=range]::-moz-range-progress { height: 8px; border-radius: var(--radius-pill); background: var(--pink); }
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 30px; height: 30px; border-radius: 50%;
  background: #fff; border: 4px solid var(--pink); margin-top: -11px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.5);
}
input[type=range]::-moz-range-thumb {
  width: 30px; height: 30px; border-radius: 50%;
  background: #fff; border: 4px solid var(--pink); box-shadow: 0 3px 12px rgba(0,0,0,0.5);
}
.slideends { display: flex; justify-content: space-between; font-size: 0.7rem; color: rgba(255,255,255,0.4); font-weight: 700; }
.chip-grid-5 { grid-template-columns: repeat(5, 1fr); gap: 0.35rem; margin-top: 0.85rem; }
.chip-grid-5 .chip { padding: 0.75rem 0.1rem; font-size: 0.82rem; }

/* ---------- Bonus ja/nein ---------- */
.toggle {
  display: flex; gap: 0.4rem; margin-top: 0.7rem;
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md); padding: 0.3rem;
}
.tgb {
  flex: 1; min-height: 52px; padding: 0.6rem 0.35rem;
  border-radius: 0.7rem; background: transparent;
  color: rgba(255,255,255,0.5); font-size: 0.85rem; font-weight: 800; line-height: 1.3;
  transition: background 150ms ease, color 150ms ease;
}
.tgb span { display: block; font-size: 0.68rem; font-weight: 600; opacity: 0.75; margin-top: 0.1rem; }
.tgb.on { background: rgba(255,131,221,0.14); color: var(--cream); box-shadow: inset 0 0 0 1px rgba(255,131,221,0.4); }
.tgnote { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.5; margin-top: 0.6rem; text-align: center; }

/* ---------- Inline-Bedingungen in der Vorschau-Karte ---------- */
.sum-terms { border-top: 1px solid rgba(255,255,255,0.18); margin-top: 0.6rem; padding-top: 0.5rem; }
.sl.st { font-size: 0.85rem; padding: 0.3rem 0; color: rgba(255,255,255,0.65); }
.sl.st b { color: rgba(255,255,255,0.85); font-weight: 800; }
.sl.st.win b { color: #7ee2a8; }

/* ---------- FAQ ---------- */
.faq-q { font-size: 0.88rem; font-weight: 800; color: var(--cream); margin-top: 0.8rem; }
.faq-q:first-child { margin-top: 0.2rem; }
.faq-a { font-size: 0.85rem; line-height: 1.55; color: rgba(255,255,255,0.62); margin-top: 0.25rem; }

/* ---------- P.S. ---------- */
.ps {
  background: rgba(255,255,255,0.03);
  border-left: 3px solid var(--pink);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 0.85rem 1rem; margin-top: 0.9rem;
  font-size: 0.85rem; line-height: 1.55; color: rgba(255,255,255,0.65);
}
.ps b { color: var(--cream); font-weight: 900; }

/* ---------- Zahlungsweg: Warn-Zustand ---------- */
.chip.warn { border-color: var(--pink); background: rgba(255,131,221,0.1); color: var(--pink); }
.pay-ok.good { color: #7ee2a8; }
.pay-ok.warn { color: var(--pink); }
.pay-ok { color: rgba(255,255,255,0.6); }

/* ---------- Sticky-CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  transform: translateY(150%);
  transition: transform 300ms cubic-bezier(0.2, 0.9, 0.3, 1);
  pointer-events: none;
}
.sticky-cta.on { transform: translateY(0); pointer-events: auto; }
.sticky-cta-in {
  max-width: var(--maxw); margin: 0 auto;
  padding: 0.7rem 1.1rem calc(0.7rem + env(safe-area-inset-bottom));
  background: rgba(26,13,62,0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.12);
}
.sticky-cta-micro { text-align: center; font-size: 0.7rem; color: rgba(255,255,255,0.45); margin-top: 0.45rem; }
/* Platz nur solange die Leiste steht — sonst klafft unten eine Lücke */
body.has-sticky .compliance-footer-inner { padding-bottom: 8.5rem; }

/* Ablehnungspfad */
.reject-card {
  margin: 1.5rem 1.1rem 2rem;
  background: var(--red-bg);
  border: 1px solid #5c2528;
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
}
.reject-badge {
  display: inline-block;
  font-size: 0.68rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 0.25rem 0.6rem; border-radius: var(--radius-pill);
  background: #4c1d1d; color: #fca5a5;
  margin-bottom: 0.6rem;
}
.reject-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 0.5rem; }
.reject-text { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.5; }
.reject-text strong { color: var(--cream); }

/* ============== COMPLIANCE FOOTER ============== */
.compliance-footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.compliance-footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.5rem 1.1rem 2rem;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.compliance-footer strong { color: rgba(255,255,255,0.8); }
.compliance-footer-warning { color: rgba(255,255,255,0.65); }
.compliance-footer a { color: rgba(255,255,255,0.55); text-decoration: underline; }
.compliance-footer a:hover { color: var(--pink); }
.compliance-footer-links { margin-top: 0.25rem; }

/* ============== ACCESSIBILITY / 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;
  }
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

@media (min-width: 480px) {
  .hero-h1 { font-size: 1.85rem; }
  .qt { font-size: 1.5rem; }
}

/* Ausgang im Ablehnungspfad */
.reject-card .btn-primary { margin-top: 1.1rem; }
.reject-micro { text-align: center; font-size: 0.78rem; opacity: 0.62; margin-top: 0.6rem; }
