/* ============================================================================
   VIRTUE COMPLIANCE — Design Tokens & Reset
   Zentrale Designvariablen für die gesamte Website.
   Änderungen hier wirken sich auf alle Seiten aus.
   ============================================================================ */

:root {
    /* — Farben — */
    --ink:            #111827;
    --ink-2:          #374151;
    --ink-3:          #6b7280;
    --ink-4:          #9ca3af;

    --surface-0:      #ffffff;
    --surface-1:      #f9fafb;
    --surface-2:      #f3f4f6;

    --border:         #e5e7eb;
    --border-light:   #f0f1f3;

    --primary:        #1e3a5f;
    --primary-deep:   #132a47;

    --accent:         #16654e;
    --accent-surface: #ecf5f1;

    --glow:           #6ee7b7;

    /* — Typografie — */
    --font-serif:     'Source Serif 4', Georgia, 'Times New Roman', serif;
    --font-sans:      'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    /* — Radien & Schatten — */
    --radius:         10px;
    --radius-lg:      16px;
    --shadow-sm:      0 1px 3px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
    --shadow-md:      0 4px 20px rgba(0,0,0,0.06);
    --shadow-lg:      0 10px 40px rgba(0,0,0,0.08);
}

/* — Reset — */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: var(--font-sans);
    color: var(--ink);
    background: var(--surface-0);
    line-height: 1.7;
    overflow-x: hidden;
}

/* — SVG Icon System — */
.icon        { width: 24px; height: 24px; stroke: currentColor; stroke-width: 1.5; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon-lg     { width: 28px; height: 28px; }
