﻿:root {
      --primary: #10B981;
      --bg-deep: #06120F;
      --bg-card: #0D1F1A;
      --text-light: #D1FAE5;
      --text-muted: #889F96;
      --accent: #A3E635;
      --border-light: rgba(16, 185, 129, 0.15);
      --border-hover: rgba(163, 230, 53, 0.4);
      --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }

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

    body {
      background-color: var(--bg-deep);
      color: var(--text-light);
      font-family: var(--font-sans);
      line-height: 1.6;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    
    header {
      background: rgba(6, 18, 15, 0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border-light);
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      transition: all 0.3s ease;
    }

    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 16px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .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: 20px;
      font-weight: 800;
      line-height: 1;
      color: #fff;
      white-space: nowrap;
      letter-spacing: 0.5px;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 24px;
    }

    .nav-menu a {
      font-size: 15px;
      font-weight: 500;
      color: var(--text-muted);
      padding: 6px 0;
      position: relative;
    }

    .nav-menu a:hover, .nav-menu a.active {
      color: var(--primary);
    }

    .nav-menu a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s;
    }

    .nav-menu a:hover::after {
      width: 100%;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .btn-primary {
      background: var(--primary);
      color: #06120F;
    }

    .btn-primary:hover {
      background: var(--accent);
      box-shadow: 0 0 15px rgba(163, 230, 53, 0.4);
    }

    .btn-outline {
      border: 1px solid var(--border-light);
      background: rgba(16, 185, 129, 0.05);
      color: var(--primary);
    }

    .btn-outline:hover {
      border-color: var(--primary);
      background: rgba(16, 185, 129, 0.12);
    }

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

    
    .mobile-drawer {
      position: fixed;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      z-index: 2000;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      visibility: hidden;
    }

    .mobile-drawer.active {
      left: 0;
      visibility: visible;
    }

    .drawer-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.75);
      backdrop-filter: blur(4px);
    }

    .drawer-content {
      position: absolute;
      top: 0;
      left: 0;
      width: 280px;
      height: 100%;
      background: var(--bg-deep);
      border-right: 1px solid var(--border-light);
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 30px;
    }

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

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

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

    .drawer-nav a {
      font-size: 16px;
      color: var(--text-light);
      padding: 8px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    
    .hero {
      padding: 160px 20px 80px;
      background: radial-gradient(circle at top, rgba(16, 185, 129, 0.08) 0%, rgba(6, 18, 15, 0) 60%);
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .hero-tagline {
      color: var(--accent);
      font-size: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      margin-bottom: 16px;
    }

    .hero-title {
      font-size: 48px;
      font-weight: 800;
      line-height: 1.2;
      color: #fff;
      max-width: 900px;
      margin-bottom: 20px;
    }

    .hero-title span {
      background: linear-gradient(135deg, var(--primary), var(--accent));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-subtitle {
      font-size: 18px;
      color: var(--text-muted);
      max-width: 680px;
      margin-bottom: 32px;
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      margin-bottom: 60px;
    }

    
    .matrix-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      max-width: 1200px;
      width: 100%;
      margin-bottom: 50px;
    }

    .matrix-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: 16px;
      padding: 32px;
      text-align: left;
      position: relative;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .matrix-card:hover {
      transform: translateY(-8px);
      border-color: var(--accent);
      box-shadow: 0 10px 30px rgba(16, 185, 129, 0.1);
    }

    .matrix-card::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 100px;
      height: 100px;
      background: radial-gradient(circle, rgba(163, 230, 53, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
      pointer-events: none;
    }

    .matrix-icon {
      width: 56px;
      height: 56px;
      background: rgba(16, 185, 129, 0.1);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      color: var(--primary);
    }

    .matrix-card:hover .matrix-icon {
      background: var(--primary);
      color: #06120F;
    }

    .matrix-card h3 {
      font-size: 20px;
      color: #fff;
      margin-bottom: 12px;
    }

    .matrix-card p {
      font-size: 14px;
      color: var(--text-muted);
      margin-bottom: 24px;
      line-height: 1.5;
    }

    .matrix-action {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      font-size: 14px;
      color: var(--primary);
    }

    .matrix-card:hover .matrix-action {
      color: var(--accent);
    }

    
    .endorsement-strip {
      display: flex;
      justify-content: space-around;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      width: 100%;
      max-width: 1200px;
      padding: 24px;
      border-top: 1px solid var(--border-light);
      border-bottom: 1px solid var(--border-light);
      background: rgba(13, 31, 26, 0.3);
    }

    .endorsement-item {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .endorsement-num {
      font-size: 24px;
      font-weight: 800;
      color: var(--primary);
    }

    .endorsement-label {
      font-size: 12px;
      color: var(--text-muted);
      margin-top: 4px;
    }

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

    .section-subtitle {
      color: var(--primary);
      font-size: 14px;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .section-title {
      font-size: 32px;
      color: #fff;
      font-weight: 700;
    }

    
    .section-adv {
      padding: 80px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .adv-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
      align-items: center;
    }

    .adv-image-placeholder {
      background: radial-gradient(135deg, var(--bg-card) 0%, rgba(16, 185, 129, 0.05) 100%);
      border: 1px solid var(--border-light);
      border-radius: 20px;
      height: 380px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
    }

    .adv-image-placeholder::before {
      content: '';
      position: absolute;
      width: 80%;
      height: 80%;
      border: 1px dashed var(--border-light);
      border-radius: 16px;
    }

    .adv-glow {
      position: absolute;
      width: 150px;
      height: 150px;
      background: var(--primary);
      filter: blur(80px);
      opacity: 0.25;
    }

    .adv-list {
      display: flex;
      flex-direction: column;
      gap: 24px;
    }

    .adv-item {
      display: flex;
      gap: 16px;
    }

    .adv-num {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid var(--primary);
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      flex-shrink: 0;
    }

    .adv-content h4 {
      font-size: 18px;
      color: #fff;
      margin-bottom: 6px;
    }

    .adv-content p {
      font-size: 14px;
      color: var(--text-muted);
    }

    
    .section-articles {
      padding: 80px 20px;
      background: linear-gradient(180deg, rgba(6,18,15,0) 0%, rgba(13,31,26,0.5) 50%, rgba(6,18,15,0) 100%);
    }

    .articles-container {
      max-width: 1200px;
      margin: 0 auto;
    }

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

    .article-card {
      background: var(--bg-card);
      border: 1px solid var(--border-light);
      border-radius: 12px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }

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

    .article-image {
      height: 180px;
      width: 100%;
      background: #112921;
      position: relative;
      overflow: hidden;
    }

    .article-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }

    .article-card:hover .article-image img {
      transform: scale(1.05);
    }

    .article-meta {
      padding: 16px 20px 0;
      display: flex;
      justify-content: space-between;
      font-size: 12px;
      color: var(--text-muted);
    }

    .article-meta span {
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

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

    .article-body h3 {
      font-size: 18px;
      color: #fff;
      margin-bottom: 10px;
      line-height: 1.4;
    }

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

    .article-footer {
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .article-tag {
      font-size: 11px;
      color: var(--accent);
      background: rgba(163, 230, 53, 0.1);
      padding: 3px 8px;
      border-radius: 4px;
    }

    .article-link {
      font-size: 13px;
      color: var(--primary);
      font-weight: 600;
    }

    
    .section-cta {
      padding: 80px 20px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .cta-container {
      background: linear-gradient(135deg, var(--bg-card) 0%, rgba(16,185,129,0.1) 100%);
      border: 1px solid var(--border-light);
      border-radius: 24px;
      padding: 60px 40px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-container h2 {
      font-size: 32px;
      color: #fff;
      margin-bottom: 16px;
    }

    .cta-container p {
      font-size: 16px;
      color: var(--text-muted);
      max-width: 600px;
      margin: 0 auto 32px;
    }

    
    footer {
      background: #040d0a;
      border-top: 1px solid var(--border-light);
      padding: 60px 20px 30px;
    }

    .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 {
      color: var(--text-muted);
      font-size: 14px;
      margin-top: 16px;
      max-width: 280px;
    }

    .footer-links h4 {
      color: #fff;
      font-size: 16px;
      margin-bottom: 16px;
    }

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

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

    .footer-links a {
      color: var(--text-muted);
      font-size: 14px;
    }

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

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 30px;
      border-top: 1px solid rgba(16, 185, 129, 0.08);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 16px;
    }

    .footer-bottom p {
      font-size: 12px;
      color: var(--text-muted);
    }

    .footer-links-bottom {
      display: flex;
      gap: 20px;
    }

    .footer-links-bottom a {
      font-size: 12px;
      color: var(--text-muted);
    }

    
    @media (max-width: 992px) {
      .matrix-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .adv-grid {
        grid-template-columns: 1fr;
      }
      .articles-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-container {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav-menu, .header-actions {
        display: none;
      }
      .drawer-toggle {
        display: block;
      }
      .hero-title {
        font-size: 32px;
      }
      .matrix-grid {
        grid-template-columns: 1fr;
      }
      .articles-grid {
        grid-template-columns: 1fr;
      }
      .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
      }
    }