﻿:root {
            --primary: #1D7BFF;
            --primary-glow: rgba(29, 123, 255, 0.15);
            --accent: rgb(168, 85, 247);
            --accent-glow: rgba(168, 85, 247, 0.15);
            --bg-dark: #070b19;
            --bg-card: #0e162f;
            --bg-card-hover: #152247;
            --text-light: #f3f4f6;
            --text-muted: #9ca3af;
            --border-color: rgba(29, 123, 255, 0.15);
            --border-hover: rgba(168, 85, 247, 0.4);
            --glass-bg: rgba(14, 22, 47, 0.8);
            --glass-border: rgba(255, 255, 255, 0.05);
            --max-width: 1200px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            background-color: var(--bg-dark);
            color: var(--text-light);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
            line-height: 1.6;
            overflow-x: hidden;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 100;
            background: rgba(7, 11, 25, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-color);
        }

        .header-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo img {
            display: block;
            height: 36px;
            width: auto;
            max-width: 160px;
            object-fit: contain;
            flex-shrink: 0;
        }

        .logo span {
            display: inline-block;
            font-size: 20px;
            font-weight: 800;
            line-height: 1;
            background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            white-space: nowrap;
        }

        .nav-desktop {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .nav-link {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-muted);
        }

        .nav-link:hover, .nav-link.active {
            color: var(--primary);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .btn-header {
            padding: 8px 18px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid var(--border-color);
            background: var(--bg-card);
            color: var(--text-light);
        }

        .btn-header:hover {
            border-color: var(--accent);
            box-shadow: 0 0 15px var(--accent-glow);
        }

        .btn-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            padding: 4px;
        }

        
        .drawer {
            position: fixed;
            top: 0;
            left: -100%;
            width: 300px;
            height: 100%;
            background: var(--bg-dark);
            z-index: 200;
            transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            border-right: 1px solid var(--border-color);
            padding: 30px 24px;
            display: flex;
            flex-direction: column;
            gap: 40px;
        }

        .drawer.active {
            left: 0;
        }

        .drawer-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.75);
            z-index: 150;
            display: none;
            backdrop-filter: blur(4px);
        }

        .drawer-overlay.active {
            display: block;
        }

        .drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .drawer-close {
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 24px;
            cursor: pointer;
        }

        .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .drawer-link {
            font-size: 18px;
            font-weight: 500;
            color: var(--text-muted);
            padding: 10px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }

        .drawer-link:hover {
            color: var(--primary);
        }

        
        .hero {
            position: relative;
            padding: 160px 0 100px;
            background: radial-gradient(circle at 50% 20%, #0c1a3a 0%, var(--bg-dark) 70%);
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            max-width: 1400px;
            height: 100%;
            background: 
                radial-gradient(circle at 15% 30%, rgba(29, 123, 255, 0.08) 0%, transparent 40%),
                radial-gradient(circle at 85% 60%, rgba(168, 85, 247, 0.08) 0%, transparent 40%);
            pointer-events: none;
        }

        .hero-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .hero-badge {
            background: rgba(29, 123, 255, 0.1);
            border: 1px solid rgba(29, 123, 255, 0.3);
            color: var(--primary);
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            letter-spacing: 1px;
            box-shadow: 0 0 15px rgba(29, 123, 255, 0.1);
        }

        .hero-title {
            font-size: 54px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            max-width: 900px;
            background: linear-gradient(135deg, #ffffff 30%, #a5b4fc 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .hero-subtitle {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 36px;
            max-width: 700px;
            line-height: 1.8;
        }

        .hero-buttons {
            display: flex;
            gap: 16px;
            margin-bottom: 60px;
            z-index: 10;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: #fff;
            padding: 14px 32px;
            border-radius: 10px;
            font-weight: 700;
            box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(168, 85, 247, 0.5);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-color);
            color: var(--text-light);
            padding: 14px 32px;
            border-radius: 10px;
            font-weight: 700;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--accent);
        }

        
        .hero-visual-wrapper {
            position: relative;
            width: 100%;
            max-width: 960px;
            margin-top: 20px;
        }

        .hero-main-panel {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
            position: relative;
            overflow: hidden;
        }

        .hero-main-panel::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
        }

        
        .chart-mock {
            height: 240px;
            width: 100%;
            display: flex;
            align-items: flex-end;
            gap: 12px;
            border-bottom: 2px solid rgba(29, 123, 255, 0.1);
            padding-bottom: 10px;
        }

        .chart-bar {
            flex: 1;
            background: linear-gradient(to top, rgba(29, 123, 255, 0.2), var(--primary));
            border-radius: 4px 4px 0 0;
            animation: grow 1.5s ease-out forwards;
            opacity: 0.8;
        }

        .chart-bar:hover {
            opacity: 1;
            background: linear-gradient(to top, rgba(168, 85, 247, 0.2), var(--accent));
        }

        .chart-label {
            margin-top: 15px;
            display: flex;
            justify-content: space-between;
            color: var(--text-muted);
            font-size: 13px;
        }

        
        .floating-card {
            position: absolute;
            background: var(--glass-bg);
            border: 1px solid var(--glass-border);
            backdrop-filter: blur(16px);
            padding: 20px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transition: all 0.3s ease;
            z-index: 5;
            max-width: 240px;
            text-align: left;
        }

        .floating-card:hover {
            border-color: var(--accent);
            transform: translateY(-5px);
        }

        .floating-card .icon-wrapper {
            background: rgba(29, 123, 255, 0.1);
            color: var(--primary);
            width: 44px;
            height: 44px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }

        .floating-card h4 {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 4px;
        }

        .floating-card p {
            font-size: 12px;
            color: var(--text-muted);
        }

        .card-top-left { top: -40px; left: -60px; }
        .card-top-right { top: -40px; right: -60px; }
        .card-bottom-left { bottom: -30px; left: -80px; }
        .card-bottom-right { bottom: -30px; right: -80px; }

        
        .trust-bar {
            background: rgba(14, 22, 47, 0.5);
            border-top: 1px solid var(--border-color);
            border-bottom: 1px solid var(--border-color);
            padding: 30px 0;
        }

        .trust-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 30px;
        }

        .trust-item {
            text-align: center;
            flex: 1;
            min-width: 150px;
        }

        .trust-value {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 5px;
        }

        .trust-label {
            font-size: 13px;
            color: var(--text-muted);
            letter-spacing: 1px;
        }

        
        .section-features {
            padding: 100px 0;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            padding: 0 24px;
        }

        .section-tag {
            color: var(--accent);
            font-weight: 700;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            display: block;
        }

        .section-title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .section-desc {
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            font-size: 16px;
        }

        .features-grid {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 32px;
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            border-color: var(--accent);
            box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1);
        }

        .feature-icon {
            color: var(--primary);
            font-size: 28px;
            margin-bottom: 24px;
            display: inline-block;
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .feature-card p {
            color: var(--text-muted);
            font-size: 14px;
            line-height: 1.6;
        }

        
        .section-articles {
            padding: 100px 0;
            background: rgba(14, 22, 47, 0.3);
        }

        .articles-grid {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .article-card {
            background: var(--bg-card);
            border: 1px solid var(--border-color);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .article-card:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: 0 10px 25px rgba(0,0,0,0.3);
        }

        .article-img {
            width: 100%;
            height: 180px;
            overflow: hidden;
            background: #111a36;
            position: relative;
        }

        .article-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .article-card:hover .article-img img {
            transform: scale(1.05);
        }

        .article-content {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .article-meta {
            display: flex;
            justify-content: space-between;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .article-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.4;
            color: #fff;
        }

        .article-summary {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-tags {
            margin-top: auto;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 15px;
        }

        .article-tag {
            background: rgba(29, 123, 255, 0.1);
            color: var(--primary);
            padding: 3px 10px;
            border-radius: 4px;
            font-size: 11px;
            font-weight: 600;
        }

        .article-link {
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .article-link:hover {
            color: var(--accent);
        }

        
        .section-cta {
            padding: 100px 0;
            position: relative;
        }

        .cta-box {
            max-width: 960px;
            margin: 0 auto;
            background: linear-gradient(135deg, rgba(29, 123, 255, 0.15) 0%, rgba(168, 85, 247, 0.15) 100%);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 60px 40px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-title {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .cta-desc {
            color: var(--text-muted);
            font-size: 16px;
            max-width: 600px;
            margin: 0 auto 30px;
        }

        
        .site-footer {
            background: #040710;
            border-top: 1px solid var(--border-color);
            padding: 80px 0 30px;
        }

        .footer-container {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 2fr repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .footer-desc {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.8;
            max-width: 320px;
        }

        .footer-title {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .footer-links a {
            font-size: 14px;
            color: var(--text-muted);
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-bottom {
            max-width: var(--max-width);
            margin: 0 auto;
            padding: 30px 24px 0;
            border-top: 1px solid rgba(255,255,255,0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            color: var(--text-muted);
            font-size: 13px;
        }

        @keyframes grow {
            from { height: 0; }
        }

        
        @media (max-width: 1024px) {
            .card-top-left { top: -20px; left: -10px; }
            .card-top-right { top: -20px; right: -10px; }
            .card-bottom-left { bottom: -10px; left: -10px; }
            .card-bottom-right { bottom: -10px; right: -10px; }
            .features-grid, .articles-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-desktop, .header-actions {
                display: none;
            }
            .btn-menu-toggle {
                display: block;
            }
            .hero-title {
                font-size: 36px;
            }
            .floating-card {
                position: static;
                max-width: 100%;
                margin-top: 15px;
            }
            .hero-visual-wrapper {
                display: flex;
                flex-direction: column;
                gap: 15px;
            }
            .chart-mock {
                height: 180px;
            }
            .features-grid, .articles-grid {
                grid-template-columns: 1fr;
            }
            .footer-container {
                grid-template-columns: 1fr;
            }
        }