/* 
 * VISTA CAPIXABA - ZENITH LIGHT v18.0
 * Aesthetic: Minimalist / High-Performance / Essential Dark
 * Author: Antigravity AI
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;700&display=swap');

:root {
    --canvas: #050508;
    --surface: #0a0a0f;
    --material: rgba(13, 13, 20, 0.9);

    --accent: #6366f1;
    --accent-glow: rgba(99, 102, 241, 0.15);

    --ink-high: #f8fafc;
    --ink-med: #94a3b8;
    --ink-low: #475569;

    --line: rgba(255, 255, 255, 0.06);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--canvas);
    color: var(--ink-med);
    font-family: 'Plus Jakarta Sans', sans-serif;
    min-height: 100vh;
    line-height: 1.5;
    background-image: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.05) 0%, transparent 50%);
    background-attachment: fixed;
}

/* --- LIGHTER GLASS EFFECT --- */
.glass {
    background: var(--material) !important;
    backdrop-filter: blur(12px) !important;
    /* Reduced from 40px for performance */
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid var(--line) !important;
    border-radius: 16px !important;
    /* Smaller radius */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    /* Lighter shadow */
    transition: border-color 0.3s ease !important;
}

.glass:hover {
    border-color: rgba(99, 102, 241, 0.3) !important;
}

/* --- MINIMALIST INPUTS --- */
input[type="text"] {
    background: #000 !important;
    border: 1px solid var(--line) !important;
    border-radius: 12px !important;
    color: #fff !important;
    font-family: 'JetBrains Mono', monospace !important;
    font-size: 14px !important;
    /* Smaller font */
    padding: 0.8rem 1.2rem !important;
    /* Significantly reduced padding */
    width: 100% !important;
    transition: all 0.2s ease !important;
}

input[type="text"]:focus {
    border-color: var(--accent) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px var(--accent-glow) !important;
}

/* --- ESSENTIAL BUTTONS --- */
button {
    cursor: pointer;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.05em;
    border-radius: 12px;
    transition: all 0.2s ease;
    border: none;
    padding: 0.6rem 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-icon {
    padding: 0 !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.bg-brand-600 {
    background: var(--accent) !important;
    color: #fff !important;
}

.bg-brand-600:hover {
    opacity: 0.9;
    transform: none !important;
}

.bg-white\/5 {
    background: rgba(255, 255, 255, 0.05) !important;
    color: var(--ink-med) !important;
}

/* --- COMPACT TABS --- */
.tab-active {
    background: rgba(99, 102, 241, 0.15) !important;
    color: #fff !important;
    border: 1px solid rgba(99, 102, 241, 0.3) !important;
    border-radius: 8px !important;
}

.tab-inactive {
    color: var(--ink-low) !important;
    border-radius: 8px !important;
    background: transparent !important;
}

/* --- UTILITIES --- */
.flex {
    display: flex !important;
}

.flex-col {
    flex-direction: column !important;
}

.items-center {
    align-items: center !important;
}

.justify-between {
    justify-content: space-between !important;
}

.hidden {
    display: none !important;
}

.relative {
    position: relative !important;
}

/* Reduced Spacing */
.p-4 {
    padding: 1rem !important;
}

.p-6 {
    padding: 1.5rem !important;
}

.p-8 {
    padding: 2rem !important;
}

.gap-8 {
    gap: 1.5rem !important;
}

.mb-4 {
    margin-bottom: 1rem !important;
}

.max-w-3xl {
    max-width: 48rem !important;
}

.max-w-4xl {
    max-width: 56rem !important;
}

.max-w-5xl {
    max-width: 64rem !important;
}

.max-w-6xl {
    max-width: 72rem !important;
}

.max-w-7xl {
    max-width: 80rem !important;
}

.max-w-full {
    max-width: 100% !important;
}

.max-w-\[1200px\] {
    max-width: 1200px !important;
}

.max-w-\[1600px\] {
    max-width: 1600px !important;
}

.w-full {
    width: 100% !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Typography Scale */
.text-2xl,
.text-3xl {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
}

.text-lg {
    font-size: 1rem !important;
}

.text-sm {
    font-size: 0.85rem !important;
}

.text-xs {
    font-size: 0.75rem !important;
}

/* Animations - Lightened */
.animate-fade-in {
    animation: fadeIn 0.3s ease both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

::selection {
    background: var(--accent);
    color: #fff;
}

.tabular-nums {
    font-variant-numeric: tabular-nums !important;
}