﻿
:root {
    --bg: #08090d;
    --bg2: #0d0f18;
    --bg3: #111420;
    --card-border: rgba(255,255,255,0.07);
    --grad: linear-gradient(135deg, #4f6ef7, #7c3aed);
    --text: #f0f2ff;
    --muted: #8892b0;
    --muted2: #5a6480;
    --font: 'Outfit', sans-serif;
    --font2: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font2);
    line-height: 1.7;
    overflow-x: hidden;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(79,110,247,0.4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(79,110,247,0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity .7s ease, transform .7s ease;
}

    .reveal.visible {
        opacity: 1;
        transform: translateY(0);
    }

.d1 {
    transition-delay: .1s;
}

.d2 {
    transition-delay: .2s;
}

.d3 {
    transition-delay: .3s;
}

.d4 {
    transition-delay: .4s;
}

.mesh-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.mesh-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .18;
}

.orb1 {
    width: 600px;
    height: 600px;
    background: #4f6ef7;
    top: -200px;
    left: -100px;
    animation: float 8s ease-in-out infinite;
}

.orb2 {
    width: 500px;
    height: 500px;
    background: #7c3aed;
    top: 0;
    right: -150px;
    animation: float 10s ease-in-out infinite reverse;
}

.orb3 {
    width: 400px;
    height: 400px;
    background: #06b6d4;
    bottom: 0;
    left: 30%;
    animation: float 12s ease-in-out infinite;
}

.blog-hero {
    position: relative;
    overflow: hidden;
    padding: 130px 5% 70px;
    text-align: center;
}

.blog-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(79,110,247,0.12);
    border: 1px solid rgba(79,110,247,0.3);
    color: #a5b4ff;
    padding: 6px 16px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    animation: fadeUp .6s ease both;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4f6ef7;
    animation: pulse 1.5s infinite;
}

.blog-hero h1 {
    font-family: var(--font);
    font-size: clamp(32px,4.5vw,56px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.4px;
    animation: fadeUp .7s ease .15s both;
}

.grad-text {
    background: linear-gradient(135deg,#4f6ef7 0%,#a78bfa 40%,#06b6d4 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite;
}

.blog-hero p.hero-desc {
    color: var(--muted);
    font-size: 16px;
    margin: 20px auto 0;
    max-width: 620px;
    line-height: 1.8;
    animation: fadeUp .7s ease .3s both;
}

.blog-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 28px;
    animation: fadeUp .7s ease .45s both;
}

.meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--muted);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
}

    .meta-pill .dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: #4f6ef7;
    }

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 5% 80px;
    align-items: start;
}

.article-body {
    min-width: 0;
}

.section-tag {
    display: inline-block;
    background: rgba(79,110,247,0.1);
    border: 1px solid rgba(79,110,247,0.25);
    color: #a5b4ff;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.article-intro {
    background: rgba(79,110,247,0.06);
    border: 1px solid rgba(79,110,247,0.2);
    border-radius: 16px;
    padding: 28px 30px;
    margin-bottom: 40px;
    transition: all .3s ease;
}

    .article-intro:hover {
        border-color: rgba(79,110,247,0.5);
        box-shadow: 0 10px 40px rgba(79,110,247,0.25);
        transform: translateY(-4px);
    }

    .article-intro p {
        color: var(--muted);
        font-size: 15px;
        line-height: 1.8;
    }

        .article-intro p + p {
            margin-top: 12px;
        }

.art-h2 {
    font-family: var(--font);
    font-size: clamp(20px,2.5vw,28px);
    font-weight: 800;
    letter-spacing: -.5px;
    line-height: 1.25;
    margin: 48px 0 14px;
}

    .art-h2:first-child {
        margin-top: 0;
    }

.art-p {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 16px;
}

.art-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 14px 0 24px;
}

    .art-list li {
        font-size: 14px;
        color: var(--muted);
        display: flex;
        align-items: flex-start;
        gap: 10px;
        transition: color .2s, transform .2s;
    }

        .art-list li:hover {
            color: var(--text);
            transform: translateX(4px);
        }

        .art-list li::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--grad);
            flex-shrink: 0;
            margin-top: 7px;
        }

.art-quote {
    border-left: 3px solid #4f6ef7;
    background: rgba(79,110,247,0.05);
    border-radius: 0 12px 12px 0;
    padding: 18px 24px;
    margin: 24px 0;
}

    .art-quote p {
        color: var(--text);
        font-size: 15px;
        font-style: italic;
        line-height: 1.7;
    }

.benefit-block {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 28px 28px 22px;
    margin: 28px 0;
    transition: all .3s ease;
}

    .benefit-block:hover {
        transform: translateY(-5px);
        border-color: rgba(79,110,247,0.5);
        background: rgba(79,110,247,0.05);
        box-shadow: 0 20px 50px rgba(79,110,247,0.15);
    }

.benefit-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--grad);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 800;
    color: white;
    margin-bottom: 14px;
}

.benefit-block h3 {
    font-family: var(--font);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: -.3px;
}

.benefit-block > p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.b-sub-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    color: var(--muted2);
    margin: 12px 0 8px;
}

.b-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 10px;
}

    .b-list li {
        font-size: 13px;
        color: var(--muted);
        display: flex;
        align-items: flex-start;
        gap: 8px;
        transition: color .2s, transform .2s;
    }

        .b-list li:hover {
            color: var(--text);
            transform: translateX(4px);
        }

        .b-list li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--grad);
            flex-shrink: 0;
            margin-top: 7px;
        }

.benefit-outcome {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    background: rgba(79,110,247,0.1);
    border: 1px solid rgba(79,110,247,0.2);
    border-radius: 20px;
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #a5b4ff;
}

    .benefit-outcome::before {
        content: '→';
        color: #4f6ef7;
    }

.table-wrap {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid var(--card-border);
    margin: 30px 0;
    transition: all .3s ease;
}

    .table-wrap:hover {
        border-color: rgba(79,110,247,0.5);
        box-shadow: 0 10px 40px rgba(79,110,247,0.25);
        transform: translateY(-4px);
    }

.art-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 480px;
}

    .art-table th {
        background: rgba(79,110,247,0.08);
        font-family: var(--font);
        font-size: 13px;
        font-weight: 700;
        padding: 14px 16px;
        text-align: left;
        border-bottom: 1px solid var(--card-border);
        color: var(--text);
    }

        .art-table th:first-child {
            border-radius: 15px 0 0 0;
        }

        .art-table th:last-child {
            border-radius: 0 15px 0 0;
        }

        .art-table th.divine-col {
            color: #a5b4ff;
        }

    .art-table td {
        padding: 12px 16px;
        font-size: 13px;
        color: var(--muted);
        border-bottom: .5px solid var(--card-border);
        transition: background .2s, color .2s;
    }

    .art-table tr:last-child td {
        border-bottom: none;
    }

    .art-table tr:hover td {
        background: rgba(79,110,247,0.04);
        color: var(--text);
    }

    .art-table td:first-child {
        color: var(--text);
        font-weight: 500;
    }

    .art-table td.divine-col {
        color: #a5b4ff !important;
        font-weight: 600 !important;
    }

.tick {
    color: #4f6ef7;
    font-weight: 700;
}

.cross {
    color: #ef4444;
    font-weight: 700;
}

.mid {
    color: #f59e0b;
    font-weight: 600;
}

.art-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 24px 0;
}

.art-comp-card {
    border-radius: 16px;
    padding: 22px 24px;
    transition: all .3s ease;
}

    .art-comp-card.bad {
        background: rgba(239,68,68,0.05);
        border: 1px solid rgba(239,68,68,0.18);
    }

    .art-comp-card.good {
        background: rgba(79,110,247,0.06);
        border: 1px solid rgba(79,110,247,0.28);
    }

    .art-comp-card:hover {
        transform: translateY(-4px);
    }

    .art-comp-card.good:hover {
        box-shadow: 0 12px 45px rgba(79,110,247,0.3);
    }

    .art-comp-card.bad:hover {
        box-shadow: 0 12px 45px rgba(239,68,68,0.2);
    }

.art-comp-title {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.art-comp-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

    .art-comp-list li {
        font-size: 13px;
        color: var(--muted);
        display: flex;
        align-items: center;
        gap: 9px;
    }

.xi {
    color: #ef4444;
    font-size: 14px;
    font-weight: 700;
}

.ci {
    color: #4f6ef7;
    font-size: 14px;
    font-weight: 700;
}

.art-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0 24px;
}

.art-mini-card {
    background: rgba(255,255,255,0.025);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 13px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color .2s, border-color .2s, transform .2s;
}

    .art-mini-card:hover {
        color: var(--text);
        border-color: rgba(79,110,247,0.4);
        transform: translateX(4px);
    }

    .art-mini-card::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--grad);
        flex-shrink: 0;
    }

.art-pill {
    display: inline-block;
    background: rgba(79,110,247,0.1);
    border: 1px solid rgba(79,110,247,0.2);
    color: #a5b4ff;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin: 2px;
}

.verdict-banner {
    background: rgba(79,110,247,0.08);
    border: 1px solid rgba(79,110,247,0.3);
    border-radius: 18px;
    padding: 32px 30px;
    margin: 40px 0;
    box-shadow: 0 16px 48px rgba(79,110,247,0.12);
    transition: all .3s ease;
}

    .verdict-banner:hover {
        border-color: rgba(79,110,247,0.5);
        box-shadow: 0 20px 56px rgba(79,110,247,0.22);
        transform: translateY(-4px);
    }

    .verdict-banner h3 {
        font-family: var(--font);
        font-size: 20px;
        font-weight: 800;
        margin-bottom: 10px;
    }

    .verdict-banner p {
        color: var(--muted);
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 10px;
    }

.verdict-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 14px 0 0;
}

    .verdict-list li {
        font-size: 14px;
        color: var(--muted);
        display: flex;
        align-items: center;
        gap: 9px;
    }

.blog-sidebar {
    position: sticky;
    top: 90px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 22px 20px;
    transition: all .3s ease;
}

    .sidebar-card:hover {
        border-color: rgba(79,110,247,0.5);
        box-shadow: 0 10px 40px rgba(79,110,247,0.25);
        transform: translateY(-4px);
    }

.sidebar-title {
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
}

.toc-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .toc-list a {
        font-size: 13px;
        color: var(--muted);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color .2s, transform .2s;
        padding: 2px 0;
    }

        .toc-list a:hover {
            color: #a5b4ff;
            transform: translateX(4px);
        }

.toc-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--grad);
    flex-shrink: 0;
}

.sidebar-cta {
    background: rgba(79,110,247,0.08);
    border: 1px solid rgba(79,110,247,0.3);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 12px 36px rgba(79,110,247,0.12);
}

    .sidebar-cta h4 {
        font-family: var(--font);
        font-size: 16px;
        font-weight: 800;
        margin-bottom: 8px;
    }

    .sidebar-cta p {
        color: var(--muted);
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 18px;
    }

.btn-primary {
    display: block;
    background: var(--grad);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    font-family: var(--font);
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 6px 24px rgba(79,110,247,0.35);
    margin-bottom: 10px;
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 32px rgba(79,110,247,0.5);
        color: white;
    }

.btn-outline-sm {
    display: block;
    border: 1.5px solid rgba(255,255,255,0.15);
    color: var(--text);
    padding: 11px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    font-family: var(--font);
    transition: border-color .2s, background .2s;
}

    .btn-outline-sm:hover {
        border-color: rgba(79,110,247,0.5);
        background: rgba(79,110,247,0.08);
    }

.related-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .related-list a {
        font-size: 13px;
        color: var(--muted);
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color .2s;
    }

        .related-list a:hover {
            color: #a5b4ff;
        }

        .related-list a::before {
            content: '→';
            color: #4f6ef7;
            font-size: 12px;
        }

.final-cta {
    background: var(--bg2);
    text-align: center;
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.cta-orb1 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #4f6ef7;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .12;
    top: -100px;
    left: -100px;
}

.cta-orb2 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #7c3aed;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .12;
    bottom: -100px;
    right: -100px;
}

.final-cta h2 {
    font-family: var(--font);
    font-size: clamp(32px,5vw,56px);
    font-weight: 800;
    letter-spacing: -1px;
    position: relative;
}

.final-cta p {
    color: var(--muted);
    font-size: 17px;
    margin: 16px auto 36px;
    max-width: 500px;
    position: relative;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    position: relative;
    flex-wrap: wrap;
}

.btn-cta-primary {
    background: var(--grad);
    color: white;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    font-family: var(--font);
    transition: transform .2s, box-shadow .2s;
    box-shadow: 0 8px 30px rgba(79,110,247,0.4);
    display: inline-block;
}

    .btn-cta-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 40px rgba(79,110,247,0.55);
        color: white;
    }

.btn-cta-outline {
    border: 1.5px solid rgba(255,255,255,0.2);
    color: var(--text);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    font-family: var(--font);
    transition: border-color .2s, background .2s, transform .2s;
    backdrop-filter: blur(8px);
    display: inline-block;
}

    .btn-cta-outline:hover {
        border-color: rgba(79,110,247,0.6);
        background: rgba(79,110,247,0.08);
        transform: translateY(-2px);
    }
.benefit-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

 .benefit-num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #4f6ef7;
    color: #fff;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-block h3 {
    margin: 0;
}
@media (max-width:1024px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .art-grid-2 {
        grid-template-columns: 1fr 1fr;
    }

    .art-compare {
        grid-template-columns: 1fr;
    }
}

@media (max-width:768px) {
    body {
        overflow-x: hidden;
    }

    .blog-hero {
        padding-top: 110px;
    }

        .blog-hero h1 {
            font-size: 28px;
        }

    .art-grid-2 {
        grid-template-columns: 1fr;
    }

    .blog-layout {
        padding: 40px 5% 60px;
        gap: 30px;
    }

    .final-cta {
        padding: 70px 16px;
    }

        .final-cta h2 {
            font-size: 28px;
        }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

        .cta-btns a {
            width: 100%;
            max-width: 260px;
            text-align: center;
        }

    html, body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .mesh-bg {
        overflow: hidden;
    }

    .orb1, .orb2, .orb3 {
        transform: scale(0.6);
    }
}

@media (max-width:480px) {
    .blog-hero h1 {
        font-size: 24px;
    }

    .art-h2 {
        font-size: 20px;
    }

    .article-intro, .verdict-banner, .benefit-block {
        padding: 20px;
    }

    .btn-cta-primary, .btn-cta-outline {
        padding: 12px 18px !important;
        font-size: 14px !important;
    }
}

