/* Schriften werden in den HTML-Dateien per <link rel="preconnect"> + <link>
   geladen. Bewusst KEIN @import hier – sonst werden die Google-Fonts doppelt
   und render-blockierend geladen. */

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

:root {
    --bg: #f8fafc;
    --surface: #f1f5f9;
    --card: #ffffff;
    --border: #e2e8f0;
    --border-md: #cbd5e1;
    --text: #0f172a;
    --text-2: #334155;
    --text-3: #64748b;
    --text-4: #94a3b8;
    --brand: #2563eb;
    --brand-2: #1d4ed8;
    --brand-bg: #eff6ff;
    --green: #047857;
    --green-bg: #ecfdf5;
    --green-border: #a7f3d0;
    --amber: #b45309;
    --amber-bg: #fffbeb;
    --amber-border: #fde68a;
    --sh-xs: 0 1px 2px rgba(15,23,42,.06);
    --sh-sm: 0 1px 4px rgba(15,23,42,.06), 0 4px 12px rgba(15,23,42,.06);
    --sh-md: 0 2px 8px rgba(15,23,42,.08), 0 8px 24px rgba(15,23,42,.07);
    --r: 8px;
    --r-sm: 6px;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-md); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--brand); }

.site-nav {
    position: sticky;
    top: 0;
    z-index: 200;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--sh-xs);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-name {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text);
}

.logo-tld {
    font-family: 'Inter', sans-serif;
    font-size: .48rem;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--text-3);
    vertical-align: bottom;
    margin-left: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
}

.nav-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 7px 13px;
    border-radius: var(--r-sm);
    color: var(--text-3);
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: background .15s, color .15s;
}

.nav-links a:hover { color: var(--text); background: var(--surface); }
.nav-links a.active { color: var(--brand); background: var(--brand-bg); }

.nav-cta > a {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 1px 4px rgba(37,99,235,.3);
}

.nav-cta > a:hover { background: var(--brand-2); color: #fff; }

/* Sprachumschalter (Multi-8) */
.nav-lang {
    display: flex;
    align-items: center;
    gap: 2px;
    margin: 0 4px;
}

.nav-lang a {
    min-height: auto;
    padding: 4px 6px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--text-3);
    text-decoration: none;
    border-radius: var(--r-sm);
    transition: background .15s, color .15s;
}

.nav-lang a:hover { color: var(--text); background: var(--surface); }
.nav-lang a.active { color: var(--brand); }
.lang-sep { color: var(--border-md); font-size: .75rem; }

.hero {
    position: relative;
    min-height: clamp(460px, 72svh, 640px);
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: 76px 24px 64px;
    text-align: center;
    background:
        linear-gradient(150deg, rgba(239,246,255,.96) 0%, rgba(255,255,255,.98) 45%, rgba(236,253,245,.92) 100%);
    border-bottom: 1px solid var(--border);
}

/* Dezente, weiche Farb-Glühflächen als Hero-Schmuck (statt Logo-Bild). */
.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(64px);
    pointer-events: none;
    user-select: none;
    z-index: 0;
}

.hero-glow-a {
    width: min(46vw, 460px);
    aspect-ratio: 1;
    top: -10%;
    right: -6%;
    background: radial-gradient(circle, rgba(37,99,235,.30), transparent 70%);
    animation: hero-float 9s ease-in-out infinite;
}

.hero-glow-b {
    width: min(40vw, 380px);
    aspect-ratio: 1;
    bottom: -14%;
    left: -8%;
    background: radial-gradient(circle, rgba(4,120,87,.22), transparent 70%);
    animation: hero-float 11s ease-in-out infinite reverse;
}

@keyframes hero-float {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(0, -20px); }
}

@media (prefers-reduced-motion: reduce) {
    .hero-glow { animation: none; }
}

.hero-content {
    position: relative;
    z-index: 1;
    width: min(100%, 780px);
    max-width: 780px;
}

/* Markenname im Hero als Farbverlauf-Text (Blau → Cyan → Grün). */
.grad {
    background: linear-gradient(100deg, var(--brand) 0%, #0ea5e9 48%, var(--green) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 16px;
    border: 1.5px solid #bfdbfe;
    border-radius: 999px;
    background: var(--brand-bg);
    color: var(--brand-2);
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero h1,
.legal-page h1 {
    font-family: 'Cinzel', serif;
    font-weight: 900;
    letter-spacing: 1.5px;
    line-height: 1.05;
    color: var(--text);
}

.hero h1 {
    font-size: clamp(2.4rem, 7vw, 5rem);
    max-width: 900px;
    margin: 0 auto 24px;
    overflow-wrap: anywhere;
}

.hero-desc {
    max-width: 620px;
    margin: 0 auto 36px;
    color: var(--text-2);
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.75;
}

.btn-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 28px;
    border-radius: var(--r-sm);
    font-size: .875rem;
    font-weight: 800;
    letter-spacing: .2px;
    text-decoration: none;
    transition: border-color .18s, background .18s, color .18s, box-shadow .18s, transform .18s;
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 2px 8px rgba(37,99,235,.28);
}

.btn-primary:hover {
    background: var(--brand-2);
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37,99,235,.35);
}

.btn-outline {
    background: var(--card);
    color: var(--text);
    border: 1.5px solid var(--border-md);
    box-shadow: var(--sh-xs);
}

.btn-outline:hover { border-color: var(--brand); color: var(--brand); }

.stats-bar {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--sh-xs);
}

.stat-item {
    flex: 1;
    min-width: 150px;
    padding: 22px 32px;
    text-align: center;
    border-right: 1px solid var(--border);
}

.stat-item:last-child { border-right: none; }

.stat-num {
    display: block;
    color: var(--brand);
    font-size: clamp(1rem, 2vw, 1.55rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 4px;
    overflow-wrap: anywhere;
}

.stat-label {
    color: var(--text-3);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    overflow-wrap: anywhere;
}

.section-wrap { max-width: 1160px; margin: 0 auto; padding: 64px 24px; }
.section-inner { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

.section-band {
    padding: 64px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.section-heading {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 8px;
}

.sh-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-md), transparent);
}

.sh-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    gap: 4px;
    text-align: center;
}

.sh-eyebrow {
    color: var(--text-3);
    font-size: .65rem;
    font-weight: 900;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.sh-center h2,
.sh-center h1 {
    font-family: 'Cinzel', serif;
    color: var(--text);
    font-size: clamp(1.5rem, 4vw, 2.1rem);
    font-weight: 900;
    letter-spacing: 1.5px;
    line-height: 1.1;
}

.section-sub {
    max-width: 620px;
    margin: 10px auto 28px;
    color: var(--text-3);
    font-size: .9rem;
    font-weight: 500;
    line-height: 1.7;
    text-align: center;
}

.site-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 28px;
}

.site-card,
.process-card {
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    box-shadow: var(--sh-sm);
    transition: border-color .18s, transform .18s, box-shadow .18s;
}

.site-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 420px;
    padding: 24px;
}

/* Feiner Farbverlauf-Streifen oben – auf der Live-Karte immer, sonst bei Hover. */
.site-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), #0ea5e9, var(--green));
    opacity: 0;
    transition: opacity .2s ease;
}

.site-card:hover::before,
.site-card-live::before { opacity: 1; }

.site-card:hover,
.process-card:hover {
    border-color: var(--border-md);
    transform: translateY(-2px);
    box-shadow: var(--sh-md);
}

.site-card-live {
    border-color: #bfdbfe;
    background: linear-gradient(160deg, var(--brand-bg) 0%, var(--card) 58%);
}

.site-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 22px;
}

.domain-pill,
.status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    border-radius: 999px;
    padding: 4px 10px;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .4px;
    white-space: nowrap;
}

.domain-pill {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-3);
}

.status-pill {
    flex-shrink: 0;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.status-pill.live {
    background: var(--green-bg);
    color: #166534;
    border: 1px solid var(--green-border);
}

.status-pill.soon {
    background: var(--amber-bg);
    color: var(--amber);
    border: 1px solid var(--amber-border);
}

.site-card h3,
.process-card h3 {
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 900;
    margin-bottom: 9px;
}

.site-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    letter-spacing: .8px;
}

.site-card p,
.process-card p {
    color: var(--text-2);
    font-size: .9rem;
    font-weight: 500;
    line-height: 1.7;
}

.fact-list {
    display: grid;
    gap: 8px;
    margin: 20px 0 24px;
    padding: 0;
    list-style: none;
}

.fact-list li {
    position: relative;
    padding-left: 16px;
    color: var(--text-3);
    font-size: .82rem;
    font-weight: 600;
    line-height: 1.55;
}

.fact-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .72em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
}

.site-card .btn { margin-top: auto; }

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 32px;
}

.process-card {
    padding: 26px 22px;
}

.process-num {
    display: block;
    color: var(--border-md);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 10px;
    font-variant-numeric: tabular-nums;
}

.process-card p code,
.process-card p {
    overflow-wrap: anywhere;
}

.process-card code {
    color: var(--brand);
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    font-weight: 800;
}

.cta-section {
    padding: 80px 24px;
    text-align: center;
    background: linear-gradient(150deg, var(--brand-bg) 0%, var(--card) 50%, var(--green-bg) 100%);
    border-top: 1px solid #bfdbfe;
    border-bottom: 1px solid var(--green-border);
}

.cta-section h2 {
    font-family: 'Cinzel', serif;
    color: var(--text);
    font-size: clamp(1.6rem, 4.5vw, 2.4rem);
    font-weight: 900;
    letter-spacing: 1px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.cta-section p {
    max-width: 520px;
    margin: 0 auto 38px;
    color: var(--text-2);
    font-size: .95rem;
    font-weight: 500;
    line-height: 1.75;
}

.legal-page { max-width: 920px; }

.legal-body {
    margin-top: 36px;
    background: var(--card);
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    box-shadow: var(--sh-sm);
    padding: 42px 48px;
}

.legal-body h2 {
    color: var(--text);
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1.35;
    margin: 28px 0 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
}

.legal-body h2:first-child { margin-top: 0; }

/* Gerenderte Rechtstext-Überschriften aus assets/legal/*.txt (Datenschutz) */
.legal-body h3 {
    color: var(--text);
    font-size: 1.02rem;
    font-weight: 900;
    line-height: 1.35;
    margin: 28px 0 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid var(--border);
}

.legal-document h3:first-child {
    margin-top: 0;
    font-size: 1.3rem;
    border-bottom: none;
    padding-bottom: 0;
}

.legal-body p {
    color: var(--text-2);
    font-size: .92rem;
    line-height: 1.75;
    margin-bottom: 8px;
    overflow-wrap: anywhere;
}

.legal-body a {
    color: var(--brand);
    font-weight: 800;
    text-decoration: none;
}

.legal-body a:hover { text-decoration: underline; }

.legal-note {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--border);
    color: var(--text-4) !important;
    font-size: .8rem !important;
}

/* Zurück-Link auf den Rechtsseiten (zurück zur tromele.com-Startseite) */
.legal-back { margin: 18px 0 4px; }
.legal-back a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--brand);
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
}
.legal-back a:hover { text-decoration: underline; }

.site-footer {
    background: #0f172a;
    border-top: 1px solid #1e293b;
    padding: 32px 24px;
    color: #94a3b8;
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #f8fafc;
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.footer-copy {
    color: #475569;
    font-size: .78rem;
    font-weight: 600;
    margin-top: 4px;
}

.footer-links {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #64748b;
    font-size: .75rem;
    font-weight: 700;
    text-decoration: none;
    transition: color .15s;
}

.footer-links a:hover { color: #cbd5e1; }

@media (max-width: 960px) {
    .site-grid,
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .site-card { min-height: 0; }
}

@media (max-width: 760px) {
    .site-nav {
        height: 58px;
        min-height: 58px;
        padding: 9px 16px;
        align-items: center;
        gap: 10px;
    }

    /* Mobil: normale Links + CTA aus, nur Sprachumschalter bleibt sichtbar. */
    .nav-links { display: flex; gap: 4px; }
    .nav-links li:not(.nav-lang):not(.nav-theme) { display: none; }
    .nav-lang {
        margin: 0;
        flex-wrap: wrap;
        justify-content: flex-end;
        max-width: 62%;
    }
    .nav-lang a { padding: 2px 4px; font-size: .72rem; }
    .lang-sep { font-size: .68rem; }

    .logo-name {
        font-size: 1rem;
        letter-spacing: 1px;
    }

    .hero {
        min-height: 0;
        padding: 48px 16px 44px;
    }

    .hero h1 {
        font-size: clamp(1.9rem, 9vw, 2.65rem);
        letter-spacing: 0;
        max-width: min(100%, 360px);
    }

    .hero-desc { font-size: .95rem; }

    .stats-bar .stat-item {
        min-width: 50%;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .stats-bar .stat-item:last-child { border-bottom: none; }

    .section-wrap { padding: 48px 16px; }
    .section-inner { padding: 0 16px; }
    .section-band { padding: 48px 0; }
    .cta-section { padding: 56px 16px; }

    .sh-line { display: none; }
    .section-heading { justify-content: center; }
    .sh-center {
        width: 100%;
        min-width: 0;
    }
    .sh-center h2,
    .sh-center h1 {
        width: 100%;
        font-size: 1.45rem;
        letter-spacing: .5px;
        overflow-wrap: anywhere;
    }

    .site-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .site-card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .domain-pill,
    .status-pill { white-space: normal; }

    .btn-row {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
        padding: 14px 20px;
    }

    .legal-body { padding: 28px 18px; }

    .site-footer { padding: 28px 16px; }
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .footer-links { justify-content: center; }
}

@media (max-width: 420px) {
    .hero h1 { font-size: 1.9rem; }
    .stat-item { min-width: 100%; }
}

/* ── Cookie-Hinweis ───────────────────────────────────────────────────────── */
.cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 999;
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding: 18px 22px;
    background: #0f172a;
    border: 1px solid #1e293b;
    border-radius: 12px;
    box-shadow: 0 8px 40px rgba(0,0,0,.35);
    animation: cookie-in .35s ease both;
}

@keyframes cookie-in {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.cookie-banner.hide {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .3s, transform .3s;
}

.cookie-text {
    flex: 1;
    min-width: 220px;
    color: #cbd5e1;
    font-size: .82rem;
    line-height: 1.55;
}

.cookie-text strong {
    display: block;
    color: #f8fafc;
    font-size: .9rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.cookie-link { color: #60a5fa; text-decoration: none; font-weight: 600; white-space: nowrap; }
.cookie-link:hover { text-decoration: underline; }

.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

.cookie-btn {
    padding: 10px 18px;
    border-radius: var(--r-sm);
    font-family: 'Inter', sans-serif;
    font-size: .8rem;
    font-weight: 700;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: background .15s, border-color .15s, color .15s;
}

.cookie-accept {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 2px 8px rgba(37,99,235,.3);
}

.cookie-accept:hover { background: var(--brand-2); }

@media (max-width: 560px) {
    .cookie-banner { left: 10px; right: 10px; bottom: 10px; padding: 16px; gap: 14px; }
    .cookie-actions { width: 100%; }
    .cookie-btn { flex: 1; }
}

/* ════════════════════════════════════════════ THEME-UMSCHALTER ═════════ */
.nav-theme { display: flex; align-items: center; margin: 0 2px; }
.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: var(--r-sm);
    background: var(--card);
    color: var(--text-2);
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
    transition: color .15s, background .15s, border-color .15s;
}
.theme-toggle:hover { color: var(--brand); background: var(--surface); border-color: var(--border-md); }
.theme-toggle:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

/* ════════════════════════════════════════════ DARK MODE ════════════════ */
/* Aktiv über <html data-theme="dark"> – gesetzt per Inline-Skript ganz oben im
   inc/header.php (localStorage bzw. prefers-color-scheme, FOUC-frei), Knopf-
   Verdrahtung im inc/footer.php. Reiner Zusatz-Block: der helle Standard bleibt
   unberührt → voll reversibel. Der Großteil zieht über die CSS-Variablen nach;
   darunter nur die wenigen fest verdrahteten Farben. Spiegelt GameScore. */
[data-theme="dark"] {
    --bg:        #0b1220;
    --surface:   #161f33;
    --card:      #18233b;
    --border:    #2a3650;
    --border-md: #3a4866;

    --text:   #e6edf6;
    --text-2: #c2ccdc;
    --text-3: #93a1b8;
    --text-4: #6b7a93;

    --brand:    #5b9bff;
    --brand-2:  #7cb0ff;
    --brand-bg: rgba(91,155,255,.14);

    --green:        #34d399;
    --green-bg:     rgba(16,185,129,.14);
    --green-border: rgba(16,185,129,.34);
    --amber:        #fbbf24;
    --amber-bg:     rgba(245,158,11,.14);
    --amber-border: rgba(245,158,11,.34);

    --sh-xs: 0 1px 2px rgba(0,0,0,.4);
    --sh-sm: 0 1px 4px rgba(0,0,0,.35), 0 4px 12px rgba(0,0,0,.3);
    --sh-md: 0 2px 8px rgba(0,0,0,.45), 0 8px 24px rgba(0,0,0,.4);
}

/* Navigation (heller Glas-Hintergrund → dunkles Glas) */
[data-theme="dark"] .site-nav { background: rgba(15,23,42,.92); }

/* Hero hat einen fest verdrahteten HELLEN Gradient → im Dark Mode dunkel machen,
   sonst steht der (jetzt helle) Text auf hellem Grund und ist unlesbar. Dezenter
   Blau→Grün-Schimmer wie im Hellmodus, nur auf dunkler Basis. */
[data-theme="dark"] .hero {
    background: linear-gradient(150deg, rgba(37,99,235,.14) 0%, var(--bg) 48%, rgba(16,185,129,.12) 100%);
}

/* Feine Hellrahmen + fest verdrahteter Pillen-Textton */
[data-theme="dark"] .hero-eyebrow   { border-color: rgba(91,155,255,.4); }
[data-theme="dark"] .site-card-live { border-color: rgba(91,155,255,.35); }
[data-theme="dark"] .cta-section    { border-top-color: rgba(91,155,255,.3); }
[data-theme="dark"] .status-pill.live { color: #6ee7b7; }
