/* ===== Kaassu modern home (scoped under .khome) ===== */
.khome {
    --brand: #481088;
    --brand-2: #7a2bc9;
    --brand-3: #7a2bc9;
    --brand-dark: #350c66;
    --green: #f09028;
    --green-soft: #f7a63c;
    --ink: #15132b;
    --muted: #6b7280;
    --line: #ece9ff;
    --khbg: #f5f3fc;
    --radius: 22px;
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    color: var(--ink);
    background: var(--khbg);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.khome * {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

.khome .wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px
}

.khome a {
    text-decoration: none;
    color: inherit
}

.khome img {
    max-width: 100%
}

/* announce strip */
.khome .kh-anno {
    background: linear-gradient(90deg, var(--brand), var(--brand-3), var(--brand-2));
    background-size: 200% 100%;
    animation: khSlide 8s linear infinite;
    color: #fff;
    text-align: center;
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 16px
}

@keyframes khSlide {
    to {
        background-position: 200% 0
    }
}

.khome .kh-anno i {
    color: var(--green-soft);
    margin-right: 6px
}

/* HERO */
.khome .hero {
    position: relative;
    overflow: hidden;
    padding: 70px 0 120px;
    background: linear-gradient(125deg, #2a0a52 0%, #481088 42%, #7a2bc9 78%, #8a3bd6 100%)
}

.khome .mesh {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .9
}

.khome .mesh span {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .55;
    mix-blend-mode: screen
}

.khome .m1 {
    width: 420px;
    height: 420px;
    background: #7a2bc9;
    top: -80px;
    left: -60px;
    animation: khFloat1 12s ease-in-out infinite
}

.khome .m2 {
    width: 380px;
    height: 380px;
    background: #f7a63c;
    bottom: -120px;
    right: 6%;
    animation: khFloat2 14s ease-in-out infinite
}

.khome .m3 {
    width: 300px;
    height: 300px;
    background: #c084fc;
    top: 30%;
    right: -60px;
    animation: khFloat1 16s ease-in-out infinite
}

@keyframes khFloat1 {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(30px, 40px)
    }
}

@keyframes khFloat2 {

    0%,
    100% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(-40px, -30px)
    }
}

.khome .grid-overlay {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: .14;
    background-image: linear-gradient(rgba(255, 255, 255, .4) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .4) 1px, transparent 1px);
    background-size: 46px 46px;
    -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000, transparent 75%);
    mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, #000, transparent 75%)
}

.khome .hero .wrap {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.55fr .8fr;
    gap: 48px;
    align-items: center
}

.khome .hero-left {
    max-width: 720px
}

.khome .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .25);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 22px;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px)
}

.khome .pill .live {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green-soft);
    animation: khPing 1.6s infinite
}

@keyframes khPing {
    0% {
        box-shadow: 0 0 0 0 rgba(247, 166, 60, .6)
    }

    70% {
        box-shadow: 0 0 0 8px rgba(247, 166, 60, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(247, 166, 60, 0)
    }
}

.khome .hero h1 {
    color: #fff;
    font-weight: 900;
    font-size: 54px;
    line-height: 1.06;
    letter-spacing: -1.5px;
    margin-bottom: 18px
}

.khome .hero h1 .hl {
    background: linear-gradient(90deg, #f7a63c, #ffc879);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.khome #khTyped {
    border-right: 3px solid var(--green-soft);
    padding-right: 3px
}

.khome .hero-sub {
    color: rgba(255, 255, 255, .9);
    font-size: 18.5px;
    margin-bottom: 28px;
    font-weight: 500;
    max-width: 520px
}

.khome .search {
    background: #fff;
    border-radius: 60px;
    padding: 8px 8px 8px 22px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 24px 60px rgba(20, 10, 60, .4);
    max-width: 560px;
    margin: 0
}

.khome .search .fa-search {
    color: #9aa0b4;
    font-size: 16px
}

.khome .search input {
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 15px;
    color: #333;
    padding: 14px 6px;
    min-width: 0;
    box-shadow: none
}

.khome .search .gen {
    border: 0;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 30px;
    white-space: nowrap;
    cursor: pointer;
    transition: .2s
}

.khome .search .gen:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(42, 10, 82, .5)
}

.khome .hero-help {
    color: rgba(255, 255, 255, .82);
    font-size: 13px;
    margin-top: 14px
}

.khome .hero-help b {
    color: #fff
}

.khome .hero-actions {
    margin-top: 20px;
    display: flex;
    gap: 12px
}

.khome .hero-actions .btn {
    border-radius: 50px;
    padding: 12px 26px;
    font-weight: 600;
    border: 0;
    cursor: pointer;
    font-size: 14px
}

.khome .hero-actions .btn-buy {
    background: var(--green-soft);
    color: #4a2600
}

.khome .hero-actions .btn-copy {
    background: rgba(255, 255, 255, .16);
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff
}

.khome .stat-strip {
    display: flex;
    gap: 34px;
    margin-top: 36px
}

.khome .stat-strip .s .n {
    color: #fff;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -.5px
}

.khome .stat-strip .s .l {
    color: rgba(255, 255, 255, .78);
    font-size: 12.5px;
    font-weight: 500
}

/* ===== Price Tip ===== */

.khome .price-tip {
    display: flex;
    align-items: flex-start;
    gap: 9px;

    width: 100%;
    max-width: 582px;

    margin: 20px 0 0;
    padding: 10px 10px;

    box-sizing: border-box;

    border-radius: 16px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .24);

    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.khome .price-tip>i {
    flex: 0 0 auto;
    margin-top: 3px;

    color: var(--green-soft);
    font-size: 15px;
}

.khome .pt-text {
    min-width: 0;

    color: rgba(255, 255, 255, .92);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.55;

    overflow-wrap: anywhere;
}

.khome .pt-text b {
    color: #fff;
    font-weight: 700;
}

.khome .price-tip code {
    display: inline-block;

    background: rgba(255, 255, 255, .18);
    color: #fff;

    padding: 2px 7px;
    border-radius: 6px;

    font-size: 12px;
    font-family: inherit;
    font-weight: 700;

    white-space: nowrap;
}

.khome .pt-store {
    display: inline-flex;
    align-items: center;

    color: var(--green-soft);
    font-weight: 800;
}

.khome .pt-caret {
    display: inline-block;

    width: 2px;
    height: 1em;

    margin-left: 2px;

    background: var(--green-soft);

    animation: ptBlink 1s steps(1) infinite;
}

@keyframes ptBlink {

    0%,
    49% {
        opacity: 1
    }

    50%,
    100% {
        opacity: 0
    }
}


/* ===== Price Tip Mobile ===== */

@media(max-width:767px) {

    .khome .price-tip {
        width: 100%;
        max-width: 100%;

        margin-top: 20px;
        padding: 9px 12px;

        gap: 7px;
        border-radius: 14px;
    }

    .khome .price-tip>i {
        font-size: 14px;
    }

    .khome .pt-text {
        font-size: 12px;
        line-height: 1.5;
    }

    .khome .price-tip code {
        font-size: 11px;
        padding: 2px 6px;
    }
}


/* ===== Very Small Screens ===== */

@media(max-width:380px) {

    .khome .price-tip {
        padding: 8px 10px;
    }

    .khome .pt-text {
        font-size: 11px;
    }

    .khome .price-tip code {
        font-size: 10px;
        padding: 2px 5px;
    }
}


/* ===== Accessibility ===== */

@media(prefers-reduced-motion:reduce) {

    .khome .pt-caret {
        animation: none;
    }
}




/* floating cards */
.khome .hero-right {
    position: relative;
    height: 420px
}

.khome .fcard {
    position: absolute;
    background: rgba(255, 255, 255, .96);
    border-radius: 18px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 18px 44px rgba(20, 10, 60, .28);
    width: 230px;
    animation: khBob 5s ease-in-out infinite
}

.khome .fcard .ic {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    flex: 0 0 auto
}

.khome .fcard .t {
    font-size: 13px;
    font-weight: 700
}

.khome .fcard .sm {
    font-size: 11.5px;
    color: var(--muted)
}

.khome .fcard .amt {
    margin-left: auto;
    font-weight: 800;
    color: #22B14C;
    font-size: 15px
}

.khome .fc1 {
    top: 20px;
    left: 30px;
    animation-delay: 0s
}

.khome .fc2 {
    top: 150px;
    right: 0;
    animation-delay: 1s
}

.khome .fc3 {
    bottom: 30px;
    left: 10px;
    animation-delay: 2s
}

.khome .ring {
    position: absolute;
    top: 120px;
    left: 120px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: conic-gradient(var(--green-soft) 0 75%, rgba(255, 255, 255, .2) 75% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(20, 10, 60, .3);
    animation: khBob 6s ease-in-out infinite
}

.khome .ring::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    background: #481088
}

.khome .ring .rc {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff
}

.khome .ring .rc b {
    font-size: 30px;
    font-weight: 900;
    display: block;
    line-height: 1
}

.khome .ring .rc small {
    font-size: 11px;
    opacity: .85
}

@keyframes khBob {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-14px)
    }
}

.khome .wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2
}

.khome .wave svg {
    width: 100%;
    height: 80px;
    display: block
}

@media(max-width:960px) {
    .khome .hero .wrap {
        grid-template-columns: 1fr
    }

    .khome .hero-right {
        display: none
    }
}

@media(max-width:767px) {
    .khome .hero {
        padding: 50px 0 80px
    }

    .khome .hero h1 {
        font-size: 34px
    }

    .khome .hero-sub {
        font-size: 15px
    }

    .khome .search {
        flex-wrap: wrap;
        border-radius: 22px;
        padding: 12px
    }

    .khome .search input {
        flex: 1 1 100%
    }

    .khome .search .gen {
        width: 100%
    }

    .khome .stat-strip {
        gap: 18px;
        flex-wrap: wrap
    }

    .khome .stat-strip .s .n {
        font-size: 23px
    }

    .khome .search .fa-search {
        display: none
    }
}

/* price history */
.khome .price-history {
    margin-top: 26px;
    background: #fff;
    border-radius: 26px;
    padding: 26px 26px 22px;
    border: 1px solid var(--line);
    box-shadow: 0 22px 50px rgba(20, 10, 60, .16);
    position: relative;
    overflow: hidden
}

.khome .price-history::before {
    content: "";
    position: absolute;
    top: -90px;
    right: -90px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(122, 43, 201, .08), transparent 70%);
    pointer-events: none
}

.khome .ph-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 22px;
    position: relative;
    z-index: 2
}

.khome .ph-title {
    display: flex;
    align-items: center;
    gap: 12px
}

.khome .ph-title .ic {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    flex: 0 0 auto;
    color: #fff;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 10px 20px rgba(72, 16, 136, .3)
}

.khome .ph-title h4 {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.2px;
    color: var(--ink)
}

.khome .ph-title .sub {
    font-size: 12.5px;
    color: var(--muted);
    font-weight: 500;
    margin-top: 1px
}

.khome .ph-stats {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.khome .ph-chip {
    display: flex;
    flex-direction: column;
    gap: 1px;
    padding: 9px 15px;
    border-radius: 14px;
    background: #f8f6ff;
    border: 1px solid var(--line);
    min-width: 86px
}

.khome .ph-chip .l {
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: #a29ac0
}

.khome .ph-chip .v {
    font-size: 15px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.2px
}

.khome .ph-chip.low .v {
    color: #1D9E75
}

.khome .ph-chip.high .v {
    color: #d64545
}

.khome .ph-chip.now {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border-color: transparent
}

.khome .ph-chip.now .l {
    color: rgba(255, 255, 255, .72)
}

.khome .ph-chip.now .v {
    color: #fff
}

.khome .ph-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    position: relative;
    z-index: 2
}

.khome .ph-f {
    border: 1px solid var(--line);
    background: #f8f6ff;
    color: #6b6483;
    font-family: inherit;
    font-size: 12.5px;
    font-weight: 700;
    padding: 7px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: .2s
}

.khome .ph-f:hover {
    border-color: #d9d2ff;
    color: var(--brand)
}

.khome .ph-f.on {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 18px rgba(72, 16, 136, .26)
}

.khome .ph-canvas-wrap {
    height: 320px;
    position: relative;
    z-index: 2
}

@media(max-width:600px) {
    .khome .price-history {
        padding: 20px 16px 16px;
        border-radius: 20px;
        margin-top: 20px
    }

    .khome .ph-head {
        flex-direction: column;
        align-items: flex-start
    }

    .khome .ph-stats {
        width: 100%
    }

    .khome .ph-chip {
        flex: 1;
        min-width: 0;
        padding: 8px 10px
    }

    .khome .ph-filters {
        gap: 6px
    }

    .khome .ph-f {
        padding: 6px 12px;
        font-size: 11.5px
    }

    .khome .ph-canvas-wrap {
        height: 250px
    }
}

/* marquee */
.khome .marquee {
    background: #fff;
    border-bottom: 1px solid #f0eef8;
    padding: 20px 0;
    overflow: hidden;
    position: relative;
    z-index: 4
}

.khome .marquee::before,
.khome .marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2
}

.khome .marquee::before {
    left: 0;
    background: linear-gradient(90deg, #fff, transparent)
}

.khome .marquee::after {
    right: 0;
    background: linear-gradient(270deg, #fff, transparent)
}

.khome .marquee .track {
    display: flex;
    gap: 52px;
    align-items: center;
    width: max-content;
    animation: khScroll 26s linear infinite
}

@keyframes khScroll {
    to {
        transform: translateX(-50%)
    }
}

.khome .marquee .brand {
    font-weight: 800;
    font-size: 21px;
    color: #c3c0d6;
    white-space: nowrap;
    letter-spacing: -.5px;
    transition: .2s
}

.khome .marquee .brand:hover {
    color: var(--brand)
}

/* section */
.khome section[id],
.khome .hero[id] {
    scroll-margin-top: 88px
}

.khome .sec {
    padding: 50px 0
}

.khome .sec-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px
}

.khome .eyebrow {
    display: inline-block;
    color: var(--brand);
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px
}

.khome .sec-head h2 {
    font-size: 40px;
    font-weight: 800;
    letter-spacing: -.9px;
    margin-bottom: 12px;
    color: var(--ink)
}

.khome .sec-head p {
    color: var(--muted);
    font-size: 16.5px
}



/* ===== HOW TO EARN v2 ===== */
.khome .journey {
    position: relative;
    background: #fff;
    overflow: hidden
}

.khome .journey::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(620px 320px at 10% -10%, rgba(122, 43, 201, .09), transparent 62%),
        radial-gradient(560px 300px at 95% 110%, rgba(240, 144, 40, .10), transparent 62%)
}

.khome .journey .wrap {
    position: relative;
    z-index: 2
}

.khome .jgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
    max-width: 1080px;
    margin: 0 auto
}

.khome .jstep {
    position: relative;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px 20px;
    margin-bottom: 14px;
    cursor: pointer;
    transition: background .35s, border-color .35s, box-shadow .35s, transform .35s;
    -webkit-tap-highlight-color: transparent
}

.khome .jstep:hover {
    border-color: #d9d2ff
}

.khome .jstep.on {
    border-color: transparent;
    background: linear-gradient(135deg, #f8f5ff, #f3ecff);
    box-shadow: 0 16px 34px rgba(72, 16, 136, .13)
}

.khome .jstep .jtile {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #8b84a8;
    background: #f4f2fb;
    transition: .4s cubic-bezier(.2, .7, .3, 1)
}

.khome .jstep.on .jtile {
    color: #fff;
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    box-shadow: 0 10px 22px rgba(72, 16, 136, .32);
    transform: rotate(-6deg) scale(1.04)
}

.khome .jstep:nth-of-type(3).on .jtile {
    background: linear-gradient(135deg, var(--green), #e07818);
    box-shadow: 0 10px 22px rgba(240, 144, 40, .34)
}

.khome .jstep .jbody {
    flex: 1;
    min-width: 0
}

.khome .jstep .jnum {
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #a29ac0;
    transition: color .3s
}

.khome .jstep.on .jnum {
    color: var(--brand-2)
}

.khome .jstep h5 {
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -.3px;
    margin-top: 3px;
    color: var(--ink)
}

.khome .jstep p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.62;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .45s ease, opacity .35s ease, margin .35s ease
}

.khome .jstep.on p {
    max-height: 130px;
    opacity: 1;
    margin-top: 8px
}

.khome .jbar {
    height: 3px;
    border-radius: 3px;
    background: #e7e1ff;
    margin-top: 14px;
    overflow: hidden;
    display: none
}

.khome .jstep.on .jbar {
    display: block
}

.khome .jbar i {
    display: block;
    height: 100%;
    width: 0;
    border-radius: 3px;
    background: linear-gradient(90deg, var(--brand), var(--green-soft))
}

.khome .jdots {
    display: flex;
    gap: 7px;
    justify-content: center;
    margin-top: 16px
}

.khome .jdots button {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ddd6f5;
    cursor: pointer;
    transition: .3s
}

.khome .jdots button.on {
    width: 24px;
    border-radius: 7px;
    background: linear-gradient(90deg, var(--brand), var(--green-soft))
}

.khome .jpane {
    position: relative;
    min-height: 400px;
    border-radius: 26px;
    padding: 26px;
    overflow: hidden;
    background: linear-gradient(150deg, #2a0a52, #5c1a9e 55%, #7a2bc9);
    box-shadow: 0 26px 60px rgba(42, 10, 82, .28)
}

.khome .jpane::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(247, 166, 60, .22);
    filter: blur(60px);
    right: -70px;
    bottom: -90px;
    pointer-events: none
}

.khome .jscene {
    position: absolute;
    left: 26px;
    right: 26px;
    top: 26px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .45s ease, transform .45s ease;
    pointer-events: none;
    z-index: 2
}

.khome .jscene.on {
    opacity: 1;
    transform: none;
    pointer-events: auto
}

.khome .jcard {
    background: #fff;
    border-radius: 16px;
    padding: 17px
}

.khome .jfld {
    background: #f5f4fa;
    border-radius: 10px;
    padding: 10px 12px;
    font-size: 12.5px;
    color: #6b7280;
    margin-bottom: 9px;
    display: flex;
    align-items: center;
    gap: 9px
}

.khome .jcta {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    border-radius: 10px;
    padding: 11px;
    text-align: center;
    font-size: 13px;
    font-weight: 700
}

.khome .jlbl {
    color: rgba(255, 255, 255, .72);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    margin-bottom: 12px
}

.khome .jchip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 700;
    padding: 6px 11px;
    border-radius: 20px
}

.khome .jamt {
    font-size: 34px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -1px
}

.khome .jrow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12.5px;
    padding: 9px 0;
    border-bottom: 1px dashed #eee
}

.khome .jmini {
    font-size: 10.5px;
    font-weight: 800;
    color: #9ca3af;
    letter-spacing: 1px;
    margin-bottom: 5px
}

.khome .jnote {
    max-width: 1080px;
    margin: 30px auto 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 30px;
    background: linear-gradient(135deg, #faf8ff, #f4efff);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px 26px
}

.khome .jnote span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 13.5px;
    font-weight: 600;
    color: #463f63
}

.khome .jnote i {
    color: var(--green);
    font-size: 15px
}

@media(max-width:960px) {
    .khome .jgrid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 600px
    }

    .khome .jpane {
        min-height: 0;
        padding: 20px;
        border-radius: 22px
    }

    .khome .jscene {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        display: none;
        transform: none;
        opacity: 1
    }

    .khome .jscene.on {
        display: block;
        animation: jFade .45s ease
    }

    @keyframes jFade {
        from {
            opacity: 0;
            transform: translateY(12px)
        }

        to {
            opacity: 1;
            transform: none
        }
    }
}

@media(max-width:600px) {
    .khome .sec {
        padding: 40px 0
    }

    .khome .sec-head {
        margin-bottom: 28px
    }

    .khome .sec-head h2 {
        font-size: 27px;
        letter-spacing: -.6px
    }

    .khome .sec-head p {
        font-size: 14.5px
    }

    .khome .jstep {
        padding: 14px 15px;
        gap: 12px;
        border-radius: 16px
    }

    .khome .jstep .jtile {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 17px
    }

    .khome .jstep h5 {
        font-size: 16px
    }

    .khome .jstep p {
        font-size: 13px
    }

    .khome .jamt {
        font-size: 28px
    }

    .khome .jnote {
        gap: 10px;
        padding: 14px 16px;
        display: grid;
        grid-template-columns: 1fr 1fr
    }

    .khome .jnote span {
        font-size: 12px;
        gap: 7px
    }
}

@media(prefers-reduced-motion:reduce) {
    .khome .jstep p {
        max-height: 200px;
        opacity: 1;
        margin-top: 8px
    }

    .khome .jbar {
        display: none !important
    }

    .khome .jscene,
    .khome .jstep,
    .khome .jtile {
        transition: none
    }
}


/* how */
/* .khome .journey{background:#fff}
   .khome .track3{position:relative;display:flex;justify-content:space-between;gap:24px;max-width:1040px;margin:0 auto}
   .khome .track3::before{content:"";position:absolute;top:48px;left:14%;right:14%;height:3px;background:repeating-linear-gradient(90deg,#d9d4ff 0 10px,transparent 10px 20px)}
   .khome .track3::after{content:"";position:absolute;top:47px;left:14%;height:5px;width:0;border-radius:5px;background:linear-gradient(90deg,var(--brand),var(--green));animation:khFlow 4.5s ease-in-out infinite}
   @keyframes khFlow{0%{width:0;opacity:0}15%{opacity:1}60%{width:72%;opacity:1}100%{width:72%;opacity:0}}
   .khome .step{position:relative;z-index:2;flex:1;text-align:center}
   .khome .orb{position:relative;width:100px;height:100px;margin:0 auto 22px;border-radius:28px;background:#fff;border:1.5px solid var(--line);display:flex;align-items:center;justify-content:center;box-shadow:0 14px 34px rgba(72,16,136,.1);transition:.35s;font-size:34px;color:var(--brand)}
   .khome .step:hover .orb{transform:translateY(-10px) rotate(-4deg);border-color:var(--brand);box-shadow:0 26px 48px rgba(72,16,136,.24)}
   .khome .num{position:absolute;top:-8px;right:-8px;width:32px;height:32px;border-radius:50%;background:linear-gradient(135deg,var(--brand),var(--brand-2));color:#fff;font-size:13px;font-weight:700;display:flex;align-items:center;justify-content:center;box-shadow:0 4px 12px rgba(72,16,136,.4)}
   .khome .step h5{font-size:18px;font-weight:700;margin-bottom:8px;color:var(--ink)}
   .khome .step p{color:var(--muted);font-size:14.5px;max-width:270px;margin:0 auto}
   @media(max-width:767px){.khome .track3{flex-direction:column;gap:26px;max-width:360px}.khome .track3::before,.khome .track3::after{display:none}
      .khome .step{display:flex;align-items:flex-start;text-align:left;gap:20px}.khome .orb{margin:0;flex:0 0 auto;width:74px;height:74px;font-size:26px;border-radius:20px}.khome .step p{max-width:none}} */

/* stores */
.khome .stores {
    background: linear-gradient(180deg, #f5f3fc, #efeafc)
}

.khome .store-slider {
    position: relative
}

.khome .store-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 6px 4px 16px;
    -ms-overflow-style: none;
    scrollbar-width: none
}

.khome .store-track::-webkit-scrollbar {
    display: none
}

.khome .store-track .store {
    flex: 0 0 calc((100% - 100px)/6);
    scroll-snap-align: start
}

.khome .store {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px 14px;
    text-align: center;
    border: 1px solid #efedf7;
    box-shadow: 0 6px 20px rgba(30, 20, 80, .05);
    transition: .3s;
    cursor: pointer;
    position: relative;
    overflow: hidden
}

.khome .store::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--green));
    transform: scaleX(0);
    transition: .3s
}

.khome .store:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 44px rgba(72, 16, 136, .16);
    border-color: #d9d2ff
}

.khome .store:hover::before {
    transform: scaleX(1)
}

.khome .store .ava-img {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    margin: 0 auto 14px;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden
}

.khome .store .ava-img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    border-radius: 50%
}

.khome .store .rw {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--brand);
    background: #f0edff;
    padding: 6px 13px;
    border-radius: 20px;
    transition: .3s;
    white-space: nowrap
}

.khome .store:hover .rw {
    background: var(--brand);
    color: #fff
}

/* arrows */
.khome .store-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 0;
    cursor: pointer;
    background: #fff;
    color: var(--brand);
    font-size: 18px;
    box-shadow: 0 10px 26px rgba(72, 16, 136, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s
}

.khome .store-nav:hover {
    background: var(--brand);
    color: #fff
}

.khome .store-nav.prev {
    left: -14px
}

.khome .store-nav.next {
    right: -14px
}

.khome .store-nav:disabled {
    opacity: .35;
    cursor: default;
    background: #fff;
    color: var(--brand)
}

@media(max-width:1024px) {
    .khome .store-track .store {
        flex-basis: calc((100% - 60px)/4)
    }
}

@media(max-width:600px) {
    .khome .store-track {
        gap: 14px
    }

    .khome .store-track .store {
        flex-basis: calc((100% - 28px)/2.2)
    }

    .khome .store-nav {
        display: none
    }
}

/* calculator */
.khome .calc {
    background: #fff
}

.khome .calc-box {
    max-width: 940px;
    margin: 0 auto;
    background: linear-gradient(135deg, #481088, #7a2bc9);
    border-radius: 30px;
    padding: 48px;
    color: #fff;
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    align-items: center
}

.khome .calc-box .cb-blob {
    position: absolute;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .14), transparent 70%);
    top: -120px;
    right: -60px
}

.khome .calc-l h3 {
    color: var(--green-soft);
    font-size: 29px;
    font-weight: 800;
    letter-spacing: -.5px;
    margin-bottom: 10px;
    position: relative
}

.khome .calc-l p {
    color: rgba(255, 255, 255, .85);
    font-size: 15px;
    position: relative
}

.khome .calc-r {
    position: relative
}

.khome .calc-r label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .85);
    display: block;
    margin-bottom: 14px
}

.khome .calc-r label span {
    float: right;
    font-weight: 800;
    color: #fff
}

.khome input[type=range] {
    width: 100%;
    height: 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, .22);
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    margin-bottom: 26px
}

.khome input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--green-soft);
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .35)
}

.khome .calc-out {
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    padding: 22px;
    text-align: center;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px)
}

.khome .calc-out .lbl {
    font-size: 12.5px;
    color: rgba(255, 255, 255, .8)
}

.khome .calc-out .val {
    font-size: 40px;
    font-weight: 900;
    color: var(--green-soft);
    letter-spacing: -1px
}

@media(max-width:767px) {
    .khome .calc-box {
        grid-template-columns: 1fr;
        padding: 32px 24px
    }

    .khome .calc-l h3 {
        font-size: 24px
    }
}

/* deals */
.khome .deals {
    background: linear-gradient(180deg, #efeafc, #f5f3fc)
}

.khome .deal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.khome .deal {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid #efedf7;
    background: #fff;
    box-shadow: 0 8px 24px rgba(30, 20, 80, .06);
    transition: .3s;
    cursor: pointer
}

.khome .deal:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 46px rgba(72, 16, 136, .16)
}

.khome .deal .dtop {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 26px;
    font-weight: 800;
    position: relative
}

.khome .deal .tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: rgba(255, 255, 255, .92);
    color: var(--brand);
    font-size: 11.5px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px
}

.khome .deal .timer {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0, 0, 0, .28);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 10px;
    border-radius: 20px
}

.khome .deal .dbody {
    padding: 20px 22px 24px
}

.khome .deal .dbody h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px
}

.khome .deal .dbody p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 16px
}

.khome .deal .cb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--green);
    font-size: 14px
}

.khome .deal .go {
    float: right;
    color: var(--brand);
    font-weight: 700;
    font-size: 14px
}

@media(max-width:900px) {
    .khome .deal-grid {
        grid-template-columns: 1fr
    }
}

/* why */
.khome .why {
    background: #fff
}

.khome .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.khome .feat {
    background: linear-gradient(180deg, #fff, #faf9ff);
    border-radius: var(--radius);
    padding: 30px 24px;
    border: 1px solid #efedf7;
    transition: .3s
}

.khome .feat:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(72, 16, 136, .12)
}

.khome .feat .ic {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin-bottom: 18px;
    background: linear-gradient(135deg, var(--brand), var(--brand-2))
}

.khome .feat:nth-child(2) .ic {
    background: linear-gradient(135deg, var(--green), #e07818)
}

.khome .feat:nth-child(3) .ic {
    background: linear-gradient(135deg, #f59e0b, #f97316)
}

.khome .feat:nth-child(4) .ic {
    background: linear-gradient(135deg, #ec4899, #db2777)
}

.khome .feat h5 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px
}

.khome .feat p {
    color: var(--muted);
    font-size: 14px
}

@media(max-width:900px) {
    .khome .why-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:520px) {
    .khome .why-grid {
        grid-template-columns: 1fr
    }
}

/* testimonials */
.khome .testi {
    background: linear-gradient(180deg, #f5f3fc, #efeafc)
}

.khome .testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.khome .tcard {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px;
    border: 1px solid #efedf7;
    box-shadow: 0 8px 24px rgba(30, 20, 80, .05);
    transition: .3s
}

.khome .tcard:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(72, 16, 136, .12)
}

.khome .tcard .stars {
    color: #f5b301;
    margin-bottom: 14px;
    font-size: 14px
}

.khome .tcard p {
    font-size: 14.5px;
    color: #3a374f;
    margin-bottom: 20px
}

.khome .tcard .who {
    display: flex;
    align-items: center;
    gap: 12px
}

.khome .tcard .who .av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 16px
}

.khome .tcard .who .nm {
    font-weight: 700;
    font-size: 14px
}

.khome .tcard .who .ct {
    font-size: 12.5px;
    color: var(--muted)
}

@media(max-width:900px) {
    .khome .testi-grid {
        grid-template-columns: 1fr
    }
}

/* FAQ */
.khome .faq {
    background: #fff
}

.khome .faq-wrap {
    max-width: 820px;
    margin: 0 auto
}

.khome .faq-item {
    background: linear-gradient(180deg, #fff, #faf9ff);
    border: 1px solid var(--line);
    border-radius: 16px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: border-color .25s ease, box-shadow .25s ease
}

.khome .faq-item.open {
    border-color: #d9d2ff;
    box-shadow: 0 16px 36px rgba(72, 16, 136, .10)
}

.khome .faq-q {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
    text-align: left;
    background: none;
    border: 0;
    cursor: pointer;
    padding: 22px 24px;
    font-family: inherit;
    font-size: 16.5px;
    font-weight: 700;
    color: var(--ink);
    transition: color .2s ease
}

.khome .faq-q:hover {
    color: var(--brand)
}

.khome .faq-q .qtxt {
    flex: 1
}

.khome .faq-ic {
    flex: 0 0 auto;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0edff;
    color: var(--brand);
    font-size: 15px;
    transition: transform .3s ease, background .3s ease, color .3s ease
}

.khome .faq-item.open .faq-ic {
    background: linear-gradient(135deg, var(--brand), var(--brand-2));
    color: #fff;
    transform: rotate(45deg)
}

.khome .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.khome .faq-a .faq-a-inner {
    padding: 0 17px 22px 26px;
    color: var(--muted);
    font-size: 14.5px;
    line-height: 1.65
}

.khome .faq-a b {
    color: var(--ink)
}

.khome .faq-cta {
    text-align: center;
    margin-top: 34px;
    color: var(--muted);
    font-size: 14.5px
}

.khome .faq-cta a {
    color: var(--brand);
    font-weight: 700
}

@media(max-width:600px) {
    .khome .faq-q {
        padding: 18px 18px;
        font-size: 15px;
        gap: 12px
    }

    .khome .faq-a .faq-a-inner {
        padding: 0 18px 18px 18px
    }
}

/* cursor-follow glow (whole page, v3 style) */
.khome .kh-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transition: opacity .4s ease;
    will-change: transform;
    background: radial-gradient(circle, rgba(122, 43, 201, .16), transparent 60%)
}

@media(hover:none) {
    .khome .kh-cursor {
        display: none
    }
}

.khome .reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: .7s cubic-bezier(.2, .7, .3, 1)
}

.khome .reveal.in {
    opacity: 1;
    transform: none
}

/* CTA band (v3 style) */
.khome .cta-sec {
    padding: 82px 0
}

.khome .cta {
    border-radius: 34px;
    padding: 70px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(600px 320px at 85% 0%, rgba(240, 144, 40, .28), transparent 60%), linear-gradient(135deg, #2a0a52, #8a3bd6)
}

.khome .cta h2 {
    color: #fff;
    font-size: 44px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 14px;
    position: relative;
    z-index: 2
}

.khome .cta p {
    color: rgba(255, 255, 255, .9);
    font-size: 17px;
    margin-bottom: 32px;
    position: relative;
    z-index: 2
}

.khome .cta .btn-w {
    background: #fff;
    color: var(--brand);
    font-weight: 700;
    font-size: 16px;
    padding: 16px 42px;
    border-radius: 40px;
    display: inline-block;
    position: relative;
    z-index: 2;
    box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
    transition: .2s
}

.khome .cta .btn-w:hover {
    transform: translateY(-2px)
}

.khome .cta .c-blob {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08)
}

.khome .cta .cb1 {
    width: 320px;
    height: 320px;
    top: -150px;
    left: -80px
}

.khome .cta .cb2 {
    width: 250px;
    height: 250px;
    bottom: -140px;
    right: -60px
}

@media(max-width:767px) {
    .khome .cta h2 {
        font-size: 29px
    }

    .khome .cta {
        padding: 48px 22px
    }
}

/* keep the highlighted word on its own second line (desktop) */
@media (min-width: 768px) {
    .khome .hero-left h1 .hl {
        display: block;
        min-height: 1.2em;
        white-space: nowrap
    }
}