﻿:root {
      --primary-color: rgb(52,168,83);
      --tech-blue: #1d7bff;
      --deep-ink: #060f1e;
      --slate-50: #f8fafc;
      --slate-100: #f1f5f9;
      --slate-800: #1e293b;
      --slate-900: #0f172a;
      --text-dark: #1e293b;
      --text-muted: #64748b;
      --white: #ffffff;
      --transition: all 0.3s ease;
    }
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      color: var(--text-dark);
      background-color: var(--slate-50);
      line-height: 1.6;
    }
    a {
      text-decoration: none;
      color: inherit;
    }

    
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 70px;
      background: rgba(6, 15, 30, 0.9);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      z-index: 1000;
      transition: var(--transition);
    }
    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 20px;
    }
    .logo {
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }
    .logo img {
      display: block;
      height: 38px;
      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;
    }
    .desktop-nav {
      display: flex;
      gap: 24px;
    }
    .desktop-nav a {
      color: rgba(255, 255, 255, 0.8);
      font-size: 15px;
      font-weight: 500;
      transition: var(--transition);
    }
    .desktop-nav a:hover {
      color: var(--tech-blue);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    .nav-btn-download {
      background: var(--primary-color);
      color: var(--white);
      padding: 8px 18px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 14px;
      transition: var(--transition);
    }
    .nav-btn-download:hover {
      opacity: 0.9;
      transform: translateY(-1px);
    }
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }
    .menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background-color: var(--white);
      transition: var(--transition);
    }

    
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.6);
      z-index: 2000;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
    }
    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }
    .drawer-nav {
      position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100%;
      background: var(--slate-900);
      z-index: 2001;
      display: flex;
      flex-direction: column;
      padding: 20px;
      transition: var(--transition);
    }
    .drawer-nav.active {
      left: 0;
    }
    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
    }
    .drawer-close {
      background: none;
      border: none;
      color: var(--white);
      font-size: 28px;
      cursor: pointer;
    }
    .drawer-menu {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .drawer-menu a {
      color: rgba(255, 255, 255, 0.8);
      font-size: 16px;
      font-weight: 500;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .drawer-menu a:hover {
      color: var(--tech-blue);
    }
    .drawer-footer {
      margin-top: auto;
      color: var(--text-muted);
      font-size: 12px;
    }

    
    .hero-layout-01 {
      position: relative;
      background: radial-gradient(circle at 50% 30%, #15325b 0%, var(--deep-ink) 100%);
      padding: 140px 20px 80px 20px;
      overflow: hidden;
      color: var(--white);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .hero-layout-01::before {
      content: '';
      position: absolute;
      top: -10%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(29, 123, 255, 0.2) 0%, rgba(0,0,0,0) 70%);
      z-index: 1;
      pointer-events: none;
    }
    .hero-manifesto {
      position: relative;
      z-index: 2;
      display: inline-block;
      padding: 8px 20px;
      background: rgba(29, 123, 255, 0.15);
      border: 1px solid rgba(29, 123, 255, 0.3);
      border-radius: 50px;
      font-size: 14px;
      color: #79b0ff;
      letter-spacing: 2px;
      margin-bottom: 24px;
      font-weight: 600;
    }
    .hero-title {
      position: relative;
      z-index: 2;
      font-size: clamp(28px, 5vw, 52px);
      font-weight: 800;
      line-height: 1.25;
      background: linear-gradient(135deg, #ffffff 30%, #a5c7f7 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 20px;
      max-width: 900px;
    }
    .hero-subtitle {
      position: relative;
      z-index: 2;
      font-size: clamp(15px, 2.5vw, 18px);
      color: #a0aec0;
      margin-bottom: 40px;
      max-width: 650px;
      line-height: 1.6;
    }
    .hero-buttons {
      position: relative;
      z-index: 2;
      display: flex;
      gap: 16px;
      margin-bottom: 60px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .hero-btn-primary {
      background: linear-gradient(135deg, var(--tech-blue), #0056b3);
      color: var(--white);
      padding: 14px 36px;
      border-radius: 8px;
      font-weight: 600;
      transition: var(--transition);
      box-shadow: 0 4px 15px rgba(29, 123, 255, 0.4);
    }
    .hero-btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(29, 123, 255, 0.6);
    }
    .hero-btn-secondary {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid rgba(255, 255, 255, 0.15);
      color: var(--white);
      padding: 14px 36px;
      border-radius: 8px;
      font-weight: 600;
      transition: var(--transition);
      backdrop-filter: blur(5px);
    }
    .hero-btn-secondary:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: rgba(255, 255, 255, 0.3);
      transform: translateY(-2px);
    }

    
    .hero-visual-wrapper {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 1100px;
      margin-top: 20px;
    }
    .hero-main-panel {
      background: rgba(11, 25, 44, 0.85);
      border: 1px solid rgba(29, 123, 255, 0.25);
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255,255,255,0.1);
      border-radius: 16px;
      padding: 30px;
      max-width: 800px;
      margin: 0 auto;
      backdrop-filter: blur(10px);
    }
    .panel-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      padding-bottom: 15px;
      margin-bottom: 20px;
    }
    .panel-dots {
      display: flex;
      gap: 6px;
    }
    .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
    }
    .dot-red { background: #ef4444; }
    .dot-yellow { background: #eab308; }
    .dot-green { background: var(--primary-color); }
    .panel-title {
      font-size: 13px;
      font-weight: 600;
      color: #79b0ff;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .panel-body {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .lobby-mockup-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
    }
    .stat-box {
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.05);
      border-radius: 8px;
      padding: 15px;
      text-align: center;
    }
    .stat-val {
      font-size: clamp(16px, 2vw, 24px);
      font-weight: 700;
      color: var(--white);
    }
    .stat-lbl {
      font-size: 11px;
      color: #718096;
      margin-top: 5px;
    }
    .lobby-mockup-chart {
      background: rgba(29, 123, 255, 0.05);
      border: 1px dashed rgba(29, 123, 255, 0.2);
      border-radius: 8px;
      height: 120px;
      display: flex;
      align-items: flex-end;
      justify-content: space-around;
      padding: 10px;
    }
    .chart-bar {
      width: 8%;
      background: linear-gradient(to top, #0056b3, var(--tech-blue));
      border-radius: 4px 4px 0 0;
      animation: barGrow 1.5s ease-out forwards;
    }
    @keyframes barGrow {
      from { height: 0; }
    }

    
    .floating-card {
      position: absolute;
      background: rgba(11, 25, 44, 0.9);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 16px;
      width: 180px;
      text-align: left;
      box-shadow: 0 10px 25px rgba(0,0,0,0.3);
      backdrop-filter: blur(10px);
      transition: var(--transition);
    }
    .floating-card:hover {
      transform: translateY(-5px);
      border-color: rgba(29, 123, 255, 0.4);
    }
    .floating-card h4 {
      font-size: 13px;
      color: var(--white);
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .floating-card h4::before {
      content: '✦';
      color: var(--primary-color);
    }
    .floating-card p {
      font-size: 11px;
      color: #a0aec0;
      line-height: 1.4;
    }
    .fc-1 { top: 10px; left: -20px; }
    .fc-2 { bottom: 30px; left: -50px; }
    .fc-3 { top: 20px; right: -20px; }
    .fc-4 { bottom: 40px; right: -50px; }

    
    .trust-layer {
      background: var(--slate-100);
      padding: 40px 0;
    }
    .trust-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .trust-item {
      background: var(--white);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0,0,0,0.02);
      text-align: center;
      border-top: 3px solid var(--primary-color);
    }
    .trust-item h3 {
      font-size: 16px;
      margin-bottom: 8px;
      color: var(--slate-800);
    }
    .trust-item p {
      font-size: 13px;
      color: var(--text-muted);
    }

    
    .section-container {
      max-width: 1200px;
      margin: 80px auto;
      padding: 0 20px;
    }
    .section-header {
      text-align: center;
      margin-bottom: 50px;
    }
    .section-header h2 {
      font-size: 32px;
      color: var(--slate-900);
      margin-bottom: 12px;
      font-weight: 800;
    }
    .section-header p {
      font-size: 16px;
      color: var(--text-muted);
    }
    .custom-features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
    }
    .feature-card {
      background: var(--white);
      border-radius: 12px;
      padding: 30px;
      border: 1px solid var(--slate-100);
      box-shadow: 0 10px 30px rgba(0,0,0,0.02);
      transition: var(--transition);
    }
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    }
    .feature-icon {
      width: 48px;
      height: 48px;
      background: rgba(52,168,83, 0.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: var(--primary-color);
      margin-bottom: 20px;
    }
    .feature-card h3 {
      font-size: 20px;
      margin-bottom: 12px;
      color: var(--slate-800);
    }
    .feature-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    
    .articles-section {
      background: var(--white);
      padding: 80px 0;
    }
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    .article-card {
      background: var(--slate-50);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid var(--slate-100);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
    }
    .article-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 24px rgba(0,0,0,0.05);
    }
    .article-img {
      height: 200px;
      overflow: hidden;
      position: relative;
    }
    .article-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }
    .article-card:hover .article-img img {
      transform: scale(1.05);
    }
    .article-meta-badge {
      position: absolute;
      top: 15px;
      left: 15px;
      background: var(--primary-color);
      color: var(--white);
      padding: 4px 10px;
      font-size: 11px;
      font-weight: 600;
      border-radius: 4px;
    }
    .article-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .article-meta-info {
      display: flex;
      gap: 15px;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }
    .article-body h3 {
      font-size: 18px;
      margin-bottom: 10px;
      color: var(--slate-800);
      font-weight: 700;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .article-body p {
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 20px;
      line-height: 1.5;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .article-footer {
      margin-top: auto;
      border-top: 1px solid var(--slate-100);
      padding-top: 15px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .article-tags-links {
      font-size: 12px;
      color: var(--tech-blue);
    }
    .article-more-btn {
      font-size: 13px;
      font-weight: 600;
      color: var(--primary-color);
    }

    
    .cta-section {
      background: linear-gradient(135deg, var(--primary-color), #238c47);
      padding: 80px 20px;
      text-align: center;
      color: var(--white);
    }
    .cta-container {
      max-width: 800px;
      margin: 0 auto;
    }
    .cta-container h2 {
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 20px;
    }
    .cta-container p {
      font-size: 18px;
      margin-bottom: 35px;
      opacity: 0.9;
    }
    .cta-btn {
      background: var(--white);
      color: var(--primary-color);
      padding: 15px 40px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 16px;
      transition: var(--transition);
      display: inline-block;
    }
    .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    
    .site-footer {
      background: #0b111e;
      color: rgba(255,255,255,0.7);
      padding: 80px 20px 30px 20px;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr repeat(2, 1fr) 1.5fr;
      gap: 40px;
      margin-bottom: 60px;
    }
    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .footer-brand .logo span {
      color: var(--white);
    }
    .brand-desc {
      font-size: 13px;
      line-height: 1.6;
      color: #94a3b8;
    }
    .footer-links h4, .footer-contact h4 {
      color: var(--white);
      font-size: 16px;
      margin-bottom: 20px;
      font-weight: 600;
    }
    .footer-links ul {
      list-style: none;
    }
    .footer-links ul li {
      margin-bottom: 12px;
    }
    .footer-links ul li a {
      font-size: 14px;
      transition: var(--transition);
    }
    .footer-links ul li a:hover {
      color: var(--primary-color);
    }
    .footer-contact p {
      font-size: 14px;
      margin-bottom: 12px;
    }
    .social-icons {
      margin-top: 15px;
    }
    .social-icon {
      display: inline-block;
      padding: 6px 14px;
      background: rgba(255,255,255,0.05);
      border-radius: 4px;
      font-size: 13px;
      color: var(--white);
      transition: var(--transition);
    }
    .social-icon:hover {
      background: var(--primary-color);
    }
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      border-top: 1px solid rgba(255,255,255,0.05);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      color: #64748b;
    }

    
    @media (max-width: 1024px) {
      .hero-visual-wrapper {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 40px;
      }
      .floating-card {
        position: static;
        width: 100%;
      }
      .floating-cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }
      .trust-container {
        grid-template-columns: repeat(2, 1fr);
      }
      .custom-features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .articles-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }
    @media (max-width: 768px) {
      .desktop-nav, .nav-btn-download {
        display: none;
      }
      .menu-toggle {
        display: flex;
      }
      .trust-container {
        grid-template-columns: 1fr;
      }
      .custom-features-grid {
        grid-template-columns: 1fr;
      }
      .articles-grid {
        grid-template-columns: 1fr;
      }
      .footer-container {
        grid-template-columns: 1fr;
      }
      .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
      }
    }
    @media (max-width: 480px) {
      .floating-cards-grid {
        grid-template-columns: 1fr;
      }
      .lobby-mockup-stats {
        grid-template-columns: 1fr;
      }
    }