/* ============================================================
   Shinyflares — Gemeinsames Chrome der statischen Seiten
   (Reset, Nav, Footer, Typografie, Cards) für AGB,
   Datenschutz, Impressum. Tokens kommen aus brand-tokens.css.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    line-height: 1.7;
}

a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.8; }

/* ── Navigation ─────────────────────────────────────────── */
.sf-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 60px;
    background: rgba(7, 11, 20, 0.95);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.sf-nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.sf-nav-logo-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); display: inline-block; }
.sf-nav-logo-text { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.15rem; color: var(--text); letter-spacing: -0.02em; }
.sf-nav-link { color: var(--muted); font-size: 0.875rem; text-decoration: none; }
.sf-nav-link:hover { color: var(--text); }

/* ── Inhalt / Typografie ────────────────────────────────── */
main { max-width: 760px; margin: 0 auto; padding: 4rem 2rem; }
h1 { font-family: 'Syne', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em; margin-bottom: 0.5rem; }
.subtitle { color: var(--muted); font-size: 0.9rem; margin-bottom: 3rem; display: block; }
h2 { font-family: 'Syne', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--text); margin: 2.5rem 0 0.75rem; }
h3 { font-size: 1rem; font-weight: 600; color: var(--text); margin: 1.5rem 0 0.5rem; }
p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0.75rem; }
ul { color: var(--muted); font-size: 0.95rem; padding-left: 1.5rem; margin-bottom: 0.75rem; }
ul li { margin-bottom: 0.3rem; }

/* ── Cards / Hinweise ───────────────────────────────────── */
.sf-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; margin-bottom: 1.5rem; }
.sf-highlight { background: var(--surface2); border-left: 3px solid var(--accent); border-radius: 0 8px 8px 0; padding: 1rem 1.2rem; margin-bottom: 1rem; }
.sf-highlight p { margin: 0; font-size: 0.9rem; }
.sf-placeholder { background: var(--surface2); border: 1px dashed rgba(255, 255, 255, 0.12); border-radius: 8px; padding: 1rem 1.2rem; color: var(--muted); font-size: 0.85rem; font-style: italic; margin-bottom: 0.75rem; }

/* ── Footer ─────────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 1.5rem 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.sf-footer-copy { font-size: 0.78rem; color: #5A6480; }
.sf-footer-links { display: flex; gap: 1.5rem; list-style: none; }
.sf-footer-links a { font-size: 0.78rem; color: #5A6480; }
.sf-footer-links a:hover { color: var(--muted); }

@media (max-width: 640px) { main { padding: 2rem 1rem; } }
