:root {
    --blue: #0052e0;
    --blue-d: #0040c0;
    --blue-l: #e8f0ff;
    --dark: #060d1a;
    --dark2: #0f172a;
    --white: #ffffff;
    --offblue: #f0f5ff;
    --border: #e2e8f0;
    --border-off: #dce8ff;
    --text: #0f172a;
    --text2: #475569;
    --text3: #94a3b8;
    --teal: #00c9a7;
    --font: "Plus Jakarta Sans", sans-serif;
    --mono: "JetBrains Mono", monospace;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px)
}

.sec {
    padding: 5rem 0
}

/* Scroll reveal */
.rv {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease
}

.rv.in {
    opacity: 1;
    transform: none
}

/* Keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(16px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@keyframes scanline {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(100vh)
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center
    }

    100% {
        background-position: 200% center
    }
}

@keyframes glow-pulse {

    0%,
    100% {
        box-shadow: 0 0 18px rgba(0, 82, 224, .18)
    }

    50% {
        box-shadow: 0 0 36px rgba(0, 82, 224, .42), 0 0 70px rgba(0, 201, 167, .12)
    }
}

@keyframes typewriter {
    from {
        width: 0
    }

    to {
        width: 100%
    }
}

@keyframes cursor-blink {

    0%,
    100% {
        border-color: var(--teal)
    }

    50% {
        border-color: transparent
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: .5
    }

    100% {
        transform: scale(2.2);
        opacity: 0
    }
}

@keyframes move-dot {
    0% {
        transform: translate(0, 0)
    }

    50% {
        transform: translate(6px, -4px)
    }

    100% {
        transform: translate(0, 0)
    }
}

/* ─── Buttons ─── */
.btn-blue {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: var(--blue);
    color: #fff;
    font-family: var(--font);
    font-size: .875rem;
    font-weight: 600;
    padding: .72rem 1.4rem;
    border-radius: 9px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0, 82, 224, .3);
    transition: background .15s, transform .12s, box-shadow .18s;
    border: none;
    cursor: pointer;
    white-space: nowrap
}

.btn-blue:hover {
    background: var(--blue-d);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(0, 82, 224, .4)
}

.btn-blue svg {
    width: 13px;
    height: 13px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.btn-blue.lg {
    font-size: .92rem;
    padding: .82rem 1.6rem;
    border-radius: 10px
}

.btn-ghost-d {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .82);
    font-family: var(--font);
    font-size: .875rem;
    font-weight: 500;
    padding: .72rem 1.4rem;
    border-radius: 9px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .13);
    transition: background .15s, transform .12s;
    white-space: nowrap
}

.btn-ghost-d:hover {
    background: rgba(255, 255, 255, .1);
    transform: translateY(-1px)
}

.btn-ghost-d svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.btn-ghost-l {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: transparent;
    color: var(--blue);
    font-family: var(--font);
    font-size: .875rem;
    font-weight: 600;
    padding: .72rem 1.4rem;
    border-radius: 9px;
    text-decoration: none;
    border: 1.5px solid rgba(0, 82, 224, .28);
    transition: background .15s, transform .12s;
    white-space: nowrap
}

.btn-ghost-l:hover {
    background: var(--blue-l);
    transform: translateY(-1px)
}

.btn-ghost-l svg {
    width: 13px;
    height: 13px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

/* ─── Chip / label ─── */
.chip {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--blue);
    margin-bottom: .65rem
}

.chip svg {
    width: 9px;
    height: 9px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.chip.light {
    color: rgba(148, 187, 255, .8)
}

.chip.teal-c {
    color: #0052e0
}

h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.5rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.03em
}

h2.white {
    color: #fff
}

.fp {
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: small;
}

/* ═══════════════════════════════════════════════
   SEC 1 — HERO  dark
═══════════════════════════════════════════════ */
.hero {
    background: var(--dark);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    display: flex;
    flex-direction: column
}

.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0
}

#neural-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0
}

.scanline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(0, 201, 167, .14), rgba(0, 82, 224, .18), rgba(0, 201, 167, .14), transparent);
    animation: scanline 7s linear infinite;
    z-index: 1;
    pointer-events: none
}

.hg1 {
    position: absolute;
    top: -280px;
    right: -180px;
    width: 860px;
    height: 860px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .17) 0%, rgba(0, 201, 167, .04) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0
}

.hg2 {
    position: absolute;
    bottom: -180px;
    left: -80px;
    width: 660px;
    height: 660px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 201, 167, .07) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0
}

.hero-body {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 3.5rem clamp(16px, 4vw, 40px) 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    flex: 1
}

.hero-left {
    padding-bottom: 5rem
}

.hero-left>* {
    animation: fadeUp .58s ease both
}

.hero-left>*:nth-child(1) {
    animation-delay: .04s
}

.hero-left>*:nth-child(2) {
    animation-delay: .11s
}

.hero-left>*:nth-child(3) {
    animation-delay: .19s
}

.hero-left>*:nth-child(4) {
    animation-delay: .27s
}

.hero-left>*:nth-child(5) {
    animation-delay: .35s
}

.hero-left>*:nth-child(6) {
    animation-delay: .42s
}

.crumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .7rem;
    color: rgba(255, 255, 255, .25);
    margin-bottom: 1.5rem;
    flex-wrap: wrap
}

.crumb a {
    color: rgba(255, 255, 255, .35);
    text-decoration: none;
    transition: color .15s
}

.crumb a:hover {
    color: rgba(255, 255, 255, .65)
}

.crumb svg {
    width: 8px;
    height: 8px;
    stroke: rgba(255, 255, 255, .18);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    background: rgba(0, 201, 167, .07);
    border: 1px solid rgba(0, 201, 167, .22);
    border-radius: 8px;
    padding: .38rem 1rem .38rem .48rem;
    font-family: var(--mono);
    font-size: .7rem;
    color: rgba(0, 201, 167, .88);
    margin-bottom: 1.6rem;
    position: relative;
    overflow: hidden
}

.ai-badge::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 201, 167, .04), transparent);
    animation: shimmer 3s ease infinite;
    background-size: 200% 100%
}

.ai-badge-ico {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: rgba(0, 201, 167, .13);
    border: 1px solid rgba(0, 201, 167, .28);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ai-badge-ico svg {
    width: 10px;
    height: 10px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2.5
}

.ai-badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 6px var(--teal);
    animation: blink 1.5s ease infinite;
    flex-shrink: 0
}

h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.04em;
    color: #fff;
    margin-bottom: 1.1rem
}

.hl-blue {
    background: linear-gradient(135deg, #60a5fa, #818cf8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.typewriter-text {
    font-family: var(--mono);
    font-size: clamp(.85rem, 1.5vw, 1.05rem);
    font-weight: 500;
    color: var(--teal);
    overflow: hidden;
    border-right: 2px solid var(--teal);
    white-space: nowrap;
    animation: typewriter 2.4s steps(30, end) .8s both, cursor-blink .7s step-end .8s infinite;
    max-width: 30ch;
    margin-bottom: 1.1rem
}

.hero-desc {
    font-size: .975rem;
    line-height: 1.78;
    color: rgba(255, 255, 255, .47);
    max-width: 44ch;
    margin-bottom: 2rem
}

.hero-btns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2.1rem
}

.proof-row {
    display: flex;
    gap: .4rem;
    flex-wrap: wrap
}

.proof-pill {
    display: flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 100px;
    padding: .28rem .72rem;
    font-size: .7rem;
    color: rgba(255, 255, 255, .42)
}

.proof-pill strong {
    color: rgba(255, 255, 255, .82);
    font-weight: 700
}

.pp-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 5px #4ade80;
    flex-shrink: 0
}

/* Hero terminal */
.hero-right {
    animation: fadeUp .65s .17s ease both;
    position: relative;
    padding-bottom: 4.5rem
}

.ai-terminal {
    background: rgba(6, 13, 26, .94);
    border: 1px solid rgba(0, 201, 167, .16);
    border-radius: 16px;
    overflow: hidden;
    animation: glow-pulse 4.5s ease-in-out infinite;
    position: relative
}

.ai-terminal::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--teal), rgba(0, 82, 224, .8), var(--teal), transparent)
}

.term-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .58rem 1rem;
    background: rgba(255, 255, 255, .03);
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.term-dots {
    display: flex;
    gap: .36rem
}

.term-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%
}

.td-r {
    background: #ff5f57
}

.td-y {
    background: #febc2e
}

.td-g {
    background: #28c840
}

.term-title {
    font-family: var(--mono);
    font-size: .6rem;
    color: rgba(255, 255, 255, .25);
    letter-spacing: .04em
}

.term-status {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-family: var(--mono);
    font-size: .58rem;
    color: var(--teal)
}

.tsd {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal);
    animation: blink 1.5s ease infinite
}

.term-body {
    padding: 1.1rem 1.1rem .9rem
}

.term-cmd {
    font-family: var(--mono);
    font-size: .57rem;
    color: rgba(0, 201, 167, .42);
    margin-bottom: .75rem;
    letter-spacing: .03em
}

.llm-scores {
    display: flex;
    flex-direction: column;
    gap: .48rem;
    margin-bottom: 1rem
}

.llm-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: .7rem;
    align-items: center;
    padding: .5rem .7rem;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 8px;
    transition: border-color .2s
}

.llm-row:hover {
    border-color: rgba(0, 201, 167, .16)
}

.llm-left {
    display: flex;
    align-items: center;
    gap: .55rem
}

.llm-icon {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0
}

.llm-name {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .72)
}

.llm-type {
    font-size: .57rem;
    color: rgba(255, 255, 255, .25);
    display: block;
    margin-top: 1px;
    font-family: var(--mono)
}

.llm-right {
    display: flex;
    align-items: center;
    gap: .55rem
}

.llm-bw {
    width: 72px;
    height: 4px;
    background: rgba(255, 255, 255, .06);
    border-radius: 100px;
    overflow: hidden
}

.llm-bf {
    height: 100%;
    border-radius: 100px;
    transition: width 1.4s ease
}

.llm-pct {
    font-family: var(--mono);
    font-size: .67rem;
    font-weight: 700;
    min-width: 26px;
    text-align: right
}

.llm-delta {
    font-size: .58rem;
    color: #4ade80;
    font-family: var(--mono)
}

.term-div {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, .06);
    margin: .7rem 0
}

.term-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .45rem
}

.tstat {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 8px;
    padding: .58rem .7rem;
    text-align: center
}

.tsv {
    font-family: var(--mono);
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.tsv.tc {
    color: var(--teal)
}

.tsv.tb {
    color: #60a5fa
}

.tsl {
    font-size: .55rem;
    color: rgba(255, 255, 255, .26);
    margin-top: 3px;
    line-height: 1.3
}

.term-stream {
    margin-top: .8rem;
    padding: .55rem .7rem;
    background: rgba(0, 201, 167, .03);
    border: 1px solid rgba(0, 201, 167, .09);
    border-radius: 8px
}

.ts-lbl {
    font-family: var(--mono);
    font-size: .56rem;
    color: rgba(0, 201, 167, .48);
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: .45rem;
    display: flex;
    align-items: center;
    gap: .3rem
}

.ts-lbl::before {
    content: '>';
    color: var(--teal)
}

.qtags {
    display: flex;
    flex-wrap: wrap;
    gap: .26rem
}

.qtag {
    font-family: var(--mono);
    font-size: .56rem;
    color: rgba(0, 201, 167, .72);
    background: rgba(0, 201, 167, .05);
    border: 1px solid rgba(0, 201, 167, .13);
    padding: .14rem .4rem;
    border-radius: 4px
}

.float-pill {
    position: absolute;
    bottom: -1.6rem;
    left: 1rem;
    background: rgba(6, 20, 38, .95);
    border: 1px solid rgba(0, 201, 167, .18);
    border-radius: 12px;
    padding: .6rem .875rem;
    display: flex;
    align-items: center;
    gap: .5rem;
    min-width: 220px;
    animation: floatY 4s ease-in-out infinite;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .32);
    backdrop-filter: blur(12px)
}

.fp-ico {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    background: rgba(0, 201, 167, .1);
    border: 1px solid rgba(0, 201, 167, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.fp-ico svg {
    width: 12px;
    height: 12px;
    stroke: var(--teal);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.fp-t {
    font-size: .7rem;
    font-weight: 700;
    color: #fff
}

.fp-s {
    font-size: .58rem;
    color: rgba(255, 255, 255, .33);
    margin-top: 1px;
    font-family: var(--mono)
}

/* ═══════════════════════════════════════════════
   SEC 2 — SERVICES  white
═══════════════════════════════════════════════ */
.svc-sec {
    background: var(--white);
    position: relative
}

.svc-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 82, 224, .032) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none
}

.svc-head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: end;
    margin-bottom: .75rem;
    position: relative;
    z-index: 1
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1
}

.svc-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s, transform .2s
}

.svc-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    opacity: 0;
    transition: opacity .2s
}

.svc-card:hover {
    border-color: rgba(0, 82, 224, .2);
    box-shadow: 0 10px 28px rgba(0, 82, 224, .08);
    transform: translateY(-3px)
}

.svc-card:hover::after {
    opacity: 1
}

.svc-card-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-family: var(--mono);
    font-size: .56rem;
    color: rgba(0, 201, 167, .55);
    background: rgba(0, 201, 167, .05);
    border: 1px solid rgba(0, 201, 167, .13);
    padding: .13rem .4rem;
    border-radius: 4px;
    letter-spacing: .04em
}

.sc-card-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.1rem
}

.sc-ico {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--blue-l);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .18s, box-shadow .18s
}

.sc-ico svg {
    width: 21px;
    height: 21px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .18s
}

.svc-card:hover .sc-ico {
    background: var(--blue);
    box-shadow: 0 4px 14px rgba(0, 82, 224, .28)
}

.svc-card:hover .sc-ico svg {
    stroke: #fff
}

.sc-num {
    font-size: 2.1rem;
    font-weight: 800;
    color: var(--border);
    letter-spacing: -.04em;
    line-height: 1;
    font-family: var(--mono);
    transition: color .18s
}

.svc-card:hover .sc-num {
    color: #dce8ff
}

.sc-title {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .38rem
}

.sc-desc {
    font-size: .83rem;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: .95rem
}

.sc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem
}

.sc-tag {
    font-size: .64rem;
    font-weight: 600;
    color: var(--blue);
    background: var(--blue-l);
    padding: .17rem .55rem;
    border-radius: 100px
}

/* ═══════════════════════════════════════════════
   SEC 3 — SHIFT (Old vs AI SEO)  off-blue
═══════════════════════════════════════════════ */
.shift-sec {
    background: var(--offblue);
    border-top: 1px solid var(--border-off);
    border-bottom: 1px solid var(--border-off)
}

.shift-top {
    text-align: center;
    margin-bottom: 3rem
}

.shift-top h2 {
    margin: .6rem 0 .65rem
}

.shift-top p {
    color: var(--text2);
    font-size: .88rem;
    max-width: 500px;
    margin-inline: auto;
    line-height: 1.7
}

.shift-cols {
    display: grid;
    grid-template-columns: 1fr 72px 1fr;
    gap: 0;
    align-items: stretch
}

.shift-col {
    border-radius: 14px;
    overflow: hidden
}

.sch {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .9rem 1.4rem
}

.sch.old {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px 12px 0 0
}

.sch.nw {
    background: var(--blue-l);
    border: 1.5px solid rgba(0, 82, 224, .2);
    border-radius: 12px 12px 0 0;
    position: relative
}

.sch.nw::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--teal))
}

.sch-ico {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.sch-ico.dim {
    background: rgba(148, 163, 184, .1);
    border: 1px solid rgba(148, 163, 184, .2)
}

.sch-ico.lit {
    background: rgba(0, 82, 224, .12);
    border: 1px solid rgba(0, 82, 224, .22)
}

.sch-ico svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.sch-ico.dim svg {
    stroke: var(--text3)
}

.sch-ico.lit svg {
    stroke: var(--blue)
}

.sch-title {
    font-size: .8rem;
    font-weight: 700;
    color: var(--text)
}

.sch-sub {
    font-size: .6rem;
    color: var(--text3);
    margin-top: 1px;
    font-family: var(--mono)
}

.sch-sub.lit {
    color: rgba(0, 82, 224, .55)
}

.scb {
    display: flex;
    flex-direction: column;
    gap: .45rem;
    padding: 1.1rem 1.25rem
}

.scb.old {
    background: #fff;
    border: 1.5px solid var(--border);
    border-top: none;
    border-radius: 0 0 12px 12px
}

.scb.nw {
    background: rgba(255, 255, 255, .7);
    border: 1.5px solid rgba(0, 82, 224, .18);
    border-top: none;
    border-radius: 0 0 12px 12px
}

.si {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .5rem .65rem;
    border-radius: 7px;
    font-size: .79rem
}

.si.dim {
    background: rgba(148, 163, 184, .06);
    color: var(--text3)
}

.si.lit {
    background: rgba(0, 82, 224, .06);
    color: var(--text);
    border: 1px solid rgba(0, 82, 224, .09)
}

.si-x {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(239, 68, 68, .08);
    border: 1px solid rgba(239, 68, 68, .18);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 8px;
    color: rgba(239, 68, 68, .6)
}

.si-ok {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(0, 82, 224, .1);
    border: 1px solid rgba(0, 82, 224, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.si-ok svg {
    width: 7px;
    height: 7px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round
}

.shift-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: 0 .3rem
}

.sv-line {
    flex: 1;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--border-off), transparent)
}

.sv-badge {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--white);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .63rem;
    font-weight: 800;
    color: var(--blue);
    font-family: var(--mono)
}

/* ═══════════════════════════════════════════════
   SEC 4 — DEMO SIMULATOR  white
═══════════════════════════════════════════════ */
.demo-sec {
    background: var(--white);
    border-top: 1px solid var(--border)
}

.demo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start
}

.demo-left h2 {
    margin: .6rem 0 .7rem
}

.demo-left>p {
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.75;
    margin-bottom: 1.75rem
}

.prompt-box {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s
}

.prompt-box:focus-within {
    border-color: rgba(0, 82, 224, .32);
    box-shadow: 0 0 0 4px rgba(0, 82, 224, .06)
}

.pb-top {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .65rem 1rem;
    background: #f8faff;
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap
}

.pb-plat {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .28rem .65rem;
    border-radius: 100px;
    font-size: .66rem;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--border);
    color: var(--text3);
    transition: all .15s;
    user-select: none;
    background: var(--white)
}

.pb-plat.active {
    color: #fff;
    border-color: transparent
}

.pb-plat[data-p="chatgpt"].active {
    background: #10a37f
}

.pb-plat[data-p="gemini"].active {
    background: #4285f4
}

.pb-plat[data-p="perplexity"].active {
    background: #2980d9
}

.pb-input-row {
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .7rem 1rem
}

.pb-qico {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: var(--blue-l);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.pb-qico svg {
    width: 12px;
    height: 12px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.pb-input {
    flex: 1;
    border: none;
    outline: none;
    font-family: var(--font);
    font-size: .85rem;
    color: var(--text);
    background: transparent
}

.pb-input::placeholder {
    color: var(--text3)
}

.pb-send {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    background: var(--blue);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, transform .12s
}

.pb-send:hover {
    background: var(--blue-d);
    transform: scale(1.06)
}

.pb-send svg {
    width: 11px;
    height: 11px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.pb-resp {
    padding: .9rem 1.1rem;
    border-top: 1px solid var(--border);
    background: #fafbff;
    min-height: 118px;
    position: relative
}

.pb-idle {
    display: flex;
    align-items: center;
    gap: .6rem;
    color: var(--text3);
    font-size: .8rem
}

.pb-idle svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0
}

.pb-typing {
    display: none;
    align-items: center;
    gap: .3rem;
    font-size: .72rem;
    color: var(--text3);
    font-family: var(--mono)
}

.typing-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--text3);
    animation: blink .8s ease infinite
}

.typing-dot:nth-child(2) {
    animation-delay: .15s
}

.typing-dot:nth-child(3) {
    animation-delay: .3s
}

.pb-active {
    display: none;
    animation: fadeUp .3s ease
}

.pb-ptag {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .6rem;
    font-weight: 600;
    padding: .16rem .5rem;
    border-radius: 100px;
    margin-bottom: .6rem;
    font-family: var(--mono)
}

.pb-ptext {
    font-size: .8rem;
    color: var(--text2);
    line-height: 1.7
}

.pb-ptext strong {
    color: var(--text);
    font-weight: 700
}

.pb-pcite {
    display: flex;
    align-items: center;
    gap: .3rem;
    margin-top: .65rem;
    font-size: .7rem;
    color: var(--text3);
    font-family: var(--mono)
}

.pb-pcite-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 5px var(--teal);
    flex-shrink: 0;
    animation: blink 1.5s infinite
}

.demo-right {
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.demo-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .7rem
}

.dstat {
    background: var(--offblue);
    border: 1.5px solid var(--border-off);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    transition: border-color .2s
}

.dstat:hover {
    border-color: rgba(0, 82, 224, .2)
}

.dsv {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--blue);
    font-family: var(--mono);
    letter-spacing: -.03em;
    line-height: 1
}

.dsl {
    font-size: .63rem;
    color: var(--text3);
    margin-top: 4px;
    line-height: 1.35
}

.cite-monitor {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem 1.4rem
}

.cm-head {
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--text3);
    margin-bottom: .85rem;
    display: flex;
    align-items: center;
    gap: .4rem
}

.cm-head::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    box-shadow: 0 0 5px var(--teal);
    display: block
}

.cm-list {
    display: flex;
    flex-direction: column;
    gap: .45rem
}

.cm-item {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .78rem;
    color: var(--text2)
}

.cm-pico {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0
}

.cm-q {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-family: var(--mono);
    font-size: .68rem
}

.cm-badge {
    font-size: .58rem;
    font-weight: 700;
    padding: .16rem .45rem;
    border-radius: 100px;
    flex-shrink: 0;
    font-family: var(--mono)
}

.cited {
    background: rgba(0, 201, 167, .08);
    color: var(--teal);
    border: 1px solid rgba(0, 201, 167, .22)
}

.miss {
    background: rgba(239, 68, 68, .07);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, .16)
}

/* ═══════════════════════════════════════════════
   SEC 5 — WHY IT MATTERS  off-blue
═══════════════════════════════════════════════ */
.why-sec {
    background: var(--offblue);
    border-top: 1px solid var(--border-off);
    border-bottom: 1px solid var(--border-off)
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.why-copy {
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.78;
    margin-bottom: 1.4rem
}

.why-copy strong {
    color: var(--text);
    font-weight: 700
}

.why-checks {
    display: flex;
    flex-direction: column;
    gap: .48rem;
    margin-bottom: 1.9rem
}

.wck {
    display: flex;
    align-items: flex-start;
    gap: .58rem;
    font-size: .83rem;
    color: var(--text2);
    line-height: 1.5
}

.wck-tick {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    background: var(--blue-l);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px
}

.wck-tick svg {
    width: 9px;
    height: 9px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round
}

.why-stats {
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.wstat {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.2rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: border-color .2s, box-shadow .2s, transform .18s;
    position: relative;
    overflow: hidden
}

.wstat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--blue), var(--teal));
    opacity: 0;
    transition: opacity .2s
}

.wstat:hover {
    border-color: rgba(0, 82, 224, .2);
    box-shadow: 0 8px 22px rgba(0, 82, 224, .07);
    transform: translateX(4px)
}

.wstat:hover::before {
    opacity: 1
}

.wstat-ico {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 82, 224, .25)
}

.wstat-ico svg {
    width: 19px;
    height: 19px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round
}

.wstat-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -.04em;
    line-height: 1;
    flex-shrink: 0;
    min-width: 58px;
    font-family: var(--mono)
}

.wstat-title {
    font-size: .83rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2px
}

.wstat-sub {
    font-size: .71rem;
    color: var(--text3);
    line-height: 1.4
}

/* ═══════════════════════════════════════════════
   SEC 6 — SOCIAL PROOF  white
═══════════════════════════════════════════════ */
.proof-sec {
    background: var(--white);
    border-top: 1px solid var(--border)
}

.proof-logos-label {
    text-align: center;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 700;
    color: var(--text3);
    margin-bottom: 1.6rem
}

.logos-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--border)
}

.logo-pill {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .52rem 1rem;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-size: .8rem;
    font-weight: 700;
    color: var(--text2);
    transition: border-color .18s, box-shadow .18s
}

.logo-pill:hover {
    border-color: rgba(0, 82, 224, .2);
    box-shadow: 0 4px 12px rgba(0, 82, 224, .06)
}

.logo-pill-ico {
    font-size: 15px
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

.testi-card {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    padding: 1.7rem;
    position: relative;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s, transform .18s
}

.testi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--teal));
    opacity: 0;
    transition: opacity .2s
}

.testi-card:hover {
    border-color: rgba(0, 82, 224, .2);
    box-shadow: 0 8px 24px rgba(0, 82, 224, .07);
    transform: translateY(-3px)
}

.testi-card:hover::before {
    opacity: 1
}

.testi-q {
    font-size: 2rem;
    color: #dce8ff;
    line-height: 1;
    margin-bottom: .8rem;
    font-family: Georgia, serif;
    font-weight: 900
}

.testi-text {
    font-size: .83rem;
    color: var(--text2);
    line-height: 1.75;
    margin-bottom: 1.2rem;
    font-style: italic
}

.testi-text strong {
    color: var(--text);
    font-style: normal;
    font-weight: 700
}

.testi-author {
    display: flex;
    align-items: center;
    gap: .7rem
}

.tav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.t-name {
    font-size: .8rem;
    font-weight: 700;
    color: var(--text)
}

.t-role {
    font-size: .7rem;
    color: var(--text3);
    margin-top: 1px
}

.t-result {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    font-size: .6rem;
    font-weight: 700;
    font-family: var(--mono);
    margin-top: .6rem;
    padding: .18rem .52rem;
    border-radius: 100px
}

.tr-teal {
    background: rgba(0, 201, 167, .07);
    color: var(--teal);
    border: 1px solid rgba(0, 201, 167, .18)
}

.tr-blue {
    background: rgba(0, 82, 224, .07);
    color: var(--blue);
    border: 1px solid rgba(0, 82, 224, .18)
}

/* ═══════════════════════════════════════════════
   SEC 7 — PLATFORMS  off-blue
═══════════════════════════════════════════════ */
.plat-sec {
    background: var(--offblue);
    border-top: 1px solid var(--border-off);
    border-bottom: 1px solid var(--border-off)
}

.plat-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 2.75rem
}

.plat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem
}

.plat-card {
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    background: var(--white);
    transition: border-color .2s, box-shadow .2s, transform .2s
}

.plat-card:hover {
    border-color: rgba(0, 82, 224, .2);
    box-shadow: 0 10px 28px rgba(0, 82, 224, .08);
    transform: translateY(-4px)
}

.pc-hdr {
    height: 100px;
    display: flex;
    align-items: center;
    padding: 0 1.6rem;
    gap: .9rem;
    position: relative;
    overflow: hidden
}

.pc-hdr::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 14px 14px;
    animation: move-dot 9s linear infinite
}

.ph-cg {
    background: linear-gradient(135deg, #0d6e57, #10a37f, #1dc9a0)
}

.ph-gm {
    background: linear-gradient(135deg, #1a4b8c, #4285f4, #5b9cf6)
}

.ph-px {
    background: linear-gradient(135deg, #0f2a4a, #1c5fa0, #2980d9)
}

.ph-sg {
    background: linear-gradient(135deg, #06060e, #0052e0, #4f46e5)
}

.pc-logo {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    background: rgba(255, 255, 255, .17);
    border: 1px solid rgba(255, 255, 255, .24);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1
}

.pc-logo svg {
    width: 21px;
    height: 21px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round
}

.pc-info {
    position: relative;
    z-index: 1
}

.pc-name {
    font-size: .95rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.1
}

.pc-sub {
    font-size: .58rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .62);
    margin-top: 2px;
    font-family: var(--mono)
}

.pc-body {
    padding: 1.3rem 1.4rem
}

.pc-desc {
    font-size: .8rem;
    color: var(--text2);
    line-height: 1.65;
    margin-bottom: .9rem
}

.pc-feats {
    display: flex;
    flex-direction: column;
    gap: .3rem
}

.pc-feat {
    display: flex;
    align-items: flex-start;
    gap: .48rem;
    font-size: .76rem;
    color: var(--text2)
}

.pf-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    margin-top: 5px
}

/* ═══════════════════════════════════════════════
   SEC 8 — INDUSTRIES  white
═══════════════════════════════════════════════ */
.ind-sec {
    background: var(--white);
    border-top: 1px solid var(--border)
}

.ind-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 2.75rem
}

.ind-top p {
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.7;
    margin-top: .65rem
}

.ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem
}

.ind-card {
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.4rem;
    position: relative;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s, transform .18s;
    background: var(--white)
}

.ind-card:hover {
    border-color: rgba(0, 82, 224, .2);
    box-shadow: 0 8px 20px rgba(0, 82, 224, .07);
    transform: translateY(-3px)
}

.ind-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity .2s
}

.ind-card:hover::after {
    opacity: 1
}

.ic-saas::after {
    background: linear-gradient(90deg, var(--blue), #818cf8)
}

.ic-fin::after {
    background: linear-gradient(90deg, #10a37f, #34d399)
}

.ic-ps::after {
    background: linear-gradient(90deg, #f59e0b, #fbbf24)
}

.ic-hc::after {
    background: linear-gradient(90deg, #ef4444, #f87171)
}

.ic-lg::after {
    background: linear-gradient(90deg, #8b5cf6, #a78bfa)
}

.ic-re::after {
    background: linear-gradient(90deg, #0ea5e9, #38bdf8)
}

.ind-em {
    font-size: 1.7rem;
    margin-bottom: .8rem;
    display: block
}

.ind-card h3 {
    font-size: .92rem;
    font-weight: 700;
    margin-bottom: .32rem
}

.ind-card p {
    font-size: .77rem;
    color: var(--text2);
    line-height: 1.58;
    margin-bottom: .8rem
}

.ind-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .32rem
}

.it {
    font-size: .6rem;
    font-weight: 600;
    padding: .16rem .48rem;
    border-radius: 100px;
    font-family: var(--mono)
}

.it-b {
    color: var(--blue);
    background: var(--blue-l)
}

.it-g {
    color: #059669;
    background: #ecfdf5
}

.it-y {
    color: #b45309;
    background: #fef3c7
}

.it-r {
    color: #dc2626;
    background: #fef2f2
}

.it-p {
    color: #7c3aed;
    background: #f5f3ff
}

.it-s {
    color: #0284c7;
    background: #f0f9ff
}

/* ═══════════════════════════════════════════════
   SEC 9 — PROCESS  dark
═══════════════════════════════════════════════ */
.proc-sec {
    background: var(--dark2);
    position: relative;
    overflow: hidden
}

.proc-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 82, 224, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 82, 224, .03) 1px, transparent 1px);
    background-size: 42px 42px;
    pointer-events: none
}

.proc-sec::after {
    content: '';
    position: absolute;
    top: -110px;
    right: -90px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 82, 224, .12) 0%, transparent 65%);
    pointer-events: none
}

.proc-tg {
    position: absolute;
    bottom: -80px;
    left: -50px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 201, 167, .07) 0%, transparent 65%);
    pointer-events: none
}

.proc-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    flex-wrap: wrap
}

.proc-head h2 {
    margin-top: .6rem
}

.steps-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 22px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 82, 224, .35) 20%, var(--teal) 50%, rgba(0, 82, 224, .35) 80%, transparent);
    z-index: 0;
    animation: shimmer 5s ease infinite;
    background-size: 200% 100%
}

.step-box {
    position: relative;
    z-index: 1;
    text-align: center
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    border: 1.5px solid rgba(255, 255, 255, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .85rem;
    font-size: .82rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .28);
    font-family: var(--mono);
    transition: all .22s;
    position: relative
}

.step-box.on .step-circle {
    background: rgba(0, 82, 224, .18);
    border-color: var(--blue);
    color: #60a5fa;
    box-shadow: 0 0 0 5px rgba(0, 82, 224, .1), 0 0 18px rgba(0, 82, 224, .22)
}

.step-box.on .step-circle::after {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: 50%;
    border: 1px solid rgba(0, 82, 224, .3);
    animation: pulse-ring 2s ease-out infinite
}

.step-box:hover .step-circle {
    border-color: rgba(0, 201, 167, .38);
    color: var(--teal)
}

.step-title {
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .28rem;
    line-height: 1.3
}

.step-sub {
    font-size: .7rem;
    color: rgba(255, 255, 255, .32);
    line-height: 1.55
}

/* ═══════════════════════════════════════════════
   SEC 10 — COMPARISON  off-blue
═══════════════════════════════════════════════ */
.compare-sec {
    background: var(--offblue);
    border-top: 1px solid var(--border-off);
    border-bottom: 1px solid var(--border-off)
}

.compare-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: end;
    margin-bottom: 2.75rem
}

.compare-top p {
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.7;
    margin-top: .65rem
}

.compare-wrap {
    overflow-x: auto
}

.ctable {
    width: 100%;
    border-collapse: collapse;
    min-width: 580px;
    background: transparent
}

.ctable th {
    padding: .8rem 1.1rem;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em
}

.cth-feat {
    text-align: left;
    color: var(--text3);
    font-family: var(--mono);
    width: 42%
}

.cth-gen {
    text-align: center;
    color: var(--text3);
    background: var(--white);
    border-radius: 10px 10px 0 0;
    width: 29%;
    border: 1.5px solid var(--border);
    border-bottom: none
}

.cth-rb {
    text-align: center;
    background: var(--blue-l);
    border-radius: 10px 10px 0 0;
    width: 29%;
    border: 1.5px solid rgba(0, 82, 224, .22);
    border-bottom: none;
    position: relative;
    color: var(--blue)
}

.cth-rb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--teal))
}

.cth-badge {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    font-size: .58rem;
    font-family: var(--mono);
    color: rgba(0, 82, 224, .6);
    background: rgba(0, 82, 224, .08);
    border: 1px solid rgba(0, 82, 224, .18);
    padding: .11rem .38rem;
    border-radius: 100px;
    margin-top: .22rem
}

.ctable td {
    padding: .75rem 1.1rem;
    font-size: .8rem;
    border-bottom: 1px solid var(--border-off)
}

.ctd-feat {
    color: var(--text2);
    font-family: var(--mono);
    font-size: .74rem
}

.ctd-gen {
    text-align: center;
    background: rgba(255, 255, 255, .7);
    border-left: 1.5px solid var(--border);
    border-right: 1.5px solid var(--border)
}

.ctd-rb {
    text-align: center;
    background: rgba(232, 240, 255, .5);
    border-left: 1.5px solid rgba(0, 82, 224, .15);
    border-right: 1.5px solid rgba(0, 82, 224, .15)
}

.ctable tr:last-child td {
    border-bottom: none
}

.ctable tr:last-child .ctd-gen {
    border-radius: 0 0 10px 10px;
    border-bottom: 1.5px solid var(--border)
}

.ctable tr:last-child .ctd-rb {
    border-radius: 0 0 10px 10px;
    border-bottom: 1.5px solid rgba(0, 82, 224, .22)
}

.ct-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(239, 68, 68, .07);
    border: 1px solid rgba(239, 68, 68, .18)
}

.ct-no svg {
    width: 8px;
    height: 8px;
    stroke: #ef4444;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ct-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(0, 82, 224, .1);
    border: 1px solid rgba(0, 82, 224, .22)
}

.ct-yes svg {
    width: 8px;
    height: 8px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ct-part {
    font-size: .62rem;
    font-family: var(--mono);
    color: var(--text3)
}

/* ═══════════════════════════════════════════════
   SEC 11 — FAQ  white
═══════════════════════════════════════════════ */
.faq-sec {
    background: var(--white);
    border-top: 1px solid var(--border)
}

.faq-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start
}

.faq-left h2 {
    margin: .6rem 0 .8rem
}

.faq-left>p {
    font-size: .88rem;
    color: var(--text2);
    line-height: 1.75;
    margin-bottom: 1.75rem
}

.faq-cta {
    background: var(--offblue);
    border: 1.5px solid var(--border-off);
    border-radius: 14px;
    padding: 1.3rem 1.4rem
}

.faq-cta h4 {
    font-size: .92rem;
    font-weight: 700;
    margin-bottom: .32rem
}

.faq-cta p {
    font-size: .78rem;
    color: var(--text2);
    line-height: 1.62;
    margin-bottom: .95rem
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: .48rem
}

.faq-item {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .2s
}

.faq-item.open {
    border-color: rgba(0, 82, 224, .2)
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.05rem 1.2rem;
    cursor: pointer;
    user-select: none;
    transition: background .15s
}

.faq-q:hover {
    background: #fafbff
}

.faq-qt {
    font-size: .86rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.45
}

.faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue-l);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s
}

.faq-icon svg {
    width: 9px;
    height: 9px;
    stroke: var(--blue);
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform .25s
}

.faq-item.open .faq-icon {
    background: var(--blue)
}

.faq-item.open .faq-icon svg {
    stroke: #fff;
    transform: rotate(45deg)
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.faq-item.open .faq-a {
    max-height: 300px
}

.faq-ai {
    padding: .1rem 1.2rem 1.05rem;
    font-size: .82rem;
    color: var(--text2);
    line-height: 1.76
}

.faq-ai strong {
    color: var(--text);
    font-weight: 700
}

/* ═══════════════════════════════════════════════
   SEC 12 — RESULTS + AUDIT  off-blue
═══════════════════════════════════════════════ */
.results-sec {
    background: var(--offblue);
    border-top: 1px solid var(--border-off)
}

.results-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.5rem;
    align-items: start
}

.result-cards {
    display: flex;
    flex-direction: column;
    gap: .875rem
}

.rcard {
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.3rem 1.4rem;
    display: grid;
    grid-template-columns: 88px 2px 1fr;
    align-items: center;
    gap: 1rem;
    transition: box-shadow .2s, transform .18s, border-color .18s;
    position: relative;
    overflow: hidden
}

.rcard::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--blue), var(--teal));
    opacity: 0;
    transition: opacity .2s
}

.rcard:hover {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .06);
    transform: translateY(-2px);
    border-color: rgba(0, 82, 224, .18)
}

.rcard:hover::before {
    opacity: 1
}

.rcard-num {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--blue);
    letter-spacing: -.04em;
    line-height: 1;
    text-align: right;
    font-family: var(--mono)
}

.rcard-div {
    width: 2px;
    height: 34px;
    background: var(--blue-l);
    border-radius: 2px;
    justify-self: center
}

.rcard-info {}

.rcard-title {
    font-size: .83rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .16rem;
    line-height: 1.4
}

.rcard-sub {
    font-size: .72rem;
    color: var(--text3);
    margin-bottom: .32rem
}

.rcard-tag {
    display: inline-flex;
    align-items: center;
    gap: .26rem;
    font-size: .6rem;
    font-weight: 600;
    color: #1d4ed8;
    background: #eff6ff;
    padding: .14rem .5rem;
    border-radius: 100px;
    font-family: var(--mono)
}

.rcard-tag svg {
    width: 7px;
    height: 7px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.audit-card {
    background: var(--dark2);
    border-radius: 18px;
    padding: 1.75rem;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(0, 201, 167, .1)
}

.audit-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 82, 224, .12) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none
}

.audit-card::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 201, 167, .09), transparent 65%);
    pointer-events: none
}

.audit-tl {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--teal), var(--blue))
}

.ac-in {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: .68rem
}

.ac-ey {
    font-size: .58rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: rgba(0, 201, 167, .58);
    display: flex;
    align-items: center;
    gap: .3rem;
    font-family: var(--mono)
}

.ac-ey svg {
    width: 8px;
    height: 8px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.ac-ttl {
    font-size: 1.12rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.22;
    letter-spacing: -.02em
}

.ac-ttl span {
    background: linear-gradient(135deg, #60a5fa, var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ac-sub {
    font-size: .77rem;
    color: rgba(255, 255, 255, .35);
    line-height: 1.6
}

.ac-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: var(--blue);
    color: #fff;
    font-family: var(--font);
    font-size: .84rem;
    font-weight: 600;
    padding: .76rem 1rem;
    border-radius: 9px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(0, 82, 224, .35);
    transition: background .15s, transform .12s;
    border: none;
    cursor: pointer
}

.ac-btn:hover {
    background: var(--blue-d);
    transform: translateY(-2px)
}

.ac-btn svg {
    width: 11px;
    height: 11px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ac-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    background: rgba(255, 255, 255, .05);
    color: rgba(255, 255, 255, .55);
    font-family: var(--font);
    font-size: .78rem;
    font-weight: 500;
    padding: .68rem 1rem;
    border-radius: 9px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: background .15s
}

.ac-ph:hover {
    background: rgba(255, 255, 255, .09)
}

.ac-ph svg {
    width: 10px;
    height: 10px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ac-trust {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    padding-top: .8rem;
    border-top: 1px solid rgba(255, 255, 255, .06)
}

.ac-ti {
    display: flex;
    align-items: center;
    gap: .32rem;
    font-size: .66rem;
    color: rgba(255, 255, 255, .25)
}

.ac-ti svg {
    width: 9px;
    height: 9px;
    stroke: rgba(0, 201, 167, .58);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0
}

/* ═══ RESPONSIVE ═══ */
@media(max-width:1200px) {
    .results-layout {
        grid-template-columns: 1fr 290px
    }
}

@media(max-width:1024px) {
    .hero {
        min-height: auto
    }

    .hero-body {
        grid-template-columns: 1fr;
        padding-bottom: 0
    }

    .hero-right {
        display: none
    }

    .hero-left {
        padding-bottom: 1.5rem
    }

    .svc-head,
    .compare-top,
    .ind-top,
    .plat-head {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .svc-head>div:last-child,
    .ind-top>div:last-child,
    .plat-head>div:last-child,
    .compare-top>div:last-child {
        display: block
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .faq-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .proc-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem
    }

    .steps-row {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem
    }

    .steps-row::before {
        display: none
    }

    .step-box {
        text-align: left
    }

    .step-circle {
        margin: 0 0 .7rem
    }

    .results-layout {
        grid-template-columns: 1fr 280px;
        gap: 1.25rem
    }

    .demo-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .shift-cols {
        grid-template-columns: 1fr;
        gap: .75rem
    }

    .shift-vs {
        flex-direction: row;
        padding: .3rem 0
    }

    .sv-line {
        flex: 1;
        height: 1px;
        width: auto
    }

    .testi-grid {
        grid-template-columns: 1fr 1fr
    }

    .ind-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:768px) {
    .sec {
        padding: 1.5rem 17px;
    }

    h1 {
        font-size: 2.1rem
    }

    h2 {
        font-size: 1.6rem
    }

    .hero-body {
        padding-top: 3rem
    }

    .hero-btns {
        flex-direction: column;
        gap: .6rem
    }

    .btn-blue,
    .btn-ghost-d {
        width: 100%;
        justify-content: center
    }

    .svc-grid,
    .plat-grid {
        grid-template-columns: 1fr
    }

    .why-stats {
        gap: .65rem
    }

    .testi-grid {
        grid-template-columns: 1fr
    }

    .steps-row {
        grid-template-columns: 1fr
    }

    .step-box {
        padding: .85rem;
        background: rgba(255, 255, 255, .04);
        border: 1px solid rgba(255, 255, 255, .08);
        border-radius: 12px
    }

    .step-circle {
        width: 36px;
        height: 36px;
        font-size: .76rem
    }

    .results-layout {
        grid-template-columns: 1fr
    }

    .rcard {
        grid-template-columns: 72px 2px 1fr;
        gap: .85rem;
        padding: 1.05rem 1.2rem
    }

    .rcard-num {
        font-size: 1.65rem
    }

    .demo-stats {
        grid-template-columns: repeat(3, 1fr)
    }

    .ind-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:480px) {
    h1 {
        font-size: 2.85rem
    }

    h2 {
        font-size: 2.2rem
    }

    .svc-card {
        padding: 1.3rem
    }

    .wstat {
        padding: .95rem 1.15rem
    }

    .wstat-val {
        font-size: 1.35rem;
        min-width: 50px
    }

    .rcard {
        grid-template-columns: 65px 2px 1fr;
        gap: .7rem;
        padding: .95rem
    }

    .rcard-num {
        font-size: 1.45rem
    }

    .audit-card {
        padding: 1.3rem
    }

    .btn-ghost-l {
        width: 100%;
        justify-content: center;
        display: none;
    }

    .svc-head>div:last-child,
    .plat-head>div:last-child {
        display: none
    }
}

@media(max-width:380px) {
    h1 {
        font-size: 1.65rem
    }

    h2 {
        font-size: 1.28rem
    }

    .svc-grid,
    .plat-grid,
    .ind-grid {
        grid-template-columns: 1fr
    }

    .rcard {
        grid-template-columns: 58px 2px 1fr;
        gap: .62rem;
        padding: .875rem
    }

    .proc-head a.btn-blue {
        width: 100%;
        justify-content: center
    }
}