*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
html, body{
    overflow-x:hidden;
    width:100%;
}
body{
    font-family:'Inter',sans-serif;
    background:#081120;
    color:white;
}

/* SIDEBAR */

.sidebar{
    width:280px;
    height:100vh;
    background:#0d1728;
    border-right:1px solid rgba(255,255,255,0.08);
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:35px 25px;
    position:fixed;
}

.logo h2{
    font-size:26px;
    font-weight:700;
}

.menu{
    margin-top:50px;
    display:flex;
    flex-direction:column;
    gap:12px;
}

.menu a{
    color:#94a3b8;
    text-decoration:none;
    padding:16px;
    border-radius:14px;
    transition:0.25s;
    font-weight:500;
}

.menu a:hover{
    background:#14243d;
    color:white;
}

.menu .active{
    background:linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    color:white;
}

.logout-btn{
    text-decoration:none;
    background:#ef4444;
    color:white;
    text-align:center;
    padding:14px;
    border-radius:14px;
    font-weight:600;
}

/* MAIN */

.main-content{
    margin-left:280px;
    width:calc(100% - 280px);
    min-height:100vh;
    padding:40px;
    display:block;
    overflow-x:hidden;
}

.topbar h1{
    font-size:36px;
    font-weight:700;
}

.topbar p{
    color:#94a3b8;
}

.profile{
    background:#0d1728;
    border:1px solid rgba(255,255,255,0.08);
    padding:12px 18px;
    border-radius:20px;
    display:flex;
    align-items:center;
    gap:15px;
}

.profile img{
    width:55px;
    height:55px;
    border-radius:50%;
}

.profile span{
    color:#94a3b8;
    font-size:14px;
}

/* HERO */

.hero-card{
    margin-top:35px;
    background:linear-gradient(
        135deg,
        #0f1e35,
        #172b49
    );

    border-radius:28px;
    padding:45px;
    border:1px solid rgba(255,255,255,0.08);
}

.security-tag{
    background:#1e3a8a;
    padding:10px 18px;
    border-radius:999px;
    font-size:13px;
    display:inline-block;
}

.hero-card h2{
    margin-top:25px;
    font-size:30px;
}

.hero-card h1{
    font-size:75px;
    color:#60a5fa;
    margin:15px 0;
}

.hero-card p{
    color:#94a3b8;
}

/* STATS */

.stats-grid{
    margin-top:30px;
    display:grid;
    grid-template-columns:
    repeat(3,1fr);
    gap:20px;
}

.card{
    background:#0d1728;
    border-radius:24px;
    padding:30px;
    border:1px solid rgba(255,255,255,0.08);
}

.card h4{
    color:#94a3b8;
}

.card h1{
    margin-top:15px;
    font-size:42px;
}

/* CONTENT */

.content-grid{
    margin-top:30px;
    display:grid;
    grid-template-columns:
    minmax(0,2fr)
    minmax(280px,1fr);
    gap:20px;
}

.large-card,
.small-card{
    background:#0d1728;
    border-radius:24px;
    padding:30px;
    border:1px solid rgba(255,255,255,0.08);
}

.threat-item{
    margin-top:25px;
    background:#111d31;
    border-radius:18px;
    padding:20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.threat-item p{
    color:#94a3b8;
    margin-top:6px;
}

.danger{
    background:#7f1d1d;
    color:#fca5a5;
    padding:10px 14px;
    border-radius:999px;
}

.warning{
    background:#78350f;
    color:#facc15;
    padding:10px 14px;
    border-radius:999px;
}

.intel-item{
    margin-top:20px;
    background:#111d31;
    padding:18px;
    border-radius:16px;
    color:#cbd5e1;
}
/* LANDING PAGE */

.landing-body{
    background:#081120;
    color:white;
    font-family:'Inter',sans-serif;
}

.navbar{
    width:100%;
    padding:30px 80px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    background:rgba(8,17,32,0.85);
    backdrop-filter:blur(12px);
    z-index:100;
}

.nav-links{
    display:flex;
    gap:30px;
    align-items:center;
}

.nav-links a{
    text-decoration:none;
    color:#cbd5e1;
}

.login-btn{
    background:#2563eb;
    color:white !important;
    padding:12px 20px;
    border-radius:12px;
}

.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:90px 80px;
    min-height:90vh;
}

.hero-left{
    max-width:650px;
}

.hero-badge{
    background:#1e3a8a;
    display:inline-block;
    padding:12px 18px;
    border-radius:999px;
    margin-bottom:25px;
}

.hero h1{
    font-size:72px;
    line-height:1.1;
}

.hero p{
    margin-top:25px;
    font-size:20px;
    color:#94a3b8;
    line-height:1.8;
}

.primary-btn{
    display:inline-block;
    margin-top:35px;
    background:linear-gradient(
        135deg,
        #2563eb,
        #3b82f6
    );

    color:white;
    padding:18px 34px;
    border-radius:18px;
    text-decoration:none;
    font-weight:600;
}

.dashboard-preview{
    background:#0d1728;
    border-radius:28px;
    padding:35px;
    width:420px;
    border:1px solid rgba(255,255,255,0.08);
}

.dashboard-preview h3{
    margin-bottom:25px;
}

.mini-alert{
    display:flex;
    justify-content:space-between;
    margin-top:18px;
    background:#111d31;
    padding:18px;
    border-radius:18px;
}

.high span{
    color:#ef4444;
}

.medium span{
    color:#f59e0b;
}

.features,
.how-section{
    padding:100px 80px;
}

.features h2,
.how-section h2{
    text-align:center;
    font-size:44px;
    margin-bottom:60px;
}

.feature-grid{
    display:grid;
    grid-template-columns:
    repeat(4,1fr);
    gap:25px;
}

.feature-card{
    background:#0d1728;
    border-radius:24px;
    padding:35px;
    border:1px solid rgba(255,255,255,0.08);
}

.feature-card h3{
    margin-bottom:18px;
}

.feature-card p{
    color:#94a3b8;
    line-height:1.8;
}

.steps{
    display:flex;
    justify-content:center;
    gap:30px;
}

.step{
    width:320px;
    text-align:center;
}

.step-number{
    width:70px;
    height:70px;
    background:#2563eb;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto;
    margin-bottom:20px;
    font-size:24px;
    font-weight:bold;
}

.stats-section{
    display:flex;
    justify-content:space-evenly;
    padding:90px 80px;
}

.big-stat{
    text-align:center;
}

.big-stat h1{
    font-size:70px;
    color:#60a5fa;
}

.cta-section{
    text-align:center;
    padding:120px 40px;
}
.large-card,
.small-card,
.card,
.hero-card,
.profile{
    min-width:0;
}
/* ============================= */
/* PREMIUM FINSHIELD LANDING PAGE */
/* ============================= */

.premium-landing {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.24), transparent 34%),
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.16), transparent 34%),
        linear-gradient(135deg, #050914 0%, #081120 45%, #0d1728 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
}

.background-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(to bottom, black, transparent 80%);
    pointer-events: none;
}

.background-glow {
    position: fixed;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    filter: blur(95px);
    opacity: 0.45;
    pointer-events: none;
}

.glow-one {
    background: #2563eb;
    top: 120px;
    left: -120px;
}

.glow-two {
    background: #06b6d4;
    right: -120px;
    top: 260px;
}

.premium-nav {
    width: min(1180px, calc(100% - 40px));
    margin: 22px auto 0;
    padding: 16px 18px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(8, 17, 32, 0.7);
    backdrop-filter: blur(18px);
    border-radius: 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 18px;
    z-index: 50;
    box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    font-weight: 800;
    font-size: 18px;
}

.brand-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.45);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.25s ease;
}

.nav-menu a:hover {
    color: white;
}

.nav-cta {
    color: white;
    text-decoration: none;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 12px 18px;
    border-radius: 14px;
    font-weight: 700;
    transition: 0.25s ease;
}

.nav-cta:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

.premium-hero {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 110px 0 90px;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 70px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-copy h1 {
    margin-top: 22px;
    font-size: clamp(46px, 7vw, 82px);
    line-height: 0.98;
    letter-spacing: -4px;
    font-weight: 900;
    max-width: 760px;
}

.hero-subtitle {
    margin-top: 28px;
    color: #a7b4c8;
    font-size: 19px;
    line-height: 1.8;
    max-width: 670px;
}

.hero-pill {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #bfdbfe;
    background: rgba(37, 99, 235, 0.14);
    border: 1px solid rgba(96, 165, 250, 0.25);
    padding: 11px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.pulse-dot {
    width: 9px;
    height: 9px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(34, 197, 94, 0.7);
    animation: pulseGlow 1.6s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.hero-actions {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.google-login-btn {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #081120;
    background: white;
    padding: 17px 24px;
    border-radius: 18px;
    font-weight: 800;
    font-size: 16px;
    box-shadow: 0 20px 60px rgba(255,255,255,0.16);
    transition: 0.25s ease;
}

.google-login-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 80px rgba(59,130,246,0.3);
}

.google-icon {
    width: 26px;
    height: 26px;
    display: inline-flex;
}

.google-icon svg {
    width: 100%;
    height: 100%;
}

.trust-note {
    color: #94a3b8;
    font-size: 14px;
}

.hero-metrics {
    margin-top: 46px;
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.hero-metrics div {
    min-width: 145px;
    padding: 20px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 20px;
}

.hero-metrics strong {
    display: block;
    font-size: 26px;
    color: white;
}

.hero-metrics span {
    display: block;
    margin-top: 6px;
    color: #94a3b8;
    font-size: 13px;
}

.hero-visual {
    position: relative;
}

.scanner-card {
    position: relative;
    background:
        linear-gradient(180deg, rgba(15, 30, 53, 0.98), rgba(8, 17, 32, 0.98));
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 34px;
    padding: 30px;
    box-shadow:
        0 40px 120px rgba(0,0,0,0.45),
        inset 0 1px 0 rgba(255,255,255,0.08);
    overflow: hidden;
}

.scanner-card::before {
    content: "";
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(37,99,235,0.45), transparent, rgba(14,165,233,0.35));
    opacity: 0.32;
    z-index: -1;
}

.scanner-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.scanner-header p {
    color: #94a3b8;
    font-size: 14px;
}

.scanner-header h3 {
    margin-top: 6px;
    font-size: 26px;
}

.scanner-status {
    color: #86efac;
    background: rgba(34,197,94,0.12);
    border: 1px solid rgba(34,197,94,0.25);
    padding: 9px 13px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
}

.scan-ring {
    width: 240px;
    height: 240px;
    margin: 38px auto;
    position: relative;
    display: grid;
    place-items: center;
}

.ring-orbit {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        conic-gradient(from 0deg, #22c55e, #38bdf8, #2563eb, #22c55e);
    animation: rotateRing 5s linear infinite;
}

.ring-orbit::after {
    content: "";
    position: absolute;
    inset: 14px;
    background: #0d1728;
    border-radius: 50%;
}

@keyframes rotateRing {
    to {
        transform: rotate(360deg);
    }
}

.ring-core {
    width: 150px;
    height: 150px;
    position: relative;
    z-index: 2;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    display: grid;
    place-items: center;
    text-align: center;
}

.ring-core span {
    display: block;
    font-size: 44px;
    font-weight: 900;
    color: #60a5fa;
}

.ring-core small {
    display: block;
    margin-top: -28px;
    color: #94a3b8;
    font-weight: 700;
}

.threat-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.threat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 17px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 18px;
}

.threat-row strong {
    display: block;
    font-size: 15px;
}

.threat-row span {
    display: block;
    margin-top: 5px;
    color: #94a3b8;
    font-size: 13px;
}

.threat-row b {
    font-size: 16px;
}

.high-risk b {
    color: #f87171;
}

.medium-risk b {
    color: #facc15;
}

.safe-risk b {
    color: #86efac;
}

.floating-badge {
    position: absolute;
    padding: 14px 18px;
    background: rgba(15, 23, 42, 0.84);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(16px);
    border-radius: 18px;
    color: white;
    font-weight: 800;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.badge-top {
    top: -52px;
    left: 24px;
    animation: floatOne 4s ease-in-out infinite;
}

.badge-bottom {
    right: 24px;
    bottom: -54px;
    animation: floatTwo 4.6s ease-in-out infinite;
}

@keyframes floatOne {
    50% {
        transform: translateY(-12px);
    }
}

@keyframes floatTwo {
    50% {
        transform: translateY(12px);
    }
}

.premium-section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 90px 0;
    position: relative;
    z-index: 2;
}

.section-heading {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
}

.section-heading span,
.security-panel span {
    color: #60a5fa;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
}

.section-heading h2,
.security-panel h2 {
    margin-top: 14px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.05;
    letter-spacing: -2px;
}

.premium-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.premium-feature-card {
    padding: 30px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 26px;
    transition: 0.25s ease;
}

.premium-feature-card:hover {
    transform: translateY(-8px);
    background: rgba(255,255,255,0.08);
    border-color: rgba(96,165,250,0.35);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, rgba(37,99,235,0.34), rgba(56,189,248,0.18));
    border-radius: 18px;
    font-size: 26px;
}

.premium-feature-card h3 {
    margin-top: 22px;
    font-size: 20px;
}

.premium-feature-card p {
    margin-top: 13px;
    color: #94a3b8;
    line-height: 1.7;
    font-size: 15px;
}

.how-premium {
    padding-top: 40px;
}

.timeline {
    display: grid;
    grid-template-columns: 1fr 90px 1fr 90px 1fr;
    align-items: center;
    gap: 0;
}

.timeline-step {
    padding: 30px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 26px;
    text-align: center;
}

.step-bubble {
    width: 58px;
    height: 58px;
    margin: 0 auto 20px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    border-radius: 50%;
    font-weight: 900;
    font-size: 22px;
}

.timeline-step p {
    margin-top: 10px;
    color: #94a3b8;
    line-height: 1.6;
}

.timeline-line {
    height: 2px;
    background: linear-gradient(90deg, transparent, #2563eb, transparent);
}

.security-panel {
    width: min(1180px, calc(100% - 40px));
    margin: 40px auto 90px;
    padding: 45px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    background:
        linear-gradient(135deg, rgba(37,99,235,0.22), rgba(8,17,32,0.92));
    border: 1px solid rgba(255,255,255,0.11);
    border-radius: 34px;
    box-shadow: 0 40px 110px rgba(0,0,0,0.35);
}

.security-panel p {
    margin-top: 18px;
    color: #a7b4c8;
    max-width: 690px;
    line-height: 1.8;
    font-size: 17px;
}

.security-btn {
    flex-shrink: 0;
    color: white;
    text-decoration: none;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    padding: 17px 24px;
    border-radius: 18px;
    font-weight: 900;
    box-shadow: 0 18px 55px rgba(37,99,235,0.35);
    transition: 0.25s ease;
}

.security-btn:hover {
    transform: translateY(-3px);
}

@media (max-width: 980px) {
    .premium-nav {
        width: calc(100% - 26px);
    }

    .nav-menu {
        display: none;
    }

    .premium-hero {
        grid-template-columns: 1fr;
        padding-top: 70px;
        gap: 50px;
    }

    .hero-copy h1 {
        letter-spacing: -2px;
    }

    .premium-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .timeline-line {
        display: none;
    }

    .security-panel {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 620px) {
    .premium-nav {
        top: 10px;
        margin-top: 10px;
    }

    .nav-cta {
        display: none;
    }

    .premium-hero,
    .premium-section,
    .security-panel {
        width: calc(100% - 24px);
    }

    .premium-hero {
        padding-top: 55px;
    }

    .hero-copy h1 {
        font-size: 45px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

    .hero-metrics {
        display: grid;
        grid-template-columns: 1fr;
    }

    .scanner-card {
        padding: 22px;
        border-radius: 26px;
    }

    .scan-ring {
        width: 200px;
        height: 200px;
    }

    .ring-core {
        width: 125px;
        height: 125px;
    }

    .ring-core span {
        font-size: 36px;
    }

    .floating-badge {
        display: none;
    }

    .premium-feature-grid {
        grid-template-columns: 1fr;
    }

    .security-panel {
        padding: 28px;
    }
}
.report-content {
    margin-top: 24px;
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 16px;
}

.report-content h1,
.report-content h2,
.report-content h3 {
    color: #ffffff;
    margin-top: 28px;
    margin-bottom: 14px;
    line-height: 1.25;
}

.report-content h1 {
    font-size: 32px;
}

.report-content h2 {
    font-size: 26px;
}

.report-content h3 {
    font-size: 21px;
}

.report-content p {
    margin: 14px 0;
}

.report-content strong {
    color: #ffffff;
    font-weight: 800;
}

.report-content code {
    background: rgba(96, 165, 250, 0.12);
    color: #93c5fd;
    padding: 3px 7px;
    border-radius: 7px;
    font-size: 14px;
}

.report-content ul,
.report-content ol {
    margin: 14px 0 14px 24px;
}

.report-content li {
    margin: 10px 0;
}

.report-content blockquote {
    border-left: 4px solid #3b82f6;
    padding-left: 16px;
    color: #94a3b8;
}
/* =============================== */
/* FINSHIELD PREMIUM DASHBOARD     */
/* =============================== */

.fs-dashboard-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.22), transparent 36%),
        radial-gradient(circle at top right, rgba(14, 165, 233, 0.16), transparent 34%),
        linear-gradient(135deg, #050914 0%, #081120 45%, #0d1728 100%);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    position: relative;
}

.fs-bg-grid {
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black, transparent 82%);
    pointer-events: none;
}

.fs-glow {
    position: fixed;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.45;
    pointer-events: none;
}

.fs-glow-one {
    top: 140px;
    left: -150px;
    background: #2563eb;
}

.fs-glow-two {
    top: 360px;
    right: -160px;
    background: #06b6d4;
}

.fs-sidebar {
    width: 292px;
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(5, 9, 20, 0.78);
    backdrop-filter: blur(22px);
    border-right: 1px solid rgba(255,255,255,0.08);
    z-index: 10;
}

.fs-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: white;
}

.fs-brand-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    box-shadow: 0 16px 45px rgba(37, 99, 235, 0.4);
    font-size: 24px;
}

.fs-brand h2 {
    font-size: 20px;
    line-height: 1;
}

.fs-brand span {
    display: block;
    margin-top: 7px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 600;
}

.fs-nav {
    margin-top: 42px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fs-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    text-decoration: none;
    padding: 15px 16px;
    border-radius: 16px;
    font-weight: 700;
    transition: 0.24s ease;
}

.fs-nav a:hover {
    color: white;
    background: rgba(255,255,255,0.055);
}

.fs-nav a.active {
    color: white;
    background:
        linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(56, 189, 248, 0.75));
    box-shadow: 0 18px 45px rgba(37, 99, 235, 0.28);
}

.fs-sidebar-bottom {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fs-mini-status {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.08);
}

.fs-status-dot {
    width: 11px;
    height: 11px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 8px rgba(34,197,94,0.12);
}

.fs-mini-status strong {
    display: block;
    font-size: 14px;
}

.fs-mini-status span {
    color: #94a3b8;
    font-size: 12px;
}

.fs-logout {
    text-decoration: none;
    text-align: center;
    color: white;
    background: rgba(239, 68, 68, 0.16);
    border: 1px solid rgba(239, 68, 68, 0.32);
    padding: 15px;
    border-radius: 16px;
    font-weight: 800;
    transition: 0.24s ease;
}

.fs-logout:hover {
    background: #ef4444;
}

.fs-main {
    position: relative;
    z-index: 2;
    margin-left: 292px;
    padding: 36px;
    min-height: 100vh;
}

.fs-topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.fs-eyebrow {
    color: #60a5fa;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    font-weight: 900;
}

.fs-topbar h1 {
    margin-top: 8px;
    font-size: clamp(34px, 5vw, 52px);
    line-height: 1.04;
    letter-spacing: -2.5px;
}

.fs-muted {
    margin-top: 14px;
    max-width: 760px;
    color: #94a3b8;
    line-height: 1.7;
    font-size: 16px;
}

.fs-profile-card {
    min-width: 260px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 22px;
    box-shadow: 0 22px 70px rgba(0,0,0,0.26);
}

.fs-profile-card img {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    object-fit: cover;
}

.fs-profile-card strong {
    display: block;
    font-size: 14px;
}

.fs-profile-card span {
    display: block;
    margin-top: 5px;
    color: #94a3b8;
    font-size: 12px;
    word-break: break-all;
}

.fs-hero-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, 0.8fr);
    gap: 22px;
}

.fs-command-card,
.fs-risk-card,
.fs-panel,
.fs-stat-card,
.fs-analytics-card {
    background: rgba(255,255,255,0.055);
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow:
        0 28px 85px rgba(0,0,0,0.28),
        inset 0 1px 0 rgba(255,255,255,0.05);
    backdrop-filter: blur(18px);
}

.fs-command-card {
    border-radius: 32px;
    padding: 34px;
    overflow: hidden;
    position: relative;
}

.fs-command-card::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: rgba(37,99,235,0.22);
    filter: blur(80px);
    right: -80px;
    top: -80px;
}

.fs-command-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 28px;
}

.fs-pill {
    display: inline-flex;
    color: #bfdbfe;
    background: rgba(37,99,235,0.16);
    border: 1px solid rgba(96,165,250,0.25);
    padding: 9px 13px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 13px;
}

.fs-command-card h2 {
    margin-top: 20px;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.05;
    letter-spacing: -1.6px;
}

.fs-command-card p {
    margin-top: 16px;
    color: #a7b4c8;
    line-height: 1.75;
    max-width: 680px;
}

.fs-shield-orb {
    width: 150px;
    height: 150px;
    position: relative;
    flex-shrink: 0;
    display: grid;
    place-items: center;
}

.fs-orb-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #22c55e, #38bdf8, #2563eb, #22c55e);
    animation: fsRotate 5s linear infinite;
}

.fs-orb-ring::after {
    content: "";
    position: absolute;
    inset: 11px;
    border-radius: 50%;
    background: #0d1728;
}

.fs-orb-core {
    position: relative;
    z-index: 2;
    width: 96px;
    height: 96px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    font-size: 42px;
}

@keyframes fsRotate {
    to {
        transform: rotate(360deg);
    }
}

.fs-command-actions {
    margin-top: 30px;
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.fs-primary-action,
.fs-secondary-action,
.fs-full-action {
    text-decoration: none;
    border-radius: 16px;
    font-weight: 900;
    transition: 0.24s ease;
}

.fs-primary-action {
    color: white;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    padding: 15px 22px;
    box-shadow: 0 18px 48px rgba(37,99,235,0.32);
}

.fs-secondary-action {
    color: white;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 15px 22px;
}

.fs-primary-action:hover,
.fs-secondary-action:hover,
.fs-full-action:hover {
    transform: translateY(-3px);
}

.fs-risk-card {
    border-radius: 32px;
    padding: 28px;
}

.fs-risk-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fs-risk-header span {
    color: #94a3b8;
    font-weight: 800;
}

.fs-safe-text {
    color: #86efac;
}

.fs-info-text {
    color: #93c5fd;
}

.fs-warning-text {
    color: #facc15;
}

.fs-danger-text {
    color: #f87171;
}

.fs-risk-score {
    margin-top: 36px;
    font-size: 78px;
    line-height: 0.9;
    font-weight: 900;
    letter-spacing: -4px;
    color: #60a5fa;
}

.fs-risk-score small {
    font-size: 32px;
}

.fs-risk-bar {
    margin-top: 28px;
    height: 13px;
    background: rgba(255,255,255,0.08);
    border-radius: 999px;
    overflow: hidden;
}

.fs-risk-bar-fill {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #22c55e, #38bdf8, #2563eb);
}

.fs-risk-card p {
    margin-top: 18px;
    color: #94a3b8;
    line-height: 1.7;
}

.fs-stats-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.fs-stat-card {
    border-radius: 24px;
    padding: 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.fs-stat-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 17px;
    font-size: 22px;
    flex-shrink: 0;
}

.fs-stat-icon.blue {
    background: rgba(37,99,235,0.18);
}

.fs-stat-icon.red {
    background: rgba(239,68,68,0.18);
}

.fs-stat-icon.orange {
    background: rgba(245,158,11,0.18);
}

.fs-stat-icon.purple {
    background: rgba(168,85,247,0.18);
}

.fs-stat-icon.green {
    background: rgba(34,197,94,0.18);
}

.fs-stat-card span {
    display: block;
    color: #94a3b8;
    font-size: 13px;
    font-weight: 800;
}

.fs-stat-card h3 {
    margin-top: 8px;
    font-size: 28px;
    letter-spacing: -1px;
    overflow-wrap: anywhere;
}

.fs-content-grid {
    margin-top: 22px;
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.75fr);
    gap: 22px;
}

.fs-panel {
    border-radius: 28px;
    padding: 28px;
}

.fs-panel-header {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: flex-start;
    margin-bottom: 22px;
}

.fs-panel-header h2 {
    margin-top: 7px;
    font-size: 26px;
    letter-spacing: -1px;
}

.fs-panel-badge {
    color: #bfdbfe;
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(96,165,250,0.22);
    padding: 9px 13px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 900;
}

.fs-threat-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.fs-threat-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(8, 17, 32, 0.72);
    border: 1px solid rgba(255,255,255,0.075);
    transition: 0.24s ease;
}

.fs-threat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(96,165,250,0.22);
    background: rgba(15, 30, 53, 0.78);
}

.fs-threat-main {
    display: flex;
    gap: 16px;
    min-width: 0;
}

.fs-threat-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,0.06);
    border-radius: 16px;
    flex-shrink: 0;
    font-size: 21px;
}

.fs-threat-card h3 {
    font-size: 18px;
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.fs-threat-card p {
    margin-top: 8px;
    color: #94a3b8;
    line-height: 1.65;
}

.fs-threat-meta {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fs-threat-meta span {
    color: #cbd5e1;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 7px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.fs-risk-chip-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    flex-shrink: 0;
}

.fs-risk-chip {
    padding: 8px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.fs-risk-chip.high {
    color: #fecaca;
    background: rgba(239,68,68,0.16);
    border: 1px solid rgba(239,68,68,0.26);
}

.fs-risk-chip.medium {
    color: #fde68a;
    background: rgba(245,158,11,0.16);
    border: 1px solid rgba(245,158,11,0.26);
}

.fs-risk-chip.low {
    color: #bbf7d0;
    background: rgba(34,197,94,0.14);
    border: 1px solid rgba(34,197,94,0.24);
}

.fs-risk-chip-wrap strong {
    font-size: 26px;
    color: white;
}

.fs-empty-state {
    padding: 70px 24px;
    text-align: center;
    border-radius: 24px;
    background: rgba(8,17,32,0.48);
    border: 1px dashed rgba(255,255,255,0.12);
}

.fs-empty-state div {
    font-size: 52px;
}

.fs-empty-state h3 {
    margin-top: 18px;
    font-size: 24px;
}

.fs-empty-state p {
    margin: 12px auto 0;
    max-width: 460px;
    color: #94a3b8;
    line-height: 1.7;
}

.fs-side-stack {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.fs-agent-panel p,
.fs-health-panel p {
    color: #94a3b8;
    line-height: 1.7;
}

.fs-full-action {
    margin-top: 22px;
    display: block;
    text-align: center;
    color: white;
    padding: 15px 18px;
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    box-shadow: 0 18px 48px rgba(37,99,235,0.26);
}

.fs-intel-feed {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.fs-intel-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 15px;
    border-radius: 18px;
    background: rgba(8,17,32,0.58);
    border: 1px solid rgba(255,255,255,0.065);
}

.fs-intel-item p {
    color: #cbd5e1;
    line-height: 1.55;
}

.fs-health-panel h2 {
    margin-top: 10px;
    font-size: 42px;
    color: #60a5fa;
    letter-spacing: -1px;
}

.fs-analytics {
    margin-top: 22px;
}

.fs-analytics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.fs-analytics-card {
    border-radius: 22px;
    padding: 22px;
}

.fs-analytics-card span {
    color: #94a3b8;
    font-weight: 800;
    font-size: 13px;
}

.fs-analytics-card strong {
    display: block;
    margin-top: 12px;
    font-size: 32px;
    letter-spacing: -1px;
}

.fs-analytics-card p {
    margin-top: 10px;
    color: #94a3b8;
    line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 1180px) {
    .fs-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fs-content-grid,
    .fs-hero-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 860px) {
    .fs-sidebar {
        position: relative;
        width: 100%;
        height: auto;
    }

    .fs-main {
        margin-left: 0;
        padding: 22px;
    }

    .fs-topbar {
        flex-direction: column;
    }

    .fs-profile-card {
        width: 100%;
    }

    .fs-command-top {
        flex-direction: column;
    }

    .fs-shield-orb {
        width: 125px;
        height: 125px;
    }

    .fs-orb-core {
        width: 78px;
        height: 78px;
        font-size: 34px;
    }

    .fs-analytics-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .fs-main {
        padding: 16px;
    }

    .fs-stats-grid {
        grid-template-columns: 1fr;
    }

    .fs-threat-card {
        flex-direction: column;
    }

    .fs-risk-chip-wrap {
        width: 100%;
        align-items: flex-start;
        flex-direction: row;
        justify-content: space-between;
    }

    .fs-command-card,
    .fs-risk-card,
    .fs-panel {
        padding: 22px;
        border-radius: 24px;
    }

    .fs-topbar h1 {
        font-size: 36px;
    }

    .fs-risk-score {
        font-size: 62px;
    }
}