/* Custom Properties for Prompt & Pixel Theme - Premium Redesign */

:root {
    /* Colors: Deep monochrome with high contrast */
    --color-bg: #000000;
    --color-bg-alt: #0a0a0c;
    --color-bg-glass: rgba(10, 10, 12, 0.7);
    --color-text: #ffffff;
    --color-text-muted: #8a8a93;

    --color-primary: #ffffff;
    --color-primary-hover: #000000;
    --color-accent: #e5ff00;
    /* Electric chartreuse for unexpected pop (Pinch/Huncwot vibe) */

    --color-border: #1a1a1a;
    --color-border-hover: #333333;

    /* Typography */
    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Syne', sans-serif;
    /* High-fashion tech display font */

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1.125rem;
    --text-lg: 1.25rem;
    --text-xl: 1.5rem;
    --text-2xl: 2rem;
    --text-3xl: 2.5rem;
    --text-4xl: 3.5rem;
    --text-5xl: 5vw;
    /* Fluid typography for massive displays */
    --text-6xl: 8vw;
    /* Fluid for hero title */

    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;
    --spacing-32: 8rem;

    /* Borders */
    --radius-sm: 0;
    /* Brutalist approach often uses sharp or completely round */
    --radius: 0;
    --radius-md: 0;
    --radius-lg: 0;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 200ms cubic-bezier(0.16, 1, 0.3, 1);
    --transition: 400ms cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 700ms cubic-bezier(0.16, 1, 0.3, 1);

    /* Gradients (onepage.ai ref: gradient-bg, gradient-border) */
    --gradient-hero-glow: radial-gradient(ellipse at 65% 50%, rgba(229, 255, 0, 0.07) 0%, transparent 65%);
    --gradient-cta: linear-gradient(135deg, rgba(229, 255, 0, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    --color-accent-glow: rgba(229, 255, 0, 0.10);

    /* Shadow scale (onepage.ai ref: shadow none/s/m/l/xl) */
    --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.5);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.65);
    --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.85);
    --shadow-glow: 0 0 40px rgba(229, 255, 0, 0.12);

    /* Card radius (onepage.ai ref: 4px–32px range) */
    --radius-card: 4px;
}