:root {
    --dark: #060d1a;
    --dark2: #0a1628;
    --charcoal: #1a1a2e;
    --blue: #0052e0;
    --blue2: #3b82f6;
    --blue3: #60a5fa;
    --purple: #7c3aed;
    --purple2: #a78bfa;
    --cyan: #06b6d4;
    --green: #10b981;
    --amber: #f59e0b;
    --dt1: rgba(255, 255, 255, .95);
    --dt2: rgba(255, 255, 255, .62);
    --dt3: rgba(255, 255, 255, .35);
    --lt1: #0f172a;
    --lt2: #475569;
    --lt3: #94a3b8;
    --db: rgba(255, 255, 255, .08);
    --lb: #e2e8f0;
    --font: 'Plus Jakarta Sans', sans-serif;
    --mono: 'DM Mono', monospace;
    --r: 14px;
    --rl: 20px;
    --rxl: 28px;
}

/* ═══════════════════════════════════════
   BASE
═══════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    background: #fff;
    color: var(--lt1);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4.5vw, 40px)
}

.sec {
    padding: clamp(2.5rem, 5vw, 4rem) 0
}

/* ═══════════════════════════════════════
   KEYFRAMES — CSS-only, always visible
═══════════════════════════════════════ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(-32px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(32px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(.92)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-18px)
    }
}

@keyframes floatX {

    0%,
    100% {
        transform: translate(0, 0)
    }

    100% {
        transform: translate(28px, 22px)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.7)
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(200%)
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes barGrow {
    from {
        width: 0
    }

    to {
        width: var(--w)
    }
}

@keyframes borderRun {
    0% {
        background-position: 0% 50%
    }

    100% {
        background-position: 200% 50%
    }
}

/* Staggered section entry */
.s1 {
    animation: fadeUp .7s .1s both cubic-bezier(.4, 0, .2, 1)
}

.s2 {
    animation: fadeUp .7s .2s both cubic-bezier(.4, 0, .2, 1)
}

.s3 {
    animation: fadeUp .7s .3s both cubic-bezier(.4, 0, .2, 1)
}

.s4 {
    animation: fadeUp .7s .4s both cubic-bezier(.4, 0, .2, 1)
}

.s5 {
    animation: fadeUp .7s .5s both cubic-bezier(.4, 0, .2, 1)
}

.s6 {
    animation: fadeUp .7s .6s both cubic-bezier(.4, 0, .2, 1)
}

.sl {
    animation: fadeLeft .7s .2s both cubic-bezier(.4, 0, .2, 1)
}

.sr {
    animation: fadeRight .7s .3s both cubic-bezier(.4, 0, .2, 1)
}

.si {
    animation: scaleIn .6s .15s both
}

.fi {
    animation: fadeIn .8s .1s both
}

/* ═══════════════════════════════════════
   SECTION COLORS
═══════════════════════════════════════ */
.dk {
    background: var(--dark);
    color: var(--dt1)
}

.dk2 {
    background: var(--dark2);
    color: var(--dt1)
}

.ch {
    background: var(--charcoal);
    color: var(--dt1)
}

.bl {
    background: var(--blue);
    color: #fff
}

.wh {
    background: #fff;
    color: var(--lt1)
}

.la {
    background: #f0f5ff;
    color: var(--lt1)
}

.sl-bg {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    color: var(--dt1)
}

/* ═══════════════════════════════════════
   TAGS
═══════════════════════════════════════ */
.tag {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .32rem .78rem;
    border-radius: 100px
}

.td-b {
    background: rgba(59, 130, 246, .14);
    color: #93c5fd;
    border: 1px solid rgba(59, 130, 246, .28)
}

.td-g {
    background: rgba(16, 185, 129, .12);
    color: #6ee7b7;
    border: 1px solid rgba(16, 185, 129, .24)
}

.td-p {
    background: rgba(124, 58, 237, .14);
    color: #c4b5fd;
    border: 1px solid rgba(124, 58, 237, .28)
}

.td-c {
    background: rgba(6, 182, 212, .12);
    color: #67e8f9;
    border: 1px solid rgba(6, 182, 212, .2)
}

.td-a {
    background: rgba(245, 158, 11, .12);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, .2)
}

.tl-b {
    background: #eff6ff;
    color: #1d4ed8;
    border: 1px solid #bfdbfe
}

.tl-g {
    background: #f0fdf4;
    color: #15803d;
    border: 1px solid #bbf7d0
}

.tl-p {
    background: #f5f3ff;
    color: #6d28d9;
    border: 1px solid #ddd6fe
}

.tl-c {
    background: #ecfeff;
    color: #0e7490;
    border: 1px solid #a5f3fc
}

.tl-a {
    background: #fffbeb;
    color: #b45309;
    border: 1px solid #fde68a
}

/* ═══════════════════════════════════════
   BUTTONS
═══════════════════════════════════════ */
.bp {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.75rem;
    background: var(--blue);
    color: #fff;
    font-weight: 700;
    font-size: .9rem;
    border-radius: 8px;
    transition: all .25s ease;
    box-shadow: 0 4px 20px rgba(0, 82, 224, .28)
}

.bp:hover {
    background: #0047c7;
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(0, 82, 224, .45)
}

.bgd {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.75rem;
    background: rgba(255, 255, 255, .08);
    color: var(--dt1);
    font-weight: 600;
    font-size: .9rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .18);
    transition: all .25s ease
}

.bgd:hover {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .35);
    transform: translateY(-2px)
}

.bgl {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .85rem 1.75rem;
    background: #fff;
    color: var(--lt1);
    font-weight: 600;
    font-size: .9rem;
    border-radius: 8px;
    border: 1px solid var(--lb);
    transition: all .25s ease
}

.bgl:hover {
    border-color: #93c5fd;
    background: #f0f7ff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 82, 224, .1)
}

/* ═══════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════ */
.bc {
    background: var(--dark2);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding: .72rem 0
}

.bc-in {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-size: .78rem;
    color: rgba(255, 255, 255, .38)
}

.bc-in a {
    color: rgba(255, 255, 255, .38);
    transition: .2s
}

.bc-in a:hover {
    color: #93c5fd
}

.bc-sep {
    opacity: .4
}

.bc-cur {
    color: #93c5fd
}

/* ═══════════════════════════════════════
   ① HERO — dark, parallax glows
═══════════════════════════════════════ */
.hero {
    position: relative;
    background: var(--dark);
    overflow: hidden;
    padding: clamp(3rem, 6vw, 5rem) 0 0
}

.hg1 {
    position: absolute;
    top: -100px;
    right: -150px;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(0, 82, 224, .25), transparent 65%);
    pointer-events: none;
    animation: floatX 10s ease-in-out infinite alternate
}

.hg2 {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(124, 58, 237, .14), transparent 65%);
    pointer-events: none;
    animation: float 12s ease-in-out infinite
}

.hg3 {
    position: absolute;
    top: 40%;
    left: 40%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, .08), transparent 65%);
    pointer-events: none;
    animation: float 8s 2s ease-in-out infinite alternate
}

.h-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .028) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none
}

.hero-in {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-bottom: 3rem
}

/* Badge */
.h-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(59, 130, 246, .12);
    border: 1px solid rgba(59, 130, 246, .3);
    padding: .4rem 1rem;
    border-radius: 100px;
    font-size: .71rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #93c5fd;
    margin-bottom: 1.6rem
}

.h-bdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #93c5fd;
    animation: pulse 2s infinite
}

/* Headline */
.h-h1 {
    font-size: clamp(2rem, 3.8vw, 3.1rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: var(--dt1);
    margin-bottom: 1.2rem
}

.h-h1 .hl {
    position: relative;
    display: inline-block
}

.h-h1 .hl em {
    font-style: normal;
    background: linear-gradient(135deg, #60a5fa, #a78bfa 50%, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.h-h1 .hl::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    border-radius: 2px;
    animation: barGrow .9s .6s both;
    --w: 100%
}

.h-sub {
    font-size: 1rem;
    color: var(--dt2);
    line-height: 1.82;
    margin-bottom: 2rem;
    max-width: 480px
}

.h-btns {
    display: flex;
    gap: .85rem;
    flex-wrap: wrap;
    margin-bottom: 2.2rem
}

.h-chips {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap
}

.h-chip {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    font-size: .76rem;
    color: var(--dt3);
    font-weight: 500
}

.h-div {
    width: 1px;
    height: 13px;
    background: rgba(255, 255, 255, .12)
}

/* Story card */
.sc {
    background: rgba(255, 255, 255, .055);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--rxl);
    padding: 1.6rem;
    position: relative;
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease
}

.sc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 130, 246, .65), transparent)
}

.sc:hover {
    transform: translateY(-8px);
    box-shadow: 0 36px 80px rgba(0, 0, 0, .45)
}

.sc-yr {
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--dt3);
    margin-bottom: .5rem;
    font-family: var(--mono)
}

.sc-q {
    font-size: .96rem;
    font-weight: 600;
    color: var(--dt1);
    line-height: 1.72;
    margin-bottom: 1.4rem;
    font-style: italic;
    border-left: 2px solid rgba(96, 165, 250, .5);
    padding-left: .95rem
}

.sc-ft {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.sc-av {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--purple));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: .95rem;
    flex-shrink: 0;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, .25)
}

.sc-name {
    font-size: .9rem;
    font-weight: 700;
    color: var(--dt1)
}

.sc-role {
    font-size: .72rem;
    color: var(--dt3)
}

.sc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1.2rem
}

.sc-pill {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--r);
    padding: .55rem .85rem;
    transition: all .25s ease;
    cursor: default
}

.sc-pill:hover {
    background: rgba(59, 130, 246, .15);
    border-color: rgba(59, 130, 246, .35);
    transform: translateY(-2px)
}

.sc-pn {
    font-size: 1.1rem;
    font-weight: 800;
    font-family: var(--mono);
    color: #60a5fa;
    line-height: 1
}

.sc-pl {
    font-size: .63rem;
    color: var(--dt3);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-top: .1rem
}

.hw {
    display: block;
    width: 100%;
    height: 54px;
    margin-bottom: -2px
}

/* ═══════════════════════════════════════
   ② STATS — blue, animated counters
═══════════════════════════════════════ */
.st-g {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.st-b {
    padding: 1.4rem 1.25rem;
    border-right: 1px solid rgba(255, 255, 255, .18);
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: background .25s
}

.st-b:hover {
    background: rgba(255, 255, 255, .08)
}

.st-b:last-child {
    border-right: none
}

.st-b::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, .5);
    border-radius: 2px;
    transition: transform .3s
}

.st-b:hover::after {
    transform: translateX(-50%) scaleX(1)
}

.st-n {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    font-family: var(--mono);
    color: #fff;
    line-height: 1;
    margin-bottom: .3rem;
    transition: transform .2s
}

.st-b:hover .st-n {
    transform: scale(1.07)
}

.st-l {
    font-size: .8rem;
    color: rgba(255, 255, 255, .72);
    font-weight: 500
}

/* ═══════════════════════════════════════
   ③ STORY TIMELINE — white
═══════════════════════════════════════ */
.story-g {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 3.5rem;
    align-items: start
}

.prog-wrap {
    display: flex;
    flex-direction: column;
    gap: .65rem;
    margin-top: 1.1rem
}

.prog-item {}

.prog-lbl {
    display: flex;
    justify-content: space-between;
    font-size: .78rem;
    font-weight: 600;
    color: var(--lt2);
    margin-bottom: .38rem
}

.prog-lbl span:last-child {
    color: var(--blue);
    font-family: var(--mono)
}

.prog-bg {
    height: 7px;
    background: #f1f5f9;
    border-radius: 100px;
    overflow: hidden
}

.prog-fill {
    height: 100%;
    border-radius: 100px;
    animation: barGrow 1.4s .3s both cubic-bezier(.4, 0, .2, 1)
}

.pf1 {
    background: linear-gradient(90deg, #0052e0, #7c3aed);
    --w: 98%
}

.pf2 {
    background: linear-gradient(90deg, #0052e0, #06b6d4);
    --w: 94%
}

.pf3 {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
    --w: 85%
}

/* Timeline */
.tl {
    position: relative;
    padding-left: 2rem
}

.tl::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #0052e0, #7c3aed 50%, #06b6d4)
}

.tl-item {
    position: relative;
    padding-bottom: 1.6rem;
    cursor: default
}

.tl-item:last-child {
    padding-bottom: 0
}

.tl-dot {
    position: absolute;
    left: -2.56rem;
    top: .22rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--blue);
    border: 3px solid #f0f5ff;
    box-shadow: 0 0 0 3px rgba(0, 82, 224, .2);
    transition: all .3s ease
}

.tl-item:hover .tl-dot {
    transform: scale(1.45);
    box-shadow: 0 0 0 6px rgba(0, 82, 224, .12)
}

.tl-yr {
    font-size: .67rem;
    font-weight: 700;
    font-family: var(--mono);
    color: var(--blue);
    letter-spacing: .1em;
    margin-bottom: .35rem;
    text-transform: uppercase
}

.tl-tt {
    font-size: .97rem;
    font-weight: 700;
    color: var(--lt1);
    margin-bottom: .3rem;
    transition: color .2s
}

.tl-item:hover .tl-tt {
    color: var(--blue)
}

.tl-dd {
    font-size: .86rem;
    color: var(--lt2);
    line-height: 1.75
}

.tl-tg {
    margin-top: .55rem
}

/* ═══════════════════════════════════════
   ④ VALUES — charcoal
═══════════════════════════════════════ */
.val-g {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem
}

.vc {
    background: #fff;
    border: 1px solid var(--lb);
    border-radius: var(--rl);
    padding: 1.4rem;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
    cursor: default
}

.vc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .4s ease
}

.vc:hover {
    transform: translateY(-7px);
    box-shadow: 0 16px 44px rgba(0, 82, 224, .1);
    background: #f8faff;
    border-color: #93c5fd
}

.vc:hover::before {
    transform: scaleX(1)
}

.vc1::before {
    background: linear-gradient(90deg, #3b82f6, #06b6d4)
}

.vc2::before {
    background: linear-gradient(90deg, #7c3aed, #a78bfa)
}

.vc3::before {
    background: linear-gradient(90deg, #10b981, #06b6d4)
}

.vc4::before {
    background: linear-gradient(90deg, #f59e0b, #ef4444)
}

.vi {
    width: 46px;
    height: 46px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: transform .3s ease
}

.vc:hover .vi {
    transform: scale(1.15) rotate(-5deg)
}

.vi1 {
    background: rgba(59, 130, 246, .18);
    border: 1px solid rgba(59, 130, 246, .28)
}

.vi2 {
    background: rgba(124, 58, 237, .18);
    border: 1px solid rgba(124, 58, 237, .28)
}

.vi3 {
    background: rgba(16, 185, 129, .18);
    border: 1px solid rgba(16, 185, 129, .28)
}

.vi4 {
    background: rgba(245, 158, 11, .18);
    border: 1px solid rgba(245, 158, 11, .28)
}

.vc-tt {
    font-size: .92rem;
    font-weight: 700;
    color: var(--lt1);
    margin-bottom: .45rem
}

.vc-dd {
    font-size: .84rem;
    color: var(--lt2);
    line-height: 1.76
}

/* ═══════════════════════════════════════
   ⑤ FOUNDER — light-alt, big split card
═══════════════════════════════════════ */
.founder-card {
    background: #fff;
    border: 1px solid var(--lb);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 82, 224, .07);
    transition: box-shadow .4s ease;
    display: grid;
    grid-template-columns: 320px 1fr
}

.founder-card:hover {
    box-shadow: 0 24px 70px rgba(0, 82, 224, .14)
}

/* Left panel */
.fc-left {
    background: linear-gradient(160deg, #0052e0 0%, #3b0a8c 60%, #0a1628 100%);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden
}

.fc-left::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 22px 22px;
    pointer-events: none
}

.fc-left::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(96, 165, 250, .2), transparent 65%);
    border-radius: 50%;
    pointer-events: none;
    animation: float 7s ease-in-out infinite
}

/* Founder image / avatar */
.fc-img-wrap {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 1.25rem;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center
}

/* Decorative spinning ring */
.fc-img-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, .22);
    animation: fc-ring-spin 18s linear infinite;
    z-index: 0
}

@keyframes fc-ring-spin {
    to { transform: rotate(360deg) }
}

/* Image container */
.fc-img-ring2 {
    position: relative;
    width: 165px;
    height: 165px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, .3);
    z-index: 1;
    flex-shrink: 0
}

.fc-img-ring2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    display: block
}

.fc-img-circle {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: transform .3s ease
}

.fc-img-circle:hover {
    transform: scale(1.05)
}

.fc-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none
}

.fc-initials {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .05));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    font-family: var(--mono)
}

.fc-upload-hint {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, .5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity .25s;
    z-index: 3;
    pointer-events: none
}

.fc-img-circle:hover .fc-upload-hint {
    opacity: 1
}

.fc-upload-hint svg {
    margin-bottom: .25rem
}

.fc-upload-hint span {
    font-size: .58rem;
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em
}

.fc-upload-btn {
    position: absolute;
    bottom: 2px;
    right: 2px;
    z-index: 4;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform .25s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .3)
}

.fc-upload-btn:hover {
    transform: scale(1.15)
}

#fc-file {
    display: none
}

.fc-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    position: relative;
    z-index: 1;
    margin-bottom: .22rem
}

.fc-role {
    font-size: .76rem;
    color: rgba(255, 255, 255, .65);
    font-weight: 600;
    position: relative;
    z-index: 1;
    margin-bottom: 1.4rem;
    line-height: 1.5
}

/* Social icons */
.fc-socials {
    display: flex;
    gap: .55rem;
    position: relative;
    z-index: 1;
    margin-bottom: 1.75rem
}

.fc-soc {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease
}

.fc-soc:hover {
    background: rgba(255, 255, 255, .22);
    transform: translateY(-3px)
}

/* Mini stat boxes */
.fc-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .55rem;
    width: 100%;
    position: relative;
    z-index: 1
}

.fc-stat {
    background: rgba(255, 255, 255, .09);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 10px;
    padding: .75rem .5rem;
    text-align: center;
    transition: all .25s ease;
    cursor: default
}

.fc-stat:hover {
    background: rgba(255, 255, 255, .16);
    transform: translateY(-2px)
}

.fc-stn {
    font-size: 1.35rem;
    font-weight: 800;
    font-family: var(--mono);
    color: #fff;
    line-height: 1
}

.fc-stl {
    font-size: .6rem;
    color: rgba(255, 255, 255, .55);
    margin-top: .15rem;
    text-transform: uppercase;
    letter-spacing: .07em;
    font-weight: 600
}

/* Right panel */
.fc-right {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column
}

.fc-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .42rem;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    padding: .3rem .8rem;
    border-radius: 100px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #1d4ed8;
    margin-bottom: 1.1rem
}

.fc-eyebrow-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0052e0
}

.fc-headline {
    font-size: clamp(1.1rem, 1.9vw, 1.4rem);
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -.02em;
    color: var(--lt1);
    margin-bottom: 1.05rem
}

.fc-body {
    font-size: .86rem;
    color: var(--lt2);
    line-height: 1.75;
    margin-bottom: .65rem
}

/* Expertise pills */
.fc-pills-label {
    font-size: .71rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--lt3);
    margin-bottom: .5rem;
    margin-top: .9rem
}

.fc-pills {
    display: flex;
    flex-wrap: wrap;
    gap: .42rem;
    margin-bottom: 1.35rem
}

.fc-pill {
    display: inline-flex;
    align-items: center;
    gap: .32rem;
    font-size: .77rem;
    font-weight: 600;
    padding: .3rem .72rem;
    background: #f0f5ff;
    border: 1px solid #bfdbfe;
    border-radius: 100px;
    color: #1d4ed8;
    transition: all .22s ease;
    cursor: default
}

.fc-pill:hover {
    background: #dbeafe;
    border-color: #93c5fd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 82, 224, .12)
}

/* Certs */
.fc-certs {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin-bottom: 1rem
}

.fc-cert {
    font-size: .7rem;
    font-weight: 700;
    padding: .22rem .62rem;
    background: #fff;
    border: 1px solid var(--lb);
    border-radius: 100px;
    color: var(--lt3);
    transition: border-color .2s
}

.fc-cert:hover {
    border-color: #93c5fd;
    color: #1d4ed8
}

/* CTA row */
.fc-cta {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--lb)
}

/* ═══════════════════════════════════════
   ⑥ HOW WE WORK — white
═══════════════════════════════════════ */
.hw-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.hwc {
    background: #fff;
    border: 1px solid var(--lb);
    border-radius: var(--rl);
    padding: 1.3rem;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.hwc::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 82, 224, .04), rgba(124, 58, 237, .03));
    opacity: 0;
    transition: .3s;
    pointer-events: none
}

.hwc:hover {
    border-color: #93c5fd;
    box-shadow: 0 14px 44px rgba(0, 82, 224, .11);
    transform: translateY(-5px)
}

.hwc:hover::after {
    opacity: 1
}

.hw-num {
    font-size: .63rem;
    font-family: var(--mono);
    font-weight: 700;
    letter-spacing: .14em;
    color: var(--lt3);
    margin-bottom: .75rem
}

.hw-ico {
    width: 44px;
    height: 44px;
    border-radius: var(--r);
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .85rem;
    transition: all .32s ease;
    position: relative;
    z-index: 1
}

.hwc:hover .hw-ico {
    background: var(--blue);
    border-color: var(--blue);
    transform: rotate(-8deg) scale(1.12)
}

.hwc:hover .hw-ico svg {
    stroke: #fff
}

.hw-tt {
    font-size: .88rem;
    font-weight: 700;
    color: var(--lt1);
    margin-bottom: .38rem;
    position: relative;
    z-index: 1
}

.hw-dd {
    font-size: .82rem;
    color: var(--lt2);
    line-height: 1.74;
    position: relative;
    z-index: 1
}

/* ═══════════════════════════════════════
   ⑦ MARKETS — dark2
═══════════════════════════════════════ */
.mk-g {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem
}

.mkc {
    background: #fff;
    border: 1px solid var(--lb);
    border-radius: var(--rl);
    padding: 1.35rem;
    text-align: center;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
    cursor: default
}

.mkc::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 82, 224, .22), transparent 65%);
    opacity: 0;
    transition: .3s;
    pointer-events: none
}

.mkc:hover {
    transform: translateY(-7px);
    border-color: #93c5fd;
    box-shadow: 0 16px 44px rgba(0, 82, 224, .12)
}

.mkc:hover::before {
    opacity: 1
}

.mk-flag {
    font-size: 2.5rem;
    display: block;
    margin-bottom: .8rem;
    transition: transform .35s ease
}

.mkc:hover .mk-flag {
    transform: scale(1.25) rotate(-6deg)
}

.mk-cn {
    font-size: .93rem;
    font-weight: 700;
    color: var(--lt1);
    margin-bottom: .22rem
}

.mk-dd {
    font-size: .78rem;
    color: var(--lt2);
    line-height: 1.6
}

.mk-tg {
    margin-top: .85rem
}

/* ═══════════════════════════════════════
   ⑧ ACHIEVEMENTS — light-alt
═══════════════════════════════════════ */
.ach-g {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.achc {
    background: #fff;
    border: 1px solid var(--lb);
    border-radius: var(--rl);
    padding: 1.3rem;
    transition: all .3s ease;
    position: relative;
    overflow: hidden;
    cursor: default
}

.achc::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: .4s
}

.achc:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 44px rgba(0, 82, 224, .11);
    border-color: #bfdbfe
}

.achc:hover::after {
    transform: scaleX(1)
}

.ach-ico {
    width: 44px;
    height: 44px;
    border-radius: var(--r);
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all .3s ease
}

.achc:hover .ach-ico {
    background: var(--blue);
    border-color: var(--blue)
}

.achc:hover .ach-ico svg {
    stroke: #fff
}

.ach-n {
    font-size: 1.75rem;
    font-weight: 800;
    font-family: var(--mono);
    color: var(--blue);
    line-height: 1;
    margin-bottom: .2rem;
    transition: transform .2s
}

.achc:hover .ach-n {
    transform: scale(1.05)
}

.ach-tt {
    font-size: .84rem;
    font-weight: 700;
    color: var(--lt1);
    margin-bottom: .28rem
}

.ach-dd {
    font-size: .79rem;
    color: var(--lt2);
    line-height: 1.68
}

/* ═══════════════════════════════════════
   ⑨ TESTIMONIALS — dark2
═══════════════════════════════════════ */
.tst-g {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 1rem
}

.tstc {
    background: #fff;
    border: 1px solid var(--lb);
    border-radius: var(--rl);
    padding: 1.4rem;
    transition: all .35s ease;
    position: relative;
    overflow: hidden;
    cursor: default
}

.tstc:hover {
    transform: translateY(-6px);
    border-color: #93c5fd;
    box-shadow: 0 16px 44px rgba(0, 82, 224, .1)
}

.tstc.feat {
    background: linear-gradient(135deg, #eff6ff, #f5f3ff);
    border-color: #bfdbfe
}

.tstc.feat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #7c3aed)
}

.tst-stars {
    display: flex;
    gap: .2rem;
    margin-bottom: .9rem
}

.tst-star {
    color: #fbbf24;
    font-size: .9rem;
    transition: transform .2s ease;
    display: inline-block
}

.tstc:hover .tst-star:nth-child(1) {
    animation: countUp .3s .05s both
}

.tstc:hover .tst-star:nth-child(2) {
    animation: countUp .3s .1s both
}

.tstc:hover .tst-star:nth-child(3) {
    animation: countUp .3s .15s both
}

.tstc:hover .tst-star:nth-child(4) {
    animation: countUp .3s .2s both
}

.tstc:hover .tst-star:nth-child(5) {
    animation: countUp .3s .25s both
}

.tst-q {
    font-size: .88rem;
    color: var(--lt2);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1.35rem
}

.tstc.feat .tst-q {
    font-size: .95rem;
    color: var(--lt1)
}

.tst-auth {
    display: flex;
    align-items: center;
    gap: .72rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--lb)
}

.tst-av {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #fff;
    font-size: .82rem;
    flex-shrink: 0;
    transition: transform .3s
}

.tstc:hover .tst-av {
    transform: scale(1.12)
}

.tst-nm {
    font-size: .87rem;
    font-weight: 700;
    color: var(--lt1)
}

.tst-rl {
    font-size: .71rem;
    color: var(--lt3)
}

.rb {
    background: #fff;
    border: 1px solid var(--lb);
    border-radius: var(--r);
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.75rem
}

.rb-sc {
    display: flex;
    align-items: center;
    gap: .9rem
}

.rb-n {
    font-size: 2.2rem;
    font-weight: 800;
    font-family: var(--mono);
    color: var(--lt1)
}

.rb-st {
    color: #fbbf24;
    font-size: 1rem;
    letter-spacing: .05em
}

.rb-sub {
    font-size: .72rem;
    color: var(--lt3);
    margin-top: .1rem
}

.rb-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap
}

.rb-s {
    text-align: center
}

.rb-sn {
    font-size: 1.15rem;
    font-weight: 800;
    font-family: var(--mono);
    color: var(--blue)
}

.rb-sl {
    font-size: .67rem;
    color: var(--lt3);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-top: .1rem
}

/* ═══════════════════════════════════════
   ⑩ MID CTA — blue
═══════════════════════════════════════ */
.mid-cta {
    background: linear-gradient(135deg, #0052e0, #1d4ed8);
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden
}

.mid-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(255, 255, 255, .08), transparent 60%);
    pointer-events: none
}

.mid-cta-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

.mid-cta-btns {
    display: flex;
    gap: .85rem;
    flex-shrink: 0;
    flex-wrap: wrap
}

.mid-btn-w {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .8rem 1.6rem;
    background: #fff;
    color: #0052e0;
    font-weight: 700;
    font-size: .88rem;
    border-radius: 8px;
    transition: all .25s;
    white-space: nowrap;
    font-family: var(--font)
}

.mid-btn-w:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2)
}

.mid-btn-t {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .8rem 1.6rem;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-weight: 600;
    font-size: .88rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, .25);
    transition: all .25s;
    white-space: nowrap;
    font-family: var(--font)
}

.mid-btn-t:hover {
    background: rgba(255, 255, 255, .22);
    transform: translateY(-3px)
}

/* ═══════════════════════════════════════
   ⑪ FINAL CTA — slate-indigo
═══════════════════════════════════════ */
.cta-bg {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    position: relative;
    overflow: hidden
}

.cta-g1 {
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 82, 224, .2), transparent 60%);
    pointer-events: none;
    animation: float 11s ease-in-out infinite
}

.cta-g2 {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, .15), transparent 60%);
    pointer-events: none;
    animation: float 9s 2s ease-in-out infinite alternate
}

.cta-dots {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .02) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .02) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none
}

.cta-in {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.cta-card {
    background: #fff;
    border: 1px solid var(--lb);
    border-radius: var(--rxl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform .35s ease, box-shadow .35s ease;
    box-shadow: 0 4px 24px rgba(0, 82, 224, .08)
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 82, 224, .14);
    border-color: #93c5fd
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--purple))
}

.live-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    display: inline-block;
    animation: pulse 1.5s infinite
}

.ct {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .69rem;
    color: var(--lt3)
}

.pr-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .84rem;
    color: var(--dt2)
}

.pr-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media(max-width:1024px) {

    .hero-in,
    .story-g,
    .cta-in {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .hero-right {
        display: none
    }

    .val-g {
        grid-template-columns: repeat(2, 1fr)
    }

    .founder-card {
        grid-template-columns: 1fr
    }

    .fc-left {
        padding: 2rem
    }

    .hw-g {
        grid-template-columns: repeat(2, 1fr)
    }

    .mk-g {
        grid-template-columns: repeat(2, 1fr)
    }

    .ach-g {
        grid-template-columns: 1fr 1fr
    }

    .tst-g {
        grid-template-columns: 1fr
    }

    .cta-in {
        text-align: center
    }
}

@media(max-width:768px) {
    .st-g {
        grid-template-columns: 1fr 1fr
    }

    .st-b:nth-child(2) {
        border-right: none
    }

    .st-b:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, .18)
    }

    .hw-g,
    .ach-g {
        grid-template-columns: 1fr
    }

    .mk-g {
        grid-template-columns: 1fr 1fr
    }

    .val-g {
        grid-template-columns: 1fr
    }

    .tst-g {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    .h-btns {
        flex-direction: column
    }

    .h-btns a {
        justify-content: center
    }

    .fc-cta {
        flex-direction: column
    }

    .fc-cta a {
        justify-content: center
    }
}