*,
*::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;
    --cyan: #0891b2;
    --text: #0f172a;
    --muted: #64748b;
    --border: #e2e8f0;
    --off: #f8fafc;
    --font: 'Plus Jakarta Sans', sans-serif;
    --mono: 'JetBrains Mono', monospace;
}

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 pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 82, 224, .35)
    }

    70% {
        box-shadow: 0 0 0 10px rgba(0, 82, 224, 0)
    }
}

@keyframes crawlMove {
    0% {
        left: -8px
    }

    100% {
        left: calc(100% + 8px)
    }
}

@keyframes crawlPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 82, 224, .5)
    }

    50% {
        transform: scale(1.15);
        box-shadow: 0 0 0 6px rgba(0, 82, 224, .15)
    }
}

@keyframes nodeAppear {
    from {
        opacity: 0;
        transform: scale(.6)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes edgeDraw {
    from {
        stroke-dashoffset: 200
    }

    to {
        stroke-dashoffset: 0
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-8px)
    }
}

@keyframes scanLine {
    0% {
        top: 0%
    }

    100% {
        top: 100%
    }
}

@keyframes progressFill {
    from {
        width: 0
    }

    to {
        width: var(--w)
    }
}

/* 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, #0052e0, #4f46e5);
    color: #fff;
    padding: .85rem 1.75rem;
    box-shadow: 0 4px 20px rgba(0, 82, 224, .38)
}

.btn-p:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 82, 224, .5)
}

.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(--blue);
    color: var(--blue);
    padding: .78rem 1.5rem
}

.btn-o:hover {
    background: var(--blue-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-t {
    background: rgba(0, 191, 168, .12);
    color: #007a6e
}

.tag-g {
    background: rgba(22, 163, 74, .1);
    color: var(--green)
}

.tag-pu {
    background: rgba(124, 58, 237, .1);
    color: var(--purple)
}

/* ===================== HERO ===================== */
.hero {
    background: #060d1a;
    padding: 6.5rem 0 0;
    position: relative;
    overflow: hidden
}

.hgrid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(0, 82, 224, .06) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 82, 224, .06) 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: -18%;
    right: -5%;
    width: min(700px, 72vw);
    height: min(700px, 72vw);
    background: radial-gradient(circle, rgba(0, 82, 224, .18), transparent 65%)
}

.ho2 {
    bottom: -25%;
    left: -7%;
    width: min(520px, 60vw);
    height: min(520px, 60vw);
    background: radial-gradient(circle, rgba(0, 191, 168, .1), transparent 65%)
}

.ho3 {
    top: 35%;
    left: 12%;
    width: min(260px, 32vw);
    height: min(260px, 32vw);
    background: radial-gradient(circle, rgba(8, 145, 178, .08), 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-b {
    background: rgba(0, 82, 224, .2);
    border: 1px solid rgba(0, 82, 224, .4);
    color: rgba(148, 196, 255, .9)
}

.hbg-g {
    background: rgba(22, 163, 74, .15);
    border: 1px solid rgba(22, 163, 74, .3);
    color: rgba(134, 239, 172, .9)
}

.hbg-c {
    background: rgba(8, 145, 178, .15);
    border: 1px solid rgba(8, 145, 178, .3);
    color: rgba(103, 232, 249, .9)
}

.bdot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    animation: blink 2s infinite;
    flex-shrink: 0
}

.hero h1 {
    font-size: clamp(2.5rem, 4.8vw, 4rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.046em;
    color: #fff;
    margin-bottom: 1.4rem
}

.gt {
    background: linear-gradient(135deg, #67e8f9 0%, #60a5fa 50%, #00e5cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hdesc {
    font-size: 1rem;
    color: rgba(255, 255, 255, .48);
    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, .38);
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 100px;
    padding: .2rem .7rem
}

/* ---- CRAWL BOT CARD (Hero Right) ---- */
.crawl-card {
    background: linear-gradient(150deg, #0d1829, #0a1a35);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, .5), 0 0 0 1px rgba(0, 130, 178, .12);
    animation: float 6s ease-in-out infinite
}

.cc-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)
}

.ccd {
    width: 11px;
    height: 11px;
    border-radius: 50%
}

.ccd1 {
    background: #ff5f57
}

.ccd2 {
    background: #ffbd2e
}

.ccd3 {
    background: #28ca41
}

.cc-url {
    font-family: var(--mono);
    font-size: .68rem;
    color: rgba(255, 255, 255, .2);
    margin-left: .4rem;
    flex: 1
}

.cc-status {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .65rem;
    font-weight: 700;
    color: #67e8f9
}

.cc-sdot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #67e8f9;
    animation: blink 1.8s infinite
}

/* Crawl budget meter */
.cc-budget {
    padding: 1.25rem 1.25rem .875rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.cc-bh {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .75rem
}

.cc-bhtxt {
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: .08em
}

.cc-bhval {
    font-family: var(--mono);
    font-size: .7rem;
    color: #67e8f9
}

.cc-bmeters {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.cc-bmrow {
    display: flex;
    align-items: center;
    gap: .75rem
}

.cc-bmlbl {
    font-size: .65rem;
    color: rgba(255, 255, 255, .35);
    width: 100px;
    flex-shrink: 0
}

.cc-bmtrack {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, .06);
    border-radius: 100px;
    overflow: hidden
}

.cc-bmfill {
    height: 100%;
    border-radius: 100px;
    transition: width 1.4s cubic-bezier(.4, 0, .2, 1);
    width: 0
}

.cc-bmval {
    font-size: .62rem;
    font-weight: 700;
    font-family: var(--mono);
    width: 32px;
    text-align: right;
    flex-shrink: 0
}

/* Crawl bot visual */
.cc-viz {
    padding: .875rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    position: relative;
    height: 88px;
    overflow: hidden
}

.cc-viz-bg {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 0 1.25rem
}

.cc-vline {
    height: 1px;
    background: rgba(255, 255, 255, .05);
    position: relative;
    border-radius: 1px
}

.cc-vline::after {
    content: '';
    position: absolute;
    left: 0;
    top: -1px;
    height: 3px;
    width: 40px;
    background: linear-gradient(90deg, transparent, rgba(8, 145, 178, .5), transparent);
    animation: crawlMove 3s linear infinite
}

.cc-vline:nth-child(2)::after {
    animation-delay: .8s;
    animation-duration: 3.8s
}

.cc-vline:nth-child(3)::after {
    animation-delay: 1.6s;
    animation-duration: 2.6s
}

.cc-bot {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: linear-gradient(135deg, #0052e0, #0891b2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    animation: crawlPulse 2s ease-in-out infinite;
    left: 24px
}

.cc-viz-lbl {
    position: absolute;
    bottom: 6px;
    right: 12px;
    font-size: .58rem;
    font-family: var(--mono);
    color: rgba(255, 255, 255, .2)
}

/* URL rows */
.cc-urls {
    padding: .625rem 1.25rem
}

.cc-url-row {
    display: flex;
    align-items: center;
    gap: .625rem;
    padding: .45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .04)
}

.cc-url-row:last-child {
    border-bottom: none
}

.cc-url-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0
}

.dot-crawled {
    background: #4ade80
}

.dot-queued {
    background: #67e8f9;
    animation: blink 1.5s infinite
}

.dot-blocked {
    background: #f87171
}

.dot-wasted {
    background: #fbbf24
}

.cc-url-path {
    font-family: var(--mono);
    font-size: .65rem;
    color: rgba(255, 255, 255, .45);
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.cc-url-tag {
    font-size: .56rem;
    font-weight: 700;
    padding: .1rem .45rem;
    border-radius: 4px;
    flex-shrink: 0
}

.tag-crawled {
    background: rgba(22, 163, 74, .2);
    color: #4ade80
}

.tag-queued {
    background: rgba(8, 145, 178, .2);
    color: #67e8f9
}

.tag-blocked {
    background: rgba(220, 38, 38, .2);
    color: #f87171
}

.tag-wasted {
    background: rgba(245, 158, 11, .2);
    color: #fbbf24
}

.cc-ft {
    padding: .75rem 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    gap: .5rem
}

.cc-fdot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--cyan);
    animation: blink 1.5s infinite
}

.cc-ftxt {
    font-size: .63rem;
    font-family: var(--mono);
    color: rgba(103, 232, 249, .45)
}

.hwave {
    height: 80px;
    overflow: hidden;
    position: relative;
    z-index: 1
}

.hwave svg {
    width: 100%;
    height: 100%;
    display: block
}

/* ===================== 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 28s 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(--blue);
    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, #0052e0, #0891b2)
}

.sitem:nth-child(2)::after {
    background: linear-gradient(90deg, #16a34a, #00bfa8)
}

.sitem:nth-child(3)::after {
    background: linear-gradient(90deg, #ea580c, #f59e0b)
}

.sitem:nth-child(4)::after {
    background: linear-gradient(90deg, #7c3aed, #0052e0)
}

.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(0, 82, 224, .08)
}

.sitem:nth-child(2) .sico-wrap {
    background: rgba(22, 163, 74, .08)
}

.sitem:nth-child(3) .sico-wrap {
    background: rgba(234, 88, 12, .08)
}

.sitem:nth-child(4) .sico-wrap {
    background: rgba(124, 58, 237, .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: #0052e0
}

.sitem:nth-child(2) .sval b {
    color: #16a34a
}

.sitem:nth-child(3) .sval b {
    color: #ea580c
}

.sitem:nth-child(4) .sval b {
    color: #7c3aed
}

.slbl {
    font-size: .74rem;
    color: var(--muted);
    line-height: 1.5;
    max-width: 17ch;
    margin: 0 auto
}

/* ===================== WHY CRAWL MATTERS ===================== */
.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, #0052e0, #0891b2);
    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
}

/* crawl budget breakdown card */
.budget-card {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden
}

.bc-hd {
    padding: 1rem 1.5rem;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.bc-hd h4 {
    font-size: .82rem;
    font-weight: 700
}

.bc-badge {
    font-size: .62rem;
    font-weight: 700;
    background: #fee2e2;
    color: #b91c1c;
    border-radius: 100px;
    padding: .18rem .6rem
}

/* donut */
.bc-donut-wrap {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border)
}

.bc-donut {
    position: relative;
    width: 100px;
    height: 100px;
    flex-shrink: 0
}

.bc-donut svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg)
}

.bc-donut-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center
}

.bc-donut-pct {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    letter-spacing: -.04em
}

.bc-donut-sub {
    font-size: .6rem;
    color: var(--muted);
    margin-top: 1px
}

.bc-legend {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.bc-leg-row {
    display: flex;
    align-items: center;
    gap: .625rem;
    font-size: .75rem
}

.bc-leg-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    flex-shrink: 0
}

.bc-leg-lbl {
    flex: 1;
    color: var(--muted)
}

.bc-leg-val {
    font-weight: 700;
    font-size: .72rem;
    font-family: var(--mono)
}

/* impact rows */
.bc-impacts {
    padding: .5rem 0
}

.bc-imp-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: .75rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    transition: background .15s
}

.bc-imp-row:last-child {
    border-bottom: none
}

.bc-imp-row:hover {
    background: #fafbff
}

.bc-ico {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0
}

.bc-imp-name {
    font-size: .82rem;
    font-weight: 600;
    flex: 1
}

.bc-imp-desc {
    font-size: .7rem;
    color: var(--muted)
}

.bc-imp-sev {
    font-size: .62rem;
    font-weight: 700;
    padding: .15rem .5rem;
    border-radius: 4px;
    flex-shrink: 0
}

.sev-hi {
    background: #fee2e2;
    color: #b91c1c
}

.sev-md {
    background: #fff7ed;
    color: #c2410c
}

.sev-lo {
    background: #f0fdf4;
    color: #15803d
}

/* ===================== CRAWL ISSUES TABS ===================== */
.tabs-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
}

.tnav {
    display: flex;
    gap: .375rem;
    background: #fff;
    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: var(--off);
    color: var(--text)
}

.tbtn.act {
    background: var(--blue);
    color: #fff;
    box-shadow: 0 2px 12px rgba(0, 82, 224, .3)
}

.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: #fff;
    border: 1.5px solid var(--border);
    border-radius: 12px
}

.tsn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), #0891b2);
    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
}

/* right panel */
.tvis {
    background: #fff;
    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: var(--off);
    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: 130px;
    flex-shrink: 0
}

.btrack {
    flex: 1;
    height: 8px;
    background: var(--off);
    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: 44px;
    text-align: right;
    flex-shrink: 0
}

.tvextra {
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid var(--border);
    margin-top: .25rem
}

.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: var(--off);
    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
}

/* robots preview */
.robots-preview {
    margin: 0 1.25rem 1.25rem;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--border)
}

.rp-hd {
    padding: .5rem .875rem;
    background: #1e293b;
    border-bottom: 1px solid #334155;
    font-size: .62rem;
    font-weight: 700;
    color: #64748b;
    font-family: var(--mono);
    display: flex;
    align-items: center;
    gap: .5rem
}

.rp-body {
    padding: .875rem;
    background: #0f172a;
    font-family: var(--mono);
    font-size: .7rem;
    line-height: 1.7
}

.rp-comment {
    color: #64748b
}

.rp-key {
    color: #67e8f9
}

.rp-val {
    color: #a78bfa
}

.rp-bad {
    color: #f87171;
    text-decoration: line-through;
    opacity: .7
}

.rp-good {
    color: #4ade80
}

.rp-arrow {
    color: #fbbf24;
    margin: 0 .25rem
}

/* crawl depth viz */
.depth-viz {
    margin: 0 1.25rem 1.25rem;
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem
}

.dv-title {
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: .875rem
}

.dv-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    margin-bottom: .625rem
}

.dv-row:last-child {
    margin-bottom: 0
}

.dv-depth {
    font-size: .62rem;
    font-weight: 700;
    color: var(--muted);
    width: 44px;
    font-family: var(--mono)
}

.dv-nodes {
    display: flex;
    gap: .375rem;
    flex-wrap: wrap
}

.dv-node {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .58rem;
    font-weight: 700;
    color: #fff;
    transition: transform .2s;
    cursor: default
}

.dv-node:hover {
    transform: scale(1.2)
}

.dn-home {
    background: linear-gradient(135deg, #0052e0, #0891b2)
}

.dn-ok {
    background: #16a34a
}

.dn-deep {
    background: #f59e0b
}

.dn-tooDeep {
    background: #dc2626
}

.dn-orphan {
    background: #94a3b8;
    opacity: .5
}

.dv-legend {
    display: flex;
    gap: .75rem;
    margin-top: .75rem;
    flex-wrap: wrap
}

.dv-leg {
    display: flex;
    align-items: center;
    gap: .3rem;
    font-size: .62rem;
    color: var(--muted)
}

.dv-leg-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px
}

/* redirect chain viz */
.redirect-chain {
    margin: 0 1.25rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: .375rem
}

.rc-row {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .72rem;
    font-family: var(--mono)
}

.rc-url {
    flex: 1;
    padding: .45rem .75rem;
    border-radius: 7px;
    background: var(--off);
    border: 1px solid var(--border);
    color: var(--muted);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.rc-url.start {
    background: #fff7ed;
    border-color: #fed7aa;
    color: #c2410c
}

.rc-url.mid {
    background: #fef9c3;
    border-color: #fde047;
    color: #92400e
}

.rc-url.end {
    background: #f0fdf4;
    border-color: #bbf7d0;
    color: #15803d
}

.rc-arrow {
    color: #94a3b8;
    font-size: .85rem;
    flex-shrink: 0
}

.rc-code {
    font-size: .6rem;
    font-weight: 700;
    padding: .1rem .4rem;
    border-radius: 4px;
    flex-shrink: 0
}

.rc-301 {
    background: #fff7ed;
    color: #c2410c
}

.rc-302 {
    background: #fef9c3;
    color: #92400e
}

.rc-200 {
    background: #f0fdf4;
    color: #15803d
}

/* sitemap table */
.sitemap-table {
    margin: 0 1.25rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: 10px;
    overflow: hidden
}

.st-hd {
    display: grid;
    grid-template-columns: 1fr 70px 80px;
    padding: .5rem .875rem;
    background: var(--off);
    border-bottom: 1px solid var(--border);
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted)
}

.st-row {
    display: grid;
    grid-template-columns: 1fr 70px 80px;
    padding: .6rem .875rem;
    border-bottom: 1px solid #f8fafc;
    font-size: .73rem;
    align-items: center;
    transition: background .15s
}

.st-row:last-child {
    border-bottom: none
}

.st-row:hover {
    background: #fafbff
}

.st-name {
    font-family: var(--mono);
    color: var(--text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.st-status {
    font-size: .62rem;
    font-weight: 700;
    padding: .13rem .45rem;
    border-radius: 4px;
    width: fit-content
}

/* log pattern */
.log-viz {
    margin: 0 1.25rem 1.25rem;
    background: #0f172a;
    border-radius: 10px;
    padding: .875rem;
    font-family: var(--mono);
    font-size: .65rem;
    line-height: 1.7;
    border: 1px solid #1e293b
}

.log-time {
    color: #475569
}

.log-bot {
    color: #67e8f9
}

.log-url {
    color: #a78bfa
}

.log-good {
    color: #4ade80
}

.log-bad {
    color: #f87171
}

.log-warn {
    color: #fbbf24
}

/* ===================== PROCESS ===================== */
.proc-sec {
    background: linear-gradient(160deg, #060d1a, #0d1b30);
    padding: 6rem 0;
    position: relative;
    overflow: hidden
}

.proc-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(8, 145, 178, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 145, 178, .05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, #000, transparent)
}

.procsh {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1
}

.procsh h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: .75rem
}

.procsh p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .4);
    max-width: 52ch;
    margin: 0 auto;
    line-height: 1.78
}

.procgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1
}

.pcard {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 1.5rem;
    transition: background .2s, border-color .2s, transform .2s;
    position: relative;
    overflow: hidden
}

.pcard::before {
    content: attr(data-n);
    position: absolute;
    top: -10px;
    right: 10px;
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--mono);
    color: rgba(255, 255, 255, .03);
    line-height: 1;
    pointer-events: none
}

.pcard:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(8, 145, 178, .35);
    transform: translateY(-4px)
}

.pnum {
    font-size: .68rem;
    font-weight: 800;
    font-family: var(--mono);
    color: rgba(8, 145, 178, .65);
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: .875rem
}

.pico {
    font-size: 1.6rem;
    margin-bottom: .75rem
}

.pcard h4 {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .4rem
}

.pcard p {
    font-size: .78rem;
    color: rgba(255, 255, 255, .38);
    line-height: 1.7
}

.ptags {
    display: flex;
    flex-wrap: wrap;
    gap: .3rem;
    margin-top: .75rem
}

.ptag {
    font-size: .6rem;
    font-weight: 600;
    color: rgba(103, 232, 249, .65);
    background: rgba(8, 145, 178, .15);
    border: 1px solid rgba(8, 145, 178, .25);
    border-radius: 100px;
    padding: .12rem .5rem
}

.ptl {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    flex-wrap: wrap
}

.ptli {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 80px;
    position: relative
}

.ptli::after {
    content: '→';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, .18)
}

.ptli:last-child::after {
    display: none
}

.ptday {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.03em
}

.ptlbl {
    font-size: .66rem;
    color: rgba(255, 255, 255, .33);
    margin-top: .18rem
}

/* ===================== BEFORE / AFTER ===================== */
.ba-sec {
    background: #fff;
    padding: 6rem 0
}

.bagrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem
}

.bacard {
    border-radius: 18px;
    overflow: hidden;
    border: 1.5px solid var(--border)
}

.bahd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem
}

.bahd h4 {
    font-size: .85rem;
    font-weight: 700
}

.bachip {
    font-size: .62rem;
    font-weight: 700;
    border-radius: 100px;
    padding: .18rem .6rem
}

.ba-bef .bahd {
    background: #fff8f8
}

.ba-bef .bahd h4 {
    color: var(--red)
}

.ba-bef .bachip {
    background: #fee2e2;
    color: var(--red)
}

.ba-aft .bahd {
    background: #f0fdf4
}

.ba-aft .bahd h4 {
    color: var(--green)
}

.ba-aft .bachip {
    background: #dcfce7;
    color: var(--green)
}

.ba-imp .bahd {
    background: var(--blue-l)
}

.ba-imp .bahd h4 {
    color: var(--blue)
}

.ba-imp .bachip {
    background: #c7d9ff;
    color: var(--blue-d)
}

.babody {
    padding: 1.25rem;
    background: #fff
}

.baitem {
    display: flex;
    align-items: flex-start;
    gap: .625rem;
    padding: .45rem 0;
    border-bottom: 1px solid var(--off);
    font-size: .79rem;
    line-height: 1.5
}

.baitem:last-child {
    border-bottom: none
}

.badot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 5px
}

.ba-bef .badot {
    background: #f87171
}

.ba-bef .baitem {
    color: #7f1d1d
}

.ba-aft .badot {
    background: #4ade80
}

.ba-aft .baitem {
    color: #14532d
}

.ba-imp .badot {
    background: #60a5fa
}

.ba-imp .baitem {
    color: #1e40af
}

/* ===================== CRAWL SIMULATOR ===================== */
.sim-sec {
    background: var(--off);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 6rem 0
}

.simlyt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start
}

.sim-issues {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden
}

.sim-ih {
    padding: 1rem 1.5rem;
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    background: var(--off);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between
}

.sim-pages {
    font-size: .7rem;
    font-weight: 700;
    background: var(--blue-l);
    color: var(--blue);
    border-radius: 100px;
    padding: .1rem .55rem
}

.sim-rows {
    padding: .375rem 0
}

.sim-row {
    display: flex;
    align-items: center;
    gap: .875rem;
    padding: .875rem 1.5rem;
    border-bottom: 1px solid #f8fafc;
    transition: background .15s
}

.sim-row:last-child {
    border-bottom: none
}

.sim-row:hover {
    background: #fafbff
}

.sim-ico {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    flex-shrink: 0
}

.sim-name {
    font-size: .82rem;
    font-weight: 600;
    flex: 1
}

.sim-sub {
    font-size: .68rem;
    color: var(--muted)
}

.sim-gain {
    font-size: .75rem;
    font-weight: 800;
    font-family: var(--mono);
    width: 58px;
    text-align: right;
    flex-shrink: 0
}

.tog {
    width: 44px;
    height: 24px;
    border-radius: 100px;
    background: #e2e8f0;
    position: relative;
    cursor: pointer;
    transition: background .2s;
    flex-shrink: 0
}

.tog.on {
    background: var(--blue)
}

.knb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    position: absolute;
    top: 3px;
    left: 3px;
    transition: transform .2s;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .15)
}

.tog.on .knb {
    transform: translateX(20px)
}

/* result */
.sim-res {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    position: sticky;
    top: 6rem
}

.sim-res-lbl {
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 1rem
}

/* crawl budget gauge */
.budget-gauge {
    margin-bottom: 1.5rem
}

.bg-label {
    display: flex;
    justify-content: space-between;
    font-size: .7rem;
    font-weight: 600;
    color: var(--muted);
    margin-bottom: .5rem
}

.bg-track {
    height: 18px;
    background: var(--off);
    border-radius: 100px;
    overflow: hidden;
    border: 1px solid var(--border);
    display: flex
}

.bg-wasted {
    height: 100%;
    background: linear-gradient(90deg, #dc2626, #f59e0b);
    transition: width .8s cubic-bezier(.34, 1.56, .64, 1);
    border-radius: 0
}

.bg-crawled {
    height: 100%;
    background: linear-gradient(90deg, #0052e0, #0891b2);
    transition: width .8s cubic-bezier(.34, 1.56, .64, 1)
}

.bg-legend {
    display: flex;
    gap: 1rem;
    margin-top: .5rem
}

.bg-leg {
    display: flex;
    align-items: center;
    gap: .35rem;
    font-size: .65rem;
    color: var(--muted)
}

.bg-leg-dot {
    width: 8px;
    height: 8px;
    border-radius: 2px;
    flex-shrink: 0
}

/* pages indexed display */
.pages-disp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    padding: 1.25rem;
    background: var(--off);
    border-radius: 14px
}

.pages-sd {
    text-align: center
}

.pages-lbl {
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: .25rem
}

.pages-val {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1;
    transition: color .4s
}

.pages-arr {
    font-size: 1.5rem;
    color: #cbd5e1
}

/* active fixes chips */
.fix-chips {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    min-height: 28px;
    margin-bottom: 1rem
}

.fix-chip {
    font-size: .63rem;
    font-weight: 700;
    padding: .18rem .6rem;
    border-radius: 100px;
    background: var(--blue-l);
    color: var(--blue);
    animation: fadein .2s ease
}

.sim-note {
    font-size: .71rem;
    color: var(--muted);
    line-height: 1.6;
    text-align: center;
    border-top: 1px solid var(--border);
    padding-top: .875rem
}

/* ===================== COMPARISON ===================== */
.cmp-sec {
    background: #fff;
    padding: 6rem 0
}

.cmpbox {
    border: 1.5px solid var(--border);
    border-radius: 18px;
    overflow: hidden
}

.cmpscroll {
    overflow-x: auto
}

.cmpt {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px
}

.cmpt th {
    padding: .9rem 1.25rem;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: var(--muted);
    background: var(--off);
    border-bottom: 2px solid var(--border);
    text-align: left
}

.cmpt th.thus {
    background: var(--blue-l);
    color: var(--blue)
}

.cmpt td {
    padding: .9rem 1.25rem;
    font-size: .84rem;
    border-bottom: 1px solid #f1f5f9;
    text-align: left
}

.cmpt tr:last-child td {
    border-bottom: none
}

.cmpt tr:hover td {
    background: #fafbff
}

.cmpt td:first-child {
    font-weight: 600;
    color: var(--text)
}

.tdno {
    color: #94a3b8
}

.tdmeh {
    color: #d97706
}

.tdyes {
    background: #f0fdf4;
    color: #15803d;
    font-weight: 700
}

.tdyes,
.cmpt th.thus {
    border-left: 2px solid rgba(0, 82, 224, .12)
}

.ix {
    color: var(--red);
    font-weight: 800
}

.io {
    color: var(--green);
    font-weight: 800
}

.im {
    color: #d97706;
    font-weight: 800
}

/* ===================== SCORE RINGS ===================== */
.rings-sec {
    background: linear-gradient(160deg, #060d1a, #0d1b30);
    padding: 6rem 0;
    position: relative;
    overflow: hidden
}

.rings-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(8, 145, 178, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 145, 178, .05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 100% at 50% 50%, #000, transparent)
}

.rsh {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1
}

.rsh h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: .75rem
}

.rsh p {
    font-size: .95rem;
    color: rgba(255, 255, 255, .4);
    max-width: 52ch;
    margin: 0 auto;
    line-height: 1.78
}

.rgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
    position: relative;
    z-index: 1
}

.rcard {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: background .2s, transform .2s, border-color .2s
}

.rcard:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(8, 145, 178, .3);
    transform: translateY(-4px)
}

.rsvgw {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 1.25rem
}

.rsvgw svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg)
}

.rinn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center
}

.rval {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -.04em
}

.rwas {
    font-size: .6rem;
    color: rgba(255, 255, 255, .28);
    margin-top: .2rem
}

.rlbl {
    font-size: .88rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .3rem
}

.rsub {
    font-size: .71rem;
    color: rgba(255, 255, 255, .36);
    line-height: 1.55
}

/* ===================== RESULTS ===================== */
.results-sec {
    background: #fff;
    padding: 6rem 0
}

.resgrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem
}

.rc {
    background: var(--off);
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow .2s, transform .2s
}

.rc:hover {
    box-shadow: 0 12px 36px rgba(0, 0, 0, .07);
    transform: translateY(-4px)
}

.rctop {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border)
}

.rcdom {
    font-family: var(--mono);
    font-size: .7rem;
    color: var(--muted);
    margin-bottom: .75rem
}

.rcmet {
    display: flex;
    gap: 1rem
}

.rcm {
    flex: 1;
    text-align: center
}

.rcmv {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1
}

.rcml {
    font-size: .64rem;
    color: var(--muted);
    margin-top: .18rem
}

.rcbot {
    padding: 1.25rem 1.5rem
}

.rcq {
    font-size: .81rem;
    color: var(--muted);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: .875rem
}

.rcby {
    display: flex;
    align-items: center;
    gap: .625rem;
    border-top: 1px solid var(--border);
    padding-top: .875rem
}

.rcav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .64rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.rcn {
    font-size: .79rem;
    font-weight: 700;
    line-height: 1
}

.rcr {
    font-size: .69rem;
    color: var(--muted);
    margin-top: .1rem
}

/* ===================== FAQ ===================== */
.faq-sec {
    background: var(--off);
    padding: 6rem 0;
    border-top: 1px solid var(--border)
}

.faqlyt {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 3.5rem;
    align-items: start
}

.faqstk {
    position: sticky;
    top: 6rem
}

.faqstk h2 {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: .75rem
}

.faqstk p {
    font-size: .875rem;
    color: var(--muted);
    line-height: 1.78;
    margin-bottom: 1.5rem
}

.faqbox {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    padding: 1.25rem
}

.faqbox h4 {
    font-size: .88rem;
    font-weight: 700;
    margin-bottom: .35rem
}

.faqbox p {
    font-size: .79rem;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: .5rem
}

.faqbox a {
    font-size: .79rem;
    color: var(--blue);
    font-weight: 600
}

.faqlist {
    display: flex;
    flex-direction: column;
    gap: .625rem
}

.faqitem {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .18s
}

.faqitem.open {
    border-color: rgba(0, 82, 224, .3);
    box-shadow: 0 4px 16px rgba(0, 82, 224, .07)
}

.faqq {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    cursor: pointer;
    user-select: none;
    font-size: .875rem;
    font-weight: 600
}

.faqico {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    background: var(--blue-l);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    font-weight: 700;
    color: var(--blue);
    flex-shrink: 0;
    transition: background .15s, transform .25s
}

.faqitem.open .faqico {
    background: var(--blue);
    color: #fff;
    transform: rotate(45deg)
}

.faqa {
    display: none;
    padding: 0 1.25rem 1.1rem;
    font-size: .84rem;
    color: var(--muted);
    line-height: 1.78
}

.faqitem.open .faqa {
    display: block
}

/* RESPONSIVE */
@media(max-width:1100px) {

    .hero-in,
    .split {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .hero-in {
        padding-bottom: 4rem
    }

    .tpanel.act {
        grid-template-columns: 1fr
    }

    .simlyt {
        grid-template-columns: 1fr
    }

    .sim-res {
        position: static
    }

    .faqlyt {
        grid-template-columns: 1fr
    }

    .faqstk {
        position: static
    }

    .rgrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .procgrid {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:900px) {
    .sgrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .sitem {
        border-bottom: 1px solid var(--border)
    }

    .sitem:nth-child(odd) {
        border-right: 1px solid var(--border)
    }

    .sitem:nth-child(even) {
        border-right: none
    }

    .bagrid {
        grid-template-columns: 1fr
    }

    .resgrid {
        grid-template-columns: 1fr
    }
}

@media(max-width:600px) {

    .rgrid,
    .procgrid {
        grid-template-columns: 1fr
    }

    .hbtns {
        flex-direction: column
    }

    .hbtns .btn {
        justify-content: center
    }
}