﻿:root {
      --primary: rgb(3,105,161);
      --glacier: #1D7BFF;
      --deep-sea: #0A1128;
      --sea-medium: #101F42;
      --silver-white: #F4F7FC;
      --text-dark: #1E293B;
      --text-muted: #64748B;
      --text-light: #F8FAFC;
      --border-glow: rgba(29, 123, 255, 0.25);
      --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: var(--font-family);
      color: var(--text-dark);
      background-color: var(--silver-white);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.3s ease;
    }
    
    .header {
      background: var(--deep-sea);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(12px);
    }
    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }
    .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-light);
      white-space: nowrap;
      letter-spacing: 0.5px;
    }
    .nav-desktop {
      display: flex;
      gap: 28px;
    }
    .nav-desktop a {
      color: #94A3B8;
      font-size: 15px;
      font-weight: 500;
    }
    .nav-desktop a:hover {
      color: var(--glacier);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .btn-primary-sm {
      background: linear-gradient(135deg, var(--glacier), var(--primary));
      color: var(--text-light);
      padding: 10px 20px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 14px;
      box-shadow: 0 4px 12px rgba(29, 123, 255, 0.2);
    }
    .btn-primary-sm:hover {
      transform: translateY(-1px);
      box-shadow: 0 6px 16px rgba(29, 123, 255, 0.3);
    }
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      flex-direction: column;
      gap: 6px;
    }
    .mobile-menu-btn span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--text-light);
    }

    
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(10, 17, 40, 0.8);
      z-index: 1999;
      display: none;
      backdrop-filter: blur(4px);
    }
    .drawer {
      position: fixed;
      top: 0;
      left: -300px;
      width: 300px;
      height: 100vh;
      background: var(--deep-sea);
      z-index: 2000;
      transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      box-shadow: 5px 0 25px rgba(0,0,0,0.5);
    }
    .drawer.active {
      left: 0;
    }
    .drawer-header {
      padding: 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .drawer-close {
      background: none;
      border: none;
      color: var(--text-light);
      font-size: 28px;
      cursor: pointer;
    }
    .drawer-content {
      flex: 1;
      padding: 24px;
      overflow-y: auto;
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .drawer-nav a {
      color: #94A3B8;
      font-size: 16px;
      font-weight: 500;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    }
    .drawer-nav a:hover {
      color: var(--glacier);
    }
    .drawer-footer {
      padding: 24px;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .drawer-desc {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    
    .hero {
      background: radial-gradient(circle at 50% 120%, var(--sea-medium), var(--deep-sea));
      color: var(--text-light);
      padding: 100px 20px 80px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -10%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 300px;
      background: radial-gradient(circle, rgba(29, 123, 255, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-manifesto {
      display: inline-block;
      background: rgba(29, 123, 255, 0.1);
      border: 1px solid var(--border-glow);
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 14px;
      color: var(--glacier);
      font-weight: 600;
      margin-bottom: 24px;
      letter-spacing: 1px;
    }
    .hero h1 {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
      max-width: 800px;
      margin: 0 auto 20px;
      background: linear-gradient(135deg, #FFF, #94A3B8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero p.hero-subtitle {
      font-size: 18px;
      color: #94A3B8;
      max-width: 600px;
      margin: 0 auto 36px;
    }
    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 60px;
    }
    .btn-hero-primary {
      background: linear-gradient(135deg, var(--glacier), var(--primary));
      color: #FFF;
      padding: 14px 32px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 16px;
      box-shadow: 0 8px 24px rgba(29, 123, 255, 0.3);
    }
    .btn-hero-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(29, 123, 255, 0.4);
    }
    .btn-hero-secondary {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.1);
      color: var(--text-light);
      padding: 14px 32px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 16px;
    }
    .btn-hero-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
    }
    
    
    .hero-visual-wrapper {
      max-width: 1000px;
      margin: 0 auto;
      position: relative;
    }
    .main-visual-panel {
      background: rgba(16, 31, 66, 0.6);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.4);
      backdrop-filter: blur(10px);
    }
    .panel-chart-mock {
      height: 180px;
      display: flex;
      align-items: flex-end;
      justify-content: space-around;
      gap: 8px;
      border-bottom: 2px solid rgba(29, 123, 255, 0.2);
      padding-bottom: 10px;
    }
    .chart-bar {
      width: 10%;
      background: linear-gradient(to top, rgba(29, 123, 255, 0.1), rgba(29, 123, 255, 0.8));
      border-radius: 4px 4px 0 0;
      animation: rise 1.5s ease-out forwards;
    }
    @keyframes rise {
      from { height: 0; }
      to { height: var(--height); }
    }
    .surrounding-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
      margin-top: 30px;
    }
    .float-card {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 12px;
      padding: 20px;
      text-align: left;
      transition: all 0.3s ease;
    }
    .float-card:hover {
      transform: translateY(-5px);
      border-color: var(--glacier);
      box-shadow: 0 8px 24px rgba(29, 123, 255, 0.15);
      background: rgba(255, 255, 255, 0.05);
    }
    .float-card .icon {
      font-size: 24px;
      color: var(--glacier);
      margin-bottom: 12px;
    }
    .float-card h3 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .float-card p {
      font-size: 13px;
      color: #94A3B8;
    }

    
    .trust-strip {
      background: #FFF;
      padding: 30px 20px;
      border-bottom: 1px solid #E2E8F0;
    }
    .trust-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 20px;
    }
    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .trust-item .num {
      font-size: 32px;
      font-weight: 800;
      color: var(--primary);
    }
    .trust-item .label {
      font-size: 14px;
      color: var(--text-muted);
    }

    
    .content-section {
      max-width: 1200px;
      margin: 60px auto;
      padding: 0 20px;
    }
    .section-title {
      font-size: 32px;
      font-weight: 800;
      text-align: center;
      margin-bottom: 40px;
      color: var(--deep-sea);
    }
    .section-title span {
      color: var(--primary);
    }

    
    .news-grid {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 30px;
    }
    .news-column-main h3, .news-column-side h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 20px;
      padding-left: 12px;
      border-left: 4px solid var(--primary);
    }
    .article-card {
      background: #FFF;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05);
      margin-bottom: 20px;
      transition: all 0.3s ease;
      display: flex;
      gap: 20px;
      padding: 20px;
    }
    .article-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-premium, 0 10px 20px rgba(0,0,0,0.08));
    }
    .article-thumb {
      width: 200px;
      height: 130px;
      border-radius: 8px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .article-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .article-info {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    .article-info h4 {
      font-size: 18px;
      font-weight: 700;
      color: var(--deep-sea);
      margin-bottom: 8px;
      line-height: 1.4;
    }
    .article-info h4:hover {
      color: var(--primary);
    }
    .article-summary {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 12px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .article-meta {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 12px;
      color: var(--text-muted);
    }
    .article-meta .tag {
      background: rgba(29, 123, 255, 0.08);
      color: var(--glacier);
      padding: 2px 8px;
      border-radius: 4px;
      font-weight: 600;
    }

    
    .hot-article-card {
      background: #FFF;
      padding: 16px;
      border-radius: 8px;
      margin-bottom: 12px;
      border-left: 3px solid transparent;
      transition: all 0.3s ease;
    }
    .hot-article-card:hover {
      border-left-color: var(--glacier);
      background: #F1F5F9;
    }
    .hot-title {
      font-size: 14px;
      font-weight: 600;
      color: var(--deep-sea);
      margin-bottom: 6px;
    }
    .hot-meta {
      font-size: 12px;
      color: var(--text-muted);
      display: flex;
      justify-content: space-between;
    }

    
    .brand-value-block {
      background: var(--deep-sea);
      color: var(--text-light);
      padding: 80px 20px;
      border-radius: 20px;
      margin: 80px auto;
      max-width: 1200px;
      text-align: center;
      position: relative;
    }
    .brand-value-block h2 {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 20px;
    }
    .brand-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 48px;
    }
    .brand-card {
      background: rgba(255, 255, 255, 0.03);
      padding: 30px;
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, 0.05);
    }
    .brand-card h3 {
      font-size: 18px;
      margin-bottom: 12px;
      color: var(--glacier);
    }

    
    .cta-banner {
      background: linear-gradient(135deg, var(--deep-sea), var(--sea-medium));
      color: #FFF;
      padding: 60px 40px;
      border-radius: 16px;
      text-align: center;
      margin: 80px auto;
      max-width: 1200px;
      border: 1px solid var(--border-glow);
    }
    .cta-banner h2 {
      font-size: 28px;
      font-weight: 800;
      margin-bottom: 16px;
    }
    .cta-banner p {
      color: #94A3B8;
      margin-bottom: 24px;
    }

    
    .footer {
      background: var(--deep-sea);
      color: #94A3B8;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      padding: 60px 20px 20px;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr repeat(3, 1fr);
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand .logo {
      margin-bottom: 16px;
    }
    .footer-brand-desc {
      font-size: 14px;
      line-height: 1.6;
    }
    .footer-col h4 {
      color: var(--text-light);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 20px;
    }
    .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(--glacier);
    }
    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 20px;
      font-size: 12px;
      text-align: center;
    }
    .footer-bottom-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-disclaimer {
      width: 100%;
      margin-top: 12px;
      opacity: 0.6;
    }

    
    @media (max-width: 991px) {
      .nav-desktop {
        display: none;
      }
      .mobile-menu-btn {
        display: flex;
      }
      .news-grid {
        grid-template-columns: 1fr;
      }
      .surrounding-cards {
        grid-template-columns: repeat(2, 1fr);
      }
      .brand-grid {
        grid-template-columns: 1fr;
      }
      .footer-container {
        grid-template-columns: 1fr;
      }
    }
    @media (max-width: 576px) {
      .hero h1 {
        font-size: 32px;
      }
      .surrounding-cards {
        grid-template-columns: 1fr;
      }
      .article-card {
        flex-direction: column;
      }
      .article-thumb {
        width: 100%;
        height: 180px;
      }
    }