﻿* { margin: 0; padding: 0; box-sizing: border-box; }
    :root {
      --primary: #1D7BFF;
      --primary-glow: rgba(29, 123, 255, 0.35);
      --accent: #00f5ff;
      --accent-glow: rgba(0, 245, 255, 0.2);
      --dark-bg: #070b19;
      --card-bg: rgba(15, 23, 42, 0.7);
      --border: rgba(29, 123, 255, 0.2);
      --border-hover: rgba(0, 245, 255, 0.4);
      --text: #f8fafc;
      --text-muted: #94a3b8;
      --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    }
    body {
      background-color: var(--dark-bg);
      color: var(--text);
      font-family: var(--font);
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { color: inherit; text-decoration: none; transition: all 0.3s ease; }

    
    .header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(7, 11, 25, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
      height: 70px;
    }
    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 100%;
    }
    .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: 18px;
      font-weight: 800;
      line-height: 1;
      color: var(--text);
      white-space: nowrap;
      letter-spacing: 0.5px;
    }
    .desktop-nav {
      display: flex;
      gap: 28px;
    }
    .desktop-nav a {
      font-size: 15px;
      color: var(--text-muted);
      font-weight: 500;
    }
    .desktop-nav a:hover, .desktop-nav a.active {
      color: var(--accent);
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 22px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s;
      border: none;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--primary), #0056b3);
      color: #fff;
      box-shadow: 0 4px 15px var(--primary-glow);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px var(--primary-glow);
    }
    .btn-outline {
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text);
    }
    .btn-outline:hover {
      border-color: var(--accent);
      color: var(--accent);
      background: rgba(0, 245, 255, 0.05);
    }
    .menu-toggle {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
    }
    .menu-toggle span {
      display: block;
      width: 25px;
      height: 2px;
      background-color: var(--text);
      transition: 0.3s;
    }

    
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(0,0,0,0.6);
      backdrop-filter: blur(4px);
      z-index: 1001;
      opacity: 0;
      pointer-events: none;
      transition: 0.3s ease;
    }
    .drawer-overlay.active {
      opacity: 1;
      pointer-events: auto;
    }
    .drawer {
      position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100vh;
      background: var(--dark-bg);
      border-right: 1px solid var(--border);
      z-index: 1002;
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 32px;
      transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .drawer.active {
      left: 0;
    }
    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .drawer-close {
      background: none;
      border: none;
      color: var(--text);
      font-size: 28px;
      cursor: pointer;
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .drawer-nav a {
      font-size: 16px;
      color: var(--text-muted);
      padding: 12px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .drawer-nav a:hover {
      color: var(--accent);
    }

    
    .hero-layout-01 {
      position: relative;
      padding: 100px 20px 160px;
      background: radial-gradient(circle at center, rgba(29, 123, 255, 0.15) 0%, rgba(7, 11, 25, 0) 70%);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      overflow: hidden;
    }
    .hero-manifesto {
      max-width: 800px;
      margin-bottom: 60px;
      position: relative;
      z-index: 5;
    }
    .hero-tag {
      display: inline-block;
      padding: 6px 18px;
      border-radius: 50px;
      background: rgba(29, 123, 255, 0.1);
      border: 1px solid var(--border);
      color: var(--accent);
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 24px;
    }
    .hero-manifesto h1 {
      font-size: 52px;
      font-weight: 900;
      line-height: 1.25;
      margin-bottom: 24px;
      background: linear-gradient(135deg, #ffffff 30%, var(--accent) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-manifesto p {
      font-size: 18px;
      color: var(--text-muted);
      margin-bottom: 36px;
      line-height: 1.7;
    }
    .hero-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
    }

    
    .hero-display-container {
      position: relative;
      width: 100%;
      max-width: 900px;
      margin: 40px auto 0;
      z-index: 5;
    }
    .hero-main-panel {
      background: rgba(15, 23, 42, 0.6);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 40px;
      box-shadow: 0 20px 50px rgba(0,0,0,0.6);
      backdrop-filter: blur(12px);
      position: relative;
      z-index: 2;
    }
    .dashboard-preview {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }
    .db-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      padding-bottom: 16px;
    }
    .db-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: #10b981;
      font-weight: 600;
    }
    .db-badge::before {
      content: '';
      width: 8px;
      height: 8px;
      background: #10b981;
      border-radius: 50%;
      display: inline-block;
      box-shadow: 0 0 10px #10b981;
    }
    .db-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }
    .db-card {
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 10px;
      padding: 20px;
      text-align: left;
    }
    .db-card h4 { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; font-weight: 500;}
    .db-card .value { font-size: 28px; font-weight: 800; color: var(--accent); font-family: monospace; }

    
    .float-card {
      position: absolute;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 20px;
      width: 240px;
      text-align: left;
      box-shadow: 0 12px 40px rgba(0,0,0,0.4);
      backdrop-filter: blur(10px);
      z-index: 10;
      transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    .float-card:hover {
      border-color: var(--accent);
      transform: translateY(-6px);
      box-shadow: 0 15px 35px var(--accent-glow);
    }
    .float-card .icon {
      font-size: 28px;
      margin-bottom: 12px;
      color: var(--accent);
    }
    .float-card h3 {
      font-size: 15px;
      font-weight: 700;
      margin-bottom: 6px;
      color: #fff;
    }
    .float-card p {
      font-size: 12px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    .fc-1 { top: -40px; left: -140px; }
    .fc-2 { top: -40px; right: -140px; }
    .fc-3 { bottom: -20px; left: -140px; }
    .fc-4 { bottom: -20px; right: -140px; }

    
    .trust-strip {
      background: rgba(16, 24, 48, 0.5);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 30px 20px;
    }
    .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 span {
      font-size: 18px;
      font-weight: 700;
      color: var(--accent);
    }
    .trust-item p {
      font-size: 14px;
      color: var(--text-muted);
    }

    
    .section-container {
      max-width: 1200px;
      margin: 100px auto;
      padding: 0 20px;
    }
    .section-header {
      text-align: center;
      margin-bottom: 60px;
    }
    .section-header h2 {
      font-size: 36px;
      font-weight: 800;
      background: linear-gradient(135deg, #ffffff, var(--primary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 16px;
    }
    .section-header p {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto;
    }

    
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .feature-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      padding: 40px 30px;
      transition: all 0.3s ease;
    }
    .feature-card:hover {
      border-color: var(--accent);
      transform: translateY(-5px);
    }
    .feature-icon {
      font-size: 40px;
      color: var(--accent);
      margin-bottom: 24px;
    }
    .feature-card h3 {
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 12px;
      color: #fff;
    }
    .feature-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.7;
    }

    
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .article-card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 16px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      height: 100%;
      transition: all 0.3s ease;
    }
    .article-card:hover {
      border-color: var(--accent);
      transform: translateY(-5px);
    }
    .article-img {
      position: relative;
      height: 220px;
      background-size: cover;
      background-position: center;
      background-color: rgba(29, 123, 255, 0.1);
    }
    .article-badge {
      position: absolute;
      top: 20px;
      left: 20px;
      background: var(--primary);
      color: #fff;
      font-size: 11px;
      padding: 6px 14px;
      border-radius: 6px;
      font-weight: 700;
      letter-spacing: 0.5px;
    }
    .article-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .article-meta {
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 14px;
    }
    .article-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 12px;
      line-height: 1.4;
      color: #fff;
    }
    .article-desc {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 24px;
      flex-grow: 1;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .article-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 18px;
    }
    .read-more {
      color: var(--accent);
      font-weight: 700;
      font-size: 14px;
    }

    
    .about-preview {
      background: radial-gradient(circle at top right, rgba(0, 245, 255, 0.08), transparent);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 60px;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }
    .about-preview h3 {
      font-size: 28px;
      font-weight: 800;
      color: #fff;
    }
    .about-preview p {
      color: var(--text-muted);
      font-size: 16px;
      line-height: 1.8;
    }

    
    .footer {
      background: #03060f;
      border-top: 1px solid var(--border);
      padding: 80px 20px 30px;
      margin-top: 100px;
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.5fr;
      gap: 50px;
      margin-bottom: 60px;
    }
    .footer-brand .footer-desc {
      color: var(--text-muted);
      font-size: 14px;
      margin-top: 20px;
      line-height: 1.8;
    }
    .footer-links h4, .footer-contact h4 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 24px;
      color: #fff;
      letter-spacing: 0.5px;
    }
    .footer-links ul {
      list-style: none;
    }
    .footer-links ul li {
      margin-bottom: 14px;
    }
    .footer-links ul li a {
      color: var(--text-muted);
      font-size: 14px;
    }
    .footer-links ul li a:hover {
      color: var(--accent);
    }
    .footer-contact p {
      color: var(--text-muted);
      font-size: 14px;
      margin-bottom: 14px;
    }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.06);
      padding-top: 30px;
    }
    .footer-bottom-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 15px;
      color: var(--text-muted);
      font-size: 13px;
    }

    
    @media (max-width: 1200px) {
      .fc-1, .fc-2, .fc-3, .fc-4 {
        position: static;
        width: 100%;
      }
      .float-cards-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-top: 30px;
        width: 100%;
      }
      .hero-display-container {
        max-width: 700px;
      }
    }
    @media (max-width: 992px) {
      .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }
      .features-grid, .articles-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
    @media (max-width: 768px) {
      .desktop-nav { display: none; }
      .menu-toggle { display: flex; }
      .hero-manifesto h1 { font-size: 36px; }
      .db-grid { grid-template-columns: 1fr; }
      .features-grid, .articles-grid { grid-template-columns: 1fr; }
      .float-cards-wrapper { grid-template-columns: 1fr; }
      .footer-container { grid-template-columns: 1fr; }
      .about-preview { padding: 30px; }
    }