/**
 * Kinetic Glass Design System - Base Tokens
 */
:root {
    /* Neutrals */
    --ddw-black: #050505;
    --ddw-white: #ffffff;
    --ddw-slate-50: #f8fafc;
    --ddw-slate-100: #f1f5f9;
    --ddw-slate-400: #94a3b8;
    --ddw-slate-500: #64748b;
    --ddw-slate-600: #475569;
    --ddw-slate-700: #334155;
    --ddw-slate-800: #1e293b;
    --ddw-slate-900: #0f172a;

    /* Brand */
    --ddw-primary: #FF6464;
    --ddw-primary-hover: #e55a5a;

    /* Borders & Glass */
    --ddw-hairline: 1px solid rgba(255, 255, 255, 0.1);
    --ddw-hairline-dark: 1px solid rgba(15, 23, 42, 0.1);
    --ddw-glass-bg: rgba(255, 255, 255, 0.7);
    --ddw-glass-blur: blur(12px);
    --ddw-glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --ddw-glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);

    /* Spacing */
    --ddw-space-4: 0.25rem;
    --ddw-space-8: 0.5rem;
    --ddw-space-12: 0.75rem;
    --ddw-space-16: 1rem;
    --ddw-space-24: 1.5rem;
    --ddw-space-32: 2rem;
    --ddw-space-48: 3rem;
    --ddw-space-64: 4rem;

    /* Radius */
    --ddw-radius-sm: 4px;
    --ddw-radius-md: 8px;
    --ddw-radius-lg: 16px;
    --ddw-radius-xl: 24px;
    --ddw-radius-full: 9999px;

    /* Typography */
    --ddw-font-heading: 'Belleza', sans-serif;
    --ddw-font-body: 'Work Sans', sans-serif;
    --ddw-text-xs: 0.75rem;
    --ddw-text-sm: 0.875rem;
    --ddw-text-base: 1rem;
    --ddw-text-lg: 1.125rem;
    --ddw-text-xl: 1.25rem;
    --ddw-text-2xl: 1.5rem;
    --ddw-text-3xl: 2rem;
    --ddw-weight-normal: 400;
    --ddw-weight-medium: 500;
    --ddw-weight-bold: 600;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--ddw-slate-50);
    color: var(--ddw-slate-900);
    font-family: var(--ddw-font-body);
    font-size: var(--ddw-text-base);
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ddw-font-heading);
    font-weight: var(--ddw-weight-bold);
    margin: 0;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.8;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--ddw-primary);
    outline-offset: 3px;
    border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}