/* ═══════════════════════════════════════════════════════════════════════════
   VIGILIUM 6.0 - COMPLIANCE BY DESIGN
   Enterprise-grade AI Compliance Assessment Interface
   ═══════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Core Palette - Professional & Trustworthy */
    --vigi-primary: #0ea5e9;
    --vigi-primary-dark: #0284c7;
    --vigi-primary-light: rgba(14, 165, 233, 0.1);
    --vigi-secondary: #6366f1;
    --vigi-accent: #10b981;
    --vigi-warning: #f59e0b;
    --vigi-danger: #ef4444;
    
    /* Surfaces */
    --vigi-bg: #0a0e14;
    --vigi-surface: #111827;
    --vigi-surface-2: #1f2937;
    --vigi-surface-3: #374151;
    --vigi-surface-elevated: rgba(17, 24, 39, 0.95);
    
    /* Text */
    --vigi-text: #f9fafb;
    --vigi-text-secondary: #9ca3af;
    --vigi-text-muted: #6b7280;
    
    /* Borders & Effects */
    --vigi-border: rgba(255, 255, 255, 0.06);
    --vigi-border-subtle: rgba(255, 255, 255, 0.03);
    --vigi-glow: rgba(14, 165, 233, 0.15);
    
    /* Typography */
    --font-display: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MAIN CONTAINER - TWO COLUMN LAYOUT
   ═══════════════════════════════════════════════════════════════════════════ */

.vigi-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: var(--vigi-bg);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.vigi-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(14, 165, 233, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(99, 102, 241, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

/* Grid Pattern Overlay */
.vigi-container::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    opacity: 0.5;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LEFT PANEL - HERO CONTENT
   ═══════════════════════════════════════════════════════════════════════════ */

.vigi-hero-panel {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    border-right: 1px solid var(--vigi-border);
}

.vigi-hero-content {
    max-width: 520px;
}

/* AI Disclosure Badge - Art. 50 Compliance */
.vigi-ai-disclosure {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    margin-bottom: 32px;
    background: var(--vigi-primary-light);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--vigi-primary);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.vigi-ai-icon {
    width: 18px;
    height: 18px;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { opacity: 1; filter: drop-shadow(0 0 2px currentColor); }
    50% { opacity: 0.7; filter: drop-shadow(0 0 8px currentColor); }
}

/* Title */
.vigi-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.vigi-title-line {
    display: block;
    color: var(--vigi-text);
}

.vigi-title-accent {
    display: block;
    background: linear-gradient(135deg, var(--vigi-primary) 0%, var(--vigi-secondary) 50%, #8b5cf6 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient-shift 4s linear infinite;
}

@keyframes gradient-shift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Subtitle */
.vigi-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--vigi-text-secondary);
    margin-bottom: 36px;
}

.vigi-subtitle strong {
    color: var(--vigi-text);
    font-weight: 600;
}

/* Trust Signals */
.vigi-trust-signals {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 40px;
}

.vigi-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--vigi-text-secondary);
}

.vigi-trust-icon {
    font-size: 1.1rem;
}

/* Legal References */
.vigi-legal-refs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    padding-top: 28px;
    border-top: 1px solid var(--vigi-border);
    font-size: 0.8rem;
    color: var(--vigi-text-muted);
}

.vigi-legal-refs a {
    color: var(--vigi-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.vigi-legal-refs a:hover {
    color: var(--vigi-text);
    text-decoration: underline;
}

.vigi-sep {
    opacity: 0.4;
}

/* ═══════════════════════════════════════════════════════════════════════════
   RIGHT PANEL - CHAT INTERFACE
   ═══════════════════════════════════════════════════════════════════════════ */

.vigi-chat-panel {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.5) 0%, rgba(10, 14, 20, 0.8) 100%);
}

.vigi-shell {
    width: 100%;
    max-width: 480px;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    background: var(--vigi-surface);
    border: 1px solid var(--vigi-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.03) inset,
        0 25px 80px -20px rgba(0, 0, 0, 0.6),
        0 0 60px -20px var(--vigi-glow);
    animation: shell-appear 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes shell-appear {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Header */
.vigi-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--vigi-border);
}

.vigi-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vigi-header-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--vigi-primary), var(--vigi-secondary));
    border-radius: var(--radius-md);
    box-shadow: 0 4px 12px -4px rgba(14, 165, 233, 0.4);
}

.vigi-header-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.vigi-header-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.vigi-header-title {
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--vigi-text);
}

.vigi-header-reg {
    font-size: 0.7rem;
    color: var(--vigi-text-muted);
    letter-spacing: 0.3px;
}

.vigi-progress-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vigi-progress {
    width: 80px;
    height: 4px;
    background: var(--vigi-surface-3);
    border-radius: 100px;
    overflow: hidden;
}

.vigi-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--vigi-primary), var(--vigi-accent));
    border-radius: 100px;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.vigi-progress-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--vigi-text-muted);
    min-width: 28px;
}

/* Body */
.vigi-body {
    flex: 1;
    padding: 24px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.vigi-body::-webkit-scrollbar {
    width: 6px;
}

.vigi-body::-webkit-scrollbar-track {
    background: transparent;
}

.vigi-body::-webkit-scrollbar-thumb {
    background: var(--vigi-surface-3);
    border-radius: 3px;
}

/* Slide Animation */
.vigi-slide {
    animation: slide-in 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex: 1;
    display: flex;
    flex-direction: column;
}

@keyframes slide-in {
    from { opacity: 0; transform: translateX(16px); }
    to { opacity: 1; transform: translateX(0); }
}

/* Messages */
.vigi-msg {
    padding: 18px 22px;
    border-radius: var(--radius-lg);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 16px;
}

.vigi-msg.bot {
    background: var(--vigi-surface-2);
    color: var(--vigi-text);
    border: 1px solid var(--vigi-border);
}

.vigi-msg.bot b {
    color: var(--vigi-primary);
    font-weight: 600;
}

.vigi-msg.user {
    background: linear-gradient(135deg, var(--vigi-primary), var(--vigi-primary-dark));
    color: white;
    margin-left: auto;
    max-width: 85%;
    box-shadow: 0 4px 16px -4px rgba(14, 165, 233, 0.4);
}

.vigi-msg.error {
    background: rgba(239, 68, 68, 0.1);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.2);
    font-size: 0.85rem;
}

/* AI Disclosure Banner (First Message) */
.vigi-ai-banner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(99, 102, 241, 0.1));
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: var(--radius-md);
    margin-bottom: 0;
}

.vigi-ai-banner svg {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    color: var(--vigi-primary);
    animation: pulse-glow 3s ease-in-out infinite;
}

.vigi-ai-banner strong {
    color: var(--vigi-primary);
}

.vigi-ai-banner div {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--vigi-text-secondary);
}

/* Options (Buttons) */
.vigi-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.vigi-chip {
    padding: 13px 20px;
    font-size: 0.88rem;
    font-weight: 500;
    font-family: var(--font-body);
    color: var(--vigi-text);
    background: var(--vigi-surface-2);
    border: 1px solid var(--vigi-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.vigi-chip:hover {
    background: var(--vigi-surface-3);
    border-color: var(--vigi-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px -4px rgba(14, 165, 233, 0.2);
}

.vigi-chip.selected {
    background: linear-gradient(135deg, var(--vigi-primary), var(--vigi-primary-dark));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 16px -4px rgba(14, 165, 233, 0.5);
}

/* Phone Input */
.vigi-phone-row {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.vigi-phone-prefix,
.vigi-phone-number {
    padding: 14px 18px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--vigi-text);
    background: var(--vigi-surface-2);
    border: 1px solid var(--vigi-border);
    border-radius: var(--radius-md);
    transition: all 0.25s;
}

.vigi-phone-prefix {
    width: 85px;
    text-align: center;
}

.vigi-phone-number {
    flex: 1;
}

.vigi-phone-prefix:focus,
.vigi-phone-number:focus {
    outline: none;
    border-color: var(--vigi-primary);
    box-shadow: 0 0 0 3px var(--vigi-primary-light);
}

/* Consent Box - RGPD Compliance */
.vigi-consent-fixed {
    margin-top: auto;
    padding-top: 20px;
}

.vigi-consent-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: var(--vigi-surface-2);
    border: 1px solid var(--vigi-border);
    border-radius: var(--radius-md);
}

.vigi-consent-box input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--vigi-primary);
    cursor: pointer;
}

.vigi-consent-box span {
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--vigi-text-muted);
}

.vigi-consent-box a {
    color: var(--vigi-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.vigi-consent-box a:hover {
    color: var(--vigi-text);
    text-decoration: underline;
}

/* Continue Button for Consent */
.vigi-consent-btn {
    width: 100%;
    margin-top: 14px;
    padding: 14px 24px;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: white;
    background: linear-gradient(135deg, var(--vigi-primary), var(--vigi-primary-dark));
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 12px -4px rgba(14, 165, 233, 0.4);
}

.vigi-consent-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(14, 165, 233, 0.5);
}

.vigi-consent-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Typing Indicator */
.vigi-typing {
    display: flex;
    gap: 5px;
    padding: 8px 0;
}

.vigi-typing span {
    width: 7px;
    height: 7px;
    background: var(--vigi-primary);
    border-radius: 50%;
    animation: typing-bounce 1.4s ease-in-out infinite;
}

.vigi-typing span:nth-child(2) { animation-delay: 0.15s; }
.vigi-typing span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing-bounce {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
    30% { transform: translateY(-6px); opacity: 1; }
}

/* Footer */
.vigi-footer {
    display: flex;
    gap: 12px;
    padding: 18px 24px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid var(--vigi-border);
}

.vigi-input {
    flex: 1;
    padding: 14px 18px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--vigi-text);
    background: var(--vigi-surface-2);
    border: 1px solid var(--vigi-border);
    border-radius: var(--radius-md);
    transition: all 0.25s;
}

.vigi-input:focus {
    outline: none;
    border-color: var(--vigi-primary);
    box-shadow: 0 0 0 3px var(--vigi-primary-light);
}

.vigi-input::placeholder {
    color: var(--vigi-text-muted);
}

.vigi-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--vigi-primary), var(--vigi-primary-dark));
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 4px 12px -4px rgba(14, 165, 233, 0.4);
}

.vigi-btn:hover:not(:disabled) {
    transform: scale(1.05);
    box-shadow: 0 8px 20px -4px rgba(14, 165, 233, 0.5);
}

.vigi-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.vigi-btn svg {
    width: 20px;
    height: 20px;
    color: white;
}

/* Disclaimer Footer - Liability Shield */
.vigi-disclaimer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: rgba(245, 158, 11, 0.05);
    border-top: 1px solid rgba(245, 158, 11, 0.1);
    font-size: 0.72rem;
    color: var(--vigi-warning);
}

.vigi-disclaimer svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SUCCESS STATE
   ═══════════════════════════════════════════════════════════════════════════ */

.vigi-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 28px;
}

.vigi-success-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--vigi-accent), #059669);
    border-radius: 50%;
    font-size: 32px;
    color: white;
    margin-bottom: 24px;
    animation: success-pop 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 12px 32px -8px rgba(16, 185, 129, 0.5);
}

@keyframes success-pop {
    0% { transform: scale(0) rotate(-180deg); }
    60% { transform: scale(1.1) rotate(10deg); }
    100% { transform: scale(1) rotate(0); }
}

.vigi-success h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--vigi-text);
    margin-bottom: 12px;
}

.vigi-success p {
    font-size: 0.92rem;
    color: var(--vigi-text-secondary);
    line-height: 1.6;
    margin-bottom: 8px;
}

.vigi-success .highlight {
    color: var(--vigi-primary);
    font-weight: 600;
}

.vigi-success-cta {
    margin-top: 24px;
    padding: 15px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: white;
    background: linear-gradient(135deg, var(--vigi-primary), var(--vigi-primary-dark));
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.25s;
    box-shadow: 0 4px 16px -4px rgba(14, 165, 233, 0.5);
}

.vigi-success-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px -4px rgba(14, 165, 233, 0.6);
}

.vigi-success-note {
    margin-top: 20px;
    padding: 16px 18px;
    background: var(--vigi-surface-2);
    border: 1px solid var(--vigi-border);
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    color: var(--vigi-text-muted);
    line-height: 1.6;
}

.vigi-success-note strong {
    color: var(--vigi-text);
}

/* Legal Disclaimer in Success */
.vigi-success-legal {
    margin-top: 20px;
    padding: 14px 18px;
    background: rgba(245, 158, 11, 0.05);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: var(--radius-md);
    font-size: 0.75rem;
    color: var(--vigi-warning);
    line-height: 1.5;
    text-align: left;
}

/* ═══════════════════════════════════════════════════════════════════════════
   ANALYSIS RESULTS
   ═══════════════════════════════════════════════════════════════════════════ */

.vigi-analysis {
    margin-top: 16px;
    padding: 18px;
    background: var(--vigi-surface-2);
    border: 1px solid var(--vigi-border);
    border-radius: var(--radius-md);
}

.vigi-analysis-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--vigi-text);
    margin-bottom: 14px;
}

.vigi-analysis-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 0.82rem;
    color: var(--vigi-text-secondary);
    border-top: 1px solid var(--vigi-border-subtle);
}

.vigi-analysis-item:first-of-type {
    border-top: none;
    padding-top: 0;
}

.vigi-analysis-icon {
    font-size: 1rem;
}

.vigi-analysis-icon.success { color: var(--vigi-accent); }
.vigi-analysis-icon.warning { color: var(--vigi-warning); }
.vigi-analysis-icon.error { color: var(--vigi-danger); }

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE DESIGN
   ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .vigi-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .vigi-hero-panel {
        padding: 48px 32px;
        border-right: none;
        border-bottom: 1px solid var(--vigi-border);
    }
    
    .vigi-hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .vigi-ai-disclosure {
        margin-left: auto;
        margin-right: auto;
    }
    
    .vigi-trust-signals {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .vigi-legal-refs {
        justify-content: center;
    }
    
    .vigi-chat-panel {
        padding: 32px 20px;
    }
    
    .vigi-shell {
        max-width: 100%;
        min-height: 500px;
    }
}

@media (max-width: 640px) {
    .vigi-hero-panel {
        padding: 36px 20px;
    }
    
    .vigi-title {
        font-size: 1.75rem;
    }
    
    .vigi-subtitle {
        font-size: 0.95rem;
    }
    
    .vigi-trust-signals {
        flex-direction: column;
        align-items: center;
    }
    
    .vigi-chat-panel {
        padding: 20px 16px;
    }
    
    .vigi-shell {
        border-radius: var(--radius-lg);
    }
    
    .vigi-header {
        padding: 16px 18px;
    }
    
    .vigi-header-icon {
        width: 38px;
        height: 38px;
    }
    
    .vigi-progress-wrap {
        display: none;
    }
    
    .vigi-body {
        padding: 18px;
    }
    
    .vigi-msg {
        padding: 14px 18px;
        font-size: 0.88rem;
    }
    
    .vigi-chip {
        padding: 11px 16px;
        font-size: 0.84rem;
    }
    
    .vigi-footer {
        padding: 14px 18px;
    }
    
    .vigi-input {
        font-size: 16px; /* Prevent zoom on iOS */
        padding: 12px 16px;
    }
    
    .vigi-btn {
        width: 46px;
        height: 46px;
    }
    
    .vigi-disclaimer {
        padding: 12px 18px;
        font-size: 0.68rem;
    }
    
    .vigi-phone-row {
        flex-direction: column;
    }
    
    .vigi-phone-prefix {
        width: 100%;
    }
    
    .vigi-success {
        padding: 28px 20px;
    }
    
    .vigi-success-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }
    
    .vigi-success h3 {
        font-size: 1.2rem;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   DARK MODE OPTIMIZATION (already dark, but for explicit dark-mode preference)
   ═══════════════════════════════════════════════════════════════════════════ */

@media (prefers-color-scheme: dark) {
    .vigi-container {
        color-scheme: dark;
    }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ACCESSIBILITY
   ═══════════════════════════════════════════════════════════════════════════ */

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

/* Focus States */
.vigi-chip:focus-visible,
.vigi-btn:focus-visible,
.vigi-consent-btn:focus-visible {
    outline: 2px solid var(--vigi-primary);
    outline-offset: 2px;
}
