﻿:root {
            --primary: rgb(209,213,219);
            --primary-dark: #9ca3af;
            --primary-light: #f3f4f6;
            --accent: #f59e0b;
            --accent-red: #ef4444;
            --dark: #111827;
            --gray-900: #111827;
            --gray-800: #1f2937;
            --gray-700: #374151;
            --gray-600: #4b5563;
            --gray-500: #6b7280;
            --gray-100: #f3f4f6;
            --border: #e5e7eb;
            --shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
            --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.05), 0 4px 6px -2px rgba(0,0,0,0.05);
            --radius: 12px;
        }
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; background-color: #f9fafb; color: var(--gray-800); line-height: 1.6; }
        a { text-decoration: none; color: inherit; transition: all 0.3s ease; }
        img { max-width: 100%; height: auto; display: block; }
        li { list-style: none; }

        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        
        .site-header { background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; transition: all 0.3s ease; }
        .header-container { display: flex; align-items: center; justify-content: space-between; height: 72px; }
        .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(--gray-900); white-space: nowrap; letter-spacing: -0.5px; }
        
        .desktop-nav { display: flex; align-items: center; gap: 32px; }
        .desktop-nav a { font-size: 15px; font-weight: 500; color: var(--gray-600); }
        .desktop-nav a:hover, .desktop-nav a.active { color: var(--gray-900); }
        
        .header-actions { display: flex; align-items: center; gap: 16px; }
        .nav-btn { background: var(--gray-900); color: #fff; padding: 10px 20px; border-radius: 8px; font-size: 14px; font-weight: 600; }
        .nav-btn:hover { background: var(--gray-700); }
        
        .mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; flex-direction: column; gap: 6px; }
        .mobile-menu-toggle span { display: block; width: 24px; height: 2px; background: var(--gray-900); transition: 0.3s; }

        
        .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; pointer-events: none; transition: all 0.3s; }
        .drawer-overlay.active { opacity: 1; pointer-events: auto; }
        .drawer-menu { position: fixed; top: 0; left: -280px; width: 280px; height: 100%; background: #fff; z-index: 999; transition: all 0.3s ease; display: flex; flex-direction: column; padding: 24px; box-shadow: var(--shadow-lg); }
        .drawer-menu.active { left: 0; }
        .drawer-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
        .drawer-close { background: none; border: none; font-size: 28px; cursor: pointer; color: var(--gray-500); }
        .drawer-nav { display: flex; flex-direction: column; gap: 20px; }
        .drawer-nav a { font-size: 16px; font-weight: 600; color: var(--gray-700); }
        .drawer-nav a:hover { color: var(--gray-900); padding-left: 4px; }
        .drawer-footer { margin-top: auto; border-top: 1px solid var(--border); padding-top: 20px; font-size: 12px; color: var(--gray-400); }

        
        .hero { padding: 80px 0; background: linear-gradient(135deg, var(--primary-light) 0%, #fff 100%); position: relative; overflow: hidden; }
        .hero-grid { display: grid; grid-template-cols: 1.1fr 0.9fr; gap: 48px; align-items: center; }
        .hero-content { position: relative; z-index: 2; }
        .badge { display: inline-block; background: var(--primary); color: var(--gray-900); font-size: 12px; font-weight: 700; padding: 6px 16px; border-radius: 50px; margin-bottom: 20px; text-transform: uppercase; }
        .hero h1 { font-size: 48px; font-weight: 800; line-height: 1.15; color: var(--gray-900); margin-bottom: 20px; }
        .hero p { font-size: 18px; color: var(--gray-600); margin-bottom: 32px; }
        .hero-btns { display: flex; align-items: center; gap: 16px; }
        .btn-primary { background: var(--gray-900); color: #fff; padding: 14px 28px; border-radius: var(--radius); font-weight: 600; font-size: 16px; border: 2px solid var(--gray-900); box-shadow: var(--shadow); }
        .btn-primary:hover { background: var(--gray-800); transform: translateY(-2px); }
        .btn-secondary { background: transparent; color: var(--gray-800); padding: 14px 28px; border-radius: var(--radius); font-weight: 600; font-size: 16px; border: 2px solid var(--border); }
        .btn-secondary:hover { background: var(--primary-light); border-color: var(--primary-dark); transform: translateY(-2px); }
        
        .hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; }
        .data-panel { background: #fff; border-radius: 20px; padding: 24px; box-shadow: var(--shadow-lg); border: 1px solid var(--border); width: 100%; max-width: 440px; }
        .panel-header { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--border); padding-bottom: 16px; margin-bottom: 16px; }
        .panel-title { font-weight: 700; display: flex; align-items: center; gap: 8px; font-size: 15px; }
        .panel-status { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--accent-red); font-weight: 600; }
        .panel-status::before { content: ""; display: inline-block; width: 8px; height: 8px; background: var(--accent-red); border-radius: 50%; animation: pulse 1.5s infinite; }
        
        .data-row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--border); font-size: 14px; }
        .data-row:last-child { border: none; }
        .data-label { color: var(--gray-500); }
        .data-value { font-weight: 700; color: var(--gray-900); }
        .data-value.high { color: var(--accent-red); }

        
        .metrics-bar { background: var(--gray-900); color: #fff; padding: 32px 0; border-radius: 20px; margin-top: -40px; position: relative; z-index: 10; box-shadow: var(--shadow-lg); }
        .metrics-grid { display: grid; grid-template-cols: repeat(4, 1fr); gap: 24px; text-align: center; }
        .metric-item h3 { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
        .metric-item p { font-size: 14px; color: var(--primary-dark); }

        
        .section-title-wrap { text-align: center; max-width: 600px; margin: 80px auto 48px; }
        .section-title-wrap h2 { font-size: 36px; font-weight: 800; color: var(--gray-900); margin-bottom: 16px; }
        .section-title-wrap p { font-size: 16px; color: var(--gray-500); }

        
        .features-grid { display: grid; grid-template-cols: 1.2fr 0.8fr; gap: 32px; margin-bottom: 80px; }
        .feature-card-lg { background: #fff; border-radius: 20px; padding: 48px; border: 1px solid var(--border); box-shadow: var(--shadow); display: flex; flex-direction: column; justify-content: space-between; }
        .feature-card-sm-wrap { display: flex; flex-direction: column; gap: 32px; }
        .feature-card-sm { background: #fff; border-radius: 20px; padding: 32px; border: 1px solid var(--border); box-shadow: var(--shadow); }
        .feature-icon { width: 48px; height: 48px; background: var(--primary-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; font-size: 20px; color: var(--gray-700); }
        .feature-card-lg h3 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
        .feature-card-sm h3 { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
        .feature-desc { color: var(--gray-500); margin-bottom: 24px; }
        .feature-link { font-weight: 700; color: var(--gray-900); display: inline-flex; align-items: center; gap: 8px; }
        .feature-link:hover { color: var(--gray-600); }

        
        .news-section { background-color: var(--primary-light); padding: 80px 0; }
        .news-grid { display: grid; grid-template-cols: repeat(3, 1fr); gap: 32px; }
        .article-card { background: #fff; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--border); display: flex; flex-direction: column; height: 100%; }
        .article-img { width: 100%; height: 200px; object-fit: cover; background: var(--primary-dark); }
        .article-body { padding: 24px; display: flex; flex-direction: column; flex-grow: 1; }
        .article-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--gray-500); margin-bottom: 12px; }
        .article-title { font-size: 18px; font-weight: 700; line-height: 1.4; color: var(--gray-900); margin-bottom: 12px; }
        .article-summary { font-size: 14px; color: var(--gray-500); margin-bottom: 20px; flex-grow: 1; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
        .article-footer { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid var(--border); padding-top: 16px; }
        .article-tag { background: var(--primary-light); color: var(--gray-700); padding: 4px 10px; border-radius: 6px; font-size: 12px; font-weight: 600; }
        .article-more { font-size: 14px; font-weight: 700; color: var(--gray-900); }

        
        .statement-section { padding: 80px 0; background: #fff; }
        .statement-grid { display: grid; grid-template-cols: 1fr 1fr; gap: 64px; align-items: center; }
        .statement-visual { background: var(--primary-light); border-radius: 24px; padding: 40px; border: 1px dashed var(--primary-dark); }
        .stat-bars { display: flex; flex-direction: column; gap: 16px; }
        .stat-bar-item { display: flex; flex-direction: column; gap: 8px; }
        .stat-bar-info { display: flex; justify-content: space-between; font-size: 14px; font-weight: 600; }
        .stat-progress { height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
        .stat-progress-fill { height: 100%; background: var(--gray-900); border-radius: 4px; }
        .statement-content h2 { font-size: 32px; font-weight: 800; margin-bottom: 20px; }
        .statement-content p { color: var(--gray-500); margin-bottom: 24px; }

        
        .cta-section { background: var(--gray-900); color: #fff; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
        .cta-container { max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
        .cta-section h2 { font-size: 40px; font-weight: 800; margin-bottom: 20px; color: #fff; }
        .cta-section p { font-size: 18px; color: var(--primary-dark); margin-bottom: 32px; }
        
        
        .site-footer { background: var(--gray-900); color: #fff; border-top: 1px solid var(--gray-800); padding: 80px 0 32px; }
        .footer-container { display: grid; grid-template-cols: 1.2fr 0.8fr 0.8fr 1.2fr; gap: 48px; margin-bottom: 48px; }
        .footer-brand .logo { margin-bottom: 20px; }
        .footer-brand .logo span { color: #fff; }
        .brand-desc { color: var(--gray-500); font-size: 14px; line-height: 1.6; }
        .footer-link-group h4 { font-size: 16px; font-weight: 700; margin-bottom: 20px; color: #fff; }
        .footer-link-group ul { display: flex; flex-direction: column; gap: 12px; }
        .footer-link-group a { color: var(--gray-400); font-size: 14px; }
        .footer-link-group a:hover { color: #fff; }
        .footer-contact p { color: var(--gray-400); font-size: 14px; margin-bottom: 12px; }
        .footer-bottom { border-top: 1px solid var(--gray-800); padding-top: 32px; }
        .footer-bottom-container { display: flex; justify-content: space-between; align-items: center; font-size: 14px; color: var(--gray-500); }

        @keyframes pulse {
            0% { transform: scale(0.95); opacity: 0.5; }
            50% { transform: scale(1.1); opacity: 1; }
            100% { transform: scale(0.95); opacity: 0.5; }
        }

        @media (max-width: 992px) {
            .hero-grid { grid-template-cols: 1fr; gap: 32px; }
            .hero h1 { font-size: 38px; }
            .metrics-grid { grid-template-cols: repeat(2, 1fr); gap: 16px; }
            .features-grid { grid-template-cols: 1fr; }
            .news-grid { grid-template-cols: 1fr; }
            .statement-grid { grid-template-cols: 1fr; gap: 40px; }
            .footer-container { grid-template-cols: repeat(2, 1fr); }
        }
        @media (max-width: 768px) {
            .desktop-nav { display: none; }
            .mobile-menu-toggle { display: flex; }
            .footer-container { grid-template-cols: 1fr; gap: 32px; }
            .footer-bottom-container { flex-direction: column; gap: 16px; text-align: center; }
        }