:root{
    --bg-deep:#f7f9fc;
    --bg-navy:#eef3fc;
    --bg-navy-2:#e4ecfa;
    --card:#ffffff;
    --card-line:rgba(10,19,48,0.09);
    --blue-600:#1d4ed8;
    --blue-500:#2563eb;
    --blue-400:#38bdf8;
    --blue-300:#0f6fd1;
    --ink:#0a1330;
    --muted:#5b6478;
    --muted-2:#8992a8;
    --gradient-brand: linear-gradient(120deg, #0b1a4a 0%, #1d4ed8 55%, #38bdf8 100%);
    --shadow-glow: 0 0 60px rgba(37,99,235,0.14);
    --shadow-card: 0 1px 2px rgba(16,24,56,0.04), 0 10px 28px -16px rgba(16,24,56,0.12);
    --maxw: 1180px;
  }

  *{ box-sizing:border-box; margin:0; padding:0; }
  html{ scroll-behavior:smooth; }
  @media (prefers-reduced-motion: reduce){
    html{ scroll-behavior:auto; }
    *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; }
  }

  body{
    background:var(--bg-deep);
    color:var(--ink);
    font-family:'IBM Plex Sans', -apple-system, sans-serif;
    line-height:1.6;
    overflow-x:hidden;
  }

  h1,h2,h3,h4{ font-family:'Bricolage Grotesque', sans-serif; font-weight:700; letter-spacing:-0.015em; }
  .mono{ font-family:'IBM Plex Mono', monospace; }

  a{ color:inherit; text-decoration:none; }
  img{ max-width:100%; display:block; }
  section{ position:relative; }
  .wrap{ max-width:var(--maxw); margin:0 auto; padding:0 32px; }

  ::selection{ background:var(--blue-500); color:#fff; }

  /* ---------- background texture ---------- */
  .bg-grid{
    position:fixed; inset:0; z-index:0; pointer-events:none;
    background-image:
      linear-gradient(rgba(10,19,48,0.035) 1px, transparent 1px),
      linear-gradient(90deg, rgba(10,19,48,0.035) 1px, transparent 1px);
    background-size:64px 64px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
  }

  /* ---------- SCROLL PROGRESS BAR ---------- */
  .scroll-progress{
    position:fixed; top:0; left:0; height:3px; width:0%;
    background:var(--gradient-brand); z-index:200; transition:width .1s ease-out;
  }

  /* ---------- NAV ---------- */
  header.nav{
    position:fixed; top:0; left:0; right:0; z-index:100;
    padding:20px 0;
    transition: all .35s ease;
    border-bottom:1px solid transparent;
  }
  header.nav.scrolled{
    background:rgba(247,249,252,0.85);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom:1px solid var(--card-line);
    padding:12px 0;
  }
  .nav-inner{ display:flex; align-items:center; justify-content:space-between; gap:24px; }
  .brand{ display:flex; align-items:center; gap:11px; }
  .brand img{ height:36px; width:auto; transition:height .35s ease; }
  header.nav.scrolled .brand img{ height:30px; }
  .brand-text{
    font-family:'Bricolage Grotesque', sans-serif; font-weight:700; font-size:19px;
    letter-spacing:0.01em; color:var(--ink); white-space:nowrap;
  }
  .brand-text .x-accent{
    background:linear-gradient(120deg, var(--blue-500), var(--blue-300));
    -webkit-background-clip:text; background-clip:text; color:transparent;
  }
  .brand-text .brand-sub{
    font-size:12.5px; font-weight:500; color:var(--muted); letter-spacing:0.16em; margin-left:2px;
  }
  .footer-brand{ display:flex; align-items:center; gap:11px; flex-wrap:wrap; }

  .nav-links{ display:flex; align-items:center; gap:36px; }
  .nav-links a{
    font-size:14.5px; color:var(--muted); font-weight:500; position:relative;
    transition:color .25s ease;
  }
  .nav-links a::after{
    content:''; position:absolute; left:0; bottom:-6px; width:0; height:1.5px;
    background:var(--blue-400); transition:width .3s ease;
  }
  .nav-links a:hover{ color:var(--ink); }
  .nav-links a:hover::after{ width:100%; }

  .btn{
    display:inline-flex; align-items:center; gap:8px;
    padding:12px 24px; border-radius:100px; font-size:14.5px; font-weight:600;
    cursor:pointer; border:1px solid transparent; transition:all .3s ease;
    white-space:nowrap;
  }
  .btn-primary{
    background:var(--gradient-brand); color:#fff;
    box-shadow:0 8px 24px -8px rgba(37,99,235,0.55);
  }
  .btn-primary:hover{ transform:translateY(-2px); box-shadow:0 14px 32px -8px rgba(56,189,248,0.55); }
  .btn-ghost{
    border-color:var(--card-line); color:var(--ink);
  }
  .btn-ghost:hover{ border-color:var(--blue-400); background:rgba(56,189,248,0.06); }
  .nav-cta{ display:flex; }

  .menu-toggle{ display:none; flex-direction:column; gap:5px; cursor:pointer; z-index:101; }
  .menu-toggle span{ width:24px; height:2px; background:var(--ink); border-radius:2px; transition:.3s; }

  /* ---------- HERO ---------- */
  .hero{
    padding:180px 0 100px;
    position:relative;
    overflow:hidden;
  }
  .hero::before{
    content:'';
    position:absolute; inset:0; z-index:-1; pointer-events:none;
    background-image: radial-gradient(rgba(37,99,235,0.16) 1.5px, transparent 1.5px);
    background-size: 34px 34px;
    -webkit-mask-image: radial-gradient(ellipse 70% 65% at 75% 35%, black 20%, transparent 75%);
    mask-image: radial-gradient(ellipse 70% 65% at 75% 35%, black 20%, transparent 75%);
  }
  .hero-inner{
    display:grid; grid-template-columns:1.05fr 0.95fr; gap:40px; align-items:center;
  }
  .eyebrow{
    display:inline-flex; align-items:center; gap:10px;
    font-family:'IBM Plex Mono', monospace; font-size:12.5px; letter-spacing:0.14em;
    color:var(--blue-300); text-transform:uppercase; margin-bottom:22px;
    padding:7px 14px; border:1px solid rgba(56,189,248,0.25); border-radius:100px;
    background:rgba(56,189,248,0.05);
  }
  .eyebrow .dot{ width:6px; height:6px; border-radius:50%; background:var(--blue-400); box-shadow:0 0 10px var(--blue-400); animation:pulse 2s infinite ease-in-out; }
  @keyframes pulse{ 0%,100%{opacity:1;} 50%{opacity:0.35;} }

  .hero h1{
    font-size:clamp(38px, 5.2vw, 64px);
    line-height:1.1;
    margin-bottom:22px;
    letter-spacing:-0.02em;
  }
  .hero h1 .accent{
    position:relative;
    background:linear-gradient(100deg, var(--blue-600), var(--blue-400) 65%, var(--blue-300));
    -webkit-background-clip:text; background-clip:text; color:transparent;
    white-space:nowrap;
  }
  .hero h1 .accent::after{
    content:''; position:absolute; left:0; right:0; bottom:2px; height:10px; z-index:-1;
    background:linear-gradient(90deg, rgba(37,99,235,0.18), rgba(56,189,248,0.18));
    border-radius:4px;
  }
  .hero p.lead{
    font-size:17.5px; color:var(--muted); max-width:520px; margin-bottom:34px;
  }
  .hero-ctas{ display:flex; gap:16px; margin-bottom:46px; flex-wrap:wrap; }

  .hero-tags{ display:flex; flex-wrap:wrap; gap:10px; }
  .hero-tags span{
    font-family:'IBM Plex Mono', monospace; font-size:12px; color:var(--muted);
    border:1px solid var(--card-line); padding:7px 12px; border-radius:8px;
    background:rgba(10,19,48,0.025);
  }

  /* orbit graphic */
  .orbit-wrap{
    position:relative; width:100%; aspect-ratio:1/1; max-width:480px; margin:0 auto;
  }
  .orbit-parallax{ position:absolute; inset:0; }
  .orbit-ring{
    position:absolute; border:1px solid rgba(37,99,235,0.22); border-radius:50%;
    top:50%; left:50%; transform:translate(-50%,-50%);
  }
  .ring-1{ width:100%; height:100%; }
  .ring-2{ width:74%; height:74%; border-style:dashed; border-color:rgba(37,99,235,0.18); }
  .ring-3{ width:48%; height:48%; }

  .orbit-core{
    position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
    width:132px; height:132px; border-radius:50%;
    background:radial-gradient(circle at 35% 30%, rgba(56,189,248,0.35), rgba(29,78,216,0.08) 60%, transparent 75%);
    display:flex; align-items:center; justify-content:center;
    animation:corepulse 4s ease-in-out infinite;
  }
  @keyframes corepulse{ 0%,100%{ transform:translate(-50%,-50%) scale(1);} 50%{ transform:translate(-50%,-50%) scale(1.06);} }
  .orbit-core img{ width:76px; height:auto; filter:drop-shadow(0 0 20px rgba(56,189,248,0.5)); }

  .orbit-spin{ position:absolute; inset:0; animation:spin 34s linear infinite; }
  .orbit-spin.reverse{ animation:spinrev 26s linear infinite; }
  @keyframes spin{ from{ transform:rotate(0deg);} to{ transform:rotate(360deg);} }
  @keyframes spinrev{ from{ transform:rotate(360deg);} to{ transform:rotate(0deg);} }

  .orbit-badge{
    position:absolute; transform:translate(-50%,-50%);
    background:var(--card); border:1px solid var(--card-line);
    padding:7px 12px; border-radius:9px; font-family:'IBM Plex Mono',monospace;
    font-size:11.5px; color:var(--muted); white-space:nowrap;
    animation:counterspin 34s linear infinite;
    box-shadow:var(--shadow-card);
  }
  .orbit-spin.reverse .orbit-badge{ animation:counterspinrev 26s linear infinite; }
  @keyframes counterspin{ from{ transform:translate(-50%,-50%) rotate(0deg);} to{ transform:translate(-50%,-50%) rotate(-360deg);} }
  @keyframes counterspinrev{ from{ transform:translate(-50%,-50%) rotate(-360deg);} to{ transform:translate(-50%,-50%) rotate(0deg);} }

  /* ---------- SECTION HEADERS ---------- */
  .sec-head{ max-width:640px; margin-bottom:56px; }
  .sec-head .eyebrow{ margin-bottom:16px; }
  .sec-head h2{ font-size:clamp(28px,3.6vw,42px); margin-bottom:16px; line-height:1.15; }
  .sec-head p{ color:var(--muted); font-size:16.5px; }
  .center{ text-align:center; margin-left:auto; margin-right:auto; }

  .reveal{
    opacity:0; transform:translateY(38px) scale(0.975); filter:blur(6px);
    transition: opacity .9s cubic-bezier(.16,.84,.44,1), transform .9s cubic-bezier(.16,.84,.44,1), filter .9s cubic-bezier(.16,.84,.44,1);
    will-change: opacity, transform, filter;
  }
  .reveal.in{ opacity:1; transform:translateY(0) scale(1); filter:blur(0px); }
  .reveal-delay-1.in{ transition-delay:.08s; }
  .reveal-delay-2.in{ transition-delay:.16s; }
  .reveal-delay-3.in{ transition-delay:.24s; }
  .reveal-delay-4.in{ transition-delay:.32s; }
  .reveal-delay-5.in{ transition-delay:.4s; }

  /* ---------- TRUST STRIP ---------- */
  .trust{ padding:34px 0; border-bottom:1px solid var(--card-line); }
  .trust-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
  .trust-item{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:6px; }
  .trust-num{ font-size:20px; font-weight:600; color:var(--blue-600); }
  .trust-label{ font-size:12.5px; color:var(--muted); letter-spacing:0.02em; }
  @media (max-width: 720px){ .trust-grid{ grid-template-columns:1fr 1fr; row-gap:26px; } }

  /* ---------- ABOUT BAND ---------- */
  .about{ padding:70px 0; border-top:1px solid var(--card-line); border-bottom:1px solid var(--card-line); background:linear-gradient(180deg, rgba(37,99,235,0.04), transparent); position:relative; overflow:hidden; }
  .about::after{
    content:''; position:absolute; top:-60px; right:-60px; width:280px; height:280px; z-index:-1;
    background:radial-gradient(circle, rgba(56,189,248,0.14), transparent 70%);
    border-radius:50%; pointer-events:none;
  }
  .about-inner{ display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:center; }
  .about h3{ font-size:26px; margin-bottom:16px; }
  .about p{ color:var(--muted); font-size:16px; }
  .about-stats{ display:grid; grid-template-columns:1fr 1fr; gap:20px; }
  .stat-card{
    border:1px solid var(--card-line); border-radius:14px; padding:20px;
    background:var(--card); box-shadow:var(--shadow-card);
  }
  .stat-card .stat-label{ font-family:'IBM Plex Mono',monospace; font-size:12px; color:var(--blue-300); text-transform:uppercase; letter-spacing:.08em; margin-bottom:8px; }
  .stat-card .stat-val{ font-size:15px; color:var(--ink); font-weight:500; }

  /* ---------- SEGMENTS ---------- */
  .segments{ padding:90px 0 40px; }
  .segments-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:18px; }
  .segment-item{
    border:1px solid var(--card-line); border-radius:14px; padding:24px;
    background:linear-gradient(160deg, rgba(37,99,235,0.06), rgba(255,255,255,0.4));
    box-shadow:var(--shadow-card);
  }
  .seg-num{ display:block; font-size:12px; color:var(--blue-300); margin-bottom:12px; letter-spacing:.08em; }
  .segment-item p{ font-size:14.5px; color:var(--ink); line-height:1.5; }
  @media (max-width: 980px){ .segments-grid{ grid-template-columns:1fr 1fr; } }
  @media (max-width: 720px){ .segments-grid{ grid-template-columns:1fr; } }

  /* ---------- SERVICES / TABS ---------- */
  .services{ padding:120px 0 100px; }
  .tabs-layout{ display:grid; grid-template-columns:280px 1fr; gap:40px; align-items:flex-start; }

  .tab-list{ display:flex; flex-direction:column; gap:6px; position:sticky; top:110px; }
  .tab-btn{
    display:flex; align-items:center; gap:14px; text-align:left;
    padding:15px 16px; border-radius:12px; cursor:pointer; border:1px solid transparent;
    background:transparent; color:var(--muted); font-size:14.5px; font-weight:500;
    transition:all .3s ease; width:100%; font-family:'IBM Plex Sans',sans-serif;
  }
  .tab-btn .tab-num{ font-family:'IBM Plex Mono',monospace; font-size:12px; color:var(--muted-2); }
  .tab-btn:hover{ background:rgba(10,19,48,0.035); color:var(--ink); }
  .tab-btn.active{
    background:linear-gradient(100deg, rgba(37,99,235,0.14), rgba(56,189,248,0.06));
    border-color:rgba(37,99,235,0.35); color:var(--ink);
  }
  .tab-btn.active .tab-num{ color:var(--blue-300); }

  .tab-panels{ position:relative; min-height:380px; }
  .tab-panel{
    display:none; border:1px solid var(--card-line); border-radius:20px;
    padding:44px; background:var(--card); box-shadow:var(--shadow-card);
  }
  .tab-panel.active{
    display:block; animation:panelIn .5s ease;
  }
  @keyframes panelIn{ from{ opacity:0; transform:translateX(14px);} to{ opacity:1; transform:translateX(0);} }
  .tab-panel h3{ font-size:24px; margin-bottom:14px; display:flex; align-items:center; gap:14px; }
  .tab-panel .icon-box{
    width:44px; height:44px; border-radius:12px; display:flex; align-items:center; justify-content:center;
    background:linear-gradient(135deg, var(--blue-600), var(--blue-400)); flex-shrink:0;
  }
  .tab-panel p.desc{ color:var(--muted); font-size:15.5px; margin-bottom:24px; max-width:600px; }
  .tool-tags{ display:flex; flex-wrap:wrap; gap:9px; }
  .tool-tags span{
    font-family:'IBM Plex Mono',monospace; font-size:12px; color:var(--blue-300);
    border:1px solid rgba(56,189,248,0.25); padding:6px 12px; border-radius:8px;
    background:rgba(56,189,248,0.05);
  }

  /* mobile tab select */
  .tab-select{ display:none; }

  /* ---------- MISSION / PIPELINE ---------- */
  .mission{ padding:100px 0; border-top:1px solid var(--card-line); background:var(--bg-navy); }
  .mission-inner{ display:grid; grid-template-columns:0.9fr 1.1fr; gap:70px; align-items:center; }
  .mission h2{ font-size:clamp(28px,3.4vw,38px); margin-bottom:20px; }
  .mission p{ color:var(--muted); font-size:16px; margin-bottom:16px; }

  .pipeline{ position:relative; padding:20px 0; }
  .pipeline-line{
    position:absolute; left:23px; top:12px; bottom:12px; width:2px;
    background:linear-gradient(180deg, var(--blue-600), var(--blue-400), transparent);
  }
  .pipeline-step{ position:relative; display:flex; gap:22px; padding-bottom:38px; }
  .pipeline-step:last-child{ padding-bottom:0; }
  .pipeline-dot{
    width:48px; height:48px; border-radius:50%; flex-shrink:0; z-index:1;
    background:var(--bg-navy); border:2px solid var(--blue-400);
    display:flex; align-items:center; justify-content:center;
    font-family:'IBM Plex Mono',monospace; font-size:14px; color:var(--blue-600); font-weight:600;
    box-shadow:0 0 0 6px var(--bg-navy);
  }
  .pipeline-step h4{ font-size:17px; margin-bottom:6px; }
  .pipeline-step p{ color:var(--muted); font-size:14.5px; margin:0; }

  /* ---------- WHY PARTNER ---------- */
  .why{ padding:110px 0; }
  .why-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:22px; }
  .why-card{
    border:1px solid var(--card-line); border-radius:16px; padding:30px;
    background:var(--card); position:relative; overflow:hidden;
    transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease;
    box-shadow:var(--shadow-card);
  }
  .why-card::before{
    content:''; position:absolute; inset:0; opacity:0; transition:opacity .4s ease;
    background:radial-gradient(320px circle at var(--mx,50%) var(--my,50%), rgba(37,99,235,0.10), transparent 60%);
  }
  .why-card:hover{ transform:translateY(-6px); border-color:rgba(37,99,235,0.3); box-shadow:0 20px 40px -20px rgba(16,24,56,0.18); }
  .why-card:hover::before{ opacity:1; }
  .why-card .icon-box{
    width:42px; height:42px; border-radius:11px; margin-bottom:18px;
    background:linear-gradient(135deg, var(--blue-600), var(--blue-400));
    display:flex; align-items:center; justify-content:center;
  }
  .why-card h4{ font-size:17px; margin-bottom:10px; position:relative; }
  .why-card p{ color:var(--muted); font-size:14.5px; position:relative; }

  /* ---------- CTA / CONTACT ---------- */
  .cta{
    padding:110px 0; text-align:center; position:relative; overflow:hidden;
    border-top:1px solid var(--card-line);
  }
  .cta::before{
    content:''; position:absolute; top:-30%; left:50%; transform:translateX(-50%);
    width:900px; height:600px; border-radius:50%;
    background:radial-gradient(circle, rgba(37,99,235,0.14), transparent 65%);
    filter:blur(10px); pointer-events:none;
  }
  .cta h2{ font-size:clamp(30px,4vw,46px); margin-bottom:18px; position:relative; }
  .cta p{ color:var(--muted); font-size:17px; max-width:560px; margin:0 auto 38px; position:relative; }
  .cta-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; position:relative; }
  .email-copy{
    display:inline-flex; align-items:center; gap:10px; margin-top:26px; position:relative;
    font-family:'IBM Plex Mono',monospace; font-size:14px; color:var(--muted);
    border:1px solid var(--card-line); padding:10px 16px; border-radius:100px; cursor:pointer;
    transition:.3s ease;
  }
  .email-copy:hover{ border-color:var(--blue-400); color:var(--ink); }
  .email-copy svg{ width:15px; height:15px; }

  /* ---------- PROCESS ---------- */
  .process{ padding:110px 0; border-top:1px solid var(--card-line); }
  .process-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:22px; }
  .process-step{
    border:1px solid var(--card-line); border-radius:16px; padding:28px;
    background:var(--card); box-shadow:var(--shadow-card); position:relative;
  }
  .process-num{ display:block; font-size:13px; color:var(--blue-600); margin-bottom:14px; letter-spacing:.08em; }
  .process-step h4{ font-size:17px; margin-bottom:10px; }
  .process-step p{ color:var(--muted); font-size:14.5px; }
  @media (max-width: 980px){ .process-grid{ grid-template-columns:1fr 1fr; } }
  @media (max-width: 720px){ .process-grid{ grid-template-columns:1fr; } }

  /* ---------- FAQ ---------- */
  .faq{ padding:100px 0; border-top:1px solid var(--card-line); }
  .faq-list{ max-width:760px; }
  .faq-item{
    border:1px solid var(--card-line); border-radius:14px; padding:20px 24px;
    margin-bottom:12px; background:var(--card); box-shadow:var(--shadow-card);
  }
  .faq-item summary{
    cursor:pointer; font-family:'Bricolage Grotesque', sans-serif; font-weight:600;
    font-size:15.5px; color:var(--ink); list-style:none; display:flex; justify-content:space-between; align-items:center;
  }
  .faq-item summary::-webkit-details-marker{ display:none; }
  .faq-item summary::after{
    content:'+'; font-size:20px; color:var(--blue-500); margin-left:12px; transition:transform .3s ease; flex-shrink:0;
  }
  .faq-item[open] summary::after{ transform:rotate(45deg); }
  .faq-item p{ color:var(--muted); font-size:14.5px; margin-top:14px; line-height:1.6; }

  /* ---------- FOOTER ---------- */
  footer{ border-top:1px solid var(--card-line); padding:50px 0 34px; }
  .footer-inner{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:36px; align-items:start; }
  .footer-brand img{ height:26px; }
  .footer-tag{ color:var(--muted-2); font-size:13.5px; margin-top:14px; line-height:1.6; max-width:320px; }
  .footer-col h5{
    font-family:'Bricolage Grotesque', sans-serif; font-size:13px; color:var(--ink);
    text-transform:uppercase; letter-spacing:0.08em; margin-bottom:16px; font-weight:600;
  }
  .footer-col{ display:flex; flex-direction:column; gap:11px; }
  .footer-col a{ color:var(--muted); font-size:13.5px; transition:color .25s; }
  .footer-col a:hover{ color:var(--blue-600); }
  .footer-bottom{ margin-top:44px; padding-top:24px; border-top:1px solid var(--card-line); text-align:center; color:var(--muted-2); font-size:12.5px; }
  @media (max-width: 860px){ .footer-inner{ grid-template-columns:1fr 1fr; } }
  @media (max-width: 560px){ .footer-inner{ grid-template-columns:1fr; } }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 980px){
    .hero-inner{ grid-template-columns:1fr; }
    .orbit-wrap{ max-width:340px; margin-top:20px; }
    .about-inner{ grid-template-columns:1fr; gap:36px; }
    .tabs-layout{ grid-template-columns:1fr; }
    .tab-list{ display:none; }
    .tab-select{ display:block; margin-bottom:24px; }
    .tab-select select{
      width:100%; padding:14px 16px; border-radius:12px; background:var(--card);
      border:1px solid var(--card-line); color:var(--ink); font-size:15px; font-family:'IBM Plex Sans',sans-serif;
      box-shadow:var(--shadow-card);
    }
    .mission-inner{ grid-template-columns:1fr; gap:40px; }
    .why-grid{ grid-template-columns:1fr 1fr; }
  }
  @media (max-width: 720px){
    .nav-links{ position:fixed; top:0; right:0; height:100vh; width:78%; max-width:320px;
      background:rgba(255,255,255,0.98); box-shadow:-10px 0 40px rgba(16,24,56,0.12);
      backdrop-filter:blur(20px); flex-direction:column; justify-content:center;
      align-items:flex-start; padding:40px; gap:26px; transform:translateX(100%); transition:transform .4s ease; }
    .nav-links.open{ transform:translateX(0); }
    .nav-cta{ display:none; }
    .menu-toggle{ display:flex; }
    .hero{ padding:150px 0 70px; }
    .hero-ctas .btn{ width:100%; justify-content:center; }
    .why-grid{ grid-template-columns:1fr; }
    .tab-panel{ padding:28px; }
    .about-stats{ grid-template-columns:1fr; }
  }

/* ---------- INNER PAGE HERO (About / Services / Careers / Contact) ---------- */
.page-hero{ padding:170px 0 80px; text-align:center; }
.page-hero .eyebrow{ margin-left:auto; margin-right:auto; }
.page-hero h1{ font-size:clamp(34px,5vw,52px); margin-bottom:18px; }
.page-hero p{ color:var(--muted); font-size:17px; max-width:600px; margin:0 auto; }

/* ---------- ACTIVE NAV LINK ---------- */
.nav-links a.active{ color:var(--ink); }
.nav-links a.active::after{ width:100%; }

/* ---------- CAREERS PAGE ---------- */
.perks-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:22px; }
.perk-card{
  border:1px solid var(--card-line); border-radius:16px; padding:28px;
  background:var(--card); box-shadow:var(--shadow-card);
}
.perk-card .icon-box{
  width:42px; height:42px; border-radius:11px; margin-bottom:16px;
  background:linear-gradient(135deg, var(--blue-600), var(--blue-400));
  display:flex; align-items:center; justify-content:center;
}
.perk-card h4{ font-size:16.5px; margin-bottom:8px; }
.perk-card p{ color:var(--muted); font-size:14.5px; }

.openings-box{
  border:1px solid var(--card-line); border-radius:18px; padding:44px;
  background:var(--card); box-shadow:var(--shadow-card); text-align:center;
}
.openings-box h3{ font-size:22px; margin-bottom:12px; }
.openings-box p{ color:var(--muted); font-size:15.5px; max-width:520px; margin:0 auto 24px; }

@media (max-width: 860px){ .perks-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width: 560px){ .perks-grid{ grid-template-columns:1fr; } .openings-box{ padding:28px; } }

/* ---------- CONTACT PAGE ---------- */
.contact-grid{ display:grid; grid-template-columns:1fr 1fr 1fr; gap:22px; margin-bottom:70px; }
.contact-card{
  border:1px solid var(--card-line); border-radius:16px; padding:30px;
  background:var(--card); box-shadow:var(--shadow-card);
}
.contact-card .icon-box{
  width:42px; height:42px; border-radius:11px; margin-bottom:16px;
  background:linear-gradient(135deg, var(--blue-600), var(--blue-400));
  display:flex; align-items:center; justify-content:center;
}
.contact-card h4{ font-size:16.5px; margin-bottom:8px; }
.contact-card p{ color:var(--muted); font-size:14.5px; margin-bottom:14px; }
.contact-card a.link{ color:var(--blue-600); font-size:14px; font-weight:600; }

@media (max-width: 900px){ .contact-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width: 720px){ .contact-grid{ grid-template-columns:1fr; } }

/* ---------- OPEN POSITIONS (CAREERS) ---------- */
.positions{ padding:20px 0 100px; }
.country-group{ margin-bottom:56px; }
.country-group:last-child{ margin-bottom:0; }
.country-heading{ display:flex; align-items:center; gap:14px; margin-bottom:26px; }
.country-heading h3{ font-size:21px; }
.country-count{
  font-family:'IBM Plex Mono',monospace; font-size:12px; color:var(--blue-600);
  border:1px solid rgba(37,99,235,0.25); padding:6px 12px; border-radius:100px;
  background:rgba(37,99,235,0.05); white-space:nowrap;
}
.job-list{ display:flex; flex-direction:column; gap:16px; }
.job-card{
  border:1px solid var(--card-line); border-radius:16px; background:var(--card);
  box-shadow:var(--shadow-card); overflow:hidden;
}
.job-card summary{
  cursor:pointer; padding:24px 28px; display:flex; justify-content:space-between;
  align-items:center; gap:20px; list-style:none;
}
.job-card summary::-webkit-details-marker{ display:none; }
.job-summary-main{ display:flex; flex-direction:column; gap:10px; }
.job-title-row{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.job-title-row h4{ font-size:17px; }
.job-openings-tag{
  font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--blue-600);
  background:rgba(37,99,235,0.08); padding:3px 9px; border-radius:6px;
}
.job-badges{ display:flex; flex-wrap:wrap; gap:8px; }
.job-badge{
  font-family:'IBM Plex Mono',monospace; font-size:11.5px; color:var(--muted);
  border:1px solid var(--card-line); padding:5px 10px; border-radius:7px;
  background:rgba(10,19,48,0.02); white-space:nowrap;
}
.job-card summary::after{
  content:'+'; font-size:22px; color:var(--blue-500); flex-shrink:0;
  transition:transform .3s ease;
}
.job-card[open] summary::after{ transform:rotate(45deg); }
.job-body{ padding:0 28px 30px; border-top:1px solid var(--card-line); margin-top:2px; }
.job-body h5{
  font-family:'IBM Plex Mono',monospace; font-size:12.5px; text-transform:uppercase;
  letter-spacing:.06em; color:var(--blue-600); margin:22px 0 10px;
}
.job-body h6{
  font-family:'IBM Plex Sans',sans-serif; font-size:14px; font-weight:600;
  color:var(--ink); margin:14px 0 6px;
}
.job-body p{ color:var(--muted); font-size:14.5px; line-height:1.7; margin-bottom:8px; }
.job-body ul{ padding-left:20px; margin-bottom:10px; }
.job-body li{ color:var(--muted); font-size:14.5px; line-height:1.7; margin-bottom:4px; }
.job-apply{ margin-top:20px; }
@media (max-width: 640px){
  .job-card summary{ padding:20px; flex-direction:column; align-items:flex-start; }
  .job-card summary::after{ position:absolute; top:20px; right:20px; }
  .job-card summary{ position:relative; }
  .job-body{ padding:0 20px 24px; }
}

/* ---------- GLOBAL REACH MARQUEE ---------- */
.marquee{
  overflow:hidden; padding:18px 0; border-bottom:1px solid var(--card-line);
  background:var(--bg-navy);
}
.marquee-track{
  display:flex; width:max-content;
  animation:marqueeScroll 30s linear infinite;
}
.marquee-item{
  display:flex; align-items:center; gap:10px; padding:0 30px;
  font-family:'IBM Plex Mono',monospace; font-size:13.5px; color:var(--muted);
  white-space:nowrap; border-right:1px solid var(--card-line);
}
.marquee-item .flag{ font-size:17px; }
@keyframes marqueeScroll{ from{ transform:translateX(0); } to{ transform:translateX(-50%); } }
.marquee:hover .marquee-track{ animation-play-state:paused; }

/* ---------- SERVICES ANIMATED BACKGROUND (shifts per tab) ---------- */
.tab-panels{ position:relative; }
.tab-panels::before{
  content:''; position:absolute; inset:-40px; z-index:-1; border-radius:32px;
  background:radial-gradient(480px circle at 20% 20%, rgba(37,99,235,0.10), transparent 60%);
  transition: background 0.7s ease;
  pointer-events:none;
}
.tab-panels.tab-hue-1::before{ background:radial-gradient(480px circle at 80% 20%, rgba(56,189,248,0.12), transparent 60%); }
.tab-panels.tab-hue-2::before{ background:radial-gradient(480px circle at 20% 80%, rgba(29,78,216,0.11), transparent 60%); }
.tab-panels.tab-hue-3::before{ background:radial-gradient(480px circle at 80% 80%, rgba(125,211,252,0.13), transparent 60%); }
.tab-panels.tab-hue-4::before{ background:radial-gradient(480px circle at 50% 10%, rgba(37,99,235,0.13), transparent 60%); }
.tab-panels.tab-hue-5::before{ background:radial-gradient(480px circle at 50% 90%, rgba(56,189,248,0.10), transparent 60%); }
.tab-panels.tab-hue-6::before{ background:radial-gradient(480px circle at 30% 50%, rgba(29,78,216,0.12), transparent 60%); }

/* ---------- FORMS (Post a Job / Apply Now) ---------- */
.form-wrap{ max-width:720px; margin:0 auto; }
.form-card{
  border:1px solid var(--card-line); border-radius:20px; padding:44px;
  background:var(--card); box-shadow:var(--shadow-card);
}
.form-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; margin-bottom:18px; }
.form-group{ margin-bottom:18px; }
.form-group label{
  display:block; font-size:13.5px; font-weight:600; color:var(--ink); margin-bottom:8px;
}
.form-group .hint{ font-size:12.5px; color:var(--muted-2); font-weight:400; margin-left:6px; }
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="url"],
.form-group select,
.form-group textarea{
  width:100%; padding:13px 15px; border-radius:10px; border:1px solid var(--card-line);
  background:var(--bg-deep); color:var(--ink); font-family:'IBM Plex Sans',sans-serif;
  font-size:14.5px; transition:border-color .25s ease;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{
  outline:none; border-color:var(--blue-400);
}
.form-group textarea{ resize:vertical; min-height:110px; }
.form-group input[type="file"]{
  width:100%; padding:12px; border-radius:10px; border:1px dashed var(--card-line);
  background:var(--bg-deep); color:var(--muted); font-family:'IBM Plex Sans',sans-serif; font-size:13.5px;
}
.form-checkbox{
  display:flex; align-items:flex-start; gap:10px; font-size:13.5px; color:var(--muted);
  line-height:1.5; margin-bottom:26px;
}
.form-checkbox input{ margin-top:3px; flex-shrink:0; }
.role-banner{
  display:flex; align-items:center; gap:12px; padding:16px 20px; border-radius:12px;
  background:rgba(37,99,235,0.06); border:1px solid rgba(37,99,235,0.2);
  margin-bottom:30px; font-size:14.5px; color:var(--ink);
}
.role-banner .mono{ color:var(--blue-600); font-weight:600; }
.fee-note{
  display:flex; gap:12px; padding:18px 20px; border-radius:12px;
  background:rgba(37,99,235,0.05); border:1px solid var(--card-line);
  margin-bottom:34px; font-size:13.5px; color:var(--muted); line-height:1.6;
}
@media (max-width: 640px){
  .form-row{ grid-template-columns:1fr; }
  .form-card{ padding:26px; }
}

/* ---------- THANK YOU PAGE ---------- */
.thankyou{ padding:200px 0 140px; text-align:center; }
.thankyou .icon-box{
  width:70px; height:70px; border-radius:50%; margin:0 auto 26px;
  background:var(--gradient-brand); display:flex; align-items:center; justify-content:center;
}
.thankyou h1{ font-size:clamp(28px,4vw,38px); margin-bottom:14px; }
.thankyou p{ color:var(--muted); font-size:16px; max-width:480px; margin:0 auto 30px; }

/* ---------- FOUNDER (real photo) ---------- */
.founder{ padding:100px 0; border-top:1px solid var(--card-line); background:var(--bg-navy); }
.founder-inner{ display:grid; grid-template-columns:220px 1fr; gap:50px; align-items:center; }
.founder-photo{
  width:200px; height:200px; border-radius:50%; object-fit:cover; flex-shrink:0;
  border:3px solid var(--card); box-shadow:var(--shadow-glow);
}
.founder-stats{ display:flex; gap:26px; margin:18px 0 22px; flex-wrap:wrap; }
.founder-stat{ display:flex; flex-direction:column; }
.founder-stat .num{ font-family:'Bricolage Grotesque',sans-serif; font-size:22px; font-weight:700; color:var(--blue-600); }
.founder-stat .lbl{ font-size:12px; color:var(--muted); letter-spacing:.02em; }
.founder h2{ font-size:clamp(24px,3vw,32px); margin-bottom:14px; }
.founder p{ color:var(--muted); font-size:15.5px; margin-bottom:14px; max-width:620px; }
.founder-quote{ font-size:14.5px; color:var(--ink); border-left:2px solid var(--blue-400); padding-left:16px; margin:18px 0 !important; font-style:italic; }
.founder-name-row{ display:flex; align-items:center; gap:14px; flex-wrap:wrap; }
.founder-name{ font-size:14.5px; font-weight:600; color:var(--ink); }
.founder-name span{ font-weight:400; color:var(--muted); }
.founder-linkedin{
  display:inline-flex; align-items:center; gap:7px; font-size:13px; color:var(--blue-600);
  font-weight:600; border:1px solid rgba(37,99,235,0.25); padding:6px 13px; border-radius:100px;
  background:rgba(37,99,235,0.05); transition:.25s;
}
.founder-linkedin:hover{ background:rgba(37,99,235,0.1); }
.founder-linkedin svg{ width:14px; height:14px; }
@media (max-width: 720px){
  .founder-inner{ grid-template-columns:1fr; text-align:center; }
  .founder-photo{ margin:0 auto; }
  .founder-stats{ justify-content:center; }
  .founder-quote{ text-align:left; }
}

/* ---------- SOCIAL LINKS (footer) ---------- */
.social-links{ display:flex; gap:10px; margin-top:16px; }
.social-links a{
  width:36px; height:36px; border-radius:10px; display:flex; align-items:center; justify-content:center;
  border:1px solid var(--card-line); background:rgba(10,19,48,0.02); transition:.25s;
}
.social-links a:hover{ border-color:var(--blue-400); background:rgba(37,99,235,0.06); }
.social-links a svg{ width:17px; height:17px; stroke:var(--muted); transition:.25s; }
.social-links a:hover svg{ stroke:var(--blue-600); }

/* ---------- COUNTRY BADGES (replacing flag marquee) ---------- */
.marquee-item{ gap:9px; }
.marquee-item .country-dot{
  width:7px; height:7px; border-radius:50%; background:var(--blue-400); flex-shrink:0;
  box-shadow:0 0 8px var(--blue-400);
}

/* ---------- TEAM MEMBER (e.g. HR Recruiter) ---------- */
.team-member{ padding:70px 0 100px; border-top:1px solid var(--card-line); }
.team-card{
  display:grid; grid-template-columns:140px 1fr; gap:32px; align-items:center;
  border:1px solid var(--card-line); border-radius:20px; padding:34px;
  background:var(--card); box-shadow:var(--shadow-card);
}
.team-photo{
  width:120px; height:120px; border-radius:50%; object-fit:cover;
  border:3px solid var(--bg-navy);
}
.team-card h4{ font-size:18px; margin-bottom:4px; }
.team-card .role{ font-size:13px; color:var(--blue-600); font-weight:600; margin-bottom:12px; font-family:'IBM Plex Mono',monospace; }
.team-card p{ color:var(--muted); font-size:14.5px; margin-bottom:14px; }
@media (max-width: 600px){
  .team-card{ grid-template-columns:1fr; text-align:center; }
  .team-photo{ margin:0 auto; }
}

/* ---------- JOB BOARD (Recruiter Network open roles) ---------- */
.jobs-board{ padding:20px 0 100px; }
.jobs-board-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:20px; }
.job-tile{
  border:1px solid var(--card-line); border-radius:16px; padding:26px;
  background:var(--card); box-shadow:var(--shadow-card); display:flex; flex-direction:column;
}
.job-tile .icon-box{ width:40px; height:40px; border-radius:10px; margin-bottom:14px; }
.job-tile .tile-category{
  font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--blue-600);
  text-transform:uppercase; letter-spacing:.06em; margin-bottom:6px;
}
.job-tile h4{ font-size:15.5px; margin-bottom:6px; line-height:1.35; min-height:42px; }
.job-tile .tile-location{ font-size:13px; color:var(--muted); margin-bottom:12px; }
.job-tile .tile-desc{ font-size:13px; color:var(--muted); line-height:1.6; margin-bottom:14px; flex-grow:1; }
.job-tile .tile-badges{ display:flex; flex-wrap:wrap; gap:6px; margin-bottom:14px; }
.job-tile .tile-badge{
  font-family:'IBM Plex Mono',monospace; font-size:11px; color:var(--muted);
  border:1px solid var(--card-line); padding:4px 9px; border-radius:6px;
}
.job-tile .tile-fee{
  color:var(--blue-600); font-weight:600; border-color:rgba(37,99,235,0.25);
  background:rgba(37,99,235,0.06);
}
.job-tile .tile-id{ font-size:10.5px; color:var(--muted-2); margin-bottom:12px; font-family:'IBM Plex Mono',monospace; }
.job-tile .btn{ font-size:13px; padding:10px 16px; justify-content:center; }
.jobs-board-toolbar{
  display:flex; justify-content:space-between; align-items:center; margin-bottom:26px; flex-wrap:wrap; gap:14px;
}
.jobs-board-toolbar h3{ font-size:20px; }
.jobs-board-count{ font-family:'IBM Plex Mono',monospace; font-size:12.5px; color:var(--muted); }
@media (max-width: 980px){ .jobs-board-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width: 640px){ .jobs-board-grid{ grid-template-columns:1fr; } }

/* ---------- INDIVIDUAL JOB DETAIL PAGE ---------- */
.job-hero{
  padding:160px 0 50px; position:relative;
  background:linear-gradient(180deg, rgba(37,99,235,0.05), transparent);
}
.job-hero-icon{
  width:64px; height:64px; border-radius:16px; margin-bottom:22px;
  background:var(--gradient-brand); display:flex; align-items:center; justify-content:center;
  box-shadow:var(--shadow-glow);
}
.job-hero-icon svg{ width:30px; height:30px; }
.job-hero h1{ font-size:clamp(28px,4vw,40px); margin-bottom:14px; max-width:780px; }
.job-hero-meta{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:6px; }
.job-hero-meta span{
  font-family:'IBM Plex Mono',monospace; font-size:12.5px; color:var(--muted);
  border:1px solid var(--card-line); padding:6px 12px; border-radius:8px; background:var(--card);
}
.job-hero-meta .fee-tag{
  color:var(--blue-600); font-weight:600; border-color:rgba(37,99,235,0.25); background:rgba(37,99,235,0.06);
}
.job-detail-body{ padding:20px 0 100px; }
.job-detail-grid{ display:grid; grid-template-columns:1fr 320px; gap:44px; align-items:start; }
.job-detail-main h2{ font-size:19px; margin:30px 0 14px; }
.job-detail-main h2:first-child{ margin-top:0; }
.job-detail-main p{ color:var(--muted); font-size:15px; line-height:1.75; margin-bottom:10px; }
.job-detail-main ul{ padding-left:20px; margin-bottom:10px; }
.job-detail-main li{ color:var(--muted); font-size:15px; line-height:1.75; margin-bottom:6px; }
.job-sidebar{
  border:1px solid var(--card-line); border-radius:18px; padding:28px;
  background:var(--card); box-shadow:var(--shadow-card); position:sticky; top:110px;
}
.job-sidebar-row{ display:flex; justify-content:space-between; padding:12px 0; border-bottom:1px solid var(--card-line); font-size:13.5px; }
.job-sidebar-row:last-of-type{ border-bottom:none; }
.job-sidebar-row .lbl{ color:var(--muted); }
.job-sidebar-row .val{ color:var(--ink); font-weight:600; text-align:right; }
.job-sidebar-row .val.fee{ color:var(--blue-600); }
.job-sidebar .btn{ width:100%; justify-content:center; margin-top:18px; }
.job-back-link{ display:inline-flex; align-items:center; gap:6px; font-size:13.5px; color:var(--muted); margin-bottom:20px; }
.job-back-link:hover{ color:var(--blue-600); }
@media (max-width: 860px){
  .job-detail-grid{ grid-template-columns:1fr; }
  .job-sidebar{ position:static; }
}
