﻿:root {
      --primary: #7C3AED;
      --primary-hover: #6D28D9;
      --primary-rgb: 124, 58, 237;
      --bg-dark: #120A2A;
      --bg-card: rgba(255, 255, 255, 0.03);
      --purple-blue: #312E81;
      --fog-white: #F5F3FF;
      --accent-pink: #EC4899;
      --text-main: #F5F3FF;
      --text-muted: #9CA3AF;
      --border: rgba(255, 255, 255, 0.08);
      --glass-blur: blur(16px);
      --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body { background-color: var(--bg-dark); color: var(--text-main); font-family: var(--font); line-height: 1.6; }
    a { color: inherit; text-decoration: none; transition: all 0.3s; }
    img { max-width: 100%; height: auto; }
    .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    
    
    .site-header { position: fixed; top: 0; left: 0; right: 0; height: 80px; background: rgba(18, 10, 42, 0.8); backdrop-filter: var(--glass-blur); -webkit-backdrop-filter: var(--glass-blur); border-bottom: var(--border); z-index: 100; }
    .header-container { display: flex; align-items: center; justify-content: space-between; height: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .logo { display: inline-flex; align-items: center; gap: 12px; }
    .logo img { display: block; height: 40px; width: auto; max-width: 160px; object-fit: contain; }
    .logo span { font-size: 20px; font-weight: 800; background: linear-gradient(135deg, #FFF 0%, var(--accent-pink) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
    .desktop-nav { display: flex; gap: 32px; }
    .desktop-nav a { font-size: 15px; font-weight: 500; color: var(--text-muted); }
    .desktop-nav a:hover, .desktop-nav a.active { color: var(--text-main); text-shadow: 0 0 10px rgba(124, 58, 237, 0.5); }
    .header-actions { display: flex; align-items: center; gap: 16px; }
    .btn { display: inline-flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; border-radius: 8px; transition: all 0.3s; cursor: pointer; }
    .btn-primary-sm { background: linear-gradient(135deg, var(--primary) 0%, var(--accent-pink) 100%); color: #fff; padding: 10px 20px; box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3); border: none; }
    .btn-primary-sm:hover { opacity: 0.9; transform: translateY(-2px); }
    .menu-toggle { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; width: 24px; }
    .menu-toggle span { display: block; width: 100%; height: 2px; background: var(--text-main); transition: all 0.3s; }
    .drawer-overlay { position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(0, 0, 0, 0.6); backdrop-filter: blur(4px); z-index: 998; opacity: 0; visibility: hidden; transition: all 0.3s; }
    .drawer-overlay.active { opacity: 1; visibility: visible; }
    .mobile-drawer { position: fixed; top: 0; left: -300px; bottom: 0; width: 300px; background: var(--bg-dark); border-right: var(--border); z-index: 999; padding: 30px 24px; display: flex; flex-direction: column; transition: all 0.3s ease-in-out; }
    .mobile-drawer.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(--text-main); font-size: 28px; cursor: pointer; }
    .drawer-nav { display: flex; flex-direction: column; gap: 24px; }
    .drawer-nav a { font-size: 16px; font-weight: 500; color: var(--text-muted); }
    .drawer-nav a:hover { color: var(--text-main); }

    
    .about-hero { padding: 160px 0 80px; text-align: center; background: radial-gradient(circle at 50% 10%, rgba(124, 58, 237, 0.1) 0%, transparent 60%); }
    .about-tag { color: var(--accent-pink); font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 12px; display: block; }
    .about-h1 { font-size: clamp(32px, 5vw, 48px); font-weight: 800; color: #fff; margin-bottom: 20px; }
    .about-lead { font-size: 18px; color: var(--text-muted); max-width: 800px; margin: 0 auto; line-height: 1.8; }

    .about-section { padding: 80px 0; }
    .about-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; }
    .about-h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 24px; }
    .about-text p { font-size: 15px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }

    
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 40px; }
    .value-card { background: rgba(255, 255, 255, 0.02); border: 1px solid var(--border); padding: 32px; border-radius: 20px; }
    .value-num { font-size: 32px; font-weight: 800; color: var(--primary); margin-bottom: 16px; }
    .value-h4 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 10px; }
    .value-p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

    
    .site-footer { background: #090514; border-top: var(--border); padding: 80px 0 40px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 60px; }
    .footer-brand p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; }
    .footer-h4 { font-size: 16px; font-weight: 700; color: #fff; margin-bottom: 24px; }
    .footer-links { display: flex; flex-direction: column; gap: 12px; }
    .footer-links a { font-size: 14px; color: var(--text-muted); }
    .footer-links a:hover { color: #fff; }
    .footer-bottom { border-top: var(--border); padding-top: 40px; text-align: center; }
    .footer-disclaimer { font-size: 12px; color: rgba(255, 255, 255, 0.25); line-height: 1.8; max-width: 1000px; margin: 0 auto 30px; }
    .footer-copy { font-size: 13px; color: var(--text-muted); }
    .footer-copy a { color: var(--accent-pink); margin-left: 10px; }

    @media (max-width: 991px) {
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .values-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .desktop-nav, .header-actions .btn-primary-sm { display: none; }
      .menu-toggle { display: flex; }
      .footer-grid { grid-template-columns: 1fr; }
    }