﻿:root {
      --primary: rgb(245,158,11);
      --primary-hover: rgb(220,135,5);
      --glacier-blue: #1D7BFF;
      --deep-sea: #0B1120;
      --silver: #F1F5F9;
      --text-dark: #0F172A;
      --text-light: #64748B;
      --border-color: #E2E8F0;
      --card-bg: #FFFFFF;
      --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
      --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.08);
      --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
      --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 Neue", Arial, sans-serif;
      color: var(--text-dark);
      background-color: #F8FAFC;
      line-height: 1.6;
      overflow-x: hidden;
    }
    a { text-decoration: none; color: inherit; transition: var(--transition); }
    img { max-width: 100%; height: auto; }
    ul, li { list-style: none; }

    
    .header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
      box-shadow: var(--shadow-sm);
    }
    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .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: 20px;
      font-weight: 800;
      line-height: 1;
      color: var(--text-dark);
      white-space: nowrap;
      background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .nav-desktop {
      display: flex;
      align-items: center;
      gap: 32px;
    }
    .nav-desktop a {
      font-size: 15px;
      font-weight: 600;
      color: var(--text-light);
      position: relative;
      padding: 6px 0;
    }
    .nav-desktop a:hover, .nav-desktop a.active {
      color: var(--primary);
    }
    .nav-desktop a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background-color: var(--primary);
      transition: var(--transition);
    }
    .nav-desktop a:hover::after, .nav-desktop a.active::after {
      width: 100%;
    }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .btn-header {
      padding: 8px 18px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 600;
      background-color: var(--primary);
      color: #FFFFFF;
      box-shadow: 0 4px 10px rgba(245,158,11, 0.3);
    }
    .btn-header:hover {
      background-color: var(--primary-hover);
      transform: translateY(-1px);
    }
    .menu-toggle {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px;
    }
    .menu-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      background-color: var(--text-dark);
      margin: 5px 0;
      transition: var(--transition);
    }

    
    .drawer-mask {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 23, 42, 0.6);
      backdrop-filter: blur(4px);
      z-index: 1999;
      opacity: 0;
      visibility: hidden;
      transition: var(--transition);
    }
    .drawer-mask.active {
      opacity: 1;
      visibility: visible;
    }
    .drawer-content {
      position: fixed;
      top: 0;
      left: -280px;
      width: 280px;
      height: 100%;
      background: #FFFFFF;
      box-shadow: var(--shadow-lg);
      z-index: 2000;
      display: flex;
      flex-direction: column;
      padding: 24px;
      transition: var(--transition);
    }
    .drawer-content.active {
      left: 0;
    }
    .drawer-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 32px;
    }
    .drawer-close {
      background: none;
      border: none;
      font-size: 24px;
      cursor: pointer;
      color: var(--text-light);
    }
    .drawer-nav {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .drawer-nav a {
      font-size: 16px;
      font-weight: 600;
      color: var(--text-dark);
      padding: 8px 12px;
      border-radius: 6px;
    }
    .drawer-nav a:hover, .drawer-nav a.active {
      background: rgba(245,158,11, 0.1);
      color: var(--primary);
    }

    
    .hero {
      position: relative;
      background: radial-gradient(circle at 50% 30%, #152238 0%, var(--deep-sea) 100%);
      color: #FFFFFF;
      padding: 100px 24px 180px 24px;
      overflow: hidden;
      text-align: center;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -10%;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(29, 123, 255, 0.15) 0%, rgba(29, 123, 255, 0) 70%);
      pointer-events: none;
    }
    .hero-manifesto {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      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;
      font-weight: 600;
      color: #7DD3FC;
      margin-bottom: 24px;
      letter-spacing: 1px;
    }
    .hero-title {
      font-size: 52px;
      font-weight: 800;
      line-height: 1.2;
      max-width: 900px;
      margin: 0 auto 20px auto;
      letter-spacing: -0.5px;
      background: linear-gradient(135deg, #FFFFFF 30%, #93C5FD 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-subtitle {
      font-size: 18px;
      color: #94A3B8;
      max-width: 650px;
      margin: 0 auto 32px auto;
      line-height: 1.7;
    }
    .hero-buttons {
      display: flex;
      justify-content: center;
      gap: 16px;
      margin-bottom: 60px;
    }
    .btn-hero-primary {
      padding: 14px 32px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 16px;
      background: linear-gradient(135deg, var(--glacier-blue) 0%, #0056C6 100%);
      color: #FFFFFF;
      box-shadow: 0 10px 25px -5px rgba(29, 123, 255, 0.4);
    }
    .btn-hero-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 15px 30px -5px rgba(29, 123, 255, 0.6);
    }
    .btn-hero-secondary {
      padding: 14px 32px;
      border-radius: 10px;
      font-weight: 700;
      font-size: 16px;
      background: rgba(255, 255, 255, 0.08);
      color: #FFFFFF;
      border: 1px solid rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
    }
    .btn-hero-secondary:hover {
      background: rgba(255, 255, 255, 0.15);
      transform: translateY(-2px);
    }

    
    .hero-panel-container {
      position: relative;
      max-width: 1000px;
      margin: -120px auto 0 auto;
      padding: 0 24px;
      z-index: 10;
    }
    .hero-main-panel {
      background: rgba(30, 41, 59, 0.7);
      backdrop-filter: blur(20px);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 24px;
      padding: 40px;
      box-shadow: var(--shadow-lg);
    }
    .panel-visual {
      border: 1px solid rgba(29, 123, 255, 0.2);
      background: #020617;
      border-radius: 16px;
      height: 380px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 24px;
      position: relative;
      overflow: hidden;
    }
    .panel-visual-grid {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-image: radial-gradient(rgba(29, 123, 255, 0.15) 1px, transparent 1px);
      background-size: 24px 24px;
    }
    .panel-visual-content {
      position: relative;
      z-index: 2;
      width: 100%;
      text-align: center;
    }
    .visual-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: rgba(255,255,255,0.05);
      padding: 12px 20px;
      border-radius: 10px;
      margin-bottom: 24px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .visual-title {
      font-size: 14px;
      color: #38BDF8;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .visual-chart {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      height: 180px;
      padding: 10px;
      border-bottom: 2px solid rgba(255,255,255,0.1);
    }
    .chart-bar {
      width: 14%;
      background: linear-gradient(to top, var(--glacier-blue), #38BDF8);
      border-radius: 4px 4px 0 0;
      animation: barGrow 1.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
      opacity: 0.85;
    }
    .chart-bar:hover {
      opacity: 1;
      filter: brightness(1.2);
    }
    @keyframes barGrow {
      from { height: 0; }
      to { height: var(--height); }
    }

    
    .floating-card {
      position: absolute;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-radius: 16px;
      padding: 16px 20px;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border-color);
      display: flex;
      align-items: center;
      gap: 14px;
      width: 240px;
      text-align: left;
      z-index: 12;
      transition: var(--transition);
    }
    .floating-card:hover {
      transform: translateY(-5px);
    }
    .floating-card .card-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(29, 123, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--glacier-blue);
      font-size: 20px;
      flex-shrink: 0;
    }
    .floating-card .card-info h4 {
      font-size: 14px;
      color: var(--text-dark);
      font-weight: 700;
    }
    .floating-card .card-info p {
      font-size: 12px;
      color: var(--text-light);
    }
    .card-pos-1 { top: -20px; left: -40px; }
    .card-pos-2 { top: -20px; right: -40px; }
    .card-pos-3 { bottom: 40px; left: -60px; }
    .card-pos-4 { bottom: 40px; right: -60px; }

    
    .features {
      padding: 140px 24px 80px 24px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .section-title {
      text-align: center;
      margin-bottom: 60px;
    }
    .section-title h2 {
      font-size: 36px;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 12px;
    }
    .section-title p {
      color: var(--text-light);
      font-size: 16px;
      max-width: 600px;
      margin: 0 auto;
    }
    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 32px;
    }
    .feature-card {
      background-color: var(--card-bg);
      border: 1px solid var(--border-color);
      border-radius: 16px;
      padding: 40px 32px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
    }
    .feature-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 4px;
      height: 100%;
      background-color: var(--primary);
      opacity: 0;
      transition: var(--transition);
    }
    .feature-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }
    .feature-card:hover::before {
      opacity: 1;
    }
    .feature-icon {
      width: 56px;
      height: 56px;
      background: rgba(245,158,11, 0.1);
      color: var(--primary);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: bold;
      margin-bottom: 24px;
    }
    .feature-card h3 {
      font-size: 20px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px;
    }
    .feature-card p {
      color: var(--text-light);
      font-size: 15px;
      line-height: 1.7;
    }

    
    .news-section {
      padding: 80px 24px;
      background-color: #FFFFFF;
    }
    .news-container {
      max-width: 1200px;
      margin: 0 auto;
    }
    .news-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 32px;
      margin-top: 48px;
    }
    .article-card {
      background-color: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: 16px;
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    .article-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-md);
    }
    .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-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }
    .article-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 12px;
      line-height: 1.4;
    }
    .article-desc {
      font-size: 14px;
      color: var(--text-light);
      margin-bottom: 20px;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    .article-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
      padding-top: 16px;
      border-top: 1px solid var(--border-color);
      font-size: 12px;
      color: #94A3B8;
    }
    .meta-tags {
      background: var(--silver);
      color: var(--text-light);
      padding: 4px 8px;
      border-radius: 4px;
    }

    
    .about-trust {
      padding: 80px 24px;
      background-color: #F8FAFC;
    }
    .about-trust-container {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }
    .about-trust-box {
      background: #FFFFFF;
      border-radius: 20px;
      padding: 50px 40px;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-color);
    }
    .about-trust-box h3 {
      font-size: 28px;
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 16px;
    }
    .about-trust-box p {
      font-size: 16px;
      color: var(--text-light);
      line-height: 1.8;
      max-width: 800px;
      margin: 0 auto 32px auto;
    }
    .trust-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 40px;
    }
    .stat-item h4 {
      font-size: 36px;
      font-weight: 800;
      color: var(--primary);
      margin-bottom: 6px;
    }
    .stat-item p {
      font-size: 14px;
      color: var(--text-light);
    }

    
    .cta-section {
      background: linear-gradient(135deg, var(--deep-sea) 0%, #1E293B 100%);
      color: #FFFFFF;
      padding: 80px 24px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-container {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }
    .cta-section h2 {
      font-size: 36px;
      font-weight: 800;
      margin-bottom: 16px;
    }
    .cta-section p {
      font-size: 16px;
      color: #94A3B8;
      margin-bottom: 32px;
      line-height: 1.8;
    }
    .btn-cta {
      display: inline-block;
      padding: 14px 36px;
      background-color: var(--primary);
      color: #FFFFFF;
      font-weight: 700;
      border-radius: 10px;
      box-shadow: 0 4px 14px rgba(245,158,11, 0.4);
    }
    .btn-cta:hover {
      background-color: var(--primary-hover);
      transform: translateY(-2px);
    }

    
    .footer {
      background-color: var(--deep-sea);
      color: #94A3B8;
      border-top: 1px solid #1E293B;
    }
    .footer-top {
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 24px 48px 24px;
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: 48px;
    }
    .footer-brand .logo span {
      color: #FFFFFF;
    }
    .footer-brand p {
      margin-top: 20px;
      font-size: 14px;
      line-height: 1.7;
    }
    .footer-col h4 {
      color: #FFFFFF;
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 24px;
    }
    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .footer-col a {
      font-size: 14px;
    }
    .footer-col a:hover {
      color: var(--primary);
      padding-left: 4px;
    }
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding: 32px 24px;
      border-top: 1px solid #1E293B;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
      font-size: 13px;
    }
    .footer-bottom-links {
      display: flex;
      gap: 24px;
    }
    .footer-bottom-links a:hover {
      color: var(--primary);
    }

    
    @media (max-width: 1024px) {
      .hero-title { font-size: 40px; }
      .floating-card { display: none; }
      .hero-panel-container { margin-top: -60px; }
      .panel-visual { height: 320px; }
    }
    @media (max-width: 768px) {
      .nav-desktop, .nav-actions { display: none; }
      .menu-toggle { display: block; }
      .hero-title { font-size: 32px; }
      .hero-subtitle { font-size: 15px; }
      .hero-buttons { flex-direction: column; gap: 12px; width: 100%; max-width: 280px; margin: 0 auto 40px auto; }
      .hero-main-panel { padding: 20px; }
      .panel-visual { height: 240px; }
      .features { padding-top: 80px; }
      .trust-stats { grid-template-columns: 1fr; gap: 32px; }
      .footer-top { grid-template-columns: 1fr; gap: 32px; }
    }