*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
    background: #080810;
    color: #E8E4F0;
    overflow-x: clip
}

:root {
    --bg: #080810;
    --bg2: #0E0D1A;
    --bg3: #131224;
    --bg4: #1A1830;
    --p700: #6D28D9;
    --p600: #7C3AED;
    --p500: #8B5CF6;
    --p400: #A78BFA;
    --p300: #C4B5FD;
    --bd: rgba(167, 139, 250, .12);
    --bd2: rgba(167, 139, 250, .22);
    --ink: #E8E4F0;
    --ink2: #B8B0D0;
    --ink3: #7A7090;
    --ink4: #4A4460
}

::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-track {
    background: var(--bg)
}

::-webkit-scrollbar-thumb {
    background: var(--p700);
    border-radius: 3px
}

.page {
    display: none
}

.page.active {
    display: block
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .3
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(32px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes floatBob {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

/* NAV */
.ann {
    background: linear-gradient(90deg, #2E1065, #4C1D95, #2E1065);
    color: #fff;
    text-align: center;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-bottom: 1px solid var(--bd)
}

.ann a {
    color: var(--p300);
    font-weight: 700;
    text-decoration: none
}

.ann-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--p400);
    animation: pulse 2s infinite
}

nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 8, 16, .92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bd);
    height: 66px;
    display: flex;
    align-items: center;
    padding: 0 5%
}

.nav-in {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    cursor: pointer
}

.logo-gem {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    /*background: linear-gradient(135deg, var(--p600), #4C1D95);*/
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 0 20px rgba(124, 58, 237, .4)
}

.logo-txt {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.3px
}

.logo-txt em {
    color: var(--p400);
    font-style: normal
}

.nav-links {
    display: flex;
    gap: 2px
}

a{
    text-decoration: none;
}

.nav-dd {
    position: relative
}

.nbtn {
    background: none;
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    color: var(--ink2);
    padding: 8px 14px;
    border-radius: 9px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: all .15s
}

.nbtn:hover {
    background: rgba(167, 139, 250, .08);
    color: #fff
}

.nbtn svg {
    width: 11px;
    height: 11px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    transition: transform .2s
}

.nav-dd:hover .nbtn svg {
    transform: rotate(180deg)
}

.ddm {
    display: none;
    position: absolute;
    top: calc(100%+8px);
    left: 0;
    background: #0E0D1A;
    border: 1px solid var(--bd2);
    border-radius: 14px;
    padding: 8px;
    min-width: 230px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
    z-index: 200
}

.nav-dd:hover .ddm {
    display: block
}

.ddi {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 9px;
    color: var(--ink2);
    font-size: 13.5px;
    font-weight: 500;
    text-decoration: none;
    transition: all .15s
}

.ddi:hover {
    background: rgba(167, 139, 250, .08);
    color: #fff
}

.ddi-ic {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(167, 139, 250, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px
}

.btn-ghost {
    background: none;
    border: 1px solid var(--bd2);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink2);
    padding: 8px 16px;
    border-radius: 9px;
    cursor: pointer;
    transition: all .15s
}

.btn-ghost:hover {
    background: rgba(167, 139, 250, .08);
    color: #fff;
    border-color: var(--p500)
}

.btn-cta {
    background: var(--p600);
    color: #fff;
    border: none;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 22px;
    border-radius: 10px;
    cursor: pointer;
    transition: all .18s;
    box-shadow: 0 0 24px rgba(124, 58, 237, .4)
}

.btn-cta:hover {
    background: var(--p500);
    transform: translateY(-1px)
}

/* HERO */
.hero {
    padding: 0 5%;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 0% 50%, rgba(76, 29, 149, .25), transparent 60%), radial-gradient(ellipse 50% 60% at 100% 20%, rgba(109, 40, 217, .15), transparent 60%);
    pointer-events: none
}

.hero-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(167, 139, 250, .15) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(ellipse 80% 80% at 30% 50%, black, transparent);
    pointer-events: none
}

.hero-in {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 0 80px;
    position: relative;
    z-index: 1
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(109, 40, 217, .15);
    border: 1px solid rgba(167, 139, 250, .3);
    color: var(--p300);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px 6px 8px;
    border-radius: 999px;
    margin-bottom: 28px;
    animation: fadeUp .5s ease .05s both
}

.hero-tag-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--p500), var(--p700));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #fff;
    font-weight: 700
}

.hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(38px, 4.5vw, 62px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1.8px;
    color: #fff;
    margin-bottom: 22px;
    animation: fadeUp .5s ease .12s both
}

.hero h1 .grad {
    background: linear-gradient(135deg, var(--p300), var(--p500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-sub {
    font-size: 17px;
    color: var(--ink2);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 32px;
    animation: fadeUp .5s ease .19s both
}

.hero-badges {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 36px;
    animation: fadeUp .5s ease .25s both
}

.hbadge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--p500);
    border: 1px solid rgba(167, 139, 250, .15);
    border-radius: 8px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    transition: all .2s;
    cursor: pointer
}

.hbadge:hover {
    background: rgba(167, 139, 250, .1);
    border-color: rgba(167, 139, 250, .3);
    color: #fff
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeUp .5s ease .32s both
}

.btn-hp {
    background: var(--p600);
    color: #fff;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    box-shadow: 0 0 32px rgba(124, 58, 237, .45), 0 4px 0 rgba(76, 29, 149, .8)
}

.btn-hp:hover {
    background: var(--p500);
    transform: translateY(-2px)
}

.btn-ho {
    background: transparent;
    color: var(--p300);
    border: 1.5px solid rgba(167, 139, 250, .3);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: 12px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s
}

.btn-ho:hover {
    border-color: var(--p400);
    background: rgba(167, 139, 250, .08);
    color: #fff;
    transform: translateY(-2px)
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--ink3);
    animation: fadeUp .5s ease .39s both
}

.proof-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(167, 139, 250, .3)
}

/* PHONE */
.hero-right {
    animation: fadeRight .7s ease .2s both
}

.hero-vis {
    position: relative
}

.hv-float {
    position: absolute;
    background: rgba(13, 11, 26, .9);
    border: 1px solid rgba(167, 139, 250, .2);
    border-radius: 14px;
    backdrop-filter: blur(16px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .5);
    z-index: 3
}

.hf1 {
    top: -24px;
    right: -24px;
    padding: 14px 18px;
    min-width: 160px;
    animation: floatBob 4s ease-in-out infinite
}

.hf2 {
    bottom: 60px;
    right: -32px;
    padding: 12px 16px;
    min-width: 190px;
    animation: floatBob 4s ease-in-out .8s infinite
}

.hf3 {
    bottom: -16px;
    left: -20px;
    padding: 12px 16px;
    animation: floatBob 4s ease-in-out 1.6s infinite
}

.hfl {
    font-size: 9px;
    color: var(--ink3);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-bottom: 4px
}

.hfv {
    font-size: 22px;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
    line-height: 1
}

.hfs {
    font-size: 10px;
    color: var(--ink3);
    margin-top: 3px
}

.hfu {
    font-size: 10px;
    font-weight: 700;
    color: #86EFAC;
    margin-top: 3px
}

.sd-dots {
    display: flex;
    gap: 3px;
    margin-top: 8px
}

.sd {
    width: 18px;
    height: 18px;
    border-radius: 4px
}

.sd.on {
    background: var(--p700);
    border: 1px solid var(--p600)
}

.sd.now {
    background: linear-gradient(135deg, var(--p500), var(--p700));
    border: 1.5px solid var(--p400)
}

.sd.off {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08)
}

.phone {
    width: 285px;
    background: #0C0B1C;
    border-radius: 40px;
    border: 2px solid rgba(167, 139, 250, .25);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .65), 0 0 0 1px rgba(167, 139, 250, .08), 0 0 60px rgba(109, 40, 217, .18);
    overflow: hidden;
    position: relative;
    padding-bottom: 16px;
    margin: 0 auto
}

.phone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 26px;
    background: #080810;
    border-radius: 0 0 18px 18px;
    z-index: 10
}

.ph-sb {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 20px 0;
    height: 36px
}

.ph-sb-time {
    font-size: 11px;
    font-weight: 700;
    color: #fff
}

.ph-sb-icons {
    display: flex;
    align-items: center;
    gap: 4px
}

.ph-head {
    padding: 8px 18px 14px;
    border-bottom: 1px solid rgba(167, 139, 250, .08)
}

.ph-logo-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px
}

.ph-gem {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, var(--p600), #4C1D95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #fff
}

.ph-name {
    font-size: 12px;
    font-weight: 700;
    color: #fff
}

.ph-name em {
    color: var(--p400);
    font-style: normal
}

.ph-bell {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(167, 139, 250, .08);
    border: 1px solid rgba(167, 139, 250, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer
}

.ph-bdot {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #EF4444;
    border: 1.5px solid #0C0B1C
}

.ph-greet {
    font-size: 14px;
    font-weight: 700;
    color: #fff
}

.ph-sub {
    font-size: 11px;
    color: var(--ink3);
    margin-top: 2px
}

.ph-scores {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 7px;
    padding: 12px 14px 0
}

.ph-sc {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 10px;
    padding: 10px 8px;
    text-align: center
}

.ph-sc-n {
    font-size: 20px;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
    line-height: 1
}

.ph-sc-l {
    font-size: 9px;
    color: var(--ink3);
    text-transform: uppercase;
    letter-spacing: .5px;
    font-weight: 600;
    margin-top: 3px
}

.ph-sc-d {
    font-size: 9px;
    font-weight: 700;
    margin-top: 3px
}

.ph-sec {
    padding: 12px 14px 0
}

.ph-sec-t {
    font-size: 10px;
    font-weight: 700;
    color: var(--ink3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 9px
}

.ph-skill {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px
}

.ph-sl {
    font-size: 10px;
    color: var(--ink3);
    width: 48px;
    flex-shrink: 0
}

.ph-sbar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, .06);
    border-radius: 2px;
    overflow: hidden
}

.ph-sfill {
    height: 100%;
    border-radius: 2px
}

.ph-sv {
    font-size: 10px;
    font-weight: 700;
    width: 18px;
    text-align: right;
    flex-shrink: 0
}

.ph-task {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.ph-task:last-child {
    border: none
}

.ph-ti {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0
}

.ph-tn {
    font-size: 11px;
    font-weight: 600;
    color: #fff
}

.ph-ts {
    font-size: 10px;
    color: var(--ink3);
    margin-top: 1px
}

.ph-tb {
    margin-left: auto;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 5px;
    white-space: nowrap;
    flex-shrink: 0
}

.ph-home {
    width: 80px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .2);
    margin: 14px auto 0
}

/* TICKER */
.ticker-wrap {
    padding: 20px 0;
    background: var(--bg2);
    border-top: 1px solid var(--bd);
    border-bottom: 1px solid var(--bd);
    overflow: hidden;
    position: relative
}

.ticker-wrap::before,
.ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none
}

.ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg2), transparent)
}

.ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg2), transparent)
}

.ticker-track {
    display: flex;
    gap: 12px;
    width: max-content;
    animation: ticker-scroll 32s linear infinite
}

.ticker-wrap:hover .ticker-track {
    animation-play-state: paused
}

.t-item {
    display: flex;
    align-items: center;
    gap: 10px;
    /*background: rgba(255, 255, 255, .04);*/
    background: var(--p500);
    border: 1px solid rgba(167, 139, 250, .14);
    border-radius: 10px;
    padding: 10px 18px;
    white-space: nowrap;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    flex-shrink: 0
}

.t-item:hover {
    border-color: rgba(167, 139, 250, .35);
    background: rgba(167, 139, 250, .1)
}

.t-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0
}

.t-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

.t-tag {
    font-size: 11px;
    color: #fff;
    background: rgba(255, 255, 255, .05);
    padding: 2px 7px;
    border-radius: 4px
}

/* SHARED */
section {
    padding: 88px 5%
}

.alt {
    background: var(--bg2)
}

.max {
    max-width: 1240px;
    margin: 0 auto
}

.slbl {
    font-size: 11px;
    font-weight: 700;
    color: var(--p400);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px
}

.sh2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 3.8vw, 46px);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -.8px;
    color: #fff;
    margin-bottom: 14px
}

.sp {
    font-size: 16px;
    color: var(--ink2);
    line-height: 1.7;
    max-width: 540px
}

/* PRESS */
.press-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 48px
}

.press-card {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--bd);
    border-radius: 18px;
    padding: 26px;
    transition: all .25s;
    cursor: pointer;
    position: relative;
    overflow: hidden
}

.press-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 100px;
    font-family: Georgia, serif;
    color: rgba(167, 139, 250, .06);
    line-height: 1;
    pointer-events: none
}

.press-card:hover {
    border-color: rgba(167, 139, 250, .28);
    background: rgba(167, 139, 250, .05);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .4)
}

.press-pub {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px
}

.press-name {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase
}

.press-sep {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--bd2)
}

.press-date {
    font-size: 12px;
    color: var(--ink4)
}

.press-q {
    font-size: 15px;
    color: var(--ink);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 16px
}

.press-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--p400);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color .15s
}

.press-link:hover {
    color: var(--p300)
}

.press-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding: 28px 0;
    border-top: 1px solid var(--bd)
}

.press-logo {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .5px;
    color: var(--ink4);
    text-transform: uppercase;
    opacity: .5;
    transition: opacity .2s, color .2s;
    cursor: pointer
}

.press-logo:hover {
    opacity: 1;
    color: var(--p300)
}

/* REELS */
.reels-track-wrap {
    position: relative
}

.reels-track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 8px 4px 16px;
    cursor: grab
}

.reels-track:active {
    cursor: grabbing
}

.reels-track::-webkit-scrollbar {
    display: none
}

.reels-track-wrap::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to right, var(--bg), transparent);
    z-index: 2;
    pointer-events: none
}

.reels-track-wrap::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    background: linear-gradient(to left, var(--bg), transparent);
    z-index: 2;
    pointer-events: none
}

.reel-card {
    flex-shrink: 0;
    width: 200px;
    height: 356px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1.5px solid rgba(167, 139, 250, .15);
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
    transition: transform .25s, box-shadow .25s, border-color .25s;
    background: #0C0B1C
}

.reel-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6), 0 0 0 1px rgba(167, 139, 250, .3);
    border-color: rgba(167, 139, 250, .35)
}

.reel-bg {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: .55;
    filter: saturate(.6);
    transition: opacity .3s, filter .3s
}

.reel-card:hover .reel-bg {
    opacity: .75;
    filter: saturate(.9)
}

.reel-grad-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(8, 8, 16, .8), transparent)
}

.reel-grad-bot {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(0deg, rgba(8, 8, 16, .96) 0%, rgba(8, 8, 16, .5) 60%, transparent 100%)
}

.reel-test-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    backdrop-filter: blur(8px);
    z-index: 3
}

.reel-views {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, .8);
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 0, 0, .45);
    padding: 3px 8px;
    border-radius: 5px;
    backdrop-filter: blur(6px);
    z-index: 3
}

.reel-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 2px solid rgba(255, 255, 255, .5);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .2s;
    z-index: 3
}

.reel-card:hover .reel-play {
    background: var(--p600);
    border-color: var(--p400);
    box-shadow: 0 0 24px rgba(124, 58, 237, .6)
}

.reel-play svg {
    width: 18px;
    height: 18px;
    fill: #fff;
    margin-left: 3px
}

.reel-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 14px;
    z-index: 3
}

.reel-instructor {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px
}

.reel-av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(167, 139, 250, .4);
    flex-shrink: 0
}

.reel-iname {
    font-size: 11px;
    font-weight: 700;
    color: #fff
}

.reel-irole {
    font-size: 10px;
    color: rgba(255, 255, 255, .5);
    margin-top: 1px
}

.reel-title {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    line-height: 1.45;
    margin-bottom: 8px
}

.reel-tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap
}

.reel-tag {
    font-size: 9px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .7)
}

.reels-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(14, 13, 26, .9);
    border: 1px solid rgba(167, 139, 250, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .15s;
    z-index: 10;
    backdrop-filter: blur(8px)
}

.reels-nav:hover {
    background: var(--p700);
    border-color: var(--p600)
}

.reels-nav svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.rn-left {
    left: -18px
}

.rn-right {
    right: -18px
}

.reels-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(167, 139, 250, .08);
    border: 1px solid rgba(167, 139, 250, .2);
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--p300);
    text-decoration: none;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap
}

.reels-cta:hover {
    background: rgba(167, 139, 250, .15);
    border-color: var(--p400);
    color: #fff
}

/* GLOBE */
.globe-countries {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
    margin-bottom: 52px
}

.gc {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all .2s;
    cursor: pointer
}

.gc:hover {
    border-color: rgba(167, 139, 250, .25);
    background: rgba(167, 139, 250, .06);
    transform: translateY(-2px)
}

.gc-flag {
    font-size: 28px;
    flex-shrink: 0
}

.gc-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff
}

.gc-desc {
    font-size: 12px;
    color: var(--ink3);
    margin-top: 2px
}

.gc-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    margin-top: 6px
}

.stats-bar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: rgba(255, 255, 255, .02);
    border: 1px solid rgba(167, 139, 250, .1);
    border-radius: 20px;
    overflow: hidden
}

.stat-cell {
    padding: 26px 20px;
    text-align: center;
    border-right: 1px solid rgba(167, 139, 250, .1)
}

.stat-cell:last-child {
    border-right: none
}

.stat-n {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    font-family: 'DM Serif Display', serif;
    line-height: 1
}

.stat-l {
    font-size: 11px;
    color: var(--p400);
    font-weight: 700;
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: .8px
}

/* TESTS TABS */
.tests-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px
}

.ttab {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(167, 139, 250, .12);
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .2s;
    display: flex;
    align-items: center;
    gap: 7px;
    font-family: inherit
}

.ttab:hover {
    border-color: rgba(167, 139, 250, .3);
    color: #fff;
    background: rgba(167, 139, 250, .08)
}

.ttab.act {
    background: rgba(109, 40, 217, .2);
    border-color: rgba(167, 139, 250, .4);
    color: var(--p300)
}

.test-detail {
    display: none
}

.test-detail.show {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center
}

.td-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 5px;
    margin-bottom: 14px
}

.td-name {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(24px, 3vw, 38px);
    font-weight: 400;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -.5px
}

.td-org {
    font-size: 13px;
    color: var(--ink3);
    margin-bottom: 16px
}

.td-desc {
    font-size: 15px;
    color: var(--ink2);
    line-height: 1.7;
    margin-bottom: 24px
}

.td-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 28px;
    padding: 18px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(167, 139, 250, .1);
    border-radius: 12px
}

.td-stat-n {
    font-size: 22px;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
    line-height: 1
}

.td-stat-l {
    font-size: 11px;
    color: var(--ink3);
    margin-top: 3px
}

.td-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: inherit;
    transition: all .2s
}

.td-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.td-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(167, 139, 250, .1);
    border-radius: 14px;
    padding: 18px;
    transition: all .2s
}

.td-card:hover {
    border-color: rgba(167, 139, 250, .25);
    background: rgba(167, 139, 250, .05)
}

.td-card-icon {
    font-size: 22px;
    margin-bottom: 10px
}

.td-card-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.td-card-desc {
    font-size: 12px;
    color: var(--ink3);
    line-height: 1.5
}

/* COMPARISON TABLE */
table {
    border-collapse: collapse;
    width: 100%
}

th,
td {
    vertical-align: middle
}

tbody tr:hover {
    background: rgba(167, 139, 250, .04) !important
}

/* WHY */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin-top: 48px
}

.wcard {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--bd);
    border-radius: 20px;
    overflow: hidden;
    transition: all .25s;
    cursor: pointer
}

.wcard:hover {
    border-color: rgba(167, 139, 250, .3);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .5)
}

.wci-icon {
    height: 72px;
    display: flex;
    align-items: center;
    padding: 0 22px;
    font-size: 13px;
    font-weight: 700;
    color: var(--p400);
    background: rgba(109, 40, 217, .08);
    border-bottom: 1px solid var(--bd);
    letter-spacing: .3px
}

.wcb {
    padding: 20px 22px 24px
}

.wct {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.wcd {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.65
}

.wclk {
    font-size: 13px;
    font-weight: 600;
    color: var(--p400);
    margin-top: 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    text-decoration: none
}

.wclk:hover {
    color: var(--p300)
}

/* FEATURES */
.feat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.feat-grid.rev {
    direction: rtl
}

.feat-grid.rev>* {
    direction: ltr
}

.feat-vis {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--bd);
    background: var(--bg3);
    min-height: 380px;
    display: flex;
    align-items: stretch;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .4)
}

.fitems {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 28px
}

.fi {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 12px;
    cursor: pointer;
    transition: all .2s;
    border: 1px solid transparent
}

.fi:hover {
    background: rgba(167, 139, 250, .06)
}

.fi.active {
    background: rgba(167, 139, 250, .08);
    border-color: var(--bd2)
}

.fi-ic {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: rgba(167, 139, 250, .08);
    border: 1px solid var(--bd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0
}

.fi.active .fi-ic {
    background: rgba(167, 139, 250, .15);
    border-color: var(--bd2)
}

.fi-t {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px
}

.fi-d {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.55
}

/* CONSULTATIVE */
.consult-wrap {
    position: relative;
    overflow: hidden
}

.consult-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(109, 40, 217, .06), transparent 60%);
    pointer-events: none
}

.consult-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start
}

.consult-nps {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(167, 139, 250, .08);
    border: 1px solid var(--bd2);
    border-radius: 999px;
    padding: 8px 20px 8px 10px;
    margin-bottom: 28px
}

.consult-nps-val {
    background: var(--p700);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 999px;
    font-family: 'DM Serif Display', serif;
    letter-spacing: -.3px
}

.consult-nps-txt {
    font-size: 13px;
    color: var(--ink2);
    font-weight: 500
}

.pillars {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px
}

.pillar {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 18px 20px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--bd);
    border-radius: 16px;
    transition: all .22s;
    cursor: pointer
}

.pillar:hover {
    border-color: rgba(167, 139, 250, .28);
    background: rgba(167, 139, 250, .06);
    transform: translateX(4px)
}

.pillar-ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(109, 40, 217, .15);
    border: 1px solid rgba(167, 139, 250, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0
}

.pillar-t {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px
}

.pillar-d {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.6
}

.awards-row {
    display: flex;
    gap: 10px;
    margin-top: 24px;
    flex-wrap: wrap
}

.award-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--bd);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink2)
}

.award-pill-icon {
    font-size: 18px
}

.c-tcards {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.c-tc {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 18px;
    padding: 22px;
    transition: all .22s;
    position: relative;
    overflow: hidden
}

.c-tc:hover {
    border-color: rgba(167, 139, 250, .25);
    background: rgba(167, 139, 250, .04)
}

.c-tc-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 3px 0 0 3px
}

.c-tc-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px
}

.c-tc-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--bd2)
}

.c-tc-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff
}

.c-tc-meta {
    font-size: 12px;
    color: var(--ink3);
    margin-top: 1px
}

.c-tc-score {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 5px;
    margin-top: 4px
}

.c-tc-stars {
    color: #F59E0B;
    font-size: 13px;
    margin-bottom: 10px
}

.c-tc-q {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.7
}

/* ALL FEATURES */
.af-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px
}

.afc {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--bd);
    border-radius: 18px;
    padding: 24px;
    transition: all .2s;
    cursor: pointer
}

.afc:hover {
    border-color: rgba(167, 139, 250, .3);
    background: rgba(167, 139, 250, .05);
    transform: translateY(-2px)
}

.afc-ic {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(167, 139, 250, .08);
    border: 1px solid var(--bd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px
}

.afc-t {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px
}

.afc-d {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.6
}

/* TESTIMONIALS */
.tg2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px
}

.tc2 {
    background: var(--bg3);
    border: 1px solid var(--bd);
    border-radius: 18px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    transition: all .2s
}

.tc2:hover {
    border-color: rgba(167, 139, 250, .25);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4)
}

.tc2-st {
    color: #F59E0B;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 14px
}

.tc2-q {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.7;
    flex: 1
}

.tc2-au {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--bd);
    margin-top: 16px
}

.tc2-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 2px solid var(--bd2)
}

.tc2-n {
    font-size: 13px;
    font-weight: 700;
    color: #fff
}

.tc2-l {
    font-size: 12px;
    color: var(--ink3)
}

.tc2-sc {
    display: inline-flex;
    margin-top: 4px;
    background: rgba(167, 139, 250, .1);
    color: var(--p300);
    border: 1px solid var(--bd2);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 5px
}

/* CTA */
.cta-band {
    /*margin: 0 5% 80px;*/
    background: linear-gradient(135deg, #0E0A22, #1A0E40 50%, #0E0A22);
    border: 1px solid rgba(167, 139, 250, .2);
    border-radius: 24px;
    padding: 72px 5%;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-band::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(109, 40, 217, .2), transparent 60%);
    pointer-events: none
}

.cta-band h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 4vw, 50px);
    color: #fff;
    margin-bottom: 14px;
    letter-spacing: -.8px;
    position: relative
}

.cta-band p {
    font-size: 16px;
    color: var(--ink2);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.6;
    position: relative
}

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative
}

.btn-wh {
    background: #fff;
    color: #4C1D95;
    border: none;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    padding: 14px 28px;
    border-radius: 11px;
    cursor: pointer;
    transition: all .2s
}

.btn-wh:hover {
    background: var(--p300);
    transform: translateY(-2px)
}

.btn-wout {
    background: transparent;
    color: var(--p300);
    border: 1.5px solid rgba(167, 139, 250, .3);
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: 11px;
    cursor: pointer;
    transition: all .2s
}

.btn-wout:hover {
    border-color: var(--p400);
    background: rgba(167, 139, 250, .08);
    transform: translateY(-2px);
    color: #fff
}

/* FOOTER */
footer {
    border-top: 1px solid var(--bd);
    padding: 56px 5% 32px;
    background: var(--bg2)
}

.ft-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px
}

.ft-brand p {
    font-size: 14px;
    color: var(--ink3);
    line-height: 1.65;
    margin-top: 14px;
    max-width: 280px
}

.nl {
    margin-top: 18px;
    display: flex;
    gap: 8px
}

.nl input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 9px;
    border: 1px solid var(--bd2);
    font-family: inherit;
    font-size: 14px;
    color: #fff;
    background: var(--bg3);
    outline: none;
    transition: border .2s
}

.nl input:focus {
    border-color: var(--p500)
}

.nl input::placeholder {
    color: var(--ink4)
}

.nl button {
    background: var(--p700);
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer
}

.nl button:hover {
    background: var(--p600)
}

.ft-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 18px
}

.ft-col a {
    display: block;
    font-size: 14px;
    color: var(--ink3);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color .15s
}

.ft-col a:hover {
    color: var(--p300)
}

.ft-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--bd);
    font-size: 12.5px;
    color: var(--ink4)
}

.ft-bot a {
    color: var(--ink3);
    text-decoration: none
}

.ft-bot a:hover {
    color: var(--p300)
}

.socials {
    display: flex;
    gap: 8px;
    margin-top: 14px
}

.soc {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    border: 1px solid var(--bd);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    /*color: var(--ink3);*/
    color: #fff;
    cursor: pointer;
    transition: all .15s;
    text-decoration: none
}

.soc:hover {
    background: rgba(167, 139, 250, .08);
    border-color: var(--bd2);
    color: var(--p300)
}

/* DASHBOARD */
.db {
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 100vh;
    background: var(--bg)
}

.db-side {
    background: #0C0B1C;
    border-right: 1px solid var(--bd);
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto
}

.db-logo {
    padding: 18px 16px;
    border-bottom: 1px solid var(--bd);
    display: flex;
    align-items: center;
    gap: 10px
}

.db-logo-gem {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--p600), #4C1D95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #fff
}

.db-logo-txt {
    font-size: 15px;
    font-weight: 700;
    color: #fff
}

.db-logo-txt em {
    color: var(--p400);
    font-style: normal
}

.db-nav {
    padding: 12px 8px;
    flex: 1
}

.db-ni {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 500;
    color: var(--ink3);
    cursor: pointer;
    transition: all .15s;
    text-decoration: none;
    margin-bottom: 2px;
    border: none;
    background: none;
    font-family: inherit;
    width: 100%;
    text-align: left
}

.db-ni:hover {
    background: rgba(167, 139, 250, .06);
    color: var(--ink)
}

.db-ni.on {
    background: rgba(109, 40, 217, .2);
    color: var(--p300);
    border: 1px solid rgba(109, 40, 217, .3)
}

.db-ni svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round
}

.db-sep {
    font-size: 10px;
    font-weight: 700;
    color: var(--ink4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 12px 12px 4px
}

.db-help {
    padding: 16px;
    border-top: 1px solid var(--bd);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ink3);
    cursor: pointer
}

.db-help:hover {
    color: var(--ink)
}

.db-main {
    display: flex;
    flex-direction: column
}

.db-top {
    height: 58px;
    border-bottom: 1px solid var(--bd);
    display: flex;
    align-items: center;
    padding: 0 24px;
    gap: 12px;
    background: rgba(8, 8, 16, .95);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 50;
    flex-shrink: 0
}

.db-cs {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg3);
    border: 1px solid var(--bd2);
    border-radius: 9px;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: all .15s
}

.db-cs:hover {
    border-color: var(--p500);
    background: rgba(167, 139, 250, .08)
}

.db-cs svg {
    width: 12px;
    height: 12px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5
}

.db-sp {
    flex: 1
}

.db-bell {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    background: var(--bg3);
    border: 1px solid var(--bd);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    transition: all .15s
}

.db-bell svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--ink2);
    stroke-width: 1.8
}

.db-bdot {
    position: absolute;
    top: 7px;
    right: 7px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #EF4444;
    border: 1.5px solid var(--bg)
}

.db-user {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--bg3);
    border: 1px solid var(--bd);
    border-radius: 9px;
    cursor: pointer;
    transition: all .15s
}

.db-user:hover {
    border-color: var(--bd2)
}

.db-uav {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover
}

.db-un {
    font-size: 13px;
    font-weight: 600;
    color: #fff
}

.db-lo {
    background: var(--p700);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all .15s
}

.db-lo:hover {
    background: var(--p600)
}

.db-body {
    padding: 24px;
    overflow-y: auto;
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 24px;
    align-items: start
}

.db-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    grid-column: 1/-1
}

.db-stat {
    background: var(--bg3);
    border: 1px solid var(--bd);
    border-radius: 14px;
    padding: 16px;
    text-align: center
}

.db-stat-n {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    font-family: 'DM Serif Display', serif;
    line-height: 1
}

.db-stat-l {
    font-size: 11px;
    color: var(--ink3);
    margin-top: 4px;
    font-weight: 500
}

.db-stat-u {
    font-size: 11px;
    font-weight: 700;
    color: #86EFAC;
    margin-top: 4px
}

.sts-sec {
    grid-column: 1/-1
}

.sts-title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    font-family: 'DM Serif Display', serif
}

.sts-wrap {
    position: relative
}

.sts-track {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-bottom: 4px
}

.sts-track::-webkit-scrollbar {
    display: none
}

.sts-c {
    flex-shrink: 0;
    width: 130px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--bd);
    cursor: pointer;
    position: relative;
    transition: all .2s
}

.sts-c:hover {
    transform: scale(1.03);
    border-color: var(--bd2)
}

.sts-c img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block
}

.sts-ov {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .1), rgba(0, 0, 0, .6))
}

.sts-lbl {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 8px;
    background: linear-gradient(transparent, rgba(0, 0, 0, .8))
}

.sts-av {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--p400);
    margin-bottom: 4px;
    display: block
}

.sts-nm {
    font-size: 11px;
    font-weight: 600;
    color: #fff
}

.sts-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(109, 40, 217, .85);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    padding: 3px 7px;
    border-radius: 4px
}

.sts-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(14, 13, 26, .9);
    border: 1px solid var(--bd2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .15s
}

.sts-nav:hover {
    background: var(--p700)
}

.sts-nav svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #fff;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.sn-l {
    left: -14px
}

.sn-r {
    right: -14px
}

.cr-banner {
    grid-column: 1/-1;
    background: rgba(139, 92, 246, .08);
    border: 1px solid rgba(139, 92, 246, .2);
    border-radius: 14px;
    padding: 14px 20px;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    color: var(--p300)
}

.cr-banner span {
    color: var(--p400)
}

.db-ch {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    line-height: 1.5
}

.yte {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--bd);
    background: var(--bg3)
}

.yte iframe {
    width: 100%;
    height: 100%;
    border: none
}

.sc-card {
    background: var(--bg3);
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 18px;
    margin-bottom: 16px
}

.sc-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.sc-cur {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px
}

.sc-cl {
    font-size: 13px;
    color: var(--ink2)
}

.sc-cv {
    font-size: 13px;
    font-weight: 700;
    color: #fff
}

.sc-bar {
    height: 6px;
    background: rgba(255, 255, 255, .06);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 12px
}

.sc-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--p500), #F59E0B);
    border-radius: 3px;
    width: 43%
}

.sc-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px
}

.scd {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px
}

.scd-n {
    font-size: 9px;
    color: var(--ink4);
    font-weight: 600
}

.scd-d {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px
}

.scd-d.done {
    background: var(--p700);
    border: 1px solid var(--p600);
    color: #fff
}

.scd-d.today {
    background: linear-gradient(135deg, var(--p500), var(--p700));
    border: 2px solid var(--p400);
    box-shadow: 0 0 10px rgba(124, 58, 237, .4);
    color: #fff
}

.scd-d.empty {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06)
}

.bc-card {
    background: var(--bg3);
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 18px
}

.bc-t {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.bc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--bd);
    border-radius: 12px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: all .2s
}

.bc-item:hover {
    border-color: var(--bd2);
    background: rgba(167, 139, 250, .05)
}

.bc-item:last-child {
    margin-bottom: 0
}

.bc-ic {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0
}

.bc-name {
    font-size: 13px;
    font-weight: 600;
    color: #fff
}

.bc-sub {
    font-size: 11px;
    color: var(--ink3);
    margin-top: 1px
}

.bc-arr {
    margin-left: auto;
    color: var(--ink4);
    font-size: 16px
}

/* SKIP LINK */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--p600);
    color: #fff;
    padding: 8px 16px;
    border-radius: 0 0 8px 0;
    font-weight: 700;
    z-index: 999;
    text-decoration: none;
    transition: top .2s
}

.skip-link:focus {
    top: 0
}

@media(max-width:900px) {

    .hero-in,
    .feat-grid,
    .consult-grid {
        grid-template-columns: 1fr
    }

    .feat-grid.rev {
        direction: ltr
    }

    .hero-right {
        display: none
    }

    .ft-grid {
        grid-template-columns: 1fr 1fr
    }

    .db {
        grid-template-columns: 1fr
    }

    .db-side {
        display: none
    }

    .db-body {
        grid-template-columns: 1fr
    }

    .db-stats,
    .sts-sec,
    .cr-banner {
        grid-column: 1
    }

    .stats-bar {
        grid-template-columns: repeat(3, 1fr)
    }

    .test-detail.show {
        grid-template-columns: 1fr
    }

    .td-right {
        display: none
    }
}

@media(max-width:600px) {
    .ft-grid {
        grid-template-columns: 1fr
    }
}

/* ════ BLOG PAGE ════ */
.blog-hero {
    display: none
}

.blog-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(109, 40, 217, .15), transparent 70%);
    pointer-events: none
}

.blog-hero-in {}

.blog-hero h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 16px
}

.blog-hero h1 .grad {
    background: linear-gradient(135deg, var(--p300), var(--p500));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.blog-hero p {
    font-size: 17px;
    color: var(--ink2);
    max-width: 520px;
    margin: 0 auto 36px;
    line-height: 1.7
}

/* Search bar */
.blog-search {
    display: flex;
    gap: 10px;
    max-width: 520px;
    margin: 0 auto 44px
}

.blog-search input {
    flex: 1;
    padding: 13px 20px;
    border-radius: 11px;
    border: 1px solid var(--bd2);
    font-family: inherit;
    font-size: 15px;
    color: #fff;
    background: rgba(255, 255, 255, .05);
    outline: none;
    transition: all .2s
}

.blog-search input:focus {
    border-color: var(--p500);
    background: rgba(167, 139, 250, .08)
}

.blog-search input::placeholder {
    color: var(--ink4)
}

.blog-search button {
    background: var(--p600);
    color: #fff;
    border: none;
    border-radius: 11px;
    padding: 13px 22px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap
}

.blog-search button:hover {
    background: var(--p500)
}

/* Category filter */
.blog-cats {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 0
}

.blog-cat {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(167, 139, 250, .15);
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .2s;
    font-family: inherit
}

.blog-cat:hover {
    background: rgba(167, 139, 250, .1);
    border-color: rgba(167, 139, 250, .3);
    color: #fff
}

.blog-cat.active {
    background: rgba(109, 40, 217, .2);
    border-color: rgba(167, 139, 250, .4);
    color: var(--p300)
}

/* Blog body layout */
.blog-body {
    padding: 60px 5%;
    background: var(--bg)
}

.blog-body-in {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start
}

.blog-detail-layout {
    grid-template-columns: 280px 1fr 340px;
    max-width: 1400px;
}
.blog-sidebar-left {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 48px 5% 80px;
}
.toc-card {
    background: var(--bg3);
    border: 1px solid var(--bd);
    border-radius: 16px;
    overflow: hidden;
}
.toc-header {
    background: rgba(255,255,255,.03);
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    border-bottom: 1px solid var(--bd);
}
.toc-body {
    display: flex;
    flex-direction: column;
}
.toc-item {
    border-bottom: 1px solid var(--bd);
}
.toc-item:last-child {
    border-bottom: none;
}
.toc-link {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    color: var(--ink2);
    text-decoration: none;
    line-height: 1.5;
    transition: all .2s;
}
.toc-link:hover {
    color: var(--p300);
    background: rgba(167, 139, 250, .05);
}
.toc-link.active {
    color: var(--p300);
    background: rgba(167, 139, 250, .08);
    font-weight: 700;
    border-left: 3px solid var(--p500);
    padding-left: 17px;
}
.toc-link.h3 {
    padding-left: 36px;
    font-size: 13px;
    position: relative;
}
.toc-link.h3.active {
    padding-left: 33px;
}
.toc-link.h3::before {
    content: "•";
    position: absolute;
    left: 20px;
    color: var(--ink4);
}
@media(max-width:1100px) {
    .blog-detail-layout {
        grid-template-columns: 1fr 340px;
    }
    .blog-sidebar-left {
        display: none;
    }
}
@media(max-width:1000px) {
    .blog-detail-layout {
        grid-template-columns: 1fr;
    }
}

/* Featured post */
.blog-featured {
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(167, 139, 250, .2);
    background: rgba(255, 255, 255, .02);
    margin-bottom: 32px;
    transition: all .3s;
    cursor: pointer;
    position: relative
}

.blog-featured:hover {
    border-color: rgba(167, 139, 250, .35);
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5)
}

.blog-featured-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    opacity: .65;
    filter: saturate(.6);
    transition: all .3s;
    display: block
}

.blog-featured:hover .blog-featured-img {
    opacity: .8;
    filter: saturate(.9)
}

.blog-featured-body {
    padding: 28px 32px 32px
}

.blog-featured-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 16px
}

/* Post grid */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px
}

.bpost {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--bd);
    border-radius: 18px;
    overflow: hidden;
    transition: all .25s;
    cursor: pointer
}

.bpost:hover {
    border-color: rgba(167, 139, 250, .28);
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, .4)
}

.bpost-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    opacity: .6;
    filter: saturate(.5);
    transition: all .3s;
    display: block
}

.bpost:hover .bpost-img {
    opacity: .8;
    filter: saturate(.9)
}

.bpost-body {
    padding: 18px 20px 20px
}

.btag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 5px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .8px
}

.bpost-title {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 8px;
    letter-spacing: -.3px
}

.bpost-excerpt {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.65;
    margin-bottom: 14px
}

.bpost-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--ink3)
}

.bpost-av {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 1.5px solid var(--bd2)
}

.bpost-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--p400);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
    transition: color .15s
}

.bpost-link:hover {
    color: var(--p300)
}

/* Sidebar */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 0;
    overflow-y: auto;
}

.sidebar-card {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--bd);
    border-radius: 18px;
    padding: 24px
}

.sidebar-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 8px
}

/* Popular posts */
.popular-item {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--bd)
}

.popular-item:last-child {
    border: none;
    padding-bottom: 0
}

.popular-num {
    font-size: 20px;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
    color: var(--ink4);
    width: 24px;
    flex-shrink: 0;
    line-height: 1
}

.popular-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.4;
    cursor: pointer;
    transition: color .15s
}

.popular-title:hover {
    color: var(--p300)
}

.popular-meta {
    font-size: 11px;
    color: var(--ink3);
    margin-top: 3px
}

/* Newsletter */
.sidebar-nl input {
    width: 100%;
    padding: 10px 14px;
    border-radius: 9px;
    border: 1px solid var(--bd2);
    font-family: inherit;
    font-size: 14px;
    color: #fff;
    background: var(--bg3);
    outline: none;
    margin-bottom: 8px;
    transition: border .2s
}

.sidebar-nl input:focus {
    border-color: var(--p500)
}

.sidebar-nl input::placeholder {
    color: var(--ink4)
}

.sidebar-nl button {
    width: 100%;
    background: var(--p700);
    color: #fff;
    border: none;
    border-radius: 9px;
    padding: 11px;
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    transition: all .2s
}

.sidebar-nl button:hover {
    background: var(--p600)
}

/* Tags cloud */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.tag-pill {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(167, 139, 250, .14);
    border-radius: 7px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .2s
}

.tag-pill:hover {
    background: rgba(167, 139, 250, .1);
    border-color: rgba(167, 139, 250, .3);
    color: var(--p300)
}

/* Load more */
.blog-load-more {
    text-align: center;
    margin-top: 40px
}

@media(max-width:1000px) {
    .blog-body-in {
        grid-template-columns: 1fr
    }

    .blog-sidebar {
        display: none
    }
}

@media(max-width:700px) {
    .blog-grid {
        grid-template-columns: 1fr
    }
}


/* ── BLOG EXTRA ── */
.blog-authors-strip {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 48px
}

.ba {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    flex: 1;
    padding: 20px 14px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--bd);
    border-radius: 14px;
    margin: 0 6px;
    transition: all .2s;
    cursor: pointer
}

.ba:hover {
    border-color: rgba(167, 139, 250, .28);
    background: rgba(167, 139, 250, .06);
    transform: translateY(-3px)
}

.ba img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid rgba(167, 139, 250, .3)
}

.ba-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff
}

.ba-role {
    font-size: 11px;
    color: var(--ink3);
    margin-top: 2px
}

.ba-posts {
    font-size: 11px;
    font-weight: 700;
    color: var(--p400);
    margin-top: 4px
}

/* Gallery row */
.blog-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-bottom: 40px
}

.bg-item {
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    border: 1px solid var(--bd);
    transition: all .25s
}

.bg-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .5);
    border-color: rgba(167, 139, 250, .3)
}

.bg-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    opacity: .65;
    filter: saturate(.5);
    transition: all .3s
}

.bg-item:hover img {
    opacity: .85;
    filter: saturate(.9)
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(8, 8, 16, .9))
}

.bg-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px
}

.bg-badge {
    font-size: 9px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: .8px
}

.bg-title {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    line-height: 1.35
}

/* Article reading page */
.art-page {
    background: var(--bg);
    min-height: 100vh
}

.art-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 8, 16, .92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--bd);
    height: 60px;
    display: flex;
    align-items: center;
    padding: 0 5%
}

.art-nav-in {
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px
}

.art-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--p500), var(--p300));
    transition: width .1s;
    border-radius: 2px
}

.art-hero-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    opacity: .7;
    filter: saturate(.6);
    display: block
}

.art-body {
    max-width: 780px;
    margin: 0 auto;
    padding: 48px 5% 80px
}

.art-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 24px
}

.art-h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 400;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -.8px;
    margin-bottom: 20px
}

.art-byline {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 0;
    border-top: 1px solid var(--bd);
    border-bottom: 1px solid var(--bd);
    margin-bottom: 36px
}

.art-byline img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(167, 139, 250, .3);
    flex-shrink: 0
}

.art-author-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff
}

.art-author-meta {
    font-size: 12px;
    color: var(--ink3);
    margin-top: 2px
}

.art-share {
    margin-left: auto;
    display: flex;
    gap: 8px
}

.art-share-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid var(--bd);
    background: rgba(255, 255, 255, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: all .15s;
    color: var(--ink2)
}

.art-share-btn:hover {
    background: rgba(167, 139, 250, .1);
    border-color: var(--bd2);
    color: var(--p300)
}

/* Article content styles */
.art-content {
    font-size: 16px;
    color: var(--ink2);
    line-height: 1.85
}

.art-content h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 26px;
    color: #fff;
    margin: 40px 0 16px;
    letter-spacing: -.3px
}

.art-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 28px 0 12px
}

.art-content p {
    margin-bottom: 20px
}

.art-content strong {
    color: #fff;
    font-weight: 700
}

.art-content ul,
.art-content ol {
    padding-left: 24px;
    margin-bottom: 20px
}

.art-content li {
    margin-bottom: 8px
}

.art-callout {
    background: rgba(109, 40, 217, .1);
    border: 1px solid rgba(167, 139, 250, .2);
    border-left: 3px solid var(--p500);
    border-radius: 0 12px 12px 0;
    padding: 20px 24px;
    margin: 28px 0;
    font-size: 15px;
    color: var(--ink);
    line-height: 1.7
}

.art-callout strong {
    color: var(--p300)
}

.art-score-box {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(167, 139, 250, .12);
    border-radius: 14px;
    padding: 20px 24px;
    margin: 28px 0
}

.art-score-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(167, 139, 250, .08);
    font-size: 14px
}

.art-score-row:last-child {
    border: none
}

.art-score-label {
    color: var(--ink2);
    font-weight: 500
}

.art-score-val {
    font-weight: 700;
    font-size: 15px
}

.art-img-inline {
    width: 100%;
    border-radius: 14px;
    margin: 28px 0;
    opacity: .75;
    filter: saturate(.6);
    border: 1px solid var(--bd);
    display: block
}

/* Related posts at bottom */
.art-related {
    background: var(--bg2);
    border-top: 1px solid var(--bd);
    padding: 60px 5%
}

.art-related-in {
    max-width: 1100px;
    margin: 0 auto
}

.art-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px
}

@media(max-width:700px) {
    .art-related-grid {
        grid-template-columns: 1fr
    }

    .blog-gallery {
        grid-template-columns: 1fr 1fr
    }

    .ba {
        display: none
    }
}


/* ── APP TAB HIGHLIGHT ── */
.nav-app-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, rgba(109, 40, 217, .25), rgba(167, 139, 250, .12));
    border: 1px solid rgba(167, 139, 250, .35);
    color: var(--p300) !important;
    border-radius: 9px;
    padding: 7px 14px;
    font-weight: 700 !important;
    position: relative;
    transition: all .2s;
}

.nav-app-btn:hover {
    background: linear-gradient(135deg, rgba(109, 40, 217, .4), rgba(167, 139, 250, .2)) !important;
    border-color: var(--p400) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.nav-app-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--p400);
    animation: pulse 2s infinite;
    flex-shrink: 0;
}

/* ── APP PAGE ── */
.app-page {
    background: var(--bg);
    min-height: 100vh;
}

/* App hero */
.app-hero {
    padding: 100px 5% 80px;
    background: var(--bg);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.app-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(109, 40, 217, .18), transparent 65%);
    pointer-events: none;
}

.app-hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(167, 139, 250, .08), transparent 65%);
    pointer-events: none;
}

.app-hero-in {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.app-store-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.app-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(167, 139, 250, .25);
    border-radius: 14px;
    padding: 12px 22px;
    cursor: pointer;
    transition: all .2s;
    text-decoration: none;
}

.app-store-btn:hover {
    background: rgba(167, 139, 250, .1);
    border-color: rgba(167, 139, 250, .45);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
}

.app-store-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.app-store-sub {
    font-size: 10px;
    color: var(--ink3);
    text-transform: uppercase;
    letter-spacing: .8px;
}

.app-store-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-top: 2px;
}

.app-rating-row {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--bd);
    border-radius: 14px;
    max-width: 360px;
}

.app-rating-stars {
    color: #F59E0B;
    font-size: 16px;
    letter-spacing: 2px;
}

.app-rating-n {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    font-family: 'DM Serif Display', serif;
}

.app-rating-l {
    font-size: 12px;
    color: var(--ink3);
    margin-top: 1px;
}

/* Phone mockup */
.app-phones {
    position: relative;
    height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.app-phone-wrap {
    position: relative;
    width: 240px;
}

.app-phone-shadow {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 160px;
    height: 30px;
    background: rgba(109, 40, 217, .4);
    border-radius: 50%;
    filter: blur(20px);
}

.app-phone-2 {
    position: absolute;
    top: 40px;
    right: -80px;
    width: 200px;
    opacity: .6;
    transform: rotate(5deg);
    z-index: 0;
}

.app-phone-1 {
    position: relative;
    z-index: 2;
    animation: floatBob 4s ease-in-out infinite;
}

/* Feature cards grid */
.app-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.app-fc {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--bd);
    border-radius: 18px;
    padding: 24px;
    transition: all .22s;
    cursor: pointer;
}

.app-fc:hover {
    border-color: rgba(167, 139, 250, .3);
    background: rgba(167, 139, 250, .05);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .4);
}

.app-fc-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    border: 1px solid var(--bd);
}

.app-fc-t {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.app-fc-d {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.6;
}

/* Screenshots slider */
.app-screenshots {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 8px 4px 20px;
}

.app-screenshots::-webkit-scrollbar {
    display: none;
}

.app-ss {
    flex-shrink: 0;
    width: 220px;
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid rgba(167, 139, 250, .2);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
    background: var(--bg3);
    transition: all .25s;
    cursor: pointer;
}

.app-ss:hover {
    transform: translateY(-6px);
    border-color: rgba(167, 139, 250, .4);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .6);
}

.app-ss img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
    opacity: .8;
    filter: saturate(.7);
    transition: all .3s;
}

.app-ss:hover img {
    opacity: 1;
    filter: saturate(1);
}

.app-ss-label {
    padding: 12px 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink2);
    border-top: 1px solid var(--bd);
    background: rgba(255, 255, 255, .02);
}

/* QR section */
.app-qr-section {
    background: linear-gradient(135deg, #0E0A22, #1A0E40 50%, #0E0A22);
    border-radius: 24px;
    padding: 60px;
    display: flex;
    align-items: center;
    gap: 60px;
    border: 1px solid rgba(167, 139, 250, .2);
    margin: 0 5% 80px;
    position: relative;
    overflow: hidden;
}

.app-qr-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(109, 40, 217, .25), transparent 65%);
    pointer-events: none;
}

.app-qr-box {
    width: 140px;
    height: 140px;
    background: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
    padding: 12px;
}

.app-qr-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    width: 100%;
    height: 100%;
}

.qr-c {
    border-radius: 2px;
    background: #080810;
}

.qr-w {
    border-radius: 2px;
    background: #fff;
}

@media(max-width:900px) {
    .app-hero-in {
        grid-template-columns: 1fr
    }

    .app-phones {
        display: none
    }

    .app-features {
        grid-template-columns: 1fr 1fr
    }

    .app-qr-section {
        flex-direction: column;
        text-align: center;
        padding: 40px 24px;
        margin: 0 5% 60px
    }
}

@media(max-width:600px) {
    .app-features {
        grid-template-columns: 1fr
    }
}


/* ── APP PAGE ENHANCED ── */
/* Ticker */
@keyframes app-ticker {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

.app-ticker-wrap {
    padding: 14px 0;
    background: rgba(109, 40, 217, .08);
    border-top: 1px solid rgba(167, 139, 250, .12);
    border-bottom: 1px solid rgba(167, 139, 250, .12);
    overflow: hidden;
    position: relative
}

.app-ticker-wrap::before,
.app-ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 60px;
    z-index: 2;
    pointer-events: none
}

.app-ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, rgba(8, 8, 16, 1), transparent)
}

.app-ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, rgba(8, 8, 16, 1), transparent)
}

.app-ticker-track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: app-ticker 22s linear infinite
}

.app-ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 28px;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink3);
    white-space: nowrap
}

.app-ticker-item strong {
    color: var(--p400)
}

.app-ticker-sep {
    color: rgba(167, 139, 250, .25);
    font-size: 18px
}

/* Social proof strip */
.app-proof-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 1px solid var(--bd);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 0
}

.app-proof-cell {
    padding: 28px 24px;
    text-align: center;
    border-right: 1px solid var(--bd);
    background: rgba(255, 255, 255, .02);
    transition: background .2s
}

.app-proof-cell:hover {
    background: rgba(167, 139, 250, .04)
}

.app-proof-cell:last-child {
    border-right: none
}

.app-proof-n {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    font-family: 'DM Serif Display', serif;
    line-height: 1
}

.app-proof-l {
    font-size: 12px;
    color: var(--ink3);
    margin-top: 6px;
    font-weight: 500
}

.app-proof-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 8px
}

/* How it works */
.hiw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--bd);
    border-radius: 20px;
    overflow: hidden
}

.hiw-step {
    padding: 32px 24px;
    border-right: 1px solid var(--bd);
    position: relative;
    background: rgba(255, 255, 255, .02);
    transition: background .2s
}

.hiw-step:hover {
    background: rgba(167, 139, 250, .04)
}

.hiw-step:last-child {
    border-right: none
}

.hiw-num {
    font-size: 44px;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
    color: rgba(167, 139, 250, .15);
    line-height: 1;
    margin-bottom: 16px
}

.hiw-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 16px;
    border: 1px solid var(--bd)
}

.hiw-t {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px
}

.hiw-d {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.6
}

.hiw-arrow {
    position: absolute;
    top: 50%;
    right: -14px;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg3);
    border: 1px solid var(--bd2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--p400);
    z-index: 2
}

/* Testimonial horizontal cards */
.app-tstrip {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding: 4px 4px 16px
}

.app-tstrip::-webkit-scrollbar {
    display: none
}

.app-tc {
    flex-shrink: 0;
    width: 300px;
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 18px;
    padding: 22px;
    transition: all .2s
}

.app-tc:hover {
    border-color: rgba(167, 139, 250, .25);
    background: rgba(167, 139, 250, .04);
    transform: translateY(-3px)
}

.app-tc-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px
}

.app-tc-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--bd2);
    flex-shrink: 0
}

.app-tc-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff
}

.app-tc-meta {
    font-size: 11px;
    color: var(--ink3);
    margin-top: 1px
}

.app-tc-stars {
    color: #F59E0B;
    font-size: 12px;
    margin-bottom: 8px
}

.app-tc-q {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.65
}

.app-tc-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 10px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 5px
}

/* Comparison vs desktop */
.app-vs-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 20px;
    align-items: center
}

.app-vs-col {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--bd);
    border-radius: 18px;
    padding: 28px
}

.app-vs-col.highlight {
    background: rgba(109, 40, 217, .08);
    border-color: rgba(167, 139, 250, .3);
    box-shadow: 0 0 40px rgba(109, 40, 217, .12)
}

.app-vs-icon {
    font-size: 32px;
    margin-bottom: 14px
}

.app-vs-title {
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px
}

.app-vs-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ink2);
    padding: 6px 0;
    border-bottom: 1px solid rgba(167, 139, 250, .06)
}

.app-vs-row:last-child {
    border: none
}

.app-vs-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    flex-shrink: 0
}

/* Sticky bottom CTA bar */
.app-sticky-cta {
    position: sticky;
    bottom: 0;
    z-index: 50;
    background: rgba(8, 8, 16, .96);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(167, 139, 250, .2);
    padding: 14px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

/* Notification preview */
.notif-preview {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 320px;
    backdrop-filter: blur(10px)
}

.notif-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--p600), #4C1D95);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.notif-t {
    font-size: 13px;
    font-weight: 600;
    color: #fff
}

.notif-s {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    margin-top: 2px
}

@media(max-width:900px) {
    .app-proof-strip {
        grid-template-columns: repeat(2, 1fr)
    }

    .hiw-grid {
        grid-template-columns: 1fr 1fr
    }

    .hiw-step {
        border-bottom: 1px solid var(--bd)
    }

    .hiw-arrow {
        display: none
    }

    .app-vs-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:600px) {
    .app-proof-strip {
        grid-template-columns: 1fr 1fr
    }
}


/* ══════════════════════════════════
   LIGHT THEME VARIABLES
══════════════════════════════════ */
body.light {
    --bg: #F4F3FF;
    --bg2: #EEEDF9;
    --bg3: #E8E7F5;
    --bg4: #DDDCED;
    --p700: #6D28D9;
    --p600: #7C3AED;
    --p500: #8B5CF6;
    --p400: #7C3AED;
    --p300: #6D28D9;
    --bd: rgba(109, 40, 217, .14);
    --bd2: rgba(109, 40, 217, .26);
    --ink: #1A0E40;
    --ink2: #3D2A6E;
    --ink3: #6B5A9A;
    --ink4: #9B8EC4;
}

body.light {
    background: #F4F3FF;
    color: #1A0E40;
}

body.light ::-webkit-scrollbar-track {
    background: #F4F3FF;
}

/* Light overrides for dark hard-coded colours */
body.light nav {
    background: rgba(244, 243, 255, .95);
}

body.light .ann {
    background: linear-gradient(90deg, #4C1D95, #6D28D9, #4C1D95);
}

body.light .ddm {
    background: #fff;
    box-shadow: 0 12px 40px rgba(109, 40, 217, .15);
}

body.light .ddi {
    color: var(--ink2);
}

body.light .ddi:hover {
    background: rgba(109, 40, 217, .06);
    color: var(--ink);
}

body.light .phone {
    background: #fff;
    border-color: rgba(109, 40, 217, .2);
    box-shadow: 0 32px 80px rgba(109, 40, 217, .15);
}

body.light .ph-head {
    border-color: rgba(109, 40, 217, .08);
}

body.light .ph-sc {
    background: rgba(109, 40, 217, .05);
    border-color: rgba(109, 40, 217, .1);
}

body.light .ph-task {
    border-color: rgba(109, 40, 217, .07);
}

body.light .ph-sec-t {
    color: var(--ink3);
}

body.light .ph-sbar {
    background: rgba(109, 40, 217, .08);
}

body.light .ph-home {
    background: rgba(0, 0, 0, .18);
}

body.light .ph-sb-time {
    color: var(--ink);
}

body.light .hv-float {
    background: rgba(255, 255, 255, .95);
    border-color: rgba(109, 40, 217, .18);
    box-shadow: 0 8px 28px rgba(109, 40, 217, .12);
}

body.light .hfl {
    color: var(--ink3);
}

body.light .hfs {
    color: var(--ink3);
}

body.light .hero {
    background: var(--bg);
}

body.light .hero h1 {
    color: var(--ink);
}

body.light .hero-bg {
    background: radial-gradient(ellipse 70% 80% at 0% 50%, rgba(109, 40, 217, .12), transparent 60%), radial-gradient(ellipse 50% 60% at 100% 20%, rgba(124, 58, 237, .08), transparent 60%);
}

body.light .hero-dots {
    background-image: radial-gradient(rgba(109, 40, 217, .12) 1px, transparent 1px);
}

body.light .hbadge {
    background: rgba(109, 40, 217, .07);
    border-color: rgba(109, 40, 217, .18);
    color: var(--ink2);
}

body.light .hbadge:hover {
    background: rgba(109, 40, 217, .12);
    color: var(--ink);
}

body.light .proof-sep {
    background: rgba(109, 40, 217, .2);
}

body.light .ticker-wrap {
    background: var(--bg2);
}

body.light .t-item {
    background: rgba(109, 40, 217, .06);
    border-color: rgba(109, 40, 217, .14);
}

body.light .t-item:hover {
    background: rgba(109, 40, 217, .12);
}

body.light .t-name {
    color: var(--ink2);
}

body.light .t-tag {
    color: var(--ink3);
    background: rgba(109, 40, 217, .06);
}

body.light .press-card {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
    box-shadow: 0 2px 8px rgba(109, 40, 217, .06);
}

body.light .press-card:hover {
    background: #fff;
    border-color: rgba(109, 40, 217, .25);
    box-shadow: 0 12px 32px rgba(109, 40, 217, .1);
}

body.light .press-card::before {
    color: rgba(109, 40, 217, .06);
}

body.light .press-q {
    color: var(--ink2);
}

body.light .press-logo {
    color: var(--ink3);
}

body.light .press-logo:hover {
    color: var(--p300);
}

body.light .gc {
    background: #fff;
    border-color: rgba(109, 40, 217, .1);
}

body.light .gc:hover {
    background: rgba(109, 40, 217, .04);
}

body.light .gc-name {
    color: var(--ink);
}

body.light .gc-desc {
    color: var(--ink3);
}

body.light .stats-bar {
    background: rgba(109, 40, 217, .04);
    border-color: rgba(109, 40, 217, .12);
}

body.light .stat-cell {
    border-color: rgba(109, 40, 217, .1);
}

body.light .stat-n {
    color: var(--ink);
}

body.light .ttab {
    background: rgba(109, 40, 217, .05);
    border-color: rgba(109, 40, 217, .12);
    color: var(--ink3);
}

body.light .ttab:hover {
    background: rgba(109, 40, 217, .08);
    color: var(--ink);
}

body.light .ttab.act {
    background: rgba(109, 40, 217, .12);
    border-color: rgba(109, 40, 217, .35);
    color: var(--p300);
}

body.light .td-card {
    background: rgba(109, 40, 217, .04);
    border-color: rgba(109, 40, 217, .1);
}

body.light .td-card:hover {
    background: rgba(109, 40, 217, .08);
}

body.light .td-card-title {
    color: var(--ink);
}

body.light .td-card-desc {
    color: var(--ink3);
}

body.light .td-name,
.td-org {
    color: var(--ink);
}

body.light .td-stats {
    background: rgba(109, 40, 217, .04);
    border-color: rgba(109, 40, 217, .1);
}

body.light .wcard {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .wcard:hover {
    box-shadow: 0 16px 40px rgba(109, 40, 217, .12);
}

body.light .wci-icon {
    background: rgba(109, 40, 217, .06);
    border-color: rgba(109, 40, 217, .1);
}

body.light .wct {
    color: var(--ink);
}

body.light .wcd {
    color: var(--ink2);
}

body.light .feat-vis {
    background: var(--bg3);
    border-color: rgba(109, 40, 217, .12);
}

body.light .fi {
    color: var(--ink2);
}

body.light .fi:hover {
    background: rgba(109, 40, 217, .05);
}

body.light .fi.active {
    background: rgba(109, 40, 217, .08);
    border-color: rgba(109, 40, 217, .2);
}

body.light .fi-ic {
    background: rgba(109, 40, 217, .07);
    border-color: rgba(109, 40, 217, .14);
}

body.light .fi-t {
    color: var(--ink);
}

body.light .pillar {
    background: #fff;
    border-color: rgba(109, 40, 217, .1);
}

body.light .pillar:hover {
    background: rgba(109, 40, 217, .04);
}

body.light .pillar-t {
    color: var(--ink);
}

body.light .pillar-ic {
    background: rgba(109, 40, 217, .1);
}

body.light .award-pill {
    background: rgba(109, 40, 217, .05);
    border-color: rgba(109, 40, 217, .12);
}

body.light .c-tc {
    background: #fff;
    border-color: rgba(109, 40, 217, .1);
}

body.light .c-tc:hover {
    background: rgba(109, 40, 217, .03);
}

body.light .c-tc-name {
    color: var(--ink);
}

body.light .c-tc-q {
    color: var(--ink2);
}

body.light .afc {
    background: #fff;
    border-color: rgba(109, 40, 217, .1);
}

body.light .afc:hover {
    background: rgba(109, 40, 217, .04);
}

body.light .afc-t {
    color: var(--ink);
}

body.light .afc-d {
    color: var(--ink2);
}

body.light .afc-ic {
    background: rgba(109, 40, 217, .07);
    border-color: rgba(109, 40, 217, .12);
}

body.light .tc2 {
    background: #fff;
    border-color: rgba(109, 40, 217, .1);
}

body.light .tc2-q {
    color: var(--ink2);
}

body.light .tc2-n {
    color: var(--ink);
}

body.light .tc2-l {
    color: var(--ink3);
}

body.light .cta-band {
    background: linear-gradient(135deg, #E8E7F5, #D8D5F0 50%, #E8E7F5);
    border-color: rgba(109, 40, 217, .2);
}

body.light .cta-band h2,
.cta-band p {
    color: var(--ink);
}

body.light .btn-wh {
    background: var(--p600);
    color: #fff;
}

body.light .btn-wh:hover {
    background: var(--p500);
}

body.light .btn-wout {
    color: var(--p600);
    border-color: rgba(109, 40, 217, .3);
}

body.light .btn-wout:hover {
    background: rgba(109, 40, 217, .06);
    color: var(--ink);
}

body.light footer {
    background: var(--bg2);
    border-color: rgba(109, 40, 217, .1);
}

body.light .ft-col a {
    color: var(--ink3);
}

body.light .ft-col a:hover {
    color: var(--p300);
}

body.light .ft-bot {
    color: var(--ink3);
    border-color: rgba(109, 40, 217, .1);
}

body.light .ft-bot a {
    color: var(--ink3);
}

body.light .nl input {
    background: var(--bg3);
    border-color: var(--bd2);
    color: var(--ink);
}

body.light .soc {
    border-color: rgba(109, 40, 217, .15);
    color: var(--ink3);
}

body.light .soc:hover {
    background: rgba(109, 40, 217, .06);
    color: var(--p300);
}

body.light .ft-brand p {
    color: var(--ink3);
}

body.light table tbody tr:hover {
    background: rgba(109, 40, 217, .03) !important;
}

body.light table tbody td {
    color: var(--ink2) !important;
}

body.light table thead tr {
    background: rgba(109, 40, 217, .08) !important;
}

/* Blog light */
body.light .blog-cat {
    background: rgba(109, 40, 217, .06);
    border-color: rgba(109, 40, 217, .15);
    color: var(--ink3);
}

body.light .blog-cat:hover {
    background: rgba(109, 40, 217, .1);
    color: var(--ink);
}

body.light .blog-cat.active {
    background: rgba(109, 40, 217, .15);
    border-color: rgba(109, 40, 217, .35);
    color: var(--p300);
}

body.light .blog-search input {
    background: rgba(109, 40, 217, .06);
    border-color: rgba(109, 40, 217, .2);
    color: var(--ink);
}

body.light .bpost {
    background: #fff;
    border-color: rgba(109, 40, 217, .1);
}

body.light .bpost:hover {
    box-shadow: 0 12px 32px rgba(109, 40, 217, .1);
}

body.light .bpost-title {
    color: var(--ink);
}

body.light .bpost-excerpt {
    color: var(--ink2);
}

body.light .sidebar-card {
    background: #fff;
    border-color: rgba(109, 40, 217, .1);
}

body.light .sidebar-title {
    color: var(--ink);
}

body.light .popular-title {
    color: var(--ink);
}

body.light .popular-meta {
    color: var(--ink3);
}

body.light .popular-item {
    border-color: rgba(109, 40, 217, .07);
}

body.light .tag-pill {
    background: rgba(109, 40, 217, .06);
    border-color: rgba(109, 40, 217, .12);
    color: var(--ink3);
}

body.light .tag-pill:hover {
    background: rgba(109, 40, 217, .12);
    color: var(--p300);
}

body.light .sidebar-nl input {
    background: var(--bg3);
    border-color: var(--bd2);
    color: var(--ink);
}

body.light .art-content {
    color: var(--ink2);
}

body.light .art-h1 {
    color: var(--ink);
}

body.light .art-callout {
    background: rgba(109, 40, 217, .08);
    border-color: rgba(109, 40, 217, .2);
    color: var(--ink);
}

body.light .art-score-box {
    background: rgba(109, 40, 217, .05);
    border-color: rgba(109, 40, 217, .1);
}

body.light .art-score-label {
    color: var(--ink2);
}

body.light .art-img-inline {
    opacity: .9;
    filter: none;
}

/* Dashboard light */
body.light .db {
    background: var(--bg);
}

body.light .db-side {
    background: var(--bg2);
    border-color: rgba(109, 40, 217, .1);
}

body.light .db-ni {
    color: var(--ink2);
}

body.light .db-ni:hover {
    background: rgba(109, 40, 217, .06);
}

body.light .db-ni.on {
    background: rgba(109, 40, 217, .12);
    color: var(--p300);
}

body.light .db-top {
    background: rgba(244, 243, 255, .95);
    border-color: rgba(109, 40, 217, .1);
}

body.light .db-cs {
    background: var(--bg3);
    border-color: var(--bd2);
    color: var(--ink);
}

body.light .db-bell {
    background: var(--bg3);
    border-color: rgba(109, 40, 217, .1);
}

body.light .db-user {
    background: var(--bg3);
    border-color: rgba(109, 40, 217, .1);
}

body.light .db-stat {
    background: #fff;
    border-color: rgba(109, 40, 217, .1);
}

body.light .db-stat-n {
    color: var(--ink);
}

body.light .db-stat-l {
    color: var(--ink3);
}

body.light .sts-c {
    border-color: rgba(109, 40, 217, .1);
}

body.light .sc-card,
.bc-card {
    background: #fff;
    border-color: rgba(109, 40, 217, .1);
}

body.light .bc-item {
    background: rgba(109, 40, 217, .04);
    border-color: rgba(109, 40, 217, .1);
}

body.light .bc-name {
    color: var(--ink);
}

body.light .cr-banner {
    background: rgba(109, 40, 217, .06);
    border-color: rgba(109, 40, 217, .15);
}

body.light .yte {
    border-color: rgba(109, 40, 217, .1);
}

/* App page light */
body.light .app-fc {
    background: #fff;
    border-color: rgba(109, 40, 217, .1);
}

body.light .app-fc:hover {
    background: rgba(109, 40, 217, .04);
    box-shadow: 0 12px 28px rgba(109, 40, 217, .08);
}

body.light .app-fc-t {
    color: var(--ink);
}

body.light .app-fc-d {
    color: var(--ink2);
}

body.light .app-ss {
    border-color: rgba(109, 40, 217, .15);
    background: var(--bg3);
}

body.light .app-tc {
    background: #fff;
    border-color: rgba(109, 40, 217, .1);
}

body.light .app-tc:hover {
    background: rgba(109, 40, 217, .03);
}

body.light .app-tc-name {
    color: var(--ink);
}

body.light .app-tc-q {
    color: var(--ink2);
}

body.light .app-proof-strip {
    border-color: rgba(109, 40, 217, .1);
}

body.light .app-proof-cell {
    background: rgba(109, 40, 217, .03);
    border-color: rgba(109, 40, 217, .08);
}

body.light .app-proof-n {
    color: var(--ink);
}

body.light .app-vs-col {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .app-vs-col.highlight {
    background: rgba(109, 40, 217, .06);
}

body.light .app-vs-title {
    color: var(--ink);
}

body.light .app-vs-row {
    color: var(--ink2);
    border-color: rgba(109, 40, 217, .06);
}

body.light .hiw-step {
    background: rgba(109, 40, 217, .03);
    border-color: rgba(109, 40, 217, .08);
}

body.light .hiw-step:hover {
    background: rgba(109, 40, 217, .06);
}

body.light .hiw-t {
    color: var(--ink);
}

body.light .hiw-d {
    color: var(--ink2);
}

body.light .app-ticker-wrap {
    background: rgba(109, 40, 217, .05);
    border-color: rgba(109, 40, 217, .1);
}

body.light .app-sticky-cta {
    background: rgba(244, 243, 255, .96);
    border-color: rgba(109, 40, 217, .15);
}

body.light .app-store-btn {
    color: var(--ink);
}

body.light .app-store-name {
    color: var(--ink);
}

body.light .app-qr-section {
    background: linear-gradient(135deg, var(--bg3), var(--bg2) 50%, var(--bg3));
    border-color: rgba(109, 40, 217, .15);
}

body.light .app-rating-row {
    background: rgba(109, 40, 217, .05);
    border-color: rgba(109, 40, 217, .1);
}

body.light .notif-preview {
    background: rgba(255, 255, 255, .9);
    border-color: rgba(109, 40, 217, .2);
}

body.light .notif-t {
    color: var(--ink);
}

/* reels light */
body.light .reel-card {
    border-color: rgba(109, 40, 217, .15);
}

body.light .press-section {
    background: var(--bg);
}

/* Theme toggle button */
/* ── THEME TOGGLE ── */
.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .07);
    border: 1.5px solid rgba(167, 139, 250, .3);
    border-radius: 999px;
    padding: 6px 12px 6px 8px;
    cursor: pointer;
    transition: all .25s;
    flex-shrink: 0;
    white-space: nowrap;
    font-family: inherit;
}

.theme-toggle:hover {
    background: rgba(167, 139, 250, .15);
    border-color: rgba(167, 139, 250, .5);
    box-shadow: 0 0 16px rgba(167, 139, 250, .2);
}

/* The sliding track */
.tt-track {
    width: 36px;
    height: 20px;
    border-radius: 999px;
    background: rgba(109, 40, 217, .25);
    border: 1px solid rgba(167, 139, 250, .25);
    position: relative;
    flex-shrink: 0;
    transition: background .3s;
}

.tt-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
    box-shadow: 0 1px 6px rgba(0, 0, 0, .4);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    line-height: 1;
}

.tt-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--p300);
    letter-spacing: .3px;
    transition: color .2s;
}

/* Light mode state */
body.light .theme-toggle {
    background: rgba(109, 40, 217, .08);
    border-color: rgba(109, 40, 217, .3);
}

body.light .theme-toggle:hover {
    background: rgba(109, 40, 217, .14);
    box-shadow: 0 0 16px rgba(109, 40, 217, .15);
}

body.light .tt-track {
    background: rgba(109, 40, 217, .15);
    border-color: rgba(109, 40, 217, .25);
}

body.light .tt-thumb {
    transform: translateX(16px);
    background: linear-gradient(135deg, #6D28D9, #4C1D95);
}

body.light .tt-label {
    color: var(--p300);
}


/* ── TEST PAGES ── */
.test-page-hero {
    padding: 0 5%;
    min-height: 520px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.test-page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 10% 50%, var(--tp-glow), transparent 65%),
        radial-gradient(ellipse 40% 60% at 90% 20%, var(--tp-glow2), transparent 60%);
    pointer-events: none;
}

.test-page-hero-in {
    max-width: 1240px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 100px 0 80px;
    position: relative;
    z-index: 1;
}

.tp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 7px 18px 7px 9px;
    margin-bottom: 22px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.tp-accent-box {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--bd);
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tp-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(167, 139, 250, .07);
    font-size: 14px;
}

.tp-stat-row:last-child {
    border: none;
}

.tp-stat-label {
    color: var(--ink3);
    font-weight: 500;
}

.tp-stat-val {
    font-weight: 700;
}

.tp-qtypes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.tp-qt {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 20px 22px;
    transition: all .22s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tp-qt::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--tp-accent);
    opacity: 0;
    transition: opacity .2s;
}

.tp-qt:hover {
    border-color: rgba(167, 139, 250, .25);
    background: rgba(167, 139, 250, .04);
    transform: translateY(-2px);
}

.tp-qt:hover::before {
    opacity: 1;
}

.tp-qt-icon {
    font-size: 22px;
    margin-bottom: 10px;
}

.tp-qt-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.tp-qt-desc {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.55;
}

.tp-qt-pts {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 8px;
}

.tp-score-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.tp-sc {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 22px;
    transition: all .2s;
}

.tp-sc:hover {
    border-color: rgba(167, 139, 250, .25);
    transform: translateY(-2px);
}

.tp-sc-flag {
    font-size: 28px;
    margin-bottom: 12px;
}

.tp-sc-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.tp-sc-sub {
    font-size: 12px;
    color: var(--ink3);
    margin-bottom: 14px;
}

.tp-sc-score {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(167, 139, 250, .07);
    font-size: 13px;
}

.tp-sc-score:last-child {
    border: none;
}

.tp-sc-sl {
    color: var(--ink2);
}

.tp-sc-sv {
    font-weight: 700;
}

.tp-tips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}

.tp-tip {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 22px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: all .2s;
}

.tp-tip:hover {
    border-color: rgba(167, 139, 250, .25);
    background: rgba(167, 139, 250, .04);
}

.tp-tip-num {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    flex-shrink: 0;
    font-family: 'DM Serif Display', serif;
}

.tp-tip-t {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
}

.tp-tip-d {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.6;
}

/* CTA band per test */
.tp-cta {
    margin: 0 5% 80px;
    border-radius: 22px;
    padding: 64px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(167, 139, 250, .2);
}

.tp-cta::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 350px;
    background: radial-gradient(ellipse, var(--tp-glow), transparent 65%);
    pointer-events: none;
}

/* Light theme test pages */
body.light .tp-qt {
    background: #fff;
}

body.light .tp-qt:hover {
    background: rgba(109, 40, 217, .04);
}

body.light .tp-qt-name {
    color: var(--ink);
}

body.light .tp-sc {
    background: #fff;
}

body.light .tp-sc-title {
    color: var(--ink);
}

body.light .tp-tip {
    background: #fff;
}

body.light .tp-tip-t {
    color: var(--ink);
}

body.light .tp-accent-box {
    background: rgba(109, 40, 217, .04);
}

body.light .tp-stat-label {
    color: var(--ink3);
}

@media(max-width:900px) {
    .test-page-hero-in {
        grid-template-columns: 1fr;
    }
}


/* ── GLOBAL NAV (sticky, always visible) ── */
#global-header {
    position: sticky;
    top: 0;
    z-index: 200;
}

/* ── LANGUAGE SELECTOR ── */
.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, .06);
    border: 1.5px solid rgba(167, 139, 250, .25);
    border-radius: 9px;
    padding: 7px 12px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink2);
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

.lang-btn:hover {
    background: rgba(167, 139, 250, .12);
    border-color: rgba(167, 139, 250, .4);
    color: #fff;
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--bg2);
    border: 1px solid var(--bd2);
    border-radius: 14px;
    padding: 8px;
    min-width: 210px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .5);
    z-index: 300;
    animation: ddFade .15s ease;
}

.lang-menu-inner {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lang-sec-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--ink4);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 6px 10px 4px;
}

.lang-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    border-radius: 8px;
    padding: 8px 10px;
    font-family: inherit;
    font-size: 13px;
    color: var(--ink2);
    cursor: pointer;
    transition: all .15s;
}

.lang-opt:hover {
    background: rgba(167, 139, 250, .1);
    color: #fff;
}

.lang-opt.active {
    background: rgba(167, 139, 250, .12);
    color: var(--p300);
    font-weight: 700;
}

body.light .lang-menu {
    background: #fff;
}

body.light .lang-btn {
    background: rgba(109, 40, 217, .06);
    border-color: rgba(109, 40, 217, .2);
    color: var(--ink2);
}

body.light .lang-opt:hover {
    background: rgba(109, 40, 217, .08);
    color: var(--ink);
}

body.light .lang-opt.active {
    background: rgba(109, 40, 217, .1);
    color: var(--p300);
}

/* Language toast */
.lang-toast {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--bg3);
    border: 1px solid rgba(167, 139, 250, .3);
    border-radius: 12px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    z-index: 9999;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .5);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
    white-space: nowrap;
    pointer-events: none;
}

.lang-toast.show {
    transform: translateX(-50%) translateY(0);
}

/* ── LIGHT THEME HEADING FIXES ── */
body.light h1,
body.light h2,
body.light h3,
body.light h4,
body.light .sh2,
body.light .h1,
body.light .hero h1 {
    color: var(--ink) !important;
    -webkit-text-fill-color: var(--ink) !important;
}

/* Gradient headings keep their gradient in light mode but stay visible */
body.light h1 span[style*="background-clip:text"],
body.light h2 span[style*="background-clip:text"],
body.light .sh2 span[style*="background-clip:text"] {
    -webkit-text-fill-color: transparent !important;
}

/* Override dark hard-coded colors on headings */
body.light [style*="color:#fff"] {
    color: var(--ink) !important;
}

body.light [style*="color: #fff"] {
    color: var(--ink) !important;
}

/* But preserve white text inside coloured buttons/badges */
body.light .btn-cta,
body.light .btn-hp,
body.light .btn-cta *,
body.light .btn-hp *,
body.light .logo-gem,
body.light .nav-app-dot,
body.light [class*="badge"],
body.light .ann,
body.light .ann *,
body.light .ph-gem {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

/* Specific heading selectors */
body.light .art-h1 {
    color: var(--ink) !important;
    -webkit-text-fill-color: var(--ink) !important;
}

body.light .bpost-title {
    color: var(--ink) !important;
}

body.light .tp-qt-name {
    color: var(--ink) !important;
}

body.light .app-fc-t {
    color: var(--ink) !important;
}

body.light .hiw-t {
    color: var(--ink) !important;
}

body.light .app-vs-title {
    color: var(--ink) !important;
}

body.light .art-content h2,
body.light .art-content h3 {
    color: var(--ink) !important;
}

/* Section label and heading text */
body.light .slbl {
    color: var(--p400);
}

body.light .sp {
    color: var(--ink2);
}


/* ── TEST PAGE CTA COMPONENTS ── */

/* Floating sticky CTA bar (per test page) */
.tp-sticky {
    position: sticky;
    bottom: 0;
    z-index: 90;
    background: rgba(8, 8, 16, .97);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(167, 139, 250, .2);
    padding: 12px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

body.light .tp-sticky {
    background: rgba(244, 243, 255, .97);
    border-color: rgba(109, 40, 217, .2);
}

/* Mid-page CTA banner */
.tp-mid-cta {
    background: linear-gradient(135deg, rgba(109, 40, 217, .1), rgba(76, 29, 149, .06) 50%, rgba(109, 40, 217, .1));
    border: 1px solid rgba(167, 139, 250, .18);
    border-radius: 18px;
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    margin: 0 0 0 0;
    position: relative;
    overflow: hidden;
}

.tp-mid-cta::before {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, var(--tp-glow, rgba(109, 40, 217, .2)), transparent 70%);
    pointer-events: none;
}

body.light .tp-mid-cta {
    background: rgba(109, 40, 217, .05);
    border-color: rgba(109, 40, 217, .18);
}

/* Social proof inline */
.tp-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--bd);
    border-radius: 14px;
    flex-wrap: wrap;
}

.tp-av-stack {
    display: flex;
    flex-direction: row-reverse;
}

.tp-av-stack img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    margin-left: -8px;
    object-fit: cover;
}

.tp-av-stack img:last-child {
    margin-left: 0;
}

/* Countdown urgency strip */
.tp-urgency {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(251, 191, 36, .06);
    border: 1px solid rgba(251, 191, 36, .18);
    border-radius: 10px;
    font-size: 13px;
    color: var(--ink2);
}

/* Feature checklist CTA */
.tp-checklist-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 20px 0;
}

.tp-check-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ink2);
}

.tp-check-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(134, 239, 172, .15);
    border: 1px solid rgba(134, 239, 172, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    color: #86EFAC;
    flex-shrink: 0;
}

/* Score guarantee card */
.tp-guarantee {
    background: rgba(134, 239, 172, .06);
    border: 1px solid rgba(134, 239, 172, .2);
    border-radius: 16px;
    padding: 22px 26px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

/* Testimonial mini card for CTAs */
.tp-testi-mini {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--bd);
    border-radius: 14px;
    padding: 18px 20px;
    position: relative;
}

.tp-testi-mini::before {
    content: "\201C";
    position: absolute;
    top: -8px;
    left: 16px;
    font-size: 40px;
    color: var(--p400);
    font-family: 'DM Serif Display', serif;
    line-height: 1;
}

@media(max-width:700px) {
    .tp-mid-cta {
        flex-direction: column;
        text-align: center;
    }

    .tp-checklist-cta {
        grid-template-columns: 1fr;
    }

    .tp-sticky {
        flex-direction: column;
        padding: 12px 5%;
    }
}


/* ── GOOGLE TRANSLATE: hide toolbar ── */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.goog-te-gadget {
    display: none !important;
}

/* Translating overlay */
.translate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 16, .85);
    backdrop-filter: blur(12px);
    z-index: 9998;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 18px;
}

.translate-overlay.active {
    display: flex;
}

.translate-spinner {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(167, 139, 250, .25);
    border-top-color: var(--p400);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.translate-msg {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.translate-sub {
    font-size: 13px;
    color: var(--ink3);
}

/* Language active flag in nav */
.lang-active-flag {
    font-size: 16px;
    line-height: 1;
}

/* RTL support for Arabic */
body[dir="rtl"] .nav-in {
    flex-direction: row-reverse;
}

body[dir="rtl"] .lang-menu {
    right: auto;
    left: 0;
}


/* ══════════════════════════════════
   SCORE CALCULATOR PAGE
══════════════════════════════════ */
.sc-page {
    background: var(--bg);
    min-height: 100vh;
}

/* Test switcher tabs */
.sc-tabs {
    display: flex;
    gap: 6px;
    padding: 20px 5% 0;
    max-width: 1240px;
    margin: 0 auto;
    overflow-x: auto;
    scrollbar-width: none;
    flex-wrap: wrap;
}

.sc-tabs::-webkit-scrollbar {
    display: none;
}

.sc-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 12px 12px 0 0;
    border: 1px solid var(--bd);
    border-bottom: none;
    background: rgba(255, 255, 255, .02);
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink3);
    cursor: pointer;
    transition: all .2s;
    white-space: nowrap;
}

.sc-tab:hover {
    background: rgba(167, 139, 250, .08);
    color: var(--ink);
}

.sc-tab.active {
    background: var(--bg2);
    color: #fff;
    border-color: rgba(167, 139, 250, .2);
}

/* Main calculator body */
.sc-body {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 5% 80px;
}

.sc-panel {
    display: none;
}

.sc-panel.active {
    display: block;
}

.sc-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 24px;
    align-items: start;
}

/* Input section */
.sc-inputs {
    background: var(--bg2);
    border: 1px solid rgba(167, 139, 250, .15);
    border-radius: 0 18px 18px 18px;
    padding: 28px 32px;
}

.sc-section-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 20px 0 14px;
}

.sc-section-title:first-child {
    margin-top: 0;
}

/* Skill slider row */
.sc-skill {
    margin-bottom: 20px;
}

.sc-skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.sc-skill-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 8px;
}

.sc-skill-val {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    font-family: 'DM Serif Display', serif;
    min-width: 48px;
    text-align: right;
}

.sc-skill-desc {
    font-size: 11px;
    color: var(--ink4);
    margin-top: 3px;
}

/* Custom range slider */
.sc-range {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    transition: all .1s;
}

.sc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
    cursor: pointer;
    border: 3px solid var(--p500);
    transition: all .15s;
}

.sc-range::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(139, 92, 246, .2);
}

.sc-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--ink4);
    margin-top: 4px;
}

body.light .sc-range::-webkit-slider-thumb {
    background: var(--p500);
    border-color: #fff;
}

/* Result panel */
.sc-result {
    position: sticky;
    top: 80px;
}

.sc-score-card {
    background: var(--bg2);
    border: 1px solid rgba(167, 139, 250, .2);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 16px;
}

.sc-overall-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    margin-bottom: 8px;
}

/* Score gauge */
.sc-gauge-wrap {
    position: relative;
    width: 180px;
    margin: 0 auto 20px;
}

.sc-gauge-svg {
    width: 100%;
}

.sc-gauge-val {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -38%);
    text-align: center;
}

.sc-gauge-num {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    font-family: 'DM Serif Display', serif;
    line-height: 1;
}

.sc-gauge-unit {
    font-size: 13px;
    color: var(--ink3);
    margin-top: 4px;
}

.sc-gauge-level {
    font-size: 13px;
    font-weight: 700;
    margin-top: 6px;
}

/* Skill breakdown bars */
.sc-breakdown {
    margin-top: 16px;
}

.sc-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.sc-bar-label {
    font-size: 12px;
    color: var(--ink3);
    width: 72px;
    flex-shrink: 0;
}

.sc-bar-track {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, .06);
    border-radius: 3px;
    overflow: hidden;
}

.sc-bar-fill {
    height: 100%;
    border-radius: 3px;
    transition: width .4s cubic-bezier(.34, 1.56, .64, 1);
}

.sc-bar-score {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    width: 36px;
    text-align: right;
    flex-shrink: 0;
}

/* Eligibility checker */
.sc-elig {
    background: var(--bg2);
    border: 1px solid rgba(167, 139, 250, .15);
    border-radius: 18px;
    padding: 20px 22px;
    margin-bottom: 16px;
}

.sc-elig-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sc-elig-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(167, 139, 250, .07);
    font-size: 12px;
}

.sc-elig-row:last-child {
    border: none;
}

.sc-elig-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sc-elig-name {
    color: var(--ink2);
    flex: 1;
}

.sc-elig-req {
    color: var(--ink3);
    font-size: 11px;
}

.sc-elig-status {
    font-weight: 700;
    font-size: 11px;
    flex-shrink: 0;
}

/* CTA in calculator */
.sc-cta-box {
    background: linear-gradient(135deg, rgba(109, 40, 217, .15), rgba(76, 29, 149, .08));
    border: 1px solid rgba(167, 139, 250, .2);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
}

/* Tips panel */
.sc-tips {
    margin-top: 20px;
    background: var(--bg2);
    border: 1px solid var(--bd);
    border-radius: 18px;
    padding: 22px 28px;
}

body.light .sc-inputs,
body.light .sc-score-card,
body.light .sc-elig,
body.light .sc-tips {
    background: #fff;
    border-color: rgba(109, 40, 217, .1);
}

body.light .sc-skill-name {
    color: var(--ink);
}

body.light .sc-gauge-num {
    color: var(--ink);
}

body.light .sc-bar-score {
    color: var(--ink);
}

body.light .sc-tab.active {
    background: var(--bg3);
}

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

    .sc-result {
        position: static;
    }
}


/* ══ SCORE CALCULATOR PAGE ══ */
.calc-tabs {
    display: flex;
    gap: 0;
    border: 1px solid var(--bd);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 40px;
}

.calc-tab {
    flex: 1;
    padding: 14px 10px;
    text-align: center;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink3);
    background: rgba(255, 255, 255, .02);
    border: none;
    font-family: inherit;
    transition: all .2s;
    border-right: 1px solid var(--bd);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.calc-tab:last-child {
    border-right: none;
}

.calc-tab:hover {
    background: rgba(167, 139, 250, .06);
    color: var(--ink);
}

.calc-tab.act {
    background: rgba(139, 92, 246, .12);
    color: #A78BFA;
    border-bottom: 2px solid #A78BFA;
}

.calc-tab .ct-emoji {
    font-size: 20px;
}

.calc-tab .ct-name {
    font-size: 11px;
}

body.light .calc-tab {
    background: #fff;
}

body.light .calc-tab.act {
    background: rgba(109, 40, 217, .08);
}

.calc-panel {
    display: none;
}

.calc-panel.act {
    display: block;
}

.skill-row {
    margin-bottom: 26px;
}

.skill-label {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.skill-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.skill-val {
    font-size: 22px;
    font-weight: 800;
    font-family: "DM Serif Display", serif;
}

.skill-desc {
    font-size: 12px;
    color: var(--ink3);
    margin-top: 2px;
}

body.light .skill-name {
    color: var(--ink);
}

.calc-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    outline: none;
    cursor: pointer;
}

.calc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #8B5CF6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, .2);
}

.calc-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #8B5CF6;
    cursor: pointer;
    border: none;
}

body.light .calc-slider {
    background: rgba(0, 0, 0, .1);
}

.calc-result {
    background: var(--bg3);
    border: 2px solid rgba(139, 92, 246, .3);
    border-radius: 20px;
    padding: 26px;
    position: sticky;
    top: 80px;
    box-shadow: 0 0 40px rgba(139, 92, 246, .12);
}

body.light .calc-result {
    background: #fff;
}

.calc-result-score {
    font-size: 68px;
    font-weight: 700;
    font-family: "DM Serif Display", serif;
    line-height: 1;
    margin-bottom: 4px;
}

.calc-result-label {
    font-size: 13px;
    color: var(--ink3);
    margin-bottom: 18px;
}

.calc-band-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid rgba(167, 139, 250, .08);
    font-size: 13px;
}

.calc-band-row:last-child {
    border: none;
}

.calc-band-name {
    color: var(--ink2);
    font-weight: 500;
}

.calc-band-val {
    font-weight: 800;
    font-size: 15px;
}

body.light .calc-band-row {
    border-color: rgba(109, 40, 217, .07);
}

.elig-row {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-top: 16px;
}

.elig-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 9px;
    font-size: 12px;
    font-weight: 600;
}

.elig-pass {
    background: rgba(134, 239, 172, .1);
    border: 1px solid rgba(134, 239, 172, .25);
    color: #86EFAC;
}

.elig-fail {
    background: rgba(239, 68, 68, .08);
    border: 1px solid rgba(239, 68, 68, .18);
    color: #FCA5A5;
}

.elig-close {
    background: rgba(251, 191, 36, .08);
    border: 1px solid rgba(251, 191, 36, .2);
    color: #FCD34D;
}

.elig-icon {
    font-size: 12px;
    flex-shrink: 0;
}

.calc-visa-cta {
    margin-top: 18px;
    padding: 14px;
    background: rgba(139, 92, 246, .08);
    border: 1px solid rgba(139, 92, 246, .2);
    border-radius: 12px;
    text-align: center;
}

@media(max-width:900px) {
    .calc-layout {
        flex-direction: column !important
    }

    .calc-result {
        position: static
    }

    .calc-tab .ct-name {
        display: none
    }
}


/* ── SCORE CALCULATOR ── */
.calc-tab {
    padding: 9px 18px;
    border-radius: 10px;
    border: 1.5px solid var(--bd2);
    background: rgba(255, 255, 255, .04);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .2s;
}

.calc-tab:hover {
    background: rgba(167, 139, 250, .08);
    color: var(--ink);
}

.calc-tab.active {
    background: rgba(139, 92, 246, .2);
    border-color: rgba(139, 92, 246, .5);
    color: #A78BFA;
    font-weight: 700;
}

.calc-quick {
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid var(--bd);
    background: rgba(255, 255, 255, .03);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .15s;
}

.calc-quick:hover {
    background: rgba(167, 139, 250, .08);
    color: var(--p300);
    border-color: var(--bd2);
}

/* Slider */
.calc-skill {
    margin-bottom: 22px;
}

.calc-skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.calc-skill-name {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

.calc-skill-val {
    font-size: 20px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
}

.calc-skill-desc {
    font-size: 11px;
    color: var(--ink3);
    margin-bottom: 8px;
}

.calc-slider-wrap {
    position: relative;
}

input[type="range"].calc-range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    outline: none;
    cursor: pointer;
    transition: background .15s;
}

input[type="range"].calc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .4);
    cursor: grab;
    transition: transform .15s;
}

input[type="range"].calc-range::-webkit-slider-thumb:active {
    transform: scale(1.2);
    cursor: grabbing;
}

input[type="range"].calc-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: grab;
}

.calc-skill-ticks {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--ink4);
    margin-top: 4px;
}

/* Score display */
.calc-overall-score {
    text-align: center;
    padding: 20px 0 16px;
    border-bottom: 1px solid var(--bd);
    margin-bottom: 20px;
}

.calc-score-ring {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.calc-score-ring-num {
    font-size: 32px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    line-height: 1;
}

.calc-score-ring-lbl {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-top: 2px;
}

.calc-skills-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.calc-skill-pill {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--bd);
    border-radius: 10px;
    padding: 10px 12px;
    text-align: center;
}

.calc-skill-pill-n {
    font-size: 18px;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
}

.calc-skill-pill-l {
    font-size: 11px;
    color: var(--ink3);
    margin-top: 2px;
}

/* Eligibility */
.elig-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(167, 139, 250, .06);
    font-size: 13px;
}

.elig-item:last-child {
    border: none;
}

.elig-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.elig-name {
    color: var(--ink2);
    flex: 1;
}

.elig-score {
    font-weight: 700;
    font-size: 12px;
}

.elig-status {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

/* Comparison mini cards */
.test-mini-card {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--bd);
    border-radius: 14px;
    padding: 16px 14px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
}

.test-mini-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

.test-mini-card.selected {
    border-width: 2px;
}

body.light .calc-tab {
    background: rgba(109, 40, 217, .05);
    border-color: rgba(109, 40, 217, .18);
    color: var(--ink3);
}

body.light .calc-tab.active {
    background: rgba(109, 40, 217, .12);
    color: var(--p300);
}

body.light .calc-quick {
    background: rgba(109, 40, 217, .04);
}

body.light .calc-skill-pill {
    background: rgba(109, 40, 217, .04);
}

body.light .test-mini-card {
    background: #fff;
}

body.light .calc-skill-name {
    color: var(--ink);
}

body.light input[type="range"].calc-range::-webkit-slider-thumb {
    background: var(--p600);
}

@media(max-width:900px) {
    #calcSliders {
        grid-column: 1/-1;
    }

    .max>div[style*="grid-template-columns:1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    #allTestsComparison {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media(max-width:600px) {
    #allTestsComparison {
        grid-template-columns: 1fr 1fr !important;
    }
}


/* ── CALCULATOR STYLES ── */
.sc-wrap {
    background: var(--bg);
    min-height: 100vh;
}

.sc-hero {
    padding: 64px 5% 40px;
    text-align: center;
    border-bottom: 1px solid var(--bd);
    position: relative;
    overflow: hidden;
}

.sc-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, .18), transparent 65%);
    pointer-events: none;
}

/* Test selector */
.sc-test-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
    position: relative;
    z-index: 1;
}

.sc-tab {
    padding: 10px 20px;
    border-radius: 12px;
    border: 1.5px solid var(--bd2);
    background: rgba(255, 255, 255, .04);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .2s;
}

.sc-tab:hover {
    background: rgba(167, 139, 250, .1);
    color: #fff;
}

.sc-tab.on {
    font-weight: 700;
}

/* Two-column layout */
.sc-body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 5%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
}

.sc-panel {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 20px;
    padding: 28px;
}

/* Sliders */
.sc-skill {
    margin-bottom: 24px;
}

.sc-skill:last-child {
    margin-bottom: 0;
}

.sc-skill-hd {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 5px;
}

.sc-skill-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.sc-skill-num {
    font-size: 22px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    transition: color .2s;
}

.sc-skill-hint {
    font-size: 11px;
    color: var(--ink4);
    margin-bottom: 8px;
}

input.sc-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 7px;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    border: none;
    transition: background .1s;
}

input.sc-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .5);
    cursor: grab;
    transition: transform .15s;
    border: 2px solid currentColor;
}

input.sc-slider::-webkit-slider-thumb:active {
    transform: scale(1.25);
    cursor: grabbing;
}

input.sc-slider::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid currentColor;
    cursor: grab;
}

.sc-skill-scale {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--ink4);
    margin-top: 4px;
}

/* Quick set */
.sc-presets {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--bd);
}

.sc-preset-lbl {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink4);
    width: 100%;
    margin-bottom: 2px;
    text-transform: uppercase;
    letter-spacing: .8px;
}

.sc-preset {
    padding: 5px 12px;
    border-radius: 7px;
    border: 1px solid var(--bd);
    background: rgba(255, 255, 255, .03);
    font-family: inherit;
    font-size: 11px;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .15s;
}

.sc-preset:hover {
    background: rgba(167, 139, 250, .1);
    color: var(--p300);
    border-color: var(--bd2);
}

/* Result ring */
.sc-ring-wrap {
    text-align: center;
    padding: 20px 0 18px;
    border-bottom: 1px solid var(--bd);
    margin-bottom: 20px;
}

.sc-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    transition: all .3s;
}

.sc-ring-score {
    font-size: 34px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    line-height: 1;
}

.sc-ring-sub {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-top: 3px;
    opacity: .8;
}

.sc-level-pill {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* Skill pills */
.sc-pills {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.sc-pill {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--bd);
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    transition: all .2s;
}

.sc-pill-n {
    font-size: 20px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    line-height: 1;
    transition: color .2s;
}

.sc-pill-l {
    font-size: 11px;
    color: var(--ink3);
    margin-top: 3px;
}

/* Eligibility */
.sc-elig-title {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.sc-elig-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(167, 139, 250, .06);
}

.sc-elig-row:last-child {
    border: none;
    padding-bottom: 0;
}

.sc-elig-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.sc-elig-name {
    flex: 1;
    font-size: 12px;
    color: var(--ink2);
    line-height: 1.35;
}

.sc-elig-req {
    font-size: 10px;
    color: var(--ink4);
}

.sc-elig-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 5px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Focus warning */
.sc-focus-warn {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 12px;
    color: var(--ink2);
    line-height: 1.55;
    margin-top: 14px;
}

/* Bottom comparison row */
.sc-test-row {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5% 32px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.sc-mini {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    cursor: pointer;
    transition: all .2s;
}

.sc-mini:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .4);
}

.sc-mini.on {
    border-width: 2px;
}

.sc-mini-icon {
    font-size: 22px;
    margin-bottom: 8px;
}

.sc-mini-name {
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 3px;
}

.sc-mini-range {
    font-size: 10px;
    color: var(--ink4);
}

/* Light theme */
body.light .sc-wrap {
    background: var(--bg);
}

body.light .sc-panel {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .sc-skill-name {
    color: var(--ink);
}

body.light .sc-tab {
    background: rgba(109, 40, 217, .04);
    color: var(--ink3);
}

body.light .sc-preset {
    background: rgba(109, 40, 217, .04);
}

body.light .sc-pill {
    background: rgba(109, 40, 217, .04);
    border-color: rgba(109, 40, 217, .1);
}

body.light .sc-mini {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light input.sc-slider::-webkit-slider-thumb {
    background: var(--p600);
}

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

    .sc-test-row {
        grid-template-columns: repeat(3, 1fr)
    }
}

@media(max-width:500px) {
    .sc-test-row {
        grid-template-columns: 1fr 1fr
    }
}


/* ══ PTE VISA CALCULATOR ══ */
.ptec-wrap {
    background: var(--bg);
    min-height: 100vh;
}

/* Score selector */
.ptec-score-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 32px 0 0;
}

.ptec-score-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 20px;
    border-radius: 14px;
    border: 2px solid var(--bd2);
    background: rgba(255, 255, 255, .03);
    cursor: pointer;
    transition: all .22s;
    font-family: inherit;
    min-width: 100px;
}

.ptec-score-btn:hover {
    border-color: rgba(167, 139, 250, .4);
    background: rgba(139, 92, 246, .08);
    transform: translateY(-2px);
}

.ptec-score-btn.on {
    border-color: #A78BFA;
    background: rgba(139, 92, 246, .18);
    box-shadow: 0 0 24px rgba(139, 92, 246, .2);
}

.ptec-score-n {
    font-size: 24px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    color: #fff;
    line-height: 1;
}

.ptec-score-btn.on .ptec-score-n {
    color: #A78BFA;
}

.ptec-score-lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink3);
}

.ptec-score-btn.on .ptec-score-lbl {
    color: #A78BFA;
}

.ptec-score-pts {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(139, 92, 246, .15);
    color: #C4B5FD;
    white-space: nowrap;
}

/* Custom score slider */
.ptec-custom-wrap {
    max-width: 600px;
    margin: 24px auto 0;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 22px 28px;
}

.ptec-custom-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ptec-custom-lbl {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink2);
}

.ptec-custom-val {
    font-size: 28px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    color: #A78BFA;
}

input.ptec-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    border: none;
    background: linear-gradient(to right, #8B5CF6 0%, rgba(255, 255, 255, .1) 0%);
}

input.ptec-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .5);
    cursor: grab;
    border: 3px solid #8B5CF6;
}

input.ptec-slider::-webkit-slider-thumb:active {
    transform: scale(1.2);
    cursor: grabbing;
}

input.ptec-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #8B5CF6;
    cursor: grab;
}

/* Results grid */
.ptec-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

/* Visa card */
.ptec-visa-card {
    border-radius: 18px;
    padding: 24px;
    border: 1px solid var(--bd);
    background: rgba(255, 255, 255, .02);
    transition: all .22s;
    position: relative;
    overflow: hidden;
}

.ptec-visa-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    opacity: .12;
    pointer-events: none;
}

.ptec-visa-card.eligible {
    border-color: rgba(134, 239, 172, .3);
    background: rgba(134, 239, 172, .04);
}

.ptec-visa-card.eligible::before {
    background: #86EFAC;
    opacity: .08;
}

.ptec-visa-card.close {
    border-color: rgba(251, 191, 36, .25);
    background: rgba(251, 191, 36, .04);
}

.ptec-visa-card.close::before {
    background: #FCD34D;
    opacity: .08;
}

.ptec-visa-card.locked {
    border-color: rgba(251, 113, 133, .2);
    background: rgba(251, 113, 133, .03);
    opacity: .75;
}

.ptec-visa-hd {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.ptec-visa-icon {
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
}

.ptec-visa-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.ptec-visa-sub {
    font-size: 12px;
    color: var(--ink3);
    margin-top: 3px;
}

.ptec-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 14px;
}

.ptec-score-need {
    font-size: 12px;
    color: var(--ink3);
    margin-bottom: 12px;
}

.ptec-score-need strong {
    color: #fff;
}

.ptec-gap-bar {
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .08);
    margin-bottom: 14px;
    overflow: hidden;
}

.ptec-gap-fill {
    height: 100%;
    border-radius: 3px;
    transition: width .4s cubic-bezier(.34, 1.56, .64, 1);
}

/* Profession list */
.ptec-prof-toggle {
    font-size: 12px;
    font-weight: 700;
    color: var(--p400);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
    background: none;
    border: none;
    font-family: inherit;
    padding: 0;
}

.ptec-prof-toggle:hover {
    color: var(--p300);
}

.ptec-professions {
    display: none;
    margin-top: 12px;
}

.ptec-professions.open {
    display: block;
}

.ptec-prof-search {
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--bd2);
    background: rgba(255, 255, 255, .05);
    font-family: inherit;
    font-size: 12px;
    color: #fff;
    margin-bottom: 10px;
    outline: none;
}

.ptec-prof-search::placeholder {
    color: var(--ink4);
}

.ptec-prof-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 220px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--p700) transparent;
}

.ptec-prof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 7px;
    font-size: 12px;
    color: var(--ink2);
    background: rgba(255, 255, 255, .03);
    transition: background .15s;
}

.ptec-prof-item:hover {
    background: rgba(167, 139, 250, .08);
    color: #fff;
}

.ptec-prof-anzsco {
    font-size: 10px;
    color: var(--ink4);
    margin-left: auto;
    flex-shrink: 0;
}

/* Points tally */
.ptec-points-tally {
    background: rgba(139, 92, 246, .08);
    border: 1px solid rgba(139, 92, 246, .2);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 24px;
}

.ptec-points-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(139, 92, 246, .1);
    font-size: 13px;
}

.ptec-points-row:last-child {
    border: none;
}

.ptec-points-key {
    color: var(--ink2);
}

.ptec-points-val {
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
}

/* UK section */
.ptec-uk-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 0;
}

.ptec-uk-card {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--bd);
    border-radius: 14px;
    padding: 18px;
}

/* Light mode */
body.light .ptec-visa-card {
    background: #fff;
}

body.light .ptec-score-btn {
    background: rgba(109, 40, 217, .04);
}

body.light .ptec-score-btn.on {
    background: rgba(109, 40, 217, .12);
}

body.light .ptec-custom-wrap {
    background: #fff;
    border-color: rgba(109, 40, 217, .15);
}

body.light .ptec-prof-search {
    background: rgba(109, 40, 217, .04);
    border-color: rgba(109, 40, 217, .2);
    color: var(--ink);
}

body.light .ptec-prof-item {
    background: rgba(109, 40, 217, .04);
}

body.light .ptec-visa-title {
    color: var(--ink);
}

body.light .ptec-uk-card {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

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

    .ptec-uk-cards {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:580px) {
    .ptec-uk-cards {
        grid-template-columns: 1fr
    }

    .ptec-score-tabs {
        gap: 8px
    }

    .ptec-score-btn {
        min-width: 80px;
        padding: 10px 14px
    }
}


/* ══ PTE VISA CALCULATOR ══ */
.ptec-wrap {
    background: var(--bg);
    min-height: 100vh;
}

/* Score selector */
.ptec-score-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin: 32px 0 0;
}

.ptec-score-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 20px;
    border-radius: 14px;
    border: 2px solid var(--bd2);
    background: rgba(255, 255, 255, .03);
    cursor: pointer;
    transition: all .22s;
    font-family: inherit;
    min-width: 100px;
}

.ptec-score-btn:hover {
    border-color: rgba(167, 139, 250, .4);
    background: rgba(139, 92, 246, .08);
    transform: translateY(-2px);
}

.ptec-score-btn.on {
    border-color: #A78BFA;
    background: rgba(139, 92, 246, .18);
    box-shadow: 0 0 24px rgba(139, 92, 246, .2);
}

.ptec-score-n {
    font-size: 24px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    color: #fff;
    line-height: 1;
}

.ptec-score-btn.on .ptec-score-n {
    color: #A78BFA;
}

.ptec-score-lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink3);
}

.ptec-score-btn.on .ptec-score-lbl {
    color: #A78BFA;
}

.ptec-score-pts {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(139, 92, 246, .15);
    color: #C4B5FD;
    white-space: nowrap;
}

/* Custom score slider */
.ptec-custom-wrap {
    max-width: 600px;
    margin: 24px auto 0;
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 22px 28px;
}

.ptec-custom-hd {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ptec-custom-lbl {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink2);
}

.ptec-custom-val {
    font-size: 28px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    color: #A78BFA;
}

input.ptec-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    border: none;
    background: linear-gradient(to right, #8B5CF6 0%, rgba(255, 255, 255, .1) 0%);
}

input.ptec-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .5);
    cursor: grab;
    border: 3px solid #8B5CF6;
}

input.ptec-slider::-webkit-slider-thumb:active {
    transform: scale(1.2);
    cursor: grabbing;
}

input.ptec-slider::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid #8B5CF6;
    cursor: grab;
}

/* Results grid */
.ptec-results {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 36px;
}

/* Visa card */
.ptec-visa-card {
    border-radius: 18px;
    padding: 24px;
    border: 1px solid var(--bd);
    background: rgba(255, 255, 255, .02);
    transition: all .22s;
    position: relative;
    overflow: hidden;
}

.ptec-visa-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    opacity: .12;
    pointer-events: none;
}

.ptec-visa-card.eligible {
    border-color: rgba(134, 239, 172, .3);
    background: rgba(134, 239, 172, .04);
}

.ptec-visa-card.eligible::before {
    background: #86EFAC;
    opacity: .08;
}

.ptec-visa-card.close {
    border-color: rgba(251, 191, 36, .25);
    background: rgba(251, 191, 36, .04);
}

.ptec-visa-card.close::before {
    background: #FCD34D;
    opacity: .08;
}

.ptec-visa-card.locked {
    border-color: rgba(251, 113, 133, .2);
    background: rgba(251, 113, 133, .03);
    opacity: .75;
}

.ptec-visa-hd {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.ptec-visa-icon {
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
}

.ptec-visa-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.ptec-visa-sub {
    font-size: 12px;
    color: var(--ink3);
    margin-top: 3px;
}

.ptec-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 11px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 14px;
}

.ptec-score-need {
    font-size: 12px;
    color: var(--ink3);
    margin-bottom: 12px;
}

.ptec-score-need strong {
    color: #fff;
}

.ptec-gap-bar {
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .08);
    margin-bottom: 14px;
    overflow: hidden;
}

.ptec-gap-fill {
    height: 100%;
    border-radius: 3px;
    transition: width .4s cubic-bezier(.34, 1.56, .64, 1);
}

/* Profession list */
.ptec-prof-toggle {
    font-size: 12px;
    font-weight: 700;
    color: var(--p400);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 0;
    background: none;
    border: none;
    font-family: inherit;
    padding: 0;
}

.ptec-prof-toggle:hover {
    color: var(--p300);
}

.ptec-professions {
    display: none;
    margin-top: 12px;
}

.ptec-professions.open {
    display: block;
}

.ptec-prof-search {
    width: 100%;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid var(--bd2);
    background: rgba(255, 255, 255, .05);
    font-family: inherit;
    font-size: 12px;
    color: #fff;
    margin-bottom: 10px;
    outline: none;
}

.ptec-prof-search::placeholder {
    color: var(--ink4);
}

.ptec-prof-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 220px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--p700) transparent;
}

.ptec-prof-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 7px;
    font-size: 12px;
    color: var(--ink2);
    background: rgba(255, 255, 255, .03);
    transition: background .15s;
}

.ptec-prof-item:hover {
    background: rgba(167, 139, 250, .08);
    color: #fff;
}

.ptec-prof-anzsco {
    font-size: 10px;
    color: var(--ink4);
    margin-left: auto;
    flex-shrink: 0;
}

/* Points tally */
.ptec-points-tally {
    background: rgba(139, 92, 246, .08);
    border: 1px solid rgba(139, 92, 246, .2);
    border-radius: 16px;
    padding: 20px 24px;
    margin-top: 24px;
}

.ptec-points-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(139, 92, 246, .1);
    font-size: 13px;
}

.ptec-points-row:last-child {
    border: none;
}

.ptec-points-key {
    color: var(--ink2);
}

.ptec-points-val {
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
    font-size: 16px;
}

/* UK section */
.ptec-uk-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin-top: 0;
}

.ptec-uk-card {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--bd);
    border-radius: 14px;
    padding: 18px;
}

/* Light mode */
body.light .ptec-visa-card {
    background: #fff;
}

body.light .ptec-score-btn {
    background: rgba(109, 40, 217, .04);
}

body.light .ptec-score-btn.on {
    background: rgba(109, 40, 217, .12);
}

body.light .ptec-custom-wrap {
    background: #fff;
    border-color: rgba(109, 40, 217, .15);
}

body.light .ptec-prof-search {
    background: rgba(109, 40, 217, .04);
    border-color: rgba(109, 40, 217, .2);
    color: var(--ink);
}

body.light .ptec-prof-item {
    background: rgba(109, 40, 217, .04);
}

body.light .ptec-visa-title {
    color: var(--ink);
}

body.light .ptec-uk-card {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

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

    .ptec-uk-cards {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:580px) {
    .ptec-uk-cards {
        grid-template-columns: 1fr
    }

    .ptec-score-tabs {
        gap: 8px
    }

    .ptec-score-btn {
        min-width: 80px;
        padding: 10px 14px
    }
}


/* ══ PTE TASK CALCULATOR ══ */
.ptc-skill-panel {
    border: 1px solid var(--bd);
    border-radius: 16px;
    overflow: hidden;
}

.ptc-skill-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    cursor: pointer;
    transition: background .2s;
    border-bottom: 1px solid var(--bd);
}

.ptc-skill-hd:hover {
    opacity: .9;
}

.ptc-skill-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ptc-skill-title {
    font-size: 15px;
    font-weight: 700;
}

.ptc-skill-info {
    font-size: 11px;
    color: var(--ink4);
    margin-top: 2px;
}

.ptc-skill-score {
    font-size: 26px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    color: #fff;
    min-width: 44px;
    text-align: right;
}

.ptc-chevron {
    font-size: 12px;
    color: var(--ink4);
    transition: transform .2s;
}

.ptc-chevron.up {
    transform: rotate(180deg);
}

.ptc-task-list {
    padding: 16px 0;
}

.ptc-task-row {
    display: grid;
    grid-template-columns: 1fr 160px;
    gap: 14px;
    align-items: center;
    padding: 13px 20px;
    border-bottom: 1px solid rgba(167, 139, 250, .05);
    transition: background .15s;
}

.ptc-task-row:last-child {
    border: none;
}

.ptc-task-row:hover {
    background: rgba(255, 255, 255, .02);
}

.ptc-task-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.ptc-task-hint {
    font-size: 11px;
    color: var(--ink3);
    line-height: 1.5;
}

.ptc-task-weight {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
}

.ptc-dual-badge {
    display: inline-block;
    font-size: 10px;
    color: var(--ink4);
    margin-top: 5px;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--bd);
}

.ptc-slider-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.ptc-slider-val {
    font-size: 22px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    color: #A78BFA;
    min-width: 40px;
    text-align: center;
}

input.ptc-range {
    -webkit-appearance: none;
    width: 140px;
    height: 7px;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    border: none;
    background: linear-gradient(to right, #8B5CF6 50%, rgba(255, 255, 255, .1) 50%);
    transition: background .1s;
}

input.ptc-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .5);
    cursor: grab;
    border: 2px solid #8B5CF6;
}

input.ptc-range::-webkit-slider-thumb:active {
    transform: scale(1.2);
    cursor: grabbing;
}

input.ptc-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #8B5CF6;
    cursor: grab;
}

.ptc-range-labels {
    display: flex;
    justify-content: space-between;
    width: 140px;
    font-size: 9px;
    color: var(--ink4);
}

/* Score cards */
.ptc-score-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid;
    border-radius: 12px;
    padding: 14px 14px 10px;
    text-align: center;
    transition: all .3s;
}

.ptc-score-icon {
    font-size: 18px;
    margin-bottom: 4px;
}

.ptc-score-num {
    font-size: 28px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    line-height: 1;
}

.ptc-score-lbl {
    font-size: 11px;
    color: var(--ink3);
    margin-top: 3px;
    margin-bottom: 8px;
}

.ptc-score-bar-wrap {
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
}

.ptc-score-bar {
    height: 100%;
    border-radius: 2px;
    transition: width .4s cubic-bezier(.34, 1.56, .64, 1);
    width: 0%;
}

/* AU points */
.ptc-au-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 11px 14px;
    border-radius: 10px;
    margin-bottom: 8px;
    transition: all .3s;
}

.ptc-au-tier:last-child {
    margin: 0;
}

.ptc-au-tier-met {
    background: rgba(134, 239, 172, .1);
    border: 1px solid rgba(134, 239, 172, .25);
}

.ptc-au-tier-next {
    background: rgba(251, 191, 36, .07);
    border: 1px solid rgba(251, 191, 36, .18);
}

.ptc-au-tier-locked {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--bd);
    opacity: .6;
}

/* Visa rows */
.ptc-visa-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(167, 139, 250, .06);
}

.ptc-visa-row:last-child {
    border: none;
}

.ptc-visa-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ptc-visa-name {
    flex: 1;
    font-size: 12px;
    color: var(--ink2);
    line-height: 1.35;
}

.ptc-visa-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 5px;
    white-space: nowrap;
}

/* Presets */
.ptc-preset {
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid var(--bd);
    background: rgba(255, 255, 255, .03);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .15s;
}

.ptc-preset:hover {
    background: rgba(139, 92, 246, .1);
    color: #A78BFA;
    border-color: rgba(139, 92, 246, .35);
}

/* Light mode */
body.light .ptc-skill-panel {
    background: #fff;
}

body.light .ptc-task-name {
    color: var(--ink);
}

body.light .ptc-score-card {
    background: rgba(109, 40, 217, .04);
}

body.light input.ptc-range::-webkit-slider-thumb {
    background: var(--p600);
}

@media(max-width:900px) {
    .max>div[style*="grid-template-columns:1.15fr"] {
        grid-template-columns: 1fr !important;
    }

    .ptc-task-row {
        grid-template-columns: 1fr;
    }

    .ptc-slider-col {
        flex-direction: row;
        align-items: center;
    }

    input.ptc-range,
    .ptc-range-labels {
        width: 100%;
    }
}


/* ══ NAATI CCL CALCULATOR ══ */
.naati-wrap {
    background: var(--bg);
    min-height: 100vh;
}

/* Segment tabs */
.naati-seg-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 28px 0 0;
}

.naati-seg-btn {
    padding: 10px 28px;
    border-radius: 12px;
    border: 2px solid var(--bd2);
    background: rgba(255, 255, 255, .04);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .22s;
}

.naati-seg-btn:hover {
    background: rgba(192, 132, 252, .1);
    color: #fff;
}

.naati-seg-btn.on {
    background: rgba(192, 132, 252, .16);
    border-color: #C084FC;
    color: #C084FC;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(192, 132, 252, .18);
}

/* Criterion sliders */
.naati-panel {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 18px;
    padding: 26px;
}

.naati-crit {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(192, 132, 252, .08);
}

.naati-crit:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.naati-crit-hd {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.naati-crit-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.naati-crit-max {
    font-size: 11px;
    color: var(--ink4);
    margin-top: 2px;
}

.naati-crit-val {
    font-size: 28px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    color: #C084FC;
}

.naati-crit-desc {
    font-size: 12px;
    color: var(--ink3);
    line-height: 1.55;
    margin-bottom: 10px;
}

.naati-crit-tip {
    font-size: 11px;
    color: var(--ink4);
    padding: 6px 10px;
    background: rgba(192, 132, 252, .06);
    border-radius: 6px;
    border-left: 2px solid rgba(192, 132, 252, .3);
    margin-bottom: 10px;
}

input.naati-range {
    -webkit-appearance: none;
    width: 100%;
    height: 7px;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    border: none;
    background: linear-gradient(to right, #C084FC 50%, rgba(255, 255, 255, .1) 50%);
    transition: background .1s;
}

input.naati-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .5);
    cursor: grab;
    border: 2.5px solid #C084FC;
}

input.naati-range::-webkit-slider-thumb:active {
    transform: scale(1.2);
    cursor: grabbing;
}

input.naati-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid #C084FC;
}

.naati-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--ink4);
    margin-top: 4px;
}

/* Score ring */
.naati-ring-wrap {
    text-align: center;
    padding: 20px 0 16px;
    border-bottom: 1px solid var(--bd);
    margin-bottom: 18px;
}

.naati-ring {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    transition: all .35s;
}

.naati-ring-score {
    font-size: 36px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    line-height: 1;
}

.naati-ring-max {
    font-size: 14px;
    color: var(--ink3);
    margin-top: 2px;
}

.naati-pass-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    transition: all .3s;
}

/* Criteria breakdown */
.naati-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.naati-bd-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(192, 132, 252, .06);
}

.naati-bd-row:last-child {
    border: none;
}

.naati-bd-name {
    font-size: 13px;
    color: var(--ink2);
}

.naati-bd-bar-wrap {
    width: 80px;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
}

.naati-bd-bar {
    height: 100%;
    border-radius: 3px;
    background: #C084FC;
    transition: width .4s cubic-bezier(.34, 1.56, .64, 1);
}

.naati-bd-val {
    font-size: 13px;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
    color: #C084FC;
    min-width: 36px;
    text-align: right;
}

/* Pass mark indicator */
.naati-passmark {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 14px;
    font-size: 13px;
    transition: all .3s;
}

.naati-passmark.pass {
    background: rgba(134, 239, 172, .1);
    border: 1px solid rgba(134, 239, 172, .25);
    color: #86EFAC;
}

.naati-passmark.fail {
    background: rgba(251, 113, 133, .08);
    border: 1px solid rgba(251, 113, 133, .2);
    color: #FDA4AF;
}

.naati-passmark.close {
    background: rgba(251, 191, 36, .08);
    border: 1px solid rgba(251, 191, 36, .2);
    color: #FCD34D;
}

/* Both segments summary */
.naati-final {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 18px;
    padding: 22px;
}

.naati-seg-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.naati-seg-mini {
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    border: 1px solid;
    transition: all .3s;
}

.naati-seg-mini.pass {
    background: rgba(134, 239, 172, .08);
    border-color: rgba(134, 239, 172, .3);
}

.naati-seg-mini.fail {
    background: rgba(251, 113, 133, .06);
    border-color: rgba(251, 113, 133, .2);
}

.naati-seg-mini.close {
    background: rgba(251, 191, 36, .06);
    border-color: rgba(251, 191, 36, .2);
}

.naati-seg-mini-n {
    font-size: 26px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
}

.naati-seg-mini-l {
    font-size: 11px;
    color: var(--ink3);
    margin-top: 3px;
}

.naati-seg-mini-s {
    font-size: 11px;
    font-weight: 700;
    margin-top: 5px;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* PR Points card */
.naati-pr-card {
    border-radius: 14px;
    padding: 18px 20px;
    transition: all .3s;
    margin-bottom: 12px;
}

.naati-pr-card.earned {
    background: rgba(192, 132, 252, .1);
    border: 2px solid rgba(192, 132, 252, .35);
    box-shadow: 0 0 28px rgba(192, 132, 252, .15);
}

.naati-pr-card.not-earned {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--bd);
}

/* Visa rows */
.naati-visa-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(192, 132, 252, .06);
}

.naati-visa-row:last-child {
    border: none;
}

.naati-visa-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.naati-visa-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 5px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Quick presets */
.naati-preset {
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid var(--bd);
    background: rgba(255, 255, 255, .03);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .15s;
}

.naati-preset:hover {
    background: rgba(192, 132, 252, .1);
    color: #C084FC;
    border-color: rgba(192, 132, 252, .35);
}

/* Both-segment toggle */
.naati-both-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ink2);
    cursor: pointer;
}

.naati-both-check {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1.5px solid var(--bd2);
    background: rgba(255, 255, 255, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: all .2s;
}

.naati-both-check.on {
    background: #9333EA;
    border-color: #9333EA;
    color: #fff;
}

/* Light mode */
body.light .naati-panel {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .naati-crit-name {
    color: var(--ink);
}

body.light .naati-final {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .naati-seg-btn {
    background: rgba(109, 40, 217, .04);
}

body.light .naati-seg-btn.on {
    background: rgba(109, 40, 217, .1);
    border-color: var(--p400);
    color: var(--p300);
}

body.light input.naati-range::-webkit-slider-thumb {
    background: var(--p600);
}

@media(max-width:900px) {
    .max>[style*="grid-template-columns:1.15fr"] {
        grid-template-columns: 1fr !important;
    }
}


/* ══ NAATI CCL CALCULATOR ══ */
.naati-wrap {
    background: var(--bg);
    min-height: 100vh;
}

/* Segment tabs */
.naati-seg-tabs {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin: 28px 0 0;
}

.naati-seg-btn {
    padding: 10px 28px;
    border-radius: 12px;
    border: 2px solid var(--bd2);
    background: rgba(255, 255, 255, .04);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .22s;
}

.naati-seg-btn:hover {
    background: rgba(192, 132, 252, .1);
    color: #fff;
}

.naati-seg-btn.on {
    background: rgba(192, 132, 252, .16);
    border-color: #C084FC;
    color: #C084FC;
    font-weight: 700;
    box-shadow: 0 0 20px rgba(192, 132, 252, .18);
}

/* Criterion sliders */
.naati-panel {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 18px;
    padding: 26px;
}

.naati-crit {
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(192, 132, 252, .08);
}

.naati-crit:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.naati-crit-hd {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.naati-crit-name {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
}

.naati-crit-max {
    font-size: 11px;
    color: var(--ink4);
    margin-top: 2px;
}

.naati-crit-val {
    font-size: 28px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    color: #C084FC;
}

.naati-crit-desc {
    font-size: 12px;
    color: var(--ink3);
    line-height: 1.55;
    margin-bottom: 10px;
}

.naati-crit-tip {
    font-size: 11px;
    color: var(--ink4);
    padding: 6px 10px;
    background: rgba(192, 132, 252, .06);
    border-radius: 6px;
    border-left: 2px solid rgba(192, 132, 252, .3);
    margin-bottom: 10px;
}

input.naati-range {
    -webkit-appearance: none;
    width: 100%;
    height: 7px;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    border: none;
    background: linear-gradient(to right, #C084FC 50%, rgba(255, 255, 255, .1) 50%);
    transition: background .1s;
}

input.naati-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .5);
    cursor: grab;
    border: 2.5px solid #C084FC;
}

input.naati-range::-webkit-slider-thumb:active {
    transform: scale(1.2);
    cursor: grabbing;
}

input.naati-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid #C084FC;
}

.naati-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--ink4);
    margin-top: 4px;
}

/* Score ring */
.naati-ring-wrap {
    text-align: center;
    padding: 20px 0 16px;
    border-bottom: 1px solid var(--bd);
    margin-bottom: 18px;
}

.naati-ring {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    transition: all .35s;
}

.naati-ring-score {
    font-size: 36px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    line-height: 1;
}

.naati-ring-max {
    font-size: 14px;
    color: var(--ink3);
    margin-top: 2px;
}

.naati-pass-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    transition: all .3s;
}

/* Criteria breakdown */
.naati-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.naati-bd-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(192, 132, 252, .06);
}

.naati-bd-row:last-child {
    border: none;
}

.naati-bd-name {
    font-size: 13px;
    color: var(--ink2);
}

.naati-bd-bar-wrap {
    width: 80px;
    height: 5px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
}

.naati-bd-bar {
    height: 100%;
    border-radius: 3px;
    background: #C084FC;
    transition: width .4s cubic-bezier(.34, 1.56, .64, 1);
}

.naati-bd-val {
    font-size: 13px;
    font-weight: 700;
    font-family: 'DM Serif Display', serif;
    color: #C084FC;
    min-width: 36px;
    text-align: right;
}

/* Pass mark indicator */
.naati-passmark {
    padding: 12px 16px;
    border-radius: 12px;
    margin-bottom: 14px;
    font-size: 13px;
    transition: all .3s;
}

.naati-passmark.pass {
    background: rgba(134, 239, 172, .1);
    border: 1px solid rgba(134, 239, 172, .25);
    color: #86EFAC;
}

.naati-passmark.fail {
    background: rgba(251, 113, 133, .08);
    border: 1px solid rgba(251, 113, 133, .2);
    color: #FDA4AF;
}

.naati-passmark.close {
    background: rgba(251, 191, 36, .08);
    border: 1px solid rgba(251, 191, 36, .2);
    color: #FCD34D;
}

/* Both segments summary */
.naati-final {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 18px;
    padding: 22px;
}

.naati-seg-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 16px;
}

.naati-seg-mini {
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    border: 1px solid;
    transition: all .3s;
}

.naati-seg-mini.pass {
    background: rgba(134, 239, 172, .08);
    border-color: rgba(134, 239, 172, .3);
}

.naati-seg-mini.fail {
    background: rgba(251, 113, 133, .06);
    border-color: rgba(251, 113, 133, .2);
}

.naati-seg-mini.close {
    background: rgba(251, 191, 36, .06);
    border-color: rgba(251, 191, 36, .2);
}

.naati-seg-mini-n {
    font-size: 26px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
}

.naati-seg-mini-l {
    font-size: 11px;
    color: var(--ink3);
    margin-top: 3px;
}

.naati-seg-mini-s {
    font-size: 11px;
    font-weight: 700;
    margin-top: 5px;
    padding: 2px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* PR Points card */
.naati-pr-card {
    border-radius: 14px;
    padding: 18px 20px;
    transition: all .3s;
    margin-bottom: 12px;
}

.naati-pr-card.earned {
    background: rgba(192, 132, 252, .1);
    border: 2px solid rgba(192, 132, 252, .35);
    box-shadow: 0 0 28px rgba(192, 132, 252, .15);
}

.naati-pr-card.not-earned {
    background: rgba(255, 255, 255, .02);
    border: 1px solid var(--bd);
}

/* Visa rows */
.naati-visa-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(192, 132, 252, .06);
}

.naati-visa-row:last-child {
    border: none;
}

.naati-visa-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.naati-visa-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 5px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Quick presets */
.naati-preset {
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid var(--bd);
    background: rgba(255, 255, 255, .03);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .15s;
}

.naati-preset:hover {
    background: rgba(192, 132, 252, .1);
    color: #C084FC;
    border-color: rgba(192, 132, 252, .35);
}

/* Both-segment toggle */
.naati-both-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--ink2);
    cursor: pointer;
}

.naati-both-check {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    border: 1.5px solid var(--bd2);
    background: rgba(255, 255, 255, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    transition: all .2s;
}

.naati-both-check.on {
    background: #9333EA;
    border-color: #9333EA;
    color: #fff;
}

/* Light mode */
body.light .naati-panel {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .naati-crit-name {
    color: var(--ink);
}

body.light .naati-final {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .naati-seg-btn {
    background: rgba(109, 40, 217, .04);
}

body.light .naati-seg-btn.on {
    background: rgba(109, 40, 217, .1);
    border-color: var(--p400);
    color: var(--p300);
}

body.light input.naati-range::-webkit-slider-thumb {
    background: var(--p600);
}

@media(max-width:900px) {
    .max>[style*="grid-template-columns:1.15fr"] {
        grid-template-columns: 1fr !important;
    }
}


/* ══ CELPIP CALCULATOR ══ */
.cel-wrap {
    background: var(--bg);
    min-height: 100vh;
}

.cel-skill-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 24px 0 0;
}

.cel-skill-tab {
    padding: 9px 18px;
    border-radius: 10px;
    border: 1.5px solid var(--bd2);
    background: rgba(255, 255, 255, .04);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .2s;
}

.cel-skill-tab:hover {
    background: rgba(251, 113, 133, .1);
    color: #fff;
}

.cel-skill-tab.on {
    font-weight: 700;
}

.cel-panel {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 18px;
    padding: 26px;
}

.cel-task {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(251, 113, 133, .07);
}

.cel-task:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.cel-task-hd {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}

.cel-task-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.cel-task-val {
    font-size: 24px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    min-width: 40px;
    text-align: right;
}

.cel-task-desc {
    font-size: 12px;
    color: var(--ink3);
    line-height: 1.55;
    margin-bottom: 8px;
}

.cel-task-tip {
    font-size: 11px;
    color: var(--ink4);
    padding: 5px 10px;
    background: rgba(251, 113, 133, .06);
    border-radius: 6px;
    border-left: 2px solid rgba(251, 113, 133, .3);
    margin-bottom: 8px;
}

.cel-task-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    margin-bottom: 8px;
}

input.cel-range {
    -webkit-appearance: none;
    width: 100%;
    height: 7px;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    border: none;
    background: linear-gradient(to right, #FB7185 60%, rgba(255, 255, 255, .1) 60%);
    transition: background .1s;
}

input.cel-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .5);
    cursor: grab;
    border: 2.5px solid #FB7185;
}

input.cel-range::-webkit-slider-thumb:active {
    transform: scale(1.2);
    cursor: grabbing;
}

input.cel-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid #FB7185;
    cursor: grab;
}

.cel-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--ink4);
    margin-top: 3px;
}

/* CLB score rings */
.cel-clb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cel-clb-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--bd);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    transition: all .3s;
}

.cel-clb-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 3px solid;
    transition: all .3s;
}

.cel-clb-n {
    font-size: 24px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    line-height: 1;
}

.cel-clb-l {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 2px;
    opacity: .8;
}

.cel-clb-label {
    font-size: 11px;
    color: var(--ink3);
}

/* Overall CLB display */
.cel-overall {
    text-align: center;
    padding: 18px 0 14px;
    border-bottom: 1px solid var(--bd);
    margin-bottom: 16px;
}

.cel-overall-n {
    font-size: 42px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    line-height: 1;
}

.cel-overall-lbl {
    font-size: 11px;
    color: var(--ink3);
    margin-top: 4px;
}

.cel-overall-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
}

/* CRS points table */
.cel-crs-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    border-radius: 8px;
    margin-bottom: 6px;
    font-size: 13px;
    transition: all .3s;
}

.cel-crs-row.highlight {
    background: rgba(251, 113, 133, .1);
    border: 1px solid rgba(251, 113, 133, .25);
}

.cel-crs-row.muted {
    opacity: .5;
}

/* Visa panel */
.cel-visa-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(251, 113, 133, .06);
}

.cel-visa-row:last-child {
    border: none;
}

.cel-visa-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cel-visa-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 5px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Presets */
.cel-preset {
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid var(--bd);
    background: rgba(255, 255, 255, .03);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .15s;
}

.cel-preset:hover {
    background: rgba(251, 113, 133, .1);
    color: #FDA4AF;
    border-color: rgba(251, 113, 133, .35);
}

/* Light mode */
body.light .cel-wrap {
    background: var(--bg);
}

body.light .cel-panel {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .cel-task-name {
    color: var(--ink);
}

body.light .cel-skill-tab {
    background: rgba(109, 40, 217, .04);
}

body.light .cel-skill-tab.on {
    background: rgba(225, 29, 72, .08);
    border-color: #FB7185;
    color: #E11D48;
}

body.light .cel-clb-card {
    background: #fff;
    border-color: rgba(225, 29, 72, .12);
}

body.light input.cel-range::-webkit-slider-thumb {
    background: var(--p600);
    border-color: #FB7185;
}

@media(max-width:900px) {
    .max>[style*="grid-template-columns:1.15fr"] {
        grid-template-columns: 1fr !important;
    }
}


/* ══ CELPIP CALCULATOR ══ */
.cel-wrap {
    background: var(--bg);
    min-height: 100vh;
}

.cel-skill-tabs {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 24px 0 0;
}

.cel-skill-tab {
    padding: 9px 18px;
    border-radius: 10px;
    border: 1.5px solid var(--bd2);
    background: rgba(255, 255, 255, .04);
    font-family: inherit;
    font-size: 13px;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .2s;
}

.cel-skill-tab:hover {
    background: rgba(251, 113, 133, .1);
    color: #fff;
}

.cel-skill-tab.on {
    font-weight: 700;
}

.cel-panel {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 18px;
    padding: 26px;
}

.cel-task {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(251, 113, 133, .07);
}

.cel-task:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
}

.cel-task-hd {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 6px;
}

.cel-task-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.cel-task-val {
    font-size: 24px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    min-width: 40px;
    text-align: right;
}

.cel-task-desc {
    font-size: 12px;
    color: var(--ink3);
    line-height: 1.55;
    margin-bottom: 8px;
}

.cel-task-tip {
    font-size: 11px;
    color: var(--ink4);
    padding: 5px 10px;
    background: rgba(251, 113, 133, .06);
    border-radius: 6px;
    border-left: 2px solid rgba(251, 113, 133, .3);
    margin-bottom: 8px;
}

.cel-task-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
    margin-bottom: 8px;
}

input.cel-range {
    -webkit-appearance: none;
    width: 100%;
    height: 7px;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    border: none;
    background: linear-gradient(to right, #FB7185 60%, rgba(255, 255, 255, .1) 60%);
    transition: background .1s;
}

input.cel-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, .5);
    cursor: grab;
    border: 2.5px solid #FB7185;
}

input.cel-range::-webkit-slider-thumb:active {
    transform: scale(1.2);
    cursor: grabbing;
}

input.cel-range::-moz-range-thumb {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    border: 2.5px solid #FB7185;
    cursor: grab;
}

.cel-range-labels {
    display: flex;
    justify-content: space-between;
    font-size: 10px;
    color: var(--ink4);
    margin-top: 3px;
}

/* CLB score rings */
.cel-clb-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.cel-clb-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--bd);
    border-radius: 12px;
    padding: 14px;
    text-align: center;
    transition: all .3s;
}

.cel-clb-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border: 3px solid;
    transition: all .3s;
}

.cel-clb-n {
    font-size: 24px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    line-height: 1;
}

.cel-clb-l {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-top: 2px;
    opacity: .8;
}

.cel-clb-label {
    font-size: 11px;
    color: var(--ink3);
}

/* Overall CLB display */
.cel-overall {
    text-align: center;
    padding: 18px 0 14px;
    border-bottom: 1px solid var(--bd);
    margin-bottom: 16px;
}

.cel-overall-n {
    font-size: 42px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    line-height: 1;
}

.cel-overall-lbl {
    font-size: 11px;
    color: var(--ink3);
    margin-top: 4px;
}

.cel-overall-badge {
    display: inline-block;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 10px;
}

/* CRS points table */
.cel-crs-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 12px;
    border-radius: 8px;
    margin-bottom: 6px;
    font-size: 13px;
    transition: all .3s;
}

.cel-crs-row.highlight {
    background: rgba(251, 113, 133, .1);
    border: 1px solid rgba(251, 113, 133, .25);
}

.cel-crs-row.muted {
    opacity: .5;
}

/* Visa panel */
.cel-visa-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(251, 113, 133, .06);
}

.cel-visa-row:last-child {
    border: none;
}

.cel-visa-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    flex-shrink: 0;
}

.cel-visa-badge {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 5px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Presets */
.cel-preset {
    padding: 6px 14px;
    border-radius: 8px;
    border: 1px solid var(--bd);
    background: rgba(255, 255, 255, .03);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .15s;
}

.cel-preset:hover {
    background: rgba(251, 113, 133, .1);
    color: #FDA4AF;
    border-color: rgba(251, 113, 133, .35);
}

/* Light mode */
body.light .cel-wrap {
    background: var(--bg);
}

body.light .cel-panel {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .cel-task-name {
    color: var(--ink);
}

body.light .cel-skill-tab {
    background: rgba(109, 40, 217, .04);
}

body.light .cel-skill-tab.on {
    background: rgba(225, 29, 72, .08);
    border-color: #FB7185;
    color: #E11D48;
}

body.light .cel-clb-card {
    background: #fff;
    border-color: rgba(225, 29, 72, .12);
}

body.light input.cel-range::-webkit-slider-thumb {
    background: var(--p600);
    border-color: #FB7185;
}

@media(max-width:900px) {
    .max>[style*="grid-template-columns:1.15fr"] {
        grid-template-columns: 1fr !important;
    }
}


/* Calculators dropdown accent */
.calc-dd-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px 6px;
    font-size: 10px;
    font-weight: 700;
    color: var(--ink4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-bottom: 1px solid var(--bd);
    margin-bottom: 4px;
}

.ddi-calc:hover {
    border-left: 3px solid #A78BFA;
    padding-left: 9px;
}


/* ══ NAV REDESIGN — CLEAN & COMPACT ══ */
nav {
    height: 60px !important;
}

.nav-in {
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    height: 100%;
    gap: 8px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

/* Compact icon-only controls */
.nav-icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid var(--bd2);
    background: rgba(255, 255, 255, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .18s;
    font-size: 16px;
    color: var(--ink2);
    flex-shrink: 0;
    position: relative;
}

.nav-icon-btn:hover {
    background: rgba(167, 139, 250, .1);
    border-color: rgba(167, 139, 250, .3);
    color: #fff;
}

/* Compact lang button — flag only */
.lang-btn {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    border: 1px solid var(--bd2);
    background: rgba(255, 255, 255, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .18s;
    font-size: 17px;
    padding: 0;
    gap: 0;
}

.lang-btn svg {
    display: none;
}

/* hide chevron */
#langName {
    display: none;
}

/* hide text label */
.lang-btn:hover {
    background: rgba(167, 139, 250, .1);
    border-color: rgba(167, 139, 250, .3);
}

/* Compact theme toggle — icon only */
.theme-toggle {
    width: 34px !important;
    height: 34px !important;
    border-radius: 8px !important;
    padding: 0 !important;
    border: 1px solid var(--bd2) !important;
    background: rgba(255, 255, 255, .04) !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 0 !important;
}

.theme-toggle:hover {
    background: rgba(167, 139, 250, .1) !important;
    border-color: rgba(167, 139, 250, .3) !important;
    box-shadow: none !important;
}

.tt-track {
    display: none !important;
}

/* hide sliding track */
.tt-label {
    display: none !important;
}

/* hide text */
.theme-toggle::after {
    font-size: 17px;
    line-height: 1;
}

body:not(.light) .theme-toggle::after {
    content: "☀️";
}

body.light .theme-toggle::after {
    content: "🌙";
}

/* Compact buttons */
.btn-ghost {
    padding: 7px 14px !important;
    font-size: 13px !important;
    height: 34px;
    display: flex;
    align-items: center;
}

.btn-cta {
    padding: 8px 16px !important;
    font-size: 13px !important;
    height: 34px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

/* Smaller nav-links text */
.nbtn {
    font-size: 13px !important;
    padding: 6px 10px !important;
}

.nav-app-btn {
    padding: 6px 12px !important;
    font-size: 13px !important;
}

/* Separator */
.nav-sep {
    width: 1px;
    height: 20px;
    background: var(--bd);
    margin: 0 4px;
    flex-shrink: 0;
}

/* Announce bar smaller */
.ann {
    font-size: 12px !important;
    padding: 7px 5% !important;
}

/* Light mode overrides */
body.light .nav-icon-btn {
    background: rgba(109, 40, 217, .04);
    border-color: rgba(109, 40, 217, .15);
}

body.light .lang-btn {
    background: rgba(109, 40, 217, .04);
    border-color: rgba(109, 40, 217, .15);
}

body.light .theme-toggle {
    background: rgba(109, 40, 217, .04) !important;
    border-color: rgba(109, 40, 217, .15) !important;
}


/* ══ PRICING PAGE ══ */
.price-wrap {
    background: var(--bg);
    min-height: 100vh;
}

/* Toggle annual/monthly */
.price-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 28px 0 0;
}

.price-toggle-track {
    width: 48px;
    height: 26px;
    border-radius: 999px;
    background: rgba(109, 40, 217, .2);
    border: 1px solid rgba(167, 139, 250, .3);
    cursor: pointer;
    position: relative;
    transition: background .25s;
}

.price-toggle-track.annual {
    background: rgba(109, 40, 217, .5);
    border-color: var(--p400);
}

.price-toggle-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .4);
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
}

.price-toggle-track.annual .price-toggle-thumb {
    transform: translateX(22px);
}

.price-toggle-lbl {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink3);
}

.price-toggle-lbl.active {
    color: #fff;
}

.price-save-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(134, 239, 172, .15);
    color: #86EFAC;
    border: 1px solid rgba(134, 239, 172, .25);
}

/* Plan cards */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.price-card {
    border-radius: 22px;
    border: 1px solid var(--bd);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all .22s;
    background: rgba(255, 255, 255, .025);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.price-card.featured {
    border: 2px solid var(--p500);
    background: rgba(109, 40, 217, .1);
    box-shadow: 0 0 0 1px rgba(139, 92, 246, .15), 0 24px 60px rgba(109, 40, 217, .2);
}

.price-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--p500), var(--p700));
    color: #fff;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.price-plan-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.price-currency {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-top: 4px;
}

.price-num {
    font-size: 52px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    color: #fff;
    line-height: 1;
}

.price-period {
    font-size: 13px;
    color: var(--ink3);
}

.price-annual-note {
    font-size: 12px;
    color: var(--ink4);
    margin-bottom: 20px;
    min-height: 18px;
}

.price-desc {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.6;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--bd);
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.price-feat {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.45;
}

.price-feat-check {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}

.price-feat-check.yes {
    background: rgba(134, 239, 172, .15);
    color: #86EFAC;
    border: 1px solid rgba(134, 239, 172, .25);
}

.price-feat-check.no {
    background: rgba(255, 255, 255, .04);
    color: var(--ink4);
    border: 1px solid var(--bd);
}

.price-feat.muted {
    color: var(--ink4);
}

/* Comparison table */
.comp-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

.comp-table th {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink3);
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid var(--bd);
}

.comp-table th.plan-col {
    text-align: center;
    font-size: 13px;
    color: #fff;
}

.comp-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(167, 139, 250, .06);
    font-size: 13px;
    color: var(--ink2);
    vertical-align: middle;
}

.comp-table td.plan-col {
    text-align: center;
}

.comp-table tr:hover td {
    background: rgba(167, 139, 250, .03);
}

.comp-check {
    display: inline-flex;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.comp-check.y {
    background: rgba(134, 239, 172, .15);
    color: #86EFAC;
}

.comp-check.n {
    background: rgba(255, 255, 255, .04);
    color: var(--ink4);
}

.comp-section {
    font-size: 11px;
    font-weight: 700;
    color: var(--p400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(139, 92, 246, .06);
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--bd);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    gap: 16px;
}

.faq-q:hover {
    color: var(--p300);
}

.faq-icon {
    font-size: 18px;
    color: var(--ink4);
    flex-shrink: 0;
    transition: transform .2s;
}

.faq-a {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.7;
    padding-bottom: 18px;
    display: none;
}

.faq-item.open .faq-a {
    display: block;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--p300);
}

/* Light mode */
body.light .price-card {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .price-card.featured {
    background: rgba(109, 40, 217, .06);
    border-color: rgba(109, 40, 217, .4);
}

body.light .price-num {
    color: var(--ink);
}

body.light .price-currency {
    color: var(--ink);
}

body.light .comp-table td {
    color: var(--ink2);
}

body.light .faq-q {
    color: var(--ink);
}

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


/* ══ PRICING PAGE ══ */
.price-wrap {
    background: var(--bg);
    min-height: 100vh;
}

/* Toggle annual/monthly */
.price-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 28px 0 0;
}

.price-toggle-track {
    width: 48px;
    height: 26px;
    border-radius: 999px;
    background: rgba(109, 40, 217, .2);
    border: 1px solid rgba(167, 139, 250, .3);
    cursor: pointer;
    position: relative;
    transition: background .25s;
}

.price-toggle-track.annual {
    background: rgba(109, 40, 217, .5);
    border-color: var(--p400);
}

.price-toggle-thumb {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0, 0, 0, .4);
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
}

.price-toggle-track.annual .price-toggle-thumb {
    transform: translateX(22px);
}

.price-toggle-lbl {
    font-size: 13px;
    font-weight: 600;
    color: var(--ink3);
}

.price-toggle-lbl.active {
    color: #fff;
}

.price-save-badge {
    display: inline-block;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    background: rgba(134, 239, 172, .15);
    color: #86EFAC;
    border: 1px solid rgba(134, 239, 172, .25);
}

/* Plan cards */
.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.price-card {
    border-radius: 22px;
    border: 1px solid var(--bd);
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all .22s;
    background: rgba(255, 255, 255, .025);
}

.price-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
}

.price-card.featured {
    border: 2px solid var(--p500);
    background: rgba(109, 40, 217, .1);
    box-shadow: 0 0 0 1px rgba(139, 92, 246, .15), 0 24px 60px rgba(109, 40, 217, .2);
}

.price-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--p500), var(--p700));
    color: #fff;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.price-plan-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink3);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.price-amount {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 6px;
}

.price-currency {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-top: 4px;
}

.price-num {
    font-size: 52px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    color: #fff;
    line-height: 1;
}

.price-period {
    font-size: 13px;
    color: var(--ink3);
}

.price-annual-note {
    font-size: 12px;
    color: var(--ink4);
    margin-bottom: 20px;
    min-height: 18px;
}

.price-desc {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.6;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--bd);
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.price-feat {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.45;
}

.price-feat-check {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}

.price-feat-check.yes {
    background: rgba(134, 239, 172, .15);
    color: #86EFAC;
    border: 1px solid rgba(134, 239, 172, .25);
}

.price-feat-check.no {
    background: rgba(255, 255, 255, .04);
    color: var(--ink4);
    border: 1px solid var(--bd);
}

.price-feat.muted {
    color: var(--ink4);
}

/* Comparison table */
.comp-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
}

.comp-table th {
    font-size: 12px;
    font-weight: 700;
    color: var(--ink3);
    padding: 14px 16px;
    text-align: left;
    border-bottom: 2px solid var(--bd);
}

.comp-table th.plan-col {
    text-align: center;
    font-size: 13px;
    color: #fff;
}

.comp-table td {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(167, 139, 250, .06);
    font-size: 13px;
    color: var(--ink2);
    vertical-align: middle;
}

.comp-table td.plan-col {
    text-align: center;
}

.comp-table tr:hover td {
    background: rgba(167, 139, 250, .03);
}

.comp-check {
    display: inline-flex;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
}

.comp-check.y {
    background: rgba(134, 239, 172, .15);
    color: #86EFAC;
}

.comp-check.n {
    background: rgba(255, 255, 255, .04);
    color: var(--ink4);
}

.comp-section {
    font-size: 11px;
    font-weight: 700;
    color: var(--p400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(139, 92, 246, .06);
}

/* FAQ */
.faq-item {
    border-bottom: 1px solid var(--bd);
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    gap: 16px;
}

.faq-q:hover {
    color: var(--p300);
}

.faq-icon {
    font-size: 18px;
    color: var(--ink4);
    flex-shrink: 0;
    transition: transform .2s;
}

.faq-a {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.7;
    padding-bottom: 18px;
    display: none;
}

.faq-item.open .faq-a {
    display: block;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--p300);
}

/* Light mode */
body.light .price-card {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .price-card.featured {
    background: rgba(109, 40, 217, .06);
    border-color: rgba(109, 40, 217, .4);
}

body.light .price-num {
    color: var(--ink);
}

body.light .price-currency {
    color: var(--ink);
}

body.light .comp-table td {
    color: var(--ink2);
}

body.light .faq-q {
    color: var(--ink);
}

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


/* ══ 1-TO-1 COACHING SECTION ══ */
.coach-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all .22s;
}

.coach-card:hover {
    border-color: rgba(167, 139, 250, .3);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, .4);
}

.coach-card.popular-coach {
    border: 2px solid #FCD34D;
    background: rgba(251, 191, 36, .05);
    box-shadow: 0 0 0 1px rgba(251, 191, 36, .15), 0 20px 48px rgba(251, 191, 36, .1);
}

.coach-card.popular-coach::before {
    content: 'Best Value';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 4px;
    background: linear-gradient(135deg, #FCD34D, #F59E0B);
    color: #000;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.coach-sessions {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.coach-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 4px;
}

.coach-price-n {
    font-size: 44px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    color: #fff;
    line-height: 1;
}

.coach-price-c {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-top: 4px;
}

.coach-price-per {
    font-size: 13px;
    color: var(--ink3);
}

.coach-saving {
    font-size: 12px;
    font-weight: 700;
    color: #86EFAC;
    margin-bottom: 18px;
    min-height: 16px;
}

.coach-divider {
    height: 1px;
    background: var(--bd);
    margin: 18px 0;
}

.coach-feat {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    color: var(--ink2);
    margin-bottom: 9px;
    line-height: 1.45;
}

.coach-check {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: rgba(251, 191, 36, .12);
    color: #FCD34D;
    border: 1px solid rgba(251, 191, 36, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 1px;
}

/* Tutor cards */
.tutor-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: all .2s;
}

.tutor-card:hover {
    border-color: rgba(167, 139, 250, .25);
    background: rgba(167, 139, 250, .04);
}

.tutor-av {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(167, 139, 250, .3);
    flex-shrink: 0;
}

.tutor-name {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.tutor-role {
    font-size: 12px;
    color: var(--ink3);
    margin-bottom: 8px;
}

.tutor-tests {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.tutor-test-tag {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
}

.tutor-rating {
    font-size: 12px;
    color: #FCD34D;
    margin-top: 6px;
}

/* How it works steps */
.coach-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.coach-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(139, 92, 246, .15);
    border: 1px solid rgba(167, 139, 250, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    color: var(--p300);
    font-family: 'DM Serif Display', serif;
    flex-shrink: 0;
}

.coach-step-t {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.coach-step-d {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.55;
}

/* Light mode */
body.light .coach-card {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .coach-card.popular-coach {
    background: rgba(251, 191, 36, .04);
}

body.light .coach-price-n {
    color: var(--ink);
}

body.light .coach-price-c {
    color: var(--ink);
}

body.light .tutor-card {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .tutor-name {
    color: var(--ink);
}

body.light .coach-step-t {
    color: var(--ink);
}

@media(max-width:700px) {
    .tutor-card {
        flex-direction: column
    }
}


/* ══ SMART STUDY PLAN PAGE ══ */
.ssp-wrap {
    background: var(--bg);
    min-height: 100vh;
}

/* Plan preview card */
.ssp-plan-card {
    background: rgba(13, 11, 26, .9);
    border: 1px solid rgba(167, 139, 250, .2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .6);
}

.ssp-plan-header {
    background: linear-gradient(135deg, rgba(109, 40, 217, .3), rgba(76, 29, 149, .2));
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(167, 139, 250, .15);
}

.ssp-week-day {
    border-radius: 10px;
    padding: 10px 12px;
    transition: all .2s;
    cursor: pointer;
    border: 1px solid transparent;
}

.ssp-week-day:hover {
    border-color: rgba(167, 139, 250, .2);
    background: rgba(167, 139, 250, .08);
}

.ssp-week-day.today {
    background: rgba(139, 92, 246, .2);
    border-color: rgba(167, 139, 250, .4);
}

.ssp-week-day.done {
    opacity: .55;
}

.ssp-task-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 6px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(167, 139, 250, .08);
    transition: all .2s;
}

.ssp-task-row:hover {
    background: rgba(139, 92, 246, .07);
    border-color: rgba(167, 139, 250, .18);
}

.ssp-task-row.done-task {
    opacity: .5;
}

.ssp-task-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
}

.ssp-task-check.checked {
    background: rgba(134, 239, 172, .2);
    color: #86EFAC;
    border: 1.5px solid rgba(134, 239, 172, .4);
}

.ssp-task-check.pending {
    border: 1.5px solid rgba(167, 139, 250, .3);
    background: transparent;
}

/* Feature cards */
.ssp-feat {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 24px;
    transition: all .22s;
}

.ssp-feat:hover {
    border-color: rgba(167, 139, 250, .3);
    background: rgba(167, 139, 250, .05);
    transform: translateY(-2px);
}

.ssp-feat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 14px;
    border: 1px solid var(--bd);
}

.ssp-feat-t {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.ssp-feat-d {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.65;
}

/* Countdown ring */
.ssp-countdown {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.ssp-cd-unit {
    text-align: center;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--bd);
    border-radius: 12px;
    padding: 14px 18px;
    min-width: 64px;
}

.ssp-cd-num {
    font-size: 32px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    color: var(--p300);
    line-height: 1;
}

.ssp-cd-lbl {
    font-size: 10px;
    font-weight: 700;
    color: var(--ink4);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-top: 4px;
}

/* Testimonial strip */
.ssp-testi {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 14px;
    padding: 20px;
}

.ssp-testi-q {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.65;
    margin-bottom: 12px;
    font-style: italic;
}

.ssp-testi-av {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(167, 139, 250, .3);
    flex-shrink: 0;
}

/* Progress ring SVG */
.ssp-progress-ring {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Light mode */
body.light .ssp-feat {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .ssp-feat-t {
    color: var(--ink);
}

body.light .ssp-plan-card {
    background: #fff;
}

body.light .ssp-plan-header {
    background: linear-gradient(135deg, rgba(109, 40, 217, .1), rgba(76, 29, 149, .06));
}

body.light .ssp-week-day.today {
    background: rgba(109, 40, 217, .12);
}

body.light .ssp-task-row {
    background: rgba(109, 40, 217, .04);
    border-color: rgba(109, 40, 217, .1);
}

body.light .ssp-testi {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .ssp-cd-unit {
    background: rgba(109, 40, 217, .04);
    border-color: rgba(109, 40, 217, .12);
}


/* ══ AI SCORECARD ANALYSER ══ */
.aia-wrap {
    background: var(--bg);
}

/* Step indicator */
.aia-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin: 0 auto 40px;
    max-width: 600px;
}

.aia-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex: 1;
    position: relative;
}

.aia-step::before {
    content: '';
    position: absolute;
    top: 15px;
    right: -50%;
    width: 100%;
    height: 1.5px;
    background: var(--bd);
    z-index: 0;
    transition: background .4s;
}

.aia-step:last-child::before {
    display: none;
}

.aia-step.done::before {
    background: var(--p500);
}

.aia-step-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--bd);
    background: var(--bg2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink4);
    position: relative;
    z-index: 1;
    transition: all .3s;
}

.aia-step.done .aia-step-dot {
    background: var(--p600);
    border-color: var(--p500);
    color: #fff;
}

.aia-step.active .aia-step-dot {
    background: var(--bg);
    border-color: var(--p400);
    color: var(--p300);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, .15);
}

.aia-step-lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink4);
    text-align: center;
    white-space: nowrap;
}

.aia-step.active .aia-step-lbl {
    color: var(--p300);
}

.aia-step.done .aia-step-lbl {
    color: var(--ink3);
}

/* Form cards */
.aia-card {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--bd);
    border-radius: 20px;
    padding: 36px;
    max-width: 680px;
    margin: 0 auto;
    transition: all .3s;
}

.aia-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    font-family: 'DM Serif Display', serif;
    letter-spacing: -.3px;
}

.aia-card-sub {
    font-size: 14px;
    color: var(--ink3);
    margin-bottom: 28px;
    line-height: 1.6;
}

/* Input fields */
.aia-field {
    margin-bottom: 18px;
}

.aia-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink2);
    margin-bottom: 7px;
    display: block;
}

.aia-label span {
    color: var(--p400);
    margin-left: 2px;
}

.aia-input {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1.5px solid var(--bd2);
    background: rgba(255, 255, 255, .04);
    font-family: inherit;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: all .2s;
    box-sizing: border-box;
}

.aia-input::placeholder {
    color: var(--ink4);
}

.aia-input:focus {
    border-color: var(--p400);
    background: rgba(139, 92, 246, .06);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, .12);
}

.aia-input.err {
    border-color: rgba(251, 113, 133, .5);
    background: rgba(251, 113, 133, .06);
}

.aia-err {
    font-size: 11px;
    color: #FDA4AF;
    margin-top: 5px;
    display: none;
}

/* Test selector */
.aia-test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 6px;
}

.aia-test-btn {
    padding: 10px 8px;
    border-radius: 10px;
    border: 1.5px solid var(--bd);
    background: rgba(255, 255, 255, .03);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .18s;
    text-align: center;
}

.aia-test-btn:hover {
    border-color: rgba(167, 139, 250, .3);
    background: rgba(139, 92, 246, .07);
    color: #fff;
}

.aia-test-btn.on {
    border-color: var(--p500);
    background: rgba(139, 92, 246, .15);
    color: var(--p300);
    font-weight: 700;
}

/* Score row inputs */
.aia-score-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.aia-score-mini {
    text-align: center;
}

.aia-score-mini label {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink3);
    display: block;
    margin-bottom: 6px;
}

.aia-score-input {
    width: 100%;
    padding: 10px 8px;
    border-radius: 10px;
    border: 1.5px solid var(--bd2);
    background: rgba(255, 255, 255, .04);
    font-family: 'DM Serif Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    outline: none;
    transition: all .2s;
    box-sizing: border-box;
}

.aia-score-input:focus {
    border-color: var(--p400);
    background: rgba(139, 92, 246, .06);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, .12);
}

/* Upload zone */
.aia-upload {
    border: 2px dashed rgba(167, 139, 250, .3);
    border-radius: 14px;
    padding: 36px 20px;
    text-align: center;
    cursor: pointer;
    transition: all .22s;
    background: rgba(139, 92, 246, .04);
    position: relative;
}

.aia-upload:hover,
.aia-upload.drag {
    border-color: var(--p400);
    background: rgba(139, 92, 246, .1);
}

.aia-upload.has-file {
    border-style: solid;
    border-color: rgba(134, 239, 172, .4);
    background: rgba(134, 239, 172, .06);
}

.aia-upload input[type=file] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.aia-upload-icon {
    font-size: 36px;
    margin-bottom: 10px;
}

.aia-upload-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.aia-upload-sub {
    font-size: 12px;
    color: var(--ink3);
}

.aia-file-preview {
    display: none;
}

.aia-upload.has-file .aia-file-preview {
    display: block;
}

.aia-upload.has-file .aia-upload-default {
    display: none;
}

/* Progress / loading */
.aia-loading {
    text-align: center;
    padding: 48px 20px;
}

.aia-spinner {
    width: 56px;
    height: 56px;
    border: 3px solid rgba(167, 139, 250, .2);
    border-top-color: var(--p400);
    border-radius: 50%;
    animation: spin .7s linear infinite;
    margin: 0 auto 20px;
}

.aia-loading-step {
    font-size: 13px;
    color: var(--ink3);
    margin-top: 8px;
    transition: all .3s;
}

/* Results */
.aia-result-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 14px;
}

.aia-result-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.aia-skill-bar-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.aia-skill-name {
    font-size: 12px;
    color: var(--ink2);
    width: 80px;
    flex-shrink: 0;
}

.aia-skill-track {
    flex: 1;
    height: 7px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
}

.aia-skill-fill {
    height: 100%;
    border-radius: 4px;
    transition: width .6s cubic-bezier(.34, 1.56, .64, 1);
}

.aia-skill-val {
    font-size: 13px;
    font-weight: 700;
    width: 40px;
    text-align: right;
}

.aia-skill-gap {
    font-size: 11px;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: 4px;
}

/* Plan week cards */
.aia-plan-week {
    border-left: 3px solid var(--p500);
    padding-left: 16px;
    margin-bottom: 20px;
}

.aia-plan-week-hd {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.aia-plan-task {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--ink2);
    margin-bottom: 6px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, .03);
    border-radius: 7px;
}

.aia-plan-task-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

/* Nav buttons */
.aia-nav {
    display: flex;
    gap: 10px;
    margin-top: 24px;
}

.aia-btn-back {
    padding: 11px 22px;
    border-radius: 10px;
    border: 1.5px solid var(--bd2);
    background: rgba(255, 255, 255, .04);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    color: var(--ink2);
    cursor: pointer;
    transition: all .18s;
}

.aia-btn-back:hover {
    color: #fff;
    border-color: var(--bd2);
}

.aia-btn-next {
    flex: 1;
    padding: 13px;
    border-radius: 10px;
    border: none;
    background: var(--p600);
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all .2s;
    box-shadow: 0 0 20px rgba(109, 40, 217, .3);
}

.aia-btn-next:hover {
    background: var(--p500);
    transform: translateY(-1px);
}

.aia-btn-next:disabled {
    opacity: .5;
    cursor: not-allowed;
    transform: none;
}

/* Light mode */
body.light .aia-card {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .aia-card-title {
    color: var(--ink);
}

body.light .aia-input {
    background: rgba(109, 40, 217, .03);
    color: var(--ink);
    border-color: rgba(109, 40, 217, .18);
}

body.light .aia-score-input {
    background: rgba(109, 40, 217, .03);
    color: var(--ink);
    border-color: rgba(109, 40, 217, .18);
}

body.light .aia-test-btn {
    background: rgba(109, 40, 217, .04);
}

body.light .aia-result-card {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .aia-plan-task {
    background: rgba(109, 40, 217, .04);
}

@media(max-width:600px) {
    .aia-test-grid {
        grid-template-columns: 1fr 1fr
    }

    .aia-score-row {
        grid-template-columns: 1fr 1fr
    }
}


/* ══ AI ANALYSER PAGE ══ */
.anl-step-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    flex: 1;
}

.anl-node-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(167, 139, 250, .25);
    background: var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink4);
    transition: all .35s;
    position: relative;
    z-index: 1;
}

.anl-step-node.active .anl-node-circle {
    border-color: #8B5CF6;
    color: #A78BFA;
    box-shadow: 0 0 0 4px rgba(139, 92, 246, .12);
    background: rgba(139, 92, 246, .1);
}

.anl-step-node.done .anl-node-circle {
    border-color: #86EFAC;
    background: rgba(134, 239, 172, .12);
    color: #86EFAC;
}

.anl-node-lbl {
    font-size: 11px;
    font-weight: 600;
    color: var(--ink4);
    text-align: center;
    white-space: nowrap;
}

.anl-step-node.active .anl-node-lbl {
    color: #A78BFA;
}

.anl-step-node.done .anl-node-lbl {
    color: var(--ink3);
}

.anl-step-line {
    flex: 1;
    height: 2px;
    background: rgba(167, 139, 250, .12);
    margin: 0 4px;
    margin-bottom: 18px;
    transition: background .35s;
}

.anl-step-line.done {
    background: rgba(134, 239, 172, .4);
}

.anl-test-btn {
    padding: 10px 8px;
    border-radius: 10px;
    border: 1.5px solid rgba(167, 139, 250, .15);
    background: rgba(255, 255, 255, .03);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: var(--ink3);
    cursor: pointer;
    transition: all .18s;
}

.anl-test-btn:hover {
    border-color: rgba(167, 139, 250, .35);
    background: rgba(139, 92, 246, .08);
    color: #fff;
}

.anl-test-btn.active {
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, .14);
    color: #A78BFA;
    font-weight: 700;
}

.anl-score-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(167, 139, 250, .1);
    border-radius: 9px;
}

.anl-score-lbl {
    font-size: 12px;
    color: var(--ink2);
    flex: 1;
}

.anl-score-inp {
    width: 64px;
    padding: 6px 8px;
    border-radius: 7px;
    border: 1px solid rgba(167, 139, 250, .2);
    background: rgba(255, 255, 255, .06);
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    outline: none;
    transition: border-color .2s;
}

.anl-score-inp:focus {
    border-color: #8B5CF6;
}

/* Result cards */
.anl-res-section {
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(167, 139, 250, .12);
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 16px;
}

.anl-res-h {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.anl-gap-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.anl-gap-name {
    font-size: 13px;
    color: var(--ink2);
    width: 90px;
    flex-shrink: 0;
}

.anl-gap-track {
    flex: 1;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .07);
    overflow: hidden;
    position: relative;
}

.anl-gap-cur {
    height: 100%;
    border-radius: 4px;
    transition: width .7s cubic-bezier(.34, 1.56, .64, 1);
}

.anl-gap-tgt-line {
    position: absolute;
    top: 0;
    height: 100%;
    width: 2px;
    background: #fff;
    opacity: .25;
}

.anl-gap-score {
    font-size: 14px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    min-width: 32px;
    text-align: right;
}

.anl-gap-pill {
    font-size: 10px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 4px;
    white-space: nowrap;
    flex-shrink: 0;
}

.anl-tip {
    font-size: 12px;
    color: var(--ink3);
    padding: 6px 10px;
    background: rgba(255, 255, 255, .03);
    border-radius: 7px;
    margin-bottom: 5px;
    border-left: 2px solid rgba(167, 139, 250, .3);
}

.anl-week {
    border-left: 3px solid var(--p500);
    padding-left: 16px;
    margin-bottom: 20px;
}

.anl-week-hd {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.anl-week-badge {
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
}

.anl-task {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    color: var(--ink2);
    padding: 7px 10px;
    background: rgba(255, 255, 255, .03);
    border-radius: 8px;
    margin-bottom: 5px;
    line-height: 1.45;
}

.anl-task-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px;
}

body.light .anl-test-btn {
    background: rgba(109, 40, 217, .04);
    border-color: rgba(109, 40, 217, .15);
}

body.light .anl-test-btn.active {
    background: rgba(109, 40, 217, .1);
    border-color: rgba(109, 40, 217, .5);
}

body.light .anl-score-row {
    background: rgba(109, 40, 217, .04);
    border-color: rgba(109, 40, 217, .12);
}

body.light .anl-score-inp {
    background: #fff;
    color: var(--ink);
    border-color: rgba(109, 40, 217, .2);
}

body.light .anl-res-section {
    background: #fff;
    border-color: rgba(109, 40, 217, .1);
}

body.light .anl-gap-name {
    color: var(--ink2);
}

body.light .anl-task {
    background: rgba(109, 40, 217, .04);
}


/* ══ STUDY PLAN PAGE IMPROVEMENTS ══ */

/* Stats bar */
.ssp-stats-bar {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 14px;
    overflow: hidden;
    margin: 28px 0 0;
}

.ssp-stat {
    flex: 1;
    padding: 16px 14px;
    text-align: center;
    border-right: 1px solid var(--bd);
    position: relative;
}

.ssp-stat:last-child {
    border: none;
}

.ssp-stat-n {
    font-size: 24px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.ssp-stat-l {
    font-size: 11px;
    color: var(--ink3);
    line-height: 1.4;
}

/* Live countdown input */
.ssp-cd-input-wrap {
    background: rgba(139, 92, 246, .08);
    border: 1px solid rgba(167, 139, 250, .2);
    border-radius: 14px;
    padding: 16px 18px;
    margin: 20px 0 0;
}

.ssp-cd-row {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.ssp-cd-box {
    text-align: center;
    min-width: 52px;
}

.ssp-cd-n {
    font-size: 28px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    color: var(--p300);
    line-height: 1;
    transition: all .3s;
}

.ssp-cd-l {
    font-size: 10px;
    font-weight: 700;
    color: var(--ink4);
    text-transform: uppercase;
    letter-spacing: .8px;
    margin-top: 3px;
}

.ssp-cd-sep {
    font-size: 22px;
    color: var(--bd);
    font-weight: 300;
    padding-bottom: 10px;
}

input.ssp-exam-date {
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid rgba(167, 139, 250, .22);
    background: rgba(255, 255, 255, .05);
    font-family: inherit;
    font-size: 13px;
    color: #fff;
    outline: none;
    width: 100%;
    cursor: pointer;
}

input.ssp-exam-date:focus {
    border-color: var(--p400);
}

/* Trajectory chart */
.ssp-traj {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 14px;
    padding: 16px 18px;
    margin: 16px 0 0;
}

.ssp-traj-bars {
    display: flex;
    gap: 4px;
    align-items: flex-end;
    height: 60px;
}

.ssp-traj-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    transition: height .4s cubic-bezier(.34, 1.56, .64, 1);
    min-height: 4px;
}

.ssp-traj-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 6px;
    font-size: 9px;
    color: var(--ink4);
}

/* Feature card flip */
.ssp-feat-flip {
    perspective: 800px;
    height: 180px;
}

.ssp-feat-flip-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform .55s cubic-bezier(.4, 0, .2, 1);
    transform-style: preserve-3d;
}

.ssp-feat-flip:hover .ssp-feat-flip-inner {
    transform: rotateY(180deg);
}

.ssp-feat-face,
.ssp-feat-back {
    position: absolute;
    inset: 0;
    border-radius: 16px;
    padding: 22px;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border: 1px solid var(--bd);
    background: rgba(255, 255, 255, .025);
}

.ssp-feat-back {
    transform: rotateY(180deg);
    background: rgba(139, 92, 246, .1);
    border-color: rgba(167, 139, 250, .3);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ssp-feat-back-tip {
    font-size: 12px;
    color: var(--ink2);
    line-height: 1.65;
    margin-bottom: 8px;
}

.ssp-feat-back-tip::before {
    content: '💡 ';
}

/* Interactive week */
.ssp-week-cell {
    cursor: pointer;
    transition: all .2s;
}

.ssp-week-cell:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
}

.ssp-week-cell.expanded {
    grid-column: span 3;
    border-color: rgba(167, 139, 250, .4) !important;
    background: rgba(139, 92, 246, .1) !important;
}

.ssp-task-expanded {
    font-size: 12px;
    color: var(--ink2);
    padding: 4px 0;
    border-bottom: 1px solid rgba(167, 139, 250, .08);
    display: flex;
    align-items: center;
    gap: 7px;
}

.ssp-task-expanded:last-child {
    border: none;
}

/* Testimonial upgrade */
.ssp-testi-v2 {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 18px;
    padding: 24px;
    position: relative;
    overflow: hidden;
}

.ssp-testi-v2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--p500), var(--p700));
}

.ssp-score-jump {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 14px;
}

.ssp-score-from {
    font-size: 18px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    color: var(--ink3);
}

.ssp-score-arrow {
    font-size: 16px;
    color: var(--p400);
}

.ssp-score-to {
    font-size: 24px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    color: #86EFAC;
}

.ssp-score-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink4);
}

.ssp-stars {
    color: #FCD34D;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.ssp-testi-q {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 14px;
}

.ssp-testi-av2 {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(167, 139, 250, .3);
    flex-shrink: 0;
}

/* Mobile responsive */
@media(max-width:800px) {
    .ssp-hero-grid {
        grid-template-columns: 1fr !important;
    }

    .ssp-feat-flip {
        height: auto;
    }

    .ssp-feat-flip-inner {
        transform: none !important;
        position: static;
        display: flex;
        flex-direction: column;
        height: auto;
    }

    .ssp-feat-face {
        position: static;
        border-radius: 16px;
    }

    .ssp-feat-back {
        display: none;
    }

    .ssp-stats-bar {
        flex-wrap: wrap;
    }

    .ssp-stat {
        flex: 1 1 40%;
        border-right: none;
        border-bottom: 1px solid var(--bd);
    }

    .ssp-stat:nth-child(odd) {
        border-right: 1px solid var(--bd);
    }
}

/* CTA calc shortcut */
.ssp-calc-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(251, 191, 36, .06);
    border: 1px solid rgba(251, 191, 36, .18);
    border-radius: 10px;
    font-size: 13px;
    color: var(--ink2);
    cursor: pointer;
    transition: all .18s;
}

.ssp-calc-hint:hover {
    background: rgba(251, 191, 36, .1);
    border-color: rgba(251, 191, 36, .3);
}

.ssp-calc-hint strong {
    color: #FCD34D;
}

/* Light mode */
body.light .ssp-stats-bar {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .ssp-stat {
    border-color: rgba(109, 40, 217, .12);
}

body.light .ssp-stat-n {
    color: var(--ink);
}

body.light .ssp-cd-input-wrap {
    background: rgba(109, 40, 217, .06);
    border-color: rgba(109, 40, 217, .2);
}

body.light .ssp-traj {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .ssp-feat-face {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .ssp-testi-v2 {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}


/* ══ ABOUT US PAGE ══ */
.about-wrap {
    background: var(--bg);
    min-height: 100vh;
}

/* Mission statement */
.about-mission {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(22px, 3.5vw, 38px);
    font-weight: 400;
    line-height: 1.35;
    color: #fff;
    letter-spacing: -.5px;
    position: relative;
    padding-left: 24px;
}

.about-mission::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: calc(100% - 8px);
    background: linear-gradient(180deg, var(--p500), var(--p700));
    border-radius: 2px;
}

/* Stat tiles */
.about-stat {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: all .22s;
}

.about-stat:hover {
    border-color: rgba(167, 139, 250, .3);
    transform: translateY(-3px);
}

.about-stat-n {
    font-size: 36px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-l {
    font-size: 13px;
    color: var(--ink3);
    line-height: 1.5;
}

/* Timeline */
.about-timeline {
    position: relative;
    padding-left: 32px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--p600), rgba(139, 92, 246, .15));
    border-radius: 2px;
}

.about-tl-item {
    position: relative;
    margin-bottom: 36px;
}

.about-tl-item:last-child {
    margin-bottom: 0;
}

.about-tl-dot {
    position: absolute;
    left: -28px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--p500);
    background: var(--p700);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, .12);
}

.about-tl-year {
    font-size: 11px;
    font-weight: 800;
    color: var(--p400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.about-tl-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.about-tl-desc {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.65;
}

/* Founder cards */
.founder-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 22px;
    padding: 28px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    transition: all .22s;
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: .06;
    pointer-events: none;
}

.founder-card:hover {
    border-color: rgba(167, 139, 250, .3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
    transform: translateY(-2px);
}

.founder-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(167, 139, 250, .3);
    flex-shrink: 0;
}

.founder-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--p600), var(--p800));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    font-family: 'DM Serif Display', serif;
    flex-shrink: 0;
    border: 3px solid rgba(167, 139, 250, .3);
}

.founder-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    font-family: 'DM Serif Display', serif;
    margin-bottom: 3px;
    letter-spacing: -.2px;
}

.founder-role {
    font-size: 13px;
    font-weight: 700;
    color: var(--p300);
    margin-bottom: 8px;
}

.founder-bio {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.7;
    margin-bottom: 12px;
}

.founder-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.founder-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 5px;
    background: rgba(139, 92, 246, .1);
    color: var(--p300);
    border: 1px solid rgba(139, 92, 246, .2);
}

.founder-socials {
    display: flex;
    gap: 8px;
}

.founder-social {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    border: 1px solid var(--bd2);
    background: rgba(255, 255, 255, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all .18s;
    text-decoration: none;
}

.founder-social:hover {
    background: rgba(139, 92, 246, .1);
    border-color: rgba(167, 139, 250, .3);
}

/* Values */
.value-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 22px;
    transition: all .22s;
}

.value-card:hover {
    border-color: rgba(167, 139, 250, .25);
    background: rgba(139, 92, 246, .04);
}

.value-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.value-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.value-desc {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.65;
}

/* Press logos */
.press-logo {
    background: rgba(255, 255, 255, .03);
    border: 1px solid var(--bd);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    color: var(--ink3);
    letter-spacing: .5px;
    transition: all .18s;
}

.press-logo:hover {
    background: rgba(255, 255, 255, .06);
    color: var(--ink2);
}

/* Join CTA */
.about-join {
    background: linear-gradient(135deg, rgba(109, 40, 217, .15), rgba(76, 29, 149, .1) 50%, rgba(109, 40, 217, .15));
    border: 1px solid rgba(167, 139, 250, .2);
    border-radius: 22px;
    padding: 56px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-join::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, .2), transparent 65%);
    pointer-events: none;
}

/* Light mode */
body.light .about-stat {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .founder-card {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .about-mission {
    color: var(--ink);
}

body.light .founder-name {
    color: var(--ink);
}

body.light .value-card {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .value-title {
    color: var(--ink);
}

body.light .about-tl-title {
    color: var(--ink);
}

@media(max-width:700px) {
    .founder-card {
        flex-direction: column
    }

    .founder-avatar,
    .founder-avatar-placeholder {
        width: 64px;
        height: 64px;
        font-size: 20px
    }
}


/* ══ ABOUT US PAGE ══ */
.about-wrap {
    background: var(--bg);
    min-height: 100vh;
}

/* Mission statement */
.about-mission {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(22px, 3.5vw, 38px);
    font-weight: 400;
    line-height: 1.35;
    color: #fff;
    letter-spacing: -.5px;
    position: relative;
    padding-left: 24px;
}

.about-mission::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: calc(100% - 8px);
    background: linear-gradient(180deg, var(--p500), var(--p700));
    border-radius: 2px;
}

/* Stat tiles */
.about-stat {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    transition: all .22s;
}

.about-stat:hover {
    border-color: rgba(167, 139, 250, .3);
    transform: translateY(-3px);
}

.about-stat-n {
    font-size: 36px;
    font-weight: 800;
    font-family: 'DM Serif Display', serif;
    line-height: 1;
    margin-bottom: 6px;
}

.about-stat-l {
    font-size: 13px;
    color: var(--ink3);
    line-height: 1.5;
}

/* Timeline */
.about-timeline {
    position: relative;
    padding-left: 32px;
}

.about-timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(180deg, var(--p600), rgba(139, 92, 246, .15));
    border-radius: 2px;
}

.about-tl-item {
    position: relative;
    margin-bottom: 36px;
}

.about-tl-item:last-child {
    margin-bottom: 0;
}

.about-tl-dot {
    position: absolute;
    left: -28px;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid var(--p500);
    background: var(--p700);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, .12);
}

.about-tl-year {
    font-size: 11px;
    font-weight: 800;
    color: var(--p400);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
}

.about-tl-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.about-tl-desc {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.65;
}

/* Founder cards */
.founder-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 22px;
    padding: 28px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    transition: all .22s;
    position: relative;
    overflow: hidden;
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: .06;
    pointer-events: none;
}

.founder-card:hover {
    border-color: rgba(167, 139, 250, .3);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .4);
    transform: translateY(-2px);
}

.founder-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(167, 139, 250, .3);
    flex-shrink: 0;
}

.founder-avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--p600), var(--p800));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    font-family: 'DM Serif Display', serif;
    flex-shrink: 0;
    border: 3px solid rgba(167, 139, 250, .3);
}

.founder-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    font-family: 'DM Serif Display', serif;
    margin-bottom: 3px;
    letter-spacing: -.2px;
}

.founder-role {
    font-size: 13px;
    font-weight: 700;
    color: var(--p300);
    margin-bottom: 8px;
}

.founder-bio {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.7;
    margin-bottom: 12px;
}

.founder-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.founder-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 5px;
    background: rgba(139, 92, 246, .1);
    color: var(--p300);
    border: 1px solid rgba(139, 92, 246, .2);
}

.founder-socials {
    display: flex;
    gap: 8px;
}

.founder-social {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    border: 1px solid var(--bd2);
    background: rgba(255, 255, 255, .04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: all .18s;
    text-decoration: none;
}

.founder-social:hover {
    background: rgba(139, 92, 246, .1);
    border-color: rgba(167, 139, 250, .3);
}

/* Values */
.value-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 16px;
    padding: 22px;
    transition: all .22s;
}

.value-card:hover {
    border-color: rgba(167, 139, 250, .25);
    background: rgba(139, 92, 246, .04);
}

.value-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.value-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.value-desc {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.65;
}

/* Press logos */
.press-logo {
    /*background: rgba(255, 255, 255, .03);*/
    background: var(--p600);
    border: 1px solid var(--bd);
    border-radius: 12px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    letter-spacing: .5px;
    transition: all .18s;
    opacity: 1;
}

.press-logo:hover {
    background: rgba(255, 255, 255, .06);
    color: var(--ink2);
}

/* Join CTA */
.about-join {
    background: linear-gradient(135deg, rgba(109, 40, 217, .15), rgba(76, 29, 149, .1) 50%, rgba(109, 40, 217, .15));
    border: 1px solid rgba(167, 139, 250, .2);
    border-radius: 22px;
    padding: 56px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-join::before {
    content: '';
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(139, 92, 246, .2), transparent 65%);
    pointer-events: none;
}

/* Light mode */
body.light .about-stat {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .founder-card {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .about-mission {
    color: var(--ink);
}

body.light .founder-name {
    color: var(--ink);
}

body.light .value-card {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .value-title {
    color: var(--ink);
}

body.light .about-tl-title {
    color: var(--ink);
}

@media(max-width:700px) {
    .founder-card {
        flex-direction: column
    }

    .founder-avatar,
    .founder-avatar-placeholder {
        width: 64px;
        height: 64px;
        font-size: 20px
    }
}


/* ══ CONTACT US PAGE ══ */
.contact-wrap {
    background: var(--bg);
    min-height: 100vh;
}

/* Split layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
    min-height: calc(100vh - 140px);
}

.contact-left {
    background: linear-gradient(160deg, rgba(109, 40, 217, .18) 0%, rgba(76, 29, 149, .12) 50%, rgba(13, 11, 26, .0) 100%);
    border-right: 1px solid var(--bd);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-right {
    padding: 56px 48px;
}

/* Contact method cards */
.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid var(--bd);
    background: rgba(255, 255, 255, .025);
    margin-bottom: 14px;
    transition: all .22s;
    cursor: pointer;
    text-decoration: none;
}

.contact-method:hover {
    border-color: rgba(167, 139, 250, .35);
    background: rgba(139, 92, 246, .08);
    transform: translateX(4px);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border: 1px solid var(--bd);
    transition: all .22s;
}

.contact-method:hover .contact-method-icon {
    transform: scale(1.08);
}

.contact-method-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.contact-method-sub {
    font-size: 12px;
    color: var(--ink3);
    line-height: 1.5;
}

.contact-method-action {
    font-size: 11px;
    font-weight: 700;
    color: var(--p300);
    margin-top: 5px;
}

/* Office card */
.office-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 14px;
}

.office-flag {
    font-size: 22px;
    margin-bottom: 8px;
}

.office-city {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.office-addr {
    font-size: 12px;
    color: var(--ink3);
    line-height: 1.65;
}

/* Form */
.cf-group {
    margin-bottom: 18px;
    position: relative;
}

.cf-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink2);
    display: block;
    margin-bottom: 7px;
}

.cf-label span {
    color: var(--p400);
}

.cf-input {
    width: 100%;
    padding: 13px 16px;
    border-radius: 11px;
    border: 1.5px solid rgba(167, 139, 250, .18);
    background: rgba(255, 255, 255, .04);
    font-family: inherit;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: all .22s;
    box-sizing: border-box;
}

.cf-input:focus {
    border-color: var(--p400);
    background: rgba(139, 92, 246, .07);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, .1);
}

.cf-input::placeholder {
    color: rgba(167, 139, 250, .3);
}

select.cf-input {
    cursor: pointer;
}

textarea.cf-input {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

/* Topic pills */
.cf-topics {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.cf-topic {
    padding: 7px 14px;
    border-radius: 8px;
    border: 1.5px solid rgba(167, 139, 250, .15);
    background: rgba(255, 255, 255, .03);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: rgba(167, 139, 250, .55);
    cursor: pointer;
    transition: all .18s;
}

.cf-topic:hover {
    border-color: rgba(167, 139, 250, .35);
    color: #C4B5FD;
    background: rgba(139, 92, 246, .07);
}

.cf-topic.on {
    border-color: var(--p500);
    background: rgba(139, 92, 246, .15);
    color: var(--p300);
    font-weight: 700;
}

/* Submit button with loading state */
.cf-submit {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #7C3AED, #5B21B6);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all .22s;
    box-shadow: 0 8px 28px rgba(109, 40, 217, .35);
    position: relative;
    overflow: hidden;
}

.cf-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(109, 40, 217, .45);
}

.cf-submit:disabled {
    opacity: .65;
    transform: none;
    cursor: not-allowed;
}

.cf-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
    transform: translateX(-100%);
    transition: transform .6s;
}

.cf-submit:not(:disabled):hover::after {
    transform: translateX(100%);
}

/* Success state */
.cf-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}

.cf-success-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(134, 239, 172, .12);
    border: 2px solid rgba(134, 239, 172, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    animation: popIn .4s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes popIn {
    from {
        transform: scale(0);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

/* Floating social proof */
.cf-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 10px;
    font-size: 13px;
    color: var(--ink2);
}

.cf-proof-avatars {
    display: flex;
}

.cf-proof-av {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    margin-left: -6px;
    first-child: margin-left:0;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.cf-proof-av:first-child {
    margin-left: 0;
}

/* Response time badge */
.cf-response-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px 4px 6px;
    background: rgba(134, 239, 172, .1);
    border: 1px solid rgba(134, 239, 172, .25);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: #86EFAC;
}

.cf-response-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #86EFAC;
    animation: pulse 2s infinite;
}

/* Character counter */
.cf-char {
    font-size: 11px;
    color: var(--ink4);
    text-align: right;
    margin-top: 4px;
}

/* FAQ mini */
.cf-faq-item {
    border-bottom: 1px solid var(--bd);
}

.cf-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    gap: 12px;
}

.cf-faq-q:hover {
    color: var(--p300);
}

.cf-faq-a {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.7;
    padding-bottom: 14px;
    display: none;
}

.cf-faq-item.open .cf-faq-a {
    display: block;
}

.cf-faq-icon {
    font-size: 18px;
    color: var(--ink4);
    transition: transform .2s;
    flex-shrink: 0;
}

.cf-faq-item.open .cf-faq-icon {
    transform: rotate(45deg);
    color: var(--p300);
}

/* Map placeholder */
.cf-map {
    background: linear-gradient(135deg, rgba(139, 92, 246, .08), rgba(76, 29, 149, .06));
    border: 1px solid rgba(167, 139, 250, .15);
    border-radius: 16px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
}

/* Light mode */
body.light .contact-left {
    background: linear-gradient(160deg, rgba(109, 40, 217, .08) 0%, rgba(109, 40, 217, .04) 100%);
    border-color: rgba(109, 40, 217, .12);
}

body.light .contact-method {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .contact-method-title {
    color: var(--ink);
}

body.light .office-card {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .office-city {
    color: var(--ink);
}

body.light .cf-input {
    background: rgba(109, 40, 217, .03);
    color: var(--ink);
    border-color: rgba(109, 40, 217, .18);
}

body.light .cf-topic {
    background: rgba(109, 40, 217, .04);
}

body.light .cf-faq-q {
    color: var(--ink);
}

body.light .cf-proof {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

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

    .contact-left {
        border-right: none;
        border-bottom: 1px solid var(--bd);
        padding: 40px 24px
    }

    .contact-right {
        padding: 40px 24px
    }
}


/* ══ CONTACT US PAGE ══ */
.contact-wrap {
    background: var(--bg);
    min-height: 100vh;
}

/* Split layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 0;
    min-height: calc(100vh - 140px);
}

.contact-left {
    background: linear-gradient(160deg, rgba(109, 40, 217, .18) 0%, rgba(76, 29, 149, .12) 50%, rgba(13, 11, 26, .0) 100%);
    border-right: 1px solid var(--bd);
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-right {
    padding: 56px 48px;
}

/* Contact method cards */
.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid var(--bd);
    background: rgba(255, 255, 255, .025);
    margin-bottom: 14px;
    transition: all .22s;
    cursor: pointer;
    text-decoration: none;
}

.contact-method:hover {
    border-color: rgba(167, 139, 250, .35);
    background: rgba(139, 92, 246, .08);
    transform: translateX(4px);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border: 1px solid var(--bd);
    transition: all .22s;
}

.contact-method:hover .contact-method-icon {
    transform: scale(1.08);
}

.contact-method-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.contact-method-sub {
    font-size: 12px;
    color: var(--ink3);
    line-height: 1.5;
}

.contact-method-action {
    font-size: 11px;
    font-weight: 700;
    color: var(--p300);
    margin-top: 5px;
}

/* Office card */
.office-card {
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 14px;
    padding: 18px;
    margin-bottom: 14px;
}

.office-flag {
    font-size: 22px;
    margin-bottom: 8px;
}

.office-city {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 3px;
}

.office-addr {
    font-size: 12px;
    color: var(--ink3);
    line-height: 1.65;
}

/* Form */
.cf-group {
    margin-bottom: 18px;
    position: relative;
}

.cf-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink2);
    display: block;
    margin-bottom: 7px;
}

.cf-label span {
    color: var(--p400);
}

.cf-input {
    width: 100%;
    padding: 13px 16px;
    border-radius: 11px;
    border: 1.5px solid rgba(167, 139, 250, .18);
    background: rgba(255, 255, 255, .04);
    font-family: inherit;
    font-size: 14px;
    color: #fff;
    outline: none;
    transition: all .22s;
    box-sizing: border-box;
}

.cf-input:focus {
    border-color: var(--p400);
    background: rgba(139, 92, 246, .07);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, .1);
}

.cf-input::placeholder {
    color: rgba(167, 139, 250, .3);
}

select.cf-input {
    cursor: pointer;
}

textarea.cf-input {
    resize: vertical;
    min-height: 130px;
    line-height: 1.6;
}

/* Topic pills */
.cf-topics {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.cf-topic {
    padding: 7px 14px;
    border-radius: 8px;
    border: 1.5px solid rgba(167, 139, 250, .15);
    background: rgba(255, 255, 255, .03);
    font-family: inherit;
    font-size: 12px;
    font-weight: 600;
    color: rgba(167, 139, 250, .55);
    cursor: pointer;
    transition: all .18s;
}

.cf-topic:hover {
    border-color: rgba(167, 139, 250, .35);
    color: #C4B5FD;
    background: rgba(139, 92, 246, .07);
}

.cf-topic.on {
    border-color: var(--p500);
    background: rgba(139, 92, 246, .15);
    color: var(--p300);
    font-weight: 700;
}

/* Submit button with loading state */
.cf-submit {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: none;
    background: linear-gradient(135deg, #7C3AED, #5B21B6);
    font-family: inherit;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: all .22s;
    box-shadow: 0 8px 28px rgba(109, 40, 217, .35);
    position: relative;
    overflow: hidden;
}

.cf-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(109, 40, 217, .45);
}

.cf-submit:disabled {
    opacity: .65;
    transform: none;
    cursor: not-allowed;
}

.cf-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .12), transparent);
    transform: translateX(-100%);
    transition: transform .6s;
}

.cf-submit:not(:disabled):hover::after {
    transform: translateX(100%);
}

/* Success state */
.cf-success {
    display: none;
    text-align: center;
    padding: 48px 24px;
}

.cf-success-ring {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(134, 239, 172, .12);
    border: 2px solid rgba(134, 239, 172, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin: 0 auto 20px;
    animation: popIn .4s cubic-bezier(.34, 1.56, .64, 1);
}

@keyframes popIn {
    from {
        transform: scale(0);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

/* Floating social proof */
.cf-proof {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, .025);
    border: 1px solid var(--bd);
    border-radius: 10px;
    font-size: 13px;
    color: var(--ink2);
}

.cf-proof-avatars {
    display: flex;
}

.cf-proof-av {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid var(--bg);
    margin-left: -6px;
    first-child: margin-left:0;
    font-size: 10px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.cf-proof-av:first-child {
    margin-left: 0;
}

/* Response time badge */
.cf-response-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px 4px 6px;
    background: rgba(134, 239, 172, .1);
    border: 1px solid rgba(134, 239, 172, .25);
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    color: #86EFAC;
}

.cf-response-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #86EFAC;
    animation: pulse 2s infinite;
}

/* Character counter */
.cf-char {
    font-size: 11px;
    color: var(--ink4);
    text-align: right;
    margin-top: 4px;
}

/* FAQ mini */
.cf-faq-item {
    border-bottom: 1px solid var(--bd);
}

.cf-faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    gap: 12px;
}

.cf-faq-q:hover {
    color: var(--p300);
}

.cf-faq-a {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.7;
    padding-bottom: 14px;
    display: none;
}

.cf-faq-item.open .cf-faq-a {
    display: block;
}

.cf-faq-icon {
    font-size: 18px;
    color: var(--ink4);
    transition: transform .2s;
    flex-shrink: 0;
}

.cf-faq-item.open .cf-faq-icon {
    transform: rotate(45deg);
    color: var(--p300);
}

/* Map placeholder */
.cf-map {
    background: linear-gradient(135deg, rgba(139, 92, 246, .08), rgba(76, 29, 149, .06));
    border: 1px solid rgba(167, 139, 250, .15);
    border-radius: 16px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    margin-top: 14px;
}

/* Light mode */
body.light .contact-left {
    background: linear-gradient(160deg, rgba(109, 40, 217, .08) 0%, rgba(109, 40, 217, .04) 100%);
    border-color: rgba(109, 40, 217, .12);
}

body.light .contact-method {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .contact-method-title {
    color: var(--ink);
}

body.light .office-card {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

body.light .office-city {
    color: var(--ink);
}

body.light .cf-input {
    background: rgba(109, 40, 217, .03);
    color: var(--ink);
    border-color: rgba(109, 40, 217, .18);
}

body.light .cf-topic {
    background: rgba(109, 40, 217, .04);
}

body.light .cf-faq-q {
    color: var(--ink);
}

body.light .cf-proof {
    background: #fff;
    border-color: rgba(109, 40, 217, .12);
}

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

    .contact-left {
        border-right: none;
        border-bottom: 1px solid var(--bd);
        padding: 40px 24px
    }

    .contact-right {
        padding: 40px 24px
    }
}


/* ══ LEGAL PAGES ══ */
.legal-body {
    font-size: 14px;
    color: var(--ink2);
    line-height: 1.8;
}

.legal-section {
    margin-bottom: 36px;
    padding-bottom: 36px;
    border-bottom: 1px solid var(--bd);
}

.legal-section:last-child {
    border: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.legal-h2 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    font-family: 'DM Serif Display', serif;
    letter-spacing: -.2px;
}

.legal-list {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin: 10px 0;
}

.legal-list li {
    line-height: 1.65;
}

.legal-table {
    border: 1px solid var(--bd);
    border-radius: 10px;
    overflow: hidden;
    margin: 12px 0;
}

.legal-tr {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    gap: 0;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(167, 139, 250, .06);
    font-size: 13px;
    color: var(--ink2);
}

.legal-tr:last-child {
    border: none;
}

.legal-th {
    font-size: 11px;
    font-weight: 700;
    color: var(--ink4);
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, .02);
}

body.light .legal-h2 {
    color: var(--ink);
}

body.light .legal-table {
    border-color: rgba(109, 40, 217, .12);
}

body.light .legal-tr {
    border-color: rgba(109, 40, 217, .06);
}

/* ══ FAQ ACCORDION (shared) ══ */
.faq-accordion .faq-item {
    border-bottom: 1px solid var(--bd);
}

.faq-accordion .faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    gap: 12px;
}

.faq-accordion .faq-q:hover {
    color: var(--p300);
}

.faq-accordion .faq-a {
    font-size: 13px;
    color: var(--ink2);
    line-height: 1.7;
    padding-bottom: 14px;
    display: none;
}

.faq-accordion .faq-item.open .faq-a {
    display: block;
}

.faq-accordion .faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--p300);
}

.faq-accordion .faq-icon {
    font-size: 18px;
    color: var(--ink4);
    transition: transform .2s;
    flex-shrink: 0;
}

body.light .faq-accordion .faq-q {
    color: var(--ink);
}

body.light .faq-accordion .faq-item {
    border-color: rgba(109, 40, 217, .1);
}


/************* AI buttons styling on blog detail page *********/

.ai-summary-wrapper{
    background: #f4f4f4;
    border-radius: 50px;
    padding: 12px 20px;
    margin: 30px 0;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    width: 100%;
    display: flex;
    justify-content: center;
    max-width: 530px;
}

.ai-summary-title{
    font-size: 16px;
    font-weight: 700;
    color: #111;
    white-space: nowrap;
}

.ai-summary-buttons{
    display:flex;
    align-items:center;
    gap:8px;
    flex-wrap:wrap;
}

.ai-btn{
    display:flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    background:#fff;
    padding:10px 10px;
    border-radius:40px;
    transition:0.3s ease;
    border:1px solid #e5e5e5;
}

.ai-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 4px 12px rgba(0,0,0,0.08);
}

.ai-btn img{
    width:18px;
    height:18px;
}

.ai-btn span{
    font-size:13px;
    font-weight:600;
    color:#333;
}