:root {
    color-scheme: dark;
    /* Edler Schwarz-Gold-Stil */
    --bg: #0a0908;
    --surface: #141210;
    --surface-2: #1c1916;
    --raise: #25211b;
    --border: rgba(201,164,92,.12);
    --border-2: rgba(201,164,92,.24);
    --text: #f3efe6;
    --muted: #b9ad95;
    --faint: #877f6d;
    /* „guter Wert" bleibt grün, aber gedämpft/edel */
    --mint: #8fbf9c;
    --mint-soft: rgba(143,191,156,.12);
    --mint-glow: rgba(143,191,156,.2);
    /* Gold als Leitfarbe */
    --gold: #c9a45c;
    --gold-2: #e6cf94;
    --accent: #c9a45c;
    --accent-2: #9a7c3e;
    --amber: #d9a441;
    --danger: #d98a7e;
    --radius: 16px;
    --radius-lg: 22px;
}
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
    font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
    margin: 0; color: var(--text); letter-spacing: -.01em; -webkit-font-smoothing: antialiased;
    background:
        radial-gradient(900px 520px at 0% -8%, rgba(201,164,92,.10), transparent 60%),
        radial-gradient(820px 520px at 100% -6%, rgba(230,207,148,.05), transparent 58%),
        var(--bg);
    min-height: 100vh;
}
.root { height: 100vh; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
small { font-size: .82em; }

/* ---------- Shell ---------- */
.opt-page { display: flex; flex-direction: column; height: 100vh; }
.shell { display: grid; grid-template-columns: 270px 1fr; flex: 1; min-height: 0; }

/* ---------- Sidebar (Sub-Navigation) ---------- */
.sidebar { display: flex; flex-direction: column; gap: 1.3rem; padding: 1.3rem 1.1rem; background: rgba(10,11,14,.6); border-right: 1px solid var(--border); backdrop-filter: blur(8px); overflow-y: auto; }
.sub-head { display: flex; flex-direction: column; gap: .15rem; padding: .1rem .35rem; color: var(--text); font-weight: 720; font-size: 1.02rem; }
.sub-eyebrow { color: var(--gold); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; }
.brand { display: flex; align-items: center; gap: .7rem; padding: .25rem .35rem; }
.brand .logo { width: 38px; height: 38px; border-radius: 12px; flex: none; color: #fff; background: linear-gradient(135deg, var(--accent), var(--accent-2)); display: grid; place-items: center; font-size: 1.15rem; box-shadow: 0 8px 30px -8px rgba(201,164,92,.7); }
.brand-name { font-weight: 750; font-size: 1rem; letter-spacing: -.02em; }
.brand-sub { font-size: .72rem; color: var(--faint); }

.nav { display: flex; flex-direction: column; gap: .2rem; }
.nav-item { display: flex; align-items: center; gap: .7rem; width: 100%; text-align: left; padding: .68rem .8rem; border-radius: 12px; color: var(--muted); font-size: .92rem; font-weight: 550; transition: background .15s, color .15s; }
.nav-item .ni { font-size: 1.05rem; width: 1.3rem; text-align: center; opacity: .9; }
.nav-item .n { margin-left: auto; font-size: .72rem; color: var(--faint); background: rgba(255,255,255,.05); padding: .08rem .45rem; border-radius: 999px; }
.nav-item:hover { background: rgba(255,255,255,.04); color: var(--text); }
.nav-item.active { background: linear-gradient(135deg, rgba(201,164,92,.22), rgba(230,207,148,.14)); color: #fff; box-shadow: inset 0 0 0 1px var(--border-2); }
.nav-item.active .n { background: var(--accent); color: #fff; }

.side-controls { display: flex; flex-direction: column; gap: .85rem; padding: 0 .35rem; }
.side-controls label { display: flex; flex-direction: column; gap: .35rem; font-size: .72rem; color: var(--faint); text-transform: uppercase; letter-spacing: .06em; }
input, select { padding: .58rem .65rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: 11px; color: var(--text); font-size: .95rem; transition: border-color .15s, box-shadow .15s; }
input:focus, select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,164,92,.18); }

.region { display: flex; flex-direction: column; gap: .4rem; }
.region-label { font-size: .72rem; color: var(--faint); text-transform: uppercase; letter-spacing: .06em; }
.region-switch { display: flex; gap: .3rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: 11px; padding: .25rem; }
.region-switch .reg { flex: 1; padding: .42rem; border-radius: 8px; font-size: .84rem; font-weight: 650; color: var(--muted); transition: .15s; }
.region-switch .reg:hover { color: var(--text); }
.region-switch .reg.active { background: linear-gradient(135deg, var(--accent), var(--gold-2)); color: #fff; box-shadow: 0 4px 16px -6px rgba(201,164,92,.8); }
.region-hint { font-size: .72rem; color: var(--amber); line-height: 1.5; }

.side-foot { margin-top: auto; display: flex; flex-direction: column; gap: .6rem; padding: .35rem; }
.fresh { display: inline-flex; align-items: center; gap: .5rem; font-size: .76rem; color: var(--muted); }
.fresh .dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.fresh.ok .dot { background: var(--mint); box-shadow: 0 0 10px var(--mint-glow); animation: pulse 2.6s infinite; }
.fresh.ok { color: #bdeed8; }
.fresh.stale .dot { background: var(--amber); } .fresh.stale { color: #efcf9a; }
.fresh.unknown .dot { background: var(--faint); }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(86,230,166,.5); } 70% { box-shadow: 0 0 0 7px rgba(86,230,166,0); } 100% { box-shadow: 0 0 0 0 rgba(86,230,166,0); } }
.ghost { padding: .6rem; border-radius: 11px; background: var(--surface); border: 1px solid var(--border-2); color: var(--muted); font-size: .84rem; font-weight: 650; transition: .15s; }
.ghost:hover:not(:disabled) { color: var(--text); border-color: var(--accent); }
.ghost:disabled { opacity: .5; cursor: default; }

/* ---------- Content ---------- */
.content { overflow-y: auto; overflow-x: hidden; padding: 2.2rem 2.4rem 3rem; min-width: 0; }
.trip-links { display: flex; gap: .6rem; flex-wrap: wrap; margin: .8rem 0 .3rem; }
.trip-ext { display: inline-flex; align-items: center; gap: .35rem; background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; font-weight: 700; font-size: .82rem; text-decoration: none; padding: .5rem .85rem; border-radius: 9px; }
.trip-ext:hover { filter: brightness(1.07); }
.trip-ext.alt { background: none; border: 1px solid var(--border-2); color: var(--gold-2); }
.trip-ext.alt:hover { border-color: var(--accent); }
.detail-disclaimer { color: var(--faint); font-size: .74rem; line-height: 1.5; border-top: 1px solid var(--border); margin-top: 1.6rem; padding-top: .8rem; }
.chip.own { background: rgba(122,168,116,.16); color: var(--mint); }
.hero-link { color: var(--gold-2); font-weight: 700; text-decoration: none; }
.hero-link:hover { text-decoration: underline; }
.alt-paths { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.alt-paths li { color: var(--muted); font-size: .9rem; padding-left: 1.2rem; position: relative; }
.alt-paths li::before { content: "\21B3"; position: absolute; left: 0; color: var(--gold-2); }
.alt-paths b { color: var(--text); }
.match-intro { background: rgba(201,164,92,.06); border: 1px solid var(--border-2); border-radius: 12px; padding: 12px 14px; margin-bottom: 12px; }
.match-intro p { color: var(--muted); font-size: .86rem; line-height: 1.5; margin: 0; } .match-intro b { color: var(--text); }
.loading, .muted { color: var(--muted); }
.error { color: var(--danger); }
.content-head { margin-bottom: 1.6rem; }
.ch-title { font-size: 1.05rem; font-weight: 600; margin: 0; color: var(--muted); letter-spacing: .01em; }
.ch-sub { color: var(--faint); margin: .2rem 0 0; font-size: .86rem; }

/* ---------- HERO (Wert zuerst) ---------- */
.hero { position: relative; overflow: hidden; padding: 2.1rem 2.2rem; border-radius: var(--radius-lg); margin-bottom: 1.8rem;
    background: linear-gradient(135deg, rgba(201,164,92,.08), rgba(230,207,148,.05) 40%, transparent), var(--surface);
    border: 1px solid var(--border-2); }
.hero::after { content: ""; position: absolute; right: -80px; top: -80px; width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(86,230,166,.12), transparent 70%); pointer-events: none; }
.hero-eyebrow { font-size: .82rem; color: var(--muted); letter-spacing: .01em; }
.hero-title { font-size: clamp(1.8rem, 3.6vw, 2.7rem); font-weight: 800; line-height: 1.12; letter-spacing: -.025em; margin: .5rem 0 0; max-width: 22ch; }
.hero-title .glow { color: var(--gold-2); text-shadow: 0 0 26px rgba(201,164,92,.35); }
.hero-row { display: flex; align-items: center; gap: 1.2rem; flex-wrap: wrap; margin-top: 1.5rem; }
.hero-route { display: inline-flex; align-items: baseline; gap: .7rem; padding: .7rem 1.1rem; border-radius: 14px; background: rgba(255,255,255,.03); border: 1px solid var(--border); }
.hero-route .hr-prog { font-weight: 650; font-size: 1rem; }
.hero-route .hr-meta { color: var(--faint); font-size: .85rem; }
.hero-route .hr-eur { font-size: 1.45rem; font-weight: 800; color: var(--mint); letter-spacing: -.02em; }
.hero-extra { margin-top: 1rem; font-size: .88rem; color: var(--muted); }
.hero-extra b { color: #dfe4ee; font-weight: 600; }
.hero-cta { padding: .7rem 1.3rem; border-radius: 12px; font-weight: 700; font-size: .92rem; color: #fff; background: linear-gradient(135deg, var(--accent), var(--gold-2)); box-shadow: 0 10px 30px -10px rgba(201,164,92,.8); transition: transform .12s, box-shadow .12s; }
.hero-cta:hover { transform: translateY(-1px); box-shadow: 0 14px 34px -10px rgba(201,164,92,.9); }
.hero-alt { margin-top: 1.1rem; font-size: .84rem; color: var(--faint); }
.hero-alt b { color: var(--muted); font-weight: 600; }

/* ---------- Master / Detail ---------- */
.section-label { font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; color: var(--faint); margin: 0 0 .85rem; }
.md { display: grid; grid-template-columns: minmax(260px, 340px) minmax(0, 1fr); gap: 1.6rem; align-items: start; }
.master { display: flex; flex-direction: column; gap: .55rem; min-width: 0; }
.detail { min-width: 0; }
.row { width: 100%; text-align: left; padding: .85rem 1rem; border-radius: 14px; background: var(--surface); border: 1px solid var(--border); transition: border-color .14s, background .14s; }
.row:hover { border-color: var(--border-2); background: var(--surface-2); }
.row.active { border-color: rgba(201,164,92,.45); background: linear-gradient(135deg, rgba(201,164,92,.09), var(--surface)); box-shadow: inset 0 0 0 1px rgba(201,164,92,.18); }
.row-main { display: flex; justify-content: space-between; align-items: baseline; gap: .8rem; }
.row-prog { font-weight: 650; font-size: .98rem; }
.row-eur { font-weight: 800; color: var(--mint); white-space: nowrap; letter-spacing: -.01em; }
.row-prob { font-weight: 800; color: var(--accent-2); }
.row-sub { color: var(--muted); font-size: .8rem; margin-top: .3rem; display: flex; align-items: center; gap: .45rem; flex-wrap: wrap; }

.detail { background: linear-gradient(180deg, rgba(255,255,255,.015), transparent), var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 1.7rem 1.8rem; min-height: 60vh; }
.d-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border); }
.d-head h2 { margin: 0; font-size: 1.5rem; font-weight: 750; letter-spacing: -.02em; display: inline-flex; align-items: center; gap: .6rem; }
.d-path { color: var(--faint); font-size: .82rem; margin: .4rem 0 0; }
.d-eur { text-align: right; font-size: 1.9rem; font-weight: 850; color: var(--mint); line-height: 1; letter-spacing: -.02em; white-space: nowrap; }
.d-eur span { display: block; font-size: .76rem; font-weight: 500; color: var(--muted); margin-top: .25rem; }
.d-eur.sm { font-size: 1rem; color: var(--muted); font-weight: 650; }
.d-eur .prob-big { color: var(--accent-2); }

/* Business-Erlebnis + Einlösewert */
.facts2 { display: flex; flex-direction: column; gap: .55rem; }
.fact-row { display: flex; gap: 1rem; align-items: baseline; font-size: .93rem; flex-wrap: wrap; }
.fact-k { color: var(--faint); min-width: 10rem; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; }
.fact-v { color: #cfd6e2; flex: 1; }
.fact-hint { color: var(--faint); font-size: .78rem; line-height: 1.5; }
.vq { font-weight: 700; }
.vq.strong { color: var(--mint); }
.vq.ok { color: var(--muted); }
.vq.weak { color: var(--amber); }
.ss-route { color: var(--muted); font-size: .8rem; margin-top: .25rem; }

.d-block { padding: 1.3rem 0; border-bottom: 1px solid var(--border); }
.d-block:last-child { border-bottom: 0; }
.d-block h3 { margin: 0 0 .85rem; font-size: .76rem; text-transform: uppercase; letter-spacing: .09em; color: var(--faint); }
.d-block p { margin: 0; color: #cfd6e2; font-size: .93rem; line-height: 1.6; }

.steps { margin: 0; padding: 0; list-style: none; counter-reset: s; display: flex; flex-direction: column; gap: .75rem; }
.steps li { counter-increment: s; position: relative; padding-left: 2.3rem; color: #d3dae6; font-size: .92rem; line-height: 1.55; }
.steps li::before { content: counter(s); position: absolute; left: 0; top: -.05rem; width: 1.6rem; height: 1.6rem; border-radius: 50%; background: linear-gradient(135deg, rgba(201,164,92,.25), rgba(230,207,148,.18)); border: 1px solid var(--border-2); color: var(--gold-2); font-size: .76rem; font-weight: 750; display: grid; place-items: center; }
.steps li strong { color: #fff; }

.calc { display: flex; flex-direction: column; gap: .4rem; font-variant-numeric: tabular-nums; }
.calc-line { font-size: .93rem; color: #d3dae6; padding: .55rem .8rem; background: var(--surface-2); border: 1px solid var(--border); border-radius: 11px; }
.calc-line:last-child { color: var(--mint); font-weight: 750; border-color: rgba(86,230,166,.35); background: var(--mint-soft); }

.ss-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: .7rem; }
.ss { padding: .9rem 1rem; border-radius: 14px; background: var(--surface-2); border: 1px solid var(--border); border-left: 3px solid var(--faint); }
.ss.ok { border-left-color: var(--mint); }
.ss.gap { border-left-color: var(--amber); }
.ss-head { display: flex; justify-content: space-between; align-items: baseline; gap: .5rem; }
.ss-title { font-weight: 650; font-size: .92rem; }
.ss-cabin { font-size: .64rem; text-transform: uppercase; letter-spacing: .05em; color: var(--accent-2); border: 1px solid rgba(230,207,148,.35); padding: .08rem .4rem; border-radius: 6px; }
.ss-meta { color: var(--muted); font-size: .82rem; margin-top: .35rem; }
.ss-cov { margin-top: .55rem; font-size: .88rem; font-weight: 700; }
.ss-cov.ok, .ss.ok .ss-cov { color: var(--mint); } .ss-cov.gap, .ss.gap .ss-cov { color: var(--amber); }
.ss-note { color: var(--faint); font-size: .78rem; margin-top: .55rem; line-height: 1.5; }

.callout { padding: .9rem 1.1rem; border-radius: 13px; font-size: .9rem; line-height: 1.55; color: #cfd6e2; background: var(--surface-2); border: 1px solid var(--border); margin: .3rem 0 1.2rem; }
.callout.warn { border-color: rgba(246,192,98,.3); background: linear-gradient(135deg, rgba(246,192,98,.07), var(--surface-2)); }
.callout strong { color: #fff; }

.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: .7rem; }
.facts div { background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; padding: .75rem .85rem; }
.facts span { display: block; font-size: .66rem; text-transform: uppercase; letter-spacing: .06em; color: var(--faint); margin-bottom: .25rem; }
.facts strong { font-size: .94rem; }
.prov p { color: var(--faint); font-size: .82rem; }

.bar { height: 7px; border-radius: 7px; background: var(--surface-2); overflow: hidden; }
.bar.lg { height: 10px; margin: 0 0 .5rem; }
.bar > span { display: block; height: 100%; border-radius: 7px; background: linear-gradient(90deg, var(--accent-2), var(--accent)); }

/* ---------- Cards (Payback / Trip / Status) ---------- */
.cards { display: grid; gap: .7rem; }
.cards.two-col { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.card { padding: 1rem 1.1rem; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; transition: transform .12s, border-color .12s; }
.card:hover { transform: translateY(-1px); border-color: var(--border-2); }
.card.dont { border-color: rgba(246,192,98,.28); background: linear-gradient(135deg, rgba(246,192,98,.05), var(--surface)); }
.card.floor { border-style: dashed; }
.card.status.auto { box-shadow: inset 3px 0 0 var(--mint); }
.card.trip.ok { border-left: 3px solid var(--mint); }
.card.trip.gap { border-left: 3px solid var(--amber); }
.card-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.prog { font-weight: 650; font-size: 1.02rem; display: inline-flex; align-items: center; gap: .55rem; flex-wrap: wrap; }
.eur { font-weight: 800; font-size: 1.15rem; color: var(--mint); white-space: nowrap; }
.card.dont .eur, .card.floor .eur { color: var(--amber); text-shadow: none; }
.prob { font-weight: 800; color: var(--accent-2); }
.card-sub { color: var(--muted); font-size: .85rem; margin-top: .35rem; display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.card.trip .eur, .card.trip .row-eur { color: var(--text); text-shadow: none; }
.card.trip .row-eur small { font-size: .66rem; color: var(--faint); font-weight: 500; }
.example { color: #b6bece; font-size: .84rem; margin-top: .4rem; }

/* ---------- Chips / tags / alliance ---------- */
.chip { font-size: .7rem; padding: .12rem .5rem; border-radius: 999px; }
.chip.bonus { background: var(--mint-soft); color: var(--mint); border: 1px solid rgba(86,230,166,.4); }
.chip.warn { background: rgba(246,192,98,.1); color: var(--amber); border: 1px solid rgba(246,192,98,.35); }
.chip.live { background: var(--mint-soft); color: var(--mint); border: 1px solid rgba(99,204,160,.45); font-weight: 750; letter-spacing: .04em; }
.tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: .6rem; }
.tag { font-size: .7rem; padding: .14rem .5rem; border: 1px solid var(--border); border-radius: 8px; color: var(--muted); }
.tag.warn { border-color: rgba(246,192,98,.35); color: var(--amber); }
.tag.soft { color: var(--faint); }
.alliance { font-size: .6rem; font-weight: 700; letter-spacing: .04em; color: var(--accent); border: 1px solid rgba(201,164,92,.35); background: rgba(201,164,92,.1); padding: .12rem .45rem; border-radius: 6px; text-transform: uppercase; }

.trip-form { display: flex; flex-direction: column; gap: .85rem; padding: 1.2rem; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); }
.trip-form label { display: flex; flex-direction: column; gap: .35rem; font-size: .72rem; color: var(--faint); text-transform: uppercase; letter-spacing: .05em; }
.trip-form label.check { flex-direction: row; align-items: center; gap: .5rem; text-transform: none; letter-spacing: 0; color: var(--muted); font-size: .85rem; cursor: pointer; }
.trip-form label.check input { width: auto; min-width: 0; accent-color: var(--accent); }
.trip-live { color: var(--mint); font-size: .82rem; font-weight: 650; }

.note { color: var(--faint); font-size: .78rem; margin-top: 2.4rem; line-height: 1.6; border-top: 1px solid var(--border); padding-top: 1.2rem; }

/* ---------- Trip accordion ---------- */
.sort-sel { display: flex; flex-direction: column; gap: .3rem; font-size: .68rem; color: var(--faint); text-transform: uppercase; letter-spacing: .05em; }
.sort-sel select { min-width: 11rem; }
.card.trip { padding: 0; }
.card.trip.open { border-color: var(--border-2); }
.trip-head { width: 100%; display: flex; align-items: center; gap: 1rem; text-align: left; padding: .9rem 1.1rem; }
.trip-head:hover { background: rgba(255,255,255,.02); }
.trip-head-l { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .35rem; }
.trip-route { color: var(--muted); font-size: .85rem; }
.trip-head-r { display: flex; flex-direction: column; align-items: flex-end; gap: .2rem; white-space: nowrap; }
.trip-head-r .ss-cov { margin: 0; font-size: .8rem; }
.chev { color: var(--faint); font-size: .85rem; flex: none; width: 1rem; text-align: center; }
.trip-body { margin: 0 1.1rem 1.1rem; padding-top: 1rem; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 1rem; }
.trip-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: .6rem; }
.trip-facts > div { background: var(--surface-2); border: 1px solid var(--border); border-radius: 11px; padding: .6rem .75rem; }
.trip-facts span { display: block; font-size: .64rem; text-transform: uppercase; letter-spacing: .05em; color: var(--faint); margin-bottom: .25rem; }
.trip-facts strong { font-size: .92rem; }
.trip-cabin { color: #cfd6e2; font-size: .9rem; margin: 0; } .trip-cabin b { color: #fff; }
.trip-h4 { margin: 0 0 .2rem; font-size: .74rem; text-transform: uppercase; letter-spacing: .07em; color: var(--faint); }
.trip-note { color: var(--muted); font-size: .85rem; margin: 0; }
.trip-src { color: var(--faint); font-size: .76rem; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
    .shell { grid-template-columns: 1fr; height: auto; }
    .sidebar { flex-direction: row; flex-wrap: wrap; align-items: center; height: auto; position: sticky; top: 0; z-index: 5; }
    .nav { flex-direction: row; flex-wrap: wrap; }
    .side-controls { flex-direction: row; }
    .side-foot { margin: 0; flex-direction: row; align-items: center; }
    .content { padding: 1.4rem; }
    .md { grid-template-columns: 1fr; }
}

/* ---------- Sidebar: Konto (Admin + Logout) ---------- */
.side-account { display: flex; gap: .5rem; margin-top: .6rem; }
.side-admin {
    flex: 1; text-align: center; text-decoration: none; color: var(--muted);
    border: 1px solid var(--border-2); border-radius: 10px; padding: .5rem; font-size: .82rem;
}
.side-admin:hover { color: var(--text); border-color: var(--accent); }
.side-logout { margin: 0; }
.side-logout button {
    color: var(--faint); border: 1px solid var(--border); border-radius: 10px;
    padding: .5rem .7rem; font-size: .82rem;
}
.side-logout button:hover { color: var(--danger); border-color: var(--danger); }

/* ---------- Admin / Verwaltung ---------- */
.adm { min-height: 100vh; padding: 1.6rem 2rem 3rem; max-width: 1180px; margin: 0 auto; }
.adm-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.4rem; }
.adm-brand { display: flex; align-items: center; gap: .8rem; }
.adm-logo { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; font-size: 19px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #0b0d12; }
.adm-name { font-weight: 700; font-size: 1.15rem; }
.adm-sub { color: var(--faint); font-size: .8rem; }
.adm-actions { display: flex; align-items: center; gap: .55rem; }
.adm-link { color: var(--muted); text-decoration: none; font-size: .85rem; padding: .5rem .7rem; }
.adm-link:hover { color: var(--text); }
.adm-ghost { color: var(--muted); border: 1px solid var(--border-2); border-radius: 10px; padding: .5rem .8rem; font-size: .84rem; }
.adm-ghost:hover { color: var(--text); border-color: var(--accent); }
.adm-logout { margin: 0; }
.adm-logout button { color: var(--faint); border: 1px solid var(--border); border-radius: 10px; padding: .5rem .8rem; font-size: .84rem; }
.adm-logout button:hover { color: var(--danger); border-color: var(--danger); }

.adm-nav { display: flex; gap: .4rem; border-bottom: 1px solid var(--border); margin-bottom: 1.4rem; }
.adm-nav button { color: var(--muted); padding: .65rem .95rem; font-size: .9rem; border-bottom: 2px solid transparent; border-radius: 8px 8px 0 0; }
.adm-nav button:hover { color: var(--text); }
.adm-nav button.active { color: var(--text); border-bottom-color: var(--accent); background: var(--surface); }
.adm-nav .badge { background: var(--raise); color: var(--muted); border-radius: 20px; padding: .05rem .45rem; font-size: .72rem; margin-left: .3rem; }

.adm-msg, .adm-hint { color: var(--muted); }
.adm-err { color: var(--danger); }
.adm-hint { font-size: .86rem; margin: 0 0 1rem; }
.adm-toast { position: fixed; right: 1.4rem; bottom: 1.4rem; background: var(--mint-soft); color: var(--mint);
    border: 1px solid var(--mint-glow); padding: .6rem 1rem; border-radius: 10px; font-size: .86rem; z-index: 20; }

.adm-cards { display: grid; grid-template-columns: repeat(6, 1fr); gap: .8rem; margin-bottom: 1.4rem; }
.card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1rem; }
.card-num { font-size: 1.5rem; font-weight: 700; }
.card-lbl { color: var(--faint); font-size: .76rem; margin-top: .2rem; }
.card.warn .card-num { color: var(--amber); }
.card.ok .card-num { color: var(--mint); }
/* Klickbare KPI-Kacheln (Übersicht) — springen in den passenden Tab. */
.card-link { cursor: pointer; transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease; }
.card-link:hover { border-color: var(--accent); transform: translateY(-2px); box-shadow: 0 10px 26px -14px rgba(201,164,92,.7); }
.card-link:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.adm-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.panel { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1.2rem; }
.panel-h { font-weight: 600; margin-bottom: .9rem; display: flex; justify-content: space-between; align-items: baseline; gap: .5rem; }
.panel-note { color: var(--faint); font-size: .76rem; font-weight: 400; }
.panel-foot { color: var(--faint); font-size: .8rem; margin: .8rem 0 0; }

.vbar { margin-bottom: .8rem; }
.vbar-top { display: flex; justify-content: space-between; font-size: .82rem; margin-bottom: .3rem; }
.vbar-num { color: var(--muted); }
.vbar-track { height: 7px; background: var(--raise); border-radius: 20px; overflow: hidden; }
.vbar-fill { height: 100%; background: linear-gradient(90deg, var(--mint), var(--accent)); border-radius: 20px; }

table.mini, table.grid { width: 100%; border-collapse: collapse; font-size: .85rem; }
table.mini th, table.grid th { text-align: left; color: var(--faint); font-weight: 600; font-size: .74rem;
    text-transform: uppercase; letter-spacing: .04em; padding: .5rem .6rem; border-bottom: 1px solid var(--border); }
table.mini td, table.grid td { padding: .5rem .6rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
table.grid tr:hover td { background: var(--surface); }
.grid .num { text-align: right; font-variant-numeric: tabular-nums; }
.grid .muted { color: var(--muted); }
.grid tr.inactive td { opacity: .45; }

.st { font-size: .72rem; padding: .1rem .45rem; border-radius: 6px; }
.st-ok { background: var(--mint-soft); color: var(--mint); }
.st-failed { background: rgba(255,111,111,.14); color: var(--danger); }
.st-changed_layout { background: rgba(246,192,98,.14); color: var(--amber); }

.cab { font-size: .72rem; padding: .1rem .45rem; border-radius: 6px; text-transform: capitalize; }
.cab-business { background: rgba(201,164,92,.14); color: var(--accent); }
.cab-first { background: rgba(246,192,98,.14); color: var(--amber); }
.cab-economy { background: var(--raise); color: var(--muted); }

.chip { font-size: .72rem; padding: .15rem .5rem; border-radius: 20px; border: 1px solid transparent; }
.chip-ok { background: var(--mint-soft); color: var(--mint); border-color: var(--mint-glow); }
.chip-open { background: rgba(246,192,98,.12); color: var(--amber); border-color: rgba(246,192,98,.25); }

.row-act { text-align: right; white-space: nowrap; }
.ic { font-size: .95rem; padding: .25rem .4rem; border-radius: 7px; color: var(--muted); }
.ic:hover { background: var(--raise); color: var(--text); }
.ic.danger { color: var(--danger); }

.adm-bar { display: flex; gap: .6rem; margin-bottom: 1rem; }
.adm-search { flex: 1; background: var(--surface); border: 1px solid var(--border-2); border-radius: 10px; padding: .55rem .8rem; color: var(--text); }
.adm-search:focus { outline: none; border-color: var(--accent); }
.adm-primary { background: linear-gradient(135deg, var(--accent), var(--accent-2)); color: #0b0d12; font-weight: 600;
    border-radius: 10px; padding: .55rem 1rem; font-size: .86rem; }
.adm-primary:disabled { opacity: .5; cursor: not-allowed; }

.editor { background: var(--surface); border: 1px solid var(--border-2); border-radius: var(--radius); padding: 1.2rem; margin-bottom: 1.2rem; }
.editor-h { font-weight: 600; margin-bottom: 1rem; }
.editor-actions { display: flex; gap: .6rem; flex-wrap: wrap; align-items: center; margin-top: .8rem; }
.adm-danger { background: none; border: 1px solid rgba(224,122,95,.55); color: #e07a5f; border-radius: 10px; padding: .5rem .9rem; font-size: .84rem; font-weight: 650; cursor: pointer; }
.adm-danger:hover { background: rgba(224,122,95,.1); }
.ic-wide { font-size: .76rem; padding: .35rem .6rem; }
.grid tr.sel td { background: rgba(201,164,92,.07); }
.editor-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .8rem; }
.editor-grid label { display: flex; flex-direction: column; gap: .3rem; font-size: .76rem; color: var(--faint);
    text-transform: uppercase; letter-spacing: .03em; }
.editor-grid label.wide { grid-column: span 3; }
.editor-grid label.check { flex-direction: row; align-items: center; gap: .5rem; text-transform: none; color: var(--muted);
    grid-column: span 3; font-size: .85rem; }
.editor-grid input, .editor-grid select, .editor-grid textarea {
    background: var(--bg); border: 1px solid var(--border-2); border-radius: 8px; padding: .5rem .6rem; color: var(--text);
    font: inherit; text-transform: none; letter-spacing: normal; }
.editor-grid input:focus, .editor-grid select:focus, .editor-grid textarea:focus { outline: none; border-color: var(--accent); }
.editor-grid label.check input { width: auto; }
.editor-foot { display: flex; gap: .6rem; margin-top: 1rem; }

.cell { background: var(--bg); border: 1px solid var(--border-2); border-radius: 7px; padding: .35rem .5rem; color: var(--text);
    width: 92px; font: inherit; text-align: right; }
.cell.sm { width: 64px; }
.cell:focus { outline: none; border-color: var(--accent); }
select.cell { width: 70px; text-align: left; }

/* zusätzliche Lauf-Status (Auto-Quellen) */
.st-blocked { background: rgba(255,111,111,.14); color: var(--danger); }
.st-skipped { background: var(--raise); color: var(--faint); }

/* ---------- Admin: Auto-Quellen-Board ---------- */
.src-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.src-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.1rem 1.2rem; display: flex; flex-direction: column; gap: .7rem; }
.src-top { display: flex; justify-content: space-between; align-items: flex-start; gap: .8rem; }
.src-name { font-weight: 600; }
.src-url { color: var(--faint); font-size: .78rem; text-decoration: none; }
.src-url:hover { color: var(--accent); }
.src-meta { display: flex; flex-wrap: wrap; gap: .4rem; }
.src-meta .tag, .src-meta .tag-ok, .src-meta .tag-warn { font-size: .72rem; padding: .12rem .5rem; border-radius: 6px; background: var(--raise); color: var(--muted); }
.src-meta .tag-ok { background: var(--mint-soft); color: var(--mint); }
.src-meta .tag-warn { background: rgba(246,192,98,.14); color: var(--amber); }
.src-found { color: var(--text); font-size: .86rem; }
.src-foot { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--border); padding-top: .6rem; }
.src-age { color: var(--faint); font-size: .78rem; }
.src-foot .ic { border: 1px solid var(--border-2); border-radius: 8px; padding: .35rem .7rem; font-size: .8rem; }

.src-badge { font-size: .74rem; padding: .18rem .55rem; border-radius: 20px; white-space: nowrap; }
.sb-ok { background: var(--mint-soft); color: var(--mint); }
.sb-changed_layout { background: rgba(246,192,98,.14); color: var(--amber); }
.sb-blocked, .sb-failed { background: rgba(255,111,111,.14); color: var(--danger); }
.sb-skipped, .sb-none { background: var(--raise); color: var(--faint); }

/* ---------- Admin: Freigabe-Queue ---------- */
.ex-badge { background: rgba(246,192,98,.16); color: var(--amber); font-size: .64rem; font-weight: 700;
    padding: .06rem .4rem; border-radius: 5px; margin-left: .45rem; letter-spacing: .03em; }
.apply-note { color: var(--faint); font-size: .78rem; margin-top: .25rem; }
.pst-pending { background: rgba(246,192,98,.12); color: var(--amber); }
.pst-approved { background: var(--mint-soft); color: var(--mint); }
.pst-rejected { background: var(--raise); color: var(--faint); }

/* ---------- Status erreichen (Routen) ---------- */
.held-block { display: flex; flex-direction: column; gap: .3rem; margin-top: .2rem; }
.held-label { color: var(--faint); font-size: .72rem; text-transform: uppercase; letter-spacing: .04em; }
.status-detail { display: flex; flex-direction: column; gap: .45rem; }
.sd-h { margin: 0; font-size: 1.1rem; }
.sd-lead { color: var(--text); margin: 0 0 .4rem; }
.sd-warn { color: var(--amber); font-size: .85rem; background: rgba(246,192,98,.1); border: 1px solid rgba(246,192,98,.25); border-radius: 8px; padding: .5rem .7rem; margin: 0; }
.sd-kv { display: flex; justify-content: space-between; gap: 1rem; border-bottom: 1px solid var(--border); padding: .45rem 0; font-size: .9rem; }
.sd-kv span { color: var(--muted); }
.sd-steps { margin: .3rem 0 0; padding-left: 1.2rem; display: flex; flex-direction: column; gap: .5rem; }
.sd-steps li { font-size: .9rem; }
.sd-req { color: var(--muted); font-size: .82rem; margin-top: .15rem; }

/* ---------- Devaluation-Radar ---------- */
.rad-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: .35rem; vertical-align: middle; }
.rad-kritisch { background: var(--danger); }
.rad-warnung { background: var(--amber); }
.rad-info { background: var(--faint); }
.rad-sev { font-size: .68rem; font-weight: 700; padding: .12rem .5rem; border-radius: 20px; margin-right: .4rem; vertical-align: middle; text-transform: uppercase; letter-spacing: .03em; }
.rad-sev.rad-kritisch { background: rgba(255,111,111,.16); color: var(--danger); }
.rad-sev.rad-warnung { background: rgba(246,192,98,.16); color: var(--amber); }
.rad-sev.rad-info { background: var(--raise); color: var(--muted); }

/* ---------- Wissen-Board (Guides) ---------- */
.wissen { min-height: 100vh; max-width: 1180px; margin: 0 auto; padding: 1.6rem 2rem 3rem; }
.wis-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.6rem; }
.wis-brand { display: flex; align-items: center; gap: .8rem; }
.wis-logo { width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center; font-size: 20px; background: linear-gradient(135deg, var(--accent), var(--gold-2)); color: #1a160e; }
.wis-name { font-weight: 700; font-size: 1.2rem; letter-spacing: .01em; }
.wis-sub { color: var(--faint); font-size: .82rem; }
.wis-back { color: var(--muted); text-decoration: none; font-size: .88rem; border: 1px solid var(--border-2); border-radius: 10px; padding: .5rem .9rem; }
.wis-back:hover { color: var(--gold-2); border-color: var(--accent); }
.wis-msg { color: var(--muted); }

/* Wissen – Themen-Kacheln (Skool-Stil) */
.wis-hero { text-align: center; margin: 3vh 0 4vh; }
.wis-eyebrow { color: var(--gold); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 12px; }
.wis-gold { background: linear-gradient(135deg, #c9a45c, #e6cf94); -webkit-background-clip: text; background-clip: text; color: transparent; }
.wis-hero-lead { color: var(--muted); font-size: 1.04rem; line-height: 1.6; max-width: 640px; margin: 0 auto; }
.wis-topics { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 18px; }
.wis-tile { position: relative; text-align: left; display: flex; flex-direction: column; gap: 11px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 24px 22px; cursor: pointer; transition: transform .16s, border-color .16s, box-shadow .16s; overflow: hidden; }
.wis-tile::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--tile, var(--gold)); opacity: .85; }
.wis-tile:hover { transform: translateY(-4px); border-color: rgba(201,164,92,.45); box-shadow: 0 16px 40px rgba(0,0,0,.42); }
.wis-tile-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 25px; background: color-mix(in srgb, var(--tile, #c9a45c) 16%, transparent); border: 1px solid color-mix(in srgb, var(--tile, #c9a45c) 40%, transparent); }
.wis-tile-name { color: var(--text); font-size: 1.2rem; font-weight: 720; }
.wis-tile-desc { color: var(--muted); font-size: .9rem; line-height: 1.5; margin: 0; flex: 1; }
.wis-tile-meta { color: var(--gold-2); font-size: .8rem; font-weight: 600; }
.wis-tile-go { color: var(--faint); font-size: .84rem; font-weight: 600; }

.wis-crumb { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; font-size: .85rem; }
.wis-crumb-back { background: none; border: none; color: var(--muted); cursor: pointer; font-family: inherit; font-size: .85rem; padding: 0; }
.wis-crumb-back:hover { color: var(--gold-2); }
.wis-crumb-sep { color: var(--faint); }
.wis-cat-head { display: flex; align-items: center; gap: 18px; margin: 0 0 26px; padding-left: 14px; border-left: 3px solid var(--tile, var(--gold)); }
.wis-cat-ico { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; font-size: 27px; flex: none; background: color-mix(in srgb, var(--tile, #c9a45c) 16%, transparent); border: 1px solid color-mix(in srgb, var(--tile, #c9a45c) 40%, transparent); }

.wis-lessons { display: flex; flex-direction: column; gap: 12px; }
.wis-lesson { display: flex; align-items: center; gap: 16px; text-align: left; background: var(--surface); border: 1px solid var(--border); border-radius: 15px; padding: 16px 20px; cursor: pointer; transition: border-color .14s, transform .14s, background .14s; }
.wis-lesson:hover { border-color: rgba(201,164,92,.5); transform: translateX(3px); background: linear-gradient(135deg, rgba(201,164,92,.06), var(--surface)); }
.wis-lesson-num { width: 38px; height: 38px; flex: none; border-radius: 50%; display: grid; place-items: center; font-weight: 750; color: var(--gold-2); background: rgba(201,164,92,.12); border: 1px solid var(--border-2); }
.wis-lesson-body { flex: 1; min-width: 0; }
.wis-lesson-h { color: var(--text); font-weight: 680; font-size: 1.05rem; margin-bottom: 3px; }
.wis-lesson-meta { color: var(--faint); font-size: .76rem; margin-bottom: 5px; }
.wis-lesson-sum { color: var(--muted); font-size: .87rem; line-height: 1.45; }
.wis-lesson-go { color: var(--gold-2); font-size: 1.3rem; flex: none; }
.wis-next-row { margin-top: 1.6rem; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.wis-next { background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; border: none; font-weight: 700; font-family: inherit; font-size: .92rem; padding: 12px 18px; border-radius: 11px; cursor: pointer; }
.wis-next:hover { filter: brightness(1.07); }
.wis-done-btn { background: none; border: 1px solid var(--border-2); color: var(--muted); font-family: inherit; font-size: .88rem; font-weight: 600; padding: 11px 16px; border-radius: 11px; cursor: pointer; transition: border-color .14s, color .14s; }
.wis-done-btn:hover { border-color: var(--accent); color: var(--gold-2); }
.wis-done-btn.is-done { border-color: rgba(122,168,116,.5); color: var(--mint); background: rgba(122,168,116,.08); }

/* Fortschritt auf Kacheln + Lektionsliste */
.wis-tile-prog { display: flex; align-items: center; gap: 9px; }
.wis-tile-prog-bar { flex: 1; height: 5px; border-radius: 3px; background: rgba(255,255,255,.07); overflow: hidden; }
.wis-tile-prog-bar span { display: block; height: 100%; border-radius: 3px; background: var(--tile, var(--gold)); }
.wis-tile-prog-t { color: var(--mint); font-size: .76rem; font-weight: 650; white-space: nowrap; }
.wis-lesson-num.done { background: rgba(122,168,116,.16); border-color: rgba(122,168,116,.45); color: var(--mint); }
@media (max-width: 720px) { .wis-cat-head { flex-wrap: wrap; } }

.wis-grid { display: grid; grid-template-columns: 340px 1fr; gap: 1.6rem; align-items: start; }
.wis-list { display: flex; flex-direction: column; gap: .5rem; }
.wis-cat { color: var(--gold); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; margin: .8rem 0 .2rem; }
.wis-card { text-align: left; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: .9rem 1rem; cursor: pointer; transition: border-color .12s, transform .12s; }
.wis-card:hover { border-color: var(--border-2); transform: translateX(2px); }
.wis-card.active { border-color: var(--accent); background: linear-gradient(135deg, rgba(201,164,92,.08), var(--surface)); box-shadow: inset 0 0 0 1px rgba(201,164,92,.2); }
.wis-card-h { font-weight: 650; margin-bottom: .25rem; }
.wis-card-meta { color: var(--faint); font-size: .76rem; }
.wis-card-sum { color: var(--muted); font-size: .82rem; margin-top: .35rem; line-height: 1.4; }
.wis-lvl { color: var(--gold-2); }
.wis-read { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem 2.2rem; }
.wis-h1 { margin: 0 0 .5rem; font-size: 1.7rem; line-height: 1.2; }
.wis-lead { color: var(--muted); font-size: 1.02rem; margin: 0 0 .6rem; line-height: 1.5; }
.wis-meta-row { color: var(--faint); font-size: .82rem; border-bottom: 1px solid var(--border); padding-bottom: 1rem; margin-bottom: .4rem; }
.wis-steps { list-style: none; counter-reset: w; padding: 0; margin: 0; }
.wis-steps li { counter-increment: w; position: relative; padding: 1.2rem 0 1.2rem 3rem; border-bottom: 1px solid var(--border); }
.wis-steps li::before { content: counter(w); position: absolute; left: 0; top: 1.25rem; width: 2rem; height: 2rem; border-radius: 50%; background: linear-gradient(135deg, rgba(201,164,92,.25), rgba(230,207,148,.15)); border: 1px solid var(--border-2); color: var(--gold-2); font-weight: 750; font-size: .9rem; display: grid; place-items: center; }
.wis-steps h3 { margin: 0 0 .4rem; font-size: 1.05rem; }
.wis-steps p { margin: 0; color: var(--muted); line-height: 1.6; }
.wis-tip { margin-top: .6rem; color: var(--gold-2); font-size: .88rem; background: rgba(201,164,92,.08); border-left: 2px solid var(--accent); padding: .5rem .8rem; border-radius: 0 8px 8px 0; }
/* Video-Modus: nur die Grafiken (kein Lesetext), als zentrierte Galerie ohne Schritt-Nummern */
.wis-steps-visual { counter-reset: none; }
.wis-steps-visual > li { counter-increment: none; padding: .6rem 0; border-bottom: none; }
.wis-steps-visual > li::before { content: none; display: none; }

/* Akademie-Videos (KI-Sprecherin Sylvia) — Hochformat 9:16, zentriert, mit KI-Transparenz-Hinweis */
.wis-video { margin: 1rem 0 1.4rem; display: flex; flex-direction: column; align-items: center; }
.wis-video-badge { align-self: flex-start; font-size: .72rem; font-weight: 800; letter-spacing: .02em; color: #1a1408; background: linear-gradient(135deg,#e6cf94,#c9a45c); border-radius: 6px; padding: .2rem .55rem; margin-bottom: .5rem; }
.wis-video-el { width: 100%; max-width: 340px; aspect-ratio: 9 / 16; max-height: 70vh; background: #000; border-radius: 14px; border: 1px solid var(--border); }
.wis-video-note { max-width: 460px; font-size: .76rem; color: var(--muted); text-align: center; margin: .55rem 0 0; line-height: 1.5; }
/* Lesen/Video-Umschalter */
.wis-modeswitch { display: inline-flex; gap: .25rem; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: .25rem; margin-bottom: 1rem; }
.wis-mode { display: inline-flex; align-items: center; gap: .35rem; padding: .4rem .9rem; border-radius: 999px; font-size: .85rem; font-weight: 600; color: var(--muted); text-decoration: none; }
.wis-mode.on { background: linear-gradient(135deg,#e6cf94,#c9a45c); color: #1a1408; }
.wis-mode-new { font-size: .6rem; font-weight: 800; background: rgba(201,164,92,.25); color: var(--gold-2,#c9a45c); border-radius: 4px; padding: .05rem .3rem; }
.wis-mode.on .wis-mode-new { background: rgba(26,20,8,.2); color: #1a1408; }

/* Guide-Schaubilder (Inline-SVG, schwarz-gold) */
.gd-wrap { margin: .85rem 0 .25rem; padding: .5rem .35rem; background: rgba(201,164,92,.045); border: 1px solid var(--border); border-radius: 12px; }
.gd-wrap svg { width: 100%; height: auto; display: block; }
.gd-wrap svg text { font-family: system-ui, -apple-system, "Segoe UI", sans-serif; }
.gd-card { fill: #16130f; stroke: rgba(201,164,92,.5); stroke-width: 1.4; }
.gd-box { fill: #141210; stroke: rgba(201,164,92,.42); stroke-width: 1.4; }
.gd-shield { fill: rgba(201,164,92,.13); stroke: var(--gold); stroke-width: 1.6; }
.gd-line { stroke: rgba(201,164,92,.75); stroke-width: 1.8; }
.gd-line-dim { stroke: rgba(201,164,92,.32); stroke-width: 1.5; stroke-dasharray: 5 5; }
.gd-fill { fill: var(--gold); }
.gd-t { fill: #f3efe6; font-weight: 700; }
.gd-s { fill: #b9ad95; }
.gd-r { fill: var(--gold-2); font-weight: 600; }
.gd-ratio { fill: var(--gold-2); font-weight: 800; }
.gd-badge { fill: var(--gold); }
.gd-badge-t { fill: #1a160e; font-weight: 800; }
.gd-star { fill: var(--gold); }

.wis-risk { display: inline-block; margin: .7rem 0 .1rem; font-size: .82rem; font-weight: 650; padding: .42rem .78rem; border-radius: 8px; }
.wis-risk-1 { color: var(--mint); background: rgba(122,168,116,.13); border: 1px solid rgba(122,168,116,.3); }
.wis-risk-2 { color: var(--gold-2); background: rgba(201,164,92,.12); border: 1px solid var(--border-2); }
.wis-risk-3 { color: #d9a07e; background: rgba(217,138,126,.12); border: 1px solid rgba(217,138,126,.4); }

/* Aktueller Karten-Vergleich */
.cc-load { color: var(--faint); font-size: .85rem; padding: .6rem 0; }
.cc-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(205px, 1fr)); gap: .7rem; margin: .9rem 0 .3rem; }
.cc-card { position: relative; background: #141210; border: 1px solid var(--border); border-radius: 12px; padding: .85rem .9rem; display: flex; flex-direction: column; gap: .42rem; }
.cc-card.rec { border-color: rgba(201,164,92,.55); box-shadow: 0 0 0 1px rgba(201,164,92,.12); }
.cc-rec { position: absolute; top: -9px; right: 10px; background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; font-size: .64rem; font-weight: 800; padding: .14rem .55rem; border-radius: 999px; letter-spacing: .02em; }
.cc-name { color: #f3efe6; font-weight: 700; font-size: .95rem; line-height: 1.25; }
.cc-fee { color: var(--gold-2); font-weight: 700; font-size: .92rem; }
.cc-rate { display: flex; justify-content: space-between; align-items: baseline; color: var(--faint); font-size: .76rem; border-top: 1px solid var(--border); padding-top: .42rem; }
.cc-rate b { color: var(--muted); font-size: .82rem; }
.cc-tag { align-self: flex-start; font-size: .72rem; font-weight: 700; padding: .16rem .5rem; border-radius: 6px; }
.cc-good { background: rgba(122,168,116,.14); color: var(--mint); }
.cc-warn { background: rgba(201,164,92,.14); color: var(--gold-2); }
.cc-bad { background: rgba(217,138,126,.13); color: #d9a07e; }
.cc-note { color: var(--muted); font-size: .78rem; line-height: 1.45; }
.cc-foot { display: flex; justify-content: space-between; align-items: center; gap: .5rem; margin-top: auto; padding-top: .35rem; font-size: .72rem; }
.cc-foot a { color: var(--gold); text-decoration: none; }
.cc-foot a:hover { text-decoration: underline; }
.cc-conf { color: var(--faint); }
.cc-disclaimer { color: var(--faint); font-size: .74rem; margin: .55rem 0 0; line-height: 1.5; }

/* ===== Startseite (Landing / Plattform-Hub) ===== */
.home { min-height: 100vh; display: flex; flex-direction: column; align-items: center; padding: 0 24px 64px;
    background: radial-gradient(1200px 620px at 50% -12%, rgba(201,164,92,.10), transparent 58%); }
.home-bar { width: 100%; max-width: 1080px; display: flex; justify-content: space-between; align-items: center; padding: 22px 2px; }
.home-brand { display: flex; align-items: center; gap: 11px; }
.home-logo { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; font-size: 18px; background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; }
.home-wordmark { color: var(--text); font-weight: 700; letter-spacing: .01em; }
.home-bar-right { display: flex; align-items: center; gap: 16px; }
.home-hi { color: var(--gold-2); font-size: .86rem; }
.home-bar-link { background: none; border: none; color: var(--muted); font-size: .85rem; text-decoration: none; cursor: pointer; padding: 0; font-family: inherit; }
.home-bar-link:hover { color: var(--gold-2); }

.home-hero { width: 100%; max-width: 800px; text-align: center; margin: 7vh 0 6vh; }
.home-eyebrow { color: var(--gold); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 20px; }
.home-h1 { color: var(--text); font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.12; font-weight: 750; margin: 0 0 22px; letter-spacing: -.015em; }
.home-gold { background: linear-gradient(135deg, #c9a45c, #e6cf94); -webkit-background-clip: text; background-clip: text; color: transparent; }
.home-lead { color: var(--muted); font-size: 1.07rem; line-height: 1.65; max-width: 680px; margin: 0 auto; }

.home-hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.home-cta { display: inline-flex; align-items: center; background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; font-weight: 700; text-decoration: none; padding: 12px 22px; border-radius: 11px; font-size: .95rem; }
.home-cta:hover { filter: brightness(1.07); }
.home-cta-ghost { display: inline-flex; align-items: center; color: var(--gold-2); border: 1px solid var(--border-2); text-decoration: none; padding: 12px 22px; border-radius: 11px; font-size: .95rem; }
.home-cta-ghost:hover { border-color: var(--accent); }
.home-cta-sm { display: inline-flex; align-items: center; background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; font-weight: 650; text-decoration: none; padding: 7px 15px; border-radius: 9px; font-size: .85rem; }
.home-cta-sm:hover { filter: brightness(1.07); }

.home-grid { width: 100%; max-width: 1080px; display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.home-card { flex: 1 1 300px; max-width: 340px; display: flex; flex-direction: column; gap: 13px; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 28px 26px; text-decoration: none; transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease; }
.home-card:hover { transform: translateY(-4px); border-color: rgba(201,164,92,.5); box-shadow: 0 18px 44px rgba(0,0,0,.45); }
.home-card-ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; font-size: 26px; color: var(--gold-2); background: rgba(201,164,92,.12); border: 1px solid var(--border-2); }
.home-card-name { color: var(--text); font-size: 1.28rem; font-weight: 700; }
.home-card-desc { color: var(--muted); font-size: .92rem; line-height: 1.55; margin: 0; flex: 1; }
.home-card-go { color: var(--gold-2); font-weight: 650; font-size: .92rem; }
.home-foot { margin-top: 46px; color: var(--faint); font-size: .85rem; letter-spacing: .01em; }

@media (max-width: 820px) { .home-card { max-width: 100%; } .home-hero { margin: 5vh 0 4vh; } }
.home-foot-note { color: var(--faint); font-size: .85rem; }
.home-foot-links { display: flex; gap: 18px; justify-content: center; margin-top: 12px; }
.home-foot-links a { color: var(--muted); text-decoration: none; font-size: .82rem; }
.home-foot-links a:hover { color: var(--gold-2); }

/* ===== Marken-Kacheln (Logo-Ersatz) ===== */
.brand-chip { display: inline-flex; align-items: center; justify-content: center; padding: .45rem .8rem; border-radius: 9px; font-weight: 750; font-size: .8rem; line-height: 1; white-space: nowrap; box-shadow: 0 2px 8px rgba(0,0,0,.3); }
.brand-chip-lg { padding: .7rem 1.1rem; font-size: .95rem; border-radius: 11px; }
/* Logo-Chip: markenfarbene Wortmarke + echtes Brand-Icon (Favicon-CDN, zuverlässig erreichbar).
   Faellt das Icon aus (kein Netz), bleibt die farbige Wortmarke stehen – nie kaputt. */
.brand-chip-logo { gap: .45rem; padding-left: .6rem; }
.brand-fav { width: 16px; height: 16px; border-radius: 4px; object-fit: contain; background: #fff; padding: 1px; flex: none; }
.brand-chip-lg .brand-fav { width: 20px; height: 20px; border-radius: 5px; }

/* ---------- Einheitliche Hauptnavigation (TopNav) — ZWEIZEILIG ----------
   Reihe 1 (.tn-bar): Marke links, Konto rechts.  Reihe 2 (.tn-nav): Primär-Navigation, eigene volle Reihe.
   Die Trennung verhindert das 1↔2-Zeilen-Springen: der hydratisierte Konto-Bereich liegt in Reihe 1 und
   verändert die Breite der Navigationszeile nicht mehr. */
.topnav { position: sticky; top: 0; z-index: 60; width: 100%; background: rgba(9,10,13,.86); backdrop-filter: blur(12px); border-bottom: 1px solid var(--border); }

/* Reihe 1 — Marken-/Konto-Leiste */
.tn-bar { max-width: 1320px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 10px 26px 7px; }
.tn-brand { display: flex; align-items: center; gap: 9px; color: var(--text); font-weight: 750; font-size: 1.06rem; text-decoration: none; white-space: nowrap; }
.tn-logo { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; font-size: 15px; background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; }
.tn-word { letter-spacing: -.01em; }

/* Konto-Cluster rechts. min-height reserviert die Höhe → die Hydration lässt die Leiste nicht springen. */
.tn-account { display: flex; align-items: center; gap: 16px; min-height: 32px; }
.tn-guest, .tn-authed { align-items: center; gap: 16px; }
.tn-hi { color: var(--gold-2); font-size: .84rem; white-space: nowrap; }
.tn-link { background: none; border: none; color: var(--muted); font-size: .85rem; text-decoration: none; cursor: pointer; font-family: inherit; padding: .25rem .1rem; white-space: nowrap; transition: color .15s; }
.tn-link:hover { color: var(--gold-2); }
.tn-admin { color: var(--gold-2); font-weight: 600; }
.tn-cta { display: inline-flex; align-items: center; background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; font-weight: 650; text-decoration: none; padding: 7px 15px; border-radius: 9px; font-size: .84rem; transition: filter .15s; }
.tn-cta:hover { filter: brightness(1.07); }
.tn-bell { position: relative; display: inline-grid; place-items: center; width: 30px; height: 30px; border-radius: 8px; color: var(--muted); text-decoration: none; font-size: 1rem; line-height: 1; transition: background .15s, color .15s; }
.tn-bell:hover { color: var(--gold-2); background: rgba(201,164,92,.1); }
.tn-bell-badge { position: absolute; top: 1px; right: 1px; min-width: 15px; height: 15px; padding: 0 3px; border-radius: 999px; background: #d8543f; color: #fff; font-size: .6rem; font-weight: 700; text-align: center; line-height: 15px; box-sizing: border-box; }

/* Reihe 2 — Primär-Navigation (gold-Pille als Aktiv-Zustand) */
.tn-nav { max-width: 1320px; margin: 0 auto; display: flex; align-items: center; gap: 3px; padding: 0 14px 8px; }
.tn-nav a { flex: 0 0 auto; display: inline-flex; align-items: center; gap: .42rem; color: var(--muted); text-decoration: none; font-size: .88rem; font-weight: 560; padding: .5rem .78rem; border-radius: 9px; white-space: nowrap; transition: background .15s, color .15s; }
.tn-nav a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.tn-nav a.on { color: var(--gold-2); background: rgba(201,164,92,.15); font-weight: 600; }
.tn-i { font-size: .95em; opacity: .82; }
.tn-nav a.on .tn-i, .tn-nav a:hover .tn-i { opacity: 1; }

/* Gäste-Nav ist der öffentliche Default (erbt .tn-nav-Layout, display:flex); die Mitglieder-Nav
   bleibt ohne JS verborgen. hydrateNav (App.razor) blendet für eingeloggte Nutzer um. */
.tn-nav-member { display: none; }

/* Tastatur-Fokus sichtbar (a11y §1) */
.tn-nav a:focus-visible, .tn-link:focus-visible, .tn-cta:focus-visible, .tn-bell:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 2px; }

/* Mobile: Konto-Leiste darf umbrechen; Primär-Nav wird zur scrollbaren Tab-Leiste (volle Labels, kein Abschneiden) */
@media (max-width: 920px) {
    .tn-bar { flex-wrap: wrap; padding: 9px 16px 6px; row-gap: 4px; }
    .tn-hi { display: none; }
    .tn-nav { padding: 0 8px 7px; gap: 2px; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; scroll-snap-type: x proximity; }
    .tn-nav::-webkit-scrollbar { display: none; }
    .tn-nav a { scroll-snap-align: start; padding: .55rem .72rem; }
}

/* ===== Kategorie-Seiten (Hotels / Airlines) ===== */
.cat { max-width: 1080px; margin: 0 auto; padding: 0 24px 70px; }
.cat-bar { display: flex; justify-content: space-between; align-items: center; padding: 22px 2px; flex-wrap: wrap; gap: 12px; }
.cat-brand { display: flex; align-items: center; gap: 9px; color: var(--text); font-weight: 700; text-decoration: none; }
.cat-logo { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; font-size: 16px; background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; }
.cat-nav { display: flex; gap: 16px; flex-wrap: wrap; }
.cat-nav a { color: var(--muted); text-decoration: none; font-size: .88rem; }
.cat-nav a:hover { color: var(--gold-2); }
.cat-hero { text-align: center; margin: 5vh 0 5vh; }
.cat-eyebrow { color: var(--gold); font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.cat-h1 { color: var(--text); font-size: clamp(1.9rem, 4.5vw, 2.9rem); font-weight: 760; margin: 0 0 16px; letter-spacing: -.01em; }
.cat-gold { background: linear-gradient(135deg, #c9a45c, #e6cf94); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cat-lead { color: var(--muted); font-size: 1.05rem; line-height: 1.6; max-width: 680px; margin: 0 auto 22px; }
.brand-row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cat-block { margin: 0 0 48px; }
.cat-h2 { color: var(--text); font-size: 1.5rem; font-weight: 720; margin: 0 0 6px; }
.cat-sub { color: var(--muted); font-size: .95rem; margin: 0 0 20px; line-height: 1.5; }
.cat-sub b { color: var(--text); }

/* --- Einladungscode-Formular (/founding, /insider) --------------------- */
.invite-form { display: flex; flex-direction: column; max-width: 460px; margin: 0 auto; text-align: left; }
.invite-form h2 { text-align: center; margin: 0 0 1rem; }
.invite-form .nl-err { margin: 0 0 .8rem; }
.invite-label { display: block; color: var(--faint); font-size: .74rem; font-weight: 650; text-transform: uppercase; letter-spacing: .05em; margin: .8rem 0 .3rem; }
.invite-label:first-of-type { margin-top: 0; }
.invite-form .nl-consent { margin: 1.1rem 0 0; }
.invite-form .cat-cta { width: 100%; margin: 1.3rem auto 0; }

.tier-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.tier-card { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 22px 20px; }
.tier-card.tier-hl { border-color: rgba(201,164,92,.5); box-shadow: 0 0 0 1px rgba(201,164,92,.12); }
.tier-badge { position: absolute; top: -10px; right: 14px; background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; font-size: .62rem; font-weight: 800; padding: .14rem .55rem; border-radius: 999px; letter-spacing: .02em; }
.tier-head { display: flex; align-items: center; gap: 9px; color: var(--text); font-size: 1.2rem; font-weight: 760; }
.tier-dot { width: 13px; height: 13px; border-radius: 50%; flex: none; }
.tier-silver { background: #b9bfc7; } .tier-gold { background: linear-gradient(135deg, #c9a45c, #e6cf94); } .tier-diamond { background: #8fd3e8; } .tier-reserve { background: #c79be8; }
.tier-req { color: var(--gold-2); font-size: .82rem; margin: .4rem 0 .9rem; }
.tier-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .45rem; }
.tier-list li { color: var(--muted); font-size: .9rem; line-height: 1.4; padding-left: 1.2rem; position: relative; }
.tier-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--mint); font-weight: 700; }
.tier-list li.tier-miss { color: var(--faint); }
.tier-list li.tier-miss::before { content: "\2013"; color: var(--faint); }
.tier-list li b { color: var(--text); }

.cat-callout { display: flex; gap: 14px; align-items: flex-start; margin-top: 20px; background: rgba(201,164,92,.07); border: 1px solid var(--border-2); border-radius: 14px; padding: 16px 18px; color: var(--muted); line-height: 1.6; font-size: .95rem; flex-wrap: wrap; }
.cat-callout b { color: var(--text); }
.cat-callout-ico { color: var(--gold); font-size: 1.3rem; line-height: 1; }
.cat-callout .brand-chip { vertical-align: middle; }

.chain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; }
.chain-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 20px; display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.chain-card p { color: var(--muted); font-size: .9rem; line-height: 1.5; margin: 0; }
.chain-card b { color: var(--text); }

.brand-grid { display: flex; flex-direction: column; gap: 18px; }
.brand-group-h { color: var(--gold); font-size: .78rem; text-transform: uppercase; letter-spacing: .08em; }
.brand-wrap { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 8px; }

.alliance { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 20px; margin-bottom: 16px; }
.alliance-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.alliance-prog { color: var(--muted); font-size: .92rem; } .alliance-prog b { color: var(--gold-2); }
.alliance-note { color: var(--faint); font-size: .85rem; margin: .5rem 0 .9rem; }

.benefit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.benefit { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px; display: flex; flex-direction: column; gap: 7px; }
.benefit-ico { font-size: 1.5rem; } .benefit b { color: var(--text); } .benefit span { color: var(--muted); font-size: .88rem; line-height: 1.45; }

/* ===== Karten-Seite ===== */
.cat-secthead { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 18px; }
.cat-secthead-sub { color: var(--muted); font-size: .92rem; }
.kk-duo { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 20px; }
.kk-col { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.kk-col-head { display: flex; }
.kk-col-lead { color: var(--muted); font-size: .94rem; line-height: 1.55; margin: 0; } .kk-col-lead b { color: var(--text); }
.kk-pick { border: 1px solid var(--border-2); border-radius: 13px; padding: 14px 16px; display: flex; flex-direction: column; gap: 5px; background: rgba(255,255,255,.015); }
.kk-pick-best { border-color: rgba(201,164,92,.55); background: rgba(201,164,92,.07); box-shadow: 0 8px 30px -16px rgba(201,164,92,.5); }
.kk-pick-badge { color: var(--gold); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 650; }
.kk-pick-name { color: var(--text); font-weight: 700; font-size: 1.05rem; }
.kk-fee { color: var(--gold-2); font-weight: 600; font-size: .92rem; }
.kk-pick p { color: var(--muted); font-size: .88rem; line-height: 1.5; margin: 0; } .kk-pick p b { color: var(--text); }
.kk-note-card { border: 1px dashed rgba(224,122,95,.5); border-radius: 13px; padding: 14px 16px; background: rgba(224,122,95,.06); }
.kk-note-card p { color: var(--muted); font-size: .86rem; line-height: 1.5; margin: 6px 0 0; } .kk-note-card p b { color: var(--text); }
.kk-warn { color: #e07a5f; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 650; }

/* ===== Mitgliedschaft (Verkaufsseite) ===== */
.mb-hero-cta { display: flex; justify-content: center; }
.mb-cta { margin: 6px auto 0; }
.mb-tease-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.mb-tease { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 20px; display: flex; flex-direction: column; gap: 9px; }
.mb-tease b { color: var(--text); font-size: 1.04rem; }
.mb-tease p { color: var(--muted); font-size: .89rem; line-height: 1.5; margin: 0; flex: 1; }
.mb-tease-tag { align-self: flex-start; color: var(--gold); font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 650; }
.mb-tease-lock { color: var(--gold-2); font-size: .8rem; font-weight: 600; }
.mb-stats { display: flex; justify-content: center; gap: 34px; flex-wrap: wrap; margin-top: 30px; }
.mb-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.mb-stat b { color: var(--gold-2); font-size: 1.5rem; font-weight: 780; }
.mb-stat span { color: var(--faint); font-size: .78rem; }
.mb-price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 18px; max-width: 720px; margin: 0 auto; }
.mb-price-grid-3 { max-width: 1000px; align-items: stretch; }
.mb-price-grid-3 .mb-price-best { transform: scale(1.03); z-index: 1; }
.mb-price-was { color: var(--faint); font-size: .8rem; text-decoration: line-through; margin-top: -8px; }
.mb-price-top { border-color: rgba(255,255,255,.14); background: linear-gradient(165deg, #15110c, var(--surface)); }
.mb-badge-dark { background: #2a241b; color: var(--gold-2); border: 1px solid var(--border-2); }
@media (max-width: 900px) { .mb-price-grid-3 .mb-price-best { transform: none; } }
.invite-wrap { position: relative; }
.mb-blurred { filter: blur(7px); pointer-events: none; user-select: none; }
.invite-gate { position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; align-items: center;
  justify-content: center; text-align: center; gap: .7rem; padding: 1.5rem; }
.invite-gate .invite-eyebrow { font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-2);
  border: 1px solid var(--border); background: rgba(201,164,92,.08); padding: .35rem .8rem; border-radius: 999px; }
.invite-gate p { color: var(--muted); margin: 0; }
.mb-disclaimer { max-width: 640px; margin: 1.3rem auto 0; text-align: center; font-size: .75rem; line-height: 1.5; color: var(--muted); opacity: .65; }
.mb-price { position: relative; background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 26px 24px; display: flex; flex-direction: column; gap: 14px; }
.mb-price-best { border-color: rgba(201,164,92,.6); box-shadow: 0 14px 44px -18px rgba(201,164,92,.45); }
.mb-price-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); white-space: nowrap; background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; font-size: .72rem; font-weight: 800; padding: .25rem .8rem; border-radius: 999px; }
.mb-price-name { color: var(--muted); font-size: .9rem; font-weight: 650; text-transform: uppercase; letter-spacing: .08em; }
.mb-price-amt { color: var(--text); font-size: 2.1rem; font-weight: 780; }
.mb-price-amt span { color: var(--faint); font-size: .85rem; font-weight: 500; margin-left: 6px; }
.mb-price-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.mb-price-list li { color: var(--muted); font-size: .9rem; padding-left: 1.3rem; position: relative; }
.mb-price-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--gold-2); font-weight: 700; }
.mb-price-cta { display: block; text-align: center; background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; font-weight: 700; text-decoration: none; padding: 12px; border-radius: 11px; }
.mb-price-cta:hover { filter: brightness(1.07); }
.mb-price-cta.ghost { background: none; border: 1px solid var(--border-2); color: var(--gold-2); }
.mb-price-cta.ghost:hover { border-color: var(--accent); }
.mb-price-addon { color: var(--muted); }
/* Vergleichstabelle (generisch, ohne Anbieter-Nennung) */
.cmp { max-width: 760px; margin: 2rem auto; }
.cmp-h { font-size: 1.25rem; color: var(--gold-2); text-align: center; margin: 0 0 1rem; }
.cmp-tab { width: 100%; border-collapse: collapse; font-size: .9rem; }
.cmp-tab th, .cmp-tab td { text-align: left; padding: .6rem .7rem; border-bottom: 1px solid var(--border); }
.cmp-tab thead th { color: var(--faint); font-size: .74rem; text-transform: uppercase; letter-spacing: .06em; }
.cmp-tab td { color: var(--muted); }
.cmp-tab td:first-child { color: var(--text); }
.cmp-tab .cmp-us { color: var(--mint); font-weight: 800; text-align: center; background: rgba(201,164,92,.06); }
.cmp-tab th.cmp-us { color: var(--gold-2); text-align: center; }
.cmp-note { color: var(--faint); font-size: .72rem; text-align: center; margin-top: .6rem; }
/* Community: Antworten + Ranking + Level */
.com-cmt-btn { background: none; border: none; color: var(--gold-2); font-family: inherit; font-size: .8rem; font-weight: 600; cursor: pointer; padding: 0; }
.com-cmt-btn:hover { text-decoration: underline; }
.com-cmts { margin-top: .8rem; border-top: 1px solid var(--border); padding-top: .8rem; display: flex; flex-direction: column; gap: .7rem; }
.com-cmt { background: rgba(255,255,255,.02); border: 1px solid var(--border); border-radius: 10px; padding: .6rem .8rem; }
.com-cmt-head { color: var(--gold-2); font-size: .8rem; font-weight: 650; display: flex; align-items: center; gap: .5rem; }
.com-cmt-head small { color: var(--faint); font-weight: 400; }
.com-cmt p { color: var(--muted); font-size: .88rem; line-height: 1.5; margin: .3rem 0 0; }
.com-cmt-foot { display: flex; align-items: center; gap: .8rem; margin-top: .45rem; }
.com-cmt-like { background: none; border: 1px solid var(--border-2); color: var(--muted); border-radius: 999px; padding: .15rem .6rem; font-size: .76rem; font-weight: 650; cursor: pointer; transition: color .12s, border-color .12s; }
.com-cmt-like:hover:not(:disabled) { color: var(--gold-2); border-color: var(--accent); }
.com-cmt-like.voted { color: var(--gold-2); border-color: var(--accent); background: rgba(201,164,92,.1); }
.com-cmt-like:disabled { opacity: .55; cursor: default; }
.com-cmt-act { background: none; border: none; color: var(--faint); font-family: inherit; font-size: .76rem; cursor: pointer; padding: 0; }
.com-cmt-act:hover { color: var(--gold-2); }
.com-cmt-act.danger { color: #e07a5f; font-weight: 650; }
.com-reply { display: flex; gap: .5rem; }
.com-reply input { flex: 1; background: #0e0c0a; border: 1px solid var(--border-2); border-radius: 9px; padding: .55rem .8rem; color: var(--text); font-size: .88rem; }
.com-reply input:focus { outline: none; border-color: var(--accent); }
.lvl { display: inline-block; font-size: .64rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; padding: .1rem .45rem; border-radius: 999px; vertical-align: middle; }
.lvl-eco { background: rgba(255,255,255,.08); color: var(--muted); }
.lvl-peco { background: rgba(122,168,116,.15); color: var(--mint); }
.lvl-biz { background: rgba(201,164,92,.18); color: var(--gold-2); }
.lvl-first { background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; }
.lvl-suite { background: linear-gradient(135deg, #8d6ad6, #c9b3f5); color: #1a1030; }
.com-rank { margin-top: 1.2rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.com-rank-sub { color: var(--faint); font-size: .76rem; line-height: 1.4; margin: .3rem 0 .7rem; }
.com-rank-row { display: flex; align-items: center; gap: .5rem; padding: .3rem 0; font-size: .84rem; }
.com-rank-pos { width: 1.4rem; color: var(--gold); font-weight: 750; }
.com-rank-name { flex: 1; color: var(--text); font-weight: 600; overflow: hidden; text-overflow: ellipsis; }
.com-rank-score { color: var(--faint); font-size: .76rem; }

/* Empfehlungs-Links (Community, Werbung-gekennzeichnet) */
.ref-box { background: linear-gradient(135deg, rgba(201,164,92,.08), var(--surface)); border: 1px solid var(--border-2); border-radius: 16px; padding: 20px 22px; margin-bottom: 1.6rem; }
.ref-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.ref-ad { background: #2a241b; color: var(--gold-2); border: 1px solid var(--border-2); font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; padding: .22rem .55rem; border-radius: 6px; }
.ref-h { color: var(--text); font-size: 1.08rem; margin: 0; }
.ref-sub { color: var(--muted); font-size: .89rem; line-height: 1.5; margin: .6rem 0 1rem; } .ref-sub b { color: var(--text); }
.ref-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 12px; }
.ref-card { background: var(--surface); border: 1px solid var(--border); border-radius: 13px; padding: 14px; display: flex; flex-direction: column; gap: 9px; align-items: flex-start; }
.ref-bonus { color: var(--muted); font-size: .8rem; line-height: 1.4; flex: 1; }
.ref-cta { display: inline-block; background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; font-weight: 700; font-size: .82rem; text-decoration: none; padding: 8px 13px; border-radius: 9px; }
.ref-cta:hover { filter: brightness(1.07); }
.ref-cta.off { background: none; border: 1px dashed var(--border-2); color: var(--faint); cursor: default; }
.ref-note { color: var(--faint); font-size: .76rem; margin: .9rem 0 0; }

/* Konto / Mitgliedschaft */
.kon-status { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 18px 22px; display: flex; flex-direction: column; gap: 10px; max-width: 560px; }
.kon-row { display: flex; justify-content: space-between; gap: 18px; font-size: .94rem; }
.kon-row span { color: var(--faint); } .kon-row b { color: var(--text); text-align: right; }
.kon-plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
.kon-plan { background: var(--surface); border: 1px solid var(--border); border-radius: 15px; padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.kon-plan.mine { border-color: rgba(122,168,116,.5); background: linear-gradient(135deg, rgba(122,168,116,.07), var(--surface)); }
.kon-plan-name { color: var(--text); font-weight: 720; }
.kon-plan-price { color: var(--gold-2); font-size: 1.3rem; font-weight: 780; }
.kon-plan-price span { color: var(--faint); font-size: .8rem; font-weight: 500; }
.kon-plan-blurb { color: var(--muted); font-size: .84rem; line-height: 1.45; flex: 1; }
.kon-plan-btn { background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; border: none; font-family: inherit; font-weight: 700; font-size: .86rem; padding: 10px; border-radius: 10px; cursor: pointer; }
.kon-plan-btn:hover { filter: brightness(1.07); }
.kon-plan-btn:disabled { opacity: .5; cursor: default; }
a.kon-link-btn { display: inline-block; text-decoration: none; text-align: center; padding: 10px 18px; }   /* Link im Button-Look (seats.aero-Connect) */
.trip-form-hint { color: var(--muted); font-size: .78rem; line-height: 1.45; margin: .3rem 0 0; } .trip-form-hint a { color: var(--gold-2); }

/* Status-Optionen: LINKS die Auswahl (was halte ich?), RECHTS die Optionen als Karten-Grid + Detail. */
.held-search { width: 100%; box-sizing: border-box; background: #0e0c0a; border: 1px solid var(--border-2); color: var(--text); border-radius: 8px; padding: .45rem .6rem; font-size: .82rem; margin: .35rem 0 .5rem; }
.held-search::placeholder { color: var(--faint); }
.held-scroll { max-height: 460px; overflow-y: auto; padding: .2rem .5rem .5rem; border: 1px solid var(--border-2); border-radius: 9px; background: rgba(0,0,0,.18); }
.held-sector { color: var(--gold-2); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; margin: .6rem 0 .3rem; position: sticky; top: 0; background: #14110c; padding: .2rem 0; }
.held-row { display: flex; flex-direction: column; gap: .1rem; }
.held-clear { background: none; border: none; color: var(--gold-2); font-family: inherit; font-size: .72rem; font-weight: 700; cursor: pointer; float: right; padding: 0; text-decoration: underline; }

/* „Das hast du schon" — Status, die allein durch gehaltene Karten bereits gelten (kein offener Weg). */
.held-already { display: flex; gap: .5rem; align-items: baseline; background: rgba(86,178,128,.08); border: 1px solid rgba(86,178,128,.32); border-radius: 10px; padding: .6rem .8rem; margin-bottom: .9rem; font-size: .85rem; line-height: 1.45; }
.held-already .ha-check { color: var(--mint); font-weight: 800; flex: none; }
.held-already .ha-note { color: var(--faint); font-weight: 400; }

/* Optionen-Liste rechts: kompaktes Karten-Grid, Klick öffnet das Detail darunter */
.opt-count { color: var(--gold-2); font-size: .85rem; font-weight: 800; padding: 0 0 .6rem; }
.opt-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; margin-bottom: 1.2rem; }
.opt-card { text-align: left; background: #16130f; border: 1px solid var(--border-2); border-radius: 10px; padding: .6rem .7rem; cursor: pointer; font-family: inherit; transition: border-color .12s, background .12s; }
.opt-card:hover { border-color: var(--gold-2); }
.opt-card.active { border-color: var(--accent); background: rgba(201,164,92,.1); }
.oc-top { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.oc-tier { color: var(--text); font-weight: 700; font-size: .9rem; }
.oc-prob { color: var(--gold-2); font-weight: 800; font-size: .82rem; }
.oc-prog { color: var(--muted); font-size: .78rem; margin-top: .2rem; }
.opt-detail { border-top: 1px solid var(--border-2); padding-top: 1rem; }

/* Status-Match Geo-Badge: kennzeichnet Wege, die NICHT für DE-Nutzer gelten */
.geo-badge { display: inline-block; font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; padding: .12rem .42rem; border-radius: 5px; vertical-align: middle; margin-left: .35rem; }
.geo-badge.geo-us { background: #2b2030; color: #d8a7e0; border: 1px solid #4a3550; }
.geo-badge.geo-au { background: #2a2418; color: #e0c07a; border: 1px solid #4a3f22; }
.sd-geo-warn { color: #e0c07a; font-size: .82rem; line-height: 1.45; margin: .2rem 0 .6rem; } .sd-geo-warn b { color: #f0d68f; }

/* Sprungmarke aus dem Status-Routen-Block zum Status-Run-Planer weiter unten */
.srp-jump { display: inline-block; margin: .2rem 0 1rem; color: var(--gold-2); font-size: .85rem; font-weight: 650; text-decoration: none; border-bottom: 1px dashed rgba(230,207,148,.4); }
.srp-jump:hover { color: var(--gold); border-color: var(--gold); }

/* Status-Run-Planer: €/Statuspunkt-Rechner (bezahlte Flüge statt Fliegen/Status-Match) */
.srp { border-top: 1px solid var(--border-2); margin-top: 1.4rem; padding-top: 1.3rem; }
.srp-h { margin: 0 0 .3rem; font-size: 1rem; font-weight: 750; display: flex; align-items: center; gap: .5rem; }
.srp-tag { font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: #1a160e; background: linear-gradient(135deg, var(--accent), var(--gold-2)); padding: .15rem .5rem; border-radius: 999px; }
.srp-sub { color: var(--muted); font-size: .86rem; line-height: 1.5; margin: 0 0 .9rem; }
.srp-lbl { display: flex; flex-direction: column; gap: .3rem; font-size: .78rem; color: var(--faint); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 1rem; max-width: 420px; }
.srp-sel { background: #16130f; border: 1px solid var(--border-2); color: var(--text); border-radius: 9px; padding: .55rem .7rem; font-size: .92rem; font-family: inherit; text-transform: none; letter-spacing: normal; }
.srp-sel:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(201,164,92,.18); }
.srp-busy { color: var(--faint); font-size: .84rem; padding: .4rem 0; }

.srp-held { display: flex; flex-direction: column; gap: .3rem; margin-bottom: 1rem; }
.srp-held-row { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-top: .6rem; }
.srp-held-lbl { color: var(--text); font-size: .88rem; font-weight: 650; }
.srp-held-lbl em { color: var(--faint); font-style: normal; font-weight: 400; font-size: .8rem; }
.srp-held-inp { width: 6.5rem; background: #16130f; border: 1px solid var(--border-2); color: var(--text); border-radius: 8px; padding: .35rem .55rem; font-size: .9rem; font-variant-numeric: tabular-nums; text-align: right; font-family: inherit; }
.srp-held-inp:focus { outline: none; border-color: var(--accent); }
.srp-bar { height: 6px; border-radius: 4px; background: rgba(255,255,255,.06); overflow: hidden; }
.srp-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--mint), #6fd39a); transition: width .2s; }

.srp-done { background: var(--mint-soft); border: 1px solid rgba(143,191,156,.4); color: var(--mint); border-radius: 10px; padding: .7rem .9rem; font-size: .9rem; font-weight: 650; }
.srp-empty { color: var(--muted); font-size: .88rem; padding: .4rem 0; }

.srp-opts { display: flex; flex-direction: column; gap: .6rem; }
.srp-opt { background: #16130f; border: 1px solid var(--border-2); border-radius: 11px; padding: .75rem .9rem; }
.srp-opt-top { display: flex; align-items: center; gap: .5rem; font-size: .92rem; margin-bottom: .3rem; }
.srp-opt-mid { color: var(--text); font-size: .88rem; line-height: 1.5; font-variant-numeric: tabular-nums; }
.srp-opt-mid b { color: var(--gold-2); }
.srp-opt-pp { color: var(--muted); font-size: .78rem; margin-top: .25rem; font-variant-numeric: tabular-nums; }
.srp-unv { font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--amber); background: rgba(246,192,98,.12); border: 1px solid rgba(246,192,98,.4); padding: .1rem .4rem; border-radius: 5px; }
.srp-note { color: var(--faint); font-size: .78rem; line-height: 1.5; margin: .8rem 0 0; }

/* Status-Run-Planer: Onboarding-Schritte, Tooltips, „gespeichert"-Hinweis, FAQ */
.srp-steps { display: flex; flex-direction: column; gap: .45rem; margin: .1rem 0 .2rem; }
.srp-step { display: flex; align-items: center; gap: .6rem; color: var(--muted); font-size: .86rem; }
.srp-step-n { flex: none; width: 1.45rem; height: 1.45rem; border-radius: 999px; background: rgba(201,164,92,.15); color: var(--gold-2); font-size: .78rem; font-weight: 800; display: inline-flex; align-items: center; justify-content: center; }
.srp-help { display: inline-flex; align-items: center; justify-content: center; width: 1.05rem; height: 1.05rem; border-radius: 999px; border: 1px solid var(--border-2); color: var(--faint); font-size: .66rem; font-weight: 800; cursor: help; vertical-align: middle; }
.srp-help:hover { color: var(--gold-2); border-color: var(--gold-2); }
.srp-unv { cursor: help; }
.srp-saved { color: var(--mint); font-size: .76rem; margin: -.3rem 0 .7rem; }
.srp-faq { margin-top: 1.2rem; border-top: 1px solid var(--border-2); padding-top: .7rem; }
.srp-faq > summary { cursor: pointer; font-weight: 700; font-size: .9rem; color: var(--text); list-style: none; padding: .3rem 0; user-select: none; }
.srp-faq > summary::-webkit-details-marker { display: none; }
.srp-faq > summary::before { content: "\25B8\00A0"; color: var(--gold-2); }
.srp-faq[open] > summary::before { content: "\25BE\00A0"; }
.srp-faq-item { margin: .7rem 0 .8rem; }
.srp-faq-item b { display: block; font-size: .85rem; color: var(--gold-2); margin-bottom: .25rem; }
.srp-faq-item p { margin: 0; color: var(--muted); font-size: .84rem; line-height: 1.55; }

/* Community: Themen-Filter-Chips + Kategorie-Badge an der Karte */
.com-filter { display: flex; flex-wrap: wrap; gap: 7px; margin: 0 0 14px; }
.com-filt { background: #1c1812; border: 1px solid var(--border-2); color: var(--muted); font-family: inherit; font-size: .78rem; font-weight: 700; padding: 6px 11px; border-radius: 999px; cursor: pointer; display: inline-flex; align-items: center; gap: 6px; }
.com-filt span { background: #2a241b; color: var(--gold-2); font-size: .68rem; padding: 1px 7px; border-radius: 999px; }
.com-filt:hover { border-color: var(--gold-2); color: var(--text); }
.com-filt.active { background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; border-color: transparent; }
.com-filt.active span { background: rgba(26,22,14,.25); color: #1a160e; }
.com-cat { display: inline-block; background: #221d14; border: 1px solid var(--border-2); color: var(--gold-2); font-size: .66rem; font-weight: 800; padding: .18rem .5rem; border-radius: 6px; margin-right: .35rem; cursor: pointer; vertical-align: middle; }
.com-cat:hover { filter: brightness(1.2); }

/* Community-Bilder: Upload-Buttons + Anzeige in Beiträgen/Antworten */
.com-file { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin: 2px 0 6px; }
.com-file-btn { display: inline-flex; align-items: center; gap: 6px; background: #221d14; border: 1px solid var(--border-2); color: var(--gold-2); font-size: .8rem; font-weight: 700; padding: 7px 11px; border-radius: 9px; cursor: pointer; }
.com-file-btn:hover { filter: brightness(1.15); }
.com-file-btn input[type=file] { display: none; }   /* der Label-Button öffnet den Dateidialog */
.com-file-btn.sm { padding: 7px 9px; font-size: .85rem; }
.com-file-name { color: var(--muted); font-size: .78rem; display: inline-flex; align-items: center; gap: 6px; margin-top: 4px; }
.com-img { display: block; max-width: 100%; max-height: 360px; object-fit: contain; border-radius: 10px; border: 1px solid var(--border-2); margin-top: .55rem; background: #15120c; }
.com-img-sm { max-height: 220px; }
.kon-plan-cur { color: var(--mint); font-weight: 700; font-size: .88rem; }
.kon-cancel { background: none; border: 1px solid rgba(224,122,95,.55); color: #e07a5f; font-family: inherit; font-weight: 700; font-size: .92rem; padding: 12px 18px; border-radius: 11px; cursor: pointer; }
.kon-cancel:hover { background: rgba(224,122,95,.1); }
.kon-cancel:disabled { opacity: .45; cursor: default; }
.kon-keep { background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; border: none; font-family: inherit; font-weight: 700; font-size: .92rem; padding: 12px 18px; border-radius: 11px; cursor: pointer; }
.kon-confirm { background: var(--surface); border: 1px solid var(--border-2); border-radius: 14px; padding: 16px 20px; max-width: 560px; }
.kon-confirm p { color: var(--muted); margin: 0 0 14px; line-height: 1.55; } .kon-confirm b { color: var(--text); }
.kon-confirm-row { display: flex; gap: 12px; flex-wrap: wrap; }
/* §312j-Bestellübersicht (vor dem Zahlungsschritt). */
.kon-order { margin-top: 20px; background: var(--surface); border: 1px solid var(--border-2); border-radius: 14px; padding: 18px 22px; max-width: 620px; }
.kon-order-h { color: var(--text); font-size: 1.05rem; margin: 0 0 12px; }
.kon-order-grid { display: flex; flex-direction: column; gap: 2px; }
.kon-order-row { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; border-bottom: 1px dashed var(--border); }
.kon-order-row span { color: var(--faint); font-size: .85rem; flex: 0 0 auto; }
.kon-order-row b { color: var(--text); font-size: .88rem; text-align: right; font-weight: 600; }
.kon-order-consent { display: flex; gap: 10px; align-items: flex-start; margin: 16px 0 4px; color: var(--muted); font-size: .85rem; line-height: 1.5; cursor: pointer; }
.kon-order-consent input { margin-top: 3px; accent-color: var(--accent); flex: 0 0 auto; }
.kon-order-consent a { color: var(--gold); }
.kon-order-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.kon-order-pay { padding: 12px 20px; font-size: .95rem; }
.kon-order-draft { color: var(--faint); font-size: .76rem; margin: 12px 0 0; }
/* DSGVO-Selbstbedienung (Export / Löschung). */
.kon-dsgvo { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 8px; }
.kon-dsgvo-card { background: var(--surface); border: 1px solid var(--border-2); border-radius: 14px; padding: 16px 18px; }
.kon-dsgvo-card b { color: var(--text); display: block; margin-bottom: 6px; }
.kon-dsgvo-card p { color: var(--muted); font-size: .86rem; line-height: 1.55; margin: 0 0 12px; }
.kon-dsgvo-danger { border-color: rgba(224,122,95,.4); }
.kon-del-form { display: flex; flex-direction: column; gap: 10px; }
.kon-del-warn { color: #e07a5f; font-size: .82rem; margin: 0; }
.kon-hint { color: var(--faint); font-size: .82rem; margin-top: .6rem; }
.kon-email-row { flex-wrap: wrap; align-items: center; }
.kon-email-row small { color: var(--faint); font-weight: 400; }
.kon-email-edit { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.kon-email-input { background: #0e0c0a; border: 1px solid var(--border-2); border-radius: 8px; padding: 8px 11px; color: var(--text); font-size: .88rem; min-width: 220px; }
.kon-email-input:focus { outline: none; border-color: var(--accent); }
.kon-email-btn { padding: 8px 13px; font-size: .8rem; }
.kon-ref { background: linear-gradient(135deg, rgba(201,164,92,.08), var(--surface)); border: 1px solid var(--border-2); border-radius: 16px; padding: 18px 20px; max-width: 640px; }
.kon-ref-link { display: flex; gap: 8px; flex-wrap: wrap; }
.kon-ref-input { flex: 1; min-width: 280px; font-size: .82rem; color: var(--gold-2); }
.kon-ref-stats { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 12px; color: var(--muted); font-size: .86rem; }
.kon-ref-stats b { color: var(--gold-2); font-size: 1.05rem; }

/* Positionierung + US-Adress-Service + Lifetime */
.pos-box { background: var(--surface); border: 1px solid var(--border); border-left: 3px solid var(--gold); border-radius: 16px; padding: 22px 24px; }
.pos-box p { color: var(--muted); font-size: .98rem; line-height: 1.65; margin: 0 0 14px; } .pos-box b { color: var(--text); }
.pos-points { display: flex; gap: 22px; flex-wrap: wrap; }
.pos-points span { color: var(--gold-2); font-size: .88rem; font-weight: 600; }
.us-svc { background: linear-gradient(135deg, rgba(181,74,106,.12), var(--surface)); border: 1px solid rgba(181,74,106,.4); border-radius: 16px; padding: 22px 24px; }
.us-svc p { color: var(--muted); font-size: .96rem; line-height: 1.6; margin: 0 0 14px; } .us-svc b { color: var(--text); }
.us-svc-meta { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.us-svc-price { color: var(--text); font-size: 1.3rem; font-weight: 780; }
.us-svc-price small { color: var(--faint); font-size: .8rem; font-weight: 500; }
.us-svc-tag { color: var(--gold-2); font-size: .8rem; font-weight: 600; }
.mb-lifetime { max-width: 1000px; margin: 18px auto 0; background: linear-gradient(135deg, rgba(201,164,92,.14), #15110c); border: 1px solid rgba(201,164,92,.55); border-radius: 18px; padding: 22px 26px; }
.mb-lt-badge { display: inline-block; background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; font-size: .72rem; font-weight: 800; padding: .28rem .8rem; border-radius: 999px; margin-bottom: 12px; }
.mb-lt-row { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.mb-lt-amt { color: var(--text); font-size: 1.9rem; font-weight: 780; white-space: nowrap; }
.mb-lt-amt span { color: var(--faint); font-size: .85rem; font-weight: 500; }
.mb-lt-desc { color: var(--muted); font-size: .92rem; line-height: 1.5; margin: 0; flex: 1; min-width: 240px; } .mb-lt-desc b { color: var(--gold-2); }

/* ===== Transferpartner-Seite ===== */
.tp-hub { border-top: 1px solid var(--border); padding-top: 32px; }
.tp-hub-h { display: flex; align-items: center; gap: 10px; }
.tp-hub-dot { width: 10px; height: 10px; border-radius: 50%; flex: none; background: linear-gradient(135deg, var(--accent), var(--gold-2)); box-shadow: 0 0 10px rgba(201,164,92,.4); }
.tp-table-wrap { overflow-x: auto; margin: .8rem 0 0; border-radius: 14px; border: 1px solid var(--border); }
.tp-table { width: 100%; border-collapse: collapse; font-size: .9rem; }
.tp-table thead th { background: var(--surface-2); }
.tp-table tbody tr:last-child td { border-bottom: 0; }
.tp-table tbody tr:hover td { background: var(--raise); }
.tp-table td, .tp-table th { padding: .65rem .9rem; border-bottom: 1px solid var(--border); vertical-align: middle; }
.tp-prog { font-weight: 650; color: var(--text); }
.tp-unverified { margin-left: .5rem; vertical-align: middle; font-size: .66rem; }
.tp-th-sector { min-width: 90px; }
.tp-sector-tag { display: inline-block; font-size: .68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; padding: .14rem .5rem; border-radius: 6px; }
.tp-sec-airline { background: rgba(201,164,92,.13); color: var(--gold-2); }
.tp-sec-hotel   { background: rgba(122,168,116,.13); color: var(--mint); }
.tp-sec-rental  { background: rgba(143,191,156,.12); color: #8fbf9c; }
.tp-sec-bank    { background: rgba(255,255,255,.07); color: var(--muted); }
.tp-sec-retail  { background: rgba(255,255,255,.07); color: var(--muted); }
.tp-th-ratio { min-width: 160px; }
.tp-ratio { font-variant-numeric: tabular-nums; font-weight: 750; font-size: 1rem; color: var(--text); display: inline-block; margin-right: .5rem; }
.tp-ratio-text { color: var(--faint); font-size: .76rem; white-space: nowrap; }
.tp-hint-cell { min-width: 180px; color: var(--muted); font-size: .82rem; }
.tp-activeto { font-size: .78rem; color: var(--faint); }
.tp-empty { color: var(--muted); padding: .6rem 0; font-size: .9rem; }
.tp-link { color: var(--gold-2); text-decoration: none; font-weight: 650; }
.tp-link:hover { text-decoration: underline; }
.cat-foot { border-top: 1px solid var(--border); margin-top: 40px; padding-top: 18px; color: var(--faint); font-size: .82rem; }
.cat-foot a { color: var(--muted); text-decoration: none; }
.cat-foot a:hover { color: var(--gold-2); }
.cat-foot-note { font-size: .74rem; }

.mb-faq { display: flex; flex-direction: column; gap: 10px; max-width: 760px; }
.mb-faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 13px; padding: 14px 18px; }
.mb-faq summary { color: var(--text); font-weight: 650; cursor: pointer; }
.mb-faq p { color: var(--muted); font-size: .92rem; line-height: 1.55; margin: 10px 0 2px; }

.cat-cta { display: block; text-align: center; margin: 8px auto 36px; max-width: 520px; background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; font-weight: 700; text-decoration: none; padding: 14px; border-radius: 12px; }
.cat-cta:hover { filter: brightness(1.07); }
.cat-foot { text-align: center; color: var(--faint); font-size: .84rem; border-top: 1px solid var(--border); padding-top: 20px; }
.cat-foot a { color: var(--muted); text-decoration: none; } .cat-foot a:hover { color: var(--gold-2); }
.cat-foot-note { display: block; margin-top: 8px; font-size: .76rem; }

/* Status-per-Karte-Abkürzungen + Ketten-Header */
.shortcut-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 14px; }
.shortcut-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 16px 18px; }
.shortcut-card.us { border-style: dashed; }
.shortcut-head { display: flex; align-items: center; gap: 8px; color: var(--text); margin-bottom: 8px; flex-wrap: wrap; }
.shortcut-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .4rem; }
.shortcut-list li { color: var(--muted); font-size: .9rem; padding-left: 1.1rem; position: relative; }
.shortcut-list li::before { content: "\2192"; position: absolute; left: 0; color: var(--gold); }
.shortcut-list li b, .shortcut-card p b { color: var(--gold-2); }
.shortcut-card p { color: var(--muted); font-size: .9rem; margin: 0; }
.shortcut-note { display: block; margin-top: 10px; color: var(--faint); font-size: .76rem; }
.shortcut-foot { color: var(--faint); font-size: .82rem; margin-top: 16px; }
.us-tag { background: rgba(217,138,126,.16); color: #d9a07e; font-size: .62rem; font-weight: 800; padding: .12rem .4rem; border-radius: 5px; letter-spacing: .04em; }

.chain-section { border-top: 1px solid var(--border); padding-top: 30px; }
.chain-header { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 4px; }
.chain-prog { color: var(--gold-2); font-size: .92rem; font-weight: 600; }
.chain-brands { margin-top: 22px; }

/* ===== Punkte-Wallet ===== */
.cat-logout { background: none; border: none; color: var(--muted); font-size: .88rem; cursor: pointer; font-family: inherit; padding: 0; }
.cat-logout:hover { color: var(--gold-2); }
.wal-hero { margin-bottom: 3vh; }
.wal-grid { display: grid; grid-template-columns: 1fr 330px; gap: 22px; align-items: start; }
.wal-main { display: flex; flex-direction: column; gap: 10px; }
.wal-cta { display: flex; justify-content: space-between; align-items: center; gap: 16px; background: linear-gradient(135deg, rgba(0,111,207,.14), var(--surface)); border: 1px solid var(--border-2); border-radius: 16px; padding: 18px 20px; flex-wrap: wrap; margin-bottom: 6px; }
.wal-cta-amt { color: var(--text); font-size: 1.7rem; font-weight: 780; }
.wal-cta-amt span { color: var(--gold-2); font-size: 1rem; font-weight: 600; }
.wal-cta-sub { color: var(--muted); font-size: .85rem; margin-top: 2px; }
.wal-cta-btn { background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; font-weight: 700; text-decoration: none; padding: 11px 18px; border-radius: 10px; font-size: .9rem; white-space: nowrap; }
.wal-cta-btn:hover { filter: brightness(1.07); }
.wal-summary { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 6px; }
.wal-sum-card { background: linear-gradient(135deg, rgba(201,164,92,.15), var(--surface)); border: 1px solid var(--border-2); border-radius: 16px; padding: 18px 20px; display: flex; flex-direction: column; justify-content: center; }
.wal-sum-amt { color: var(--gold-2); font-size: 1.9rem; font-weight: 800; line-height: 1; }
.wal-sum-sub { color: var(--muted); font-size: .82rem; margin-top: 6px; }
.wal-val { color: var(--gold-2); font-weight: 650; }
.wal-prev { color: var(--gold-2); font-size: .8rem; margin: -2px 0 0; }
@media (max-width: 700px) { .wal-summary { grid-template-columns: 1fr; } }
.wal-empty { color: var(--muted); background: var(--surface); border: 1px dashed var(--border-2); border-radius: 14px; padding: 24px; text-align: center; }
.wal-group-h { color: var(--gold); font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; margin: 14px 0 2px; }

/* Wallet-Hub Reiter (Punkte · Karten · Sammelplan) */
.wtabs { display: flex; gap: 4px; flex-wrap: wrap; margin: 0 0 22px; border-bottom: 1px solid var(--border); }
.wtab { display: inline-flex; align-items: center; gap: 6px; padding: 10px 16px; font-size: .9rem; font-weight: 600; color: var(--muted); text-decoration: none; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .15s, border-color .15s; }
.wtab:hover { color: var(--text); }
.wtab.on { color: #e6cf94; border-bottom-color: #c9a45c; }
.wtab-i { font-size: 1rem; }
.wal-row { display: flex; align-items: center; gap: 14px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; }
.wal-row-main { flex: 1; min-width: 0; }
.wal-row-amt { color: var(--text); font-weight: 750; font-size: 1.05rem; }
.wal-row-amt span { color: var(--faint); font-size: .8rem; font-weight: 500; margin-left: 3px; }
.wal-row-meta { font-size: .82rem; margin-top: 3px; display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.wal-exp.exp-ok { color: var(--mint); } .wal-exp.exp-warn { color: var(--gold-2); } .wal-exp.exp-bad { color: #d9a07e; } .wal-exp.exp-none { color: var(--faint); }
.wal-note { color: var(--muted); }
.wal-row-act { display: flex; gap: 4px; }
.wal-form { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 18px; position: sticky; top: 16px; display: flex; flex-direction: column; gap: 10px; }
.wal-form label { display: flex; flex-direction: column; gap: 5px; color: var(--muted); font-size: .82rem; }
.wal-form input, .wal-form select { background: #0e0c0a; border: 1px solid var(--border-2); border-radius: 8px; padding: 9px 11px; color: var(--text); font-size: .9rem; }
.wal-check { flex-direction: row !important; align-items: center; gap: 8px !important; color: var(--gold-2) !important; }
.wal-check input { width: auto; }
.wal-hint { color: var(--gold-2); font-size: .78rem; background: rgba(201,164,92,.08); border-left: 2px solid var(--accent); padding: .5rem .7rem; border-radius: 0 8px 8px 0; margin: 0; line-height: 1.45; }
.wal-form-btns { display: flex; gap: 8px; margin-top: 4px; }
.wal-cancel { background: none; border: 1px solid var(--border-2); color: var(--muted); border-radius: 8px; padding: 9px 14px; cursor: pointer; }
@media (max-width: 820px) { .wal-grid { grid-template-columns: 1fr; } .wal-form { position: static; } }

/* ===== Amex-Startboni ===== */
.home-amex { width: 100%; max-width: 1080px; margin: 48px auto 0; }
.amex-offers { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 24px; }
.amex-head { display: flex; align-items: center; gap: 16px; margin-bottom: 18px; flex-wrap: wrap; }
.amex-title { color: var(--text); font-weight: 700; font-size: 1.15rem; }
.amex-sub { color: var(--muted); font-size: .85rem; margin-top: 2px; }
.amex-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 12px; }
.amex-card { background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; }
.amex-card-name { color: var(--text); font-weight: 650; font-size: .95rem; }
.amex-bonus { color: var(--gold-2); font-weight: 700; font-size: .9rem; margin: .4rem 0; }
.amex-fee { color: var(--faint); font-size: .78rem; }
.amex-load { color: var(--faint); font-size: .85rem; }
.amex-disc { color: var(--faint); font-size: .74rem; margin: 14px 0 0; line-height: 1.5; }

/* ===== Rechtsseiten (Impressum / Datenschutz) ===== */
.legal-bar { max-width: 760px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 22px 24px; }
.legal-home { display: flex; align-items: center; gap: 9px; color: var(--text); font-weight: 700; text-decoration: none; }
.legal-logo { width: 32px; height: 32px; border-radius: 8px; display: grid; place-items: center; font-size: 15px; background: linear-gradient(135deg, #b8924a, #e6cf94); color: #1a160e; }
.legal-back { color: var(--muted); text-decoration: none; font-size: .88rem; } .legal-back:hover { color: var(--gold-2); }
.legal-doc { max-width: 760px; margin: 0 auto; padding: 10px 24px 80px; color: var(--muted); line-height: 1.7; }
.legal-doc h1 { color: var(--text); font-size: 2rem; margin: 10px 0 18px; }
.legal-doc h2 { color: var(--text); font-size: 1.15rem; margin: 28px 0 8px; }
.legal-doc p, .legal-doc li { color: var(--muted); font-size: .95rem; }
.legal-doc ul { padding-left: 1.2rem; } .legal-doc li { margin-bottom: .4rem; }
.legal-doc b { color: var(--text); }
.legal-doc a { color: var(--gold); }
.legal-doc code { color: var(--gold-2); background: var(--surface); padding: 1px 5px; border-radius: 5px; font-size: .85em; }
.legal-note { background: rgba(201,164,92,.07); border-left: 2px solid var(--accent); padding: 12px 14px; border-radius: 0 8px 8px 0; font-size: .88rem; }
/* ENTWURF-Banner: deutlich sichtbarer Warn-Hinweis auf nicht freigegebene Rechtstexte. */
.legal-draft { background: rgba(217,138,126,.10); border: 1px solid rgba(217,138,126,.5); border-left: 3px solid #d98a7e; color: #e7c7c0; padding: 12px 14px; border-radius: 8px; font-size: .9rem; }
.legal-draft b { color: #f0d7d1; }
.legal-sub { color: var(--faint); font-size: .88rem; font-style: italic; }
.legal-form { margin: 14px 0; padding: 14px 18px; border: 1px dashed var(--border); border-radius: 8px; background: var(--surface); }
.legal-form p { margin: .35rem 0; font-size: .9rem; }
.legal-foot { margin-top: 36px; border-top: 1px solid var(--border); padding-top: 18px; font-size: .85rem; }
.wis-sources { margin-top: 1.2rem; font-size: .82rem; color: var(--faint); display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.wis-sources a { color: var(--gold); text-decoration: none; border: 1px solid var(--border); border-radius: 6px; padding: .15rem .5rem; }
.wis-sources a:hover { border-color: var(--accent); }
.wis-note { color: var(--faint); font-size: .76rem; margin-top: 1rem; font-style: italic; }

/* Board-Link in der Optimizer-Sidebar */
.side-board { display: block; text-align: center; text-decoration: none; color: var(--gold-2); border: 1px solid rgba(201,164,92,.28);
    background: rgba(201,164,92,.06); border-radius: 10px; padding: .55rem; font-size: .86rem; font-weight: 600; margin-top: .6rem; }
.side-board:hover { border-color: var(--accent); background: rgba(201,164,92,.12); }

@media (max-width: 940px) { .wis-grid { grid-template-columns: 1fr; } }

/* ---------- Community-Board ---------- */
.board-links { display: flex; gap: .5rem; }
.com-grid { display: grid; grid-template-columns: 320px 1fr; gap: 1.6rem; align-items: start; }
.com-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.2rem; display: flex; flex-direction: column; gap: .6rem; position: sticky; top: 1rem; }
.com-form-h { margin: 0 0 .4rem; font-size: 1.05rem; }
.com-form label { display: flex; flex-direction: column; gap: .25rem; font-size: .72rem; color: var(--faint); text-transform: uppercase; letter-spacing: .03em; }
.com-form input, .com-form select, .com-form textarea { background: var(--bg); border: 1px solid var(--border-2); border-radius: 8px; padding: .5rem .6rem; color: var(--text); font: inherit; text-transform: none; letter-spacing: normal; }
.com-form input:focus, .com-form select:focus, .com-form textarea:focus { outline: none; border-color: var(--accent); }
.com-hint { color: var(--gold-2); font-size: .76rem; background: rgba(201,164,92,.08); border-left: 2px solid var(--accent); padding: .5rem .7rem; border-radius: 0 8px 8px 0; margin: .4rem 0 0; line-height: 1.45; }
.com-feed { display: flex; flex-direction: column; gap: .8rem; }
.com-feed-h { color: var(--faint); font-size: .82rem; }
.com-card { display: flex; gap: 1rem; align-items: flex-start; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 1rem 1.1rem; }
.com-card.st-pending { border-color: rgba(217,164,65,.3); }
.com-card.st-rejected { opacity: .5; }
.com-vote { flex: none; display: flex; flex-direction: column; align-items: center; gap: .05rem; min-width: 2.5rem; padding: .4rem .2rem; border: 1px solid var(--border-2); border-radius: 10px; color: var(--muted); font-weight: 700; font-size: .92rem; }
.com-vote:hover { border-color: var(--accent); color: var(--gold-2); }
.com-vote.voted { border-color: var(--accent); background: rgba(201,164,92,.14); color: var(--gold-2); }
.com-vote.voted .com-arr { color: var(--gold-2); }
.com-arr { font-size: .68rem; color: var(--gold); }
.com-me { color: var(--gold-2); font-weight: 700; font-size: .85rem; padding: .3rem .6rem; border: 1px solid var(--border-2); border-radius: 999px; background: rgba(201,164,92,.08); }
.com-as { color: var(--faint); font-size: .8rem; margin: .2rem 0 .1rem; }
.com-as b { color: var(--gold-2); }
.com-card-main { flex: 1; min-width: 0; }
.com-card-h { font-weight: 600; }
.com-card-meta { color: var(--muted); font-size: .8rem; margin-top: .25rem; }
.com-card-detail { color: var(--muted); font-size: .86rem; margin-top: .45rem; line-height: 1.5; }
.com-card-foot { display: flex; gap: 1rem; align-items: center; margin-top: .6rem; flex-wrap: wrap; }
.com-src { color: var(--gold); text-decoration: none; font-size: .8rem; border: 1px solid var(--border); border-radius: 6px; padding: .15rem .5rem; }
.com-src:hover { border-color: var(--accent); }
.com-mod { display: flex; gap: .4rem; flex-wrap: wrap; align-items: center; background: rgba(201,164,92,.07); border: 1px dashed rgba(201,164,92,.4); border-radius: 8px; padding: .25rem .5rem; }
.com-mod-tag { font-size: .62rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--gold, #c9a45c); }
.com-mod .mod-restore { color: #9fd89f; }
.com-mod .mod-del { color: #e0a0a0; }
.com-modbar { background: rgba(201,164,92,.1); border: 1px solid rgba(201,164,92,.4); border-radius: 10px; padding: .55rem .8rem; margin-bottom: .8rem; font-size: .82rem; color: var(--gold, #e6cf94); }
@media (max-width: 940px) { .com-grid { grid-template-columns: 1fr; } }

@media (max-width: 940px) {
    .adm-cards { grid-template-columns: repeat(2, 1fr); }
    .adm-grid2, .src-grid { grid-template-columns: 1fr; }
    .editor-grid { grid-template-columns: 1fr; }
    .editor-grid label.wide, .editor-grid label.check { grid-column: span 1; }
}

/* ===== Demo-Wallet (Beispiel-Ansicht für trial3m) ===== */
.demo-wallet-banner { display: flex; align-items: center; gap: 10px; background: rgba(201,164,92,.10); border: 1px solid rgba(201,164,92,.35); border-radius: 12px; padding: 12px 16px; margin-bottom: 18px; color: var(--gold-2); font-size: .92rem; line-height: 1.4; }
.demo-wallet-banner strong { color: var(--text); }
.demo-wallet-lock { font-size: 1.15rem; flex: none; }
.demo-wallet-badge { display: inline-block; font-size: .65rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--gold); border: 1px solid rgba(201,164,92,.35); border-radius: 5px; padding: 1px 6px; margin-left: 8px; vertical-align: middle; }
.demo-wallet-muted { opacity: .65; pointer-events: none; user-select: none; }
.demo-wallet-row { opacity: .72; position: relative; }
.demo-wallet-overlay-icon { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); font-size: 1.1rem; color: var(--faint); pointer-events: none; }
.demo-wallet-chip { width: 38px; height: 38px; border-radius: 9px; display: grid; place-items: center; font-size: .72rem; font-weight: 800; color: #fff; flex: none; letter-spacing: .02em; }
.demo-wallet-warn { display: flex; align-items: flex-start; gap: 10px; background: rgba(217,164,65,.08); border: 1px solid rgba(217,164,65,.30); border-radius: 12px; padding: 12px 16px; margin: 14px 0; font-size: .88rem; color: var(--gold-2); line-height: 1.5; }
.demo-wallet-warn strong { color: var(--text); }
.demo-wallet-warn-ico { font-size: 1.1rem; flex: none; margin-top: 1px; }
.demo-wallet-cta { margin-top: 18px; display: block; }
.demo-wallet-disclaimer { color: var(--faint); font-size: .74rem; text-align: center; margin-top: 12px; line-height: 1.5; }
.mb-3 { margin-bottom: .75rem; }
.mb-4 { margin-bottom: 1rem; }
.mt-4 { margin-top: 1rem; }

/* ---------- TopNav: Glocken-Link + Zähler-Badge ---------- */
.tn-bell {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 9px;
    color: var(--muted);
    text-decoration: none;
    font-size: 1.05rem;
    transition: background .15s, color .15s;
    flex: none;
}
.tn-bell:hover { background: rgba(201,164,92,.08); color: var(--gold-2); }
.tn-bell.on  { color: var(--gold-2); background: rgba(201,164,92,.12); }

.tn-bell-badge {
    display: none; /* per JS auf block/flex setzen wenn > 0 */
    position: absolute;
    top: 3px;
    right: 3px;
    min-width: 15px;
    height: 15px;
    padding: 0 3px;
    border-radius: 999px;
    background: var(--gold);
    color: #1a160e;
    font-size: .6rem;
    font-weight: 800;
    line-height: 15px;
    text-align: center;
    pointer-events: none;
    box-shadow: 0 0 0 2px rgba(9,10,13,.82); /* passt zur Topnav-Hintergrundfarbe */
}

/* ---------- Autocomplete-Dropdown (@-Erwähnung) ---------- */
.mention-list {
    position: absolute;
    z-index: 120;
    background: var(--surface-2);
    border: 1px solid var(--border-2);
    border-radius: 11px;
    box-shadow: 0 12px 36px rgba(0,0,0,.55);
    min-width: 200px;
    max-width: 320px;
    max-height: 220px;
    overflow-y: auto;
    padding: .3rem 0;
}
.mention-list button,
.mention-list [role="option"] {
    display: block;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: .55rem .85rem;
    color: var(--muted);
    font-size: .88rem;
    font-family: inherit;
    cursor: pointer;
    transition: background .1s, color .1s;
    border-radius: 0;
}
.mention-list button:hover,
.mention-list [role="option"]:hover,
.mention-list .mention-active {
    background: rgba(201,164,92,.10);
    color: var(--gold-2);
}

/* ---------- @handle-Chip im Kommentartext ---------- */
.mention-chip {
    display: inline;
    color: var(--gold-2);
    background: rgba(201,164,92,.10);
    border-radius: 4px;
    padding: 0 .25em;
    font-weight: 650;
    font-size: .93em;
}

/* ---------- Benachrichtigungs-Postfach (/benachrichtigungen) ---------- */
.notif-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}
.notif-count {
    color: var(--gold-2);
    font-size: .84rem;
    font-weight: 700;
}

.notif-list {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.notif-item {
    display: flex;
    align-items: flex-start;
    gap: .9rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 13px;
    padding: .85rem 1rem;
    text-align: left;
    width: 100%;
    font-family: inherit;
    cursor: pointer;
    transition: border-color .14s, background .14s;
    position: relative;
}
.notif-item:hover {
    border-color: var(--border-2);
    background: var(--surface-2);
}
/* ungelesen: kräftigerer Hintergrund + goldener Rand-Akzent */
.notif-item.unread {
    background: linear-gradient(135deg, rgba(201,164,92,.07), var(--surface));
    border-color: rgba(201,164,92,.3);
}

.notif-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--gold);
    flex: none;
    margin-top: .35rem;
    box-shadow: 0 0 8px rgba(201,164,92,.55);
    /* versteckt bei gelesenen Einträgen */
}
.notif-item:not(.unread) .notif-dot {
    opacity: 0;
}

.notif-body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: .18rem;
}

.notif-text {
    color: var(--text);
    font-size: .9rem;
    line-height: 1.45;
    font-weight: 500;
}
.notif-item:not(.unread) .notif-text {
    color: var(--muted);
    font-weight: 400;
}

.notif-time {
    color: var(--faint);
    font-size: .74rem;
    margin-top: .1rem;
}

.notif-arrow {
    color: var(--faint);
    font-size: .85rem;
    flex: none;
    align-self: center;
    margin-left: auto;
    padding-left: .4rem;
}
.notif-item:hover .notif-arrow { color: var(--gold-2); }

/* Leer-Zustand */
.notif-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: 3.5rem 1rem;
    color: var(--faint);
    font-size: .9rem;
    text-align: center;
    border: 1px dashed var(--border);
    border-radius: 14px;
    background: var(--surface);
}

/* ---------- Sylvia-Assets (KI-Trainerin) ---------- */
/* TODO: vor Deploy zu .webp konvertieren (Performance) */
.syl-hero {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 340px;
    margin-bottom: 1.5rem;
}
.syl-hero-copy { padding: clamp(1.2rem,4vw,2.6rem); z-index: 1; }
.syl-eyebrow {
    color: var(--gold);
    font-size: .7rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 600;
    margin: 0 0 .5rem;
}
.syl-hero h1 {
    color: var(--text);
    font-size: clamp(1.6rem,3.5vw,2.6rem);
    line-height: 1.1;
    margin: 0;
}
.syl-lead { color: var(--muted); margin: .8rem 0 0; max-width: 42ch; }
/* mix-blend-mode: lighten hebt das reine Bild-Schwarz exakt auf den Seiten-Hintergrund (--bg #0a0908)
   an – so verschmilzt der dunkle Bildhintergrund bündig mit der Seite; Sylvia (heller) bleibt unberührt. */
.syl-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; mix-blend-mode: lighten; }
@media (max-width: 768px) {
    .syl-hero { grid-template-columns: 1fr; }
    .syl-hero-img { order: -1; aspect-ratio: 16/9; }
}

.syl-teacher { display: flex; align-items: center; gap: .7rem; margin-top: 1.1rem; }
.syl-avatar {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 0 0 2px var(--gold-2), 0 8px 30px -8px rgba(201,164,92,.7);
}
.syl-muted { color: var(--muted); font-size: .8rem; }

.syl-banner-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
}
.syl-banner-img { width: 100%; height: auto; display: block; aspect-ratio: 16/9; object-fit: cover; }
.syl-banner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: clamp(1.2rem,4vw,2.6rem);
    background: linear-gradient(to left, rgba(10,9,8,.72) 0%, transparent 60%);
}
.syl-banner-overlay h2 { color: var(--text); margin: 0 0 .5rem; font-size: clamp(1.2rem,2.8vw,1.9rem); text-align: right; }
.syl-banner-overlay p { color: var(--muted); margin: 0; max-width: 38ch; text-align: right; font-size: .93rem; }

.cat-foot-syl-note {
    display: block;
    margin-top: .6rem;
    color: var(--faint);
    font-size: .78rem;
    letter-spacing: .01em;
}

/* ===== Frag Sylvia — schwebender Board-Assistent ===== */
/* Wrapper: fixed unten rechts, kein stacking-context-Bug, kein Seitenfluss-Eingriff */
.syl-launcher-wrap {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    pointer-events: none; /* Kinder schalten selbst auf auto */
}
.syl-launcher-wrap > * { pointer-events: auto; }

/* FAB-Button */
.syl-fab {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .6rem 1rem .6rem .7rem;
    background: linear-gradient(135deg, var(--accent), var(--gold-2));
    color: #0a0908;
    font-weight: 700;
    font-size: .9rem;
    border-radius: 999px;
    box-shadow: 0 6px 28px -6px rgba(201,164,92,.65), 0 2px 8px rgba(0,0,0,.55);
    cursor: pointer;
    border: none;
    transition: transform .15s, box-shadow .15s;
    min-height: 44px; /* Touch-Target */
    min-width: 44px;
}
/* „Mehr Beiträge laden" am Ende des paginierten Community-Feeds. */
.com-more { display: flex; justify-content: center; padding: 1.1rem 0 .4rem; }

/* Der Auslöser ist auf statischen Seiten ein <a> (kein Circuit), im offenen Zustand ein <button>. */
a.syl-fab { text-decoration: none; }
.syl-fab:hover { transform: translateY(-2px); box-shadow: 0 10px 32px -6px rgba(201,164,92,.75), 0 4px 12px rgba(0,0,0,.6); }
.syl-fab:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }
.syl-fab-img { border-radius: 50%; flex: none; object-fit: cover; }
.syl-fab-label { white-space: nowrap; }

/* Chat-Panel — Hintergrund = --bg (#0a0908), exakt der Avatar-PNG-Hintergrund: Sylvias Grafik verschmilzt. */
.syl-chat {
    width: min(380px, calc(100vw - 2rem));
    background: var(--bg);
    border: 1px solid rgba(201,164,92,.22);
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px -12px rgba(0,0,0,.85), 0 0 0 1px rgba(201,164,92,.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: min(560px, calc(100vh - 4rem));
}

/* Kopf — dunkles Gold-auf-Schwarz, der Avatar sitzt nahtlos auf #0a0908 */
.syl-head {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .8rem 1rem;
    background: linear-gradient(135deg, #16120b, var(--bg));
    border-bottom: 1px solid rgba(201,164,92,.18);
    flex: none;
}
.syl-head-img { border-radius: 50%; flex: none; object-fit: cover; box-shadow: 0 0 0 1px rgba(201,164,92,.35); }
.syl-head-text { display: flex; flex-direction: column; gap: .05rem; flex: 1; min-width: 0; }
.syl-head-name { font-weight: 720; font-size: .98rem; color: var(--gold-2); }
.syl-head-sub { font-size: .73rem; color: var(--muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.syl-close {
    width: 34px; height: 34px; min-width: 34px;
    display: grid; place-items: center;
    border-radius: 50%;
    font-size: 1.25rem;
    color: var(--muted);
    background: none; border: none; cursor: pointer;
    transition: background .12s, color .12s;
    padding: 0;
}
.syl-close:hover { background: rgba(255,255,255,.07); color: var(--text); }
.syl-close:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

/* Nachrichten-Strom */
.syl-stream {
    flex: 1;
    overflow-y: auto;
    padding: .9rem .85rem .4rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    background: var(--bg);
}
.syl-row { display: flex; align-items: flex-end; gap: .45rem; max-width: 100%; }
.syl-row-user { justify-content: flex-end; }
.syl-row-av { border-radius: 50%; flex: none; align-self: flex-end; box-shadow: 0 0 0 1px rgba(201,164,92,.3); }

.syl-bubble {
    max-width: 80%;
    padding: .6rem .75rem;
    border-radius: 14px;
    font-size: .9rem;
    line-height: 1.5;
}
.syl-bubble-syl {
    background: rgba(201,164,92,.12);
    border: 1px solid rgba(201,164,92,.16);
    color: var(--text);
    border-bottom-left-radius: 5px;
}
.syl-bubble-user {
    background: var(--raise);
    border: 1px solid var(--border);
    color: var(--text);
    border-bottom-right-radius: 5px;
}
.syl-text { white-space: pre-line; }   /* Preis-Listen mit \n sauber umbrechen */

/* Antwort-Links als Gold-Pills */
.syl-links { display: flex; flex-direction: column; gap: .35rem; margin-top: .55rem; }
.syl-link {
    display: flex; align-items: center; justify-content: space-between; gap: .5rem;
    width: 100%; text-align: left;
    padding: .5rem .65rem;
    background: rgba(201,164,92,.14);
    border: 1px solid rgba(201,164,92,.28);
    border-radius: 10px;
    color: var(--gold-2);
    font-size: .86rem; font-weight: 620;
    cursor: pointer;
    transition: background .12s, transform .12s;
    min-height: 40px;
}
.syl-link:hover { background: rgba(201,164,92,.24); transform: translateY(-1px); }
.syl-link:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; }
.syl-link-arrow { color: var(--gold); flex: none; }

/* Tipp-Indikator */
.syl-typing { display: inline-flex; gap: .25rem; align-items: center; }
.syl-typing span {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--gold-2);
    animation: syl-blink 1.2s infinite ease-in-out both;
}
.syl-typing span:nth-child(2) { animation-delay: .2s; }
.syl-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes syl-blink { 0%, 80%, 100% { opacity: .25; } 40% { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .syl-typing span { animation: none; opacity: .7; } }

/* Schnellantwort-Chips */
.syl-chips { display: flex; flex-wrap: wrap; gap: .4rem; padding: .35rem .85rem .55rem; flex: none; }
.syl-chip {
    padding: .38rem .7rem;
    background: transparent;
    border: 1px solid rgba(201,164,92,.4);
    border-radius: 999px;
    color: var(--gold-2);
    font-size: .82rem; font-weight: 600;
    cursor: pointer;
    transition: background .12s;
    min-height: 34px;
}
.syl-chip:hover { background: rgba(201,164,92,.16); }
.syl-chip:focus-visible { outline: 2px solid var(--gold); outline-offset: 1px; }

/* Eingabezeile */
.syl-compose {
    display: flex; align-items: center; gap: .5rem;
    padding: .65rem .85rem .8rem;
    border-top: 1px solid rgba(201,164,92,.14);
    background: var(--bg);
    flex: none;
}
.syl-input {
    flex: 1;
    padding: .6rem .8rem;
    background: var(--raise);
    border: 1px solid var(--border);
    border-radius: 999px;
    color: var(--text);
    font-size: .92rem;
    transition: border-color .15s, box-shadow .15s;
}
.syl-input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,164,92,.18); }
.syl-input::placeholder { color: var(--faint); }
.syl-send {
    width: 44px; height: 44px; min-width: 44px;
    display: grid; place-items: center;
    border-radius: 50%; border: none;
    background: linear-gradient(135deg, var(--accent), var(--gold-2));
    color: #0a0908; font-size: 1.15rem; font-weight: 800;
    cursor: pointer;
    transition: transform .12s, opacity .12s;
}
.syl-send:hover:not(:disabled) { transform: translateY(-1px); }
.syl-send:disabled { opacity: .4; cursor: default; }
.syl-send:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 2px; }

/* ===== Dichte-Seiten-Reiter (Tabs / progressive disclosure) — global, genutzt von Hotels/Karten/StatusMatch =====
   CSS-only-Seiten (statisches SSR) steuern Sichtbarkeit über versteckte Radios (#id:checked ~ .panel) inline;
   Blazor-interaktive Seiten toggeln stattdessen die .active-Klasse. Beide nutzen diese gemeinsame Optik. */
.htabs { margin-top: 1.5rem; }
.htab-radio, .ctab-radio { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.htab-bar { display: flex; flex-wrap: wrap; gap: .4rem; border-bottom: 1px solid rgba(201,164,92,.25); margin-bottom: 1.5rem; }
.htab-lbl { display: inline-flex; align-items: center; min-height: 44px; padding: .55rem 1.1rem; font-size: .95rem; font-weight: 700; color: #cdc6b8; cursor: pointer; border: none; background: none; border-radius: 10px 10px 0 0; transition: background .15s, color .15s; user-select: none; -webkit-tap-highlight-color: transparent; }
.htab-lbl:hover { background: rgba(201,164,92,.1); color: #f3efe6; }
.htab-lbl:focus-visible, .ctab-lbl:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 2px; }
.htab-lbl.active { color: #1a1408; background: linear-gradient(135deg, #e6cf94, #c9a45c); }
.htab-panel { display: none; }
.htab-panel.active { display: block; animation: htab-fade .22s ease-out; }
.ctab-bar { display: flex; flex-wrap: wrap; gap: .45rem; margin: 0 0 1.3rem; }
.ctab-lbl { display: inline-flex; align-items: center; min-height: 40px; padding: .4rem .9rem; font-size: .85rem; font-weight: 600; color: #cdc6b8; cursor: pointer; border: 1px solid rgba(201,164,92,.3); background: none; border-radius: 999px; transition: background .15s, color .15s; user-select: none; -webkit-tap-highlight-color: transparent; }
.ctab-lbl:hover { background: rgba(201,164,92,.12); color: #f3efe6; }
.ctab-lbl.active { color: #1a1408; background: linear-gradient(135deg, #e6cf94, #c9a45c); border-color: transparent; }
.htabs .ctab-panel { display: none; }
@keyframes htab-fade { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .htab-panel, .ctab-panel { animation: none !important; } }


/* --- Glossar (/glossar) ------------------------------------------------- */
/* .cat-page: Container-Wrapper der Glossar-Seite (zentriert wie .cat). */
.cat-page { max-width: 1080px; margin: 0 auto; padding: 0 24px 70px; }
.glos-search { width: 100%; max-width: 420px; margin-top: .8rem; background: var(--surface-2); border: 1px solid var(--border-2); color: var(--text); border-radius: 10px; padding: .6rem .8rem; font-family: inherit; font-size: .95rem; }
.glos-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: .8rem; margin-top: 1.2rem; }
.glos-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: .8rem .9rem; }
.glos-top { display: flex; align-items: baseline; justify-content: space-between; gap: .6rem; }
.glos-term { color: var(--gold-2); font-size: .95rem; font-weight: 700; margin: 0; display: inline; }
.glos-term a { color: inherit; text-decoration: none; }
.glos-term a:hover { text-decoration: underline; }
.glos-faq { margin-top: 2.2rem; }
.glos-faq-h { font-size: 1.15rem; font-weight: 700; color: var(--text); margin: 0 0 .8rem; }
.glos-faq-item { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: .7rem .9rem; margin-bottom: .6rem; }
.glos-faq-item summary { cursor: pointer; color: var(--gold-2); font-weight: 650; font-size: .95rem; }
.glos-faq-item p { color: var(--muted); font-size: .88rem; line-height: 1.6; margin: .55rem 0 .1rem; }
.glos-crumb { color: var(--faint); font-size: .8rem; margin-bottom: .4rem; }
.glos-crumb a { color: var(--gold); text-decoration: none; }
.glos-crumb span { margin: 0 .3rem; }
.glos-detail { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 1.1rem 1.2rem; margin-top: 1rem; max-width: 780px; }
.glos-detail-def { color: var(--text); font-size: .98rem; line-height: 1.7; margin: 0; }
.glos-detail-cta { margin: .8rem 0 0; }
.glos-related { margin-top: 1.6rem; }
.glos-related-list { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; }
.glos-related-list a { display: inline-block; background: var(--surface); border: 1px solid var(--border-2); border-radius: 999px; padding: .32rem .75rem; color: var(--gold-2); font-size: .84rem; text-decoration: none; }
.glos-related-list a:hover { border-color: var(--gold); }
.glos-back { margin-top: 1.4rem; }
.glos-cat { color: var(--faint); font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; }
.glos-def { color: var(--muted); font-size: .86rem; line-height: 1.55; margin: .35rem 0 0; }
.glos-link { color: var(--gold); text-decoration: none; white-space: nowrap; }

/* --- Newsletter-Anmeldung (Lead-Magnet) ------------------------------- */
.nl { background: var(--surface); border: 1px solid var(--border-2); border-radius: 14px; padding: 1.1rem 1.2rem; max-width: 520px; margin: 1.4rem auto; }
.nl-h { margin: 0 0 .2rem; font-size: 1.05rem; color: var(--gold-2); }
.nl-sub { color: var(--muted); font-size: .88rem; margin: 0 0 .8rem; }
.nl-inp { width: 100%; background: var(--surface-2); border: 1px solid var(--border-2); color: var(--text); border-radius: 9px; padding: .55rem .7rem; font-family: inherit; font-size: .95rem; }
.nl-consent { display: block; position: relative; padding-left: 1.7rem; color: var(--muted); font-size: .78rem; line-height: 1.45; margin: .6rem 0; text-align: left; }
.nl-consent > input[type="checkbox"] { position: absolute; left: 0; top: .2rem; }
.nl-ok { color: var(--mint); font-size: .9rem; }
.nl-err { color: var(--danger); font-size: .82rem; margin: .3rem 0; }

/* --- Karten-Finder (/karten-finder) ----------------------------------- */
.kf-transp { color: var(--muted); font-size: .82rem; line-height: 1.5; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: .6rem .8rem; margin: 0 0 1rem; }
.kf-form { display: grid; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); gap: 1rem 1.1rem; max-width: 860px; margin: 1.4rem auto; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem 1.5rem 1.6rem; box-shadow: 0 24px 60px -30px rgba(0,0,0,.7); align-items: start; }
.kf-lbl { display: flex; flex-direction: column; gap: .45rem; color: var(--muted); font-size: .73rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.kf-sel { appearance: none; -webkit-appearance: none; width: 100%; min-height: 46px; background: var(--surface-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23c9a45c' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right .85rem center; border: 1px solid var(--border-2); border-radius: 12px; color: var(--text); font-family: inherit; font-size: .95rem; text-transform: none; letter-spacing: normal; padding: .7rem 2.2rem .7rem .9rem; cursor: pointer; transition: border-color .15s, box-shadow .15s; }
.kf-sel:hover:not(:disabled) { border-color: var(--gold); }
.kf-sel:focus-visible { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,164,92,.22); }
.kf-sel:disabled { opacity: .5; cursor: not-allowed; }
.kf-refine-toggle { grid-column: 1 / -1; justify-self: start; display: inline-flex; align-items: center; gap: .4rem; background: rgba(201,164,92,.08); border: 1px solid var(--border-2); color: var(--gold-2); border-radius: 999px; padding: .5rem 1.05rem; font-family: inherit; font-size: .82rem; font-weight: 600; cursor: pointer; transition: background .15s, border-color .15s; }
.kf-refine-toggle:hover:not(:disabled) { background: rgba(201,164,92,.15); border-color: var(--gold); }
.kf-refine-toggle:disabled { opacity: .5; cursor: not-allowed; }
.kf-refine { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(auto-fit, minmax(232px, 1fr)); gap: 1rem 1.1rem; background: rgba(0,0,0,.22); border: 1px solid var(--border); border-radius: 14px; padding: 1.1rem 1.2rem; align-items: start; }
.kf-form > .cat-cta { grid-column: 1 / -1; justify-self: start; width: 100%; max-width: 340px; margin: .5rem 0 0; padding: 15px 28px; font-size: 1.02rem; box-shadow: 0 14px 34px -14px rgba(201,164,92,.55); }
.kf-form > .cat-cta:hover { filter: brightness(1.05); }
.kf-form > .kf-note { grid-column: 1 / -1; margin: 0; }
.kf-results { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.2rem; }
.kf-advice { color: var(--muted); font-size: .9rem; margin: 0 0 .6rem; }
.kf-card { background: var(--surface); border: 1px solid var(--border-2); border-radius: 12px; padding: .8rem .95rem; }
.kf-card-best { border-color: #b8924a; }
.kf-card-top { display: flex; align-items: center; gap: .5rem; }
.kf-issuer { color: var(--faint); font-size: .8rem; }
.kf-netvalue { font-size: 1.25rem; font-weight: 700; color: #b8924a; margin: .15rem 0 .3rem; }
.kf-netvalue-est { color: var(--muted); }
.kf-model { font-size: .68rem; font-weight: 400; color: var(--faint); margin-left: .3rem; vertical-align: middle; }
.kf-unconfirmed { display: inline-block; font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--amber); background: rgba(246,192,98,.12); border: 1px solid rgba(246,192,98,.35); border-radius: 999px; padding: .1rem .5rem; margin-left: .4rem; vertical-align: middle; }
.kf-welcome-note { color: var(--faint); font-size: .78rem; line-height: 1.5; margin: .4rem 0 0; }
.kf-recurring { font-size: .92rem; font-weight: 600; color: var(--muted); }
.kf-value-note { color: var(--muted); font-size: .8rem; line-height: 1.5; margin: 0 0 .35rem; }
.kf-value-note b { color: var(--text); }
.kf-card-reason { color: var(--muted); font-size: .86rem; line-height: 1.5; margin: .35rem 0 .5rem; }
.kf-alt-h { color: var(--faint); font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; margin: .6rem 0 -.1rem; }
.kf-breakdown { margin-top: .5rem; font-size: .82rem; color: var(--muted); }
.kf-breakdown summary { cursor: pointer; color: var(--faint); }
.kf-breakdown summary:hover { color: var(--text); }
.kf-breakdown ul { list-style: none; margin: .4rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.kf-line-main { display: block; color: var(--text); }
.kf-line-hint { display: block; color: var(--faint); font-size: .76rem; line-height: 1.45; margin-top: .1rem; }
.kf-once { display: inline-block; font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--muted); border: 1px solid var(--border-2); border-radius: 999px; padding: .04rem .4rem; margin-left: .4rem; font-style: normal; vertical-align: middle; }
.kf-note { color: var(--faint); font-size: .76rem; margin-top: .6rem; }
.kf-disclaimer { color: var(--text); font-size: .87rem; line-height: 1.6; margin: .85rem 0 0; background: var(--surface); border: 1px solid rgba(246,192,98,.4); border-left: 4px solid var(--amber); border-radius: 10px; padding: .85rem 1rem; }
.kf-teaser { background: var(--surface); border: 1px solid var(--border-2); border-radius: 14px; padding: 1rem 1.1rem; margin-top: 1.2rem; }
.kf-teaser-h { font-size: 1rem; margin: 0 0 .3rem; }
.kf-teaser-sub { color: var(--muted); font-size: .88rem; margin: 0 0 .6rem; }
