:root {
    --ink: #15102e;
    --ink2: #514c70;
    --indigo: #4942E1;
    --violet: #784CE8;
    --magenta: #CC5FF6;
    --pink: #DB53F7;
    --bg: #ffffff;
    --tint: #F7F5FE;
    --tint2: #EFEBFC;
    --line: #E7E3F6;
    --grad: linear-gradient(100deg,#4942E1 0%,#784CE8 48%,#CC5FF6 100%);
    --grad-soft: linear-gradient(120deg,rgba(73,66,225,.09),rgba(204,95,246,.09));
    --r-lg: 26px;
    --r-md: 18px;
    --sh: 0 24px 60px -24px rgba(73,66,225,.28);
    --sh-sm: 0 10px 30px -12px rgba(73,66,225,.22);
    --fd: 'Poppins',sans-serif;
    --fb: 'Inter',sans-serif;
    --fm: 'IBM Plex Mono',monospace;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--fb);
    color: var(--ink);
    background: var(--bg);
    line-height: 1.66;
    font-size: 16.5px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

h1, h2, h3, h4 {
    font-family: var(--fd);
    line-height: 1.16;
    letter-spacing: -.015em
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px
}

::selection {
    background: var(--magenta);
    color: #fff
}

.gtext {
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

/* progress bar */
#progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: var(--grad);
    z-index: 1000;
    border-radius: 0 3px 3px 0
}

/* eyebrow */
.eyebrow {
    font-family: var(--fm);
    font-size: .73rem;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--indigo);
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-bottom: 1.2rem
}

    .eyebrow::before {
        content: "";
        width: 28px;
        height: 2px;
        background: var(--grad);
        border-radius: 2px
    }

.center .eyebrow::after {
    content: "";
    width: 28px;
    height: 2px;
    background: var(--grad);
    border-radius: 2px
}

/* announcement */
.announce {
    background: var(--ink);
    color: #fff;
    font-size: .82rem;
    text-align: center;
    padding: .55rem 1rem;
    position: relative;
    z-index: 101
}

    .announce b {
        background: var(--grad);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        font-weight: 600
    }

    .announce a {
        text-decoration: underline;
        text-underline-offset: 3px;
        opacity: .9
    }

        .announce a:hover {
            color: var(--magenta);
            opacity: 1
        }

/* nav */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    transition: .35s;
    background: rgba(255,255,255,.55);
    backdrop-filter: blur(6px)
}

    nav.scrolled {
        background: rgba(255,255,255,.88);
        backdrop-filter: blur(16px);
        box-shadow: 0 1px 0 var(--line),0 10px 30px -18px rgba(23,18,50,.18)
    }

.nav-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px
}

.brand {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: var(--fd);
    font-weight: 600;
    font-size: 1.14rem
}

    .brand img {
        height: 32px;
        display: block
    }

    .brand i {
        font-style: normal;
        font-weight: 400;
        color: var(--ink2)
    }

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    font-size: .92rem;
    font-weight: 500;
    color: var(--ink2)
}

    .nav-links > a {
        position: relative;
        padding: 5px 0;
        transition: color .25s
    }

        .nav-links > a:hover {
            color: var(--indigo)
        }

        .nav-links > a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 0;
            height: 2px;
            background: var(--grad);
            border-radius: 2px;
            transition: width .3s
        }

        .nav-links > a:hover::after {
            width: 100%
        }

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    font-family: var(--fd);
    font-weight: 500;
    font-size: .96rem;
    padding: .85rem 1.7rem;
    border-radius: 999px;
    cursor: pointer;
    border: none;
    transition: transform .25s,box-shadow .25s;
    position: relative;
    overflow: hidden
}

.btn-grad {
    background: var(--grad);
    color: #fff;
    box-shadow: 0 12px 28px -10px rgba(120,76,232,.55)
}

    .btn-grad::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(100deg,transparent 30%,rgba(255,255,255,.35) 50%,transparent 70%);
        transform: translateX(-100%);
        transition: transform .6s
    }

    .btn-grad:hover::after {
        transform: translateX(100%)
    }

    .btn-grad:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 36px -10px rgba(120,76,232,.65)
    }

.btn-ghost {
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--line)
}

    .btn-ghost:hover {
        border-color: var(--violet);
        color: var(--violet);
        transform: translateY(-2px)
    }

.btn-white {
    background: #fff;
    color: var(--indigo);
    box-shadow: 0 12px 30px -12px rgba(0,0,0,.35)
}

    .btn-white:hover {
        transform: translateY(-2px)
    }

.btn:focus-visible, a:focus-visible, input:focus-visible {
    outline: 3px solid var(--magenta);
    outline-offset: 3px
}

.nav-cta {
    padding: .62rem 1.3rem;
    font-size: .88rem
}

.menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px
}

    .menu-btn span {
        display: block;
        width: 23px;
        height: 2px;
        background: var(--ink);
        margin: 5px 0;
        border-radius: 2px;
        transition: .3s
    }

    .menu-btn.x span:nth-child(1) {
        transform: translateY(7px) rotate(45deg)
    }

    .menu-btn.x span:nth-child(2) {
        opacity: 0
    }

    .menu-btn.x span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg)
    }

/* ============ HERO ============ */
.hero {
    position: relative;
    padding: 84px 0 110px;
    overflow: hidden;
    background: radial-gradient(900px 500px at 85% -10%,rgba(204,95,246,.13),transparent 60%), radial-gradient(800px 520px at -10% 30%,rgba(73,66,225,.11),transparent 60%), linear-gradient(180deg,#fff 0%,#FBFAFF 100%)
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.02fr .98fr;
    gap: 60px;
    align-items: center;
    position: relative
}

.hero h1 {
    font-size: clamp(2.4rem,4.8vw,3.8rem);
    font-weight: 700
}

    .hero h1 .w {
        display: inline-block;
        opacity: 0;
        transform: translateY(34px) rotate(2deg);
        animation: wordIn .8s cubic-bezier(.22,.61,.36,1) forwards
    }

@keyframes wordIn {
    to {
        opacity: 1;
        transform: none
    }
}

.hero .lead {
    margin: 1.5rem 0 2.2rem;
    font-size: 1.14rem;
    color: var(--ink2);
    max-width: 33rem;
    opacity: 0;
    animation: fadeUp .9s .55s cubic-bezier(.22,.61,.36,1) forwards
}

    .hero .lead b {
        color: var(--ink);
        font-weight: 600
    }

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .9s .7s cubic-bezier(.22,.61,.36,1) forwards
}

.hero-meta {
    display: flex;
    gap: 26px;
    margin-top: 2.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp .9s .85s cubic-bezier(.22,.61,.36,1) forwards
}

.hm {
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .88rem;
    color: var(--ink2);
    font-weight: 500
}

    .hm .ic {
        width: 34px;
        height: 34px;
        border-radius: 11px;
        background: var(--grad-soft);
        border: 1px solid var(--line);
        display: flex;
        align-items: center;
        justify-content: center
    }

        .hm .ic svg {
            width: 17px;
            height: 17px;
            stroke: var(--violet);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round
        }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* hero visual composition */
.stage {
    position: relative;
    perspective: 1100px;
    opacity: 0;
    animation: fadeUp 1s .4s cubic-bezier(.22,.61,.36,1) forwards
}

.scene {
    position: relative;
    border-radius: var(--r-lg);
    background: linear-gradient(150deg,#1c1647 0%,#241a5e 45%,#3c2178 100%);
    box-shadow: var(--sh),inset 0 1px 0 rgba(255,255,255,.12);
    padding: 0;
    transform-style: preserve-3d;
    transition: transform .25s ease-out;
    overflow: hidden
}

    .scene svg.lab {
        display: block;
        width: 100%;
        height: auto
    }

.glass {
    position: absolute;
    background: rgba(255,255,255,.78);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255,255,255,.85);
    border-radius: 16px;
    box-shadow: 0 18px 40px -16px rgba(23,18,50,.35);
    padding: .95rem 1.15rem;
    display: flex;
    align-items: center;
    gap: .8rem;
    transform: translateZ(60px)
}

    .glass .gi {
        width: 40px;
        height: 40px;
        border-radius: 12px;
        background: var(--grad);
        display: flex;
        align-items: center;
        justify-content: center;
        flex: none
    }

        .glass .gi svg {
            width: 19px;
            height: 19px;
            stroke: #fff;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round
        }

    .glass .gt {
        font-family: var(--fd);
        font-weight: 600;
        font-size: 1.02rem;
        line-height: 1.2
    }

    .glass .gs {
        font-size: .74rem;
        color: var(--ink2)
    }

.g1 {
    top: 24px;
    left: -34px;
    animation: float 6s ease-in-out infinite
}

.g2 {
    bottom: 88px;
    right: -30px;
    animation: float 7s ease-in-out -2.5s infinite
}

.g3 {
    bottom: -24px;
    left: 34px;
    animation: float 6.5s ease-in-out -4s infinite
}

.g4 {
    top: -12px;
    right: 20px;
    animation: float 6.8s ease-in-out -1.5s infinite
}

@keyframes float {
    0%,100% {
        margin-top: 0
    }

    50% {
        margin-top: -12px
    }
}

.stage .orbit-dec {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    pointer-events: none;
    z-index: -1
}

/* ============ marquee ============ */
.marquee {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    overflow: hidden;
    padding: 1.05rem 0;
    position: relative
}

    .marquee::before, .marquee::after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        width: 120px;
        z-index: 2;
        pointer-events: none
    }

    .marquee::before {
        left: 0;
        background: linear-gradient(90deg,#fff,transparent)
    }

    .marquee::after {
        right: 0;
        background: linear-gradient(-90deg,#fff,transparent)
    }

.track {
    display: flex;
    gap: 0;
    width: max-content;
    animation: scroll 36s linear infinite
}

.marquee:hover .track {
    animation-play-state: paused
}

@keyframes scroll {
    to {
        transform: translateX(-50%)
    }
}

.track span {
    font-family: var(--fd);
    font-weight: 500;
    font-size: .95rem;
    color: var(--ink2);
    padding: 0 1.4rem;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    white-space: nowrap
}

    .track span::after {
        content: "";
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--grad)
    }

/* ============ stats ============ */
.stats {
    padding: 84px 0 0
}

.stats-card {
    background: var(--ink);
    border-radius: var(--r-lg);
    color: #fff;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 70px -30px rgba(23,18,50,.5)
}

    .stats-card::before {
        content: "";
        position: absolute;
        width: 480px;
        height: 480px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(120,76,232,.5),transparent 65%);
        top: -240px;
        right: -130px;
        filter: blur(50px)
    }

.stat {
    padding: 2.7rem 2rem;
    text-align: center;
    position: relative;
    z-index: 1
}

    .stat + .stat::before {
        content: "";
        position: absolute;
        left: 0;
        top: 26%;
        height: 48%;
        width: 1px;
        background: rgba(255,255,255,.14)
    }

    .stat .num {
        font-family: var(--fd);
        font-weight: 700;
        font-size: 2.7rem;
        line-height: 1.05;
        background: linear-gradient(100deg,#9b8cff,#e08bff);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent
    }

    .stat .lbl {
        font-size: .85rem;
        opacity: .66;
        margin-top: .45rem;
        font-weight: 500
    }

/* ============ sections ============ */
section {
    padding: 104px 0
}

.sec-head {
    max-width: 680px;
    margin-bottom: 3.4rem
}

    .sec-head.center {
        margin-left: auto;
        margin-right: auto;
        text-align: center
    }

    .sec-head h2 {
        font-size: clamp(1.8rem,3.2vw,2.5rem);
        font-weight: 700
    }

    .sec-head p {
        margin-top: 1.05rem;
        color: var(--ink2);
        font-size: 1.04rem
    }

/* why */
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center
}

.why-copy p {
    color: var(--ink2);
    margin-bottom: 1.15rem
}

    .why-copy p b {
        color: var(--ink)
    }

.why-points {
    margin-top: 1.8rem;
    display: grid;
    gap: .9rem
}

.wp {
    display: flex;
    gap: .9rem;
    align-items: flex-start
}

    .wp .n {
        font-family: var(--fm);
        font-size: .72rem;
        color: var(--violet);
        background: var(--tint2);
        border-radius: 8px;
        padding: .3rem .6rem;
        margin-top: .15rem;
        flex: none
    }

    .wp p {
        margin: 0;
        font-size: .95rem
    }

.cmp {
    position: relative
}

.cmp-card {
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    padding: 1.7rem 1.9rem;
    background: #fff;
    transition: transform .35s,box-shadow .35s;
    position: relative
}

    .cmp-card:hover {
        transform: translateY(-5px) scale(1.01);
        box-shadow: var(--sh)
    }

    .cmp-card.hl {
        background: var(--grad);
        color: #fff;
        border: none;
        margin-top: 18px;
        box-shadow: var(--sh)
    }

    .cmp-card h4 {
        font-size: 1.05rem;
        font-weight: 600;
        margin-bottom: .5rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: .6rem
    }

    .cmp-card p {
        font-size: .94rem;
        opacity: .85;
        margin: 0
    }

    .cmp-card .tag {
        font-family: var(--fm);
        font-size: .64rem;
        letter-spacing: .15em;
        text-transform: uppercase;
        padding: .3rem .75rem;
        border-radius: 999px;
        border: 1px solid currentColor;
        opacity: .7;
        flex: none
    }

.cmp-vs {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--sh-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fm);
    font-size: .7rem;
    color: var(--violet);
    font-weight: 500
}

/* how — interactive timeline */
.how {
    background: linear-gradient(180deg,var(--tint),#fff);
    position: relative;
    overflow: hidden
}

    .how::before {
        content: "";
        position: absolute;
        width: 560px;
        height: 560px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(204,95,246,.1),transparent 65%);
        top: -200px;
        left: -200px
    }

.tl-bar {
    height: 4px;
    background: var(--tint2);
    border-radius: 4px;
    margin: 0 0 30px;
    position: relative;
    overflow: hidden
}

    .tl-bar i {
        position: absolute;
        inset: 0;
        background: var(--grad);
        border-radius: 4px;
        transform-origin: left;
        transform: scaleX(.25);
        transition: transform .5s cubic-bezier(.22,.61,.36,1)
    }

.steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px
}

.step {
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    padding: 1.9rem 1.6rem;
    cursor: pointer;
    transition: .35s;
    position: relative;
    text-align: left
}

    .step .sn {
        font-family: var(--fm);
        font-size: .72rem;
        letter-spacing: .1em;
        color: var(--violet);
        background: var(--tint2);
        padding: .32rem .68rem;
        border-radius: 8px;
        display: inline-block
    }

    .step h4 {
        font-size: 1.06rem;
        font-weight: 600;
        margin: 1.05rem 0 .5rem
    }

    .step p {
        font-size: .91rem;
        color: var(--ink2);
        margin: 0
    }

    .step .ic {
        position: absolute;
        top: 1.5rem;
        right: 1.45rem;
        width: 40px;
        height: 40px;
        border-radius: 13px;
        background: var(--tint2);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .35s
    }

        .step .ic svg {
            width: 19px;
            height: 19px;
            stroke: var(--violet);
            fill: none;
            stroke-width: 1.9;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: .35s
        }

    .step:hover {
        transform: translateY(-5px);
        box-shadow: var(--sh-sm)
    }

    .step.on {
        border-color: transparent;
        box-shadow: var(--sh);
        transform: translateY(-7px)
    }

        .step.on .ic {
            background: var(--grad)
        }

            .step.on .ic svg {
                stroke: #fff
            }

        .step.on::after {
            content: "";
            position: absolute;
            inset: -1.5px;
            border-radius: var(--r-md);
            padding: 1.5px;
            background: var(--grad);
            -webkit-mask: linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            pointer-events: none
        }

.how-foot {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 2.8rem;
    justify-content: center
}

.hl-chip {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .68rem 1.2rem;
    font-size: .9rem;
    font-weight: 500;
    transition: .3s
}

    .hl-chip:hover {
        border-color: var(--violet);
        transform: translateY(-2px)
    }

    .hl-chip svg {
        width: 15px;
        height: 15px;
        stroke: var(--violet);
        fill: none;
        stroke-width: 2.5;
        stroke-linecap: round;
        stroke-linejoin: round
    }

/* cancers — interactive search grid */
.cancers {
    position: relative
}

.c-search {
    max-width: 420px;
    margin: 0 auto 2.6rem;
    position: relative
}

    .c-search input {
        width: 100%;
        border: 1.5px solid var(--line);
        border-radius: 999px;
        padding: .95rem 1.3rem .95rem 3rem;
        font-size: .96rem;
        font-family: var(--fb);
        transition: .25s;
        background: #fff
    }

        .c-search input:focus {
            outline: none;
            border-color: var(--violet);
            box-shadow: 0 0 0 5px rgba(120,76,232,.1)
        }

    .c-search svg {
        position: absolute;
        left: 1.1rem;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        stroke: var(--ink2);
        fill: none;
        stroke-width: 2;
        stroke-linecap: round
    }

.cancer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    justify-content: center;
    max-width: 980px;
    margin: 0 auto
}

.c-chip {
    font-size: .93rem;
    font-weight: 500;
    padding: .72rem 1.3rem;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    background: #fff;
    color: var(--ink2);
    transition: .28s;
    cursor: default;
    display: inline-flex;
    align-items: center;
    gap: .55rem
}

    .c-chip::before {
        content: "";
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--grad);
        opacity: .6;
        transition: .28s
    }

    .c-chip:hover {
        border-color: transparent;
        background: var(--grad);
        color: #fff;
        transform: translateY(-3px) scale(1.03);
        box-shadow: 0 12px 26px -8px rgba(120,76,232,.5)
    }

        .c-chip:hover::before {
            background: #fff
        }

    .c-chip.hide {
        display: none
    }

    .c-chip.more {
        background: var(--ink);
        color: #fff;
        border-color: var(--ink);
        font-family: var(--fm);
        font-size: .8rem;
        letter-spacing: .05em
    }

.c-empty {
    display: none;
    text-align: center;
    color: var(--ink2);
    font-size: .95rem;
    margin-top: 1.4rem
}

.c-note {
    text-align: center;
    margin-top: 2rem;
    font-size: .92rem;
    color: var(--ink2)
}

/* about dark */
.about {
    background: var(--ink);
    color: #fff;
    position: relative;
    overflow: hidden
}

    .about .glow1 {
        position: absolute;
        width: 700px;
        height: 700px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(120,76,232,.45),transparent 62%);
        top: -300px;
        right: -220px;
        filter: blur(60px)
    }

    .about .glow2 {
        position: absolute;
        width: 500px;
        height: 500px;
        border-radius: 50%;
        background: radial-gradient(circle,rgba(204,95,246,.3),transparent 62%);
        bottom: -260px;
        left: -160px;
        filter: blur(60px)
    }

    .about .sec-head h2 {
        color: #fff
    }

    .about .sec-head p {
        color: rgba(255,255,255,.66)
    }

    .about .eyebrow {
        color: var(--magenta)
    }

.about-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
    position: relative;
    align-items: center
}

.about-copy p {
    color: rgba(255,255,255,.74);
    margin-bottom: 1.2rem
}

.commit {
    display: grid;
    gap: 14px
}

.commit-item {
    display: flex;
    align-items: center;
    gap: 1.05rem;
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 16px;
    padding: 1.1rem 1.35rem;
    transition: .32s;
    backdrop-filter: blur(6px)
}

    .commit-item:hover {
        background: rgba(255,255,255,.12);
        transform: translateX(8px);
        border-color: rgba(255,255,255,.25)
    }

    .commit-item .dot {
        width: 38px;
        height: 38px;
        flex: none;
        border-radius: 12px;
        background: var(--grad);
        display: flex;
        align-items: center;
        justify-content: center
    }

        .commit-item .dot svg {
            width: 17px;
            height: 17px;
            stroke: #fff;
            fill: none;
            stroke-width: 2.2;
            stroke-linecap: round;
            stroke-linejoin: round
        }

    .commit-item span {
        font-weight: 500;
        font-family: var(--fd);
        font-size: 1rem
    }

/* FAQ */
.faq {
    background: linear-gradient(180deg,#fff,var(--tint))
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: grid;
    gap: 14px
}

.qa {
    background: #fff;
    border: 1.5px solid var(--line);
    border-radius: var(--r-md);
    overflow: hidden;
    transition: .3s
}

    .qa.open {
        border-color: rgba(120,76,232,.45);
        box-shadow: var(--sh-sm)
    }

    .qa button {
        width: 100%;
        background: none;
        border: none;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        padding: 1.35rem 1.6rem;
        cursor: pointer;
        font-family: var(--fd);
        font-weight: 600;
        font-size: 1rem;
        color: var(--ink);
        text-align: left
    }

    .qa .pm {
        width: 30px;
        height: 30px;
        flex: none;
        border-radius: 50%;
        background: var(--tint2);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: .35s;
        position: relative
    }

        .qa .pm::before, .qa .pm::after {
            content: "";
            position: absolute;
            background: var(--violet);
            border-radius: 2px;
            transition: .35s
        }

        .qa .pm::before {
            width: 12px;
            height: 2px
        }

        .qa .pm::after {
            width: 2px;
            height: 12px
        }

    .qa.open .pm {
        background: var(--grad);
        transform: rotate(180deg)
    }

        .qa.open .pm::before {
            background: #fff
        }

        .qa.open .pm::after {
            opacity: 0
        }

    .qa .a {
        max-height: 0;
        overflow: hidden;
        transition: max-height .45s cubic-bezier(.22,.61,.36,1)
    }

        .qa .a p {
            padding: 0 1.6rem 1.4rem;
            font-size: .94rem;
            color: var(--ink2)
        }

/* disclaimer */
.disc {
    padding: 0 0 100px
}

.disc-card {
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    background: var(--tint);
    padding: 2rem 2.3rem;
    display: flex;
    gap: 1.3rem;
    align-items: flex-start
}

    .disc-card .ic {
        width: 44px;
        height: 44px;
        flex: none;
        border-radius: 13px;
        background: var(--grad);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: .2rem
    }

        .disc-card .ic svg {
            width: 21px;
            height: 21px;
            stroke: #fff;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round
        }

    .disc-card h3 {
        font-size: 1.02rem;
        font-weight: 600;
        margin-bottom: .5rem
    }

    .disc-card p {
        font-size: .88rem;
        color: var(--ink2);
        margin-bottom: .45rem
    }

/* contact */
.contact {
    padding: 0 0 110px
}

.cta-panel {
    background: linear-gradient(140deg,#241a5e 0%,#4029a8 45%,#7b3ad1 100%);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    padding: 74px 64px;
    color: #fff;
    box-shadow: 0 40px 90px -36px rgba(64,41,168,.6)
}

    .cta-panel .mesh {
        position: absolute;
        inset: 0;
        pointer-events: none;
        opacity: .5
    }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    position: relative;
    align-items: start
}

.contact h2 {
    color: #fff;
    font-size: clamp(1.7rem,3vw,2.4rem);
    font-weight: 700
}

.contact .sub {
    color: rgba(255,255,255,.72);
    margin-top: 1rem
}

.c-cards {
    display: grid;
    gap: 14px;
    margin-top: 2.2rem
}

.c-card {
    display: flex;
    align-items: center;
    gap: 1.05rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 16px;
    padding: 1.15rem 1.4rem;
    transition: .3s;
    backdrop-filter: blur(8px)
}

    .c-card:hover {
        background: rgba(255,255,255,.16);
        transform: translateY(-3px)
    }

    .c-card .ic {
        width: 46px;
        height: 46px;
        flex: none;
        border-radius: 14px;
        background: rgba(255,255,255,.92);
        display: flex;
        align-items: center;
        justify-content: center
    }

        .c-card .ic svg {
            width: 21px;
            height: 21px;
            stroke: var(--indigo);
            fill: none;
            stroke-width: 1.9;
            stroke-linecap: round;
            stroke-linejoin: round
        }

    .c-card .t {
        font-family: var(--fd);
        font-weight: 600;
        font-size: .98rem
    }

    .c-card .s {
        font-size: .86rem;
        opacity: .75
    }

form {
    background: #fff;
    border-radius: 22px;
    padding: 2.3rem;
    box-shadow: 0 30px 70px -24px rgba(0,0,0,.45);
    color: var(--ink)
}

    form h3 {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 1.4rem
    }

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.f-group {
    margin-bottom: 1.05rem
}

label {
    display: block;
    font-size: .8rem;
    font-weight: 600;
    margin-bottom: .4rem;
    font-family: var(--fd)
}

input, textarea {
    width: 100%;
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: .85rem 1rem;
    font-family: var(--fb);
    font-size: .95rem;
    color: var(--ink);
    transition: .25s;
    background: #fff
}

    input:focus, textarea:focus {
        outline: none;
        border-color: var(--violet);
        box-shadow: 0 0 0 4px rgba(120,76,232,.13)
    }

textarea {
    resize: vertical;
    min-height: 104px
}

.form-note {
    font-size: .78rem;
    color: var(--ink2);
    margin-top: .85rem
}

.sent-msg {
    display: none;
    margin-top: 1rem;
    background: var(--tint2);
    border-radius: 12px;
    padding: .9rem 1.1rem;
    font-size: .9rem;
    color: var(--indigo);
    font-weight: 500
}

    .sent-msg.on {
        display: block;
        animation: fadeUp .5s
    }

/* footer */
footer {
    background: var(--ink);
    color: #fff;
    padding: 60px 0 36px
}

.foot-grid {
    display: flex;
    justify-content: space-between;
    gap: 44px;
    flex-wrap: wrap;
    align-items: flex-start
}

.foot-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--fd);
    font-weight: 600;
    font-size: 1.05rem
}

    .foot-brand img {
        height: 28px
    }

.foot-tag {
    font-family: var(--fm);
    font-size: .7rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    opacity: .5;
    margin-top: .75rem
}

.foot-links {
    display: flex;
    gap: 28px;
    font-size: .88rem;
    opacity: .75;
    flex-wrap: wrap
}

    .foot-links a:hover {
        opacity: 1;
        color: var(--magenta)
    }

.foot-base {
    margin-top: 44px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: .78rem;
    opacity: .5;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap
}

/* floating btn + top */
.fab-faq {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 91;
    display: flex;
    align-items: center;
    gap: .5rem;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background: var(--grad);
    color: #fff;
    font-family: var(--fd);
    font-weight: 600;
    font-size: .85rem;
    letter-spacing: .06em;
    padding: .9rem .65rem;
    border-radius: 14px 0 0 14px;
    box-shadow: -4px 0 24px -6px rgba(120,76,232,.5);
    transition: padding-right .3s, box-shadow .3s;
    text-decoration: none;
    cursor: pointer;
}

    .fab-faq:hover {
        padding-right: .9rem;
        box-shadow: -6px 0 30px -4px rgba(120,76,232,.7);
    }

    .fab-faq svg {
        width: 18px;
        height: 18px;
        stroke: #fff;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.fab {
    position: fixed;
    right: 26px;
    bottom: 26px;
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end
}

    .fab a {
        display: flex;
        align-items: center;
        gap: .6rem;
        background: #25D366;
        color: #fff;
        border-radius: 999px;
        padding: .85rem 1.4rem;
        font-family: var(--fd);
        font-weight: 500;
        font-size: .9rem;
        box-shadow: 0 16px 36px -10px rgba(37,211,102,.6);
        transition: .3s
    }

        .fab a:hover {
            transform: translateY(-3px) scale(1.03)
        }

        .fab a svg {
            width: 17px;
            height: 17px;
            stroke: #fff;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round
        }

#toTop {
    position: fixed;
    left: 26px;
    bottom: 26px;
    z-index: 90;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--line);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: .3s;
    box-shadow: var(--sh-sm)
}

    #toTop.show {
        opacity: 1;
        pointer-events: auto
    }

    #toTop:hover {
        transform: translateY(-3px);
        border-color: var(--violet)
    }

    #toTop svg {
        width: 18px;
        height: 18px;
        stroke: var(--violet);
        fill: none;
        stroke-width: 2.2;
        stroke-linecap: round;
        stroke-linejoin: round
    }

/* reveal */
.rv {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .85s cubic-bezier(.22,.61,.36,1),transform .85s cubic-bezier(.22,.61,.36,1)
}

    .rv.rl {
        transform: translateX(-34px)
    }

    .rv.rr {
        transform: translateX(34px)
    }

    .rv.in {
        opacity: 1;
        transform: none
    }

    .rv.d1 {
        transition-delay: .1s
    }

    .rv.d2 {
        transition-delay: .2s
    }

    .rv.d3 {
        transition-delay: .3s
    }

    .rv.d4 {
        transition-delay: .4s
    }

    .rv.d5 {
        transition-delay: .5s
    }

/* responsive */
@media(max-width:1020px) {
    .hero-grid, .why-grid, .about-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px
    }

    .steps {
        grid-template-columns: 1fr 1fr
    }

    .stats-card {
        grid-template-columns: 1fr 1fr
    }

    .stat:nth-child(3)::before {
        display: none
    }

    .g1 {
        left: -8px
    }

    .g2 {
        right: -8px
    }

    .nav-links {
        display: none;
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        margin-top: 76px;
        background: #fff;
        flex-direction: column;
        padding: 1.6rem 2rem 2rem;
        box-shadow: 0 26px 44px -20px rgba(23,18,50,.28);
        gap: 1.25rem;
        align-items: flex-start;
        z-index: 99
    }

        .nav-links.open {
            display: flex
        }

    .menu-btn {
        display: block
    }

    .cta-panel {
        padding: 54px 36px
    }
}

@media(max-width:620px) {
    section {
        padding: 74px 0
    }

    .hero {
        padding: 56px 0 86px
    }

    .steps, .stats-card {
        grid-template-columns: 1fr
    }

    .stat + .stat::before {
        display: none
    }

    .stat {
        padding: 1.9rem 1.4rem
    }

    .f-row {
        grid-template-columns: 1fr
    }

    form {
        padding: 1.7rem
    }

    .cta-panel {
        padding: 46px 26px;
        border-radius: 24px
    }

    .glass {
        transform: scale(.85)
    }

    .g1 {
        top: 8px;
        left: -6px
    }

    .g3 {
        left: 8px
    }

    .g4 {
        top: -6px;
        right: -6px
    }

    .fab a span {
        display: none
    }

    .fab a {
        padding: .85rem
    }

    .fab-faq {
        display: none
    }
}

@media(prefers-reduced-motion:reduce) {
    *, *::before, *::after {
        animation-duration: .001s !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001s !important;
        scroll-behavior: auto !important
    }

    .rv, .hero .lead, .hero-ctas, .hero-meta, .stage {
        opacity: 1 !important;
        transform: none !important
    }

    .hero h1 .w {
        opacity: 1;
        transform: none;
        animation: none
    }

    .track {
        animation: none
    }
}














 .terms-page {
            padding: 100px 0 100px;
            min-height: 100vh;
        }
        .terms-container {
            max-width: 820px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .terms-container h1 {
            font-size: clamp(2rem, 3.5vw, 2.8rem);
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--ink);
        }
        .terms-container .terms-date {
            font-family: var(--fb);
            font-size: 0.95rem;
            color: var(--ink2);
            margin-bottom: 3rem;
            display: block;
        }
        .terms-container .terms-intro {
            font-size: 1.08rem;
            color: var(--ink2);
            margin-bottom: 3rem;
            line-height: 1.8;
            padding: 1.5rem 1.8rem;
            background: var(--grad-soft);
            border-radius: var(--r-md);
            border-left: 4px solid var(--violet);
        }
        .terms-container h2 {
            font-size: clamp(1.3rem, 2vw, 1.6rem);
            font-weight: 600;
            margin: 2.8rem 0 1rem;
            color: var(--ink);
        }
        .terms-container h3 {
            font-size: 1.12rem;
            font-weight: 600;
            margin: 1.8rem 0 0.6rem;
            color: var(--ink);
        }
        .terms-container p,
        .terms-container li {
            font-size: 1.02rem;
            color: var(--ink2);
            line-height: 1.85;
            margin-bottom: 1rem;
        }
        .terms-container ul {
            padding-left: 1.6rem;
            margin-bottom: 1.5rem;
        }
        .terms-container ul li {
            margin-bottom: 0.6rem;
        }
        .terms-divider {
            border: none;
            border-top: 1px solid var(--line);
            margin: 3rem 0;
        }
        .terms-back {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-top: 3rem;
            padding: 10px 22px;
            background: var(--grad-soft);
            border-radius: var(--r-md);
            color: var(--indigo);
            font-weight: 600;
            font-size: 0.95rem;
            text-decoration: none;
            transition: background 0.25s ease, transform 0.2s ease;
        }
        .terms-back:hover {
            background: rgba(73,66,225,.14);
            transform: translateX(-4px);
        }
        .terms-back svg {
            width: 16px;
            height: 16px;
        }
        @media (max-width: 768px) {
            .terms-page {
                padding: 130px 0 80px;
            }
            .terms-container {
                padding: 0 20px;
            }
        }