/* WEB PANEL PROXY public CSS */
* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        :root {
            --bg: #07090d;
            --panel: #0d1118;
            --panel-2: #11161f;
            --border: #202833;
            --text: #eef2f7;
            --muted: #7f8a99;
            --green: #35e08b;
            --blue: #5b8cff;
            --purple: #9b6cff;
            --orange: #ffad5c;
            --red: #ff5d6c;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background: var(--bg);
            color: var(--text);
            font-family:
                Inter,
                -apple-system,
                BlinkMacSystemFont,
                "Segoe UI",
                Roboto,
                Arial,
                sans-serif;
            line-height: 1.5;
        }

        body::selection {
            background: rgba(53, 224, 139, .25);
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        /* =========================
           NAVBAR
        ========================= */

        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 72px;
            z-index: 100;

            background: rgba(7, 9, 13, .88);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);

            border-bottom: 1px solid rgba(255,255,255,.06);
        }

        .nav-inner {
            max-width: 1180px;
            height: 100%;
            margin: auto;
            padding: 0 24px;

            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            font-size: 20px;
            font-weight: 800;
            letter-spacing: -.5px;
        }

        .logo span {
            color: var(--green);
        }

        .nav-links {
            display: flex;
            gap: 30px;

            color: var(--muted);
            font-size: 14px;
        }

        .nav-links a {
            transition: .2s ease;
        }

        .nav-links a:hover {
            color: white;
        }

        .nav-button {
            border: 1px solid var(--border);
            padding: 9px 16px;
            border-radius: 8px;

            font-size: 14px;

            transition: .2s ease;
        }

        .nav-button:hover {
            border-color: var(--green);
            color: var(--green);
        }

        /* =========================
           HERO
        ========================= */

        .hero {
            min-height: 760px;

            padding: 170px 24px 100px;

            max-width: 1180px;
            margin: auto;

            position: relative;
        }

        .glow {
            position: absolute;

            width: 650px;
            height: 650px;

            top: 40px;
            left: 50%;

            transform: translateX(-50%);

            background:
                radial-gradient(
                    circle,
                    rgba(53,224,139,.12),
                    transparent 65%
                );

            pointer-events: none;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;

            border: 1px solid rgba(53,224,139,.2);

            background: rgba(53,224,139,.05);

            padding: 7px 12px;

            border-radius: 100px;

            font-size: 12px;

            color: var(--green);

            margin-bottom: 25px;
        }

        .dot {
            width: 7px;
            height: 7px;

            border-radius: 50%;

            background: var(--green);

            box-shadow:
                0 0 12px var(--green);
        }

        h1 {
            max-width: 900px;

            font-size: clamp(46px, 7vw, 82px);

            line-height: 1.01;

            letter-spacing: -4px;

            margin-bottom: 28px;
        }

        h1 span {
            color: var(--green);
        }

        .hero-text {
            max-width: 690px;

            color: var(--muted);

            font-size: 18px;

            margin-bottom: 36px;
        }

        .hero-actions {
            display: flex;
            gap: 12px;

            flex-wrap: wrap;
        }

        .primary {
            display: inline-block;

            background: var(--green);

            color: #06110b;

            padding: 13px 20px;

            border-radius: 8px;

            font-weight: 700;

            border: none;

            cursor: pointer;

            transition: .2s ease;
        }

        .primary:hover {
            transform: translateY(-2px);
            filter: brightness(1.1);
        }

        .secondary {
            display: inline-block;

            border: 1px solid var(--border);

            padding: 13px 20px;

            border-radius: 8px;

            color: #cbd2dc;

            transition: .2s ease;
        }

        .secondary:hover {
            border-color: #3a4654;
            color: white;
        }

        /* =========================
           GENERAL SECTIONS
        ========================= */

        .section {
            max-width: 1100px;

            margin: 0 auto 120px;

            padding: 0 24px;
        }

        .section-label {
            color: var(--green);

            font-size: 12px;

            font-weight: 700;

            text-transform: uppercase;

            letter-spacing: 1.5px;

            margin-bottom: 10px;
        }

        .section-title {
            font-size: 34px;

            line-height: 1.2;

            letter-spacing: -1px;

            margin-bottom: 12px;
        }

        .section-description {
            color: var(--muted);

            max-width: 720px;

            margin-bottom: 30px;
        }

        /* =========================
           DASHBOARD
        ========================= */

        .dashboard {
            background: var(--panel);

            border: 1px solid var(--border);

            border-radius: 14px;

            overflow: hidden;

            box-shadow:
                0 30px 100px rgba(0,0,0,.35);
        }

        .dashboard-top {
            height: 48px;

            padding: 0 18px;

            border-bottom: 1px solid var(--border);

            display: flex;

            align-items: center;

            justify-content: space-between;

            color: var(--muted);

            font-size: 12px;
        }

        .window-dots {
            display: flex;
            gap: 6px;
        }

        .window-dots i {
            width: 7px;
            height: 7px;

            border-radius: 50%;

            background: #303741;
        }

        .status {
            display: flex;

            align-items: center;

            gap: 7px;

            color: var(--green);
        }

        /* =========================
           STATS
        ========================= */

        .stats {
            display: grid;

            grid-template-columns:
                repeat(4, 1fr);

            border-bottom: 1px solid var(--border);
        }

        .stat {
            padding: 22px;

            border-right: 1px solid var(--border);
        }

        .stat:last-child {
            border-right: none;
        }

        .stat-name {
            color: var(--muted);

            font-size: 12px;

            margin-bottom: 8px;
        }

        .stat-value {
            font-size: 25px;

            font-weight: 700;
        }

        .stat-change {
            color: var(--green);

            font-size: 11px;

            margin-top: 4px;
        }

        /* =========================
           DASHBOARD BODY
        ========================= */

        .dashboard-body {
            display: grid;

            grid-template-columns:
                1.4fr .8fr;
        }

        .processes {
            padding: 20px;

            border-right: 1px solid var(--border);
        }

        .side {
            padding: 20px;
        }

        .block-title {
            font-size: 13px;

            font-weight: 600;

            margin-bottom: 16px;
        }

        /* =========================
           BOT ROW
        ========================= */

        .bot {
            display: grid;

            grid-template-columns:
                35px 1fr auto;

            gap: 12px;

            align-items: center;

            padding: 12px 0;

            border-bottom: 1px solid #171d26;
        }

        .bot:last-child {
            border-bottom: none;
        }

        .bot-icon {
            width: 34px;
            height: 34px;

            border-radius: 8px;

            display: grid;

            place-items: center;

            background: #171e28;

            font-size: 11px;

            font-weight: 700;
        }

        .bot-name {
            font-size: 13px;

            font-weight: 600;
        }

        .bot-type {
            color: var(--muted);

            font-size: 11px;
        }

        .bot-status {
            font-size: 10px;

            color: var(--green);

            background:
                rgba(53,224,139,.07);

            padding: 4px 7px;

            border-radius: 5px;
        }

        /* =========================
           METRICS
        ========================= */

        .metric {
            margin-bottom: 20px;
        }

        .metric-header {
            display: flex;

            justify-content: space-between;

            font-size: 11px;

            color: var(--muted);

            margin-bottom: 7px;
        }

        .bar {
            height: 5px;

            background: #191f28;

            border-radius: 10px;

            overflow: hidden;
        }

        .bar span {
            display: block;

            height: 100%;

            border-radius: 10px;

            background: var(--green);

            transition: width .5s ease;
        }

        /* =========================
           TERMINAL
        ========================= */

        .terminal {
            margin-top: 25px;

            background: #080b10;

            border: 1px solid #1b222c;

            border-radius: 8px;

            padding: 14px;

            font-family:
                "SFMono-Regular",
                Consolas,
                monospace;

            font-size: 10px;

            color: #8995a5;

            height: 150px;

            overflow: hidden;
        }

        .terminal-line {
            margin-bottom: 6px;
        }

        .terminal-line span {
            color: var(--green);
        }

        /* =========================
           SERVICES
        ========================= */

        .cards {
            display: grid;

            grid-template-columns:
                repeat(3, 1fr);

            gap: 14px;

            margin-top: 30px;
        }

        .card {
            background: var(--panel);

            border: 1px solid var(--border);

            padding: 26px;

            border-radius: 12px;

            transition: .2s ease;
        }

        .card:hover {
            transform: translateY(-3px);

            border-color: #34404e;
        }

        .card-icon {
            width: 42px;
            height: 42px;

            display: grid;
            place-items: center;

            background: #151c25;

            border: 1px solid var(--border);

            border-radius: 9px;

            font-size: 18px;

            margin-bottom: 20px;
        }

        .card h3 {
            font-size: 17px;

            margin-bottom: 8px;
        }

        .card p {
            color: var(--muted);

            font-size: 13px;
        }

        /* =========================
           PLATFORMS
        ========================= */

        .platforms {
            text-align: center;
        }

        .platforms .section-description {
            margin-left: auto;
            margin-right: auto;
        }

        .platform-list {
            display: flex;

            justify-content: center;

            gap: 10px;

            flex-wrap: wrap;

            margin-top: 25px;
        }

        .platform {
            border: 1px solid var(--border);

            background: var(--panel);

            padding: 10px 16px;

            border-radius: 7px;

            font-size: 13px;

            color: #b9c1cd;

            transition: .2s ease;
        }

        .platform:hover {
            border-color: #394654;

            color: white;

            transform: translateY(-1px);
        }

        .platform-special {
            color: var(--green);

            border-color:
                rgba(53,224,139,.2);

            background:
                rgba(53,224,139,.04);
        }

        .platform-note {
            margin: 35px auto 0;

            max-width: 720px;

            padding: 22px;

            border: 1px solid var(--border);

            background: var(--panel);

            border-radius: 10px;

            color: var(--muted);

            font-size: 14px;
        }

        .platform-note strong {
            color: var(--text);
        }

        .platform-restricted {
            color: var(--red);
            font-weight: 800;
            margin-left: 2px;
        }

        .legal-note {
            margin: 35px auto 0;
            max-width: 820px;
            padding: 18px 22px;
            border: 1px solid rgba(255,93,108,.22);
            background: rgba(255,93,108,.045);
            border-radius: 10px;
            color: var(--muted);
            font-size: 12px;
            line-height: 1.6;
            text-align: left;
        }

        .legal-note strong {
            color: var(--text);
        }

        /* =========================
           ARCHITECTURE
        ========================= */

        .architecture {
            display: grid;

            grid-template-columns:
                repeat(3, 1fr);

            gap: 14px;

            margin-top: 30px;
        }

        .architecture-item {
            padding: 22px;

            background: var(--panel);

            border: 1px solid var(--border);

            border-radius: 10px;
        }

        .architecture-number {
            font-family:
                "SFMono-Regular",
                Consolas,
                monospace;

            color: var(--green);

            font-size: 12px;

            margin-bottom: 12px;
        }

        .architecture-item h3 {
            font-size: 15px;

            margin-bottom: 7px;
        }

        .architecture-item p {
            color: var(--muted);

            font-size: 12px;
        }

        /* =========================
           CONTACT
        ========================= */

        .contact {
            max-width: 850px;

            margin: 0 auto 110px;

            padding: 0 24px;

            text-align: center;
        }

        .contact .section-description {
            margin-left: auto;
            margin-right: auto;
        }

        .contact-box {
            margin-top: 30px;

            background:
                linear-gradient(
                    145deg,
                    #0e1514,
                    #0d1118
                );

            border: 1px solid
                rgba(53,224,139,.18);

            border-radius: 14px;

            padding: 50px 25px;
        }

        .email {
            display: block;

            margin: 20px 0 10px;

            font-size:
                clamp(22px, 5vw, 34px);

            font-weight: 700;

            color: var(--green);

            transition: .2s ease;
        }

        .email:hover {
            filter: brightness(1.15);
        }

        .price-note {
            color: var(--muted);

            font-size: 13px;

            margin-bottom: 25px;
        }

        .contact-button {
            display: inline-block;
        }

        /* =========================
           FOOTER
        ========================= */

        footer {
            border-top: 1px solid var(--border);

            padding: 30px 24px;
        }

        .footer-inner {
            max-width: 1100px;

            margin: auto;

            display: flex;

            justify-content: space-between;

            gap: 20px;

            color: var(--muted);

            font-size: 12px;
        }

        /* =========================
           RESPONSIVE
        ========================= */

        @media (max-width: 800px) {

            .nav-links {
                display: none;
            }

            .stats {
                grid-template-columns:
                    repeat(2, 1fr);
            }

            .dashboard-body {
                grid-template-columns: 1fr;
            }

            .processes {
                border-right: none;

                border-bottom:
                    1px solid var(--border);
            }

            .cards,
            .architecture {
                grid-template-columns: 1fr;
            }

            h1 {
                letter-spacing: -2px;
            }

            .hero {
                min-height: 680px;
            }
        }

        @media (max-width: 500px) {

            .navbar {
                height: 64px;
            }

            .nav-inner {
                padding: 0 16px;
            }

            .nav-button {
                font-size: 12px;

                padding:
                    8px 11px;
            }

            .hero {
                padding:
                    125px 18px 80px;
            }

            .section,
            .contact {
                padding-left: 18px;
                padding-right: 18px;
            }

            .stats {
                grid-template-columns:
                    1fr 1fr;
            }

            .stat {
                padding: 15px;
            }

            .stat-value {
                font-size: 20px;
            }

            .stat-name {
                font-size: 10px;
            }

            .dashboard-top {
                padding: 0 12px;

                font-size: 9px;
            }

            .bot {
                grid-template-columns:
                    32px 1fr auto;

                gap: 8px;
            }

            .bot-name {
                font-size: 12px;
            }

            .bot-type {
                font-size: 10px;
            }

            .bot-status {
                font-size: 8px;
            }

            .footer-inner {
                flex-direction: column;

                text-align: center;
            }
        }

[data-wpp-style="wpp-0"]{width:42%}
[data-wpp-style="wpp-1"]{width:67%}
[data-wpp-style="wpp-2"]{width:23%}
[data-wpp-style="wpp-3"]{width:81%}