﻿:root {
      --primary: #1D7BFF;
      --primary-hover: #0056C6;
      --secondary: rgb(107,114,128);
      --dark-deep: #0A1128;
      --dark-card: #111B3D;
      --light-bg: #F4F8FD;
      --white: #FFFFFF;
      --text-main: #0F172A;
      --text-muted: #64748B;
      --border-color: #E2E8F0;
      --glow-blue: rgba(29, 123, 255, 0.15);
      --max-width: 1200px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      color: var(--text-main);
      background-color: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: var(--transition);
    }

    .container {
      width: 100%;
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 24px;
    }

    
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-color);
      transition: var(--transition);
    }

    .header-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
    }

    .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(--dark-deep);
      white-space: nowrap;
    }

    .nav-desktop {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-desktop a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-main);
    }

    .nav-desktop a:hover {
      color: var(--primary);
    }

    .menu-toggle {
      display: none;
      background: none;
      border: none;
      flex-direction: column;
      justify-content: space-between;
      width: 24px;
      height: 18px;
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background-color: var(--dark-deep);
      border-radius: 2px;
      transition: var(--transition);
    }

    
    .drawer-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(10, 17, 40, 0.4);
      backdrop-filter: blur(4px);
      z-index: 998;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
    }

    .drawer-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    .drawer {
      position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100%;
      background: var(--white);
      z-index: 999;
      box-shadow: 4px 0 24px rgba(10, 17, 40, 0.15);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      padding: 24px;
    }

    .drawer.active {
      left: 0;
    }

    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 40px;
    }

    .drawer-close {
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: var(--text-muted);
    }

    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .drawer-nav a {
      font-size: 16px;
      font-weight: 500;
      padding: 8px 0;
      border-bottom: 1px solid var(--border-color);
    }

    
    .hero {
      position: relative;
      background-color: var(--dark-deep);
      background-image: radial-gradient(circle at 50% 30%, var(--primary-hover) 0%, var(--dark-deep) 70%);
      color: var(--white);
      padding: 100px 0 160px 0;
      text-align: center;
      overflow: hidden;
    }

    .hero-tag {
      display: inline-block;
      background: rgba(29, 123, 255, 0.15);
      border: 1px solid rgba(29, 123, 255, 0.3);
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 14px;
      color: var(--primary);
      margin-bottom: 24px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .hero h1 {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
      margin-bottom: 20px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .hero p {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.7);
      max-width: 600px;
      margin: 0 auto 40px auto;
    }

    .hero-btn-group {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 80px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 28px;
      border-radius: 6px;
      font-weight: 600;
      font-size: 15px;
      transition: var(--transition);
    }

    .btn-primary {
      background-color: var(--primary);
      color: var(--white);
    }

    .btn-primary:hover {
      background-color: var(--primary-hover);
      box-shadow: 0 4px 14px rgba(29, 123, 255, 0.4);
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.2);
    }

    
    .hero-showcase {
      position: relative;
      max-width: 900px;
      margin: 0 auto;
    }

    .main-visual-panel {
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(20px);
      border-radius: 16px;
      padding: 40px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    .visual-content-mock {
      border: 1px dashed rgba(255, 255, 255, 0.2);
      border-radius: 8px;
      padding: 30px;
      background: rgba(0, 0, 0, 0.2);
    }

    .visual-title {
      font-size: 20px;
      font-weight: 700;
      color: var(--primary);
      margin-bottom: 12px;
    }

    .visual-steps {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin-top: 24px;
    }

    .visual-step {
      flex: 1;
      padding: 12px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.08);
      border-radius: 8px;
      font-size: 13px;
    }

    
    .floating-card {
      position: absolute;
      background: rgba(17, 27, 61, 0.85);
      border: 1px solid rgba(29, 123, 255, 0.25);
      backdrop-filter: blur(12px);
      border-radius: 12px;
      padding: 16px 20px;
      text-align: left;
      box-shadow: 0 10px 25px rgba(0,0,0,0.2);
      transition: var(--transition);
      width: 220px;
    }

    .floating-card:hover {
      transform: translateY(-5px);
      border-color: var(--primary);
    }

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

    .floating-card h4 {
      font-size: 14px;
      color: var(--primary);
      margin-bottom: 4px;
    }

    .floating-card p {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.7);
      margin: 0;
    }

    
    .section-title {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-title h2 {
      font-size: 32px;
      font-weight: 800;
      color: var(--dark-deep);
    }

    .section-title p {
      color: var(--text-muted);
      margin-top: 8px;
    }

    .section-padding {
      padding: 80px 0;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .feature-card {
      padding: 32px;
      background: var(--white);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      transition: var(--transition);
    }

    .feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 12px 30px rgba(0,0,0,0.05);
      border-color: var(--primary);
    }

    .card-icon {
      width: 48px;
      height: 48px;
      background: var(--light-bg);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-weight: 700;
      margin-bottom: 24px;
    }

    
    .articles-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
    }

    .article-card {
      background: var(--white);
      border: 1px solid var(--border-color);
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: var(--transition);
    }

    .article-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 24px rgba(0,0,0,0.06);
    }

    .article-image {
      position: relative;
      padding-bottom: 56.25%;
      background: var(--light-bg);
      overflow: hidden;
    }

    .article-image img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .article-content {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    .article-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 12px;
      color: var(--text-muted);
      margin-bottom: 12px;
    }

    .article-title {
      font-size: 18px;
      font-weight: 700;
      line-height: 1.4;
      margin-bottom: 12px;
      color: var(--dark-deep);
    }

    .article-summary {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .article-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
      border-top: 1px solid var(--border-color);
      padding-top: 16px;
    }

    .article-tag {
      font-size: 12px;
      color: var(--primary);
      background: rgba(29, 123, 255, 0.08);
      padding: 4px 10px;
      border-radius: 4px;
    }

    
    .cta-section {
      background-color: var(--dark-deep);
      color: var(--white);
      padding: 80px 0;
      text-align: center;
    }

    .cta-container {
      max-width: 600px;
      margin: 0 auto;
    }

    .cta-container h2 {
      font-size: 32px;
      font-weight: 800;
      margin-bottom: 16px;
    }

    
    .footer {
      background: var(--dark-deep);
      color: rgba(255, 255, 255, 0.7);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 60px 0 30px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      margin-bottom: 40px;
    }

    .footer-brand .logo span {
      color: var(--white);
    }

    .footer-brand p {
      font-size: 14px;
      margin-top: 16px;
    }

    .footer-title {
      color: var(--white);
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 20px;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 12px;
    }

    .footer-links a {
      font-size: 14px;
    }

    .footer-links a:hover {
      color: var(--primary);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.05);
      padding-top: 30px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
    }

    @media (max-width: 1024px) {
      .floating-card {
        position: static;
        width: 100%;
        margin-bottom: 16px;
      }
      .hero-showcase {
        margin-top: 40px;
      }
      .visual-steps {
        flex-direction: column;
      }
      .grid-3, .articles-grid, .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 768px) {
      .nav-desktop {
        display: none;
      }
      .menu-toggle {
        display: flex;
      }
      .hero h1 {
        font-size: 32px;
      }
      .grid-3, .articles-grid, .footer-grid {
        grid-template-columns: 1fr;
      }
      .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
      }
    }