/**
 * HYVIA Design System
 * Modern SaaS Premium Look & Feel
 */

:root {
    /* Main Palette */
    --hyvia-blue: #1B3B6F;
    --hyvia-green: #4FD1C5;
    --hyvia-orange: #ED8936;
    --hyvia-dark: #0F172A;
    --hyvia-light: #F8FAFC;
    
    /* UI Tokens */
    --card-radius: 12px;
    --card-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --card-shadow-hover: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Typography */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: var(--hyvia-light);
    color: var(--hyvia-dark);
}

.heading-outfit {
    font-family: 'Outfit', sans-serif;
}

/* Base Card Style */
.hyvia-card {
    background: #FFFFFF;
    border-radius: var(--card-radius);
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hyvia-card:hover {
    box-shadow: var(--card-shadow-hover);
    transform: translateY(-2px);
    border-color: var(--hyvia-green);
}

/* Buttons */
.btn-primary {
    background-color: var(--hyvia-blue);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.2s;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.btn-action {
    background-color: var(--hyvia-orange);
    color: white;
    border-radius: 8px;
    font-weight: 600;
}

/* Status Tags */
.status-pill {
    padding: 2px 8px;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-valid { background: #DCFCE7; color: #15803D; }
.status-pending { background: #FEF9C3; color: #854D0E; }
.status-error { background: #FEE2E2; color: #B91C1C; }

/* Mobile Responsive Overrides */
@media (max-width: 767px) {
    .hyvia-card:hover {
        transform: none;
    }
    .status-pill {
        font-size: 11px;
    }
}

/* Touch device hover prevention */
@media (hover: none) {
    .hyvia-card:hover {
        transform: none;
        box-shadow: var(--card-shadow);
    }
    .btn-primary:hover {
        transform: none;
    }
}
