/*
Theme Name: AIT Security Center
Theme URI: https://aitsecurity.center/
Author: AIT Web Design
Author URI: https://ait-webdesign.com/
Description: Modern WordPress theme for AIT Security Center™ Public Threat Intelligence & Firewall Intelligence Platform.
Version: 1.0.0
Text Domain: ait-security-center-theme
*/

:root{
    --asc-bg:#020617;
    --asc-bg-2:#0f172a;
    --asc-blue:#2563eb;
    --asc-blue-soft:#93c5fd;
    --asc-green:#4ade80;
    --asc-text:#0f172a;
    --asc-muted:#64748b;
    --asc-border:#e5e7eb;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
    margin:0;
    background:#f8fafc;
    color:var(--asc-text);
    font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

a{color:inherit}

.asc-page{
    min-height:100vh;
    overflow-x:hidden;
}

.asc-header{
    position:sticky;
    top:0;
    z-index:50;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(15,23,42,.08);
}

.asc-header-inner{
    max-width:1180px;
    margin:0 auto;
    padding:16px 22px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.asc-logo{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
}

.asc-logo-mark{
    width:42px;
    height:42px;
    border-radius:12px;
    background:linear-gradient(135deg,#2563eb,#020617);
    display:grid;
    place-items:center;
    color:#fff;
    font-weight:900;
    box-shadow:0 12px 30px rgba(37,99,235,.28);
}

.asc-logo-text strong{
    display:block;
    font-size:18px;
    letter-spacing:.02em;
}

.asc-logo-text span{
    display:block;
    color:var(--asc-muted);
    font-size:12px;
}

.asc-nav{
    display:flex;
    align-items:center;
    gap:20px;
    font-size:14px;
    font-weight:700;
}

.asc-nav a{
    text-decoration:none;
    color:#334155;
}

.asc-nav a:hover{
    color:#2563eb;
}

.asc-nav .asc-nav-cta{
    background:#020617;
    color:#fff;
    padding:10px 14px;
    border-radius:999px;
}

.asc-hero{
    background:
        radial-gradient(circle at top left,rgba(37,99,235,.38),transparent 32%),
        radial-gradient(circle at top right,rgba(74,222,128,.12),transparent 26%),
        linear-gradient(135deg,#020617,#0f172a 54%,#1e3a8a);
    color:#fff;
    padding:86px 22px 78px;
    position:relative;
    overflow:hidden;
}

.asc-hero:after{
    content:"";
    position:absolute;
    inset:auto -20% -40% -20%;
    height:360px;
    background:radial-gradient(circle,rgba(147,197,253,.18),transparent 62%);
    pointer-events:none;
}

.asc-hero-inner{
    max-width:1180px;
    margin:0 auto;
    position:relative;
    z-index:2;
}

.asc-badge{
    display:inline-flex;
    gap:8px;
    align-items:center;
    padding:8px 12px;
    border:1px solid rgba(255,255,255,.16);
    background:rgba(255,255,255,.08);
    color:#bfdbfe;
    text-transform:uppercase;
    letter-spacing:.14em;
    font-size:12px;
    font-weight:800;
    margin-bottom:22px;
}

.asc-badge-dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#ef4444;
    box-shadow:0 0 18px rgba(239,68,68,.9);
    animation:ascBlink 1.4s infinite;
}

@keyframes ascBlink{
    0%,100%{opacity:1}
    50%{opacity:.35}
}

.asc-hero h1{
    max-width:980px;
    margin:0 0 22px;
    font-size:clamp(38px,6vw,76px);
    line-height:1.02;
    letter-spacing:-.05em;
    font-weight:950;
}

.asc-hero h1 span{
    color:#93c5fd;
}

.asc-hero p{
    max-width:820px;
    margin:0 0 30px;
    color:#dbeafe;
    font-size:18px;
    line-height:1.7;
}

.asc-actions{
    display:flex;
    gap:14px;
    flex-wrap:wrap;
}

.asc-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:15px 20px;
    border-radius:12px;
    text-decoration:none!important;
    font-weight:900;
}

.asc-btn-primary{
    background:#2563eb;
    color:#fff!important;
    box-shadow:0 14px 36px rgba(37,99,235,.32);
}

.asc-btn-secondary{
    background:rgba(255,255,255,.1);
    color:#fff!important;
    border:1px solid rgba(255,255,255,.18);
}

.asc-trust{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:34px;
}

.asc-trust span{
    color:#cbd5e1;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.12);
    padding:9px 12px;
    font-size:13px;
}

.asc-metrics{
    max-width:1180px;
    margin:-38px auto 54px;
    padding:0 22px;
    position:relative;
    z-index:4;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
}

.asc-metric{
    background:#fff;
    border:1px solid var(--asc-border);
    padding:24px;
    box-shadow:0 18px 45px rgba(15,23,42,.12);
}

.asc-metric span{
    display:block;
    color:var(--asc-muted);
    font-size:13px;
    margin-bottom:8px;
}

.asc-metric strong{
    display:block;
    font-size:34px;
    line-height:1;
    letter-spacing:-.04em;
}

.asc-section{
    max-width:1180px;
    margin:0 auto 34px;
    padding:0 22px;
}

.asc-panel{
    background:#fff;
    border:1px solid var(--asc-border);
    padding:38px;
    box-shadow:0 12px 35px rgba(15,23,42,.06);
}

.asc-kicker{
    display:block;
    color:#2563eb;
    text-transform:uppercase;
    letter-spacing:.14em;
    font-size:12px;
    font-weight:900;
    margin-bottom:12px;
}

.asc-panel h2{
    margin:0 0 14px;
    font-size:clamp(28px,4vw,44px);
    letter-spacing:-.04em;
}

.asc-panel > p{
    color:#475569;
    max-width:820px;
    line-height:1.8;
    font-size:16px;
}

.asc-cards{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:16px;
    margin-top:28px;
}

.asc-card{
    background:#f8fafc;
    border:1px solid #e2e8f0;
    padding:22px;
}

.asc-card-icon{
    font-size:30px;
    margin-bottom:10px;
}

.asc-card h3{
    margin:0 0 10px;
    font-size:18px;
}

.asc-card p{
    margin:0;
    color:#64748b;
    line-height:1.65;
    font-size:14px;
}

.asc-live{
    max-width:1180px;
    margin:0 auto 40px;
    padding:0 22px;
}

.asc-live-head{
    background:linear-gradient(135deg,#020617,#0f172a 55%,#172554);
    color:#fff;
    padding:34px;
    border:1px solid #1e293b;
}

.asc-live-head h2{
    margin:0 0 10px;
    font-size:34px;
}

.asc-live-head p{
    color:#cbd5e1;
    margin:0;
    max-width:850px;
    line-height:1.7;
}

.asc-plugin-shell{
    background:#fff;
    border:1px solid var(--asc-border);
    border-top:0;
    padding:0;
}

.asc-plugin-shell .ait-fw-wrap{
    margin:0;
}

.asc-footer{
    background:#020617;
    color:#94a3b8;
    margin-top:60px;
}

.asc-footer-inner{
    max-width:1180px;
    margin:0 auto;
    padding:34px 22px;
    display:flex;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.asc-footer strong{
    color:#fff;
}

@media(max-width:980px){
    .asc-metrics,
    .asc-cards{
        grid-template-columns:repeat(2,1fr);
    }

    .asc-nav{
        display:none;
    }
}

@media(max-width:640px){
    .asc-header-inner{
        padding:14px 16px;
    }

    .asc-logo-text strong{
        font-size:16px;
    }

    .asc-hero{
        padding:54px 18px 58px;
    }

    .asc-hero p{
        font-size:16px;
    }

    .asc-actions{
        flex-direction:column;
    }

    .asc-btn{
        width:100%;
    }

    .asc-metrics{
        grid-template-columns:1fr;
        margin-top:-24px;
        padding:0 16px;
    }

    .asc-section,
    .asc-live{
        padding:0 16px;
    }

    .asc-panel,
    .asc-live-head{
        padding:24px;
    }

    .asc-cards{
        grid-template-columns:1fr;
    }

    .asc-live-head h2{
        font-size:26px;
    }

    .asc-footer-inner{
        display:block;
    }
}
