/* ═══════════════════════════════════════════
   SafePlate - Shared Base Styles
   Tokens · Reset · Body · Noise · Reveal
   ═══════════════════════════════════════════ */

:root {
    --bg: #0F172A;
    --surface: #1E293B;
    --primary: #3B82F6;
    --primary-soft: rgba(59, 130, 246, 0.12);
    --primary-glow: rgba(59, 130, 246, 0.25);
    --danger: #DC2626;
    --danger-soft: rgba(220, 38, 38, 0.1);
    --danger-text: #FCA5A5;
    --warning: #F59E0B;
    --warning-soft: rgba(245, 158, 11, 0.1);
    --warning-text: #FCD34D;
    --safe: #16A34A;
    --safe-soft: rgba(22, 163, 74, 0.1);
    --safe-text: #86EFAC;
    --text: #F8FAFC;
    --text-secondary: #94A3B8;
    --text-muted: #64748B;
    --border: rgba(148, 163, 184, 0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Inter', -apple-system, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

/* ─── Noise texture overlay ──────── */
.noise-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.04;
    width: 100%;
    height: 100%;
}

/* ─── Scroll reveal ──────────────── */
[data-reveal] {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* ─── Section label (shared) ─────── */
.section-label {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 48px;
}
