:root {
    --primary: #6366f1;
    --accent: #10b981;
    --bg-dark: #020617;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.1);
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-dark);
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Gradiente de fondo animado */
.bg-gradient {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 50% 50%, #1e1b4b 0%, #020617 100%);
    z-index: -1;
}

.dashboard {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.hero { text-align: center; margin-bottom: 50px; }

.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid var(--primary);
    border-radius: 20px;
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 15px;
}

h1 { font-size: 3rem; margin: 0; font-weight: 800; }
h1 span { background: linear-gradient(to right, #818cf8, #c084fc); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Botones Estilo Glassmorphism */
.nav-bar {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.glass-btn {
    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 18px;
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-content { display: flex; align-items: center; gap: 15px; text-align: left; }
.btn-content .icon { font-size: 1.8rem; }
.btn-content .title { display: block; font-weight: 800; font-size: 1rem; }
.btn-content .desc { font-size: 0.7rem; color: #94a3b8; text-transform: uppercase; }

.glass-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
}

/* Mockup de Navegador para el Visor */
.viewport-wrapper { margin-top: 30px; }

.browser-mockup {
    background: #0f172a;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.browser-header {
    background: #1e293b;
    padding: 12px 20px;
    display: flex;
    gap: 8px;
}

.dot { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.content-viewer {
    height: 700px;
    background: #111827;
    position: relative;
}

iframe { width: 100%; height: 100%; border: none; }

/* Placeholder Animado */
.placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #475569;
}

.orb {
    width: 100px; height: 100px;
    background: var(--primary);
    filter: blur(40px);
    border-radius: 50%;
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}