:root {
    --bg-metallic: #040712;
    --bg-mid: #080d22;
    --bg-card: #0e1534;
    --cyan: #00f0ff;
    --purple: #7c3aed;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --border-matrix: #1e295d40;
    --font-main: 'Inter', sans-serif;
    --font-branding: 'Montserrat', sans-serif;
    --font-technical: 'JetBrains Mono', monospace;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    background-color: var(--bg-metallic);
    color: var(--text-main);
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* - BOTONES INTEGRADOS - */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-unete {
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    color: var(--bg-metallic);
    border: none;
}

.btn-unete:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(0, 149, 186, 0.4);
    color: #fff;
}

.btn-como {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-como:hover {
    border-color: var(--cyan);
    background: rgba(0, 149, 186, 0.03);
}

/* ========== NAV BAR ========== */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(4, 7, 18, 0.85);
    backdrop-filter: blur(16px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-branding);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-decoration: none;
    color: #fff;
}

.logo span {
    color: #00f0ff;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin: 0 20px;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--cyan);
}

/* ========== HERO SECTION ========== */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 150px 24px;
    background-color: var(--bg-metallic);
    overflow: hidden;
    margin-left: clamp(0px, 8vw, 150px);
    margin-right: clamp(0px, 8vw, 150px);
}

.hero-content {
    max-width: 700px;
    width: 100%;
    z-index: 2;
    transition: margin-left 0.3s ease;
    text-align: left;
    text-wrap: balance;
}

/* - BADGE TÉCNICO FLOTANTE - */
.tech-badge-hero {
    font-family: var(--font-technical);
    font-size: 0.8rem;
    color: var(--cyan);
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 149, 186, 0.05);
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid rgba(0, 149, 186, 0.15);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #ef4444; 
    border-radius: 50%;
    animation: blinkStatus 1.5s infinite ease-in-out;
}

@keyframes blinkStatus {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; box-shadow: 0 0 8px #ef4444; }
}

/* - TÍTULO PRINCIPAL - */
.hero-content h1 {
    font-family: var(--font-branding);
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.hero-content h1 span {
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* - SUBTEXTO DESCRIPTIVO - */
.hero-sub {
    font-family: var(--font-main);
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 40px;
    text-align: left;
}

.hero-sub strong {
    color: var(--cyan);
    font-weight: 600;
}

/* - BOTONES ACELERADORES - */
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* - AMBIENTACIÓN VISUAL (ORBE DE FONDO) - */
.hero-visual {
    position: absolute;
    right: 0;
    top: 25%;
    z-index: 1;
    pointer-events: none;
}

.glow-orb {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    filter: blur(40px);
}

/* - WAVE CANVAS - */
#waveCanvas {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 140px;
    pointer-events: none;
    z-index: 1;
}

/* ========== SECCIÓN TARJETAS (Cómo funciona) ========== */
.pillars-section,
.roles-section,
.saas-pricing-section {
    padding: 120px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-family: var(--font-technical, monospace);
    color: var(--cyan);
    display: block;
    margin-bottom: 12px;
    letter-spacing: 1.5px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.8px;
    margin-bottom: 54px;
    line-height: 1.1;
}

.section-title span {
    color: var(--cyan);
}

/* - 4 PILARES (Estilo Matriz de Alta Tecnología) - */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    overflow: hidden;
}

.pillar-card {
    background-color: #060913;
    padding: 48px 36px;
    position: relative;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

/* - LÍNEA DE LUZ SUPERIOR INTERACTIVA - */
.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar-card:hover {
    background-color: #090d1a;
}

.pillar-card:hover::before {
    opacity: 1;
}

.pillar-number {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cyan);
    font-family: var(--font-technical, monospace);
    display: block;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.pillar-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 14px;
    color: #ffffff;
}

.pillar-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    text-align: left;
    text-wrap: balance;
}

.pillar-corner {
    position: absolute;
    bottom: 24px;
    right: 24px;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    opacity: 0.3;
    font-family: var(--font-technical, monospace);
}

/* - SECCIÓN MANIFIESTO / BLOQUE DE CONFIANZA - */
.manifesto-section {
    padding: 100px 24px;
    background: linear-gradient(180deg, #060913 0%, #03050a 100%);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.manifesto-container {
    max-width: 1000px;
    margin: 0 auto;
}

.manifesto-quote {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 1px;
    color: #fff;
    margin-top: 16px;
    margin-bottom: 54px;
    max-width: 900px;
}

.manifesto-quote span {
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.manifesto-block p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    text-align: left;
    text-wrap: balance;
}

.manifesto-block p strong {
    color: #fff;
    font-weight: 600;
}

/* - INDICADORES DE MÉTRICAS DE CONFIANZA - */
.trust-indicators-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding-top: 48px;
}

.indicator-item {
    background: rgba(255, 255, 255, 0.01);
    border-left: 2px solid var(--cyan);
    padding: 16px 24px;
    border-radius: 0 4px 4px 0;
}

.indicator-item:nth-child(2) {
    border-left-color: var(--purple);
}

.ind-stat {
    display: block;
    font-family: var(--font-technical, monospace);
    font-size: 2.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 8px;
}

.ind-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* ========== MAQUETACIÓN (Sneak Peek) ========== */
.nektive-saas-container {
    display: grid;
    grid-template-columns: 240px 1fr;
    grid-template-rows: 1fr 75px;
    height: 90vh;
    min-height: 720px;
    width: 100%;
    background-color: #04060f;
    color: #f1f5f9;
    overflow: hidden;
    position: relative;
    
}

/* - SIDEBAR - */
.saas-sidebar {
    grid-column: 1;
    grid-row: 1 / 2;
    background-color: #080c16;
    border-right: 1px solid rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.sidebar-brand {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.brand-logo {
    font-family: monospace;
    font-weight: 900;
    color: var(--cyan);
    font-size: 1.2rem;
    letter-spacing: -1px;
}

.brand-text h3 {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.badge-plan {
    font-family: monospace;
    font-size: 0.55rem;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 3px;
    display: inline-block;
    margin-top: 2px;
}

.badge-plan.plan-pro {
    background-color: rgba(0, 149, 186, 0.1);
    color: var(--cyan);
    border: 1px solid rgba(0, 149, 186, 0.2);
}

.sidebar-scroller {
    flex: 1;
    overflow-y: auto;
    padding: 20px 12px;
}

.nav-group {
    margin-bottom: 24px;
}

.group-label {
    font-family: monospace;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding-left: 12px;
    display: block;
    margin-bottom: 8px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 12px;
    color: #94a3b8;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 6px;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background-color: rgba(255, 255, 255, 0.02);
    color: #fff;
}

.nav-link.active {
    color: var(--cyan);
    font-weight: 600;
}

.nav-link.locked {
    opacity: 0.4;
    cursor: not-allowed;
    justify-content: space-between;
}

.lock-icon {
    color: var(--purple);
}

.sidebar-user-footer {
    padding: 16px 24px;
    background-color: #060911;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #1e293b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cyan);
}

.user-meta h4 {
    font-size: 0.8rem;
    font-weight: 600;
}

.user-meta span {
    font-size: 0.65rem;
    color: #64748b;
}

/* - PANEL DE CONTENIDO (DERECHA) - */
.saas-main-content {
    grid-column: 2;
    grid-row: 1 / 2;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.saas-topbar {
    height: 68px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}

.section-live-title {
    font-size: 1.15rem;
    font-weight: 700;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.utility-controls {
    display: flex;
    gap: 12px;
}

.icon-btn {
    background: transparent;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    transition: var(--transition);
}

.icon-btn:hover {
    color: #fff;
}

.notification-badge {
    position: relative;
}

.notification-badge::after {
    content: '';
    position: absolute;
    top: 4px;
    right: 4px;
    width: 6px;
    height: 6px;
    background-color: var(--purple);
    border-radius: 50%;
}

.cta-contextual-btn {
    background-color: var(--cyan);
    color: #04060f;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.cta-contextual-btn:hover {
    box-shadow: 0 0 12px rgba(0, 149, 186, 0.3);
}

.saas-subtabs {
    height: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
    display: flex;
    padding: 0 32px;
    gap: 24px;
    flex-shrink: 0;
}

.tab-item {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    height: 100%;
    transition: var(--transition);
}

.tab-item:hover,
.tab-item.active {
    color: #fff;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--cyan);
}

.tab-counter {
    font-size: 0.6rem;
    font-family: monospace;
    background-color: rgba(124, 58, 237, 0.15);
    color: var(--purple);
    padding: 1px 4px;
    border-radius: 3px;
    margin-left: 6px;
}

/* - VIEWPORT CON SCROLL INTERNO - */
.saas-viewport-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contextual-upgrade-banner {
    background: linear-gradient(90deg, #091129 0%, #160f30 100%);
    border: 1px solid rgba(0, 149, 186, 0.1);
    padding: 20px;
    border-radius: 6px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.banner-text h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: #fff;
}

.banner-text p {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.4;
    max-width: 700px;
}

.banner-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.banner-btn:hover {
    border-color: var(--purple);
    background: rgba(124, 58, 237, 0.05);
}

/* - CUADRÍCULA DE MÉTRICAS - */
.metrics-saas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.metric-saas-card {
    background-color: #080c16;
    border: 1px solid rgba(255, 255, 255, 0.02);
    padding: 16px;
    border-radius: 6px;
}

.m-title {
    font-family: monospace;
    font-size: 0.65rem;
    color: #64748b;
    text-transform: uppercase;
}

.m-main-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 8px;
}

.m-number {
    font-size: 1.3rem;
    font-weight: 800;
    font-family: monospace;
}

.m-number small {
    font-size: 0.7rem;
    color: #64748b;
}

.m-trend {
    font-family: monospace;
    font-size: 0.65rem;
}

.m-trend.positive {
    color: var(--cyan);
}

.m-trend.stable {
    color: #64748b;
}

/* - DASHBOARD SPLIT - */
.dashboard-split-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
}

.data-block-header {
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    color: #94a3b8;
}

.technical-table {
    background-color: #080c16;
    border: 1px solid rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    overflow: hidden;
}

.table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 12px 16px;
    font-size: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.01);
    align-items: center;
}

.table-row.head {
    background-color: rgba(255, 255, 255, 0.01);
    color: #64748b;
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.t-name {
    font-weight: 600;
    color: #fff;
}

.t-status {
    font-family: monospace;
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 3px;
}

.t-status.active {
    background: rgba(16, 185, 129, 0.1);
    color: var(--cyan);
}

.t-status.draft {
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
}

.mono-text {
    font-family: monospace;
}

.mini-feed-item {
    background-color: #080c16;
    padding: 14px;
    border-radius: 6px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.01);
}

.mf-head {
    font-size: 0.7rem;
    margin-bottom: 6px;
}

.mf-head strong {
    color: #fff;
}

.mf-head span {
    color: #64748b;
}

.mini-feed-item p {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.4;
}

/* - PLAYER GLOBAL PERSISTENTE - */
.saas-global-player.beatport-style {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 72px;
    background: #04060f;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0 20px;
    display: grid;
    grid-template-columns: 260px 100px 1fr auto;
    align-items: center;
    gap: 20px;
    z-index: 100;
}

/* - DETALLES DEL TRACK - */
.player-track-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* - IMAGEN DEL TRACK - */
.track-cover {
    width: 58px;
    height: 58px;
    background: #1a1a1a;
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    overflow: hidden;
}

.track-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* - DETALLES DEL TRACK - */
.track-details {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.track-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.track-artist {
    font-size: 0.8rem;
    color: var(--cyan);
    margin-top: 1px;
}

.track-label {
    font-size: 0.7rem;
    color: #555555;
    text-transform: uppercase;
    font-weight: 600;
}

/* - DATOS TÉCNICOS DEL TRACK - */
.player-tech-data {
    display: flex;
    flex-direction: column;
    font-family: monospace;
    font-size: 0.78rem;
    line-height: 1.35;
}

.tech-time {
    color: #ffffff;
    font-weight: 700;
}

.tech-time .total-time {
    color: #666666;
}

.tech-bpm, .tech-key {
    color: var(--cyan);
}

/* - CONTENEDOR DE ONDA DE ALTA DENSIDAD - */
.player-wave-container {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 95%;
    height: 100%;
}

.beatport-waveform {
    position: relative;
    flex: 1;
    height: 30px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 2px;
    overflow: hidden;
    cursor: pointer;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 1px, #111111 1px, #111111 2px);
}

/* - ESPECTRO BASE APAGADO (Fondo de la onda) - */
.beatport-waveform::before {
    content: '';
    position: absolute;
    top: 15%;
    left: 0;
    width: 100%;
    height: 70%;
    background: rgba(0, 149, 186, 0.15);
    clip-path: inset(10% 0 10% 0 round 2px);
}

/* - PROGRESO ILUMINADO (Color activo al reproducir) - */
.wave-progress {
    position: absolute;
    top: 15%;
    left: 0;
    height: 70%;
    background: linear-gradient(180deg, #00b4d8 0%, #0077b6 100%);
    z-index: 2;
    pointer-events: none;
}

/* - LÍNEAS VERTICALES DE MARCAS DE TIEMPO - */
.wave-grid-line {
    position: absolute;
    top: 0;
    width: 1px;
    height: 100%;
    background: rgba(255, 255, 255, 0.335);
    z-index: 3;
}

.wave-add-btn {
    background: transparent;
    border: none;
    color: #444444;
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.2s;
}

.wave-add-btn:hover {
    color: var(--cyan);
}

/* - ACCIONES Y BOTONES MECÁNICOS - */
.player-actions-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* - GRUPO BOTONES - */
.buy-button-group {
    display: flex;
    border-radius: 4px;
    overflow: hidden;
}

/* - BOTÓN DE COMPRA CYAN - */
.buy-btn {
    background: var(--cyan);
    color: #ffffff;
    border: none;
    padding: 6px 12px;
    font-size: 0.7rem;
    font-weight: 300;
    font-family: monospace;
    cursor: pointer;
}

.buy-arrow {
    background: var(--cyan);
    color: #ffffff;
    border: none;
    padding: 0 6px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

/* - BOTÓN VOLUMEN, CONTROL - */
.util-icon, .volume-control, .t-btn {
    background: transparent;
    border: none;
    color: #888888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.util-icon:hover, .volume-control:hover, .t-btn:hover {
    color: var(--cyan);
}

/* - BOTÓN REPRODUCCIÓN - */
.transport-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 16px;
}

.main-play-trigger {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    color: #ffffff;
}

.main-play-trigger:hover {
    color: var(--cyan);
}

/* ========== AUDIENCIA POR ROL ========== */
.roles-section {
    padding: 120px 0 120px 24px;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.roles-section .section-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    margin-bottom: 32px;
}

.roles-carousel-viewport {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-top: 16px;
    padding-bottom: 24px;
    scrollbar-width: none;
}

.roles-carousel-viewport::-webkit-scrollbar {
    display: none;
}

/* - RIEL INTERNO - */
.roles-grid-carousel {
    display: flex;
    gap: 24px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-right: 48px;
}

/* - TARJETA INDIVIDUAL - */
.role-card {
    flex: 0 0 310px;
    scroll-snap-align: start;
    background-color: #060913;
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px 28px;
    border-radius: 8px;
    position: relative;
    transition: background-color 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    will-change: transform;
}

.role-card:hover {
    transform: translateY(-6px);
    background-color: #090d1a;
    border-color: var(--cyan);
    box-shadow: 0 12px 30px rgba(0, 149, 186, 0.15);
}

/* - BOTONES DE NAVEGACIÓN CARRUSEL - */
.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    padding-right: 24px;
}

.c-nav-btn {
    width: 44px;
    height: 44px;
    background: #080c16;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.c-nav-btn:hover {
    background: #0d1527;
    border-color: var(--cyan);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 149, 186, 0.25);
}

/* - CONTENEDOR DEL VIEWPORT DESLIZANTE - */
.roles-carousel-viewport {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 24px;
    scrollbar-width: none;
}

.roles-carousel-viewport::-webkit-scrollbar {
    display: none;
}

/* - EL RIEL INTERNO CARRUSEL - */
.roles-grid-carousel {
    display: flex;
    gap: 24px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-right: 48px;
}

/* - TARJETA ROL COMO UN CANAL DE MEZCLA INDIVIDUAL - */
.role-card {
    flex: 0 0 310px;
    scroll-snap-align: start;
    background-color: #060913;
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px 28px;
    border-radius: 8px;
    position: relative;
    transition: background-color 0.3s, border-color 0.3s, transform 0.3s;
}

.role-card:hover {
    transform: translateY(-4px);
    background-color: #090d1a;
    border-color: var(--cyan);
    box-shadow: 0 12px 30px rgba(0, 149, 186, 0.12);
}

.role-icon {
    color: var(--cyan);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.role-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #ffffff;
}

.role-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 24px;
    min-height: 81px;
    text-align: left;
    text-wrap: balance;
}

.role-tag {
    font-family: var(--font-technical, monospace);
    font-size: 0.65rem;
    color: var(--purple);
    border: 1px solid rgba(124, 58, 237, 0.2);
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(124, 58, 237, 0.04);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ========== PLANES ========== */
.saas-pricing-section {
    padding: 90px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-matrix-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    align-items: start;
}

.section-subtitle { 
    color: var(--text-muted);
    margin: 30px;
}

.pricing-card {
    background-color: #060913;
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 40px 32px;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.08);
}

/* - TARJETA DESTACADA PRO (El núcleo de conversión) - */
.pricing-card.popular {
    background-color: #090f22;
    border: 1px solid rgba(0, 149, 186, 0.35);
    box-shadow: 0 20px 40px rgba(0, 149, 186, 0.04);
}

.pricing-card.popular:hover {
    border-color: var(--cyan);
    box-shadow: 0 25px 50px rgba(0, 149, 186, 0.1);
}

.card-ribbon {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--cyan);
    color: #040712;
    font-family: var(--font-technical);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

/* - BADGE ENCABEZADOS - */
.tier-badge-v3 {
    font-family: var(--font-technical);
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.badge-purple {
    background-color: rgba(124, 58, 237, 0.1);
    color: #a78bfa;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.badge-blue {
    background-color: rgba(0, 149, 186, 0.1);
    color: #38bdf8;
    border: 1px solid rgba(0, 149, 186, 0.2);
}

.badge-cyan {
    background-color: rgba(0, 149, 186, 0.15);
    color: var(--cyan);
    border: 1px solid rgba(0, 149, 186, 0.3);
}

.pricing-card h3 {
    font-family: var(--font-branding);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.tier-desc {
    font-family: var(--font-main);
    font-size: 0.825rem;
    color: var(--text-muted);
    line-height: 1.5;
    min-height: 48px;
    text-align: left;
    text-wrap: balance;
}

/* - FILA PRECIOS - */
.tier-price-row {
    margin-top: 24px;
    display: flex;
    align-items: baseline;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: #64748b;
    margin-right: 4px;
}

.price-amount {
    font-size: 3.2rem;
    font-weight: 800;
    font-family: var(--font-technical);
    color: #fff;
    line-height: 1;
}

.price-period {
    font-size: 0.8rem;
    color: #64748b;
    margin-left: 8px;
}

.card-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.04);
    margin: 32px 0;
}

/* - LISTA BENEFICIOS - */
.tier-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.tier-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.85rem;
    line-height: 1.45;
    font-family: var(--font-main);
}

.feat-included {
    color: #e2e8f0;
}

.feat-restricted {
    color: rgba(255, 255, 255, 0.25);
}

.svg-feat-check.purple { 
    color: #a78bfa; 
}

.svg-feat-check.blue { 
    color: #38bdf8; 
}

.svg-feat-check.cyan { 
    color: var(--cyan); 
}

.svg-feat-lock {
    color: rgba(255, 255, 255, 0.2);
    margin-top: 2px;
}

/* - BOTONES TARJETAS (Planes) - */
.pricing-cta-btn {
    width: 100%;
    border: none;
    padding: 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    font-family: var(--font-main);
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-purple {
    background: transparent;
    border: 1px solid rgba(124, 58, 237, 0.3);
    color: #a78bfa;
}

.btn-outline-purple:hover {
    background: rgba(124, 58, 237, 0.08);
    border-color: #a78bfa;
}

.btn-solid-blue {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
    color: #ffffff;
}

.btn-solid-blue:hover {
    transform: scale(1.02);
    box-shadow: 0 0 25px rgba(0, 149, 186, 0.35);
}

.btn-outline-cyan {
    background: transparent;
    border: 1px solid rgba(0, 149, 186, 0.3);
    color: var(--cyan);
}

.btn-outline-cyan:hover {
    background: rgba(0, 149, 186, 0.08);
    border-color: var(--cyan);
}

/* - COMISIONES - */
.pricing-commission-note {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 3.5rem;
    padding: 14px 24px;
    background: rgba(4, 7, 18, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    font-family: var(--font-technical);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    color: var(--text-muted);
}

.pricing-commission-note .divider {
    color: rgba(255, 255, 255, 0.1);
}

.pricing-commission-note strong {
    color: #ffffff;
    font-weight: 600;
}

.pricing-commission-note .highlight-purple {
    color: #a78bfa;
}

.pricing-commission-note .highlight-blue {
    color: #38bdf8;
}

.pricing-commission-note .highlight-cyan {
    color: var(--cyan);
}

/* ========== MODAL (Waitlist) ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(4, 7, 18, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* - ESTADO ACTIVO DEL MODAL - */
.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: #060913;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 48px 40px;
    border-radius: 12px;
    max-width: 460px;
    width: 90%;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

/* - BOTÓN CERRAR - */
.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 24px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.modal-close-btn:hover {
    color: #ffffff;
}

.modal-header {
    margin-bottom: 32px;
}

.modal-label {
    font-family: var(--font-technical);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 12px;
}

/* - CLASES DINÁMICOS DE COLOR  - */
.modal-label.color-artist { color: #a78bfa; }
.modal-label.color-pro { color: #38bdf8; }
.modal-label.color-label { color: var(--cyan); }

.modal-title {
    font-family: var(--font-branding);
    font-size: 1.6rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}

.modal-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* - FORMULARIO E INPUTS - */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* - CONTENEDOR RELATIVO PARA POSICIONAR EL ICONO - */
.input-group {
    position: relative;
    width: 100%;
}

/* - EL CUADRO DE TEXTO PREMIUM - */
.modal-form input[type="email"] {
    width: 100%;
    background-color: #040712;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 16px 16px 16px 48px;
    border-radius: 6px;
    color: #ffffff;
    font-family: var(--font-technical);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* - ICONO - */
.input-group .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.25);
    pointer-events: none;
    transition: color 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-form input[type="email"]:focus {
    outline: none;
    border-color: var(--cyan);
    background-color: #060b1e;
    box-shadow: 0 0 25px rgba(0, 149, 186, 0.12), inset 0 0 10px rgba(0, 149, 186, 0.04);
}

/* - ICONO SE ENCIENDE EN CYAN CON EL BORDE - */
.modal-form input[type="email"]:focus + .input-icon,
.input-group:focus-within .input-icon {
    color: var(--cyan);
    filter: drop-shadow(0 0 4px rgba(0, 149, 186, 0.4));
}

/* - FORMATEO DEL TEXTO SUGERENCIA - */
.modal-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.2);
    font-family: var(--font-main);
    letter-spacing: 0;
}

/* - BOTÓN ENVÍO DINÁMICO - */
.modal-submit-btn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    color: #ffffff;
    background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modal-submit-btn:hover {
    transform: scale(1.01);
    box-shadow: 0 0 25px rgba(0, 149, 186, 0.3);
}

/* ========== SECCIÓN FAQs ========== */
.faqs-section {
    padding: 140px 24px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-dark);
}

.faqs-container {
    max-width: 800px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* - CONTENEDOR DEL ITEM INDIVIDUAL - */
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 20px 24px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    border-color: rgba(0, 149, 186, 0.3);
    background: rgba(255, 255, 255, 0.03);
}

.faq-item.is-active {
    border-color: rgba(0, 149, 186, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 149, 186, 0.08);
    background: rgba(0, 149, 186, 0.01);
}

.faq-question {
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 1.05rem;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    cursor: pointer;
    user-select: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:focus-visible {
    outline: none;
    color: var(--cyan);
}

/* - ICONO ITERACTIVO TÉCNICO (El signo Más) - */
.faq-question::after {
    content: '+';
    font-family: var(--font-technical);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--cyan);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
    display: inline-block;
    line-height: 1;
}

.faq-item.is-active .faq-question::after {
    transform: rotate(45deg);
    color: #a78bfa;
}

/* - CONTENEDOR DE LA RESPUESTA - */
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: 
        grid-template-rows 0.4s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.3s ease;
}

.faq-item.is-active .faq-answer {
    grid-template-rows: 1fr;
    opacity: 1;
}

/* - CONTENEDOR INTERNO - */
.faq-answer p {
    overflow: hidden;
    min-height: 0;
    padding-top: 0;
    transition: padding-top 0.4s ease, border-color 0.3s ease;
    border-top: 1px solid transparent;
}

.faq-item.is-active .faq-answer p {
    padding-top: 16px;
    margin-top: 16px;
    border-top-color: rgba(255, 255, 255, 0.04);
}

/* - ANIMACIÓN DE DESPLIEGUE ULTRA LIMPIA - */
@keyframes faqFadeElegante {
    from {
        opacity: 0;
        transform: translateY(-4px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========== FORMULARIO (Waitlist) ========== */
.waitlist-section {
    padding: 160px 24px;
    text-align: center;
    background-color: var(--bg-dark);
    max-width: 100%;
}

/* - EL CUADRO DIFERENCIADOR - */
.waitlist-container {
    max-width: 720px;
    margin: 0 auto;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 149, 186, 0.01) 100%), #070b19;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(0, 149, 186, 0.25);
    padding: 64px 48px; 
    border-radius: 12px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 0 60px rgba(0, 149, 186, 0.02);
    position: relative;
    overflow: hidden;
}

.waitlist-title {
    font-family: var(--font-branding);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.8px;
    margin-bottom: 20px;
}

.waitlist-title span {
    background: linear-gradient(90deg, var(--cyan), var(--purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.waitlist-sub {
    font-family: var(--font-main);
    color: var(--text-muted);
    font-size: 0.98rem;
    line-height: 1.6;
    margin-bottom: 40px;
    text-wrap: balance;
}

.waitlist-form {
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 6px;
    border-radius: 6px;
    max-width: 500px;
    margin: 0 auto 20px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.waitlist-form:focus-within {
    border-color: var(--cyan);
    background: #060a1a;
    box-shadow: 0 0 25px rgba(0, 149, 186, 0.15);
}

.waitlist-form input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    padding: 0 16px;
    font-family: var(--font-technical);
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    width: 100%;
}

.waitlist-form input::placeholder {
    color: rgba(255, 255, 255, 0.25);
    font-family: var(--font-main);
    letter-spacing: 0;
}

/* - BOTÓN ENTRADA MÁXIMA - */
.waitlist-form .btn-unete {
    background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-form .btn-unete:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(0, 149, 186, 0.35);
}

/* - TEXTO DE FEEDBACK REAL (BBDD) - */
.form-feedback {
    font-family: var(--font-technical);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 12px;
}

.form-feedback.success {
    color: var(--cyan);
}

.form-feedback.error {
    color: #ef4444;
}

/* ========== FOOTER DESIGN ========== */
footer {
    background-color: #030611;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding: 100px 24px 12px; 
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 64px;
}

.footer-brand {
    max-width: 360px;
}

.footer-logo {
    font-family: var(--font-branding);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-logo span {
    color: var(--cyan);
}

.footer-brand p {
    font-family: var(--font-main);
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 28px;
}

/* - CONTENEDOR META (STATUS + VERSIÓN) - */
.footer-meta-status {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.system-status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-technical);
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    background: rgba(16, 185, 129, 0.02);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 6px 14px;
    border-radius: 4px;
}

.status-dot {
    width: 6px;
    height: 6px;
    background-color: #10b981;
    border-radius: 50%;
    animation: pulseStatus 2s infinite ease-in-out;
}

.mono-text {
    color: #10b981;
    font-weight: 600;
}

.system-version {
    font-family: var(--font-technical);
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    padding-left: 4px;
}

@keyframes pulseStatus {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; box-shadow: 0 0 10px #10b981; }
}

/* - REJILLA DE ENLACES (3 COLUMNAS SIMÉTRICAS) - */
.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-col h4 {
    font-family: var(--font-main);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 700;
}

.footer-col a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 0.9rem;
    margin-bottom: 14px;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-col a:hover {
    color: var(--cyan);
    transform: translateX(2px);
}

/* - BARRA INFERIOR - */
.footer-bottom {
    width: 100%; 
    max-width: 1200px;
    margin: 0 auto;
    padding: 24px 20px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.047);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    font-family: var(--font-main);
    font-size: 0.85rem;
    color: var(--text-muted);
    box-sizing: border-box;
}

.footer-copyright {
    white-space: nowrap; 
    flex-shrink: 0;
}

.footer-copyright p {
    margin: 0;
}

.footer-socials {
    display: flex;
    gap: 16px; 
    flex-shrink: 0;
}

.social-btn {
    text-decoration: none;
    color: var(--text-muted);
    width: 32px; 
    height: 32px;
    border-radius: 4px; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.social-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.social-btn.fb:hover,
.social-btn.ig:hover {
    color: var(--cyan);
}

.social-btn:hover .social-icon {
    transform: scale(1.1);
}

/* ========== BANNER DE COOKIES (CAPA FLOTANTE AISLADA DE ULTRA ALTA DEFINICIÓN) ========== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: calc(100% - 48px);
    max-width: 800px;
    background: rgba(5, 8, 22, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(0, 149, 186, 0.4);
    border-radius: 8px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.cookie-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cookie-text {
    color: var(--text-muted);
    font-family: var(--font-main);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-text a {
    color: var(--cyan);
    text-decoration: none;
    font-weight: 600;
}

.cookie-text a:hover {
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookies-pri, .btn-cookies-sec {
    padding: 10px 20px;
    font-family: var(--font-main);
    font-size: 0.82rem;
    font-weight: 700;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-cookies-pri {
    background: var(--cyan);
    border: 1px solid var(--cyan);
    color: #040712;
}

.btn-cookies-pri:hover {
    background: transparent;
    color: var(--cyan);
    box-shadow: 0 0 15px rgba(0, 149, 186, 0.4);
}

.btn-cookies-sec {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.btn-cookies-sec:hover {
    border-color: #ef4444;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.03);
}

/* ========== MODAL (Nosotros) ========== */
.info-modal-width {
    max-width: 600px;
    width: 90%;
}

/* - CONTENEDOR DE TEXTO - */
.info-modal-body {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
    font-family: var(--font-main);
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-muted);
}

.modal-label.color-nosotros {
    color: var(--cyan);
    text-shadow: 0 0 10px rgba(0, 149, 186, 0.3);
}

.modal-label.color-contacto {
    color: var(--purple);
    text-shadow: 0 0 10px rgba(147, 51, 234, 0.3);
}

.modal-label.color-legal {
    color: var(--cyan);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
    letter-spacing: 2px;
}

/* - RESALTES INTERNOS DE TEXTO - */
/* RESALTE CYAN (Nektive) */
.brand-highlight {
    color: var(--cyan);
    font-weight: 800;
}

/* - RESALTE PÚRPURA (Contacto) - */
.brand-highlight-alt {
    color: var(--purple);
    font-weight: 800;
}

.text-glow {
    color: #ffffff;
    font-weight: 600;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.info-modal-body h4 {
    font-family: var(--font-branding);
    color: #ffffff;
    font-size: 1.1rem;
    margin: 24px 0 8px 0;
    letter-spacing: -0.3px;
}

.info-modal-body h4:first-child {
    margin-top: 0;
}

.info-modal-body::-webkit-scrollbar {
    width: 4px;
}

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

.info-modal-body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.info-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--cyan);
}

/* ========== SISTEMA RESPONSIVE UNIFICADO (Jerarquía Decresciente) ========== */
@media (max-width: 1024px) {
    /* Componentes del Dashboard / Vista SaaS */
    .nektive-saas-container {
        grid-template-columns: 70px 1fr;
        height: auto;
        min-height: auto;
    }

    .saas-sidebar {
        grid-column: 1;
    }

    .brand-text,
    .group-label,
    .nav-link span,
    .sidebar-user-footer .user-meta {
        display: none;
    }

    .sidebar-brand,
    .sidebar-user-footer,
    .nav-link {
        justify-content: center;
    }

    .metrics-saas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-split-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    /* Hero e Intro */
    .hero-title {
        font-size: 3.2rem;
        letter-spacing: -1px;
    }
    
    /* Matriz de Precios */
    .pricing-matrix-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
}

@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-brand { 
        max-width: 100%; 
    }
}

@media (max-width: 768px) {
    /* Navegación Principal */
    .nav-links {
        display: none;
    }

    /* Secciones de Texto y Manifiesto */
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .manifesto-section {
        padding: 80px 24px;
    }
    
    .manifesto-quote {
        font-size: 2rem;
        letter-spacing: -0.5px;
    }
    
    .manifesto-grid { 
        grid-template-columns: 1fr; 
        gap: 24px; 
    }
    
    .trust-indicators-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Elementos del Dashboard Interno */
    .saas-topbar {
        padding: 0 16px;
    }

    .saas-viewport-scroll {
        padding: 16px;
    }

    .metrics-saas-grid {
        grid-template-columns: 1fr;
    }

    .table-row {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .table-row div:nth-child(3),
    .table-row div:nth-child(4) {
        display: none;
    }

    /* Vistas de Footer y Cookies */
    .footer-links {
        gap: 40px;
    }

    .cookie-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .cookie-actions { 
        width: 100%; 
        justify-content: flex-end; 
    }

    .btn-cookies-pri, .btn-cookies-sec {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 600px) {
    /* Formulario e Interrupción de Waitlist */
    .waitlist-container {
        padding: 40px 20px;
        border-radius: 8px;
    }
    
    .waitlist-title {
        font-size: 2.2rem;
    }

    /* Distribución de Enlaces e Iconos en el Footer */
    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        gap: 16px;
    }

    .footer-socials {
        width: 100%;
    }

    .social-btn {
        flex: 1;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-sub {
        font-size: 1rem;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cookie-actions { 
        flex-direction: column-reverse; 
    }

    .btn-cookies-pri, .btn-cookies-sec { 
        width: 100%; 
        text-align: center; 
    }
}