﻿:root {
      --primary: #1D7BFF;
      --theme-glow: rgb(139,233,253);
      --deep-ink: #0B0F19;
      --dark-card: #111827;
      --silver-white: #F3F4F6;
      --text-muted: #9CA3AF;
      --border-color: rgba(139, 233, 253, 0.15);
      --glass-bg: rgba(17, 24, 39, 0.75);
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      background-color: var(--deep-ink);
      color: var(--silver-white);
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
    
    
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(11, 15, 25, 0.9);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-color);
    }
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px 20px;
    }
    .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: 18px;
      font-weight: 800;
      line-height: 1;
      color: var(--silver-white);
      text-shadow: 0 0 10px rgba(139, 233, 253, 0.3);
      white-space: nowrap;
    }
    .desktop-nav {
      display: flex;
      gap: 24px;
    }
    .desktop-nav a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-muted);
    }
    .desktop-nav a:hover {
      color: var(--theme-glow);
      text-shadow: 0 0 8px rgba(139, 233, 253, 0.5);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .nav-btn {
      background: linear-gradient(135deg, var(--primary), var(--theme-glow));
      color: #000;
      font-weight: 600;
      padding: 8px 18px;
      border-radius: 6px;
      font-size: 14px;
    }
    .nav-btn:hover {
      box-shadow: 0 0 15px rgba(139, 233, 253, 0.4);
      transform: translateY(-1px);
    }
    .drawer-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
    }
    .drawer-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background-color: var(--silver-white);
    }

    
    .mobile-drawer {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      z-index: 200;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .mobile-drawer.active { left: 0; }
    .drawer-backdrop {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.8);
      backdrop-filter: blur(4px);
    }
    .drawer-content {
      position: absolute;
      top: 0;
      left: 0;
      width: 280px;
      height: 100%;
      background: var(--dark-card);
      border-right: 1px solid var(--border-color);
      display: flex;
      flex-direction: column;
      padding: 24px;
    }
    .drawer-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
    }
    .drawer-close {
      background: none;
      border: none;
      font-size: 28px;
      color: var(--silver-white);
      cursor: pointer;
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .drawer-nav a {
      font-size: 18px;
      font-weight: 500;
    }
    .drawer-footer {
      margin-top: auto;
      font-size: 12px;
      color: var(--text-muted);
    }

    
    .hero {
      position: relative;
      padding: 100px 20px 80px 20px;
      background: radial-gradient(circle at 50% 15%, rgba(29, 123, 255, 0.15) 0%, transparent 60%);
      text-align: center;
    }
    .hero-glow-1, .hero-glow-2 {
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      background: var(--primary);
      filter: blur(130px);
      opacity: 0.12;
      pointer-events: none;
    }
    .hero-glow-1 { top: 10%; left: 15%; }
    .hero-glow-2 { bottom: 10%; right: 15%; }
    
    .hero-container {
      max-width: 1000px;
      margin: 0 auto;
    }
    .hero-badge {
      display: inline-flex;
      background: rgba(29, 123, 255, 0.1);
      border: 1px solid rgba(139, 233, 253, 0.3);
      padding: 6px 16px;
      border-radius: 30px;
      font-size: 13px;
      color: var(--theme-glow);
      font-weight: 600;
      margin-bottom: 24px;
      letter-spacing: 1px;
    }
    .hero-title {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
      color: #FFF;
      margin-bottom: 20px;
      text-shadow: 0 0 20px rgba(139, 233, 253, 0.1);
    }
    .hero-subtitle {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 750px;
      margin: 0 auto 40px auto;
    }
    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 60px;
    }
    .btn {
      padding: 14px 28px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 16px;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--primary) 0%, #1052C5 100%);
      color: #FFF;
      box-shadow: 0 4px 15px rgba(29, 123, 255, 0.4);
    }
    .btn-primary:hover {
      box-shadow: 0 4px 25px rgba(29, 123, 255, 0.6);
      transform: translateY(-2px);
    }
    .btn-outline {
      border: 1px solid var(--border-color);
      color: var(--silver-white);
      background: rgba(255, 255, 255, 0.02);
    }
    .btn-outline:hover {
      background: rgba(139, 233, 253, 0.1);
      border-color: var(--theme-glow);
    }

    
    .hero-visual-wrapper {
      position: relative;
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
    }
    .main-visual-panel {
      background: var(--glass-bg);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 30px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    }
    .dashboard-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 24px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      padding-bottom: 12px;
    }
    .dashboard-header span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
    }
    .dot-red { background: #EF4444; }
    .dot-yellow { background: #F59E0B; }
    .dot-green { background: #10B981; }
    .dashboard-title {
      font-size: 13px;
      color: var(--text-muted);
      margin-left: 8px;
      font-family: monospace;
    }
    .db-row {
      display: flex;
      justify-content: space-around;
      gap: 20px;
      margin-bottom: 30px;
    }
    .db-item {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .db-label { font-size: 12px; color: var(--text-muted); }
    .db-value { font-size: 18px; font-weight: 700; color: #FFF; }
    .text-glow { color: var(--theme-glow); text-shadow: 0 0 8px rgba(139,233,253,0.5); }
    .numbers-glow {
      display: flex;
      gap: 8px;
    }
    .num-ball {
      width: 30px;
      height: 30px;
      background: radial-gradient(circle at 30% 30%, #4f46e5, #1e1b4b);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: bold;
      box-shadow: 0 0 10px rgba(139,233,253,0.3);
    }
    .mini-chart {
      width: 100%;
      height: 120px;
    }

    .floating-card {
      background: var(--glass-bg);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      padding: 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      text-align: left;
      box-shadow: 0 10px 30px rgba(0,0,0,0.3);
      backdrop-filter: blur(8px);
    }
    .card-icon {
      font-size: 24px;
      color: var(--theme-glow);
    }
    .floating-card h5 { font-size: 14px; font-weight: 700; color: #FFF; margin-bottom: 4px; }
    .floating-card p { font-size: 12px; color: var(--text-muted); }

    
    .trust-bar {
      max-width: 1200px;
      margin: 40px auto 80px auto;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      padding: 0 20px;
    }
    .trust-item {
      background: linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.05) 100%);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 12px;
      padding: 24px;
      text-align: center;
    }
    .trust-item h3 { color: var(--theme-glow); font-size: 20px; margin-bottom: 12px; }
    .trust-item p { color: var(--text-muted); font-size: 14px; }

    
    .main-section {
      max-width: 1200px;
      margin: 0 auto 80px auto;
      padding: 0 20px;
    }
    .section-title {
      font-size: 28px;
      font-weight: 800;
      color: #FFF;
      margin-bottom: 40px;
      position: relative;
      padding-left: 16px;
    }
    .section-title::before {
      content: '';
      position: absolute;
      left: 0;
      top: 4px;
      bottom: 4px;
      width: 4px;
      background: var(--primary);
    }
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .article-card {
      background: var(--dark-card);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }
    .article-img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .article-body {
      padding: 20px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .article-tag {
      align-self: flex-start;
      background: rgba(139, 233, 253, 0.1);
      color: var(--theme-glow);
      font-size: 11px;
      padding: 4px 8px;
      border-radius: 4px;
      margin-bottom: 12px;
    }
    .article-title {
      font-size: 18px;
      font-weight: 700;
      color: #FFF;
      margin-bottom: 10px;
    }
    .article-summary {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 20px;
      flex-grow: 1;
    }
    .article-footer {
      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: 12px;
    }

    
    .cta-banner {
      background: linear-gradient(135deg, rgba(29, 123, 255, 0.2) 0%, rgba(139, 233, 253, 0.1) 100%);
      border: 1px solid var(--border-color);
      border-radius: 20px;
      padding: 60px 40px;
      text-align: center;
      max-width: 1200px;
      margin: 0 auto 80px auto;
    }
    .cta-banner h2 { font-size: 32px; font-weight: 800; color: #FFF; margin-bottom: 16px; }
    .cta-banner p { font-size: 16px; color: var(--text-muted); max-width: 600px; margin: 0 auto 30px auto; }

    
    .site-footer {
      background: #060910;
      border-top: 1px solid var(--border-color);
      padding: 60px 20px 30px 20px;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand p { margin-top: 15px; font-size: 13px; color: var(--text-muted); }
    .footer-links-group h4, .footer-contact h4 {
      font-size: 15px;
      color: #FFF;
      margin-bottom: 20px;
      font-weight: 700;
    }
    .footer-links-group ul { list-style: none; }
    .footer-links-group ul li { margin-bottom: 12px; }
    .footer-links-group ul li a { font-size: 13px; color: var(--text-muted); }
    .footer-links-group ul li a:hover { color: var(--theme-glow); }
    .footer-contact p { font-size: 13px; color: var(--text-muted); margin-bottom: 12px; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 30px;
      text-align: center;
      font-size: 12px;
      color: var(--text-muted);
    }

    
    @media (min-width: 1024px) {
      .hero-visual-wrapper {
        position: relative;
        padding: 40px 100px;
        margin-top: 50px;
      }
      .floating-card {
        position: absolute;
        width: 240px;
      }
      .float-1 { top: 10%; left: -60px; }
      .float-2 { top: 10%; right: -60px; }
      .float-3 { bottom: 15%; left: -80px; }
      .float-4 { bottom: 15%; right: -80px; }
    }
    @media (max-width: 1023px) {
      .drawer-toggle { display: flex; }
      .desktop-nav, .header-actions .nav-btn { display: none; }
      .hero-title { font-size: 32px; }
      .hero-subtitle { font-size: 15px; }
      .hero-actions { flex-direction: column; gap: 12px; }
      .hero-visual-wrapper {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 30px;
      }
      .floating-card {
        position: static;
        width: 100%;
      }
      .trust-bar, .articles-grid, .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
      }
    }