﻿:root {
      --primary: #1677FF;
      --primary-hover: #4096ff;
      --dark: #071A3A;
      --dark-light: #0d2754;
      --light: #F3F8FF;
      --cyan: #38BDF8;
      --silver: #EAF4FF;
      --text-main: #1F2E4D;
      --text-muted: #64748B;
      --border: #E2E8F0;
      --white: #FFFFFF;
      --shadow: 0 10px 30px rgba(7, 26, 58, 0.05);
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; color: var(--text-main); background: var(--light); line-height: 1.6; overflow-x: hidden; }
    a { color: inherit; text-decoration: none; transition: var(--transition); }
    img { max-width: 100%; height: auto; }
    ul { list-style: none; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }

    
    .header { background: rgba(7, 26, 58, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(255, 255, 255, 0.08); position: sticky; top: 0; z-index: 100; transition: var(--transition); height: 72px; display: flex; align-items: center; }
    .header-nav { display: flex; align-items: center; justify-content: space-between; width: 100%; }
    .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: 18px; font-weight: 800; line-height: 1; color: var(--white); white-space: nowrap; letter-spacing: 0.5px; }
    .nav-menu { display: flex; align-items: center; gap: 32px; }
    .nav-menu a { color: rgba(255, 255, 255, 0.85); font-weight: 500; font-size: 15px; }
    .nav-menu a:hover { color: var(--cyan); }
    .header-actions { display: flex; align-items: center; gap: 16px; }
    .btn { display: inline-flex; align-items: center; justify-content: center; padding: 10px 20px; font-weight: 600; font-size: 14px; border-radius: 6px; border: none; cursor: pointer; transition: var(--transition); white-space: nowrap; }
    .btn-primary { background: linear-gradient(135deg, var(--primary), var(--cyan)); color: var(--white); box-shadow: 0 4px 15px rgba(22, 119, 255, 0.3); }
    .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(22, 119, 255, 0.4); }
    .btn-outline { background: transparent; border: 1px solid rgba(255, 255, 255, 0.3); color: var(--white); }
    .btn-outline:hover { background: rgba(255, 255, 255, 0.1); border-color: var(--white); }
    .menu-toggle { display: none; background: none; border: none; color: var(--white); cursor: pointer; font-size: 24px; padding: 4px; }

    
    .drawer-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(7, 26, 58, 0.6); z-index: 1000; opacity: 0; visibility: hidden; transition: var(--transition); }
    .drawer { position: fixed; top: 0; left: -300px; width: 300px; height: 100%; background: var(--dark); z-index: 1001; transition: var(--transition); padding: 30px; display: flex; flex-direction: column; gap: 40px; box-shadow: var(--shadow); }
    .drawer.active { left: 0; }
    .drawer-overlay.active { opacity: 1; visibility: visible; }
    .drawer-header { display: flex; align-items: center; justify-content: space-between; }
    .drawer-close { background: none; border: none; color: var(--white); font-size: 24px; cursor: pointer; }
    .drawer-menu { display: flex; flex-direction: column; gap: 20px; }
    .drawer-menu a { color: var(--white); font-size: 16px; font-weight: 500; }
    .drawer-menu a:hover { color: var(--cyan); }
    .drawer-actions { display: flex; flex-direction: column; gap: 12px; margin-top: auto; }

    
    .hero-layout-01 { background: radial-gradient(circle at 50% -20%, var(--dark-light), var(--dark)); position: relative; padding: 100px 0 160px; overflow: hidden; text-align: center; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
    .hero-layout-01::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(80% 50% at 50% 100%, rgba(22, 119, 255, 0.15), transparent); pointer-events: none; }
    .hero-layout-01 .brand-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(56, 189, 248, 0.1); border: 1px solid rgba(56, 189, 248, 0.2); color: var(--cyan); padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 600; margin-bottom: 24px; letter-spacing: 1px; text-transform: uppercase; }
    .hero-layout-01 h1 { font-size: 48px; font-weight: 800; color: var(--white); line-height: 1.2; margin-bottom: 20px; letter-spacing: -1px; }
    .hero-layout-01 h1 span { color: var(--cyan); }
    .hero-layout-01 p { font-size: 18px; color: rgba(255, 255, 255, 0.7); max-width: 680px; margin: 0 auto 36px; }
    .hero-layout-01 .hero-btns { display: flex; justify-content: center; gap: 16px; margin-bottom: 80px; }
    .hero-layout-01 .hero-btns .btn { padding: 12px 32px; font-size: 15px; }
    .hero-visual-wrapper { position: relative; max-width: 960px; margin: 0 auto; }
    .hero-dashboard { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 40px; backdrop-filter: blur(10px); position: relative; z-index: 2; box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
    .hero-dashboard .chart-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .hero-dashboard .chart-item { background: rgba(7, 26, 58, 0.4); border: 1px solid rgba(255, 255, 255, 0.05); padding: 24px; border-radius: 12px; text-align: left; }
    .hero-dashboard .chart-item h4 { font-size: 13px; color: rgba(255, 255, 255, 0.5); font-weight: 500; margin-bottom: 12px; text-transform: uppercase; }
    .hero-dashboard .chart-item .value { font-size: 24px; font-weight: 700; color: var(--white); margin-bottom: 4px; font-family: monospace; }
    .hero-dashboard .chart-item .trend { font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
    .trend.up { color: #10B981; }
    .trend.down { color: #EF4444; }
    .hero-float-card { position: absolute; background: rgba(13, 39, 84, 0.85); border: 1px solid rgba(56, 189, 248, 0.2); padding: 16px 20px; border-radius: 12px; backdrop-filter: blur(8px); display: flex; align-items: center; gap: 12px; text-align: left; box-shadow: var(--shadow); z-index: 3; transition: var(--transition); }
    .hero-float-card:hover { transform: translateY(-5px); border-color: var(--cyan); }
    .hero-float-card .icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(56, 189, 248, 0.1); display: flex; align-items: center; justify-content: center; color: var(--cyan); font-weight: bold; }
    .hero-float-card .info h5 { font-size: 14px; color: var(--white); font-weight: 600; }
    .hero-float-card .info p { font-size: 11px; color: rgba(255, 255, 255, 0.5); margin: 0; }
    .fc-1 { top: -40px; left: -60px; }
    .fc-2 { top: -20px; right: -60px; }
    .fc-3 { bottom: -20px; left: -80px; }
    .fc-4 { bottom: -40px; right: -80px; }

    
    .trust-bar { background: var(--white); padding: 30px 0; border-bottom: 1px solid var(--border); }
    .trust-grid { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
    .trust-item { display: flex; align-items: center; gap: 16px; }
    .trust-item .icon { width: 48px; height: 48px; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 20px; font-weight: bold; }
    .trust-item h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 4px; }
    .trust-item p { font-size: 13px; color: var(--text-muted); }

    
    .section { padding: 90px 0; }
    .section-bg { background: var(--white); }
    .section-header { text-align: center; max-width: 600px; margin: 0 auto 60px; }
    .section-header h2 { font-size: 32px; font-weight: 800; color: var(--dark); margin-bottom: 16px; }
    .section-header p { font-size: 16px; color: var(--text-muted); }
    .feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .feat-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 40px 30px; transition: var(--transition); position: relative; overflow: hidden; }
    .feat-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--primary); transform: scaleY(0); transition: var(--transition); }
    .feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
    .feat-card:hover::before { transform: scaleY(1); }
    .feat-card .icon { width: 56px; height: 56px; border-radius: 10px; background: var(--light); display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 24px; font-weight: bold; margin-bottom: 24px; }
    .feat-card h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
    .feat-card p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

    
    .article-row-title { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
    .article-row-title h2 { font-size: 32px; font-weight: 800; color: var(--dark); }
    .article-row-title a { color: var(--primary); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }
    .article-row-title a:hover { color: var(--primary-hover); }
    .article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .article-card { background: var(--white); border-radius: 12px; border: 1px solid var(--border); overflow: hidden; display: flex; flex-direction: column; transition: var(--transition); }
    .article-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
    .article-thumb { height: 200px; position: relative; overflow: hidden; background: var(--dark); }
    .article-thumb img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
    .article-card:hover .article-thumb img { transform: scale(1.05); }
    .article-tag { position: absolute; top: 16px; left: 16px; background: rgba(7, 26, 58, 0.85); color: var(--cyan); padding: 4px 12px; border-radius: 4px; font-size: 12px; font-weight: 600; backdrop-filter: blur(4px); }
    .article-body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
    .article-body h3 { font-size: 18px; font-weight: 700; color: var(--dark); line-height: 1.4; margin-bottom: 12px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
    .article-body h3 a:hover { color: var(--primary); }
    .article-body p { font-size: 14px; color: var(--text-muted); line-height: 1.5; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
    .article-meta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-muted); border-top: 1px solid var(--border); padding-top: 16px; }
    .article-meta span { display: inline-flex; align-items: center; gap: 4px; }

    
    .cta-section { background: linear-gradient(135deg, var(--dark), var(--dark-light)); padding: 80px 0; text-align: center; color: var(--white); position: relative; overflow: hidden; }
    .cta-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 80% 80%, rgba(22, 119, 255, 0.15), transparent); pointer-events: none; }
    .cta-container { max-width: 680px; margin: 0 auto; position: relative; z-index: 2; }
    .cta-container h2 { font-size: 36px; font-weight: 800; margin-bottom: 20px; }
    .cta-container p { font-size: 16px; color: rgba(255,255,255,0.7); margin-bottom: 32px; }
    .cta-container .btn { padding: 12px 36px; font-size: 16px; }

    
    .footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 80px 0 30px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
    .footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 40px; margin-bottom: 60px; }
    .footer-brand { display: flex; flex-direction: column; gap: 20px; }
    .footer-brand .logo span { color: var(--white); }
    .footer-brand p { font-size: 14px; line-height: 1.6; }
    .footer-title { color: var(--white); font-size: 16px; font-weight: 700; margin-bottom: 20px; }
    .footer-links { display: flex; flex-direction: column; gap: 12px; }
    .footer-links a { font-size: 14px; }
    .footer-links a:hover { color: var(--cyan); }
    .footer-bottom { border-top: 1px solid rgba(255, 255, 255, 0.05); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; font-size: 13px; }
    .footer-meta { display: flex; gap: 24px; }
    .risk-warning { font-size: 12px; color: rgba(255,255,255,0.35); line-height: 1.8; margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.03); }

    
    @media (max-width: 1024px) {
      .hero-layout-01 { padding: 80px 0 120px; }
      .hero-layout-01 h1 { font-size: 38px; }
      .hero-visual-wrapper { max-width: 100%; padding: 0 40px; }
      .hero-dashboard .chart-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .fc-1 { left: -20px; }
      .fc-2 { right: -20px; }
      .fc-3 { left: -20px; bottom: -30px; }
      .fc-4 { right: -20px; bottom: -30px; }
    }
    @media (max-width: 768px) {
      .nav-menu, .header-actions { display: none; }
      .menu-toggle { display: block; }
      .hero-layout-01 h1 { font-size: 32px; }
      .hero-layout-01 p { font-size: 15px; }
      .hero-visual-wrapper { padding: 0; }
      .hero-dashboard { padding: 20px; }
      .hero-dashboard .chart-grid { grid-template-columns: 1fr; gap: 12px; }
      .hero-float-card { position: static; margin-bottom: 12px; width: 100%; display: flex; }
      .hero-float-cards-container { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
      .trust-grid { flex-direction: column; align-items: flex-start; gap: 24px; }
      .feat-grid, .article-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }