:root {
    --bg:#f4f6fb;
    --glass:rgba(255,255,255,.65);
    --border:rgba(255,255,255,.85);
    --text:#0f172a;
    --muted:#64748b;
    --accent:#2563eb;
}
body {
    font-family:Inter,sans-serif;
    background:
            radial-gradient(1200px 600px at 10% -10%, #dbeafe, transparent),
            radial-gradient(800px 500px at 90% 10%, #e0e7ff, transparent),
            var(--bg);
    color:var(--text);
}
.glass {
    background:var(--glass);
    backdrop-filter:blur(16px);
    border:1px solid var(--border);
    border-radius:20px;
}
.navbar {
    background:rgba(255,255,255,.7);
    backdrop-filter:blur(12px);
}
.nav-link { color:var(--muted); font-weight:500; }
.nav-link:hover { color:var(--text); }
.btn-primary {
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    border:none;
    font-weight:600;
}
.hero { padding:120px 0 80px; }
.section { padding:80px 0; }
.kpi { font-size:36px; font-weight:700; }

.chart-wrapper {
    position:relative;
    width:100%;
    height:260px;
}
@media (max-width:576px){
    .hero { padding-top:100px; text-align:center; }
    .chart-wrapper { height:200px; }
}

.link-card {
    position: relative;
    transition: all 0.2s ease;
    background: rgba(255,255,255,0.55);
    border: 1px solid rgba(15,23,42,0.06);
    border-radius: 20px;
    box-shadow: inset 0 2px 0 rgba(37,99,235,0.15);
}

.link-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.75);
    border-color: rgba(15,23,42,0.1);
    box-shadow:
            inset 0 2px 0 rgba(37,99,235,0.25),
            0 8px 20px rgba(15,23,42,0.05);
}

.icon-wrap {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    border-radius: 10px;
    background: rgba(15,23,42,0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.blog-preview {
    transition: all .2s ease;
}

.blog-preview:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(15,23,42,0.06);
}

.blog-preview .badge {
    background: rgba(15,23,42,0.05);
    color: var(--muted);
    font-size: 12px;
    border-radius: 8px;
    padding: 4px 8px;
}

.blog-preview h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
    color: var(--text);
    transition: color .2s ease;
}

.blog-preview:hover h5 {
    color: var(--accent);
}

.btn-outline-primary-custom {
    border: 1px solid var(--accent);
    color: var(--accent);
    background: transparent;
    font-weight: 500;
    transition: all .2s ease;
}

.btn-outline-primary-custom:hover {
    background: var(--accent);
    color: #fff;
}