:root {
    color-scheme: dark;
    --bg: #070b12;
    --surface: #0d1420;
    --surface-2: #111a29;
    --line: rgba(255, 255, 255, 0.1);
    --text: #f8fafc;
    --muted: #a7b3c7;
    --blue: #60a5fa;
    --blue-strong: #2563eb;
    --violet: #8b5cf6;
    --green: #34d399;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 4%, rgba(37, 99, 235, 0.19), transparent 28rem),
        radial-gradient(circle at 92% 20%, rgba(124, 58, 237, 0.14), transparent 25rem),
        var(--bg);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.65;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 11, 18, 0.9);
    backdrop-filter: blur(18px);
}

.site-header .container {
    width: min(1280px, calc(100% - 40px));
}

.header-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(1.45rem, 3vw, 2rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.brand img {
    width: 64px;
    height: 48px;
    object-fit: cover;
    border: 1px solid var(--line);
    border-radius: 8px;
}

.brand span span {
    color: var(--blue);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.82rem;
    font-weight: 750;
}

.header-nav a:not(.button) {
    padding: 8px 7px;
    color: #d7e0ed;
    white-space: nowrap;
}

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

.cta-short {
    display: none;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid rgba(147, 197, 253, 0.72);
    border-radius: 999px;
    color: white;
    background: linear-gradient(180deg, #3b82f6, #2563eb 55%, #1d4ed8);
    box-shadow:
        inset 0 0 0 3px rgba(255, 255, 255, 0.1),
        inset 0 8px 14px rgba(255, 255, 255, 0.12),
        0 12px 30px rgba(37, 99, 235, 0.3);
    font-weight: 850;
    transition: transform 0.2s ease, filter 0.2s ease;
}

.button:hover {
    color: white;
    filter: brightness(1.08);
    transform: translateY(-2px);
}

.button-secondary {
    border-color: var(--line);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: none;
}

.blog-hero {
    padding: clamp(46px, 5vw, 72px) 0 62px;
    border-bottom: 1px solid var(--line);
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--blue);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.blog-hero h1,
.article-hero h1 {
    max-width: 1050px;
    margin: 0;
    font-size: clamp(2.3rem, 5.8vw, 4.5rem);
    line-height: 1.01;
    letter-spacing: -0.055em;
}

.blog-hero .lead,
.article-hero .lead {
    max-width: 760px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 32px;
}

.benefit-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 48px;
}

.benefit {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
}

.benefit strong {
    display: block;
    margin-bottom: 4px;
}

.benefit span {
    color: var(--muted);
    font-size: 0.92rem;
}

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

.topic-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(17, 26, 41, 0.86), rgba(7, 11, 18, 0.72));
}

.topic-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    line-height: 1.25;
}

.topic-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.93rem;
}

.section {
    padding: 78px 0;
}

.section-alt {
    border-block: 1px solid var(--line);
    background: rgba(13, 20, 32, 0.72);
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.section-heading h2 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(1.9rem, 4.5vw, 3.1rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.section-heading p {
    max-width: 430px;
    margin: 0;
    color: var(--muted);
}

.category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 34px;
}

.category-nav a,
.tag {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #d7e0ed;
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.82rem;
    font-weight: 800;
}

.category-nav a:hover {
    border-color: rgba(96, 165, 250, 0.55);
    color: white;
}

.article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.article-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(145deg, rgba(17, 26, 41, 0.96), rgba(7, 11, 18, 0.9));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(96, 165, 250, 0.5);
}

.article-card h3 {
    margin: 18px 0 12px;
    font-size: 1.34rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
}

.article-card p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.article-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 24px;
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 850;
}

.article-card .read-more::after {
    content: "→";
    transition: transform 0.2s ease;
}

.article-card:hover .read-more::after {
    transform: translateX(4px);
}

.notice {
    padding: 28px;
    border: 1px solid rgba(52, 211, 153, 0.22);
    border-radius: 24px;
    background: rgba(52, 211, 153, 0.055);
}

.notice h2,
.notice h3 {
    margin-top: 0;
}

.notice p:last-child {
    margin-bottom: 0;
}

.blog-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    border-color: rgba(96, 165, 250, 0.28);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.08));
}

.blog-cta > div {
    max-width: 760px;
}

.blog-cta .button {
    flex: 0 0 auto;
}

.article-hero {
    padding: 68px 0 58px;
    border-bottom: 1px solid var(--line);
}

.article-hero h1 {
    max-width: 980px;
    font-size: clamp(2.2rem, 5.4vw, 4.15rem);
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 28px;
    color: var(--muted);
    font-size: 0.84rem;
}

.breadcrumbs a {
    color: var(--blue);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 22px;
    margin-top: 28px;
    color: var(--muted);
    font-size: 0.9rem;
}

.article-hub-nav {
    position: sticky;
    top: 78px;
    z-index: 40;
    border-bottom: 1px solid var(--line);
    background: rgba(7, 11, 18, 0.94);
    backdrop-filter: blur(16px);
}

.article-hub-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 24px;
    overflow-x: auto;
    scrollbar-width: thin;
}

.back-to-blog {
    flex: 0 0 auto;
    color: white;
    font-size: 0.9rem;
    font-weight: 900;
}

.hub-categories {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
}

.hub-categories a {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    padding: 0 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 800;
    white-space: nowrap;
}

.hub-categories a:hover {
    border-color: rgba(96, 165, 250, 0.5);
    color: white;
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 760px) 310px;
    gap: 56px;
    align-items: start;
    padding: 70px 0 92px;
}

.article-content {
    color: #d2dbea;
    font-size: 1.07rem;
}

.article-content h2 {
    margin: 2.2em 0 0.7em;
    color: white;
    font-size: clamp(1.6rem, 3.6vw, 2.15rem);
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.article-content h3 {
    margin: 1.8em 0 0.55em;
    color: white;
}

.article-content p {
    margin: 0 0 1.25em;
}

.article-content ul,
.article-content ol {
    margin: 0 0 1.5em;
    padding-left: 1.25em;
}

.article-content li {
    margin-bottom: 0.55em;
}

.article-content strong {
    color: white;
}

.article-content a {
    color: #93c5fd;
    text-decoration: underline;
    text-decoration-color: rgba(147, 197, 253, 0.4);
    text-underline-offset: 3px;
}

.article-introduction {
    margin-bottom: 34px;
    color: #e2e8f0;
    font-size: 1.1rem;
}

.practical-note {
    margin: -10px 0 34px;
    padding-left: 20px;
    border-left: 3px solid rgba(96, 165, 250, 0.65);
    color: #cbd5e1;
}

.inline-related {
    margin: 42px 0;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.025);
}

.inline-related h3 {
    margin: 0 0 18px;
    color: white;
    font-size: 1.2rem;
}

.related-heading {
    margin: 0;
    color: white;
    font-size: clamp(1.9rem, 4.5vw, 3.1rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.ad-slot,
.ad-slot--in-article,
.ad-slot--sidebar,
.ad-slot--after-article {
    display: none;
}

.key-points {
    margin: 0 0 34px;
    padding: 26px;
    border: 1px solid rgba(96, 165, 250, 0.25);
    border-radius: 22px;
    background: rgba(37, 99, 235, 0.08);
}

.key-points h2 {
    margin-top: 0;
    font-size: 1.35rem;
}

.article-sidebar {
    position: sticky;
    top: 104px;
}

.sidebar-card {
    margin-bottom: 20px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(13, 20, 32, 0.92);
}

.sidebar-card h2,
.sidebar-card h3 {
    margin: 0 0 12px;
    line-height: 1.2;
}

.sidebar-card p {
    color: var(--muted);
    font-size: 0.93rem;
}

.sidebar-card .button {
    width: 100%;
    margin-top: 8px;
}

.related-list {
    display: grid;
    gap: 12px;
}

.related-list a {
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
    color: #dbeafe;
    font-size: 0.9rem;
    font-weight: 750;
}

.related-list a:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.all-articles-link {
    display: inline-flex;
    margin-top: 20px;
    color: var(--blue);
    font-size: 0.9rem;
    font-weight: 900;
}

.more-articles {
    padding: 76px 0 92px;
    border-top: 1px solid var(--line);
    background: rgba(13, 20, 32, 0.68);
}

.final-cta {
    padding: 46px;
    border: 1px solid rgba(96, 165, 250, 0.28);
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(124, 58, 237, 0.14));
}

.final-cta h2,
.final-cta h3 {
    margin-top: 0;
    color: white;
    font-size: clamp(1.6rem, 3.6vw, 2.15rem);
    line-height: 1.14;
    letter-spacing: -0.035em;
}

.site-footer {
    padding: 42px 0;
    border-top: 1px solid var(--line);
    color: var(--muted);
    background: #05080d;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

@media (max-width: 980px) {
    .header-nav .section-link {
        display: none;
    }

    .article-grid,
    .topic-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .article-layout {
        grid-template-columns: 1fr;
    }

    .article-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .sidebar-card {
        margin: 0;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(100% - 28px, 1180px);
    }

    .header-inner {
        min-height: 70px;
        gap: 10px;
    }

    .brand img {
        width: 54px;
        height: 41px;
    }

    .header-nav {
        gap: 10px;
    }

    .header-nav .blog-link {
        display: inline-flex;
        color: white;
        font-size: 0.82rem;
    }

    .header-nav .button {
        min-height: 42px;
        padding-inline: 13px;
        font-size: 0.78rem;
    }

    .cta-full {
        display: none;
    }

    .cta-short {
        display: inline;
    }

    .article-hub-nav {
        top: 70px;
    }

    .article-hub-inner {
        width: 100%;
        padding-inline: 14px;
    }

    .back-to-blog {
        margin-left: 0;
    }

    .benefit-row,
    .article-grid,
    .topic-grid,
    .article-sidebar {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .blog-cta,
    .footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }

    .section {
        padding: 62px 0;
    }

    .article-layout {
        padding-top: 52px;
    }

    .final-cta {
        padding: 28px;
    }

    .more-articles {
        padding: 58px 0 72px;
    }
}

/* Violet neon template shared with the whole website. */
:root {
    --bg: #05010f;
    --surface: #12052e;
    --surface-2: #1a0750;
    --line: rgba(157, 78, 255, 0.32);
    --text: #f9f7ff;
    --muted: #b8acd2;
    --blue: #22d3ee;
    --blue-strong: #7c3aed;
    --violet: #be4bff;
    --green: #b9ff26;
}

html,
body {
    background: var(--bg);
}

body {
    background:
        radial-gradient(circle at 12% 7%, rgba(109, 40, 217, 0.22), transparent 30rem),
        radial-gradient(circle at 88% 16%, rgba(34, 211, 238, 0.11), transparent 26rem),
        linear-gradient(180deg, #05010f, #0a031f 48%, #05010f);
}

.site-header {
    border-color: rgba(157, 78, 255, 0.28);
    background: rgba(5, 1, 15, 0.92);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.4);
}

.site-header::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -1px;
    width: min(72vw, 900px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, #9d4edd, #22d3ee, transparent);
}

.brand span span {
    color: #5ebcff;
}

.button {
    border-color: rgba(93, 225, 255, 0.68);
    border-radius: 14px;
    background: linear-gradient(110deg, #6d28d9, #9333ea 45%, #2563eb);
    box-shadow:
        0 14px 34px rgba(109, 40, 217, 0.34),
        0 0 25px rgba(34, 211, 238, 0.1);
}

.button-secondary {
    border-color: rgba(157, 78, 255, 0.42);
    background: linear-gradient(145deg, rgba(30, 9, 75, 0.92), rgba(8, 3, 27, 0.96));
}

.blog-hero,
.article-hero {
    border-color: rgba(157, 78, 255, 0.18);
    background:
        radial-gradient(circle at 76% 42%, rgba(126, 34, 206, 0.34), transparent 27rem),
        radial-gradient(circle at 90% 68%, rgba(34, 211, 238, 0.1), transparent 22rem),
        linear-gradient(120deg, #05010f, #10032f 58%, #070219);
}

.blog-hero::after,
.article-hero::after {
    border-color: rgba(190, 75, 255, 0.3);
    background:
        linear-gradient(rgba(157, 78, 255, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(157, 78, 255, 0.09) 1px, transparent 1px);
    box-shadow:
        0 0 0 35px rgba(126, 34, 206, 0.045),
        0 0 80px rgba(126, 34, 206, 0.17);
}

.blog-hero h1 {
    background: linear-gradient(100deg, #ffffff 8%, #e5d8ff 38%, #be4bff 67%, #22d3ee);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eyebrow {
    color: #4ee5ff;
}

.benefit-row {
    border-color: rgba(157, 78, 255, 0.28);
    background: rgba(157, 78, 255, 0.2);
}

.benefit {
    background: linear-gradient(145deg, rgba(27, 8, 72, 0.96), rgba(7, 2, 25, 0.98));
}

.section,
.section-alt,
.more-articles {
    color: var(--text);
    border-color: rgba(157, 78, 255, 0.16);
    background:
        radial-gradient(circle at 86% 14%, rgba(126, 34, 206, 0.15), transparent 28rem),
        radial-gradient(circle at 12% 84%, rgba(37, 99, 235, 0.07), transparent 24rem),
        linear-gradient(145deg, #09021d, #05010f);
}

.section:nth-of-type(even) {
    background:
        radial-gradient(circle at 14% 18%, rgba(126, 34, 206, 0.17), transparent 27rem),
        linear-gradient(145deg, #070217, #0d0427);
}

.section-alt .section-heading h2,
.section-alt .topic-card h3,
.section-alt .notice h2,
.section-alt .notice h3,
.section-alt .blog-cta h2,
.section-alt .blog-cta h3 {
    color: #ffffff;
}

.section-alt .section-heading p,
.section-alt .topic-card p,
.section-alt .notice p,
.section-alt .blog-cta p {
    color: var(--muted);
}

.topic-card,
.article-card,
.notice,
.blog-cta,
.sidebar-card,
.inline-related,
.key-points,
.final-cta {
    border-color: rgba(157, 78, 255, 0.34);
    color: var(--text);
    background:
        linear-gradient(145deg, rgba(29, 8, 76, 0.96), rgba(8, 3, 27, 0.98));
    box-shadow:
        0 24px 65px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.topic-card::before,
.article-card::before {
    background: linear-gradient(90deg, #be4bff, #7c3aed, #22d3ee);
}

.topic-card h3,
.article-card h3,
.notice h2,
.notice h3,
.blog-cta h2,
.blog-cta h3 {
    color: #ffffff;
}

.topic-card p,
.article-card p,
.notice p,
.blog-cta p {
    color: var(--muted);
}

.article-card:hover,
.topic-card:hover {
    border-color: rgba(190, 75, 255, 0.68);
    box-shadow:
        0 30px 76px rgba(0, 0, 0, 0.38),
        0 0 38px rgba(126, 34, 206, 0.15);
}

.article-card .read-more,
.breadcrumbs a,
.all-articles-link {
    color: #4ee5ff;
}

.category-nav a,
.tag,
.hub-categories a {
    border-color: rgba(157, 78, 255, 0.35);
    background: rgba(30, 8, 74, 0.82);
}

.article-hub-nav {
    border-color: rgba(157, 78, 255, 0.2);
    background: rgba(5, 1, 15, 0.96);
}

.article-content {
    color: #d5cdea;
}

.article-content h2,
.article-content h3,
.article-content strong {
    color: #ffffff;
}

.article-content a {
    color: #67e8f9;
}

.practical-note {
    border-left-color: #be4bff;
    color: #cfc4e3;
}

.site-footer {
    border-color: rgba(157, 78, 255, 0.24);
    background:
        radial-gradient(circle at 50% 0%, rgba(126, 34, 206, 0.12), transparent 23rem),
        #030009;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}

/* Premium visual direction shared with the main website. */
:root {
    color-scheme: dark;
    --bg: #050c1b;
    --surface: #0a1a31;
    --surface-2: #0d2340;
    --line: rgba(115, 184, 255, 0.16);
    --text: #f8fbff;
    --muted: #a8bad0;
    --blue: #35c8f4;
    --blue-strong: #3077f2;
    --violet: #6477ff;
    --green: #3ee0b2;
}

body {
    background:
        radial-gradient(circle at 78% 8%, rgba(39, 174, 245, 0.14), transparent 29rem),
        radial-gradient(circle at 12% 26%, rgba(48, 119, 242, 0.12), transparent 34rem),
        var(--bg);
}

.container {
    width: min(1200px, calc(100% - 56px));
}

.site-header {
    background: rgba(4, 11, 25, 0.92);
    border-color: rgba(115, 184, 255, 0.14);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.2);
}

.site-header .container {
    width: min(1240px, calc(100% - 56px));
}

.header-inner {
    min-height: 88px;
}

.brand {
    gap: 14px;
    font-size: clamp(1.55rem, 2.5vw, 2.05rem);
}

.brand img {
    width: 62px;
    height: 50px;
    border-color: rgba(115, 184, 255, 0.2);
    border-radius: 7px;
}

.brand span span {
    color: #42b9ff;
}

.header-nav {
    gap: 14px;
}

.header-nav a:not(.button) {
    padding: 10px 6px;
    color: #d8e4f2;
}

.button {
    min-height: 50px;
    padding-inline: 24px;
    border: 1px solid rgba(136, 213, 255, 0.65);
    border-radius: 14px;
    background: linear-gradient(115deg, #24bde8, #3379f3 68%, #5872f3);
    box-shadow: 0 14px 34px rgba(36, 165, 238, 0.22);
}

.button-secondary {
    border-color: rgba(130, 180, 230, 0.25);
    background: rgba(7, 23, 43, 0.65);
    box-shadow: none;
}

.blog-hero,
.article-hero {
    position: relative;
    overflow: hidden;
    border-bottom-color: rgba(115, 184, 255, 0.14);
    background:
        linear-gradient(90deg, rgba(5, 12, 27, 0.98), rgba(5, 18, 39, 0.84)),
        radial-gradient(circle at 80% 45%, rgba(49, 186, 244, 0.18), transparent 28rem);
}

.blog-hero {
    padding: clamp(72px, 8vw, 118px) 0 92px;
}

.blog-hero::after,
.article-hero::after {
    content: "";
    position: absolute;
    width: min(36vw, 480px);
    aspect-ratio: 1;
    right: 5vw;
    top: 50%;
    border: 1px solid rgba(86, 198, 255, 0.2);
    border-radius: 42% 58% 63% 37%;
    background:
        linear-gradient(rgba(79, 182, 255, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 182, 255, 0.07) 1px, transparent 1px);
    background-size: 38px 38px;
    transform: translateY(-50%) rotate(16deg);
    pointer-events: none;
}

.blog-hero .container,
.article-hero .container {
    position: relative;
    z-index: 1;
}

.eyebrow {
    color: #42cdf5;
}

.blog-hero h1,
.article-hero h1 {
    max-width: 900px;
    font-size: clamp(2.8rem, 6.6vw, 5.6rem);
    line-height: 0.96;
    letter-spacing: -0.065em;
}

.blog-hero h1 {
    background: linear-gradient(100deg, #ffffff 10%, #e7f7ff 42%, #44caf5 76%, #6380ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.blog-hero .lead,
.article-hero .lead {
    color: #b4c8de;
}

.benefit-row {
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(115, 184, 255, 0.15);
    border-radius: 18px;
    background: rgba(115, 184, 255, 0.15);
}

.benefit {
    border: 0;
    border-radius: 0;
    background: rgba(7, 24, 46, 0.92);
}

.section {
    padding: 92px 0;
}

.section-alt {
    color: #0a1730;
    border-color: #dce7f2;
    background:
        radial-gradient(circle at 90% 20%, rgba(51, 190, 238, 0.12), transparent 25rem),
        #f4f8fc;
}

.section-alt .section-heading h2,
.section-alt .topic-card h3,
.section-alt .notice h2,
.section-alt .notice h3,
.section-alt .blog-cta h2,
.section-alt .blog-cta h3 {
    color: #08162e;
}

.section-alt .section-heading p,
.section-alt .topic-card p,
.section-alt .notice p,
.section-alt .blog-cta p {
    color: #50637a;
}

.section-heading {
    margin-bottom: 42px;
}

.section-heading h2 {
    font-size: clamp(2.15rem, 4.8vw, 3.7rem);
    letter-spacing: -0.055em;
}

.topic-grid {
    gap: 16px;
}

.topic-card {
    position: relative;
    overflow: hidden;
    min-height: 184px;
    padding: 28px;
    border-color: #d7e3ef;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 20px 55px rgba(20, 54, 90, 0.08);
}

.topic-card::before {
    content: "";
    position: absolute;
    width: 72px;
    height: 5px;
    top: 0;
    left: 28px;
    border-radius: 0 0 5px 5px;
    background: linear-gradient(90deg, #28c4ed, #5f72f4);
}

.category-nav a,
.tag {
    border-radius: 10px;
    border-color: rgba(115, 184, 255, 0.2);
    background: rgba(12, 38, 68, 0.72);
}

.article-grid {
    gap: 18px;
}

.article-card {
    position: relative;
    overflow: hidden;
    padding: 30px;
    border-color: rgba(115, 184, 255, 0.16);
    border-radius: 18px;
    background:
        linear-gradient(145deg, rgba(13, 36, 65, 0.98), rgba(5, 17, 34, 0.98));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.article-card::before {
    content: "";
    position: absolute;
    width: 92px;
    height: 4px;
    top: 0;
    left: 30px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, #30c9ef, #5275f5);
}

.article-card:hover {
    border-color: rgba(69, 203, 247, 0.45);
    box-shadow: 0 28px 75px rgba(17, 113, 184, 0.17);
}

.article-card .read-more {
    color: #42cdf5;
}

.article-card .read-more::after {
    content: "\2192";
}

.notice {
    border-radius: 18px;
}

.section-alt .notice {
    border-color: rgba(27, 165, 132, 0.25);
    background: rgba(45, 202, 166, 0.08);
}

.blog-cta {
    border-radius: 20px;
    background:
        linear-gradient(125deg, rgba(34, 193, 235, 0.12), rgba(80, 112, 244, 0.11)),
        #ffffff;
}

.article-hub-nav {
    top: 88px;
    background: rgba(4, 13, 29, 0.96);
}

.hub-categories a {
    border-radius: 9px;
}

.article-layout {
    gap: 68px;
}

.inline-related,
.key-points,
.sidebar-card,
.final-cta {
    border-radius: 18px;
}

.sidebar-card {
    background: linear-gradient(145deg, rgba(13, 36, 65, 0.98), rgba(6, 19, 37, 0.98));
}

.more-articles {
    background: #071427;
}

.site-footer {
    background: #030915;
}

@media (max-width: 720px) {
    .container,
    .site-header .container {
        width: min(100% - 32px, 1200px);
    }

    .header-inner {
        min-height: 76px;
    }

    .brand {
        font-size: 1.28rem;
    }

    .brand img {
        width: 50px;
        height: 42px;
    }

    .header-nav {
        gap: 7px;
    }

    .header-nav .blog-link {
        display: none;
    }

    .header-nav .button {
        min-height: 40px;
        padding-inline: 12px;
        border-radius: 11px;
    }

    .blog-hero {
        padding: 58px 0 66px;
    }

    .blog-hero::after,
    .article-hero::after {
        width: 280px;
        right: -160px;
        opacity: 0.65;
    }

    .blog-hero h1,
    .article-hero h1 {
        font-size: clamp(2.5rem, 13vw, 4.2rem);
    }

    .section {
        padding: 70px 0;
    }

    .topic-card,
    .article-card {
        padding: 25px;
    }

    .article-hub-nav {
        top: 76px;
    }
}

/* Final violet overrides: keep the blog visually identical to the main template. */
html,
body {
    background: #05010f !important;
}

body {
    color: #f9f7ff;
    background:
        radial-gradient(circle at 12% 7%, rgba(109, 40, 217, 0.22), transparent 30rem),
        radial-gradient(circle at 88% 16%, rgba(34, 211, 238, 0.1), transparent 26rem),
        linear-gradient(180deg, #05010f, #0a031f 48%, #05010f) !important;
}

.site-header {
    border-color: rgba(157, 78, 255, 0.28) !important;
    background: rgba(5, 1, 15, 0.92) !important;
}

.button {
    border-color: rgba(93, 225, 255, 0.68) !important;
    border-radius: 14px !important;
    background: linear-gradient(110deg, #6d28d9, #9333ea 45%, #2563eb) !important;
    box-shadow:
        0 14px 34px rgba(109, 40, 217, 0.34),
        0 0 25px rgba(34, 211, 238, 0.1) !important;
}

.button-secondary {
    border-color: rgba(157, 78, 255, 0.42) !important;
    background: linear-gradient(145deg, rgba(30, 9, 75, 0.92), rgba(8, 3, 27, 0.96)) !important;
    box-shadow: none !important;
}

.blog-hero,
.article-hero {
    border-color: rgba(157, 78, 255, 0.18) !important;
    background:
        radial-gradient(circle at 76% 42%, rgba(126, 34, 206, 0.34), transparent 27rem),
        radial-gradient(circle at 90% 68%, rgba(34, 211, 238, 0.1), transparent 22rem),
        linear-gradient(120deg, #05010f, #10032f 58%, #070219) !important;
}

.blog-hero::after,
.article-hero::after {
    border-color: rgba(190, 75, 255, 0.3) !important;
    background:
        linear-gradient(rgba(157, 78, 255, 0.09) 1px, transparent 1px),
        linear-gradient(90deg, rgba(157, 78, 255, 0.09) 1px, transparent 1px) !important;
    box-shadow:
        0 0 0 35px rgba(126, 34, 206, 0.045),
        0 0 80px rgba(126, 34, 206, 0.17);
}

.blog-hero h1 {
    background: linear-gradient(100deg, #ffffff 8%, #e5d8ff 38%, #be4bff 67%, #22d3ee) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    color: transparent !important;
}

.eyebrow {
    color: #4ee5ff !important;
}

.benefit-row {
    border-color: rgba(157, 78, 255, 0.28) !important;
    background: rgba(157, 78, 255, 0.2) !important;
}

.benefit {
    background: linear-gradient(145deg, rgba(27, 8, 72, 0.96), rgba(7, 2, 25, 0.98)) !important;
}

.section,
.section-alt,
.more-articles {
    color: #f9f7ff !important;
    border-color: rgba(157, 78, 255, 0.16) !important;
    background:
        radial-gradient(circle at 86% 14%, rgba(126, 34, 206, 0.15), transparent 28rem),
        radial-gradient(circle at 12% 84%, rgba(37, 99, 235, 0.07), transparent 24rem),
        linear-gradient(145deg, #09021d, #05010f) !important;
}

.section:nth-of-type(even) {
    background:
        radial-gradient(circle at 14% 18%, rgba(126, 34, 206, 0.17), transparent 27rem),
        linear-gradient(145deg, #070217, #0d0427) !important;
}

.section-alt .section-heading h2,
.section-alt .topic-card h3,
.section-alt .notice h2,
.section-alt .notice h3,
.section-alt .blog-cta h2,
.section-alt .blog-cta h3 {
    color: #ffffff !important;
}

.section-alt .section-heading p,
.section-alt .topic-card p,
.section-alt .notice p,
.section-alt .blog-cta p {
    color: #b8acd2 !important;
}

.topic-card,
.article-card,
.notice,
.blog-cta,
.sidebar-card,
.inline-related,
.key-points,
.final-cta {
    border-color: rgba(157, 78, 255, 0.34) !important;
    color: #f9f7ff !important;
    background:
        linear-gradient(145deg, rgba(29, 8, 76, 0.96), rgba(8, 3, 27, 0.98)) !important;
    box-shadow:
        0 24px 65px rgba(0, 0, 0, 0.32),
        inset 0 1px 0 rgba(255, 255, 255, 0.035) !important;
}

.topic-card h3,
.article-card h3,
.notice h2,
.notice h3,
.blog-cta h2,
.blog-cta h3 {
    color: #ffffff !important;
}

.topic-card p,
.article-card p,
.notice p,
.blog-cta p {
    color: #b8acd2 !important;
}

.topic-card::before,
.article-card::before {
    background: linear-gradient(90deg, #be4bff, #7c3aed, #22d3ee) !important;
}

.category-nav a,
.tag,
.hub-categories a {
    border-color: rgba(157, 78, 255, 0.35) !important;
    background: rgba(30, 8, 74, 0.82) !important;
}

.article-hub-nav {
    border-color: rgba(157, 78, 255, 0.2) !important;
    background: rgba(5, 1, 15, 0.96) !important;
}

.article-content {
    color: #d5cdea !important;
}

.article-content h2,
.article-content h3,
.article-content strong {
    color: #ffffff !important;
}

.sidebar-card {
    background: linear-gradient(145deg, rgba(29, 8, 76, 0.98), rgba(8, 3, 27, 0.98)) !important;
}

.site-footer {
    border-color: rgba(157, 78, 255, 0.24) !important;
    background:
        radial-gradient(circle at 50% 0%, rgba(126, 34, 206, 0.12), transparent 23rem),
        #030009 !important;
}
