.ts-wrap,
.ts-wrap *,
.ts-wrap *::before,
.ts-wrap *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

.ts-wrap {
    font-family: "Plus Jakarta Sans", sans-serif;
    color: #0f172a;
    -webkit-font-smoothing: antialiased;
    width: 100vw;
    max-width: 100vw;
    display: block;
    overflow-x: hidden;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    padding: 0 !important;
}

.ts-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px)
}

.ts-sec {
    padding: 4.5rem 0;
}

/* ── Keyframes ── */
@keyframes ts-fadeUp {
    from {
        opacity: 0;
        transform: translateY(22px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes ts-pulse-ring {
    0% {
        transform: scale(1);
        opacity: .7
    }

    100% {
        transform: scale(2.5);
        opacity: 0
    }
}

@keyframes ts-glow-cyan {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(8, 145, 178, .32)
    }

    50% {
        box-shadow: 0 4px 32px rgba(8, 145, 178, .65), 0 0 0 6px rgba(8, 145, 178, .1)
    }
}

@keyframes ts-shimmer {
    0% {
        transform: translateX(-100%)
    }

    100% {
        transform: translateX(220%)
    }
}

@keyframes ts-scan {
    0% {
        transform: translateY(-100%)
    }

    100% {
        transform: translateY(600%)
    }
}

@keyframes ts-float {

    0%,
    100% {
        transform: translateY(0)
    }

    45% {
        transform: translateY(-9px)
    }

    70% {
        transform: translateY(-4px)
    }
}

@keyframes ts-blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .2
    }
}

@keyframes ts-spin {
    from {
        transform: rotate(0deg)
    }

    to {
        transform: rotate(360deg)
    }
}

@keyframes ts-count {
    from {
        opacity: 0;
        transform: scale(.8) translateY(6px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes ts-bar {
    from {
        width: 0
    }

    to {
        width: var(--w)
    }
}

@keyframes ts-ticker {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

/* ── Reveal ── */
.ts-rv {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s cubic-bezier(.22, 1, .36, 1), transform .6s cubic-bezier(.22, 1, .36, 1)
}

.ts-rv.ts-in {
    opacity: 1;
    transform: none
}

.ts-rv-l {
    opacity: 0;
    transform: translateX(-24px);
    transition: opacity .6s cubic-bezier(.22, 1, .36, 1), transform .6s cubic-bezier(.22, 1, .36, 1)
}

.ts-rv-l.ts-in {
    opacity: 1;
    transform: none
}

.ts-rv-r {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity .6s cubic-bezier(.22, 1, .36, 1), transform .6s cubic-bezier(.22, 1, .36, 1)
}

.ts-rv-r.ts-in {
    opacity: 1;
    transform: none
}

/* ── Buttons ── */
.ts-btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .88rem;
    font-weight: 600;
    padding: .75rem 1.5rem;
    border-radius: 10px;
    text-decoration: none;
    transition: background .15s, transform .14s, box-shadow .2s;
    border: none;
    cursor: pointer;
    white-space: nowrap
}

.ts-btn svg {
    width: 13px;
    height: 13px;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ts-btn-cyan {
    background: #0052e0;
    color: #fff;
    box-shadow: 0 4px 20px rgba(8, 145, 178, .38), 0 0 0 1px rgba(8, 145, 178, .4);
    animation: ts-glow-cyan 3s 2s ease-in-out infinite
}

.ts-btn-cyan:hover {
    background: #0e7490;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(8, 145, 178, .52)
}

.ts-btn-cyan svg {
    stroke: #fff
}

.ts-btn-cyan.ts-lg {
    font-size: .92rem;
    padding: .85rem 1.7rem
}

.ts-btn-ghost-d {
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .82);
    border: 1px solid rgba(255, 255, 255, .14);
    backdrop-filter: blur(8px)
}

.ts-btn-ghost-d:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .24);
    transform: translateY(-1px)
}

.ts-btn-ghost-d svg {
    stroke: currentColor
}

.ts-btn-ghost-l {
    background: transparent;
    color: #0052e0;
    border: 1.5px solid rgba(8, 145, 178, .3)
}

.ts-btn-ghost-l:hover {
    background: #f0f5ff;
    transform: translateY(-1px)
}

.ts-btn-ghost-l svg {
    stroke: currentColor
}

/* ── Labels ── */
.ts-chip {
    display: inline-flex;
    align-items: center;
    gap: .38rem;
    font-size: .67rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: #0052e0;
    margin-bottom: .7rem
}

.ts-chip svg {
    width: 9px;
    height: 9px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.ts-chip.ts-lt {
    color: rgba(103, 232, 249, .85)
}

.ts-h2 {
    font-size: clamp(1.3rem, 2.8vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.032em;
    color: #0f172a;
    margin-top: .5rem
}

.ts-h2.ts-wh {
    color: #fff
}

/* ══════════════════════════════
   1. HERO
══════════════════════════════ */
.ts-hero {
    background: #020b12;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0
}

.ts-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(8, 145, 178, .07) 1px, transparent 1px), linear-gradient(90deg, rgba(8, 145, 178, .07) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 90% 80% at 55% 30%, #000 35%, transparent 100%);
    pointer-events: none
}

.ts-hero::after {
    content: '';
    position: absolute;
    top: -180px;
    right: -120px;
    width: min(750px, 78vw);
    height: min(750px, 78vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8, 145, 178, .18) 0%, rgba(6, 182, 212, .07) 45%, transparent 70%);
    pointer-events: none
}

.ts-hg2 {
    position: absolute;
    bottom: -200px;
    left: -80px;
    width: min(500px, 58vw);
    height: min(500px, 58vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, .09) 0%, transparent 65%);
    pointer-events: none
}

.ts-hg3 {
    position: absolute;
    top: 35%;
    right: 10%;
    width: min(280px, 32vw);
    height: min(280px, 32vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, .07) 0%, transparent 65%);
    pointer-events: none
}

.ts-hero-scan {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: .22
}

.ts-hero-scan::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(6, 182, 212, .8), transparent);
    animation: ts-scan 10s linear infinite
}

.ts-hero-body {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem clamp(16px, 4vw, 40px) 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center
}

.ts-hero-left {
    padding-bottom: 5rem
}

.ts-hero-left>* {
    animation: ts-fadeUp .6s ease both
}

.ts-hero-left>*:nth-child(1) {
    animation-delay: .04s
}

.ts-hero-left>*:nth-child(2) {
    animation-delay: .12s
}

.ts-hero-left>*:nth-child(3) {
    animation-delay: .2s
}

.ts-hero-left>*:nth-child(4) {
    animation-delay: .28s
}

.ts-hero-left>*:nth-child(5) {
    animation-delay: .36s
}

.ts-crumb {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .68rem;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 1.5rem;
    flex-wrap: wrap
}

.ts-crumb a {
    color: rgba(255, 255, 255, .4);
    text-decoration: none;
    transition: color .15s
}

.ts-crumb a:hover {
    color: rgba(255, 255, 255, .7)
}

.ts-crumb svg {
    width: 7px;
    height: 7px;
    stroke: rgba(255, 255, 255, .18);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0
}

.ts-svc-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: rgba(0, 82, 224, .2);
    border: 1px solid rgba(0, 82, 224, .4);
    color: rgba(148, 196, 255, .9);
    border-radius: 100px;
    padding: .32rem 1rem .32rem .45rem;
    font-size: .72rem;
    font-weight: 600;
    color: rgb(255 255 255 / 92%);
    margin-bottom: .75rem;
    backdrop-filter: blur(6px);
    box-shadow: 0 0 24px rgba(8, 145, 178, .12);
}

.ts-svc-badge-ico {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #0052e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 12px rgba(8, 145, 178, .55)
}

.ts-svc-badge-ico svg {
    width: 10px;
    height: 10px;
    stroke: #fff;
    fill: none;
    stroke-width: 2.5
}

.ts-hero-h1 {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.07;
    letter-spacing: -.042em;
    color: #fff;
    margin-bottom: 1.1rem
}

.ts-hl {
    background: linear-gradient(135deg, #0052e0 0%, #0052e0 40%, #38bdf8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ts-hl2 {
    background: linear-gradient(135deg, #0052e0 0%, #0052e0 40%, #38bdf8 100%);
    ;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ts-hero-desc {
    font-size: .97rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, .5);
    max-width: 44ch;
    margin-bottom: 2rem
}

.ts-hero-btns {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
    margin-bottom: 2.25rem
}

.ts-proof-row {
    display: flex;
    gap: .45rem;
    flex-wrap: wrap
}

.ts-proof-pill {
    display: flex;
    align-items: center;
    gap: .35rem;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 100px;
    padding: .28rem .8rem;
    font-size: .7rem;
    color: rgba(255, 255, 255, .45);
    transition: border-color .2s, background .2s
}

.ts-proof-pill:hover {
    border-color: rgba(6, 182, 212, .3);
    background: rgba(8, 145, 178, .1)
}

.ts-proof-pill strong {
    color: rgba(255, 255, 255, .85);
    font-weight: 700
}

.ts-pp-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0052e0;
    flex-shrink: 0;
    box-shadow: 0 0 6px #0052e0
}

/* ── Hero Right: Technical Audit Terminal ── */
.ts-hero-right {
    animation: ts-fadeUp .65s .18s ease both;
    position: relative;
    padding-bottom: 4rem
}

.ts-terminal {
    background: linear-gradient(145deg, #030d14, #071828);
    border: 1px solid rgba(6, 182, 212, .22);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, .55), inset 0 1px 0 rgba(6, 182, 212, .1)
}

.ts-term-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: .85rem 1.2rem;
    background: rgba(255, 255, 255, .03);
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.ts-tb-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%
}

.ts-tb-dot:nth-child(1) {
    background: #ff5f57
}

.ts-tb-dot:nth-child(2) {
    background: #ffbd2e
}

.ts-tb-dot:nth-child(3) {
    background: #28ca41
}

.ts-term-title {
    font-family: "JetBrains Mono", monospace;
    font-size: .62rem;
    color: rgba(255, 255, 255, .2);
    margin-left: .5rem;
    flex: 1
}

.ts-term-live {
    display: flex;
    align-items: center;
    gap: .32rem;
    font-size: .62rem;
    font-weight: 600;
    color: #0052e0;
    margin-left: auto
}

.ts-tlv-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0052e0;
    animation: ts-blink 1.8s infinite
}

/* Audit rows */
.ts-audit-rows {
    padding: .75rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: .22rem
}

.ts-ar {
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .42rem .6rem;
    border-radius: 7px;
    font-family: "JetBrains Mono", monospace;
    font-size: .66rem;
    transition: background .15s
}

.ts-ar:hover {
    background: rgba(255, 255, 255, .03)
}

.ts-ar-ico {
    width: 16px;
    height: 16px;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .58rem
}

.ts-ar-ok .ts-ar-ico {
    background: rgba(16, 185, 129, .22);
    color: #34d399
}

.ts-ar-warn .ts-ar-ico {
    background: rgba(245, 158, 11, .2);
    color: #fbbf24
}

.ts-ar-fail .ts-ar-ico {
    background: rgba(239, 68, 68, .2);
    color: #f87171
}

.ts-ar-label {
    color: rgba(255, 255, 255, .35);
    width: 120px;
    flex-shrink: 0;
    font-size: .6rem
}

.ts-ar-val {
    color: rgba(255, 255, 255, .62);
    flex: 1;
    font-size: .63rem
}

.ts-ar-badge {
    font-size: .56rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: .1rem .4rem;
    border-radius: 3px
}

.ts-ar-ok .ts-ar-badge {
    background: rgba(16, 185, 129, .18);
    color: #34d399
}

.ts-ar-warn .ts-ar-badge {
    background: rgba(245, 158, 11, .18);
    color: #fbbf24
}

.ts-ar-fail .ts-ar-badge {
    background: rgba(239, 68, 68, .18);
    color: #f87171
}

/* CWV score bar */
.ts-cwv-wrap {
    padding: .75rem 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, .05)
}

.ts-cwv-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .65rem
}

.ts-cwv-lbl {
    font-family: "JetBrains Mono", monospace;
    font-size: .6rem;
    color: rgba(255, 255, 255, .25);
    text-transform: uppercase;
    letter-spacing: .08em
}

.ts-cwv-score {
    font-family: "JetBrains Mono", monospace;
    font-size: .72rem;
    font-weight: 700;
    color: #0052e0
}

.ts-cwv-bars {
    display: flex;
    flex-direction: column;
    gap: .4rem
}

.ts-cwv-row {
    display: flex;
    align-items: center;
    gap: .65rem
}

.ts-cwv-name {
    font-family: "JetBrains Mono", monospace;
    font-size: .58rem;
    color: rgba(255, 255, 255, .32);
    width: 38px;
    flex-shrink: 0
}

.ts-cwv-track {
    flex: 1;
    height: 5px;
    background: rgba(255, 255, 255, .07);
    border-radius: 100px;
    overflow: hidden
}

.ts-cwv-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 1.4s cubic-bezier(.22, 1, .36, 1)
}

.ts-cwv-num {
    font-family: "JetBrains Mono", monospace;
    font-size: .6rem;
    width: 32px;
    text-align: right;
    flex-shrink: 0
}

/* Terminal footer */
.ts-term-footer {
    padding: .65rem 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, .05);
    display: flex;
    align-items: center;
    gap: .45rem
}

.ts-tf-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0052e0;
    animation: ts-blink 1.4s infinite
}

.ts-tf-txt {
    font-family: "JetBrains Mono", monospace;
    font-size: .6rem;
    color: rgba(6, 182, 212, .5)
}

.ts-float-pill {
    position: absolute;
    bottom: -2rem;
    left: .875rem;
    background: rgba(2, 11, 18, .96);
    border: 1px solid rgba(6, 182, 212, .2);
    border-radius: 14px;
    padding: .75rem 1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    min-width: 250px;
    animation: ts-float 5.5s ease-in-out infinite;
    box-shadow: 0 12px 36px rgba(0, 0, 0, .5), 0 0 0 1px rgba(8, 145, 178, .1);
    backdrop-filter: blur(16px);
    z-index: 2
}

.ts-fp-ico {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(8, 145, 178, .16);
    border: 1px solid rgba(6, 182, 212, .24);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ts-fp-ico svg {
    width: 13px;
    height: 13px;
    stroke: #0052e0;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ts-fp-t {
    font-size: .72rem;
    font-weight: 700;
    color: #fff
}

.ts-fp-s {
    font-size: .6rem;
    color: rgba(255, 255, 255, .38);
    margin-top: 1px
}

/* ══════════════════════════════
   TICKER
══════════════════════════════ */
.ts-ticker {
    background: #fff;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 1.1rem 0;
    overflow: hidden;
    position: relative
}

.ts-ticker::before,
.ts-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none
}

.ts-ticker::before {
    left: 0;
    background: linear-gradient(90deg, #fff, transparent)
}

.ts-ticker::after {
    right: 0;
    background: linear-gradient(-90deg, #fff, transparent)
}

.ts-ttrack {
    display: flex;
    white-space: nowrap;
    animation: ts-ticker 32s linear infinite
}

.ts-ti {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    padding: 0 2rem;
    font-size: .8rem;
    font-weight: 600;
    color: #64748b
}

.ts-ti svg {
    width: 12px;
    height: 12px;
    stroke: #0052e0;
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0
}

.ts-tdot {
    padding: 0 .5rem;
    color: #e2e8f0
}

/* ══════════════════════════════
   STATS STRIP
══════════════════════════════ */
.ts-stats {
    background: linear-gradient(180deg, #f8fafc, #fff);
    border-bottom: 1px solid #e2e8f0;
    padding: 0;
    position: relative
}

.ts-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #0052e0, #06b6d4, #0052e0, transparent)
}

.ts-sgrid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.ts-sitem {
    text-align: center;
    padding: 2.25rem 1.5rem;
    border-right: 1px solid #e2e8f0
}

.ts-sitem:last-child {
    border-right: none
}

.ts-sico {
    font-size: 1.6rem;
    margin-bottom: .875rem
}

.ts-sval {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: -.06em;
    color: #0f172a;
    line-height: 1;
    margin-bottom: .4rem
}

.ts-sval b {
    font-size: 1.35rem;
    color: #0052e0
}

.ts-slbl {
    font-size: .78rem;
    color: #64748b;
    line-height: 1.55;
    max-width: 16ch;
    margin: 0 auto
}

/* ══════════════════════════════
   2. WHAT WE DO — 2×3 grid
══════════════════════════════ */
.ts-wwd-sec {
    background: #fff;
    border-bottom: 1px solid #e2e8f0
}

.ts-sh {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: end;
    margin-bottom: .75rem
}

.ts-wwd-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem
}

.ts-wwd-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.65rem;
    position: relative;
    overflow: hidden;
    transition: border-color .22s, box-shadow .22s, transform .22s;
    cursor: default
}

.ts-wwd-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0052e0, #0052e0, #38bdf8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s cubic-bezier(.22, 1, .36, 1)
}

.ts-wwd-card:hover {
    border-color: rgba(8, 145, 178, .22);
    box-shadow: 0 18px 48px rgba(8, 145, 178, .1);
    transform: translateY(-6px)
}

.ts-wwd-card:hover::before {
    transform: scaleX(1)
}

.ts-wwd-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1rem
}

.ts-wwd-ico {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: #f0f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, box-shadow .2s
}

.ts-wwd-ico svg {
    width: 20px;
    height: 20px;
    stroke: #0052e0;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .2s
}

.ts-wwd-card:hover .ts-wwd-ico {
    background: #0052e0;
    box-shadow: 0 6px 18px rgba(8, 145, 178, .4)
}

.ts-wwd-card:hover .ts-wwd-ico svg {
    stroke: #fff
}

.ts-wwd-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: #e2e8f0;
    letter-spacing: -.04em;
    line-height: 1;
    transition: color .2s
}

.ts-wwd-card:hover .ts-wwd-num {
    color: #cffafe
}

.ts-wwd-title {
    font-size: .97rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .38rem
}

.ts-wwd-desc {
    font-size: .82rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: .875rem
}

.ts-wwd-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .32rem
}

.ts-wt {
    font-size: .62rem;
    font-weight: 600;
    color: #0052e0;
    background: #f0f5ff;
    padding: .18rem .55rem;
    border-radius: 100px;
    transition: background .15s, color .15s
}

.ts-wwd-card:hover .ts-wt {
    background: #0052e0;
    color: #fff
}

/* ══════════════════════════════
   3. WHY IT MATTERS
══════════════════════════════ */
.ts-why-sec {
    background: #f0f5ff;
}

.ts-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: stretch
}

.ts-why-copy {
    font-size: .88rem;
    color: #475569;
    line-height: 1.78;
    margin-bottom: 1.4rem
}

.ts-why-copy strong {
    color: #0f172a;
    font-weight: 700
}

.ts-why-checks {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.85rem
}

.ts-wck {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .83rem;
    color: #475569;
    line-height: 1.55;
    padding: .5rem .65rem;
    border-radius: 10px;
    background: rgba(8, 145, 178, .05);
    border: 1px solid rgba(8, 145, 178, .12);
    transition: background .15s, border-color .15s
}

.ts-wck:hover {
    background: rgba(8, 145, 178, .1);
    border-color: rgba(8, 145, 178, .22)
}

.ts-wck-tick {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: background .15s
}

.ts-wck-tick svg {
    width: 9px;
    height: 9px;
    stroke: #0052e0;
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ts-wck:hover .ts-wck-tick {
    background: #0052e0
}

.ts-wck:hover .ts-wck-tick svg {
    stroke: #fff
}

.ts-why-right {
    display: flex;
    flex-direction: column;
    gap: .875rem
}

.ts-wstat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .875rem
}

.ts-wstat {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.5rem 1.4rem 1.5rem 1.65rem;
    transition: border-color .22s, box-shadow .22s, transform .2s;
    position: relative;
    overflow: hidden
}

.ts-wstat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #0052e0, #0052e0);
    opacity: .3;
    transition: opacity .2s, width .2s
}

.ts-wstat:hover {
    border-color: rgba(8, 145, 178, .22);
    box-shadow: 0 10px 32px rgba(8, 145, 178, .1);
    transform: translateY(-4px)
}

.ts-wstat:hover::before {
    opacity: 1;
    width: 5px
}

.ts-wstat-val {
    font-size: 1.85rem;
    font-weight: 800;
    color: #0052e0;
    letter-spacing: -.04em;
    line-height: 1;
    margin-bottom: .3rem
}

.ts-wstat:hover .ts-wstat-val {
    background: linear-gradient(135deg, #0052e0, #0052e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ts-wstat-title {
    font-size: .8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .2rem
}

.ts-wstat-sub {
    font-size: .71rem;
    color: #94a3b8;
    line-height: 1.4
}

.ts-wstat-wide {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.15rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 1.1rem;
    transition: border-color .22s, box-shadow .22s, transform .2s
}

.ts-wstat-wide:hover {
    border-color: rgba(8, 145, 178, .22);
    box-shadow: 0 10px 32px rgba(8, 145, 178, .1);
    transform: translateY(-4px)
}

.ts-wstat-wide-ico {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: #0052e0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(8, 145, 178, .35)
}

.ts-wstat-wide-ico svg {
    width: 18px;
    height: 18px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ts-wstat-wide-val {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0052e0;
    letter-spacing: -.04em;
    line-height: 1;
    flex-shrink: 0
}

.ts-wstat-wide-title {
    font-size: .8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 2px
}

.ts-wstat-wide-sub {
    font-size: .71rem;
    color: #94a3b8;
    line-height: 1.35
}

.ts-quote-card {
    background: linear-gradient(145deg, #0052e0, #0e7490);
    border-radius: 16px;
    padding: 1.4rem;
    position: relative;
    overflow: hidden
}

.ts-quote-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 12px;
    font-size: 5rem;
    color: rgba(255, 255, 255, .1);
    font-family: serif;
    line-height: 1;
    pointer-events: none
}

.ts-qc-text {
    font-size: .82rem;
    color: rgba(255, 255, 255, .88);
    line-height: 1.72;
    margin-bottom: 1rem;
    font-style: italic;
    position: relative;
    z-index: 1
}

.ts-qc-by {
    display: flex;
    align-items: center;
    gap: .7rem;
    position: relative;
    z-index: 1
}

.ts-qc-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .2);
    border: 1.5px solid rgba(255, 255, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0
}

.ts-qc-name {
    font-size: .78rem;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.ts-qc-role {
    font-size: .65rem;
    color: rgba(255, 255, 255, .55);
    margin-top: 2px
}

.ts-qc-stars {
    font-size: .72rem;
    color: #fbbf24;
    margin-left: auto;
    letter-spacing: 1px
}

/* ══════════════════════════════
   4. TECHNICAL PILLARS — white
══════════════════════════════ */
.ts-pillars-sec {
    background: #fff;
    border-top: 1px solid #e2e8f0
}

.ts-pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4.5rem;
    align-items: start
}

.ts-pillar-visual {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.ts-pv-head {
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .11em;
    color: #94a3b8;
    margin-bottom: .5rem;
    display: flex;
    align-items: center;
    gap: .45rem
}

.ts-pv-head::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0052e0;
    display: block;
    box-shadow: 0 0 8px rgba(8, 145, 178, .5)
}

.ts-pillar {
    border-radius: 14px;
    padding: 1.1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform .2s, box-shadow .2s;
    cursor: default;
    border: 1.5px solid transparent
}

.ts-pillar:hover {
    transform: translateY(-2px)
}

.ts-p-crawl {
    background: linear-gradient(135deg, rgba(8, 145, 178, .08), rgba(8, 145, 178, .03));
    border-color: rgba(8, 145, 178, .18)
}

.ts-p-crawl:hover {
    box-shadow: 0 8px 24px rgba(8, 145, 178, .12)
}

.ts-p-speed {
    background: linear-gradient(135deg, rgba(16, 185, 129, .08), rgba(16, 185, 129, .03));
    border-color: rgba(16, 185, 129, .18)
}

.ts-p-speed:hover {
    box-shadow: 0 8px 24px rgba(16, 185, 129, .12)
}

.ts-p-index {
    background: linear-gradient(135deg, rgba(245, 158, 11, .08), rgba(245, 158, 11, .03));
    border-color: rgba(245, 158, 11, .18)
}

.ts-p-index:hover {
    box-shadow: 0 8px 24px rgba(245, 158, 11, .12)
}

.ts-p-struct {
    background: linear-gradient(135deg, rgba(124, 58, 237, .08), rgba(124, 58, 237, .03));
    border-color: rgba(124, 58, 237, .18)
}

.ts-p-struct:hover {
    box-shadow: 0 8px 24px rgba(124, 58, 237, .12)
}

.ts-p-mobile {
    background: linear-gradient(135deg, rgba(244, 63, 94, .07), rgba(244, 63, 94, .03));
    border-color: rgba(244, 63, 94, .14)
}

.ts-p-mobile:hover {
    box-shadow: 0 8px 24px rgba(244, 63, 94, .1)
}

.ts-p-ico {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ts-p-crawl .ts-p-ico {
    background: rgba(8, 145, 178, .14)
}

.ts-p-speed .ts-p-ico {
    background: rgba(16, 185, 129, .14)
}

.ts-p-index .ts-p-ico {
    background: rgba(245, 158, 11, .14)
}

.ts-p-struct .ts-p-ico {
    background: rgba(124, 58, 237, .14)
}

.ts-p-mobile .ts-p-ico {
    background: rgba(244, 63, 94, .12)
}

.ts-p-ico svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ts-p-crawl .ts-p-ico svg {
    stroke: #0052e0
}

.ts-p-speed .ts-p-ico svg {
    stroke: #10b981
}

.ts-p-index .ts-p-ico svg {
    stroke: #d97706
}

.ts-p-struct .ts-p-ico svg {
    stroke: #7c3aed
}

.ts-p-mobile .ts-p-ico svg {
    stroke: #f43f5e
}

.ts-p-label {
    font-size: .6rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .14rem
}

.ts-p-crawl .ts-p-label {
    color: #0052e0
}

.ts-p-speed .ts-p-label {
    color: #10b981
}

.ts-p-index .ts-p-label {
    color: #d97706
}

.ts-p-struct .ts-p-label {
    color: #7c3aed
}

.ts-p-mobile .ts-p-label {
    color: #f43f5e
}

.ts-p-title {
    font-size: .85rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .1rem
}

.ts-p-sub {
    font-size: .72rem;
    color: #64748b;
    line-height: 1.45
}

.ts-p-bar-wrap {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: .3rem;
    flex-shrink: 0
}

.ts-p-pct {
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: -.02em
}

.ts-p-crawl .ts-p-pct {
    color: #0052e0
}

.ts-p-speed .ts-p-pct {
    color: #10b981
}

.ts-p-index .ts-p-pct {
    color: #d97706
}

.ts-p-struct .ts-p-pct {
    color: #7c3aed
}

.ts-p-mobile .ts-p-pct {
    color: #f43f5e
}

.ts-p-track {
    width: 80px;
    height: 5px;
    background: #f1f5f9;
    border-radius: 100px;
    overflow: hidden
}

.ts-p-fill {
    height: 100%;
    border-radius: 100px;
    transition: width 1.4s cubic-bezier(.22, 1, .36, 1)
}

.ts-p-crawl .ts-p-fill {
    background: linear-gradient(90deg, #0052e0, #0052e0)
}

.ts-p-speed .ts-p-fill {
    background: linear-gradient(90deg, #10b981, #34d399)
}

.ts-p-index .ts-p-fill {
    background: linear-gradient(90deg, #d97706, #fbbf24)
}

.ts-p-struct .ts-p-fill {
    background: linear-gradient(90deg, #7c3aed, #a78bfa)
}

.ts-p-mobile .ts-p-fill {
    background: linear-gradient(90deg, #f43f5e, #fb7185)
}

.ts-pv-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: .5rem;
    margin-top: 1rem
}

.ts-pvs {
    text-align: center;
    padding: .6rem .3rem;
    background: #f8fafc;
    border-radius: 9px;
    border: 1px solid #e2e8f0
}

.ts-pvs-v {
    font-size: 1rem;
    font-weight: 800;
    color: #0052e0;
    letter-spacing: -.03em;
    line-height: 1
}

.ts-pvs-l {
    font-size: .58rem;
    color: #94a3b8;
    margin-top: 3px
}

.ts-pillars-copy p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.3rem
}

.ts-pillars-list {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    margin-bottom: 1.85rem
}

.ts-fl {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    font-size: .83rem;
    color: #475569;
    line-height: 1.5;
    padding: .5rem .65rem;
    border-radius: 10px;
    background: rgba(8, 145, 178, .04);
    border: 1px solid rgba(8, 145, 178, .08);
    transition: background .15s, border-color .15s
}

.ts-fl:hover {
    background: rgba(8, 145, 178, .09);
    border-color: rgba(8, 145, 178, .15)
}

.ts-fl-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0052e0;
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 0 6px rgba(8, 145, 178, .4)
}

/* ══════════════════════════════
   5. CORE WEB VITALS SECTION
══════════════════════════════ */
.ts-cwv-sec {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0
}

.ts-cwv-head-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: end;
    margin-bottom: 1rem
}

.ts-cwv-head-row p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.72;
}

.ts-cwv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem
}

.ts-cwv-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.65rem;
    position: relative;
    overflow: hidden;
    transition: border-color .22s, box-shadow .22s, transform .22s;
    cursor: default
}

.ts-cwv-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--cwv-color, #0052e0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s cubic-bezier(.22, 1, .36, 1)
}

.ts-cwv-card:hover {
    box-shadow: 0 16px 42px rgba(0, 0, 0, .07);
    transform: translateY(-5px)
}

.ts-cwv-card:hover::after {
    transform: scaleX(1)
}

.ts-cwv-metric {
    font-family: "JetBrains Mono", monospace;
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #0052e0;
    margin-bottom: .5rem
}

.ts-cwv-val {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1;
    margin-bottom: .35rem;
    color: #0f172a
}

.ts-cwv-unit {
    font-size: 1rem;
    color: #94a3b8;
    font-weight: 500
}

.ts-cwv-target {
    font-size: .72rem;
    color: #94a3b8;
    margin-bottom: .875rem
}

.ts-cwv-target b {
    color: #0f172a;
    font-weight: 700
}

.ts-cwv-progress {
    height: 6px;
    background: #f1f5f9;
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: .5rem
}

.ts-cwv-prog-fill {
    height: 100%;
    border-radius: 100px;
    background: var(--cwv-color, #0052e0);
    transition: width 1.4s cubic-bezier(.22, 1, .36, 1)
}

.ts-cwv-status {
    font-size: .65rem;
    font-weight: 700;
    padding: .18rem .6rem;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: .3rem
}

.ts-cwv-status svg {
    width: 8px;
    height: 8px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5
}

.ts-cwv-good {
    background: #dcfce7;
    color: #15803d
}

.ts-cwv-needs {
    background: #fef3c7;
    color: #92400e
}

.ts-cwv-poor {
    background: #fee2e2;
    color: #b91c1c
}

.ts-cwv-impact {
    background: linear-gradient(135deg, #0052e0, #0e7490);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem
}

.ts-cwv-impact-txt h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .25rem
}

.ts-cwv-impact-txt p {
    font-size: .8rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.6;
    max-width: 50ch
}

.ts-cwv-impact-stats {
    display: flex;
    gap: 2rem;
    flex-shrink: 0
}

.ts-cwv-is {
    text-align: center
}

.ts-cwv-is-v {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.04em;
    line-height: 1
}

.ts-cwv-is-l {
    font-size: .65rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 3px
}

/* ══════════════════════════════
   6. PROCESS — dark
══════════════════════════════ */
.ts-proc-sec {
    background: #020b12;
    position: relative;
    overflow: hidden
}

.ts-proc-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none
}

.ts-proc-sec::after {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: min(360px, 45vw);
    height: min(360px, 45vw);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8, 145, 178, .14) 0%, transparent 65%);
    pointer-events: none
}

.ts-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
}

.ts-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 1
}

.ts-step {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 1.5rem;
    transition: background .22s, border-color .22s, transform .2s;
    position: relative;
    overflow: hidden
}

.ts-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0052e0, #0052e0);
    opacity: 0;
    transition: opacity .22s
}

.ts-step:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(8, 145, 178, .3);
    transform: translateY(-4px)
}

.ts-step:hover::before {
    opacity: 1
}

.ts-step.ts-active-step {
    background: rgba(8, 145, 178, .1);
    border-color: rgba(8, 145, 178, .35)
}

.ts-step.ts-active-step::before {
    opacity: 1
}

.ts-step-num {
    font-family: "JetBrains Mono", monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #0052e06b;
    letter-spacing: -.05em;
    line-height: 1;
    margin-bottom: .875rem
}

.ts-step.ts-active-step .ts-step-num {
    color: rgba(8, 145, 178, .5)
}

.ts-step-title {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: .45rem;
    line-height: 1.3
}

.ts-step-desc {
    font-size: .8rem;
    color: rgba(255, 255, 255, .42);
    line-height: 1.7;
    margin-bottom: .875rem
}

.ts-step-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .32rem
}

.ts-step-tag {
    font-size: .6rem;
    font-weight: 600;
    color: rgb(255 255 255);
    background: rgba(8, 145, 178, .1);
    border: 1px solid rgba(8, 145, 178, .18);
    border-radius: 100px;
    padding: .13rem .52rem
}

/* Timeline bar */
.ts-timeline {
    display: flex;
    gap: 0;
    margin-top: 2.5rem;
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 14px;
    overflow: hidden
}

.ts-tl-item {
    flex: 1;
    padding: 1rem .75rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, .06)
}

.ts-tl-item:last-child {
    border-right: none
}

.ts-tl-day {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -.04em
}

.ts-tl-lbl {
    font-size: .58rem;
    color: rgba(255, 255, 255, .3);
    margin-top: .2rem;
    font-family: "JetBrains Mono", monospace
}

.ts-tl-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #0052e0;
    margin: .55rem auto 0;
    box-shadow: 0 0 0 2px rgba(8, 145, 178, .3)
}

/* ══════════════════════════════
   7. TOOLS WE USE
══════════════════════════════ */
.ts-tools-sec {
    background: #fff;
    border-top: 1px solid #e2e8f0
}

.ts-sh2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: end;
    margin-bottom: 2.75rem
}

.ts-sh2 p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.72;
    margin-top: .65rem
}

.ts-tools-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.1rem
}

.ts-tool-card {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.4rem 1.2rem;
    transition: border-color .2s, box-shadow .2s, transform .2s;
    position: relative;
    overflow: hidden
}

.ts-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0052e0, #0052e0);
    opacity: 0;
    transition: opacity .2s
}

.ts-tool-card:hover {
    border-color: rgba(8, 145, 178, .25);
    box-shadow: 0 8px 24px rgba(8, 145, 178, .09);
    transform: translateY(-4px)
}

.ts-tool-card:hover::before {
    opacity: 1
}

.ts-tool-ico {
    font-size: 1.55rem;
    margin-bottom: .75rem
}

.ts-tool-card h4 {
    font-size: .88rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .3rem
}

.ts-tool-card p {
    font-size: .75rem;
    color: #475569;
    line-height: 1.6
}

.ts-tool-tag {
    display: inline-block;
    margin-top: .55rem;
    font-size: .6rem;
    font-weight: 700;
    color: #0052e0;
    background: #f0f5ff;
    border-radius: 5px;
    padding: .13rem .48rem
}

/* ══════════════════════════════
   8. DELIVERABLES
══════════════════════════════ */
.ts-deliv-sec {
    background: #f0f5ff;
    border-top: 1px solid #a5f3fc;
    border-bottom: 1px solid #a5f3fc
}

.ts-deliv-head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: end;
    margin-bottom: 1rem
}

.ts-deliv-head p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.72;
    margin-top: .65rem
}

.ts-deliv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem
}

.ts-dcard {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.65rem;
    position: relative;
    overflow: hidden;
    transition: border-color .22s, box-shadow .22s, transform .22s
}

.ts-dcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0052e0, #0052e0);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s cubic-bezier(.22, 1, .36, 1)
}

.ts-dcard:hover {
    border-color: rgba(8, 145, 178, .2);
    box-shadow: 0 18px 48px rgba(8, 145, 178, .1);
    transform: translateY(-7px)
}

.ts-dcard:hover::before {
    transform: scaleX(1)
}

.ts-dcard-ico {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #f0f5ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: .95rem;
    transition: background .2s, box-shadow .2s
}

.ts-dcard-ico svg {
    width: 19px;
    height: 19px;
    stroke: #0052e0;
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: stroke .2s
}

.ts-dcard:hover .ts-dcard-ico {
    background: #0052e0;
    box-shadow: 0 6px 18px rgba(8, 145, 178, .4)
}

.ts-dcard:hover .ts-dcard-ico svg {
    stroke: #fff
}

.ts-dcard h3 {
    font-size: .97rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .38rem
}

.ts-dcard p {
    font-size: .81rem;
    color: #475569;
    line-height: 1.68;
    margin-bottom: .85rem
}

.ts-dlist {
    display: flex;
    flex-direction: column;
    gap: .3rem
}

.ts-dl {
    display: flex;
    align-items: flex-start;
    gap: .48rem;
    font-size: .75rem;
    color: #475569
}

.ts-dl-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #0052e0;
    flex-shrink: 0;
    margin-top: 5px;
    box-shadow: 0 0 5px rgba(8, 145, 178, .35)
}

/* ══════════════════════════════
   9. COMPARISON TABLE
══════════════════════════════ */
.ts-cmp-sec {
    background: #fff;
    border-top: 1px solid #e2e8f0
}

.ts-cmpbox {
    border: 1.5px solid #e2e8f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .04)
}

.ts-cmpscroll {
    overflow-x: auto
}

.ts-cmpt {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px
}

.ts-cmpt th {
    padding: .9rem 1.25rem;
    font-size: .68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    color: #64748b;
    background: #f8fafc;
    border-bottom: 2px solid #e2e8f0;
    text-align: left
}

.ts-cmpt th.ts-thus {
    background: rgba(8, 145, 178, .07);
    color: #0052e0
}

.ts-cmpt td {
    padding: .9rem 1.25rem;
    font-size: .84rem;
    border-bottom: 1px solid #f1f5f9;
    text-align: left
}

.ts-cmpt tr:last-child td {
    border-bottom: none
}

.ts-cmpt tr:hover td {
    background: #f8fffe
}

.ts-cmpt td:first-child {
    font-weight: 600;
    color: #0f172a
}

.ts-tdno {
    color: #94a3b8
}

.ts-tdmeh {
    color: #d97706
}

.ts-tdyes {
    background: #f0f5ff;
    color: #0e7490;
    font-weight: 700
}

.ts-tdyes,
.ts-cmpt th.ts-thus {
    border-left: 2px solid rgba(8, 145, 178, .2)
}

.ts-ix {
    color: #dc2626;
    font-weight: 800
}

.ts-io {
    color: #0052e0;
    font-weight: 800
}

.ts-im {
    color: #d97706;
    font-weight: 800
}

/* ══════════════════════════════
   10. FAQ
══════════════════════════════ */
.ts-faq-sec {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0
}

.ts-faq-inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 5rem;
    align-items: start
}

.ts-faq-left .ts-h2 {
    margin: .65rem 0 .85rem
}

.ts-faq-left>p {
    font-size: .88rem;
    color: #475569;
    line-height: 1.75;
    margin-bottom: 1.85rem
}

.ts-faq-cta {
    background: #f0f5ff;
    border: 1.5px solid #a5f3fc;
    border-radius: 16px;
    padding: 1.4rem 1.5rem
}

.ts-faq-cta h4 {
    font-size: .94rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .35rem
}

.ts-faq-cta p {
    font-size: .79rem;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 1rem
}

.ts-faq-list {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.ts-faq-item {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 13px;
    overflow: hidden;
    transition: border-color .2s, box-shadow .2s
}

.ts-faq-item.ts-open {
    border-color: rgba(8, 145, 178, .25);
    box-shadow: 0 6px 24px rgba(8, 145, 178, .08)
}

.ts-faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    cursor: pointer;
    user-select: none;
    transition: background .15s
}

.ts-faq-q:hover {
    background: #f0f5ff
}

.ts-faq-qt {
    font-size: .85rem;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.45
}

.ts-faq-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #cffafe;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .2s, transform .25s
}

.ts-faq-icon svg {
    width: 9px;
    height: 9px;
    stroke: #0052e0;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ts-faq-item.ts-open .ts-faq-icon {
    background: #0052e0;
    transform: rotate(45deg)
}

.ts-faq-item.ts-open .ts-faq-icon svg {
    stroke: #fff
}

.ts-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .38s cubic-bezier(.22, 1, .36, 1)
}

.ts-faq-item.ts-open .ts-faq-a {
    max-height: 320px
}

.ts-faq-ai {
    padding: .15rem 1.2rem 1rem;
    font-size: .82rem;
    color: #475569;
    line-height: 1.75
}

.ts-faq-ai strong {
    color: #0f172a;
    font-weight: 700
}

/* ══════════════════════════════
   11. RESULTS + AUDIT CTA
══════════════════════════════ */
.ts-results-sec {
    background: #f0f5ff;
    border-top: 1px solid #a5f3fc
}

.ts-results-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 1.75rem;
    align-items: start
}

.ts-result-cards {
    display: flex;
    flex-direction: column;
    gap: .875rem
}

.ts-rcard {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    padding: 1.3rem 1.5rem;
    display: grid;
    grid-template-columns: 90px 2px 1fr;
    align-items: center;
    gap: 1.1rem;
    transition: box-shadow .22s, transform .2s, border-color .2s;
    position: relative;
    overflow: hidden
}

.ts-rcard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #0052e0, #0052e0);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .28s cubic-bezier(.22, 1, .36, 1)
}

.ts-rcard:hover {
    box-shadow: 0 8px 28px rgba(8, 145, 178, .1);
    transform: translateY(-3px);
    border-color: rgba(8, 145, 178, .18)
}

.ts-rcard:hover::before {
    transform: scaleY(1)
}

.ts-rcard-num {
    font-size: 2rem;
    font-weight: 800;
    color: #0052e0;
    letter-spacing: -.04em;
    line-height: 1;
    text-align: right
}

.ts-rcard:hover .ts-rcard-num {
    background: linear-gradient(135deg, #0052e0, #0052e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ts-rcard-div {
    width: 2px;
    height: 36px;
    background: #cffafe;
    border-radius: 2px;
    justify-self: center
}

.ts-rcard-title {
    font-size: .84rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: .18rem;
    line-height: 1.42
}

.ts-rcard-sub {
    font-size: .73rem;
    color: #94a3b8;
    margin-bottom: .35rem
}

.ts-rcard-tag {
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    font-size: .61rem;
    font-weight: 600;
    color: #0e7490;
    background: #cffafe;
    padding: .14rem .5rem;
    border-radius: 100px;
    transition: background .15s, color .15s
}

.ts-rcard:hover .ts-rcard-tag {
    background: #0052e0;
    color: #fff
}

.ts-rcard-tag svg {
    width: 7px;
    height: 7px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.ts-audit-cta {
    background: linear-gradient(145deg, #020b12 0%, #071828 100%);
    border-radius: 18px;
    padding: 1.75rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25)
}

.ts-audit-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(8, 145, 178, .13) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none
}

.ts-audit-cta::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(8, 145, 178, .22), transparent 65%);
    pointer-events: none
}

.ts-ac-in {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: .7rem
}

.ts-ac-ey {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: rgba(103, 232, 249, .65);
    display: flex;
    align-items: center;
    gap: .32rem
}

.ts-ac-ey svg {
    width: 8px;
    height: 8px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5
}

.ts-ac-ttl {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.22;
    letter-spacing: -.022em
}

.ts-ac-ttl span {
    background: linear-gradient(135deg, #67e8f9, #0052e0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.ts-ac-sub {
    font-size: .77rem;
    color: rgba(255, 255, 255, .38);
    line-height: 1.62
}

.ts-ac-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .42rem;
    background: #0052e0;
    color: #fff;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .86rem;
    font-weight: 600;
    padding: .78rem 1.1rem;
    border-radius: 9px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(8, 145, 178, .38);
    transition: background .15s, transform .12s;
    border: none;
    cursor: pointer;
    animation: ts-glow-cyan 3s 1.5s ease-in-out infinite
}

.ts-ac-btn:hover {
    background: #0e7490;
    transform: translateY(-2px)
}

.ts-ac-btn svg {
    width: 12px;
    height: 12px;
    stroke: #fff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ts-ac-ph {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .42rem;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .62);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: .8rem;
    font-weight: 500;
    padding: .7rem 1.1rem;
    border-radius: 9px;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .09);
    transition: background .15s
}

.ts-ac-ph:hover {
    background: rgba(255, 255, 255, .1)
}

.ts-ac-ph svg {
    width: 11px;
    height: 11px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round
}

.ts-ac-trust {
    display: flex;
    flex-direction: column;
    gap: .3rem;
    padding-top: .85rem;
    border-top: 1px solid rgba(255, 255, 255, .07)
}

.ts-ac-ti {
    display: flex;
    align-items: center;
    gap: .32rem;
    font-size: .66rem;
    color: rgba(255, 255, 255, .28)
}

.ts-ac-ti svg {
    width: 9px;
    height: 9px;
    stroke: rgba(6, 182, 212, .65);
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0
}

/* ── Responsive ── */
@media(max-width:1200px) {
    .ts-results-layout {
        grid-template-columns: 1fr 290px
    }
}

@media(max-width:1024px) {

    .ts-hero-body,
    .ts-pillars-grid {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .ts-hero-right {
        display: none
    }

    .ts-hero-left {
        padding-bottom: 4.5rem
    }

    .ts-sh {
        grid-template-columns: 1fr;
        gap: .85rem
    }

    .ts-sh2 {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .ts-why-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .ts-cwv-head-row {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .ts-faq-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem
    }

    .ts-results-layout {
        grid-template-columns: 1fr;
        gap: 1.5rem
    }
}

@media(max-width:900px) {
    .ts-wwd-grid {
        grid-template-columns: 1fr 1fr
    }

    .ts-cwv-grid {
        grid-template-columns: 1fr
    }

    .ts-tools-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .ts-deliv-grid {
        grid-template-columns: 1fr
    }

    .ts-deliv-head {
        grid-template-columns: 1fr;
        gap: 1rem
    }

    .ts-sec {
        padding: 16px;
    }

    .ts-steps-grid {
        grid-template-columns: 1fr 1fr
    }

    .ts-sgrid {
        grid-template-columns: repeat(2, 1fr)
    }

    .ts-sitem {
        border-bottom: 1px solid #e2e8f0
    }

    .ts-sitem:nth-child(odd) {
        border-right: 1px solid #e2e8f0
    }

    .ts-sitem:nth-child(even) {
        border-right: none
    }
}

@media(max-width:640px) {

    .ts-wwd-grid,
    .ts-steps-grid,
    .ts-tools-grid {
        grid-template-columns: 1fr
    }

    .ts-wstat-grid {
        grid-template-columns: 1fr
    }

    .ts-hero-btns {
        flex-direction: column
    }

    .ts-btn-ghost-l {
        width: 100%;
        justify-content: center
    }

    .ts-cwv-impact {
        flex-direction: column
    }

    .ts-cwv-impact-stats {
        justify-content: center
    }
}