:root {
    --bg: #020713;
    --bg-2: #061326;
    --panel: rgba(8, 18, 34, .82);
    --panel-2: rgba(13, 28, 50, .72);
    --line: rgba(114, 169, 222, .18);
    --line-strong: rgba(214, 166, 71, .36);
    --text: #f8fbff;
    --muted: #a9b7ca;
    --muted-2: #78889f;
    --gold: #d19a32;
    --gold-2: #ffe092;
    --blue: #2e8cff;
    --blue-2: #55d8ff;
    --red: #ff5048;
    --green: #4ee18b;
    --radius-xl: 28px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow: 0 26px 70px rgba(0, 0, 0, .42);
    --max: 1760px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background:
        radial-gradient(circle at 72% 10%, rgba(44, 136, 255, .19), transparent 32rem),
        radial-gradient(circle at 12% 46%, rgba(210, 150, 49, .12), transparent 30rem),
        linear-gradient(180deg, #020711 0%, #061326 58%, #020713 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -4;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .8), rgba(0, 0, 0, .15) 72%, transparent);
}

body::after {
    content: "";
    position: fixed;
    inset: auto -12vw -28vh -12vw;
    height: 46vh;
    z-index: -3;
    background:
        linear-gradient(180deg, transparent, rgba(4, 16, 30, .92)),
        repeating-linear-gradient(90deg, rgba(46, 140, 255, .08) 0 1px, transparent 1px 80px),
        repeating-linear-gradient(0deg, rgba(209, 154, 50, .07) 0 1px, transparent 1px 44px);
    transform: perspective(650px) rotateX(62deg);
    transform-origin: center bottom;
    filter: blur(.2px);
}

img, svg {
    max-width: 100%;
}

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

button {
    font: inherit;
}

.kx-noise {
    pointer-events: none;
    position: fixed;
    inset: 0;
    z-index: -1;
    opacity: .24;
    mix-blend-mode: soft-light;
    background-image: radial-gradient(rgba(255, 255, 255, .32) .6px, transparent .6px);
    background-size: 5px 5px;
}

.kx-orb {
    position: fixed;
    border-radius: 999px;
    filter: blur(22px);
    pointer-events: none;
    z-index: -2;
}

.kx-orb-blue {
    width: 360px;
    height: 360px;
    right: 7vw;
    top: 7vh;
    background: rgba(37, 137, 255, .18);
}

.kx-orb-gold {
    width: 240px;
    height: 240px;
    left: -6vw;
    top: 46vh;
    background: rgba(209, 154, 50, .15);
}

.kx-header {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    width: min(var(--max), calc(100% - 64px));
    margin: 0 auto;
    padding: 24px 0 16px;
    backdrop-filter: blur(18px);
}

.kx-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(209, 154, 50, .28), rgba(46, 140, 255, .23), transparent);
}

.kx-brand {
    display: flex;
    align-items: center;
    width: 245px;
    min-width: 180px;
}

.kx-brand img {
    display: block;
    width: 100%;
    filter: drop-shadow(0 0 20px rgba(46, 140, 255, .10));
}

.kx-nav {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px;
    color: #d9e5f7;
    border: 1px solid rgba(123, 171, 218, .16);
    border-radius: 999px;
    background: rgba(2, 8, 17, .52);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
}

.kx-nav a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 14px;
    color: rgba(232, 240, 252, .86);
    transition: color .2s ease, background .2s ease;
}

.kx-nav a:hover {
    color: var(--text);
    background: rgba(46, 140, 255, .12);
}

.kx-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid rgba(255, 215, 135, .72);
    border-radius: 14px;
    color: #fff2c7;
    font-weight: 800;
    letter-spacing: .01em;
    background:
        linear-gradient(135deg, rgba(209, 154, 50, .18), rgba(46, 140, 255, .05)),
        rgba(2, 8, 18, .62);
    box-shadow: 0 0 0 1px rgba(255, 224, 146, .08) inset, 0 18px 40px rgba(0, 0, 0, .24), 0 0 24px rgba(209, 154, 50, .12);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.kx-cta:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 224, 146, .95);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .30), 0 0 34px rgba(209, 154, 50, .20);
}

.kx-cta-icon {
    color: var(--gold-2);
    font-size: .9rem;
}

.kx-brand-strip {
    display: flex;
    justify-content: flex-start;
    margin-bottom: 18px;
}

.kx-brand-hero {
    display: inline-flex;
    align-items: center;
    width: min(100%, 380px);
    padding: 0px 0px;
}

.kx-brand-hero img {
    display: block;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px rgba(46, 140, 255, .09));
}

main {
    width: min(var(--max), calc(100% - 64px));
    margin: 0 auto;
    padding: 20px 0 56px;
}

.kx-hero {
    display: grid;
    grid-template-columns: minmax(390px, .94fr) minmax(520px, 1.34fr);
    gap: 34px;
    align-items: stretch;
    min-height: 520px;
    padding-top: 18px;
}

.kx-hero-left {
    position: relative;
    padding: 40px 0 26px;
}

.kx-topline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 18px;
    color: #e4edf9;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: .08em;
    border: 1px solid rgba(115, 166, 213, .20);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(18, 37, 60, .75), rgba(5, 12, 23, .74));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
}

.kx-live-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, #fff 0 8%, var(--blue-2) 35%, var(--blue) 70%);
    box-shadow: 0 0 18px rgba(85, 216, 255, .78);
}


.kx-topline-chart {
    margin-top: 18px;
    width: fit-content;
    max-width: 100%;
    align-self: flex-start;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.kx-topline-chart:hover {
    transform: translateY(-1px);
    border-color: rgba(115, 166, 213, .34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06), 0 10px 26px rgba(0, 0, 0, .18);
}

.kx-rank-card {
    position: relative;
    display: grid;
    place-items: center;
    width: min(100%, 780px);
    min-height: 170px;
    margin: 10px 0 14px;
    padding: 24px 28px 22px;
    text-align: center;
    border: 1px solid rgba(209, 154, 50, .46);
    border-radius: 28px;
    background:
        radial-gradient(circle at 50% 0%, rgba(255, 224, 146, .18), transparent 58%),
        linear-gradient(180deg, rgba(18, 28, 46, .90), rgba(5, 11, 21, .84));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .06),
        0 24px 52px rgba(0, 0, 0, .25),
        0 0 34px rgba(209, 154, 50, .11);
    overflow: hidden;
}

.kx-rank-card::before,
.kx-rank-card::after {
    content: "❬";
    position: absolute;
    top: 34px;
    color: var(--gold);
    font-size: 24px;
    opacity: .8;
}

.kx-rank-card::before {
    left: 18px;
}

.kx-rank-card::after {
    content: "❭";
    right: 18px;
}

.kx-rank-card > span,
.kx-rank-card > small {
    color: #f3c66b;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
}

.kx-rank-card strong {
    display: block;
    font-size: clamp(54px, 5vw, 72px);
    line-height: .88;
}

.kx-rank-card small {
    display: block;
    margin-top: 8px;
    font-size: 16px;
    letter-spacing: .08em;
}


.kx-rank-card > span {
    opacity: .95;
}

.kx-rank-card > small {
    white-space: nowrap;
}

.kx-rank-card > small [data-kx="historyDays"] {
    font: inherit;
    color: #fff2c7;
}

.kx-rank-card strong {
    text-shadow: 0 0 34px rgba(255, 255, 255, .04);
}

.kx-rank-card + .kx-trust-strip {
    margin-top: 18px;
}

.kx-hero h1 {
    max-width: 800px;
    margin: 18px 0 20px;
    font-size: clamp(48px, 6vw, 96px);
    line-height: .94;
    letter-spacing: -.06em;
    text-wrap: balance;
}

.kx-hero h1 span {
    color: transparent;
    background: linear-gradient(180deg, #ffe8ae 0%, #d19a32 52%, #9f681e 100%);
    -webkit-background-clip: text;
    background-clip: text;
    text-shadow: 0 0 36px rgba(209, 154, 50, .12);
}

.kx-lead {
    max-width: 780px;
    margin: 0 0 30px;
    color: rgba(226, 236, 248, .78);
    font-size: clamp(17px, 1.3vw, 24px);
    line-height: 1.55;
}

.kx-trust-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    gap: 14px;
    margin-top: 26px;
}

.kx-trust-strip div {
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 12px;
    align-items: center;
    min-height: 78px;
    padding: 16px 14px;
    border-left: 1px solid rgba(209, 154, 50, .35);
    background: linear-gradient(90deg, rgba(209, 154, 50, .10), transparent 70%);
}

.kx-trust-strip svg {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 12px rgba(209, 154, 50, .18));
}

.kx-trust-strip span {
    color: #f5c66b;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.kx-trust-strip small {
    color: rgba(236, 244, 255, .72);
    font-size: 12px;
}

.kx-chart-card,
.kx-panel,
.kx-info-bar,
.kx-contact {
    border: 1px solid rgba(123, 171, 218, .18);
    background:
        linear-gradient(180deg, rgba(16, 31, 52, .72), rgba(5, 12, 23, .70)),
        radial-gradient(circle at 18% 0%, rgba(209, 154, 50, .10), transparent 30%),
        radial-gradient(circle at 85% 18%, rgba(46, 140, 255, .10), transparent 32%);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .04);
    backdrop-filter: blur(18px);
}

.kx-chart-card {
    display: flex;
    flex-direction: column;
    min-height: 510px;
    padding: 28px;
    border-radius: var(--radius-xl);
    align-self: stretch;
}

.kx-chart-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
}

.kx-section-eyebrow,
.kx-panel-heading span {
    color: #f0b64a;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 950;
    font-size: 13px;
}

.kx-chart-header strong {
    display: block;
    margin-top: 8px;
    font-size: clamp(28px, 2.5vw, 44px);
    letter-spacing: -.04em;
}

.kx-range-tabs {
    display: flex;
    align-items: center;
    padding: 5px;
    border: 1px solid rgba(123, 171, 218, .14);
    border-radius: 12px;
    background: rgba(2, 7, 16, .46);
}

.kx-range-tabs button {
    min-width: 58px;
    height: 38px;
    border: 0;
    border-right: 1px solid rgba(123, 171, 218, .14);
    color: rgba(238, 245, 255, .78);
    background: transparent;
    cursor: default;
}

.kx-range-tabs button:last-child {
    border-right: 0;
}

.kx-range-tabs .active {
    color: #fff;
    border-radius: 9px;
    background: linear-gradient(180deg, rgba(46, 140, 255, .42), rgba(16, 69, 144, .55));
    box-shadow: 0 0 22px rgba(46, 140, 255, .28), inset 0 1px 0 rgba(255, 255, 255, .12);
}

.kx-chart-wrap {
    position: relative;
    flex: 1;
    min-height: 390px;
}

.kx-profit-chart {
    width: 100%;
    height: 100%;
    min-height: 390px;
    overflow: visible;
}

.kx-grid-lines line {
    stroke: rgba(172, 205, 239, .12);
    stroke-width: 1;
    stroke-dasharray: 4 6;
}

.kx-grid-lines line.vertical {
    stroke: rgba(172, 205, 239, .07);
    stroke-dasharray: none;
}

.kx-profit-fill {
    fill: url(#profitArea);
}

.kx-profit-line {
    fill: none;
    stroke: #55baff;
    stroke-width: 3.5;
    filter: url(#lineGlow);
    stroke-linejoin: round;
    stroke-linecap: round;
}

.kx-axis-labels text {
    fill: rgba(234, 242, 252, .78);
    font-size: 14px;
    font-weight: 700;
}

.kx-profit-marker circle {
    fill: #9ed9ff;
    stroke: #ffffff;
    stroke-width: 2;
    filter: drop-shadow(0 0 12px rgba(85, 216, 255, .9));
}

.kx-profit-marker rect {
    fill: rgba(17, 76, 163, .85);
    stroke: rgba(119, 185, 255, .52);
}

.kx-profit-marker text {
    fill: white;
    font-size: 14px;
    font-weight: 900;
}

.kx-dashboard {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, .72fr) minmax(340px, .82fr);
    gap: 20px;
    margin-top: 22px;
}

.kx-panel {
    border-radius: var(--radius-xl);
    padding: 24px;
}

.kx-panel-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.kx-panel-heading small {
    color: var(--muted-2);
    font-size: 12px;
    font-weight: 700;
}

.kx-panel-heading small.is-live {
    color: #8feeb6;
}

.kx-metric-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.kx-metric,
.kx-risk-grid article {
    position: relative;
    overflow: hidden;
    min-height: 150px;
    padding: 18px;
    border: 1px solid rgba(123, 171, 218, .15);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(25, 41, 64, .72), rgba(7, 13, 24, .62));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

.kx-metric::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    opacity: .9;
    background: var(--accent, var(--blue));
}

.kx-metric::after {
    content: "";
    position: absolute;
    inset: auto -30px -36px -30px;
    height: 70px;
    background: radial-gradient(ellipse at center, var(--accent-soft, rgba(46, 140, 255, .22)), transparent 70%);
}

.kx-tone-gold {
    --accent: linear-gradient(90deg, #8f5d18, #f1c66b, #8f5d18);
    --accent-soft: rgba(209, 154, 50, .25);
}

.kx-tone-blue {
    --accent: linear-gradient(90deg, #154e99, #55d8ff, #1c66d5);
    --accent-soft: rgba(46, 140, 255, .25);
}

.kx-tone-red {
    --accent: linear-gradient(90deg, #ac231e, #ff625b, #ac231e);
    --accent-soft: rgba(255, 80, 72, .22);
}

.kx-tone-neutral {
    --accent: linear-gradient(90deg, #31435d, #90abc9, #31435d);
    --accent-soft: rgba(144, 171, 201, .12);
}

.kx-metric p,
.kx-risk-grid p {
    margin: 0 0 12px;
    color: rgba(224, 236, 249, .76);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.kx-metric strong,
.kx-risk-grid strong {
    position: relative;
    z-index: 1;
    display: block;
    font-size: clamp(27px, 2.2vw, 42px);
    line-height: 1;
    letter-spacing: -.04em;
}

.kx-metric small {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 9px;
    color: var(--muted);
    font-size: 13px;
}

.kx-tone-red strong,
.kx-red-value strong,
.kx-red-value {
    color: var(--red);
}

.kx-spark {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 9px;
    z-index: 1;
    width: calc(100% - 28px);
    height: 42px;
}

.kx-spark path {
    fill: none;
    stroke: var(--spark, #55d8ff);
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px rgba(85, 216, 255, .35));
}

.kx-spark[data-spark="gold"] path {
    --spark: #e4ae4d;
    filter: drop-shadow(0 0 8px rgba(228, 174, 77, .32));
}

.kx-spark[data-spark="red"] path {
    --spark: #ff5048;
    filter: drop-shadow(0 0 8px rgba(255, 80, 72, .28));
}

.kx-risk-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.kx-risk-grid article {
    min-height: 118px;
}

.kx-risk-grid article:nth-last-child(-n+2) {
    grid-column: span 1;
}

.kx-risk-grid strong {
    font-size: clamp(28px, 2vw, 38px);
}

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

.kx-reading-list > div {
    display: grid;
    grid-template-columns: 52px 1fr;
    align-items: center;
    gap: 14px;
}

.kx-reading-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(83, 156, 255, .25);
    border-radius: 16px;
    color: #70bbff;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(180deg, rgba(46, 140, 255, .23), rgba(7, 16, 28, .64));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.kx-reading-list p {
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.35;
}

.kx-reading-list strong {
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 16px;
}

.kx-info-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 22px;
    padding: 22px;
    border-radius: 22px;
}

.kx-info-bar article {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 14px;
    min-height: 72px;
    padding: 0 20px;
    border-right: 1px solid rgba(209, 154, 50, .35);
}

.kx-info-bar article:last-child {
    border-right: 0;
}

.kx-info-bar span {
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--gold-2);
    font-size: 23px;
}

.kx-info-bar small {
    display: block;
    margin-bottom: 5px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 950;
    font-size: 12px;
}

.kx-info-bar strong {
    color: #f8fbff;
    font-size: 16px;
}

.kx-contact {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    margin-top: 22px;
    padding: 30px;
    border-radius: var(--radius-xl);
}

.kx-contact h2 {
    margin: 10px 0 8px;
    font-size: clamp(32px, 3vw, 54px);
    letter-spacing: -.05em;
}

.kx-contact p {
    max-width: 840px;
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
    font-size: 16px;
}

.kx-footer {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    width: min(var(--max), calc(100% - 64px));
    margin: 0 auto 34px;
    color: rgba(222, 231, 243, .62);
    text-align: center;
    font-size: 14px;
}

.kx-footer span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.kx-footer span::before {
    content: "◇";
    color: rgba(209, 154, 50, .78);
}

@media (max-width: 1420px) {
    .kx-header,
    main,
    .kx-footer {
        width: min(100% - 40px, var(--max));
    }

    .kx-dashboard {
        grid-template-columns: 1fr 1fr;
    }

    .kx-performance-panel {
        grid-column: 1 / -1;
    }

    .kx-metric-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 1180px) {
    .kx-header {
        grid-template-columns: 1fr auto;
    }

    .kx-nav {
        order: 3;
        grid-column: 1 / -1;
        justify-self: stretch;
        justify-content: center;
    }

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

    .kx-hero-left {
        padding-bottom: 8px;
    }

    .kx-rank-card {
        right: 0;
    }

    .kx-info-bar {
        grid-template-columns: repeat(2, 1fr);
    }

    .kx-info-bar article {
        border-right: 0;
        border-bottom: 1px solid rgba(209, 154, 50, .25);
        padding: 18px;
    }

    .kx-info-bar article:last-child {
        grid-column: 1 / -1;
        border-bottom: 0;
    }
}

@media (max-width: 820px) {
    body::before {
        background-size: 44px 44px;
    }

    .kx-header,
    main,
    .kx-footer {
        width: min(100% - 28px, var(--max));
    }

    .kx-header {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 16px 0 12px;
    }

    .kx-brand {
        width: 190px;
    }

    .kx-brand-strip {
        justify-content: center;
        margin-bottom: 14px;
    }

    .kx-brand-hero {
        width: min(100%, 310px);
        padding: 12px 14px;
        border-radius: 24px;
    }

    .kx-nav {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 6px;
        scrollbar-width: none;
    }

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

    .kx-nav a {
        white-space: nowrap;
        padding: 0 14px;
        font-size: 13px;
    }

    .kx-cta-header {
        width: 100%;
    }

    main {
        padding-top: 12px;
    }

    .kx-hero {
        gap: 18px;
        min-height: auto;
        padding-top: 0;
    }

    .kx-hero-left {
        padding: 20px 0 0;
    }

    .kx-topline {
        font-size: 11px;
        width: 100%;
        justify-content: center;
        padding: 0 12px;
    }

    .kx-topline-chart {
        margin-top: 14px;
        width: 100%;
    }

    .kx-rank-card {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        min-height: auto;
        margin-top: 10px;
        padding: 18px 16px;
        grid-template-columns: auto auto auto;
        gap: 8px;
    }

    .kx-rank-card::before,
    .kx-rank-card::after {
        display: none;
    }

    .kx-rank-card strong {
        font-size: 42px;
    }

    .kx-hero h1 {
        margin-top: 22px;
        font-size: clamp(42px, 14vw, 64px);
    }

    .kx-lead {
        font-size: 16px;
    }

    .kx-trust-strip {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .kx-trust-strip div {
        grid-template-columns: 30px 1fr;
        min-height: 74px;
        padding: 12px;
    }

    .kx-trust-strip svg {
        width: 28px;
        height: 28px;
    }

    .kx-trust-strip span,
    .kx-trust-strip small {
        font-size: 11px;
    }

    .kx-chart-card,
    .kx-panel,
    .kx-contact {
        border-radius: 22px;
        padding: 18px;
    }

    .kx-chart-card {
        min-height: auto;
    }

    .kx-chart-header {
        flex-direction: column;
    }

    .kx-topline-chart {
        justify-content: center;
    }

    .kx-range-tabs {
        width: 100%;
        overflow-x: auto;
    }

    .kx-range-tabs button {
        flex: 1;
        min-width: 52px;
        height: 34px;
    }

    .kx-chart-wrap,
    .kx-profit-chart {
        min-height: 300px;
    }

    .kx-dashboard {
        grid-template-columns: 1fr;
    }

    .kx-metric-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .kx-metric,
    .kx-risk-grid article {
        min-height: 132px;
        padding: 15px;
    }

    .kx-metric p,
    .kx-risk-grid p {
        font-size: 11px;
    }

    .kx-metric strong,
    .kx-risk-grid strong {
        font-size: 42px;
    }

    .kx-metric small {
        font-size: 11px;
    }

    .kx-risk-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .kx-risk-grid article:first-child {
        grid-column: 1 / -1;
    }

    .kx-reading-list > div {
        grid-template-columns: 44px 1fr;
    }

    .kx-reading-icon {
        width: 44px;
        height: 44px;
        border-radius: 14px;
    }

    .kx-info-bar {
        grid-template-columns: 1fr;
        padding: 16px 14px;
    }

    .kx-info-bar article,
    .kx-info-bar article:last-child {
        grid-column: auto;
        border-bottom: 1px solid rgba(209, 154, 50, .22);
        padding: 14px 8px;
    }

    .kx-info-bar article:last-child {
        border-bottom: 0;
    }

    .kx-contact {
        grid-template-columns: 1fr;
    }

    .kx-contact .kx-cta {
        width: 100%;
    }
}

@media (max-width: 520px) {
    .kx-header,
    main,
    .kx-footer {
        width: min(100% - 22px, var(--max));
    }

    .kx-metric-grid,
    .kx-risk-grid,
    .kx-trust-strip {
        grid-template-columns: 1fr;
    }

    .kx-hero h1 {
        font-size: 42px;
    }

    .kx-metric {
        min-height: 125px;
    }

    .kx-spark {
        opacity: .65;
    }

    .kx-axis-labels text {
        font-size: 12px;
    }
}

.kx-benefits {
    margin-top: 22px;
    padding: 32px;
    border: 1px solid rgba(123, 171, 218, .18);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(16, 31, 52, .72), rgba(5, 12, 23, .70)), radial-gradient(circle at 12% 0%, rgba(209, 154, 50, .12), transparent 34%), radial-gradient(circle at 88% 18%, rgba(46, 140, 255, .10), transparent 34%);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .04);
    backdrop-filter: blur(18px);
}

.kx-benefits-heading {
    max-width: 920px;
    margin-bottom: 24px;
}

    .kx-benefits-heading h2 {
        margin: 10px 0 10px;
        font-size: clamp(34px, 3.4vw, 58px);
        line-height: .98;
        letter-spacing: -.055em;
        text-wrap: balance;
    }

    .kx-benefits-heading p {
        max-width: 820px;
        margin: 0;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.6;
    }

.kx-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.kx-benefit-card {
    position: relative;
    overflow: hidden;
    min-height: 240px;
    padding: 22px;
    border: 1px solid rgba(123, 171, 218, .15);
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(25, 41, 64, .72), rgba(7, 13, 24, .62));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

    .kx-benefit-card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 4px;
        background: linear-gradient(90deg, #8f5d18, #f1c66b, #154e99);
        opacity: .95;
    }

    .kx-benefit-card::after {
        content: "";
        position: absolute;
        inset: auto -40px -54px -40px;
        height: 110px;
        background: radial-gradient(ellipse at center, rgba(46, 140, 255, .18), transparent 70%);
    }

.kx-benefit-featured::after {
    background: radial-gradient(ellipse at center, rgba(209, 154, 50, .24), transparent 70%);
}

.kx-benefit-icon {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 224, 146, .28);
    border-radius: 16px;
    color: var(--gold-2);
    font-size: 24px;
    font-weight: 950;
    background: linear-gradient(180deg, rgba(209, 154, 50, .18), rgba(7, 16, 28, .64));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

.kx-benefit-card small {
    position: relative;
    z-index: 1;
    display: block;
    margin-bottom: 10px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.kx-benefit-card h3 {
    position: relative;
    z-index: 1;
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(20px, 1.5vw, 28px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.kx-benefit-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.5;
}

@media (max-width: 1180px) {
    .kx-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .kx-benefits {
        padding: 22px;
        border-radius: 22px;
    }

    .kx-benefits-heading h2 {
        font-size: clamp(30px, 9vw, 44px);
    }

    .kx-benefit-card {
        min-height: 210px;
        padding: 18px;
    }
}

@media (max-width: 520px) {
    .kx-benefits-grid {
        grid-template-columns: 1fr;
    }

    .kx-benefit-card {
        min-height: auto;
    }
}

