* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* DigiBro Brand Colors */
    --digibro-green: #00b74a;
    --digibro-blue: #0066cc;
    --digibro-teal: #00bfa6;
    --digibro-dark: #1a2332;
    --digibro-muted: #5a6c7d;
    --digibro-orange: #f97316;
    --digibro-red: #ef4444;
    --digibro-purple: #8b5cf6;
    --digibro-gold: #f59e0b;

    /* Enhanced Gradients */
    --gradient-primary: linear-gradient(135deg, #00b74a 0%, #0066cc 100%);
    --gradient-secondary: linear-gradient(135deg, #00bfa6 0%, #00b74a 100%);
    --gradient-premium: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    --gradient-ocean: linear-gradient(135deg, #0077b6 0%, #00b4d8 50%, #48cae4 100%);
    --gradient-vibrant: linear-gradient(135deg, #00b74a 0%, #00bfa6 50%, #0066cc 100%);

    /* Premium Backgrounds */
    --bg-light: #ffffff;
    --bg-cream: #fefdfb;
    --bg-section: #f8fafc;
    --bg-glass: rgba(255, 255, 255, 0.8);
    --bg-glass-strong: rgba(255, 255, 255, 0.95);

    /* Text Colors */
    --text-dark: #0f172a;
    --text-heading: #1e293b;
    --text-medium: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;

    /* Premium Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.1), 0 15px 20px -10px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 30px 60px -15px rgba(0, 0, 0, 0.12);
    --shadow-2xl: 0 40px 80px -20px rgba(0, 0, 0, 0.15);
    --shadow-green: 0 20px 40px -10px rgba(0, 183, 74, 0.25);
    --shadow-blue: 0 20px 40px -10px rgba(0, 102, 204, 0.2);

    /* Borders */
    --border-color: rgba(0, 0, 0, 0.06);
    --border-strong: rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Typography */
    --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-heading: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background: var(--bg-cream);
    color: var(--text-dark);
    overflow-x: hidden;
    line-height: 1.6;
}