        :root {
            --bg-void: #020203;
            --bg-surface: #0A0A0F;
            --bg-card: #111116;
            --bg-glass: rgba(10, 10, 16, 0.8);
            
            --primary: #FF0F45; 
            --primary-glow: rgba(255, 15, 69, 0.5);
            --primary-dim: rgba(255, 15, 69, 0.08);
            
            --text-main: #FFFFFF;
            --text-muted: #94A3B8;
            --text-dark: #475569;
            
            --border: rgba(255, 255, 255, 0.08);
            --border-hover: rgba(255, 255, 255, 0.2);
            
            --font-display: 'Outfit', sans-serif;
            --font-body: 'Inter', sans-serif;
            --font-mono: 'JetBrains Mono', monospace;
            
            --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
            --header-height: 80px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; outline: none; -webkit-tap-highlight-color: transparent; }
        
        body {
            background-color: var(--bg-void);
            color: var(--text-main);
            font-family: var(--font-body);
            line-height: 1.6;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        a { text-decoration: none; color: inherit; cursor: pointer; transition: 0.2s; }
        ul { list-style: none; }
        img { max-width: 100%; display: block; }

        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: var(--bg-void); }
        ::-webkit-scrollbar-thumb { background: #222; border-radius: 4px; }
        ::-webkit-scrollbar-thumb:hover { background: var(--primary); }

        .aurora-bg {
            position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: -2;
            background: 
                radial-gradient(circle at 80% 20%, rgba(255, 15, 69, 0.06), transparent 25%),
                radial-gradient(circle at 20% 80%, rgba(50, 50, 255, 0.04), transparent 25%);
            filter: blur(80px); opacity: 0.8;
        }

        .grid-bg {
            position: fixed; top: 0; left: 0; width: 100%; height: 100vh; z-index: -1;
            background-image: linear-gradient(var(--border) 1px, transparent 1px),
            linear-gradient(90deg, var(--border) 1px, transparent 1px);
            background-size: 50px 50px;
            mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
            opacity: 0.4; pointer-events: none;
        }

        .container { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
        
        .reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s var(--ease-out); }
        .reveal.active { opacity: 1; transform: translateY(0); }

        .badge {
            display: inline-flex; align-items: center; gap: 8px;
            padding: 6px 12px; background: var(--primary-dim);
            border: 1px solid rgba(255, 15, 69, 0.2); border-radius: 100px;
            font-family: var(--font-mono); font-size: 11px; color: var(--primary);
            text-transform: uppercase; letter-spacing: 1px; margin-bottom: 24px;
        }
        .badge-dot { width: 6px; height: 6px; background: var(--primary); border-radius: 50%; box-shadow: 0 0 10px var(--primary); animation: pulse 2s infinite; }

        @keyframes pulse { 0% { opacity: 1; } 50% { opacity: 0.5; } 100% { opacity: 1; } }

        .btn {
            position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 10px;
            padding: 14px 28px; border-radius: 8px; font-weight: 600; font-size: 14px;
            cursor: pointer; overflow: hidden; transition: 0.3s; z-index: 1;
        }
        .btn-primary { background: var(--primary); color: white; border: 1px solid var(--primary); }
        .btn-primary:hover { box-shadow: 0 0 30px var(--primary-glow); transform: translateY(-2px); }
        
        .btn-glass { background: rgba(255,255,255,0.03); border: 1px solid var(--border); color: white; backdrop-filter: blur(10px); }
        .btn-glass:hover { background: rgba(255,255,255,0.08); border-color: white; }

        header {
            position: fixed; top: 0; width: 100%; height: var(--header-height); z-index: 1000;
            background: rgba(3, 0, 5, 0.8); backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border); transition: 0.3s;
        }

        .nav-inner { height: 100%; display: flex; justify-content: space-between; align-items: center; }

        .logo {
            font-family: var(--font-display); font-size: 24px; font-weight: 800;
            letter-spacing: -1px; display: flex; align-items: center; gap: 12px; z-index: 1002;
        }
        .logo-icon {
            width: 32px; height: 32px; background: var(--primary);
            border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white;
            box-shadow: 0 0 20px var(--primary-glow);
        }

        .nav-menu { display: flex; gap: 32px; height: 100%; }
        .nav-item { height: 100%; display: flex; align-items: center; cursor: pointer; position: relative; }
        
        .nav-link {
            font-size: 14px; font-weight: 500; color: var(--text-muted);
            transition: 0.3s; display: flex; align-items: center; gap: 6px;
        }
        .nav-link:hover { color: white; }
        .nav-link i { font-size: 10px; transition: transform 0.3s; }
        .nav-item:hover .nav-link i { transform: rotate(180deg); }

        .header-actions { display: flex; gap: 20px; align-items: center; }
        .lang-switch { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; color: #666; }
        .lang-opt { color: #666; transition: 0.3s; padding: 4px; }
        .lang-opt:hover { color: white; }
        .lang-opt.active { color: white; border-bottom: 1px solid var(--primary); }
        .lang-sep { color: #444; }

        .mega-menu {
            position: absolute; top: var(--header-height); left: 50%; transform: translateX(-50%) translateY(20px);
            width: 1200px; background: #050508; border: 1px solid var(--border);
            border-radius: 16px; padding: 40px;
            opacity: 0; visibility: hidden; pointer-events: none;
            transition: all 0.3s var(--ease-out);
            box-shadow: 0 50px 100px rgba(0,0,0,0.8);
            display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
        }
        .nav-item:hover .mega-menu { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }

        .mm-col h4 {
            font-family: var(--font-mono); font-size: 11px; color: var(--text-dark);
            text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px;
            border-bottom: 1px solid var(--border); padding-bottom: 8px;
        }
        .mm-link {
            display: block; padding: 6px 10px; border-radius: 6px; transition: 0.2s;
            font-size: 13px; color: var(--text-muted); border-left: 2px solid transparent;
        }
        .mm-link:hover { background: var(--bg-surface); color: white; border-left-color: var(--primary); }
        .mm-link strong { color: white; font-weight: 600; margin-right: 5px; }

        .mobile-toggle { display: none; font-size: 24px; color: white; cursor: pointer; z-index: 1005; }

        .mobile-nav {
            position: fixed; top: 0; right: 0; width: 100%; height: 100vh;
            background: var(--bg-void); z-index: 1004; padding: 24px;
            transform: translateX(100%); transition: transform 0.4s var(--ease-out);
            overflow-y: auto; display: flex; flex-direction: column;
        }
        .mobile-nav.active { transform: translateX(0); }
        
        .mobile-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
        .mobile-close { font-size: 24px; color: white; cursor: pointer; padding: 10px; }

        .mn-link { display: block; font-size: 18px; font-weight: 600; padding: 15px 0; border-bottom: 1px solid var(--border); color: white; }
        .mn-sub { padding-left: 10px; display: none; background: rgba(255,255,255,0.02); margin-bottom: 10px; border-radius: 8px; }
        .mn-sub.open { display: block; }
        
        .mn-cat-title {
            font-family: var(--font-mono); font-size: 11px; color: var(--primary);
            text-transform: uppercase; margin: 15px 0 5px 10px; letter-spacing: 1px;
        }
        
        .mn-sub a { 
            display: block; padding: 10px 15px; color: var(--text-muted); font-size: 14px; 
            border-bottom: 1px solid rgba(255,255,255,0.03); 
        }
        .mn-sub a strong { color: white; margin-right: 5px; }

        .career-hero {
            padding: 180px 0 100px; text-align: center; position: relative;
        }
        .career-hero h1 {
            font-family: var(--font-display); font-size: 72px; font-weight: 800; line-height: 1.1;
            margin-bottom: 30px;
        }
        .career-hero h1 span { color: var(--primary); }
        .career-hero p {
            font-size: 20px; color: var(--text-muted); max-width: 800px; margin: 0 auto;
        }

        .section { padding: 120px 0; border-top: 1px solid var(--border); }
        .section-head { max-width: 800px; margin-bottom: 60px; }
        .section-title { font-family: var(--font-display); font-size: 42px; font-weight: 700; margin-bottom: 15px; }
        .section-sub { font-size: 18px; color: var(--text-muted); }

        .culture-grid {
            display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
        }
        .culture-card {
            background: var(--bg-surface); border: 1px solid var(--border); border-radius: 24px;
            padding: 40px; position: relative; overflow: hidden; display: flex; flex-direction: column;
        }
        
        .culture-card::before {
            content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
            background: radial-gradient(800px circle at var(--mouse-x) var(--mouse-y), rgba(255,255,255,0.06), transparent 40%);
            opacity: 0; transition: opacity 0.5s; pointer-events: none;
        }
        .culture-card:hover::before { opacity: 1; }

        .cult-icon {
            width: 50px; height: 50px; background: rgba(255,255,255,0.03); border-radius: 12px;
            display: flex; align-items: center; justify-content: center; color: var(--primary);
            font-size: 22px; margin-bottom: 24px; border: 1px solid var(--border);
        }
        .cult-title { font-family: var(--font-display); font-size: 24px; font-weight: 700; margin-bottom: 15px; }
        .cult-desc { color: var(--text-muted); font-size: 15px; line-height: 1.6; }

        .job-list {
            display: flex; flex-direction: column; gap: 15px;
        }
        .job-row {
            display: flex; align-items: center; justify-content: space-between;
            padding: 25px 30px; background: var(--bg-card); border: 1px solid var(--border);
            border-radius: 12px; transition: 0.3s; text-decoration: none;
        }
        .job-row:hover { border-color: var(--primary); transform: translateX(10px); }
        
        .job-info h4 { font-size: 18px; font-weight: 700; color: white; margin-bottom: 5px; }
        .job-meta { display: flex; gap: 15px; font-size: 13px; color: var(--text-muted); }
        .job-meta span { display: flex; align-items: center; gap: 5px; }
        
        .job-action { 
            padding: 8px 16px; border: 1px solid var(--border); border-radius: 6px; 
            font-size: 13px; font-weight: 600; color: white; transition: 0.3s;
        }
        .job-row:hover .job-action { background: var(--primary); border-color: var(--primary); }

        .empty-state {
            text-align: center; padding: 60px; background: rgba(255,255,255,0.02);
            border: 1px dashed var(--border); border-radius: 16px;
        }
        .empty-icon { font-size: 40px; color: var(--text-dark); margin-bottom: 20px; }
        .empty-text { color: var(--text-muted); font-size: 16px; }

        footer {
            background: #010101; border-top: 1px solid var(--border);
            padding: 100px 0 40px; font-size: 14px;
        }
        
        .footer-grid {
            display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 80px;
        }
        
        .f-brand h4 { font-family: var(--font-display); font-size: 24px; font-weight: 800; margin-bottom: 20px; color: white; }
        .f-brand p { color: var(--text-muted); max-width: 300px; margin-bottom: 24px; }
        
        .f-col h5 { color: white; font-weight: 700; margin-bottom: 24px; font-size: 14px; font-family: var(--font-mono); }
        .f-col ul li { margin-bottom: 8px; }
        .f-col a { color: var(--text-muted); transition: 0.2s; font-size: 13px; }
        .f-col a:hover { color: var(--primary); }
        .f-col a strong { color: #ccc; }

        .f-bottom {
            border-top: 1px solid var(--border); padding-top: 40px;
            display: flex; justify-content: space-between; align-items: center; color: #444;
        }

        @media (max-width: 1024px) {
            .nav-menu, .header-actions { display: none; }
            .mobile-toggle { display: block; }
            .culture-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr 1fr; }
            .career-hero h1 { font-size: 48px; }
            .job-row { flex-direction: column; align-items: flex-start; gap: 20px; }
            .job-action { width: 100%; text-align: center; }
        }
