﻿:root {
            --primary: rgb(189,147,249);
            --primary-glow: rgba(189,147,249, 0.15);
            --accent: #1D7BFF;
            --accent-glow: rgba(29, 123, 255, 0.2);
            --dark-ink: #070b19;
            --dark-card: rgba(15, 23, 42, 0.8);
            --text-light: #f8fafc;
            --text-gray: #94a3b8;
            --text-dark: #0f172a;
            --text-muted: #64748b;
            --bg-light: #f8fafc;
            --bg-white: #ffffff;
            --border-light: rgba(226, 232, 240, 0.8);
            --border-dark: rgba(255, 255, 255, 0.08);
            --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
        }

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

        body {
            font-family: var(--font-sans);
            color: var(--text-dark);
            background-color: var(--bg-white);
            line-height: 1.6;
            overflow-x: hidden;
        }

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

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        
        .logo {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }
        .logo img {
            display: block;
            height: 40px;
            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;
            color: var(--text-dark);
            white-space: nowrap;
        }

        
        .main-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border-light);
            transition: all 0.3s ease;
        }
        .header-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
        }
        .desktop-nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }
        .desktop-nav a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-dark);
        }
        .desktop-nav a:hover {
            color: var(--accent);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 24px;
            font-size: 14px;
            font-weight: 600;
            border-radius: 8px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: none;
        }
        .btn-primary {
            background-color: var(--accent);
            color: var(--text-light);
            box-shadow: 0 4px 14px rgba(29, 123, 255, 0.3);
        }
        .btn-primary:hover {
            background-color: #0b66de;
            transform: translateY(-1px);
        }
        .btn-outline {
            background: transparent;
            color: var(--text-light);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        .btn-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: var(--text-light);
        }
        .btn-primary-outline {
            background: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
        }
        .btn-primary-outline:hover {
            background: var(--accent-glow);
        }
        .drawer-trigger {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            width: 24px;
            padding: 4px 0;
        }
        .drawer-trigger span {
            display: block;
            height: 2px;
            width: 100%;
            background-color: var(--text-dark);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        
        .mobile-drawer-mask {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(7, 11, 25, 0.6);
            backdrop-filter: blur(4px);
            z-index: 1050;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }
        .mobile-drawer-mask.active {
            opacity: 1;
            pointer-events: auto;
        }
        .mobile-drawer {
            position: fixed;
            top: 0;
            left: -320px;
            width: 300px;
            height: 100%;
            background: var(--bg-white);
            z-index: 1100;
            box-shadow: var(--shadow-lg);
            transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: flex;
            flex-direction: column;
        }
        .mobile-drawer.active {
            left: 0;
        }
        .drawer-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            border-bottom: 1px solid var(--border-light);
        }
        .drawer-close {
            background: transparent;
            border: none;
            font-size: 28px;
            cursor: pointer;
            color: var(--text-dark);
        }
        .drawer-content {
            flex: 1;
            overflow-y: auto;
            padding: 24px;
        }
        .drawer-nav {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .drawer-nav a {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-dark);
        }
        .drawer-footer {
            padding: 24px;
            border-top: 1px solid var(--border-light);
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        
        .hero-layout-01 {
            background-color: var(--dark-ink);
            color: var(--text-light);
            position: relative;
            padding: 100px 0 160px;
            overflow: hidden;
            text-align: center;
        }
        .hero-layout-01 .logo span {
            color: var(--text-light);
        }
        .hero-glow {
            position: absolute;
            top: -20%;
            left: 50%;
            transform: translateX(-50%);
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(29, 123, 255, 0.15) 0%, rgba(189,147,249,0.08) 50%, rgba(7, 11, 25, 0) 100%);
            pointer-events: none;
            z-index: 1;
        }
        .hero-container-inner {
            position: relative;
            z-index: 2;
        }
        .hero-brand-badge {
            display: inline-block;
            background: rgba(29, 123, 255, 0.1);
            border: 1px solid rgba(29, 123, 255, 0.3);
            color: var(--accent);
            padding: 8px 16px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-bottom: 24px;
            backdrop-filter: blur(8px);
        }
        .hero-title {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto 20px;
            letter-spacing: -1px;
        }
        .hero-title span {
            background: linear-gradient(135deg, #fff 0%, var(--primary) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero-subtitle {
            font-size: 18px;
            color: var(--text-gray);
            max-width: 700px;
            margin: 0 auto 40px;
        }
        .hero-buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 16px;
            margin-bottom: 80px;
        }
        .hero-visual-panel {
            position: relative;
            max-width: 900px;
            margin: 0 auto;
            background: rgba(15, 23, 42, 0.6);
            border: 1px solid var(--border-dark);
            border-radius: 16px;
            padding: 24px;
            backdrop-filter: blur(20px);
            box-shadow: 0 25px 50px -12px rgba(0,0,0,0.5);
        }
        .visual-panel-inner {
            border-radius: 12px;
            overflow: hidden;
            background: #020617;
            padding: 20px;
        }
        .chart-mockup {
            width: 100%;
        }
        .chart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            color: var(--text-light);
            font-size: 14px;
        }
        .trend-up {
            color: #10b981;
            font-weight: bold;
        }
        .chart-svg-container {
            width: 100%;
            height: 220px;
        }
        .chart-svg-container svg {
            width: 100%;
            height: 100%;
        }
        
        .floating-card {
            position: absolute;
            background: rgba(15, 23, 42, 0.95);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-left: 3px solid var(--accent);
            border-radius: 12px;
            padding: 16px;
            display: flex;
            align-items: center;
            gap: 12px;
            width: 220px;
            text-align: left;
            box-shadow: var(--shadow-lg);
            z-index: 10;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
        }
        .floating-card:hover {
            transform: translateY(-5px);
        }
        .floating-card .card-icon {
            font-size: 24px;
            color: var(--accent);
        }
        .floating-card h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 2px;
        }
        .floating-card p {
            font-size: 12px;
            color: var(--text-gray);
        }
        .card-top-left { top: -20px; left: -80px; border-left-color: var(--primary); }
        .card-top-right { top: -20px; right: -80px; border-left-color: var(--accent); }
        .card-bottom-left { bottom: -20px; left: -80px; border-left-color: #38bdf8; }
        .card-bottom-right { bottom: -20px; right: -80px; border-left-color: var(--primary); }

        
        .info-strip {
            background-color: var(--bg-light);
            padding: 30px 0;
            border-bottom: 1px solid var(--border-light);
        }
        .info-strip-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            text-align: center;
        }
        .info-item h3 {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 4px;
        }
        .info-item h3 span {
            color: var(--accent);
        }
        .info-item p {
            font-size: 14px;
            color: var(--text-muted);
            font-weight: 500;
        }

        
        .features-section {
            padding: 100px 0;
            background: var(--bg-white);
        }
        .section-header {
            text-align: center;
            max-width: 600px;
            margin: 0 auto 60px;
        }
        .section-header h2 {
            font-size: 36px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 16px;
        }
        .section-header p {
            font-size: 16px;
            color: var(--text-muted);
        }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .feature-card {
            background: var(--bg-light);
            border: 1px solid var(--border-light);
            border-radius: 12px;
            padding: 40px 30px;
            transition: all 0.3s ease;
        }
        .feature-card:hover {
            background: var(--bg-white);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
            transform: translateY(-5px);
        }
        .feat-icon {
            width: 54px;
            height: 54px;
            border-radius: 10px;
            background: var(--accent-glow);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 24px;
        }
        .feature-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: var(--text-dark);
        }
        .feature-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.6;
        }

        
        .articles-section {
            padding: 100px 0;
            background-color: var(--bg-light);
        }
        .articles-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 40px;
        }
        .article-card {
            background: var(--bg-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--border-light);
            display: flex;
            flex-direction: column;
            transition: all 0.3s ease;
        }
        .article-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-lg);
        }
        .article-thumb {
            width: 100%;
            height: 200px;
            object-fit: cover;
            background-color: #e2e8f0;
        }
        .article-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .article-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: var(--text-muted);
            margin-bottom: 12px;
        }
        .article-meta span.click {
            margin-left: auto;
        }
        .article-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .article-summary {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.5;
            flex-grow: 1;
        }
        .article-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 6px;
            margin-bottom: 16px;
        }
        .tag-badge {
            background: var(--bg-light);
            color: var(--accent);
            padding: 3px 8px;
            font-size: 11px;
            border-radius: 4px;
            font-weight: 500;
        }
        .read-more {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        
        .why-us-section {
            padding: 100px 0;
            background: var(--bg-white);
        }
        .why-us-content {
            display: flex;
            align-items: center;
            gap: 60px;
        }
        .why-us-text {
            flex: 1;
        }
        .why-us-text h2 {
            font-size: 36px;
            font-weight: 800;
            color: var(--text-dark);
            margin-bottom: 20px;
        }
        .why-us-text p {
            font-size: 16px;
            color: var(--text-muted);
            margin-bottom: 30px;
        }
        .why-us-points {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
        }
        .point-item h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 6px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .point-item h4::before {
            content: "✓";
            color: var(--accent);
            font-weight: bold;
        }
        .point-item p {
            font-size: 13px;
            color: var(--text-muted);
            margin: 0;
        }
        .why-us-visual {
            flex: 1;
            background: var(--bg-light);
            border-radius: 16px;
            padding: 40px;
            border: 1px solid var(--border-light);
        }
        .regulatory-box {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .regulatory-item {
            background: var(--bg-white);
            padding: 16px 20px;
            border-radius: 10px;
            box-shadow: var(--shadow-sm);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .regulatory-item span.title {
            font-weight: 700;
            color: var(--text-dark);
        }
        .regulatory-item span.badge {
            background: #e0f2fe;
            color: #0369a1;
            font-size: 12px;
            padding: 4px 10px;
            border-radius: 20px;
            font-weight: 600;
        }

        
        .cta-bottom {
            background: linear-gradient(135deg, var(--dark-ink) 0%, #1e1b4b 100%);
            padding: 80px 0;
            color: var(--text-light);
            text-align: center;
            position: relative;
        }
        .cta-bottom h2 {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 16px;
        }
        .cta-bottom p {
            font-size: 16px;
            color: var(--text-gray);
            max-width: 600px;
            margin: 0 auto 32px;
        }

        
        .main-footer {
            background: #090d1a;
            color: var(--text-gray);
            padding: 80px 0 30px;
            border-top: 1px solid var(--border-dark);
        }
        .footer-container {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        .footer-brand .logo span {
            color: var(--text-light);
        }
        .brand-desc {
            font-size: 14px;
            margin: 20px 0;
            line-height: 1.6;
        }
        .social-links {
            display: flex;
            gap: 12px;
        }
        .social-links a {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-light);
        }
        .social-links a:hover {
            background: var(--accent);
        }
        .footer-col h4 {
            color: var(--text-light);
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 24px;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 12px;
        }
        .footer-col ul li a {
            font-size: 14px;
        }
        .footer-col ul li a:hover {
            color: var(--text-light);
        }
        .footer-bottom {
            padding-top: 30px;
            border-top: 1px solid var(--border-dark);
            text-align: center;
            font-size: 13px;
        }

        
        @media (max-width: 1024px) {
            .hero-title { font-size: 38px; }
            .hero-visual-panel { max-width: 700px; }
            .floating-card { display: none; }
            .features-grid, .articles-grid { grid-template-columns: repeat(2, 1fr); }
            .footer-container { grid-template-columns: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .drawer-trigger { display: flex; }
            .hero-layout-01 { padding: 60px 0 100px; }
            .hero-visual-panel { max-width: 100%; }
            .info-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
            .features-grid, .articles-grid { grid-template-columns: 1fr; }
            .why-us-content { flex-direction: column; }
            .footer-container { grid-template-columns: 1fr; }
        }