: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;
    }
}



/* Simuladores KX Copy */
.kx-simulators {
    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 10% 0%, rgba(209, 154, 50, .12), transparent 32%), radial-gradient(circle at 90% 12%, rgba(46, 140, 255, .12), transparent 34%);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .04);
    backdrop-filter: blur(18px);
}

.kx-simulators-heading {
    max-width: 980px;
    margin-bottom: 24px;
}

    .kx-simulators-heading h2,
    .kx-simulator-disclaimer h2 {
        margin: 10px 0 10px;
        font-size: clamp(34px, 3.2vw, 56px);
        line-height: .98;
        letter-spacing: -.055em;
        text-wrap: balance;
    }

    .kx-simulators-heading p,
    .kx-simulator-disclaimer p {
        max-width: 980px;
        margin: 0;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.6;
    }

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

.kx-simulator-card {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid rgba(123, 171, 218, .15);
    border-radius: 24px;
    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-simulator-card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 4px;
        background: linear-gradient(90deg, #8f5d18, #f1c66b, #154e99);
        opacity: .95;
    }

    .kx-simulator-card::after {
        content: "";
        position: absolute;
        inset: auto -50px -70px -50px;
        height: 140px;
        background: radial-gradient(ellipse at center, rgba(46, 140, 255, .18), transparent 70%);
        pointer-events: none;
    }

.kx-simulator-card-heading {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

    .kx-simulator-card-heading small,
    .kx-simulator-badge,
    .kx-slider-topline span,
    .kx-projection-grid small,
    .kx-passive-result small {
        color: var(--gold);
        font-size: 12px;
        font-weight: 950;
        letter-spacing: .09em;
        text-transform: uppercase;
    }

    .kx-simulator-card-heading h3 {
        margin: 8px 0 0;
        color: #fff;
        font-size: clamp(24px, 2vw, 34px);
        line-height: 1.02;
        letter-spacing: -.045em;
    }

.kx-simulator-badge {
    white-space: nowrap;
    padding: 9px 12px;
    border: 1px solid rgba(255, 224, 146, .24);
    border-radius: 999px;
    background: rgba(209, 154, 50, .08);
}

.kx-slider-block {
    position: relative;
    z-index: 1;
    padding: 18px;
    border: 1px solid rgba(123, 171, 218, .13);
    border-radius: 18px;
    background: rgba(4, 11, 22, .36);
}

.kx-slider-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

    .kx-slider-topline strong {
        color: #fff;
        font-size: clamp(24px, 2.2vw, 36px);
        line-height: 1;
        letter-spacing: -.04em;
    }

.kx-simulator-range {
    width: 100%;
    appearance: none;
    height: 12px;
    border-radius: 999px;
    outline: none;
    background: linear-gradient(90deg, rgba(209, 154, 50, .68), rgba(46, 140, 255, .72)), rgba(255, 255, 255, .08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08);
}

    .kx-simulator-range::-webkit-slider-thumb {
        appearance: none;
        width: 30px;
        height: 30px;
        border: 2px solid #fff6d6;
        border-radius: 50%;
        background: radial-gradient(circle, #fff 0 10%, var(--gold-2) 20%, var(--gold) 62%, #8f5d18 100%);
        box-shadow: 0 0 18px rgba(209, 154, 50, .48), 0 8px 18px rgba(0, 0, 0, .28);
        cursor: pointer;
    }

    .kx-simulator-range::-moz-range-thumb {
        width: 30px;
        height: 30px;
        border: 2px solid #fff6d6;
        border-radius: 50%;
        background: radial-gradient(circle, #fff 0 10%, var(--gold-2) 20%, var(--gold) 62%, #8f5d18 100%);
        box-shadow: 0 0 18px rgba(209, 154, 50, .48), 0 8px 18px rgba(0, 0, 0, .28);
        cursor: pointer;
    }

.kx-range-scale {
    position: relative;
    height: 20px;
    margin-top: 14px;
    color: rgba(226, 236, 248, .66);
    font-size: 12px;
    font-weight: 800;
}

    .kx-range-scale span {
        position: absolute;
        top: 0;
        white-space: nowrap;
    }

        .kx-range-scale span:nth-child(1) {
            left: 0;
            transform: translateX(0);
        }

        .kx-range-scale span:nth-child(2) {
            left: 33.333%;
            transform: translateX(-50%);
        }

        .kx-range-scale span:nth-child(3) {
            left: 66.667%;
            transform: translateX(-50%);
        }

        .kx-range-scale span:nth-child(4) {
            right: 0;
            transform: translateX(0);
        }

.kx-projection-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 16px;
}

    .kx-projection-grid article,
    .kx-passive-result {
        border: 1px solid rgba(123, 171, 218, .13);
        border-radius: 18px;
        background: rgba(4, 11, 22, .34);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
    }

    .kx-projection-grid article {
        padding: 18px 16px;
    }

    .kx-projection-grid strong {
        display: block;
        margin: 10px 0 0;
        color: #fff;
        font-size: clamp(22px, 1.8vw, 30px);
        line-height: 1;
        letter-spacing: -.04em;
    }

.kx-passive-result {
    position: relative;
    z-index: 1;
    margin-top: 16px;
    padding: 22px;
    background: radial-gradient(circle at top right, rgba(209, 154, 50, .12), transparent 44%), rgba(4, 11, 22, .38);
}

    .kx-passive-result strong {
        display: block;
        margin: 10px 0 8px;
        color: #fff;
        font-size: clamp(40px, 4vw, 64px);
        line-height: .94;
        letter-spacing: -.055em;
    }

    .kx-passive-result p {
        max-width: 520px;
        margin: 0;
        color: var(--muted);
        line-height: 1.5;
    }

    .kx-passive-result span {
        color: #fff2c7;
        font-weight: 900;
    }

.kx-simulator-disclaimer {
    margin-top: 22px;
    padding: 30px;
    border: 1px solid rgba(255, 80, 72, .30);
    border-radius: var(--radius-xl);
    background: linear-gradient(180deg, rgba(35, 18, 22, .62), rgba(5, 12, 23, .72)), radial-gradient(circle at 0% 0%, rgba(255, 80, 72, .16), transparent 34%), radial-gradient(circle at 92% 20%, rgba(209, 154, 50, .10), transparent 30%);
    box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, .04);
    backdrop-filter: blur(18px);
}

    .kx-simulator-disclaimer p strong {
        color: #fff2c7;
        font-weight: 900;
    }

    .kx-simulator-disclaimer .kx-section-eyebrow {
        color: #ffb0ac;
    }

    .kx-simulator-disclaimer h2 {
        max-width: 920px;
    }

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

@media (max-width: 820px) {
    .kx-simulators,
    .kx-simulator-disclaimer {
        padding: 22px;
        border-radius: 22px;
    }

    .kx-simulator-card {
        padding: 20px;
    }

    .kx-simulator-card-heading,
    .kx-slider-topline {
        flex-direction: column;
        align-items: flex-start;
    }

    .kx-simulator-badge {
        white-space: normal;
    }

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

    .kx-passive-result strong {
        font-size: clamp(34px, 12vw, 48px);
    }
}

@media (max-width: 520px) {
    .kx-range-scale {
        font-size: 10px;
    }

    .kx-slider-block,
    .kx-projection-grid article,
    .kx-passive-result article {
        padding: 14px;
    }
}

/* Página Começar / CTA da home */
.kx-start-path,
.kx-guide-hero,
.kx-guide-section,
.kx-guide-note,
.kx-faq-block {
    margin-top: 22px;
    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-start-path {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 24px;
    padding: 32px;
}

    .kx-start-path h2,
    .kx-guide-hero h1,
    .kx-guide-heading h2,
    .kx-guide-note h2,
    .kx-faq-block h2 {
        margin: 10px 0 10px;
        color: #fff;
        line-height: .98;
        letter-spacing: -.055em;
        text-wrap: balance;
    }

    .kx-start-path h2 {
        font-size: clamp(34px, 3vw, 54px);
    }

    .kx-start-path p,
    .kx-guide-hero p,
    .kx-guide-heading p,
    .kx-guide-note p,
    .kx-step-copy p,
    .kx-faq-list p {
        margin: 0;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.6;
    }

.kx-start-actions,
.kx-guide-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.kx-cta-secondary {
    border-color: rgba(123, 171, 218, .26);
    color: #e8f2ff;
    background: linear-gradient(135deg, rgba(46, 140, 255, .13), rgba(209, 154, 50, .05)), rgba(2, 8, 18, .62);
}

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

    .kx-guide-topbar .kx-brand-hero {
        width: min(100%, 320px);
    }

.kx-back-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border: 1px solid rgba(123, 171, 218, .18);
    border-radius: 999px;
    color: rgba(232, 240, 252, .82);
    font-size: 14px;
    font-weight: 800;
    background: rgba(2, 8, 17, .46);
}

.kx-guide-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .62fr);
    gap: 28px;
    align-items: stretch;
    padding: 36px;
}

    .kx-guide-hero h1 {
        max-width: 940px;
        font-size: clamp(46px, 5.2vw, 86px);
    }

    .kx-guide-hero p {
        max-width: 820px;
        margin-bottom: 24px;
        font-size: clamp(17px, 1.2vw, 22px);
    }

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

    .kx-guide-summary article {
        min-height: 118px;
        padding: 18px;
        border: 1px solid rgba(123, 171, 218, .15);
        border-radius: 18px;
        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-guide-summary small,
    .kx-step-card small {
        display: block;
        margin-bottom: 8px;
        color: var(--gold);
        font-size: 12px;
        font-weight: 950;
        letter-spacing: .09em;
        text-transform: uppercase;
    }

    .kx-guide-summary strong {
        display: block;
        color: #fff;
        font-size: clamp(24px, 2vw, 34px);
        line-height: 1;
        letter-spacing: -.04em;
    }

.kx-guide-section,
.kx-guide-note,
.kx-faq-block {
    padding: 32px;
}

.kx-guide-heading {
    max-width: 980px;
    margin-bottom: 22px;
}

    .kx-guide-heading h2,
    .kx-guide-note h2,
    .kx-faq-block h2 {
        font-size: clamp(34px, 3.2vw, 56px);
    }

.kx-step-list {
    display: grid;
    gap: 16px;
}

.kx-step-card,
.kx-faq-list details {
    overflow: hidden;
    border: 1px solid rgba(123, 171, 218, .15);
    border-radius: 22px;
    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-step-card summary,
    .kx-faq-list summary {
        cursor: pointer;
        list-style: none;
    }

        .kx-step-card summary::-webkit-details-marker,
        .kx-faq-list summary::-webkit-details-marker {
            display: none;
        }

    .kx-step-card summary {
        display: grid;
        grid-template-columns: 76px 1fr 48px;
        gap: 18px;
        align-items: center;
        padding: 22px;
    }

.kx-step-number {
    display: grid;
    place-items: center;
    width: 64px;
    height: 64px;
    border: 1px solid rgba(255, 224, 146, .28);
    border-radius: 18px;
    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-step-card strong {
    display: block;
    color: #fff;
    font-size: clamp(24px, 2vw, 34px);
    line-height: 1.05;
    letter-spacing: -.04em;
}

.kx-step-card summary p {
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.4;
}

.kx-step-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(83, 156, 255, .25);
    border-radius: 14px;
    color: #70bbff;
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(180deg, rgba(46, 140, 255, .22), rgba(7, 16, 28, .64));
}

.kx-step-card[open] .kx-step-toggle {
    color: var(--gold-2);
}

    .kx-step-card[open] .kx-step-toggle::before {
        content: "–";
    }

.kx-step-card[open] .kx-step-toggle {
    font-size: 0;
}

    .kx-step-card[open] .kx-step-toggle::before {
        font-size: 28px;
    }

.kx-step-body {
    display: grid;
    grid-template-columns: minmax(280px, .62fr) minmax(0, 1.38fr);
    gap: 20px;
    padding: 0 22px 22px;
}

.kx-step-copy {
    padding: 20px;
    border: 1px solid rgba(123, 171, 218, .13);
    border-radius: 18px;
    background: rgba(4, 11, 22, .34);
}

.kx-step-checklist {
    display: grid;
    gap: 10px;
    margin: 18px 0;
    padding: 0;
    list-style: none;
}

    .kx-step-checklist li {
        position: relative;
        padding-left: 28px;
        color: rgba(226, 236, 248, .82);
        line-height: 1.45;
    }

        .kx-step-checklist li::before {
            content: "✓";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--gold-2);
            font-weight: 950;
        }

.kx-step-warning {
    margin-top: 18px !important;
    padding: 14px;
    border: 1px solid rgba(255, 80, 72, .22);
    border-radius: 14px;
    background: rgba(255, 80, 72, .07);
}

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

.kx-step-media-grid-three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.kx-step-media {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(123, 171, 218, .13);
    border-radius: 18px;
    background: rgba(4, 11, 22, .34);
}

    .kx-step-media img {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 10;
        object-fit: cover;
        object-position: top center;
        background: #f4f6fb;
    }

    .kx-step-media figcaption {
        padding: 12px 14px 14px;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.4;
    }

.kx-guide-note {
    border-color: rgba(209, 154, 50, .28);
}

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

    .kx-faq-list summary {
        padding: 18px 20px;
        color: #fff;
        font-size: 18px;
        font-weight: 900;
    }

    .kx-faq-list p {
        padding: 0 20px 18px;
    }

@media (max-width: 1180px) {
    .kx-start-path,
    .kx-guide-hero,
    .kx-step-body {
        grid-template-columns: 1fr;
    }

    .kx-step-media-grid-three {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    .kx-start-path,
    .kx-guide-hero,
    .kx-guide-section,
    .kx-guide-note,
    .kx-faq-block {
        padding: 22px;
        border-radius: 22px;
    }

    .kx-guide-topbar {
        display: grid;
        justify-items: center;
    }

    .kx-guide-hero h1 {
        font-size: clamp(38px, 12vw, 58px);
    }

    .kx-guide-summary,
    .kx-step-media-grid,
    .kx-step-media-grid-three {
        grid-template-columns: 1fr;
    }

    .kx-step-card summary {
        grid-template-columns: 56px 1fr 38px;
        gap: 12px;
        padding: 18px;
    }

    .kx-step-number {
        width: 52px;
        height: 52px;
        border-radius: 15px;
        font-size: 20px;
    }

    .kx-step-toggle {
        width: 38px;
        height: 38px;
    }

    .kx-step-body {
        padding: 0 18px 18px;
    }

    .kx-step-copy {
        padding: 16px;
    }

    .kx-start-actions,
    .kx-guide-actions {
        width: 100%;
    }

        .kx-start-actions .kx-cta,
        .kx-guide-actions .kx-cta {
            width: 100%;
        }
}

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

    .kx-step-toggle {
        display: none;
    }

    .kx-guide-summary {
        gap: 10px;
    }
}



/* Ajustes página Começar: imagens clicáveis, instruções abaixo e lightbox */
.kx-step-body-media-first {
    grid-template-columns: 1fr;
}

.kx-step-media-grid-featured {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kx-step-copy-full {
    width: 100%;
}

.kx-step-checklist-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
}

.kx-step-copy-full .kx-cta {
    margin-top: 4px;
}

.kx-media-zoom {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    color: inherit;
    background: transparent;
    cursor: zoom-in;
}

    .kx-media-zoom img {
        transition: transform .25s ease, filter .25s ease;
    }

    .kx-media-zoom:hover img {
        transform: scale(1.025);
        filter: brightness(1.04);
    }

.kx-step-media {
    position: relative;
}

    .kx-step-media:has(.kx-media-zoom)::after {
        content: "Clique para ampliar";
        position: absolute;
        top: 12px;
        right: 12px;
        z-index: 2;
        padding: 7px 10px;
        border: 1px solid rgba(255, 224, 146, .28);
        border-radius: 999px;
        color: #fff2c7;
        font-size: 11px;
        font-weight: 900;
        letter-spacing: .05em;
        text-transform: uppercase;
        background: rgba(2, 8, 17, .74);
        box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
        pointer-events: none;
    }

.kx-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: rgba(1, 6, 14, .86);
    backdrop-filter: blur(12px);
}

    .kx-lightbox.is-open {
        display: flex;
    }

    .kx-lightbox img {
        display: block;
        width: auto;
        max-width: min(1200px, 96vw);
        max-height: 88vh;
        border: 1px solid rgba(123, 171, 218, .24);
        border-radius: 18px;
        background: #f4f6fb;
        box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
    }

.kx-lightbox-close {
    position: fixed;
    top: 22px;
    right: 22px;
    z-index: 101;
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 1px solid rgba(255, 224, 146, .30);
    border-radius: 16px;
    color: #fff2c7;
    font-size: 32px;
    line-height: 1;
    background: rgba(2, 8, 17, .78);
    cursor: pointer;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .32);
}

.kx-lightbox-open {
    overflow: hidden;
}

@media (max-width: 820px) {
    .kx-step-media-grid-featured,
    .kx-step-checklist-columns {
        grid-template-columns: 1fr;
    }

    .kx-lightbox {
        padding: 18px;
    }

    .kx-lightbox-close {
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
        border-radius: 14px;
        font-size: 28px;
    }
}

/* Reorganização visual da página Começar */
.kx-step-body-guided {
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
    align-items: start;
}

.kx-step-copy-side {
    align-self: start;
}

.kx-step-checklist-compact {
    gap: 12px;
}

.kx-step-copy p strong,
.kx-step-copy li strong,
.kx-faq-list p strong {
    display: inline;
    color: #fff2c7;
    font-size: inherit;
    line-height: inherit;
    letter-spacing: 0;
    text-transform: none;
}

.kx-step-media-grid-thumbs {
    align-self: start;
    justify-self: end;
    width: 100%;
    max-width: 760px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

    .kx-step-media-grid-thumbs .kx-step-media {
        border-radius: 16px;
    }

        .kx-step-media-grid-thumbs .kx-step-media img {
            aspect-ratio: 16 / 9;
            object-fit: contain;
            background: #f4f6fb;
        }

        .kx-step-media-grid-thumbs .kx-step-media figcaption {
            min-height: 54px;
            padding: 10px 12px 12px;
            font-size: 12px;
        }

.kx-step-media-zoomable::after {
    content: "Clique para ampliar";
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    padding: 6px 9px;
    border: 1px solid rgba(255, 224, 146, .28);
    border-radius: 999px;
    color: #fff2c7;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .05em;
    text-transform: uppercase;
    background: rgba(2, 8, 17, .74);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .24);
    pointer-events: none;
}

@media (max-width: 1180px) {
    .kx-step-body-guided {
        grid-template-columns: minmax(280px, .82fr) minmax(0, 1.18fr);
    }
}

@media (max-width: 820px) {
    .kx-step-body-guided,
    .kx-step-media-grid-thumbs {
        grid-template-columns: 1fr;
    }

    .kx-step-media-grid-thumbs {
        justify-self: stretch;
        max-width: none;
    }

    .kx-step-copy p strong,
    .kx-step-copy li strong,
    .kx-faq-list p strong {
        font-size: inherit;
    }

    .kx-step-media-grid-thumbs .kx-step-media figcaption {
        min-height: auto;
    }
}

/* Ajuste dos thumbs na página Começar */
.kx-step-body {
    align-items: start;
}

.kx-step-media-grid {
    align-items: start;
}

.kx-step-media {
    align-self: start;
}

.kx-step-media-grid-three .kx-step-media {
    height: auto;
}

    .kx-step-media-grid-three .kx-step-media figcaption {
        min-height: auto;
    }



/* Super Admin KX Copy - My Simulator */
.kx-admin-body {
    min-height: 100vh;
}

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

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

    .kx-admin-topbar .kx-brand-hero {
        width: min(100%, 320px);
    }

.kx-admin-hero,
.kx-admin-simulator,
.kx-admin-memory,
.kx-admin-disclaimer {
    margin-top: 22px;
    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-admin-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .36fr);
    gap: 24px;
    align-items: stretch;
    padding: 36px;
}

    .kx-admin-hero h1,
    .kx-admin-form-heading h2,
    .kx-admin-memory-heading h2,
    .kx-admin-disclaimer h2 {
        margin: 10px 0 10px;
        color: #fff;
        line-height: .98;
        letter-spacing: -.055em;
        text-wrap: balance;
    }

    .kx-admin-hero h1 {
        font-size: clamp(46px, 5vw, 86px);
    }

.kx-admin-form-heading h2,
.kx-admin-memory-heading h2,
.kx-admin-disclaimer h2 {
    font-size: clamp(34px, 3vw, 56px);
}

.kx-admin-hero p,
.kx-admin-form-heading p,
.kx-admin-result-card p,
.kx-admin-disclaimer p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.kx-admin-rate-card {
    display: grid;
    align-content: center;
    min-height: 190px;
    padding: 24px;
    border: 1px solid rgba(209, 154, 50, .32);
    border-radius: 24px;
    background: radial-gradient(circle at top right, rgba(209, 154, 50, .18), transparent 46%), rgba(4, 11, 22, .38);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .05);
}

    .kx-admin-rate-card small,
    .kx-admin-result-card small,
    .kx-admin-field span,
    .kx-admin-rate-pills span {
        color: var(--gold);
        font-size: 12px;
        font-weight: 950;
        letter-spacing: .09em;
        text-transform: uppercase;
    }

        .kx-admin-rate-card small.is-live {
            color: #8feeb6;
        }

    .kx-admin-rate-card strong {
        display: block;
        margin: 10px 0 6px;
        color: #fff;
        font-size: clamp(34px, 3vw, 56px);
        line-height: .94;
        letter-spacing: -.055em;
    }

    .kx-admin-rate-card span {
        color: var(--muted);
        font-size: 14px;
    }

.kx-admin-simulator,
.kx-admin-memory,
.kx-admin-disclaimer {
    padding: 32px;
}

.kx-admin-form-heading {
    max-width: 980px;
    margin-bottom: 24px;
}

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

.kx-admin-field {
    display: grid;
    gap: 9px;
    padding: 18px;
    border: 1px solid rgba(123, 171, 218, .13);
    border-radius: 18px;
    background: rgba(4, 11, 22, .34);
}

    .kx-admin-field em {
        color: var(--muted-2);
        font-style: normal;
        font-weight: 800;
        letter-spacing: .03em;
    }

    .kx-admin-field input {
        width: 100%;
        min-height: 52px;
        border: 1px solid rgba(123, 171, 218, .17);
        border-radius: 14px;
        outline: none;
        padding: 0 14px;
        color: #fff;
        font-size: 18px;
        font-weight: 800;
        background: rgba(2, 8, 17, .56);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04);
    }

        .kx-admin-field input:focus {
            border-color: rgba(255, 224, 146, .48);
            box-shadow: 0 0 0 3px rgba(209, 154, 50, .12);
        }

.kx-admin-calc-button {
    align-self: end;
    min-height: 88px;
    border-radius: 18px;
}

.kx-admin-results {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-top: 18px;
}

.kx-admin-result-card {
    position: relative;
    overflow: hidden;
    min-height: 180px;
    padding: 22px;
    border: 1px solid rgba(123, 171, 218, .13);
    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-admin-result-card::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 4px;
        background: linear-gradient(90deg, #154e99, #55d8ff, #1c66d5);
        opacity: .92;
    }

.kx-admin-result-primary::before {
    background: linear-gradient(90deg, #8f5d18, #f1c66b, #8f5d18);
}

.kx-admin-result-card strong {
    display: block;
    margin: 12px 0 10px;
    color: #fff;
    font-size: clamp(28px, 2.4vw, 44px);
    line-height: .96;
    letter-spacing: -.05em;
}

.kx-admin-result-card p.is-warning {
    color: #ffb0ac;
}

.kx-admin-memory-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.kx-admin-rate-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

    .kx-admin-rate-pills span {
        display: inline-flex;
        gap: 6px;
        align-items: center;
        min-height: 38px;
        padding: 0 12px;
        border: 1px solid rgba(123, 171, 218, .15);
        border-radius: 999px;
        background: rgba(4, 11, 22, .36);
    }

    .kx-admin-rate-pills strong {
        color: #fff2c7;
    }

.kx-admin-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(123, 171, 218, .13);
    border-radius: 20px;
    background: rgba(4, 11, 22, .32);
}

.kx-admin-table {
    width: 100%;
    min-width: 920px;
    border-collapse: collapse;
}

    .kx-admin-table th,
    .kx-admin-table td {
        padding: 15px 16px;
        border-bottom: 1px solid rgba(123, 171, 218, .10);
        text-align: left;
        white-space: nowrap;
    }

    .kx-admin-table th {
        color: var(--gold);
        font-size: 12px;
        font-weight: 950;
        letter-spacing: .09em;
        text-transform: uppercase;
    }

    .kx-admin-table td {
        color: rgba(235, 243, 255, .86);
        font-size: 14px;
        font-weight: 750;
    }

    .kx-admin-table tr:last-child td {
        border-bottom: 0;
    }

    .kx-admin-table tr.is-negative td:last-child {
        color: var(--red);
    }

.kx-admin-disclaimer {
    border-color: rgba(255, 80, 72, .30);
    background: linear-gradient(180deg, rgba(35, 18, 22, .62), rgba(5, 12, 23, .72)), radial-gradient(circle at 0% 0%, rgba(255, 80, 72, .16), transparent 34%), radial-gradient(circle at 92% 20%, rgba(209, 154, 50, .10), transparent 30%);
}

    .kx-admin-disclaimer .kx-section-eyebrow {
        color: #ffb0ac;
    }

    .kx-admin-disclaimer strong {
        color: #fff2c7;
    }

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

    .kx-admin-calc-button {
        min-height: 64px;
    }
}

@media (max-width: 900px) {
    .kx-admin-main {
        width: min(100% - 28px, var(--max));
        padding-top: 18px;
    }

    .kx-admin-topbar,
    .kx-admin-memory-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .kx-admin-hero,
    .kx-admin-field-grid,
    .kx-admin-results {
        grid-template-columns: 1fr;
    }

    .kx-admin-hero,
    .kx-admin-simulator,
    .kx-admin-memory,
    .kx-admin-disclaimer {
        padding: 22px;
        border-radius: 22px;
    }

    .kx-admin-rate-pills {
        justify-content: flex-start;
    }
}

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

    .kx-admin-rate-card strong,
    .kx-admin-result-card strong {
        font-size: 34px;
    }

    .kx-admin-field input {
        font-size: 16px;
    }
}

/* MySimulator: parâmetros e memória lado a lado no desktop */
.kx-admin-workspace {
    display: grid;
    grid-template-columns: minmax(460px, .86fr) minmax(560px, 1.14fr);
    gap: 22px;
    align-items: start;
    margin-top: 22px;
}

    .kx-admin-workspace .kx-admin-simulator,
    .kx-admin-workspace .kx-admin-memory {
        height: 100%;
        margin-top: 0;
    }

    .kx-admin-workspace .kx-admin-form-heading {
        margin-bottom: 18px;
    }

        .kx-admin-workspace .kx-admin-form-heading h2,
        .kx-admin-workspace .kx-admin-memory-heading h2 {
            font-size: clamp(28px, 2vw, 42px);
        }

    .kx-admin-workspace .kx-admin-field-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kx-admin-workspace .kx-admin-results {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kx-admin-workspace .kx-admin-result-card {
        min-height: 160px;
        padding: 20px;
    }

        .kx-admin-workspace .kx-admin-result-card strong {
            font-size: clamp(27px, 2.15vw, 38px);
        }

    .kx-admin-workspace .kx-admin-memory-heading {
        display: grid;
        align-items: start;
        gap: 14px;
    }

    .kx-admin-workspace .kx-admin-rate-pills {
        justify-content: flex-start;
    }

    .kx-admin-workspace .kx-admin-table {
        min-width: 860px;
    }

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

        .kx-admin-workspace .kx-admin-field-grid,
        .kx-admin-workspace .kx-admin-results {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
}

@media (max-width: 900px) {
    .kx-admin-workspace {
        gap: 18px;
    }

        .kx-admin-workspace .kx-admin-field-grid,
        .kx-admin-workspace .kx-admin-results {
            grid-template-columns: 1fr;
        }
}

/* MySimulator: parâmetros e memória lado a lado no desktop */
.kx-admin-workspace {
    display: grid;
    grid-template-columns: minmax(480px, .82fr) minmax(620px, 1.18fr);
    gap: 22px;
    align-items: start;
    margin-top: 22px;
}

    .kx-admin-workspace .kx-admin-simulator,
    .kx-admin-workspace .kx-admin-memory {
        height: 100%;
        margin-top: 0;
    }

    .kx-admin-workspace .kx-admin-form-heading {
        margin-bottom: 18px;
    }

        .kx-admin-workspace .kx-admin-form-heading h2,
        .kx-admin-workspace .kx-admin-memory-heading h2 {
            font-size: clamp(28px, 2vw, 42px);
        }

    .kx-admin-workspace .kx-admin-field-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kx-admin-workspace .kx-admin-results {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kx-admin-workspace .kx-admin-result-card {
        min-height: 156px;
        padding: 20px;
    }

        .kx-admin-workspace .kx-admin-result-card strong {
            font-size: clamp(27px, 2.15vw, 38px);
        }

    .kx-admin-workspace .kx-admin-memory-heading {
        display: grid;
        align-items: start;
        gap: 14px;
    }

    .kx-admin-workspace .kx-admin-rate-pills {
        justify-content: flex-start;
    }

    .kx-admin-workspace .kx-admin-table {
        min-width: 860px;
    }

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

        .kx-admin-workspace .kx-admin-field-grid,
        .kx-admin-workspace .kx-admin-results {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }
}

@media (max-width: 900px) {
    .kx-admin-workspace {
        gap: 18px;
    }

        .kx-admin-workspace .kx-admin-field-grid,
        .kx-admin-workspace .kx-admin-results {
            grid-template-columns: 1fr;
        }
}
