/* SENTINEL OT - Components (Buttons, Badges) */

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 9999px;
    min-height: 44px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--color-text-primary);
    color: var(--color-bg-dark);
    box-shadow: 0 4px 14px 0 rgba(255, 255, 255, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.6);
    background: #ffffff;
}

.btn--outline {
    border: 1px solid var(--color-border);
    color: var(--color-text-primary);
    background: transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.btn--outline:hover {
    border-color: rgba(167, 139, 250, 0.5);
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 8px 25px rgba(167, 139, 250, 0.15);
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* Badges */
.hero__badge {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    z-index: -1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    padding-top: 1rem;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-top: none;
    border-radius: 0 0 24px 24px;
    backdrop-filter: blur(25px) saturate(150%);
    -webkit-backdrop-filter: blur(25px) saturate(150%);
    color: var(--color-accent);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 -1px 0 rgba(255, 255, 255, 0.05);
    will-change: opacity, transform, filter;
}

.hero__badge:hover {
    background: rgba(20, 20, 20, 0.95);
    border-color: rgba(167, 139, 250, 0.3);
    color: #fff;
    padding-bottom: 1rem;
    box-shadow: 0 15px 40px rgba(167, 139, 250, 0.2);
}

.hero__badge.fade-out {
    opacity: 0 !important;
    pointer-events: none;
    transform: translate(-50%, -10px) scale(0.9);
    filter: blur(8px);
}

.card__badge {
    position: absolute;
    top: -1px;
    right: 2rem;
    background: var(--color-text-primary);
    color: var(--color-bg-dark);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.4rem 0.8rem;
    border-radius: 0 0 8px 8px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-family: var(--font-mono);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}
