/* assets/css/style.css */

/* --- 1. VARIABLES & CONFIGURACIÓN BASE --- */
:root {
    --color-bg: #020408;       /* Negro Profundo */
    --color-panel: #050b14;    /* Paneles */
    --color-cyan: #00E5FF;     /* Acento Energía/Tecnología */
    --color-gold: #FFD700;     /* Acento Logro/Premium */
    --color-text: #e2e8f0;     /* Texto legible */
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: 'Inter', sans-serif;
    /* Evita el efecto elástico en iOS para que se sienta como App nativa */
    overscroll-behavior-y: none;
    -webkit-tap-highlight-color: transparent;
}

/* Fuentes Técnicas para Títulos */
h1, h2, h3, .brand-font {
    font-family: 'Space Grotesk', sans-serif;
}

/* --- 2. UTILIDADES VISUALES ZuiR --- */

/* Fondo de Malla Tecnológica (Wireframe) */
.tech-grid {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: 50px 50px;
    background-image: 
        linear-gradient(to right, rgba(10, 36, 99, 0.2) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(10, 36, 99, 0.2) 1px, transparent 1px);
    mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
    pointer-events: none;
    z-index: 0;
}

/* Ocultar Scrollbar (Estética limpia) */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* Paneles de Vidrio (Glassmorphism) */
.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Línea de Tiempo Neón (Dashboard) */
.timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-cyan) 0%, rgba(0, 229, 255, 0.1) 80%, transparent 100%);
    z-index: 0;
}
@media (min-width: 1024px) {
    .timeline-line { left: 30px; }
}

/* Ajustes para iPhone (Safe Areas - Notch) */
.pb-safe { padding-bottom: env(safe-area-inset-bottom, 20px); }
.pt-safe { padding-top: max(12px, env(safe-area-inset-top)); }

/* Animación de Pulso (Glow) */
@keyframes pulse-soft {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}
.animate-pulse-soft { animation: pulse-soft 3s infinite; }