﻿        /* ════════════════════════════════════════
           DESIGN TOKENS
        ════════════════════════════════════════ */
        :root {
            --tp-green:   #09cd91;
            --tp-green-d: #07b07c;
            --tp-blue:    #4fc3f7;
            --tp-purple:  #7c6dfa;
            --tp-amber:   #ffb74d;
            --tp-rose:    #f06292;
            --tp-teal:    #26c6da;
            --card-bg:    rgba(255,255,255,0.035);
            --card-border:rgba(255,255,255,0.07);
            --muted:      rgba(200,208,220,0.65);
            --rx:         20px;
            --tr:         0.25s ease;
        }

        /* ════════════════════════════════════════
           GLOBAL HELPERS
        ════════════════════════════════════════ */
        .tp-grad {
            background: linear-gradient(135deg, var(--tp-green) 0%, var(--tp-blue) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .tp-grad-full {
            background: linear-gradient(135deg, var(--tp-green) 0%, var(--tp-blue) 55%, var(--tp-purple) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .tp-divider { border: none; border-top: 1px solid rgba(255,255,255,.06); margin: 0; }

        .tp-label {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 11.5px;
            font-weight: 700;
            color: var(--tp-green);
            letter-spacing: .1em;
            text-transform: uppercase;
            margin-bottom: 14px;
        }
        .tp-section-title {
            font-size: clamp(1.75rem, 3.5vw, 2.6rem);
            font-weight: 800;
            color: #f0f4f8;
            line-height: 1.2;
            letter-spacing: -.02em;
            margin-bottom: 16px;
        }
        .tp-section-sub {
            font-size: .98rem;
            color: var(--muted);
            line-height: 1.75;
            max-width: 580px;
            margin: 0 auto;
        }
        .tp-section     { padding: 96px 20px; }
        .tp-section-alt {
            padding: 96px 20px;
            background: rgba(255,255,255,.018);
            border-top: 1px solid rgba(255,255,255,.06);
            border-bottom: 1px solid rgba(255,255,255,.06);
        }

        /* ═══ BUTTONS ═══ */
        .tp-btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: linear-gradient(135deg, var(--tp-green) 0%, var(--tp-green-d) 100%);
            color: #050e1c;
            font-weight: 700;
            font-size: .9rem;
            padding: 13px 30px;
            border-radius: 10px;
            text-decoration: none;
            transition: opacity var(--tr), transform var(--tr);
            letter-spacing: .02em;
        }
        .tp-btn-primary:hover { opacity:.88; transform:translateY(-2px); color:#050e1c; text-decoration:none; }
        .tp-btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.12);
            color: #d8e0ec;
            font-weight: 600;
            font-size: .9rem;
            padding: 13px 28px;
            border-radius: 10px;
            text-decoration: none;
            transition: background var(--tr), border-color var(--tr), transform var(--tr);
        }
        .tp-btn-secondary:hover {
            background: rgba(255,255,255,.1);
            border-color: rgba(255,255,255,.2);
            transform: translateY(-2px);
            color: #f0f4f8;
            text-decoration: none;
        }

        /* ════════════════════════════════════════
           1. HERO
        ════════════════════════════════════════ */
        .tp-hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 130px 20px 90px;
            position: relative;
            overflow: hidden;
        }
        .tp-hero-orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
        }
        .tp-orb-1 {
            top: -8%;  right: -6%;
            width: 640px; height: 640px;
            background: radial-gradient(circle, rgba(9,205,145,.1) 0%, transparent 68%);
        }
        .tp-orb-2 {
            bottom: 5%; left: -10%;
            width: 520px; height: 520px;
            background: radial-gradient(circle, rgba(79,195,247,.07) 0%, transparent 68%);
        }
        .tp-orb-3 {
            top: 35%; left: 42%;
            width: 340px; height: 340px;
            background: radial-gradient(circle, rgba(124,109,250,.06) 0%, transparent 68%);
        }
        .tp-hero-inner { position: relative; z-index: 1; }

        .tp-badge {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: rgba(9,205,145,.08);
            border: 1px solid rgba(9,205,145,.22);
            border-radius: 50px;
            padding: 5px 16px;
            font-size: 11.5px;
            font-weight: 600;
            color: var(--tp-green);
            letter-spacing: .06em;
            text-transform: uppercase;
            margin-bottom: 28px;
        }
        .tp-badge-dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: var(--tp-green);
            animation: tp-pulse 1.8s ease-in-out infinite;
        }
        @keyframes tp-pulse {
            0%,100%{ opacity:1; transform:scale(1); }
            50%    { opacity:.4; transform:scale(.7); }
        }

        .tp-hero-h1 {
            font-size: clamp(2.4rem, 5.5vw, 3.8rem);
            font-weight: 800;
            line-height: 1.12;
            color: #f0f4f8;
            margin-bottom: 22px;
            letter-spacing: -.02em;
        }
        .tp-hero-sub {
            font-size: 1.1rem;
            color: var(--muted);
            line-height: 1.75;
            max-width: 520px;
            margin-bottom: 40px;
        }

        /* hero stats */
        .tp-stats { display: flex; flex-wrap: wrap; gap: 32px; margin-top: 52px; }
        .tp-stat-value { font-size: 1.8rem; font-weight: 800; color: var(--tp-green); line-height: 1; }
        .tp-stat-label { font-size: .78rem; color: var(--muted); margin-top: 4px; letter-spacing: .03em; }
        .tp-stat-div   { width: 1px; background: rgba(255,255,255,.1); align-self: stretch; }

        /* hero graphic */
        .tp-glass-card {
            background: rgba(255,255,255,.042);
            border: 1px solid rgba(255,255,255,.08);
            border-radius: var(--rx);
            padding: 22px 24px;
            backdrop-filter: blur(12px);
        }
        .tp-graphic-title {
            font-size: .75rem;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: .08em;
            margin-bottom: 16px;
        }
        .tp-graphic-row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,.05);
        }
        .tp-graphic-row:last-child { border-bottom: none; }
        .tp-graphic-label {
            font-size: .82rem;
            color: rgba(200,208,220,.8);
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .tp-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
        .tp-platform-status {
            font-size: .75rem; font-weight: 600;
            padding: 3px 9px; border-radius: 20px;
        }
        .tp-status-active  { background: rgba(9,205,145,.12);   color: var(--tp-green);  }
        .tp-status-live    { background: rgba(79,195,247,.12);  color: var(--tp-blue);   }
        .tp-status-inst    { background: rgba(124,109,250,.12); color: var(--tp-purple); }
        .tp-status-prop    { background: rgba(255,183,77,.12);  color: var(--tp-amber);  }

        .tp-float-badge {
            z-index: 2;
            position: absolute;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(9,205,145,.1);
            border: 1px solid rgba(9,205,145,.25);
            border-radius: 8px;
            padding: 7px 12px;
            font-size: .75rem;
            font-weight: 600;
            color: var(--tp-green);
            white-space: nowrap;
            backdrop-filter: blur(8px);
            animation: tp-float 3s ease-in-out infinite;
        }
        .tp-float-badge-b {
            background: rgba(79,195,247,.1);
            border-color: rgba(79,195,247,.25);
            color: var(--tp-blue);
            animation-delay: 1.5s;
        }
        @keyframes tp-float {
            0%,100%{ transform: translateY(0); }
            50%    { transform: translateY(-7px); }
        }

        /* ════════════════════════════════════════
           BREADCRUMB
        ════════════════════════════════════════ */
        .tp-breadcrumb {
            display: flex; align-items: center; gap: 6px;
            margin-bottom: 28px; font-size: 12.5px; color: rgba(200,208,220,.45);
        }
        .tp-breadcrumb a { color: rgba(9,205,145,.7); text-decoration: none; transition: color .18s; }
        .tp-breadcrumb a:hover { color: var(--tp-green); }
        .tp-breadcrumb-sep { opacity: .4; }

        /* ════════════════════════════════════════
           2. OVERVIEW CARDS
        ════════════════════════════════════════ */
        .tp-feature-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--rx);
            padding: 30px 26px;
            height: 100%;
            transition: transform var(--tr), border-color var(--tr), background var(--tr);
        }
        .tp-feature-card:hover {
            transform: translateY(-5px);
            border-color: rgba(9,205,145,.2);
            background: rgba(9,205,145,.04);
        }
        .tp-feature-icon {
            width: 52px; height: 52px;
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 20px;
        }
        .tp-icon-green  { background: rgba(9,205,145,.1);   color: var(--tp-green);  }
        .tp-icon-blue   { background: rgba(79,195,247,.1);  color: var(--tp-blue);   }
        .tp-icon-purple { background: rgba(124,109,250,.1); color: var(--tp-purple); }
        .tp-icon-amber  { background: rgba(255,183,77,.1);  color: var(--tp-amber);  }
        .tp-icon-teal   { background: rgba(38,198,218,.1);  color: var(--tp-teal);   }
        .tp-icon-rose   { background: rgba(240,98,146,.1);  color: var(--tp-rose);   }
        .tp-feature-name { font-size: 1rem; font-weight: 700; color: #ecf0f8; margin-bottom: 8px; }
        .tp-feature-desc { font-size: .83rem; color: var(--muted); line-height: 1.65; }

        /* ════════════════════════════════════════
           3. PLATFORM CARDS
        ════════════════════════════════════════ */
        .tp-platform-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--rx);
            padding: 28px 24px;
            height: 100%;
            position: relative;
            overflow: hidden;
            transition: transform var(--tr), border-color var(--tr), box-shadow var(--tr), background var(--tr);
        }
        .tp-platform-card::before {
            content:'';
            position: absolute; inset: 0;
            border-radius: inherit;
            background: linear-gradient(135deg, rgba(9,205,145,0) 0%, rgba(9,205,145,0.04) 100%);
            opacity: 0;
            transition: opacity var(--tr);
        }
        .tp-platform-card:hover::before { opacity: 1; }
        .tp-platform-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(9,205,145,.12), 0 8px 24px rgba(0,0,0,.4);
            border-color: rgba(9,205,145,.25);
            background: rgba(255,255,255,.055);
        }
        .tp-platform-icon {
            width: 52px; height: 52px;
            border-radius: 14px;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0;
            margin-bottom: 18px;
        }
        .tp-platform-tag {
            font-size: 10.5px; font-weight: 700;
            letter-spacing: .08em; text-transform: uppercase;
            margin-bottom: 3px;
        }
        .tp-platform-name {
            font-size: 17px; font-weight: 800;
            color: #f0f4f8; line-height: 1.2;
            margin-bottom: 12px;
        }
        .tp-platform-desc {
            font-size: .83rem; color: var(--muted);
            line-height: 1.65; margin-bottom: 16px;
        }
        .tp-bullet {
            display: flex; align-items: center; gap: 8px;
            font-size: .78rem; color: rgba(200,210,225,.75);
            margin-bottom: 6px;
        }
        .tp-bullet::before {
            content: '';
            display: block; flex-shrink: 0;
            width: 5px; height: 5px; border-radius: 50%;
            background: var(--tp-green);
        }
        .tp-learn-link {
            display: inline-flex; align-items: center; gap: 5px;
            font-size: .78rem; font-weight: 600;
            color: var(--tp-green); text-decoration: none;
            letter-spacing: .04em;
            transition: gap .2s ease, opacity .2s ease;
        }
        .tp-learn-link:hover { gap: 9px; opacity: .85; text-decoration: none; }
        .tp-inner-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(9,205,145,.25), transparent);
            margin: 16px 0;
        }

        /* ════════════════════════════════════════
           4. HOW IT WORKS — TIMELINE
        ════════════════════════════════════════ */
        .tp-timeline {
            position: relative;
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .tp-timeline::before {
            content: '';
            position: absolute;
            left: 23px; top: 28px; bottom: 28px;
            width: 2px;
            background: linear-gradient(to bottom, var(--tp-green) 0%, rgba(79,195,247,.3) 100%);
            border-radius: 2px;
        }
        @media (min-width:768px) {
            .tp-timeline::before { left: 50%; transform: translateX(-50%); }
        }
        .tp-tl-item {
            display: flex; gap: 20px;
            padding: 0 0 40px 60px;
            position: relative;
        }
        @media (min-width:768px) {
            .tp-tl-item {
                width: 50%; padding: 0 48px 48px 0;
                text-align: right; align-self: flex-start;
            }
            .tp-tl-item:nth-child(even) {
                align-self: flex-end;
                padding: 0 0 48px 48px;
                text-align: left;
                margin-top: -48px;
            }
        }
        .tp-tl-node {
            position: absolute; left: 0; top: 0;
            width: 48px; height: 48px; border-radius: 50%;
            background: linear-gradient(135deg, rgba(9,205,145,.15) 0%, rgba(79,195,247,.15) 100%);
            border: 1.5px solid rgba(9,205,145,.35);
            display: flex; align-items: center; justify-content: center;
            font-size: .82rem; font-weight: 800; color: var(--tp-green);
            z-index: 1; flex-shrink: 0;
        }
        @media (min-width:768px) {
            .tp-tl-item:nth-child(odd)  .tp-tl-node { left: auto; right: -24px; }
            .tp-tl-item:nth-child(even) .tp-tl-node { left: -24px; right: auto; }
        }
        .tp-tl-node.active {
            background: linear-gradient(135deg, var(--tp-green), var(--tp-green-d));
            border-color: var(--tp-green);
            color: #050e1c;
            box-shadow: 0 0 22px rgba(9,205,145,.4);
        }
        .tp-tl-body { flex: 1; }
        .tp-tl-name { font-size: .95rem; font-weight: 700; color: #ecf0f8; margin-bottom: 6px; }
        .tp-tl-desc { font-size: .82rem; color: var(--muted); line-height: 1.65; }

        .tp-preview {
            background: rgba(255,255,255,.032);
            border: 1px solid rgba(255,255,255,.08);
            border-radius: var(--rx);
            overflow: hidden;
        }
        .tp-preview-header {
            background: rgba(255,255,255,.04);
            border-bottom: 1px solid rgba(255,255,255,.06);
            padding: 14px 20px;
            display: flex; align-items: center; gap: 8px;
        }
        .tp-preview-dot { width: 10px; height: 10px; border-radius: 50%; }
        .tp-preview-title { font-size: .73rem; color: var(--muted); margin-left: 6px; letter-spacing: .06em; text-transform: uppercase; }
        .tp-preview-body { padding: 20px; }
        .tp-metric {
            background: rgba(255,255,255,.03);
            border: 1px solid rgba(255,255,255,.07);
            border-radius: 12px;
            padding: 14px 16px;
            margin-bottom: 10px;
        }
        .tp-metric:last-child { margin-bottom: 0; }
        .tp-metric-label { font-size: .72rem; color: var(--muted); margin-bottom: 6px; letter-spacing: .04em; }
        .tp-metric-bar { height: 6px; border-radius: 3px; background: rgba(255,255,255,.07); overflow: hidden; margin-bottom: 6px; }
        .tp-metric-fill { height: 100%; border-radius: 3px; }
        .tp-metric-row { display: flex; justify-content: space-between; align-items: center; }
        .tp-metric-val { font-size: .82rem; font-weight: 700; }
        .tp-metric-status { font-size: .7rem; font-weight: 600; padding: 2px 8px; border-radius: 10px; }

        /* ════════════════════════════════════════
           9. CTA SECTION
        ════════════════════════════════════════ */
        .tp-cta-section {
            padding: 96px 20px;
            position: relative;
            overflow: hidden;
        }
        .tp-cta-bg {
            position: absolute; inset: 0;
            background:
                radial-gradient(ellipse 60% 80% at 20% 50%, rgba(9,205,145,.12) 0%, transparent 65%),
                radial-gradient(ellipse 50% 70% at 80% 50%, rgba(79,195,247,.1) 0%, transparent 65%),
                rgba(255,255,255,.022);
            border-top: 1px solid rgba(255,255,255,.07);
            border-bottom: 1px solid rgba(255,255,255,.07);
        }
        .tp-cta-inner { position: relative; z-index: 1; text-align: center; }
        .tp-cta-title {
            font-size: clamp(2rem, 4vw, 3.2rem);
            font-weight: 800;
            color: #f0f4f8;
            line-height: 1.15;
            letter-spacing: -.02em;
            margin-bottom: 18px;
        }
        .tp-cta-sub {
            font-size: 1rem; color: var(--muted);
            line-height: 1.7; max-width: 460px; margin: 0 auto 40px;
        }
        .tp-cta-trust {
            display: flex; align-items: center; justify-content: center;
            gap: 24px; flex-wrap: wrap;
            margin-top: 40px; padding-top: 36px;
            border-top: 1px solid rgba(255,255,255,.06);
        }
        .tp-cta-trust-item {
            display: flex; align-items: center; gap: 7px;
            font-size: .8rem; color: rgba(200,208,220,.5);
        }

        /* ════════════════════════════════════════
           10. CAROUSEL
        ════════════════════════════════════════ */
        .tp-carousel-section { padding: 80px 20px; }
        .tp-carousel-track-wrap {
            position: relative; overflow: hidden;
        }
        .tp-carousel-track-wrap::before,
        .tp-carousel-track-wrap::after {
            content: ''; position: absolute; top: 0; bottom: 0;
            width: 80px; z-index: 2; pointer-events: none;
        }
        .tp-carousel-track-wrap::before {
            left: 0;
            background: linear-gradient(to right, rgba(30,32,36,1) 0%, transparent 100%);
        }
        .tp-carousel-track-wrap::after {
            right: 0;
            background: linear-gradient(to left, rgba(30,32,36,1) 0%, transparent 100%);
        }
        .tp-carousel-track {
            display: flex; gap: 20px;
            overflow-x: auto; scroll-behavior: smooth;
            padding: 8px 16px 20px;
            scrollbar-width: none; -ms-overflow-style: none;
            cursor: grab;
        }
        .tp-carousel-track:active { cursor: grabbing; }
        .tp-carousel-track::-webkit-scrollbar { display: none; }
        .tp-carousel-card {
            flex: 0 0 280px;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--rx);
            padding: 26px 24px 22px;
            transition: transform var(--tr), border-color var(--tr), background var(--tr);
            text-decoration: none;
            display: block;
            user-select: none;
        }
        .tp-carousel-card:hover {
            transform: translateY(-4px);
            border-color: rgba(9,205,145,.22);
            background: rgba(9,205,145,.04);
            text-decoration: none;
        }
        .tp-car-icon {
            width: 44px; height: 44px;
            border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 16px;
        }
        .tp-car-title { font-size: .92rem; font-weight: 700; color: #ecf0f8; margin-bottom: 7px; }
        .tp-car-desc  { font-size: .77rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
        .tp-car-cta {
            display: inline-flex; align-items: center; gap: 5px;
            font-size: .78rem; font-weight: 600; color: var(--tp-green);
            opacity: .75;
            transition: opacity var(--tr), gap var(--tr);
        }
        .tp-carousel-card:hover .tp-car-cta { opacity: 1; gap: 8px; }
        .tp-carousel-controls {
            display: flex; justify-content: center; align-items: center;
            gap: 12px; margin-top: 28px;
        }
        .tp-carousel-btn {
            width: 40px; height: 40px; border-radius: 50%;
            background: rgba(255,255,255,.06);
            border: 1px solid rgba(255,255,255,.1);
            color: rgba(200,208,220,.8);
            display: flex; align-items: center; justify-content: center;
            cursor: pointer;
            transition: background var(--tr), border-color var(--tr), color var(--tr);
        }
        .tp-carousel-btn:hover {
            background: rgba(9,205,145,.12);
            border-color: rgba(9,205,145,.3);
            color: var(--tp-green);
        }
        .tp-carousel-dots { display: flex; gap: 6px; }
        .tp-car-dot {
            width: 6px; height: 6px; border-radius: 50%;
            background: rgba(255,255,255,.2);
            cursor: pointer;
            transition: background var(--tr), width var(--tr);
        }
        .tp-car-dot.active { background: var(--tp-green); width: 18px; border-radius: 3px; }

        /* ════════════════════════════════════════
           CAROUSEL (cards)
        ════════════════════════════════════════ */
        .tp-carousel-outer {
            position: relative;
        }
        .tp-carousel-prev,
        .tp-carousel-next {
            position: absolute;
            top: 50%; transform: translateY(-50%);
            z-index: 3;
        }
        .tp-carousel-prev { left: -20px; }
        .tp-carousel-next { right: -20px; }
        .tp-cc-icon {
            width: 44px; height: 44px; border-radius: 12px;
            display: flex; align-items: center; justify-content: center;
            margin-bottom: 16px;
        }
        .tp-cc-title { font-size: .92rem; font-weight: 700; color: #ecf0f8; margin-bottom: 7px; }
        .tp-cc-desc  { font-size: .77rem; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
        .tp-cc-link {
            display: inline-flex; align-items: center; gap: 5px;
            font-size: .78rem; font-weight: 600;
            opacity: .75;
            transition: opacity var(--tr), gap var(--tr);
        }
        .tp-carousel-card:hover .tp-cc-link { opacity: 1; gap: 8px; }
        .tp-carousel-dot {
            width: 6px; height: 6px; border-radius: 50%;
            background: rgba(255,255,255,.2);
            border: none; cursor: pointer;
            transition: background var(--tr), width var(--tr);
            padding: 0;
        }
        .tp-carousel-dot.active { background: var(--tp-green); width: 18px; border-radius: 3px; }
        .tp-carousel-dots { display: flex; gap: 6px; justify-content: center; margin-top: 24px; }

        /* ════════════════════════════════════════
           4. TIMELINE
        ════════════════════════════════════════ */
        .tp-timeline { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
        .tp-tl-item {
            display: flex; gap: 28px;
            padding: 0 0 48px 0;
            position: relative;
        }
        .tp-tl-item:last-child { padding-bottom: 0; }
        .tp-tl-node { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
        .tp-tl-step {
            width: 48px; height: 48px; border-radius: 50%;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            display: flex; align-items: center; justify-content: center;
            font-size: .8rem; font-weight: 800; color: var(--tp-green);
            letter-spacing: .04em;
            position: relative; z-index: 1;
            flex-shrink: 0;
        }
        .tp-tl-connector {
            flex: 1; width: 1px;
            background: linear-gradient(to bottom, rgba(9,205,145,.3), rgba(9,205,145,.05));
            margin-top: 8px;
            min-height: 40px;
        }
        .tp-tl-content { padding-top: 10px; }
        .tp-tl-label {
            font-size: .72rem; font-weight: 700;
            letter-spacing: .08em; text-transform: uppercase;
            margin-bottom: 6px;
        }
        .tp-tl-title { font-size: 1.05rem; font-weight: 700; color: #ecf0f8; margin-bottom: 8px; }
        .tp-tl-desc { font-size: .85rem; color: var(--muted); line-height: 1.7; }

        /* ════════════════════════════════════════
           5. COMPARE TABLE
        ════════════════════════════════════════ */
        .tp-compare-wrap {
            overflow-x: auto;
            border-radius: var(--rx);
            border: 1px solid var(--card-border);
            background: var(--card-bg);
        }
        .tp-compare-table {
            width: 100%; border-collapse: collapse; min-width: 760px;
        }
        .tp-compare-table thead tr {
            border-bottom: 1px solid rgba(255,255,255,.07);
        }
        .tp-compare-table th {
            padding: 14px 18px;
            font-size: .72rem; font-weight: 700;
            color: var(--muted); text-transform: uppercase; letter-spacing: .07em;
            text-align: left; white-space: nowrap;
        }
        .tp-compare-table td {
            padding: 14px 18px;
            font-size: .82rem; color: rgba(200,210,220,.8);
            border-bottom: 1px solid rgba(255,255,255,.04);
            white-space: nowrap;
        }
        .tp-compare-table tbody tr:last-child td { border-bottom: none; }
        .tp-compare-table tbody tr:hover td { background: rgba(9,205,145,.025); }
        .tp-compare-platform {
            display: flex; align-items: center; gap: 8px;
            font-weight: 700; color: #ecf0f8; font-size: .85rem;
        }
        .tp-compare-assets { font-size: .8rem; color: #ecf0f8; font-weight: 600; }
        .tp-badge {
            display: inline-block; padding: 3px 10px; border-radius: 20px;
            font-size: .72rem; font-weight: 700; letter-spacing: .04em;
        }
        .tp-badge-ultra { background: rgba(9,205,145,.1); color: var(--tp-green); }
        .tp-badge-fast  { background: rgba(79,195,247,.1); color: var(--tp-blue); }
        .tp-badge-high  { background: rgba(255,183,77,.1); color: var(--tp-amber); }
        .tp-badge-yes   { background: rgba(9,205,145,.08); color: #7de8c6; }
        .tp-badge-no    { background: rgba(255,255,255,.05); color: var(--muted); }
        .tp-usecase-pill {
            display: inline-block; padding: 3px 10px; border-radius: 20px;
            font-size: .72rem; font-weight: 600;
            background: rgba(255,255,255,.04);
            border: 1px solid rgba(255,255,255,.08);
            color: rgba(200,210,220,.65);
        }
        .tp-compare-note {
            text-align: center; font-size: .73rem;
            color: rgba(190,205,220,.3); margin-top: 14px;
        }

        /* ════════════════════════════════════════
           6. INTEGRATION CARDS
        ════════════════════════════════════════ */
        .tp-integ-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--rx);
            padding: 32px 24px;
            transition: transform var(--tr), border-color var(--tr), background var(--tr);
            height: 100%;
        }
        .tp-integ-card:hover {
            transform: translateY(-4px);
            border-color: rgba(9,205,145,.18);
        }
        .tp-integ-icon {
            width: 60px; height: 60px; border-radius: 16px;
            display: flex; align-items: center; justify-content: center;
        }
        .tp-integ-name { font-size: 1rem; font-weight: 700; color: #ecf0f8; margin-bottom: 10px; }
        .tp-integ-desc { font-size: .82rem; color: var(--muted); line-height: 1.7; }
        .tp-integ-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-top: 18px; }
        .tp-integ-tag {
            font-size: .68rem; font-weight: 600;
            border: 1px solid; border-radius: 20px;
            padding: 3px 10px;
        }

        /* ════════════════════════════════════════
           7. FOR PROP FIRMS SPLIT SECTION
        ════════════════════════════════════════ */
        .tp-split-item {
            display: flex; gap: 16px;
            margin-bottom: 20px;
            align-items: flex-start;
        }
        .tp-split-item:last-child { margin-bottom: 0; }
        .tp-split-icon {
            width: 34px; height: 34px; border-radius: 10px;
            border: 1px solid;
            display: flex; align-items: center; justify-content: center;
            flex-shrink: 0; margin-top: 2px;
        }
        .tp-split-label { font-size: .9rem; font-weight: 700; color: #ecf0f8; margin-bottom: 4px; }
        .tp-split-desc  { font-size: .8rem; color: var(--muted); line-height: 1.65; }

        /* ════════════════════════════════════════
           8. USE CASE CARDS
        ════════════════════════════════════════ */
        .tp-usecase-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--rx);
            padding: 26px 22px;
            transition: transform var(--tr), border-color var(--tr);
            height: 100%;
        }
        .tp-usecase-card:hover {
            transform: translateY(-4px);
            border-color: rgba(255,255,255,.12);
        }
        .tp-uc-badge {
            display: inline-flex; align-items: center; gap: 6px;
            border: 1px solid; border-radius: 50px;
            padding: 4px 12px; margin-bottom: 18px;
        }
        .tp-uc-dot { width: 6px; height: 6px; border-radius: 50%; }
        .tp-uc-label { font-size: .7rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
        .tp-uc-title { font-size: 1.05rem; font-weight: 800; color: #ecf0f8; margin-bottom: 10px; line-height: 1.3; }
        .tp-uc-desc  { font-size: .82rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }

        /* ════════════════════════════════════════
           RESPONSIVE
        ════════════════════════════════════════ */
        @media (max-width: 767px) {
            .tp-hero          { padding: 110px 16px 60px; }
            .tp-section       { padding: 64px 16px; }
            .tp-section-alt   { padding: 64px 16px; }
            .tp-cta-section   { padding: 64px 16px; }
            .tp-carousel-section { padding: 56px 16px; }
            .tp-carousel-card     { flex: 0 0 250px; }
            .tp-stat-div      { display: none; }
            .tp-tl-item       { padding: 0 0 36px 60px; }
        }
        .tp-faq-accordion .accordion-item{background:rgba(255,255,255,.028);border:1px solid rgba(255,255,255,.07);border-radius:12px !important;margin-bottom:10px;overflow:hidden;}
        .tp-faq-accordion .accordion-button{background:transparent;color:#ecf0f8;font-weight:600;font-size:.93rem;padding:18px 22px;box-shadow:none;}
        .tp-faq-accordion .accordion-button:not(.collapsed){background:rgba(9,205,145,.06);color:#ecf0f8;box-shadow:none;}
        .tp-faq-accordion .accordion-button::after{filter:invert(1) sepia(1) saturate(3) hue-rotate(90deg);}
        .tp-faq-accordion .accordion-button:focus{box-shadow:0 0 0 3px rgba(9,205,145,.25);}
        .tp-faq-accordion .accordion-body{background:transparent;color:rgba(200,208,220,.75);font-size:.875rem;line-height:1.75;padding:4px 22px 20px;}
