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

body {
    font-family: system-ui, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

/* Titres */
h1 { font-size: 1rem;   font-weight: 600; }
h2 { font-size: 1.4rem; font-weight: 700; }

/* Liens */
a {
    color: var(--accent);
    text-decoration: none;
}
a:hover { text-decoration: underline; }

/* Stats */
.stat-value {
    font-size: 1.1rem;
    font-weight: 700;
}
.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Header */
.site-header h1 {
    font-size: 1rem;
    color: var(--accent);
    font-weight: 600;
}
.site-header p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.2rem;
}

/* Hero */
.hero h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}
.hero p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}
