
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html, body { overflow-x: hidden; max-width: 100%; }
    :root {
      --ink: #ffffff;
      --deep: #f5f5f5;
      --panel: #f9f9f9;
      --card: rgba(0,0,0,0.03);
      --border: rgba(0,0,0,0.1);
      --blue: #0057FF;
      --blue-dim: rgba(0,87,255,0.08);
      --blue-glow: rgba(0,87,255,0.2);
      --cyan: #0057FF;
      --cyan-dim: rgba(0,87,255,0.08);
      --cyan-glow: rgba(0,87,255,0.2);
      --gold: #0057FF;
      --white: #111111;
      --muted: #555555;
      --soft: #333333;
    }
    body { background: #000000; color: #e5e7eb; font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.6; overflow-x: hidden; }
    h1,h2,h3,h4,.brand { font-family: 'Raleway', sans-serif; }
    .wrap { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }

    nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; display: flex; align-items: center; justify-content: space-between; padding: 0 2rem; height: 64px; background: rgba(0,0,0,0.88); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(0,0,0,0.1); }
    .brand { font-size: 1.55rem; font-weight: 900; color: #ffffff; text-decoration: none; letter-spacing: -0.03em; }
    .brand em { color: #ffffff; font-style: normal; } .brand em:last-child { color: #0057FF; }
    .nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
    .nav-links a { color: #9ca3af; text-decoration: none; font-size: 0.88rem; font-weight: 500; transition: color 0.2s; }
    .nav-links a:hover { color: #ffffff; }
    .nav-cta { background: #0057FF !important; color: #ffffff !important; padding: 0.5rem 1.35rem; border-radius: 6px; font-weight: 700 !important; }
    .nav-cta:hover { background: #0040cc !important; }

    .page-hero { padding: 140px 0 80px; background: #000000; border-bottom: 1px solid rgba(255,255,255,0.08); position: relative; overflow: hidden; }
    
    .section-eyebrow { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: rgba(255,255,255,0.9); padding: 0.35rem 0.9rem; border-radius: 100px; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.5rem; }
    .page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.03em; margin-bottom: 1.25rem; color: #ffffff; position: relative; }
    .page-hero h1 .accent { color: #6ea8ff; }
    .page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.75); max-width: 560px; line-height: 1.75; font-weight: 300; position: relative; }

    section { padding: 80px 0; }
    .section-label { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #0057FF; margin-bottom: 0.75rem; }
    .section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 900; letter-spacing: -0.02em; line-height: 1.15; margin-bottom: 1rem; }
    .section-sub { color: #9ca3af; font-size: 0.97rem; line-height: 1.75; max-width: 560px; }

    .filter-bar { display: flex; gap: 0.75rem; flex-wrap: wrap; margin: 2.5rem 0; }
    .filter-btn { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); color: #9ca3af; padding: 0.5rem 1.2rem; border-radius: 100px; font-size: 0.83rem; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: 'Inter', sans-serif; }
    .filter-btn:hover, .filter-btn.active { background: rgba(0,87,255,0.08); border-color: rgba(6,182,212,0.4); color: #0057FF; }

    .roles-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.5rem; }
    .role-card { background: linear-gradient(135deg,#111111,#0a0a0a); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 2rem; transition: border-color 0.3s, transform 0.3s; }
    .role-card:hover { border-color: rgba(6,182,212,0.35); transform: translateY(-3px); }
    .role-title { font-size: 1.1rem; font-weight: 800; margin-bottom: 0.5rem; }
    .role-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 1rem; }
    .role-tag { background: rgba(0,87,255,0.08); color: #0057FF; font-size: 0.7rem; font-weight: 700; padding: 0.15rem 0.6rem; border-radius: 100px; letter-spacing: 0.04em; }
    .role-tag-gold { background: rgba(245,158,11,0.12); color: var(--gold); font-size: 0.7rem; font-weight: 700; padding: 0.15rem 0.6rem; border-radius: 100px; letter-spacing: 0.04em; }
    .role-desc { color: #9ca3af; font-size: 0.87rem; line-height: 1.65; margin-bottom: 1.25rem; }
    .role-skills { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.5rem; }
    .role-skills li { font-size: 0.82rem; color: #9ca3af; display: flex; align-items: flex-start; gap: 0.5rem; }
    .role-skills li::before { content: '→'; color: #0057FF; font-weight: 700; flex-shrink: 0; }
    .role-cta { display: block; text-align: center; background: #0057FF; color: var(--ink); padding: 0.7rem 1rem; border-radius: 8px; font-size: 0.88rem; font-weight: 800; text-decoration: none; transition: background 0.2s; font-family: 'Raleway', sans-serif; }
    .role-cta:hover { background: #0040cc; }

    /* APPLICATION FORM */
    .apply-section { background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
    .apply-wrap { max-width: 680px; margin: 0 auto; }
    .apply-form { background: linear-gradient(135deg,#111111,#0a0a0a); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 2.5rem; margin-top: 2.5rem; }
    .fg { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
    .fg label { font-size: 0.82rem; font-weight: 600; color: #d1d5db; letter-spacing: 0.03em; }
    .fg input, .fg select, .fg textarea {
      background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
      color: #e5e7eb; padding: 0.75rem 1rem; border-radius: 8px;
      font-family: 'Inter', sans-serif; font-size: 0.9rem; outline: none;
      transition: border-color 0.2s;
    }
    .fg input:focus, .fg select:focus, .fg textarea:focus { border-color: rgba(0,87,255,0.5); }
    .fg input::placeholder, .fg textarea::placeholder { color: #9ca3af; }
    .fg select option { background: #0a0a0a; color: #e5e7eb; }
    .fg textarea { resize: vertical; min-height: 110px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
    .form-submit { width: 100%; background: #0057FF; color: var(--ink); border: none; padding: 0.95rem; border-radius: 8px; font-family: 'Raleway', sans-serif; font-size: 1rem; font-weight: 800; cursor: pointer; transition: background 0.2s; margin-top: 0.5rem; }
    .form-submit:hover { background: #0040cc; }
    .form-note { font-size: 0.78rem; color: #9ca3af; text-align: center; margin-top: 1rem; }

    /* WHY WORK WITH US */
    .perks-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-top: 2.5rem; }
    .perk-card { background: linear-gradient(135deg,#111111,#0a0a0a); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius); padding: 1.5rem; }
    .perk-icon { font-size: 1.5rem; margin-bottom: 0.75rem; }
    .perk-title { font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 0.95rem; margin-bottom: 0.4rem; }
    .perk-desc { font-size: 0.83rem; color: #9ca3af; line-height: 1.6; }

    .btn-primary { background: #0057FF; color: var(--ink); padding: 0.9rem 2.1rem; border-radius: 8px; font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 0.95rem; text-decoration: none; display: inline-block; transition: background 0.2s; }
    .btn-primary:hover { background: #0040cc; }

    footer { background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.08); padding: 4rem 0 2rem; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    .footer-divider { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-links a { color: #9ca3af; text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
    .footer-links a:hover { color: #ffffff; }
    .footer-heading { color: #9ca3af; font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 0.85rem; margin-bottom: 1rem; letter-spacing: 0.05em; text-transform: uppercase; }

    /* SUCCESS STATE */
    .success-msg { display: none; background: rgba(0,87,255,0.1); border: 1px solid rgba(6,182,212,0.3); border-radius: var(--radius); padding: 1.5rem; text-align: center; margin-top: 1rem; }
    .success-msg p { color: #0057FF; font-weight: 600; font-size: 0.95rem; }

    @media(max-width:768px) {
      .roles-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .perks-grid { grid-template-columns: 1fr 1fr; }
    }

    

  
    /* ── Mobile nav ── */
    .mob-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px; height: 44px;
      background: transparent;
      border: none;
      cursor: pointer;
      padding: 6px;
      z-index: 9999;
      flex-shrink: 0;
    }
    .mob-toggle span {
      display: block;
      width: 26px; height: 2px;
      background: #ffffff;
      border-radius: 2px;
      transition: transform 0.3s ease, opacity 0.3s ease;
      pointer-events: none;
    }
    @media (max-width: 1200px) {
      nav { padding: 0 1rem !important; overflow: visible !important; width: 100% !important; box-sizing: border-box !important; }
      .mob-toggle { display: flex !important; }
      .nav-links {
        display: none;
        position: fixed;
        top: 72px; left: 0; right: 0; width: 100%;
        flex-direction: column;
        background: rgba(0,0,0,0.97);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding: 0.5rem 1.5rem 1.5rem;
        z-index: 9998;
        list-style: none;
        gap: 0;
        margin: 0;
      }
      .nav-links.mob-open { display: flex; }
      .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.07); margin: 0; }
      .nav-links li:last-child { border-bottom: none; padding-top: 0.5rem; }
      .nav-links a {
        display: block;
        padding: 0.85rem 0;
        font-size: 1rem;
        font-weight: 500;
        color: #d1d5db;
        text-decoration: none;
      }
      .nav-links a:hover,
      .nav-links a.active { color: #ffffff; }
      .nav-links .nav-cta {
        display: block;
        text-align: center;
        padding: 0.75rem 1.25rem;
        background: #0057FF;
        color: #ffffff;
        font-weight: 700;
        border-radius: 8px;
        font-size: 0.95rem;
      }
      .nav-links .nav-cta:hover { background: #0040cc; color: #ffffff; }
    }
    .mob-open-body .mob-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mob-open-body .mob-toggle span:nth-child(2) { opacity: 0; }
    .mob-open-body .mob-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


    /* ── Nav hover underline ── */
    .nav-links a:not(.nav-cta) { position: relative; }
    .nav-links a:not(.nav-cta)::after {
      content: ''; position: absolute; bottom: -4px; left: 0;
      width: 0; height: 2px; background: #0057FF; border-radius: 2px;
      transition: width 0.22s ease;
    }
    .nav-links a:not(.nav-cta):hover::after,
    .nav-links a.active::after { width: 100%; }
    .nav-links a { cursor: pointer; }

    /* ── Services dropdown ── */
    .nav-has-dropdown { position: relative; }
    .nav-arrow {
      font-size: 0.65rem; margin-left: 3px; display: inline-block;
      transition: transform 0.22s; vertical-align: middle;
    }
    .nav-has-dropdown:hover .nav-arrow { transform: rotate(180deg); }
    .nav-dropdown {
      position: absolute; top: calc(100% + 14px); left: 50%;
      transform: translateX(-50%) translateY(-6px);
      background: #111111; border-radius: 16px;
      padding: 1.5rem 1.75rem; min-width: 560px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
      border: 1px solid rgba(0,0,0,0.07);
      opacity: 0; visibility: hidden;
      transition: opacity 0.2s ease, transform 0.2s ease;
      z-index: 9999; pointer-events: none;
    }
    .nav-has-dropdown:hover .nav-dropdown {
      opacity: 1; visibility: visible;
      transform: translateX(-50%) translateY(0);
      pointer-events: auto;
    }.nav-dropdown::after{content:'';position:absolute;top:-18px;left:0;right:0;height:18px;}
    .nav-dropdown::before {
      content: ''; position: absolute; top: -6px; left: 50%;
      transform: translateX(-50%);
      width: 12px; height: 12px; background: #111111;
      border-top: 1px solid rgba(0,0,0,0.07);
      border-left: 1px solid rgba(0,0,0,0.07);
      transform: translateX(-50%) rotate(45deg);
    }
    .nav-dd-grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:1.25rem;}
    .nav-dd-grid {
      display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem;
    }
    .nav-dd-col-head {
      font-family: 'Raleway', sans-serif; font-size: 0.7rem; font-weight: 800;
      text-transform: uppercase; letter-spacing: 0.1em; color: #0057FF;
      margin-bottom: 0.65rem; padding-bottom: 0.5rem;
      border-bottom: 1px solid rgba(0,87,255,0.12);
    }
    .nav-dropdown a {
      display: block; font-size: 0.81rem; color: #444; padding: 0.28rem 0;
      font-weight: 400; transition: color 0.15s, padding-left 0.15s;
      white-space: nowrap;
    }
    .nav-dropdown a::after { display: none; }
    .nav-dropdown a:hover { color: #0057FF; padding-left: 5px; }
    @media (max-width:1200px) { .nav-dropdown { display: none !important; } }

  