/* ── TOKENS ─────────────────────────────── */
:root {
    --black: #06060E;
    --deep: #0C0C1A;
    --ink: #101020;
    --body: #1C1C30;
    --mid: #3A3A52;
    --muted: #6060808;
    --white: #FFFFFF;
    --off: #F4F4FA;
    --border: #DCDCEE;
    --purple: #7B2FF8;
    --blue: #1462F0;
    --psoft: rgba(123, 47, 248, .07);
    --grad: linear-gradient(120deg, #7B2FF8 0%, #1462F0 100%);
    --nav-h: 100px;
    --r: 6px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--white);
    color: var(--body);
    overflow-x: hidden;
    line-height: 1.72
}

a {
    text-decoration: none;
    color: inherit
}

img,
svg {
    display: block;
    max-width: 100%
}

::selection {
    background: var(--purple);
    color: #fff
}

.wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2.25rem
}

.sec {
    padding: 7rem 40px
}

/* ── REVEAL ─────────────────────────────── */
.rv {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease
}

.rl {
    opacity: 0;
    transform: translateX(-28px);
    transition: opacity .7s ease, transform .7s ease
}

.rr {
    opacity: 0;
    transform: translateX(28px);
    transition: opacity .7s ease, transform .7s ease
}

.rs {
    opacity: 0;
    transform: scale(.96);
    transition: opacity .8s ease, transform .8s ease
}

.rv.on,
.rl.on,
.rr.on,
.rs.on {
    opacity: 1;
    transform: none
}

.d1 {
    transition-delay: .07s
}

.d2 {
    transition-delay: .14s
}

.d3 {
    transition-delay: .21s
}

.d4 {
    transition-delay: .28s
}

.d5 {
    transition-delay: .35s
}

.d6 {
    transition-delay: .42s
}

/* ── LABEL ──────────────────────────────── */
.lbl {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 1.25rem
}

.lbl::before {
    content: '';
    width: 20px;
    height: 1.5px;
    background: var(--purple)
}

.lbl-w {
    color: rgba(255, 255, 255, .4)
}

.lbl-w::before {
    background: rgba(255, 255, 255, .25)
}

.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

/* ── NAV ────────────────────────────────── */
#nav {
    position: fixed;
    inset: 0 0 auto;
    height: var(--nav-h);
    z-index: 200;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s
}

#nav.solid {
    border-color: var(--border)
}

.ni {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2.25rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.logo {
    display: inline-flex;
    align-items: center
}

.logo img {
    height: 70px;
    width: auto;
    display: block
}

.nl a {
    font-size: .82rem;
    font-weight: 600;
    color: var(--mid);
    letter-spacing: .01em;
    transition: color .2s
}

.nl a:hover {
    color: var(--ink)
}

.nl {
    display: flex;
    gap: 2rem
}

.ncta {
    padding: .52rem 1.3rem;
    background: var(--ink);
    color: #fff;
    border-radius: var(--r);
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .01em;
    transition: background .2s
}

.ncta:hover {
    background: var(--purple)
}

.brg {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: .3rem
}

.brg span {
    width: 22px;
    height: 1.5px;
    background: var(--ink);
    display: block;
    transition: all .3s
}

.mob-nav {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2.25rem;
    flex-direction: column;
    gap: 1.25rem;
    z-index: 199
}

.mob-nav.open {
    display: flex
}

.mob-nav a {
    font-size: .95rem;
    font-weight: 600;
    color: var(--ink)
}

/* ── BUTTONS ────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .8rem 1.75rem;
    border-radius: var(--r);
    font-family: 'Manrope', sans-serif;
    font-size: .875rem;
    font-weight: 700;
    letter-spacing: .01em;
    transition: all .2s;
    cursor: pointer
}

.btn-dark {
    background: var(--ink);
    color: #fff
}

.btn-dark:hover {
    background: var(--purple);
    box-shadow: 0 6px 24px rgba(123, 47, 248, .3);
    transform: translateY(-1px)
}

.btn-line {
    border: 1.5px solid var(--border);
    color: var(--ink)
}

.btn-line:hover {
    border-color: var(--ink)
}

.btn-grad {
    background: var(--grad);
    color: #fff
}

.btn-grad:hover {
    box-shadow: 0 8px 28px rgba(123, 47, 248, .35);
    transform: translateY(-1px)
}

.btn-ghost {
    border: 1px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .75)
}

.btn-ghost:hover {
    border-color: rgba(255, 255, 255, .5);
    color: #fff
}

/* ══════════════════════════════════════════
   HERO — full viewport, massive type
══════════════════════════════════════════ */
#hero {
    min-height: 100vh;
    padding-top: var(--nav-h);
    display: grid;
    grid-template-columns: 1fr 38%;
    background: var(--white);
    overflow: hidden;
    position: relative;
}

.hero-l {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem;
}

.hero-tag {
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: rI .5s .1s forwards
}

.hero-h {
    font-size: clamp(3.5rem, 6.5vw, 7.5rem);
    font-weight: 800;
    line-height: .96;
    letter-spacing: -.05em;
    color: var(--ink);
    margin-bottom: 2rem;
    opacity: 0;
    animation: rI .65s .2s forwards;
}

.hero-h em {
    font-style: normal;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--body);
    max-width: 480px;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: rI .65s .35s forwards;
}

.hero-acts {
    display: flex;
    gap: .875rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: rI .65s .45s forwards;
}

.hero-note {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: .75rem;
    color: var(--mid);
    letter-spacing: .03em;
    opacity: 0;
    animation: rI .5s .65s forwards;
}

/* Hero right — bold single number panel */
.hero-r {
    background: var(--ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 5rem 3rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: rI .7s .5s forwards;
}

.hero-r::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(123, 47, 248, .3) 0%, rgba(20, 98, 240, .15) 50%, transparent 70%);
    top: -100px;
    right: -100px;
    pointer-events: none;
}

.hero-big {
    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 800;
    line-height: .95;
    letter-spacing: -.06em;
    color: var(--white);
    margin-bottom: .625rem;
    position: relative;
    z-index: 1;
}

.hero-big .weeks {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero-r-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .35);
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1
}

.hero-divider {
    width: 40px;
    height: 1.5px;
    background: rgba(255, 255, 255, .15);
    margin: 2.5rem 0;
    position: relative;
    z-index: 1
}

.hero-sub-stat {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem
}

.hero-sub-n {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--white)
}

.hero-sub-l {
    font-size: .78rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 600;
    margin-top: .15rem;
    line-height: 1.4
}

.hero-sub-stat+.hero-sub-stat {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, .07)
}

/* ══════════════════════════════════════════
   PROBLEM  — pure dark, bold statement
══════════════════════════════════════════ */
#problem {
    background: var(--black);
    padding: 7rem 0 9rem;
    position: relative;
}

#problem::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--white);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.prob-head {
    text-align: center;
    margin-bottom: 5rem
}

.prob-main {
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.25rem;
}

.prob-sub {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .45);
    max-width: 640px;
    margin: 0 auto
}

.prob-three {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, .07);
}

.prob-col {
    padding: 2.5rem 2.75rem 2.5rem 0
}

.prob-col+.prob-col {
    padding-left: 2.75rem;
    border-left: 1px solid rgba(255, 255, 255, .07)
}

.prob-col-n {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: 1.25rem
}

.prob-col-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .75rem;
    line-height: 1.35
}

.prob-col-body {
    font-size: .875rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .42)
}

/* ══════════════════════════════════════════
   MARKET  — white, huge open numbers
══════════════════════════════════════════ */
#market {
    background: var(--white);
    padding: 7rem 0
}

.market-lede {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap
}

.market-h {
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--ink);
    line-height: 1.15;
    max-width: 480px
}

.mstats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 2px solid var(--ink)
}

.mst {
    padding: 2.5rem 1.5rem 2.5rem 15px;
    border-right: 1px solid var(--border);
    position: relative;
    transition: background .2s;
}

.mst:last-child {
    border-right: none
}

.mst:hover {
    background: var(--off)
}

.mst::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad);
    transition: width .7s ease
}

.mst.on::before {
    width: 100%
}

.mst-n {
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 800;
    letter-spacing: -.06em;
    color: var(--ink);
    display: block;
    line-height: 1;
    margin-bottom: .5rem;
}

.mst-l {
    font-size: .82rem;
    color: var(--mid);
    line-height: 1.55;
    margin-bottom: .35rem
}

.mst-s {
    font-size: .65rem;
    color: rgba(96, 96, 128, .7);
    letter-spacing: .05em
}

/* ══════════════════════════════════════════
   COMMITMENT  — full-bleed purple-black
══════════════════════════════════════════ */
#commitment {
    background: linear-gradient(140deg, #120330 0%, #060614 55%, #081528 100%);
    padding: 8rem 0;
    overflow: hidden;
    position: relative;
}

.commit-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(123, 47, 248, .12), transparent);
    pointer-events: none;
}

.commit-inner {
    position: relative;
    z-index: 1;
    text-align: center
}

.commit-pre {
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .28);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .875rem;
}

.commit-pre::before,
.commit-pre::after {
    content: '';
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, .12)
}

.commit-num {
    display: block;
    font-size: clamp(5rem, 12vw, 12rem);
    font-weight: 800;
    letter-spacing: -.06em;
    line-height: .92;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.commit-word {
    font-size: clamp(1.25rem, 2.5vw, 2.25rem);
    font-weight: 300;
    color: rgba(255, 255, 255, .55);
    letter-spacing: -.01em;
    margin-bottom: 3rem;
}

.commit-body {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, .38);
    max-width: 600px;
    margin: 0 auto;
}

/* ══════════════════════════════════════════
   PROPOSITION  — white, quote-led
══════════════════════════════════════════ */
#proposition {
    background: var(--white);
    padding: 7rem 0
}

.prop-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7rem;
    align-items: start
}

.prop-quote-block {
    border-left: 3px solid var(--purple);
    padding-left: 2rem;
    margin-bottom: 2.5rem
}

.prop-quote {
    font-family: 'Lora', serif;
    font-style: italic;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    line-height: 1.5;
    color: var(--ink);
}

.prop-body {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--body)
}

.pillars {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-top: 2rem
}

.pillar {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: .875rem;
    align-items: start;
    padding: 1.25rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: border-color .25s, background .25s;
}

.pillar:hover {
    border-color: rgba(123, 47, 248, .25);
    background: var(--psoft)
}

.pn {
    font-size: 1rem;
    font-weight: 800;
    color: var(--purple);
    line-height: 1;
    padding-top: .15rem
}

.pt {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .3rem
}

.pb {
    font-size: .82rem;
    line-height: 1.7;
    color: var(--body)
}

/* ══════════════════════════════════════════
   CAPABILITIES  — dark, editorial rows
══════════════════════════════════════════ */
#capabilities {
    background: var(--deep);
    padding: 7rem 0
}

.cap-hdr {
    margin-bottom: 4rem;
    display: flex;
    gap: 6rem;
    align-items: flex-end;
    flex-wrap: wrap
}

.cap-hdr-l {
    flex: 1;
    min-width: 280px
}

.cap-hdr-note {
    font-size: .875rem;
    color: rgba(255, 255, 255, .35);
    max-width: 340px;
    line-height: 1.7;
    flex: 1;
    padding-bottom: .25rem
}

.cap-tbl {
    border-top: 1px solid rgba(255, 255, 255, .08)
}

.cap-row {
    display: grid;
    grid-template-columns: 3rem 1.5fr 2.5fr;
    gap: 2.25rem;
    padding: 2.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    align-items: start;
    position: relative;
    transition: background .2s;
}

.cap-row::before {
    content: '';
    position: absolute;
    left: -.25rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--grad);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .4s ease;
}

.cap-row:hover::before {
    transform: scaleY(1)
}

.cap-row:hover {
    background: rgba(255, 255, 255, .025)
}

.cn {
    font-size: .85rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .15);
    letter-spacing: -.01em;
    transition: color .25s;
    padding-top: .2rem;
    padding-left: 15px;
}

.cap-row:hover .cn {
    color: var(--purple)
}

.cname {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    padding-top: .2rem
}

.cdesc {
    font-size: .875rem;
    line-height: 1.82;
    color: rgba(255, 255, 255, .42)
}

.ctags {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
    margin-top: .875rem
}

.ctag {
    padding: .2rem .6rem;
    border-radius: 3px;
    font-size: .68rem;
    font-weight: 600;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .45)
}

/* ══════════════════════════════════════════
   OWNERSHIP  — white
══════════════════════════════════════════ */
#ownership {
    background: var(--white);
    padding: 7rem 0
}

.models {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem
}

.model {
    border-radius: var(--r);
    border: 1px solid var(--border);
    overflow: hidden;
    background: var(--white);
    transition: box-shadow .25s, transform .25s
}

.model:hover {
    box-shadow: 0 12px 48px rgba(8, 8, 18, .1);
    transform: translateY(-5px)
}

.model-bar {
    height: 3px;
    background: var(--grad)
}

.model-top {
    padding: 2rem;
    border-bottom: 1px solid var(--border)
}

.mtag {
    display: inline-block;
    padding: .22rem .65rem;
    border-radius: 3px;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: .875rem
}

.mtag-jv {
    background: rgba(123, 47, 248, .1);
    color: var(--purple)
}

.mtag-bot {
    background: rgba(20, 98, 240, .1);
    color: var(--blue)
}

.mtag-hyb {
    background: var(--off);
    color: var(--mid)
}

.mname {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -.04em;
    color: var(--ink);
    margin-bottom: .25rem
}

.msub {
    font-size: .85rem;
    color: var(--mid)
}

.mbody {
    padding: 1.75rem 2rem
}

.mdesc {
    font-size: .875rem;
    line-height: 1.8;
    color: var(--body);
    margin-bottom: 1.25rem
}

.mfit {
    padding: .875rem 1rem;
    background: var(--off);
    border-left: 2px solid var(--purple);
    border-radius: 0 var(--r) var(--r) 0;
    font-size: .8rem;
    line-height: 1.55;
    color: var(--mid)
}

/* ══════════════════════════════════════════
   HOW IT WORKS  — off-white, giant numbers
══════════════════════════════════════════ */
#howitworks {
    background: var(--off);
    padding: 7rem 0
}

.steps-hdr {
    margin-bottom: 4rem
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-top: 1px solid var(--border)
}

.step {
    padding: 2.25rem 2rem 2.25rem 1rem;
    border-right: 1px solid var(--border);
    transition: background .2s;
    position: relative
}

.step:last-child {
    border-right: none;
    padding-right: 1rem
}

.step:hover {
    background: rgba(123, 47, 248, .03)
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--grad);
    transition: width .5s ease
}

.step:hover::before {
    width: 100%
}

.step-big {
    font-size: 5rem;
    font-weight: 800;
    letter-spacing: -.07em;
    line-height: .9;
    color: #c1c1ee;
    display: block;
    margin-bottom: 1.5rem;
    transition: color .25s;
}

.step:hover .step-big {
    color: rgba(123, 47, 248, .15)
}

.free-pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .25rem .65rem;
    border-radius: 20px;
    background: rgba(123, 47, 248, .1);
    border: 1px solid rgba(123, 47, 248, .2);
    font-size: .68rem;
    font-weight: 700;
    color: var(--purple);
    letter-spacing: .04em;
    margin-top: .875rem
}

.step-n {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: .625rem
}

.step-t {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .75rem;
    line-height: 1.3
}

.step-b {
    font-size: .875rem;
    line-height: 1.78;
    color: var(--body)
}

.speed-strip {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--black);
    border-radius: var(--r);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 4rem;
    align-items: center;
}

.speed-big {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -.06em;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    line-height: 1.1
}

.speed-note {
    font-size: .875rem;
    color: rgba(255, 255, 255, .32);
    margin-bottom: 1.125rem;
    line-height: 1.7
}

.speed-tags {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap
}

.stag {
    padding: .32rem .875rem;
    border-radius: 20px;
    font-size: .72rem;
    font-weight: 600
}

.stag:nth-child(1) {
    background: rgba(123, 47, 248, .18);
    color: #AA80FF
}

.stag:nth-child(2) {
    background: rgba(80, 100, 220, .18);
    color: #8098FF
}

.stag:nth-child(3) {
    background: rgba(20, 98, 240, .18);
    color: #6098FF
}

.stag:nth-child(4) {
    background: rgba(0, 160, 210, .15);
    color: #50C8EE
}

/* ══════════════════════════════════════════
   WHY  — white
══════════════════════════════════════════ */
#why {
    background: var(--white);
    padding: 7rem 0
}

.compare {
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    margin-top: 3.5rem
}

.c-hdr {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background: var(--ink)
}

.ch {
    padding: 1rem 1.5rem;
    font-size: .67rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .3)
}

.ch-wb {
    background: var(--purple);
    color: #fff;
    font-size: .78rem;
    display: flex;
    align-items: center;
    gap: .4rem
}

.c-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border-top: 1px solid var(--border);
    background: var(--white)
}

.c-row:hover {
    background: var(--off)
}

.cd {
    padding: .95rem 1.5rem;
    font-size: .875rem;
    display: flex;
    align-items: center
}

.cd-lbl {
    color: var(--body);
    font-weight: 600
}

.cd-bad {
    color: #B03030;
    font-size: .85rem;
    display: flex;
    align-items: center;
    gap: .4rem
}

.cd-bad::before {
    content: '✕';
    font-size: .7rem
}

.cd-good {
    color: var(--purple);
    font-weight: 600;
    font-size: .85rem;
    display: flex;
    align-items: center;
    gap: .4rem
}

.cd-good::before {
    content: '✓';
    color: var(--blue)
}

.fit-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 3.5rem
}

.fit-box {
    border-radius: var(--r);
    overflow: hidden;
    border: 1px solid var(--border)
}

.fhd {
    padding: 1.1rem 1.5rem;
    font-size: .875rem;
    font-weight: 700
}

.fhd-y {
    background: var(--purple);
    color: #fff
}

.fhd-n {
    background: var(--off);
    color: var(--mid)
}

.fbd {
    padding: 1.25rem 1.5rem;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.fli {
    font-size: .875rem;
    line-height: 1.65;
    color: var(--body);
    display: flex;
    gap: .75rem;
    align-items: flex-start
}

.fit-y .fli::before {
    content: '→';
    color: var(--purple);
    font-weight: 700;
    flex-shrink: 0
}

.fit-n .fli::before {
    content: '—';
    color: rgba(96, 96, 128, .5);
    flex-shrink: 0
}

/* ══════════════════════════════════════════
   PROOF  — dark, large stats
══════════════════════════════════════════ */
#proof {
    background: var(--deep);
    padding: 7rem 0
}

.proof-intro {
    max-width: 640px;
    margin-bottom: 4rem
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.125rem
}

.pcard {
    border-radius: var(--r);
    border: 1px solid rgba(255, 255, 255, .07);
    background: rgba(255, 255, 255, .035);
    overflow: hidden;
    transition: background .25s, border-color .25s, transform .25s
}

.pcard:hover {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(123, 47, 248, .3);
    transform: translateY(-4px)
}

.pcard-top {
    padding: 2rem 2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.pstat {
    font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -.07em;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: .95;
    display: block;
    margin-bottom: .375rem;
}

.pout {
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    letter-spacing: .08em;
    text-transform: uppercase
}

.pcard-body {
    padding: 1.5rem 2rem
}

.psect {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: .5rem
}

.pdetail {
    font-size: .875rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, .4)
}

/* ══════════════════════════════════════════
   ECOSYSTEM  — white
══════════════════════════════════════════ */
#ecosystem {
    background: var(--white);
    padding: 7rem 0
}

.geo-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 3.5rem;
    margin-bottom: 4rem
}

.geo {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--r);
    transition: border-color .25s, box-shadow .25s
}

.geo:hover {
    border-color: rgba(123, 47, 248, .25);
    box-shadow: 0 4px 24px rgba(123, 47, 248, .08)
}

.geo-flag {
    font-size: 1.5rem;
    margin-bottom: .875rem
}

.geo-name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: .2rem
}

.geo-role {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: .75rem
}

.geo-stat {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: -.03em;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: .75rem
}

.geo-pts {
    display: flex;
    flex-direction: column;
    gap: .35rem
}

.geo-pt {
    font-size: .82rem;
    color: var(--body);
    padding-left: .875rem;
    position: relative;
    line-height: 1.5
}

.geo-pt::before {
    content: '';
    position: absolute;
    left: 0;
    top: .6rem;
    width: 4px;
    height: 1px;
    background: var(--purple)
}

.ptrow {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .875rem
}

.ptile {
    flex: 0 0 calc((100% - 3 * .875rem) / 4);
    padding: 1rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--r);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    transition: border-color .2s, background .2s
}

@media (max-width: 899px) {
    .ptile {
        flex: 0 0 calc((100% - 2 * .875rem) / 3)
    }
}

@media (max-width: 639px) {
    .ptile {
        flex: 0 0 calc((100% - .875rem) / 2)
    }
}

@media (max-width: 399px) {
    .ptile {
        flex: 0 0 100%
    }
}

.ptile:hover {
    border-color: rgba(123, 47, 248, .2);
    background: var(--psoft)
}

.ptn {
    font-size: .9rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: .2rem
}

.ptn img {
    width: 100%;
    height: 100%;
    max-height: 50px;
    max-width: 150px;
    object-fit: contain;
}

.ptt {
    font-size: .68rem;
    color: rgba(96, 96, 128, .8);
    letter-spacing: .05em
}

.certs {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    flex-wrap: wrap;
    margin-top: 5.25rem;
    padding: 1.125rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: var(--r)
}

.certs .ptile {
    background-color: transparent;
}

.cert-lbl {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(96, 96, 128, .8);
    flex-shrink: 0
}

.cert-pill {
    padding: .22rem .65rem;
    border-radius: 3px;
    background: var(--white);
    border: 1px solid var(--border);
    font-size: .72rem;
    font-weight: 700;
    color: var(--ink)
}

.certs-note {
    font-size: .72rem;
    color: rgba(96, 96, 128, .8);
    margin-left: auto
}

/* ══════════════════════════════════════════
   LEADERSHIP  — off-white
══════════════════════════════════════════ */
#leadership {
    background: var(--off);
    padding: 7rem 0
}

.photo-ph {
    width: 80px;
    height: 80px;
    border-radius: var(--r);
    border: 1.5px dashed var(--border);
    background: var(--white);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    gap: .2rem;
}

.photo-ph-init {
    font-size: 1.1rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.photo-ph-lbl {
    font-size: .55rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(96, 96, 128, .6)
}

.founder-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 4rem
}

.lcard {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r);
    overflow: hidden;
    transition: box-shadow .25s, transform .25s
}

.lcard:hover {
    box-shadow: 0 8px 40px rgba(8, 8, 18, .09);
    transform: translateY(-3px)
}

.lcard-top {
    padding: 0rem;
    border-bottom: 1px solid var(--border);
    border-top: 3px solid
}

.lcard-top .photo-ph {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 0px;
    border: none;
}

.lcard-top.p {
    border-color: var(--purple)
}

.lcard-top.b {
    border-color: var(--blue)
}

.lcard-ti {
    display: flex;
    gap: 1.25rem;
    align-items: center
}

.lname {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.02em
}

.lname-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .3rem;
}

.lname-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.55rem;
    height: 1.55rem;
    line-height: 0;
    transition: opacity .2s ease, transform .2s ease;
}

.lname-linkedin:hover {
    opacity: .75;
    transform: translateY(-1px);
}

.lname-linkedin img {
    width: 100%;
    height: 100%;
    display: block;
}

.lrole {
    font-size: .8rem;
    color: var(--mid);
    line-height: 1.45;
    font-style: italic
}

.lbody {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ltext {
    font-size: .875rem;
    line-height: 1.82;
    color: var(--body);
    margin-bottom: 1.25rem
}

.lcallout {
    padding: .875rem 1.125rem;
    background: var(--psoft);
    border-left: 2px solid var(--purple);
    border-radius: 0 var(--r) var(--r) 0
}

.lcl {
    font-size: .62rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--purple);
    margin-bottom: .3rem
}

.lcv {
    font-size: .875rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.45
}

.adv-lbl {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: rgba(96, 96, 128, .7);
    margin-bottom: 1.25rem;
    margin-top: .5rem
}

.adv-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

.adv {
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--r);
    background: var(--white);
    transition: border-color .25s, box-shadow .25s
}

.adv:hover {
    border-color: rgba(123, 47, 248, .2);
    box-shadow: 0 4px 20px rgba(123, 47, 248, .07)
}

.adv-ti {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1.25rem
}

.aname {
    font-size: 1rem;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -.02em
}

.arole {
    font-size: .78rem;
    color: var(--purple);
    font-style: italic;
    line-height: 1.4;
    margin-top: .15rem
}

.atext {
    font-size: .845rem;
    line-height: 1.8;
    color: var(--body)
}

/* ══════════════════════════════════════════
   CONTACT  — deep dark
══════════════════════════════════════════ */
#contact {
    background: var(--black);
    padding: 9rem 0;
    text-align: center
}

.clbl {
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .22);
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .875rem
}

.clbl::before,
.clbl::after {
    content: '';
    width: 36px;
    height: 1px;
    background: rgba(255, 255, 255, .1)
}

.contact-h {
    font-size: clamp(3rem, 6vw, 6.5rem);
    font-weight: 800;
    letter-spacing: -.06em;
    color: var(--white);
    line-height: 1;
    margin-bottom: .5rem;
}

.contact-h .ca {
    display: block;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.contact-sub {
    font-size: 1rem;
    line-height: 1.82;
    color: rgba(255, 255, 255, .5);
    max-width: 460px;
    margin: 2rem auto 3rem
}

.cbtns {
    display: flex;
    gap: .875rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 6rem
}

.nxt {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    max-width: 880px;
    margin: 0 auto;
    background: rgba(255, 255, 255, .05);
    border-radius: var(--r);
    overflow: hidden
}

.ni2 {
    padding: 2rem 1.75rem;
    background: var(--black);
    text-align: left
}

.nn {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: -.06em;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: .625rem
}

.nt {
    font-size: .875rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: .3rem
}

.nb {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6
}

/* FOOTER */
footer {
    background: #04040C;
    border-top: 1px solid rgba(255, 255, 255, .04);
    padding: 2.75rem 0
}

.fi {
    display: flex;
    flex-direction: column;
    gap: 2.25rem
}

.fi-row1 {
    display: grid;
    grid-template-columns: 3fr 1fr 1fr;
    gap: 2.5rem;
    align-items: start
}

.fcol-title {
    font-size: .875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .78);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1rem
}

.fl {
    margin-bottom: .75rem
}

.fl img {
    height: 85px;
    width: auto;
    display: block
}

.fc {
    font-size: .72rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.6
}

.flinks {
    display: flex;
    flex-direction: column;
    gap: .6rem
}

.flinks a {
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
    transition: color .2s
}

.flinks a:hover {
    color: rgba(255, 255, 255, .85)
}

.flocations {
    display: flex;
    flex-direction: column;
    gap: .55rem
}

.floc {
    font-size: .78rem;
    color: rgba(255, 255, 255, .6)
}

.fi-row2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.fpolicy a {
    font-size: .72rem;
    color: rgba(255, 255, 255, .6);
    transition: color .2s
}

.fpolicy a:hover {
    color: rgba(255, 255, 255, .85)
}

.fcopy {
    font-size: .72rem;
    color: rgba(255, 255, 255, .5)
}

@keyframes rI {
    from {
        opacity: 0;
        transform: translateY(14px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

/* ── RESPONSIVE ─────────────────────────── */
@media(max-width:1024px) {
    .wrap {
        padding: 0 1.5rem
    }

    #hero {
        grid-template-columns: 1fr;
        min-height: auto
    }

    .hero-l {
        padding: 4rem 1.5rem 3rem;
        border-bottom: 1px solid var(--border)
    }

    .hero-r {
        padding: 3rem 1.5rem;
        min-height: 320px
    }

    .hero-big {
        font-size: clamp(3rem, 10vw, 5rem)
    }

    .prob-three {
        grid-template-columns: 1fr 1fr
    }

    .prob-col:nth-child(3) {
        grid-column: 1/-1;
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .07);
        padding-top: 2.5rem
    }

    .market-lede {
        flex-direction: column;
        gap: 1.5rem
    }

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

    .mst:nth-child(2) {
        border-right: none
    }

    .mst:nth-child(3) {
        border-top: 1px solid var(--border);
        border-right: 1px solid var(--border)
    }

    .mst:nth-child(4) {
        border-top: 1px solid var(--border)
    }

    .prop-wrap {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .cap-hdr {
        flex-direction: column;
        gap: 1.5rem
    }

    .cap-row {
        grid-template-columns: 2.5rem 1fr;
        gap: 1.25rem
    }

    .cdesc-wrap {
        grid-column: 2/-1
    }

    .models {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
    }

    .steps-row {
        grid-template-columns: 1fr 1fr
    }

    .step {
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 2rem 15px
    }

    .step:nth-child(2n) {
        padding-right: 0
    }

    .speed-strip {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .proof-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
    }

    .geo-row {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
    }

    .founder-grid {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .adv-row {
        grid-template-columns: 1fr 1fr;
        gap: 1rem
    }

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

    .c-hdr,
    .c-row {
        grid-template-columns: 1fr 1fr
    }

    .cd-lbl {
        grid-column: 1/-1;
        border-bottom: 1px solid var(--border);
        padding-bottom: .75rem;
        font-size: .95rem
    }

    .ch:first-child {
        grid-column: 1/-1
    }

    .fit-pair {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .nl {
        display: none
    }

    .brg {
        display: flex
    }

    .sec {
        padding: 5rem 30px
    }
}

@media(max-width:640px) {
    :root {
        --nav-h: 80px;
    }

    .logo img {
        height: 50px;
    }

    .prob-three {
        grid-template-columns: 1fr
    }

    .prob-col {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .07);
        padding: 2rem 0
    }

    .prob-col:first-child {
        border-top: none
    }

    .ncta {
        display: none;
    }

    .models {
        grid-template-columns: 1fr;
        gap: .875rem
    }

    .steps-row {
        grid-template-columns: 1fr
    }

    .proof-grid,
    .geo-row {
        grid-template-columns: 1fr;
        gap: .875rem
    }

    .adv-row {
        grid-template-columns: 1fr;
        gap: .875rem
    }

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

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

    .cbtns {
        flex-direction: column;
        align-items: center
    }

    .fi {
        gap: 2rem
    }

    .fi-row1 {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center
    }

    .flinks,
    .flocations {
        align-items: center
    }

    .fi-row2 {
        flex-direction: column;
        text-align: center
    }

    .certs-note {
        display: none
    }

    .cap-hdr-l {
        padding-left: 20px;
        padding-right: 20px;
    }

    .cap-row {
        display: flex;
        flex-direction: column;
        padding-left: 20px;
        padding-right: 20px;
    }

    .cn {
        display: none
    }

    .hero-h {
        font-size: clamp(3rem, 11vw, 4.5rem)
    }

    .sec {
        padding: 3.5rem 20px
    }

    .contact-h {
        font-size: clamp(2.5rem, 10vw, 4rem)
    }

    .fl img {
        height: 60px;
        margin: 0 auto;
    }
}