body {
    margin: 0;
    font-family: "Segoe UI", Arial, sans-serif;
    color: #12233d;
    background: #eef4fb;
}

a {
    color: #005ed9;
    text-decoration: none;
}

    a:hover {
        text-decoration: underline;
    }

img {
    max-width: 100%;
    display: block;
}

.shell {
    width: min(1100px, calc(100% - 32px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #dce7f5;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    min-height: 74px;
}

.header-nav-group {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: inherit;
}

    .brand img {
        width: 160px;
        height: auto;
        max-width: 100%;
        object-fit: contain;
        object-position: left center;
    }

.top-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
    justify-content: flex-end;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px;
    border: 1px solid #dce7f5;
    border-radius: 999px;
    background: rgba(246, 249, 254, 0.94);
    scrollbar-width: none;
}

    .top-nav a {
        position: relative;
        color: #586b86;
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        white-space: nowrap;
        padding: 9px 12px;
        border-radius: 999px;
        transition: background 0.2s ease, color 0.2s ease;
    }

        .top-nav a::after {
            content: "";
            position: absolute;
            left: 12px;
            right: 12px;
            bottom: 6px;
            height: 2px;
            background: #10233f;
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.2s ease;
        }

        .top-nav a:hover,
        .top-nav a:focus-visible,
        .top-nav a.is-current {
            color: #10233f;
            background: rgba(255, 255, 255, 0.96);
            text-decoration: none;
        }

            .top-nav a:hover::after,
            .top-nav a:focus-visible::after,
            .top-nav a.is-current::after {
                transform: scaleX(1);
            }

    .top-nav::-webkit-scrollbar {
        display: none;
    }

.nav-toggle {
    display: none;
    align-items: center;
    gap: 10px;
    border: 1px solid #dce7f5;
    border-radius: 999px;
    background: #2280fc;
    color: #ffffff;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 10px 14px;
    box-shadow: 0 10px 24px rgba(18, 35, 61, 0.08);
    cursor: pointer;
}

.nav-toggle__icon,
.nav-toggle__icon::before,
.nav-toggle__icon::after {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    content: "";
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle__icon {
    position: relative;
}

    .nav-toggle__icon::before {
        position: absolute;
        top: -5px;
        left: 0;
    }

    .nav-toggle__icon::after {
        position: absolute;
        top: 5px;
        left: 0;
    }

.nav-toggle[aria-expanded="true"] .nav-toggle__icon {
    background: transparent;
}

    .nav-toggle[aria-expanded="true"] .nav-toggle__icon::before {
        transform: translateY(5px) rotate(45deg);
    }

    .nav-toggle[aria-expanded="true"] .nav-toggle__icon::after {
        transform: translateY(-5px) rotate(-45deg);
    }

.hero {
    margin: 28px 0 24px;
    padding: 34px;
    border-radius: 28px;
    background: linear-gradient(135deg, #fdfefe 0%, #eaf3ff 100%);
    border: 1px solid #d7e5f6;
    box-shadow: 0 16px 36px rgba(18, 35, 61, 0.08);
}

[id] {
    scroll-margin-top: 17px;
}

.eyebrow {
    display: inline-block;
    margin: 0 0 18px;
    padding: 8px 12px;
    border-radius: 999px;
    background: #dcecff;
    color: #005ed9;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.hero h1 {
    margin: 0 0 20px;
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    line-height: 1.21;
    letter-spacing: -0.04em;
}

.lede {
    margin: 0;
    max-width: 900px;
    color: #4f627c;
    font-size: 1.1rem;
    line-height: 1.8;
}

.author-row {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.author-badge {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #10233f;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 800;
}

.author-row strong,
.author-row span {
    display: block;
}

.author-row strong {
    font-size: 0.84rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.author-row span {
    margin-top: 3px;
    color: #667891;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.author-row a {
    color: inherit;
}

.key-stats {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-top: 24px;
}

.stat-card {
    border-radius: 20px;
    padding: 20px 18px;
    color: #fff;
    box-shadow: 0 16px 28px rgba(18, 35, 61, 0.12);
}

.stat-card--blue,
.stat-card--gold:first-child {
    background: linear-gradient(180deg, #0b73ff 0%, #005fd7 100%);
}

.stat-card--red,
.key-stats .stat-card:nth-child(2) {
    background: linear-gradient(180deg, #f44336 0%, #d7271a 100%);
}

.stat-card--orange,
.key-stats .stat-card:nth-child(3) {
    background: linear-gradient(180deg, #ff9f1a 0%, #f17800 100%);
}

.stat-card--green {
    background: linear-gradient(180deg, #159365 0%, #0d7a52 100%);
}

.stat-label {
    margin: 0 0 8px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    color: rgba(255,255,255,0.76);
}

.stat-value {
    margin: 0;
    font-size: 1.7rem;
    line-height: 1;
    font-weight: 900;
    color: #fff;
    text-shadow: 1px 1px 5px #303f91;
}

.stat-foot {
    margin: 10px 0 0;
    font-size: 0.76rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
}

.article-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 26px;
}

.share-tools {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1 1 auto;
}

.share-tools__link,
.save-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 50px;
    padding: 12px 18px;
    border: 1px solid #cfe0fb;
    border-radius: 999px;
    background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
    color: #10233f;
    font-size: 0.96rem;
    font-weight: 800;
    box-shadow: 0 12px 26px rgba(0, 94, 217, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

    .share-tools__link svg,
    .save-button svg {
        width: 18px;
        height: 18px;
        flex: 0 0 18px;
    }

    .share-tools__link::before {
        display: inline-grid;
        place-items: center;
        width: 18px;
        height: 18px;
        font-size: 0.95rem;
        font-weight: 900;
        line-height: 1;
    }

    .share-tools__link[href*="facebook.com"]::before {
        content: "f";
        font-family: Georgia, serif;
    }

    .share-tools__link[href*="twitter.com"]::before {
        content: "✕";
    }

    .share-tools__link[href*="linkedin.com"]::before {
        content: "in";
        font-size: 0.82rem;
        letter-spacing: -0.04em;
    }

    .share-tools__link[href*="t.me"]::before {
        content: "➤";
    }

    .save-button::before {
        content: "▣";
        display: inline-grid;
        place-items: center;
        width: 18px;
        height: 18px;
        font-size: 0.9rem;
        line-height: 1;
    }

    .share-tools__link span,
    .save-button span {
        line-height: 1;
    }

    .share-tools__link:hover,
    .share-tools__link:focus-visible,
    .save-button:hover,
    .save-button:focus-visible,
    .related-strip__card:hover,
    .related-strip__card:focus-visible {
        transform: translateY(-2px);
        text-decoration: none;
    }

    .share-tools__link:hover,
    .share-tools__link:focus-visible {
        border-color: #9fc3ff;
        box-shadow: 0 16px 30px rgba(0, 94, 217, 0.16);
    }

.save-button {
    margin-left: auto;
    background: linear-gradient(180deg, #0b73ff 0%, #005fd7 100%);
    border-color: #005fd7;
    color: #fff;
    box-shadow: 0 14px 28px rgba(0, 94, 217, 0.24);
}

    .save-button:hover,
    .save-button:focus-visible {
        box-shadow: 0 18px 34px rgba(0, 94, 217, 0.32);
    }

.stat-card--neutral {
    background: linear-gradient(180deg, #0b73ff 0%, #005fd7 100%);
}

.stat-card--positive {
    background: linear-gradient(180deg, #159365 0%, #0d7a52 100%);
}

.stat-card--negative {
    background: linear-gradient(180deg, #f44336 0%, #d7271a 100%);
}

.stat-card--warning {
    background: linear-gradient(180deg, #ff9f1a 0%, #f17800 100%);
}

.share-tools__link::before,
.save-button::before {
    content: none !important;
    display: none !important;
}

.save-button {
    cursor: pointer;
}

    .save-button.is-saved {
        background: linear-gradient(180deg, #159365 0%, #0d7a52 100%);
        border-color: #0d7a52;
        box-shadow: 0 18px 34px rgba(13, 122, 82, 0.28);
    }

.article-grid {
    padding-bottom: 56px;
}

.card {
    margin-top: 20px;
    background: #fff;
    border: 1px solid #dce7f5;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 10px 22px rgba(18, 35, 61, 0.05);
}

    .card + .card {
        margin-top: 20px;
    }

.section-kicker {
    margin: 0 0 10px;
    color: #005ed9;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.section-title {
    margin: 0 0 14px;
    font-size: clamp(1.4rem, 2vw, 2rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
}

p,
li {
    color: #202a38;
    line-height: 1.8;
    font-size: 1rem;
}

strong {
    color: #10233f;
    font-weight: 800;
}

ul,
ol {
    padding-left: 20px;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
    font-size: 0.95rem;
}

th,
td {
    padding: 12px 10px;
    border-bottom: 1px solid #dce7f5;
    text-align: left;
    vertical-align: top;
}

th {
    color: #0f2340;
    background: #f0f6ff;
    font-weight: 800;
}

.note {
    padding: 14px 16px;
    border-left: 4px solid #005ed9;
    background: #f3f8ff;
    border-radius: 12px;
}

.table-card {
    margin: 18px 0;
    padding: 18px;
    max-width: 100%;
    border-radius: 18px;
    border: 1px solid #dce7f5;
    background: #fbfdff;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
}

    .table-card > strong {
        display: block;
        margin-bottom: 14px;
        color: #0f2340;
        font-size: 1rem;
        line-height: 1.5;
    }

    .table-card table {
        margin: 0;
        min-width: 640px;
    }

.feature-image {
    margin: 22px 0;
    overflow: hidden;
    border: 1px solid #dce7f5;
    border-radius: 18px;
    background: #fbfdff;
}

    .feature-image img {
        width: 100%;
        height: auto;
    }

    .feature-image figcaption {
        padding: 14px 16px 18px;
        color: #667891;
        font-size: 0.92rem;
        line-height: 1.7;
    }

.sources li {
    margin-bottom: 10px;
}

.sidebar {
    position: sticky;
    top: 70px;
    align-self: start;
}

    .sidebar > .nav-toggle {
        margin-bottom: 12px;
    }

.sidebar-nav-card {
    margin-bottom: 14px;
}

.article-nav {
    display: grid;
    gap: 8px;
}

    .article-nav a {
        display: block;
        padding: 10px 12px;
        border-radius: 12px;
        background: #f6f9fe;
        color: #415570;
        font-size: 0.9rem;
        font-weight: 700;
        line-height: 1.45;
        transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

        .article-nav a:hover,
        .article-nav a:focus-visible,
        .article-nav a.is-current {
            background: #d2e3ff;
            color: #10233f;
            text-decoration: none;
            transform: translateX(2px);
        }

.meta-list {
    display: grid;
    gap: 14px;
}

.meta-label {
    margin: 0 0 4px;
    color: #72849d;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
}

.meta-value {
    margin: 0;
    color: #10233f;
    font-size: 0.96rem;
    font-weight: 700;
}

.toc a {
    display: block;
    padding: 10px 12px;
    margin-bottom: 8px;
    border-radius: 10px;
    background: #f6f9fe;
    color: #415570;
    font-weight: 700;
}

.related-strip {
    margin-top: 26px;
    border-radius: 24px;
    border: 1px solid #dce7f5;
    background: linear-gradient(135deg, rgba(248, 251, 255, 0.98), rgba(233, 242, 255, 0.96));
    padding: 22px;
    box-shadow: 0 10px 22px rgba(18, 35, 61, 0.06);
}

.related-strip__title {
    margin: 0 0 8px;
    color: #10233f;
    font-size: 1rem;
    font-weight: 800;
}

.related-strip__intro {
    margin: 0 0 16px;
    color: #4f627c;
    font-size: 0.94rem;
    line-height: 1.7;
}

.related-strip__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.related-strip__card {
    display: block;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(0, 94, 217, 0.18);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 10px 22px rgba(18, 35, 61, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.related-strip__market {
    display: block;
    margin-bottom: 8px;
    color: #005fd7;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.related-strip__name {
    display: block;
    color: #10233f;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.35;
}

.related-strip__meta {
    display: block;
    margin-top: 8px;
    color: #667891;
    font-size: 0.8rem;
    line-height: 1.5;
}

.disclaimer {
    color: #667891;
    font-size: 0.92rem;
}

.footer {
    border-top: 1px solid #dce7f5;
    padding: 30px 0 48px;
    background: #fff;
    margin-top: 80px;
}

    .footer p {
        margin: 0;
        text-align: center;
        color: #667891;
        line-height: 1.8;
    }

.footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
}

    .footer-link a {
        color: #415570;
        font-size: 0.92rem;
        font-weight: 700;
    }

@media (max-width: 900px) {
    .article-grid {
        grid-template-columns: 1fr;
    }

    .key-stats,
    .related-strip__grid {
        grid-template-columns: 1fr 1fr;
    }

    .sidebar {
        position: static;
    }

    .hero,
    .card {
        padding: 22px;
    }

    .top-nav {
        justify-content: flex-start;
        max-width: 100%;
    }

    .header-nav-group {
        width: 100%;
        justify-content: flex-end;
    }

    .brand img {
        width: 152px;
    }

    .lede {
        font-size: 1.05rem;
        line-height: 1.75;
    }

    p,
    li,
    td,
    th {
        font-size: 1.02rem;
    }

    .section-title {
        font-size: 1.55rem;
    }

    .stat-value {
        font-size: 1.95rem;
    }

    .share-tools__link,
    .save-button {
        min-height: 48px;
        font-size: 0.98rem;
    }
}

@media (max-width: 640px) {
    .shell {
        width: min(100% - 20px, 1100px);
    }

    .site-header__inner {
        min-height: 68px;
        padding: 8px 0;
    }

    .header-nav-group {
        margin-left: auto;
        width: auto;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-toggle--header {
        position: relative;
        z-index: 22;
    }

    .nav-toggle--sidebar {
        position: fixed;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 24;
        width: 34px;
        min-width: 34px;
        height: 34px;
        padding: 0;
        border-radius: 0 10px 10px 0;
        justify-content: center;
        gap: 0;
        font-size: 0;
        box-shadow: 0 10px 24px rgba(18, 35, 61, 0.16);
    }

    .top-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        max-width: none;
        gap: 6px;
        padding: 10px;
        border-radius: 20px;
        box-shadow: 0 16px 34px rgba(18, 35, 61, 0.16);
    }

        .top-nav a {
            font-size: 0.72rem;
            padding: 10px 12px;
        }

        .top-nav.is-open {
            display: flex;
        }

    .sidebar {
        position: static;
    }

    .sidebar-nav-card {
        position: fixed;
        left: 0;
        top: 50%;
        transform: translate(-108%, -50%);
        width: min(280px, calc(100vw - 56px));
        margin: 0;
        z-index: 23;
        transition: transform 0.24s ease;
    }

        .sidebar-nav-card.is-open {
            transform: translate(0, -50%);
        }

        .sidebar-nav-card .meta-label {
            margin-bottom: 10px;
        }

        .sidebar-nav-card.card {
            box-shadow: 0 18px 38px rgba(18, 35, 61, 0.18);
        }

        .sidebar-nav-card:not(.is-open) .article-nav {
            pointer-events: none;
        }

    .hero,
    .card {
        padding: 20px 18px;
        border-radius: 22px;
    }

    .key-stats,
    .related-strip__grid {
        grid-template-columns: 1fr;
    }

    .article-actions {
        align-items: stretch;
    }

    .share-tools {
        gap: 8px;
    }

    .share-tools__link,
    .save-button {
        width: 100%;
        justify-content: center;
    }

    .save-button {
        margin-left: 0;
    }
}

.stat-card,
.stat-card--blue,
.stat-card--red,
.stat-card--orange,
.stat-card--green,
.stat-card--neutral,
.stat-card--positive,
.stat-card--negative,
.stat-card--warning,
.stat-card--gold:first-child,
.key-stats .stat-card:nth-child(2),
.key-stats .stat-card:nth-child(3) {
    background: linear-gradient(180deg, #0071ff 0%, #2381fc 100%);
}

.share-tools__link::before,
.save-button::before {
    content: none !important;
    display: none !important;
}

.save-button,
.save-button.is-saved {
    background: linear-gradient(180deg, #ffffff 0%, #eef5ff 100%);
    border-color: #cfe0fb;
    color: #10233f;
    box-shadow: 0 12px 26px rgba(0, 94, 217, 0.1);
}

    .save-button:hover,
    .save-button:focus-visible,
    .save-button.is-saved:hover,
    .save-button.is-saved:focus-visible {
        border-color: #9fc3ff;
        box-shadow: 0 16px 30px rgba(0, 94, 217, 0.16);
    }

.sources a, .sources a:hover, .sources a:active, .sources a:visited {
    color: #40536d !important;
}

@media (min-width: 1279px) {
  .card.sidebar-nav-card:not(.is-open) { display: none !important; }
  .card.sidebar-nav-card.is-open {
    display: block !important;
    position: fixed;
    left: 50%;
	margin-left: -497px !important;
	top: 50%;
    transform: translateY(-50%);
    width: min(280px, calc(100vw - 56px));
    margin: 0;
    z-index: 999999;
    box-shadow: 0 18px 38px rgba(18, 35, 61, 0.18);
  }
  .nav-toggle.nav-toggle--sidebar {
    display: flex !important;
    position: fixed;
	left: 50%;
	margin-left: -530px !important;
	top: 163px;
    transform: translateY(-50%);
    z-index: 999999;
    width: 33px;
	min-width: 33px;
	height: 41px;
    padding: 0;
    border-radius: 0 10px 10px 0;
    justify-content: center;
    gap: 0;
    font-size: 0;
    box-shadow: 0 10px 24px rgba(18, 35, 61, 0.16);
    float: none;
    margin-right: 0;
  }
  #maincontent { position: relative; overflow: visible; }
}