/* ============================================================
   NANOTREND - Design Tokens
   ============================================================ */
:root {
    /* Palette — Dark luxury with gold accent */
    --bg-dark: #0d0d0f;
    --bg-dark-2: #131316;
    --bg-dark-3: #1a1a1f;
    --bg-card: #16161a;
    --bg-glass: rgba(22, 22, 26, 0.72);
    --gold: #d4af37;
    --gold-light: #e9c968;
    --gold-deep: #a8842a;
    --gold-gradient: linear-gradient(135deg, #e9c968 0%, #d4af37 45%, #a8842a 100%);
    --text-primary: #f2f0ec;
    --text-secondary: #b9b6ae;
    --text-muted: #9a9891;
    --border: rgba(212, 175, 55, 0.18);
    --border-soft: rgba(255, 255, 255, 0.08);
    --danger: #e25c5c;
    --success: #4fbf7a;
    --warning: #e8b93c;
    --info: #5aa9d6;

    /* Typography */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', -apple-system, sans-serif;

    /* Effects */
    --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.45);
    --shadow-gold: 0 8px 32px rgba(212, 175, 55, 0.22);
    --glow-gold: 0 0 24px rgba(212, 175, 55, 0.35);
    --radius: 14px;
    --radius-sm: 9px;
    --blur: blur(18px);
    --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    --header-h: 78px;
}
