/* stealthdirectory.com - Stealth Ops tactical theme */

.animate-this {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}
.animate-this.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Category rail */
.category-rail {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scrollbar-width: none;
}
.category-rail::-webkit-scrollbar { display: none; }
.category-chip {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 4px;
    border: 1px solid rgba(11,122,56,.4);
    background: transparent;
    font-family: "Space Mono", monospace;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #0B7A38;
    cursor: pointer;
    transition: all .2s ease;
    white-space: nowrap;
}
.category-chip:hover, .category-chip.active {
    border-color: #A02334;
    background: #A02334;
    color: #fff;
}

/* preloader */
.preloader-inline { display:flex; justify-content:center; padding:30px 0; }
.spin {
    width: 32px; height: 32px;
    border: 3px solid rgba(11,122,56,.2);
    border-top-color: #A02334;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Tactical corner-bracket business cards */
.businesscard {
    position: relative;
    background: #0B1210;
    border: 1px solid rgba(11,122,56,.25);
    padding: 0;
    overflow: hidden;
    transition: border-color .25s ease;
}
.businesscard:hover {
    border-color: #0B7A38;
}
.businesscard::before,
.businesscard::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border-color: #0B7A38;
    z-index: 5;
    pointer-events: none;
}
.businesscard::before {
    top: 8px; left: 8px;
    border-top: 2px solid; border-left: 2px solid;
}
.businesscard::after {
    bottom: 8px; right: 8px;
    border-bottom: 2px solid; border-right: 2px solid;
}
.businesscard img.img-fluid {
    width: 100% !important;
    object-fit: cover;
    display: block;
    background: #0B1210;
    color: transparent;
    font-size: 0;
    filter: grayscale(40%) contrast(1.05);
}
.businesscard h3 {
    font-family: "Space Mono", monospace !important;
    font-size: 17px !important;
    letter-spacing: -.01em;
}
.businesscard p {
    font-family: "Inter", sans-serif;
    font-size: 13px;
    color: rgba(244,246,243,.55) !important;
}
.businesscard-premium {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    background: #A02334;
    color: #fff;
    font-family: "Space Mono", monospace;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 3px 9px;
    border-radius: 2px;
}

/* Tabs (how it works) */
.tabs-wrapper input[type="radio"] { display: none; }
.tabs-wrapper .tab-labels { display: flex; gap: 10px; flex-wrap: wrap; }
.tabs-wrapper .tab-labels label {
    padding: 10px 18px;
    border-radius: 2px;
    border: 1px solid #064420;
    font-family: "Space Mono", monospace;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .04em;
    cursor: pointer;
    color: #064420;
    transition: all .2s ease;
}
.tabs-wrapper .tab-panel { display: none; }
#tab1:checked ~ .tab-labels label[for="tab1"],
#tab2:checked ~ .tab-labels label[for="tab2"],
#tab3:checked ~ .tab-labels label[for="tab3"] {
    background: #064420;
    color: #fff;
}
#tab1:checked ~ .tab-panels #panel1,
#tab2:checked ~ .tab-panels #panel2,
#tab3:checked ~ .tab-panels #panel3 {
    display: block;
}

/* Blog content prose */
.blog-content { font-size: 15px; line-height: 1.8; color: #0B1210; }
.blog-content p { margin-bottom: 1em; }
.blog-content img { max-width: 100%; border-radius: 4px; margin: 1em 0; }
.blog-content h2, .blog-content h3 { font-family: "Space Mono", monospace; margin: 1.2em 0 .5em; }
.blog-content ul, .blog-content ol { margin: 0 0 1em 1.4em; }
