/* Elevenified Shared Component Tokens */
/* Depends on: colors.css (for variables like --neon-volt, --text-main) */

/* --- Buttons: "Kinetic Industrial Pill" --- */

/* Primary: Neon Volt (Action) */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;

    background: var(--neon-volt, #39FF14);
    color: #000;
    box-shadow: 0 0 20px rgba(57, 255, 20, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 35px rgba(57, 255, 20, 0.6);
    background: #2ECC40;
}

/* Secondary: Ghost (Inspect) */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-main, #E8E8E8);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* Nav Button: Mini Ghost (Navigation) */
.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;

    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-main, #E8E8E8);
}

.btn-nav:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
}

/* ============================================
   CARDS: "Industrial Neumorphism"
   ============================================ */

/* Base Industrial Card */
.card-industrial {
    background: var(--bg-rubber, #25282D);
    border: 1px solid var(--shadow-highlight, rgba(255, 255, 255, 0.1));
    border-radius: 16px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.card-industrial:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Premium variant with thicker border */
.card-industrial.card-premium {
    border-width: 2px;
    border-color: #3A3E45;
    /* Industrial Grey */
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Color accent variants (top border) */
.card-industrial[data-accent="gold"] {
    border-top: 3px solid var(--synergy-gold, #FFD700);
}

.card-industrial[data-accent="blue"] {
    border-top: 3px solid var(--synergy-blue, #00C9FF);
}

.card-industrial[data-accent="green"] {
    border-top: 3px solid var(--neon-volt, #39FF14);
}

.card-industrial[data-accent="red"] {
    border-top: 3px solid var(--industrial-red, #FF3333);
}

/* ============================================
   BADGES: "Status Pill"
   ============================================ */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Size variants */
.badge-sm {
    padding: 4px 12px;
    font-size: 0.7rem;
}

.badge-lg {
    padding: 8px 20px;
    font-size: 1rem;
}

/* Color variants */
.badge-volt {
    color: var(--neon-volt, #39FF14);
    background: rgba(57, 255, 20, 0.1);
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.badge-gold {
    color: var(--synergy-gold, #FFD700);
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.badge-blue {
    color: var(--synergy-blue, #00C9FF);
    background: rgba(0, 201, 255, 0.1);
    border: 1px solid rgba(0, 201, 255, 0.3);
}

.badge-red {
    color: var(--industrial-red, #FF3333);
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.3);
}

/* Pulse dot for live status badges */
.badge .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 currentColor;
        opacity: 1;
    }

    70% {
        box-shadow: 0 0 0 8px transparent;
        opacity: 0.7;
    }

    100% {
        box-shadow: 0 0 0 0 transparent;
        opacity: 1;
    }
}

/* ============================================
   ICON BOX: "Glass Container"
   ============================================ */

.icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 1.5rem;
}

/* Size variants */
.icon-box-sm {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
}

.icon-box-md {
    width: 48px;
    height: 48px;
    font-size: 1.5rem;
}

.icon-box-lg {
    width: 64px;
    height: 64px;
    font-size: 2rem;
    border-radius: 16px;
}

/* Shape variants */
.icon-box-circle {
    border-radius: 50%;
}

/* Color variants */
.icon-box[data-color="gold"] {
    background: rgba(255, 215, 0, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
}

.icon-box[data-color="blue"] {
    background: rgba(0, 201, 255, 0.1);
    border-color: rgba(0, 201, 255, 0.3);
}

.icon-box[data-color="green"] {
    background: rgba(57, 255, 20, 0.1);
    border-color: rgba(57, 255, 20, 0.3);
}

.icon-box[data-color="red"] {
    background: rgba(255, 51, 51, 0.1);
    border-color: rgba(255, 51, 51, 0.3);
}