﻿:root {
      --primary: #1D7BFF;
      --primary-grad: linear-gradient(135deg, #1D7BFF 0%, #00C2FF 100%);
      --bg-dark: rgb(35,39,47);
      --bg-deep: #0F1115;
      --text-light: #F5F7FA;
      --text-muted: #8E9AA8;
      --glass: rgba(255, 255, 255, 0.03);
      --glass-hover: rgba(255, 255, 255, 0.07);
      --glass-border: rgba(255, 255, 255, 0.08);
      --glass-border-active: rgba(29, 123, 255, 0.4);
      --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body {
      background-color: var(--bg-deep);
      color: var(--text-light);
      font-family: var(--font);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; transition: 0.3s; }
    img { max-width: 100%; height: auto; }
    
    
    .header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(15, 17, 21, 0.75);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--glass-border);
    }
    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }
    .logo img {
      height: 38px;
      width: auto;
      max-width: 140px;
      object-fit: contain;
      flex-shrink: 0;
    }
    .logo span {
      font-size: 18px;
      font-weight: 800;
      letter-spacing: 0.5px;
      color: var(--text-light);
      background: linear-gradient(to right, #fff, #8E9AA8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .nav-desk {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .nav-desk a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-muted);
    }
    .nav-desk a:hover {
      color: var(--primary);
    }
    .nav-btn {
      background: var(--primary-grad);
      color: #fff;
      padding: 8px 18px;
      border-radius: 20px;
      font-size: 14px;
      font-weight: 600;
      box-shadow: 0 4px 15px var(--glass-border-active);
    }
    .nav-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(29, 123, 255, 0.5);
    }
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
    }
    .menu-toggle span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--text-light);
      transition: 0.3s;
    }

    
    .drawer {
      position: fixed;
      top: 0;
      left: -100%;
      width: 280px;
      height: 100%;
      background: var(--bg-dark);
      z-index: 1010;
      padding: 30px 24px;
      display: flex;
      flex-direction: column;
      gap: 30px;
      transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      border-right: 1px solid var(--glass-border);
      overflow-y: auto;
    }
    .drawer.active {
      left: 0;
    }
    .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .drawer-close {
      font-size: 24px;
      color: var(--text-muted);
      background: none;
      border: none;
      cursor: pointer;
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .drawer-nav a {
      font-size: 16px;
      color: var(--text-muted);
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .drawer-nav a:hover {
      color: var(--primary);
    }
    .drawer-mask {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(4px);
      z-index: 1005;
      display: none;
    }
    .drawer-mask.active {
      display: block;
    }

    
    .hero {
      position: relative;
      padding: 150px 20px 80px;
      background: radial-gradient(circle at 50% 15%, rgba(29, 123, 255, 0.15) 0%, transparent 60%);
      text-align: center;
    }
    .hero-meta {
      display: inline-block;
      padding: 6px 14px;
      background: rgba(29, 123, 255, 0.1);
      border: 1px solid rgba(29, 123, 255, 0.2);
      border-radius: 20px;
      color: var(--primary);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 1px;
      margin-bottom: 24px;
    }
    .hero h1 {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
      max-width: 800px;
      margin: 0 auto 20px;
      background: linear-gradient(135deg, #FFF 30%, #A5B4FC 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero p {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto 35px;
    }
    .hero-btns {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 60px;
    }
    .btn-main {
      background: var(--primary-grad);
      color: #fff;
      padding: 14px 32px;
      border-radius: 30px;
      font-weight: 600;
      box-shadow: 0 8px 24px rgba(29, 123, 255, 0.3);
    }
    .btn-main:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(29, 123, 255, 0.5);
    }
    .btn-sub {
      background: var(--glass);
      border: 1px solid var(--glass-border);
      color: var(--text-light);
      padding: 14px 32px;
      border-radius: 30px;
      font-weight: 600;
    }
    .btn-sub:hover {
      background: var(--glass-hover);
      border-color: var(--text-muted);
    }
    
    
    .hero-visual-wrapper {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .hero-panel {
      background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.3);
      backdrop-filter: blur(10px);
      position: relative;
      z-index: 2;
    }
    
    .chart-mock {
      height: 200px;
      display: flex;
      align-items: flex-end;
      gap: 15px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      border-left: 1px solid rgba(255,255,255,0.1);
      padding: 10px;
    }
    .chart-bar {
      flex: 1;
      background: linear-gradient(180deg, var(--primary) 0%, rgba(29, 123, 255, 0.1) 100%);
      border-radius: 4px 4px 0 0;
      animation: barGrow 1.5s ease-out forwards;
      opacity: 0.85;
    }
    @keyframes barGrow {
      from { height: 0; }
      to { height: var(--h); }
    }
    
    .floating-card {
      position: absolute;
      background: rgba(35, 39, 47, 0.85);
      border: 1px solid var(--glass-border);
      padding: 16px 20px;
      border-radius: 12px;
      backdrop-filter: blur(8px);
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
      text-align: left;
      z-index: 3;
      transition: transform 0.3s;
    }
    .floating-card:hover {
      transform: translateY(-5px);
      border-color: var(--primary);
    }
    .fc-1 { top: -20px; left: -40px; }
    .fc-2 { top: -10px; right: -40px; }
    .fc-3 { bottom: 20px; left: -60px; }
    .fc-4 { bottom: -10px; right: -50px; }
    .fc-num { font-size: 24px; font-weight: 700; color: var(--primary); display: block; }
    .fc-txt { font-size: 12px; color: var(--text-muted); }

    
    .trust-strip {
      padding: 50px 20px;
      background: rgba(15, 17, 21, 0.5);
      border-top: 1px solid var(--glass-border);
      border-bottom: 1px solid var(--glass-border);
    }
    .trust-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }
    .trust-item {
      text-align: center;
    }
    .trust-val { font-size: 32px; font-weight: 800; color: var(--text-light); margin-bottom: 4px; }
    .trust-lbl { font-size: 14px; color: var(--text-muted); }

    
    .section {
      padding: 100px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }
    .section-title h2 {
      font-size: 36px;
      font-weight: 800;
      background: linear-gradient(135deg, #FFF 0%, #94A3B8 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 12px;
    }
    .section-title p {
      color: var(--text-muted);
      font-size: 16px;
    }
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .card-feature {
      background: rgba(255,255,255,0.02);
      border: 1px solid var(--glass-border);
      padding: 40px 30px;
      border-radius: 16px;
      transition: 0.3s;
    }
    .card-feature:hover {
      background: rgba(255,255,255,0.04);
      border-color: var(--primary-glow);
      transform: translateY(-6px);
    }
    .feat-icon {
      width: 50px;
      height: 50px;
      background: rgba(29, 123, 255, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      margin-bottom: 24px;
      font-size: 20px;
      font-weight: 700;
    }
    .feat-title { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text-light); }
    .feat-desc { font-size: 14px; color: var(--text-muted); }

    
    .news-section {
      background: rgba(15,17,21,0.3);
      padding: 100px 20px;
    }
    .news-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .news-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 50px;
    }
    .news-header h2 { font-size: 32px; font-weight: 800; }
    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .article-card {
      background: var(--bg-dark);
      border: 1px solid var(--glass-border);
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .article-img {
      height: 180px;
      background: #1e222b;
      overflow: hidden;
      position: relative;
    }
    .article-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.5s;
    }
    .article-card:hover .article-img img {
      transform: scale(1.05);
    }
    .article-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--primary);
      color: #fff;
      font-size: 12px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 4px;
    }
    .article-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .article-title {
      font-size: 18px;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 12px;
      color: var(--text-light);
    }
    .article-title:hover { color: var(--primary); }
    .article-desc {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .article-meta {
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-muted);
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 15px;
    }

    
    .cta {
      padding: 100px 20px;
      text-align: center;
      background: linear-gradient(180deg, transparent 0%, rgba(29, 123, 255, 0.08) 100%);
    }
    .cta h2 { font-size: 36px; font-weight: 800; margin-bottom: 20px; }
    .cta p { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto 30px; }

    
    .footer {
      background: var(--bg-deep);
      border-top: 1px solid var(--glass-border);
      padding: 80px 20px 40px;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 60px;
    }
    .footer-desc {
      color: var(--text-muted);
      font-size: 14px;
      margin-top: 20px;
      max-width: 320px;
    }
    .footer-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-light);
      margin-bottom: 20px;
    }
    .footer-links { list-style: none; }
    .footer-links li { margin-bottom: 12px; }
    .footer-links a { color: var(--text-muted); font-size: 14px; }
    .footer-links a:hover { color: var(--primary); }
    
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 40px;
      border-top: 1px solid rgba(255,255,255,0.05);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      font-size: 13px;
      color: var(--text-muted);
    }
    .footer-info span { margin-right: 20px; }

    
    @media (max-width: 1024px) {
      .floating-card { display: none; }
      .grid-3, .news-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-container { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 768px) {
      .nav-desk { display: none; }
      .menu-toggle { display: flex; }
      .hero h1 { font-size: 32px; }
      .hero p { font-size: 15px; }
      .hero-panel { padding: 20px; }
      .trust-container { grid-template-columns: repeat(2, 1fr); }
      .grid-3, .news-grid { grid-template-columns: 1fr; }
      .footer-container { grid-template-columns: 1fr; }
    }