/**
 * File Location: /innovatorscope/assets/css/innovatorscope.css
 * Institutional Governance: Electric Purple Glassmorphism Theme
 * Authority: Victor Mallick | CreativeFolk Foundation
 */

:root {
    --is-purple: #9D00FF;
    --is-cyan: #00F0FF;
    --is-gold: #F3A92A;
    --is-bg: #04010A;
    --is-card-bg: rgba(18, 6, 32, 0.75);
    --is-border-glow: rgba(157, 0, 255, 0.25);
}

body {
    background-color: var(--is-bg) !important;
    color: #ffffff;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    overflow-x: hidden;
    padding-top: 70px;
}

.electric-purple { color: var(--is-purple) !important; }
.cyber-cyan { color: var(--is-cyan) !important; }
.gold-text { color: var(--is-gold) !important; }
.bg-purple { background-color: var(--is-purple) !important; }
.bg-cyan { background-color: var(--is-cyan) !important; }

/* NAVBAR */
.is-navbar {
    background: rgba(4, 1, 10, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(157, 0, 255, 0.2);
    height: 65px;
    display: flex;
    align-items: center;
}
.brand-text {
    font-weight: 900;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #fff;
}

/* GAMIFIED CARDS */
.innovator-card {
    background: var(--is-card-bg);
    border: 1px solid rgba(157, 0, 255, 0.2);
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    user-select: none;
}
.innovator-card:hover, .innovator-card.active {
    border-color: var(--is-purple) !important;
    background: rgba(157, 0, 255, 0.12) !important;
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(157, 0, 255, 0.3);
}

/* BUTTONS */
.btn-innovator {
    background: linear-gradient(135deg, #9D00FF 0%, #00F0FF 100%);
    color: #000;
    font-weight: 900;
    border: none;
    border-radius: 50px;
    transition: 0.3s;
}
.btn-innovator:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(157, 0, 255, 0.4);
    color: #000;
}

/* UTILITY CLASSES */
.xx-small { font-size: 0.72rem; }
.tracking-widest { letter-spacing: 2px; }
.tracking-wider { letter-spacing: 1px; }