*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --blue: #0052e0;
    --blue-d: #003bb5;
    --blue-l: #e8f0ff;
    --teal: #00bfa8;
    --purple: #7c3aed;
    --amber: #f59e0b;
    --green: #16a34a;
    --red: #dc2626;
    --orange: #ea580c;
    --pink: #db2777;
    --indigo: #4338ca;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;
    --off: #f8fafc;
    --font: 'Plus Jakarta Sans', sans-serif;
    --mono: 'JetBrains Mono', monospace;
    /* SGE accent */
    --sge: #7c3aed;
    --sge-l: rgba(124, 58, 237, .12);
    --sge-d: #5b21b6;
    --gold: #f59e0b;
    --gold-l: rgba(245, 158, 11, .12);
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--font);
    color: var(--text);
    overflow-x: hidden;
    background: #fff
}

a {
    text-decoration: none
}

.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 48px)
}

/* ANIMATIONS */
@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

@keyframes ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

@keyframes fadein {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@keyframes cursor {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

@keyframes tagPop {
    0% {
        opacity: 0;
        transform: scale(.7) translateY(4px)
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0)
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0
    }

    100% {
        background-position: 200% 0
    }
}

@keyframes orbit {
    from {
        transform: rotate(0deg) translateX(52px) rotate(0deg)
    }

    to {
        transform: rotate(360deg) translateX(52px) rotate(-360deg)
    }
}

@keyframes orbit2 {
    from {
        transform: rotate(120deg) translateX(52px) rotate(-120deg)
    }

    to {
        transform: rotate(480deg) translateX(52px) rotate(-480deg)
    }
}

@keyframes orbit3 {
    from {
        transform: rotate(240deg) translateX(52px) rotate(-240deg)
    }

    to {
        transform: rotate(600deg) translateX(52px) rotate(-600deg)
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: .5;
        transform: scale(1)
    }

    50% {
        opacity: .9;
        transform: scale(1.04)
    }
}

@keyframes nodeIn {
    0% {
        opacity: 0;
        transform: scale(.5)
    }

    100% {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes lineGrow {
    from {
        stroke-dashoffset: 200
    }

    to {
        stroke-dashoffset: 0
    }
}

/* SCROLL REVEAL */
.sr {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .65s ease, transform .65s ease
}

.sr.in {
    opacity: 1;
    transform: none
}

.sr-l {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity .65s ease, transform .65s ease
}

.sr-l.in {
    opacity: 1;
    transform: none
}

.sr-r {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity .65s ease, transform .65s ease
}

.sr-r.in {
    opacity: 1;
    transform: none
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: var(--font);
    font-weight: 700;
    border-radius: 12px;
    cursor: pointer;
    border: none;
    transition: transform .14s, box-shadow .18s;
    white-space: nowrap;
    font-size: .92rem;
    text-decoration: none
}

.btn-p {
    background: linear-gradient(135deg, #7c3aed, #4338ca);
    color: #fff;
    padding: .85rem 1.75rem;
    box-shadow: 0 4px 20px rgba(124, 58, 237, .4)
}

.btn-p:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(124, 58, 237, .55)
}

.btn-g {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    color: rgba(255, 255, 255, .88);
    padding: .82rem 1.6rem
}

.btn-g:hover {
    background: rgba(255, 255, 255, .14);
    transform: translateY(-1px)
}

.btn-o {
    background: transparent;
    border: 1.5px solid var(--sge);
    color: var(--sge);
    padding: .78rem 1.5rem
}

.btn-o:hover {
    background: var(--sge-l);
    transform: translateY(-1px)
}

/* TAGS */
.tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
    border-radius: 100px;
    padding: .28rem .9rem
}

.tag-b {
    background: var(--blue-l);
    color: var(--blue)
}

.tag-d {
    background: rgba(255, 255, 255, .1);
    color: rgba(255, 255, 255, .7)
}

.tag-pu {
    background: rgba(124, 58, 237, .12);
    color: var(--purple)
}

.tag-g {
    background: rgba(22, 163, 74, .1);
    color: #15803d
}

.tag-go {
    background: rgba(245, 158, 11, .12);
    color: #92400e
}

.tag-t {
    background: rgba(0, 191, 168, .12);
    color: #007a6e
}

/* ===================== HERO ===================== */
.hero {
    background: #07091a;
    padding: 3.5rem 0 0;
    position: relative;
    overflow: hidden
}

.hgrid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(124, 58, 237, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(124, 58, 237, .07) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 90% 75% at 50% 0%, #000 30%, transparent 100%)
}

.horb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none
}

.ho1 {
    top: -20%;
    right: -6%;
    width: min(720px, 74vw);
    height: min(720px, 74vw);
    background: radial-gradient(circle, rgba(124, 58, 237, .2), transparent 65%)
}

.ho2 {
    bottom: -22%;
    left: -7%;
    width: min(540px, 62vw);
    height: min(540px, 62vw);
    background: radial-gradient(circle, rgba(245, 158, 11, .08), transparent 65%)
}

.ho3 {
    top: 30%;
    left: 8%;
    width: min(280px, 34vw);
    height: min(280px, 34vw);
    background: radial-gradient(circle, rgba(0, 82, 224, .07), transparent 65%)
}

.hero-in {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 3.5rem;
    align-items: center;
    padding-bottom: 5rem
}

.hbadges {
    display: flex;
    gap: .5rem;
    flex-wrap: wrap;
    margin-bottom: 1.75rem
}

.hbg {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    border-radius: 100px;
    padding: .26rem .85rem;
    font-size: .7rem;
    font-weight: 700
}

.hbg-pu {
    background: rgba(124, 58, 237, .2);
    border: 1px solid rgba(124, 58, 237, .4);
    color: rgba(196, 181, 253, .9)
}

.hbg-go {
    background: rgba(245, 158, 11, .18);
    border: 1px solid rgba(245, 158, 11, .35);
    color: rgba(253, 230, 138, .9)
}

.hbg-g {
    background: rgba(22, 163, 74, .15);
    border: 1px solid rgba(22, 163, 74, .3);
    color: rgba(134, 239, 172, .9)
}

.bdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #a78bfa;
    animation: blink 2s infinite;
    flex-shrink: 0
}

.hero h1 {
    font-size: clamp(1.4rem, 3vw, 3.9rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.046em;
    color: #fff;
    margin-bottom: 1.4rem
}

.gt {
    background: linear-gradient(135deg, #fde68a 0%, #c4b5fd 45%, #818cf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hdesc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .46);
    line-height: 1.85;
    max-width: 50ch;
    margin-bottom: 2.25rem
}

.hbtns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2rem
}

.hchips {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem
}

.chip {
    font-size: .68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .36);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 100px;
    padding: .2rem .7rem
}

/* ===== SGE CARD (Hero Right) ===== */
.sge-card {
    background: linear-gradient(150deg, #0d0b22, #100c2a);
    border: 1px solid rgba(124, 58, 237, .18);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .55), 0 0 0 1px rgba(245, 158, 11, .06);
    animation: float 6s ease-in-out infinite
}

.sc-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: .875rem 1.25rem;
    background: rgba(255, 255, 255, .03);
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.scd {
    width: 11px;
    height: 11px;
    border-radius: 50%
}

.scd1 {
    background: #ff5f57
}

.scd2 {
    background: #ffbd2e
}

.scd3 {
    background: #28ca41
}

.sc-url {
    font-family: var(--mono);
    font-size: .68rem;
    color: rgba(255, 255, 255, .18);
    margin-left: .4rem;
    flex: 1
}

.sc-live {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .65rem;
    font-weight: 700;
    color: #c4b5fd
}

.sc-ldot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #c4b5fd;
    animation: blink 1.8s infinite
}

/* AI overview mock */
.sc-ai-box {
    margin: .875rem 1.25rem;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(124, 58, 237, .2);
    border-radius: 12px;
    overflow: hidden
}

.sc-ai-hd {
    display: flex;
    align-items: center;
    gap: .45rem;
    padding: .55rem .875rem;
    background: rgba(124, 58, 237, .1);
    border-bottom: 1px solid rgba(124, 58, 237, .15)
}

.sc-ai-ico {
    font-size: .8rem
}

.sc-ai-lbl {
    font-size: .68rem;
    font-weight: 700;
    color: #c4b5fd
}

.sc-ai-src {
    font-size: .6rem;
    font-family: var(--mono);
    color: rgba(196, 181, 253, .4);
    margin-left: auto
}

.sc-ai-body {
    padding: .75rem .875rem
}

.sc-ai-text {
    font-size: .72rem;
    color: rgba(255, 255, 255, .55);
    line-height: 1.75
}

.sc-ai-text .hl {
    background: linear-gradient(90deg, rgba(124, 58, 237, .25), rgba(124, 58, 237, .1));
    border-radius: 3px;
    padding: .05rem .28rem;
    color: #c4b5fd;
    font-weight: 600
}

.sc-ai-cites {
    display: flex;
    gap: .35rem;
    margin-top: .5rem;
    flex-wrap: wrap
}

.sc-ai-cite {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-size: .58rem;
    font-weight: 700;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 100px;
    padding: .12rem .5rem;
    color: rgba(255, 255, 255, .35)
}

/* traffic graph */
.sc-graph {
    padding: .75rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.sc-graph-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .625rem
}

.sc-graph-lbl {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: rgba(255, 255, 255, .25)
}

.sc-graph-val {
    font-size: .75rem;
    font-weight: 800;
    color: #a78bfa
}

.sc-bars {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 50px
}

.sc-bar-item {
    flex: 1;
    border-radius: 3px 3px 0 0;
    min-width: 6px;
    transition: height .8s cubic-bezier(.4, 0, .2, 1)
}

.sc-bar-future {
    opacity: .55;
    background: repeating-linear-gradient(45deg, rgba(167, 139, 250, .3), rgba(167, 139, 250, .3) 2px, transparent 2px, transparent 6px)
}

.sc-bar-now {
    background: linear-gradient(180deg, #a78bfa, #7c3aed)
}

/* pillar score */
.sc-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    padding: .75rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.sc-pil {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .05);
    border-radius: 8px;
    padding: .6rem;
    text-align: center
}

.sc-pil-val {
    font-size: .95rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: .15rem;
    letter-spacing: -.03em
}

.sc-pil-lbl {
    font-size: .56rem;
    color: rgba(255, 255, 255, .28);
    text-transform: uppercase;
    letter-spacing: .06em
}

.sc-ft {
    padding: .625rem 1.25rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.sc-fdot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #a78bfa;
    animation: blink 1.5s infinite
}

.sc-ftxt {
    font-size: .63rem;
    font-family: var(--mono);
    color: rgba(196, 181, 253, .3)
}

/* ===================== TICKER ===================== */
.ticker {
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1.1rem 0;
    overflow: hidden;
    position: relative
}

.ticker::before,
.ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none
}

.ticker::before {
    left: 0;
    background: linear-gradient(90deg, #fff, transparent)
}

.ticker::after {
    right: 0;
    background: linear-gradient(-90deg, #fff, transparent)
}

.ttrack {
    display: flex;
    white-space: nowrap;
    animation: ticker 32s linear infinite
}

.ti {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: 0 2rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--muted)
}

.ti svg {
    width: 13px;
    height: 13px;
    stroke: var(--sge);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0
}

.tdot {
    padding: 0 .5rem;
    color: var(--border)
}

/* ===================== STATS ===================== */
.stats {
    background: #fff;
    border-bottom: 1px solid var(--border)
}

.sgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.sitem {
    position: relative;
    text-align: center;
    padding: 2rem 1.25rem 1.75rem;
    border-right: 1px solid var(--border);
    transition: background .2s;
    overflow: hidden
}

.sitem:last-child {
    border-right: none
}

.sitem::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    border-radius: 2px;
    transition: width .3s ease
}

.sitem:nth-child(1)::after {
    background: linear-gradient(90deg, #7c3aed, #a78bfa)
}

.sitem:nth-child(2)::after {
    background: linear-gradient(90deg, #f59e0b, #fde68a)
}

.sitem:nth-child(3)::after {
    background: linear-gradient(90deg, #16a34a, #6ee7b7)
}

.sitem:nth-child(4)::after {
    background: linear-gradient(90deg, #0052e0, #22d3ee)
}

.sitem:hover {
    background: var(--off)
}

.sitem:hover::after {
    width: 60%
}

.sico-wrap {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto .875rem;
    font-size: 1.1rem
}

.sitem:nth-child(1) .sico-wrap {
    background: rgba(124, 58, 237, .1)
}

.sitem:nth-child(2) .sico-wrap {
    background: rgba(245, 158, 11, .1)
}

.sitem:nth-child(3) .sico-wrap {
    background: rgba(22, 163, 74, .08)
}

.sitem:nth-child(4) .sico-wrap {
    background: rgba(0, 82, 224, .08)
}

.sval {
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -.05em;
    color: var(--text);
    line-height: 1;
    margin-bottom: .3rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 1px
}

.sval b {
    font-size: 1.15rem;
    font-weight: 800
}

.sitem:nth-child(1) .sval b {
    color: #7c3aed
}

.sitem:nth-child(2) .sval b {
    color: #f59e0b
}

.sitem:nth-child(3) .sval b {
    color: #16a34a
}

.sitem:nth-child(4) .sval b {
    color: #0052e0
}

.slbl {
    font-size: .74rem;
    color: var(--muted);
    line-height: 1.5;
    max-width: 17ch;
    margin: 0 auto
}

/* ===================== WHY ===================== */
.intro-sec {
    background: #fff;
    padding: 6rem 0
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center
}

.sh2 {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.03em;
    margin-bottom: 1rem
}

.sdesc {
    font-size: .95rem;
    color: var(--muted);
    line-height: 1.82;
    margin-bottom: 1.5rem
}

.cklist {
    display: flex;
    flex-direction: column;
    gap: .625rem;
    margin-bottom: 2rem
}

.cki {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .875rem;
    line-height: 1.6
}

.ckico {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .58rem;
    color: #fff;
    flex-shrink: 0;
    margin-top: 2px;
    font-weight: 800
}

.sbtns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap
}

/* SERP evolution card */
.serp-card {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden
}

.serp-hd {
    padding: 1rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.serp-hd h4 {
    font-size: .82rem;
    font-weight: 700
}

.serp-badge {
    font-size: .62rem;
    font-weight: 700;
    background: var(--sge-l);
    color: var(--sge);
    border-radius: 100px;
    padding: .18rem .6rem
}

.serp-list {
    padding: .5rem 0
}

.serp-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .75rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background .15s
}

.serp-row:last-child {
    border-bottom: none
}

.serp-row:hover {
    background: #fff
}

.serp-ico {
    width: 36px;
    height: 36px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    flex-shrink: 0
}

.serp-name {
    font-size: .84rem;
    font-weight: 600;
    flex: 1
}

.serp-desc {
    font-size: .7rem;
    color: var(--muted)
}

.serp-pill {
    font-size: .62rem;
    font-weight: 700;
    padding: .15rem .5rem;
    border-radius: 4px;
    flex-shrink: 0;
    white-space: nowrap
}

/* ===================== PILLARS (3-col cards) ===================== */
.pillars-sec {
    background: var(--off);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 6rem 0
}

.shead {
    text-align: center;
    margin-bottom: 2.5rem
}

.shead h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: .75rem
}

.shead p {
    font-size: .95rem;
    color: var(--muted);
    max-width: 52ch;
    margin: 0 auto;
    line-height: 1.78
}

.pgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem
}

.pcard {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 1.75rem;
    transition: transform .2s, box-shadow .2s;
    position: relative;
    overflow: hidden
}

.pcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px
}

.pcard:nth-child(1)::before {
    background: linear-gradient(90deg, #7c3aed, #a78bfa)
}

.pcard:nth-child(2)::before {
    background: linear-gradient(90deg, #f59e0b, #fde68a)
}

.pcard:nth-child(3)::before {
    background: linear-gradient(90deg, #0052e0, #22d3ee)
}

.pcard:nth-child(4)::before {
    background: linear-gradient(90deg, #16a34a, #6ee7b7)
}

.pcard:nth-child(5)::before {
    background: linear-gradient(90deg, #db2777, #a78bfa)
}

.pcard:nth-child(6)::before {
    background: linear-gradient(90deg, #ea580c, #f59e0b)
}

.pcard:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08)
}

.pcard-ico {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    display: block
}

.pcard h4 {
    font-size: .95rem;
    font-weight: 800;
    margin-bottom: .5rem;
    letter-spacing: -.02em
}

.pcard p {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 1rem
}

.pcard-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem
}

.pcard-tag {
    font-size: .6rem;
    font-weight: 700;
    border-radius: 100px;
    padding: .16rem .55rem
}

/* ===================== STRATEGY TABS ===================== */
.tabs-sec {
    background: #fff;
    padding: 6rem 0
}

.tnav {
    display: flex;
    gap: .375rem;
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: .375rem;
    margin-bottom: 2rem;
    overflow-x: auto;
    scrollbar-width: none
}

.tnav::-webkit-scrollbar {
    display: none
}

.tbtn {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .8rem;
    font-weight: 600;
    padding: .55rem 1.1rem;
    border-radius: 9px;
    cursor: pointer;
    color: var(--muted);
    border: none;
    background: transparent;
    font-family: var(--font);
    white-space: nowrap;
    flex-shrink: 0;
    transition: background .12s, color .12s
}

.tbtn:hover {
    background: #fff;
    color: var(--text)
}

.tbtn.act {
    background: linear-gradient(135deg, #7c3aed, #4338ca);
    color: #fff;
    box-shadow: 0 2px 12px rgba(124, 58, 237, .35)
}

.tpanel {
    display: none
}

.tpanel.act {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    animation: fadein .3s ease
}

.tcopy h3 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.025em;
    margin-bottom: .75rem;
    line-height: 1.2
}

.tcopy p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1.25rem
}

.tsteps {
    display: flex;
    flex-direction: column;
    gap: .625rem
}

.tstep {
    display: flex;
    align-items: flex-start;
    gap: .875rem;
    padding: .875rem 1rem;
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: 12px
}

.tsn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #4338ca);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .62rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    margin-top: 1px
}

.tst {
    font-size: .82rem;
    font-weight: 700;
    margin-bottom: .16rem
}

.tsd {
    font-size: .75rem;
    color: var(--muted);
    line-height: 1.55
}

.tvis {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden
}

.tvh {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: .875rem 1.25rem;
    background: #fff;
    border-bottom: 1px solid var(--border)
}

.tvtit {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--muted)
}

.tvbdg {
    font-size: .62rem;
    font-weight: 700;
    padding: .18rem .55rem;
    border-radius: 100px
}

.tvbody {
    padding: 1.25rem
}

.brow {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: .875rem
}

.brow:last-child {
    margin-bottom: 0
}

.blbl {
    font-size: .74rem;
    color: var(--muted);
    width: 140px;
    flex-shrink: 0
}

.btrack {
    flex: 1;
    height: 8px;
    background: #fff;
    border-radius: 100px;
    overflow: hidden
}

.bfill {
    height: 100%;
    border-radius: 100px;
    width: 0;
    transition: width 1.2s cubic-bezier(.4, 0, .2, 1)
}

.bval {
    font-size: .72rem;
    font-weight: 700;
    width: 48px;
    text-align: right;
    flex-shrink: 0
}

.tvextra {
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid var(--border)
}

.tvextra-title {
    font-size: .63rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--muted);
    padding: .875rem 0 .625rem
}

.tvkpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .625rem
}

.tvkpi {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .75rem .625rem;
    text-align: center
}

.tvkpiv {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: .2rem
}

.tvkpil {
    font-size: .62rem;
    color: var(--muted);
    line-height: 1.35
}

/* ai overview mock */
.ai-mock {
    margin: 0 1.25rem 1.25rem;
    border: 1px solid rgba(124, 58, 237, .2);
    border-radius: 12px;
    overflow: hidden;
    background: #fff
}

.ai-mock-hd {
    padding: .5rem .875rem;
    background: var(--sge-l);
    border-bottom: 1px solid rgba(124, 58, 237, .15);
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--sge);
    display: flex;
    align-items: center;
    gap: .4rem
}

.ai-mock-body {
    padding: .875rem
}

.ai-mock-text {
    font-size: .74rem;
    line-height: 1.72;
    color: var(--muted)
}

.ai-mock-text strong {
    color: var(--text)
}

.ai-mock-text .am-hl {
    background: var(--sge-l);
    border-radius: 3px;
    padding: .02rem .25rem;
    color: var(--sge);
    font-weight: 600
}

.ai-mock-cites {
    display: flex;
    gap: .35rem;
    margin-top: .5rem
}

.ai-mock-cite {
    font-size: .6rem;
    font-weight: 600;
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: .1rem .4rem;
    color: var(--muted)
}

/* cluster map */
.cluster-map {
    margin: 0 1.25rem 1.25rem;
    padding: .875rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px
}

.cl-title {
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: .75rem
}

.cl-pillar {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .75rem;
    background: var(--sge-l);
    border: 1px solid rgba(124, 58, 237, .2);
    border-radius: 8px;
    font-size: .78rem;
    font-weight: 700;
    color: var(--sge);
    margin-bottom: .5rem
}

.cl-spokes {
    padding-left: .875rem;
    display: flex;
    flex-direction: column;
    gap: .3rem
}

.cl-spoke {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .7rem;
    color: var(--muted);
    padding: .25rem .5rem
}

.cl-spoke::before {
    content: '└';
    font-size: .6rem;
    color: var(--border);
    flex-shrink: 0
}

.cl-spoke-pill {
    font-size: .58rem;
    font-weight: 700;
    border-radius: 100px;
    padding: .1rem .45rem;
    margin-left: auto;
    flex-shrink: 0
}

/* ===================== TRAFFIC PROJECTION ===================== */
.proj-sec {
    background: #07091a;
    padding: 6rem 0;
    position: relative;
    overflow: hidden
}

.proj-sec .ho1 {
    opacity: .5
}

.proj-in {
    position: relative;
    z-index: 2
}

.proj-head {
    text-align: center;
    margin-bottom: 3rem
}

.proj-head h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: .75rem
}

.proj-head p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .4);
    max-width: 52ch;
    margin: 0 auto;
    line-height: 1.78
}

.proj-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 3rem;
    align-items: center
}

/* chart */
.proj-chart {
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 18px;
    padding: 1.5rem;
    position: relative
}

.chart-hd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem
}

.chart-title {
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .6)
}

.chart-badge {
    font-size: .62rem;
    font-weight: 700;
    background: var(--sge-l);
    color: #c4b5fd;
    border-radius: 100px;
    padding: .18rem .6rem
}

.chart-area {
    height: 180px;
    position: relative
}

.chart-area svg {
    width: 100%;
    height: 100%
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    margin-top: .5rem
}

.chart-lbl {
    font-size: .6rem;
    color: rgba(255, 255, 255, .22);
    font-family: var(--mono)
}

.chart-legend {
    display: flex;
    gap: 1.25rem;
    margin-top: .875rem
}

.cl-leg {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .68rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .45)
}

.cl-leg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%
}

/* milestones */
.milestones {
    display: flex;
    flex-direction: column;
    gap: .875rem
}

.ms-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    position: relative;
    overflow: hidden;
    transition: border-color .2s
}

.ms-card:hover {
    border-color: rgba(124, 58, 237, .3)
}

.ms-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 3px
}

.ms-card:nth-child(1)::before {
    background: #7c3aed
}

.ms-card:nth-child(2)::before {
    background: #f59e0b
}

.ms-card:nth-child(3)::before {
    background: #16a34a
}

.ms-card:nth-child(4)::before {
    background: #0052e0
}

.ms-month {
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: rgba(255, 255, 255, .3);
    margin-bottom: .25rem
}

.ms-title {
    font-size: .88rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: .2rem
}

.ms-val {
    font-size: .75rem;
    color: rgba(255, 255, 255, .4)
}

.ms-val strong {
    font-weight: 700
}

.ms-card:nth-child(1) .ms-val strong {
    color: #c4b5fd
}

.ms-card:nth-child(2) .ms-val strong {
    color: #fde68a
}

.ms-card:nth-child(3) .ms-val strong {
    color: #6ee7b7
}

.ms-card:nth-child(4) .ms-val strong {
    color: #93c5fd
}

/* ===================== PROCESS ===================== */
.proc-sec {
    background: #fff;
    padding: 6rem 0
}

.procsh {
    text-align: center;
    margin-bottom: 3.5rem
}

.procsh h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: .75rem
}

.procsh p {
    font-size: .95rem;
    color: var(--muted);
    max-width: 50ch;
    margin: 0 auto;
    line-height: 1.78
}

.procgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem
}

.prc {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden
}

.prc:hover {
    border-color: rgba(124, 58, 237, .25)
}

.prc-num {
    font-family: var(--mono);
    font-size: .62rem;
    font-weight: 700;
    color: rgba(124, 58, 237, .5);
    margin-bottom: .75rem
}

.prc-ico {
    font-size: 1.4rem;
    margin-bottom: .625rem;
    display: block
}

.prc h4 {
    font-size: .88rem;
    font-weight: 800;
    margin-bottom: .4rem;
    letter-spacing: -.02em
}

.prc p {
    font-size: .78rem;
    color: var(--muted);
    line-height: 1.68
}

.prc-tools {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
    margin-top: .875rem
}

.ptag {
    font-size: .6rem;
    font-weight: 700;
    background: var(--sge-l);
    color: var(--sge);
    border-radius: 100px;
    padding: .15rem .55rem
}

/* timeline */
.ptl {
    display: flex;
    justify-content: space-between;
    margin-top: 2.5rem;
    padding: 1.25rem 1.5rem;
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: 14px;
    position: relative
}

.ptl::before {
    content: '';
    position: absolute;
    left: 2.25rem;
    right: 2.25rem;
    top: 40%;
    height: 1px;
    background: var(--border);
    z-index: 0
}

.ptli {
    position: relative;
    z-index: 1;
    text-align: center
}

.ptday {
    font-size: .7rem;
    font-weight: 800;
    background: #fff;
    border: 1.5px solid rgba(124, 58, 237, .3);
    color: var(--sge);
    border-radius: 100px;
    padding: .2rem .65rem;
    display: inline-block;
    margin-bottom: .35rem
}

.ptlbl {
    font-size: .64rem;
    color: var(--muted)
}

/* ===================== RESULTS ===================== */
.results-sec {
    background: var(--off);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 6rem 0
}

.resgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2.5rem
}

.rc {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s
}

.rc:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .07)
}

.rctop {
    padding: 1.25rem;
    border-bottom: 1px solid var(--border)
}

.rcdom {
    font-family: var(--mono);
    font-size: .65rem;
    font-weight: 700;
    color: var(--muted);
    margin-bottom: .875rem
}

.rcmet {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem
}

.rcm {
    text-align: center;
    padding: .5rem .25rem;
    background: var(--off);
    border-radius: 8px
}

.rcmv {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1;
    margin-bottom: .2rem
}

.rcml {
    font-size: .58rem;
    color: var(--muted)
}

.rcbot {
    padding: 1.25rem
}

.rcq {
    font-size: .8rem;
    line-height: 1.72;
    color: var(--muted);
    margin-bottom: 1rem;
    font-style: italic
}

.rcby {
    display: flex;
    align-items: center;
    gap: .75rem
}

.rcav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.rcn {
    font-size: .8rem;
    font-weight: 700
}

.rcr {
    font-size: .68rem;
    color: var(--muted)
}

/* ===================== FAQ ===================== */
.faq-sec {
    background: #fff;
    padding: 6rem 0
}

.faqlyt {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 4rem
}

.faqstk {
    position: sticky;
    top: 2rem
}

.faqstk h2 {
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: .75rem;
    line-height: 1.15
}

.faqstk p {
    font-size: .9rem;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 1.5rem
}

.faqbox {
    background: var(--sge-l);
    border: 1.5px solid rgba(124, 58, 237, .2);
    border-radius: 14px;
    padding: 1.25rem
}

.faqbox h4 {
    font-size: .88rem;
    font-weight: 800;
    margin-bottom: .4rem
}

.faqbox p {
    font-size: .8rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: .75rem
}

.faqbox a {
    font-size: .82rem;
    font-weight: 700;
    color: var(--sge)
}

.faqlist {
    display: flex;
    flex-direction: column;
    gap: .625rem
}

.faqitem {
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .2s
}

.faqitem.open {
    border-color: rgba(124, 58, 237, .3)
}

.faqq {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    cursor: pointer;
    font-size: .9rem;
    font-weight: 700;
    gap: 1rem;
    user-select: none
}

.faqico {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--off);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    flex-shrink: 0;
    transition: background .2s, transform .2s
}

.faqitem.open .faqico {
    background: linear-gradient(135deg, #7c3aed, #4338ca);
    border-color: transparent;
    color: #fff;
    transform: rotate(45deg)
}

.faqa {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease
}

.faqitem.open .faqa {
    max-height: 300px
}

.faqa p {
    padding: .25rem 1.25rem 1rem;
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.82
}

/* ===================== CTA ===================== */
.cta-sec {
    background: #07091a;
    padding: 6rem 0;
    position: relative;
    overflow: hidden
}

.cta-in {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 660px;
    margin: 0 auto
}

.cta-in h2 {
    font-size: clamp(1.75rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.08;
    letter-spacing: -.04em;
    margin-bottom: 1rem
}

.cta-in p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .43);
    line-height: 1.85;
    margin-bottom: 2rem
}

.cta-btns {
    display: flex;
    gap: .75rem;
    justify-content: center;
    flex-wrap: wrap
}

.cta-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap
}

.cta-trust span {
    font-size: .72rem;
    color: rgba(255, 255, 255, .28);
    font-weight: 500
}

.cta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18)
}

/* ===================== RESPONSIVE ===================== */
@media(max-width:1000px) {
    .pgrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .procgrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .proj-grid {
        grid-template-columns: 1fr
    }
}

@media(max-width:900px) {

    .hero-in,
    .split,
    .tpanel.act,
    .resgrid,
    .faqlyt {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .sgrid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:600px) {

    .sgrid,
    .pgrid,
    .procgrid {
        grid-template-columns: 1fr
    }
}