
  @font-face{
    font-family: 'Neo Sans Pro';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('../fonts/NeoSansPro-Light-v2.ttf') format('truetype');
  }
  @font-face{
    font-family: 'Neo Sans Pro';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('../fonts/NeoSansPro-Regular.ttf') format('truetype');
  }
  @font-face{
    font-family: 'Neo Sans Pro';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/NeoSansPro-Medium.ttf') format('truetype');
  }

  :root{
    --ink: #101010;
    --ink-soft: #55534C;
    --yellow: #FFC700;
    --yellow-deep: #D9A900;
    --bg: #FFFFFF;
    --surface: #F7F7F4;
    --line: #E7E5DE;
    --focus: #0B2545;
    --sky: #21B6D7;
    --sky-deep: #1996B3;
    --navy: #0B2545;
    --navy-deep: #071A33;
    --pill-radius: 999px;
  }

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

  body{
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Neo Sans Pro', system-ui, -apple-system, sans-serif;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }

  a{ color: inherit; }
  img{ max-width: 100%; display: block; }

  :focus-visible{
    outline: 3px solid var(--focus);
    outline-offset: 3px;
  }

  .wrap{
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
  }

    header{
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(255,255,255,0.92);
    backdrop-filter: saturate(180%) blur(8px);
    border-bottom: 1px solid var(--line);
  }
  .header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 24px;
  }
  .logo-mark img{ height: 34px; width: auto; }
  .logo-mark{ display: flex; align-items: center; }

  nav{ display: flex; gap: 8px; align-items: center; }
  nav a{
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--ink);
    padding: 10px 16px;
    border-radius: var(--pill-radius);
    transition: color .15s ease, background-color .15s ease;
    position: relative;
  }
  nav a:hover, nav a.active{ background: var(--navy); color: #fff; }
  nav a.nav-cta{
    background: var(--navy);
    color: #fff;
    margin-left: 12px;
    padding: 10px 20px;
  }
  nav a.nav-cta:hover{ background: var(--navy-deep); }

  .nav-toggle{ display: none; }

  @media (max-width: 720px){
    nav{
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--bg);
      border-bottom: 1px solid var(--line);
      flex-direction: column;
      align-items: stretch;
      gap: 0;
      display: none;
    }
    nav.open{ display: flex; }
    nav a{ padding: 14px 24px; border-bottom: 1px solid var(--line); border-radius: 0; }
    nav a.nav-cta{ margin-left: 0; text-align: center; }
    .nav-toggle{
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 40px; height: 40px;
      background: none;
      border: 1px solid var(--line);
      border-radius: 6px;
      cursor: pointer;
    }
  }

    .hero{ position: relative; overflow: hidden; min-height: 640px; display: flex; align-items: center; }
  .hero-video{
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  .hero-scrim{
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(100deg, rgba(16,16,16,0.86) 0%, rgba(16,16,16,0.72) 42%, rgba(16,16,16,0.35) 78%, rgba(16,16,16,0.15) 100%);
  }
  .hero-inner{
    position: relative; z-index: 2;
    padding: 88px 24px 96px;
    width: 100%;
  }
  .hero-inner .content{ max-width: 640px; }
  @media (max-width: 860px){
    .hero-inner{ padding: 56px 24px 64px; }
    .hero{ min-height: 560px; }
  }
  .eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Neo Sans Pro', sans-serif;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #D8D5C9;
    margin: 0 0 22px;
  }
  .eyebrow .dot{
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--yellow);
    flex-shrink: 0;
  }
  .hero h1{
    font-family: 'Neo Sans Pro', sans-serif;
    font-weight: 500;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.04;
    margin: 0 0 22px;
    color: #FFFFFF;
    letter-spacing: -0.01em;
  }
  .hero h1 .mark{ color: var(--yellow); }
  .hero p.lead{
    font-size: 17px;
    color: #E4E1D6;
    max-width: 52ch;
    margin: 0 0 32px;
    text-align: justify;
  }
  .hero-actions{ display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
  .btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--pill-radius);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid var(--yellow);
  }
  .btn-primary{ background: var(--yellow); color: var(--navy); border-color: var(--yellow); }
  .btn-primary:hover{ background: var(--yellow-deep); border-color: var(--yellow-deep); }
  .btn-ghost{ background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
  .btn-ghost:hover{ background: rgba(255,255,255,0.1); border-color: #fff; }
  .btn-outline{ background: #fff; color: var(--navy); border-color: var(--navy); }
  .btn-outline:hover{ background: var(--surface); }

  .badge-launch{
    margin-top: 36px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12.5px;
    color: #D8D5C9;
    border: 1px dashed rgba(255,255,255,0.35);
    border-radius: 999px;
    padding: 8px 16px;
  }
  .badge-launch .pulse{
    width: 7px; height: 7px; border-radius: 50%;
    background: var(--yellow);
    animation: pulse 2.2s ease-in-out infinite;
  }
  @keyframes pulse{
    0%,100%{ opacity: 1; }
    50%{ opacity: 0.3; }
  }

    .mark-wrap{ display: flex; justify-content: center; }
  .mark-seal{ width: min(260px, 65vw); height: auto; }
  .mark-seal .ring{
    fill: none;
    stroke: #E7E5DE;
    stroke-width: 1.4;
  }
  .mark-seal .tick{
    fill: none;
    stroke: var(--ink);
    stroke-width: 1;
    stroke-dasharray: 3 7;
    transform-origin: center;
    animation: spin 50s linear infinite;
  }
  .mark-seal .dotbig{ fill: var(--yellow); }
  .mark-seal .check{
    stroke: var(--ink);
    stroke-width: 5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation: draw 1.2s ease forwards 0.3s;
  }
  @keyframes spin{ to{ transform: rotate(360deg); } }
  @keyframes draw{ to{ stroke-dashoffset: 0; } }
  .mark-seal text{
    fill: var(--ink-soft);
    font-family: 'JetBrains Mono', monospace;
    font-size: 6.5px;
    letter-spacing: 2px;
  }

    section{ padding: 84px 24px; }
  .section-head{ max-width: 640px; margin: 0 0 48px; }
  .section-head h2{
    font-family: 'Neo Sans Pro', sans-serif;
    font-weight: 500;
    font-size: clamp(26px, 3.2vw, 36px);
    margin: 0 0 14px;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .section-head p{ color: var(--ink-soft); margin: 0; font-size: 15.5px; text-align: justify; }

    .about{ background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .about-grid{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: start;
  }
  @media (max-width: 780px){ .about-grid{ grid-template-columns: 1fr; } }
  .about p{ color: var(--ink-soft); font-size: 15.5px; margin: 0 0 16px; text-align: justify; }
  .stat-list{ display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat{ border-left: 3px solid var(--yellow); padding-left: 16px; }
  .stat .num{
    font-family: 'Neo Sans Pro', sans-serif;
    font-weight: 500;
    font-size: 30px;
    color: var(--ink);
    display: block;
  }
  .stat .label{ font-size: 13px; color: var(--ink-soft); }

    .services{ background: var(--surface); }
  .section-head-center{ margin-left: auto; margin-right: auto; text-align: center; }
  .section-head-center .eyebrow{ justify-content: center; }
  .section-head-center p{ text-align: center; margin-left: auto; margin-right: auto; }

  .cards{ display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
  @media (max-width: 860px){ .cards{ grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px){ .cards{ grid-template-columns: 1fr; } }
  .card{
    background: transparent;
    border: none;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .card .icon-dot{
    width: 188px; height: 188px;
    margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center;
  }
  .card .icon-dot img{ width: 188px; height: 188px; border-radius: 50%; display: block; }
  .card .icon-dot-dark{ border-radius: 50%; box-shadow: 0 0 0 1px var(--line); }
  .card .icon-dot-dark img{ width: 188px; height: 188px; }
  .card h3{
    font-family: 'Neo Sans Pro', sans-serif;
    font-size: 18px;
    font-weight: 500;
    margin: 0 0 10px;
    color: var(--navy);
  }
  .card p{ font-size: 14px; color: var(--ink-soft); margin: 0; text-align: center; }

  
    .careers{ background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .careers-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }
  .careers h2{
    font-family: 'Neo Sans Pro', sans-serif;
    font-weight: 500;
    font-size: clamp(24px, 3vw, 32px);
    color: var(--ink);
    margin: 0 0 10px;
  }
  .careers .eyebrow{ color: var(--ink-soft); }
  .careers .section-head-text{ color: var(--ink-soft); margin: 0; max-width: 60ch; }
  .careers-btn{ flex-shrink: 0; white-space: nowrap; background: var(--sky); color: #fff; border-color: var(--sky); border-radius: var(--pill-radius); }
  .careers-btn:hover{ background: var(--sky-deep); border-color: var(--sky-deep); }
  .section-head-text{ color: var(--ink-soft); font-size: 15px; max-width: 640px; margin: 10px 0 32px; text-align: justify; }

  .policies{ background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .register{ border-top: 1px solid var(--line); }
  .reg-item{
    display: grid;
    grid-template-columns: 56px 1fr auto;
    align-items: center;
    gap: 20px;
    padding: 22px 4px;
    border-bottom: 1px solid var(--line);
  }
  @media (max-width: 600px){
    .reg-item{ grid-template-columns: 40px 1fr; }
    .reg-item .reg-action{ grid-column: 1 / -1; justify-self: start; margin-top: 4px; }
  }
  .reg-num{ font-family: 'Neo Sans Pro', sans-serif; color: #A7A498; font-size: 14px; }
  .reg-title{ font-weight: 500; color: var(--ink); font-size: 15.5px; }
  .reg-desc{ font-size: 13px; color: var(--ink-soft); margin-top: 2px; }
  .reg-action{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--navy);
    text-decoration: none;
    white-space: nowrap;
    border: 2px solid var(--navy);
    border-radius: var(--pill-radius);
    padding: 8px 16px;
    background: var(--bg);
  }
  .reg-action:hover{ background: var(--navy); color: #fff; }
  .reg-action svg{ width: 14px; height: 14px; }

  .policy-note{ margin-top: 20px; font-size: 13px; color: var(--ink-soft); font-style: italic; }

    .contact{ background: var(--ink); color: #F2F1EC; }
  .contact .section-head h2{ color: #fff; }
  .contact .section-head p{ color: #C6C4BA; }
  .contact-grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  @media (max-width: 780px){ .contact-grid{ grid-template-columns: 1fr; } }
  .contact-card{ background: rgba(255,255,255,0.06); border: none; border-radius: 4px; padding: 22px; }
  .contact-card h3{
    font-family: 'Neo Sans Pro', sans-serif;
    font-size: 16px;
    margin: 0 0 8px;
    color: var(--yellow);
  }
  .contact-card p{ font-size: 14px; color: #C6C4BA; margin: 0; text-align: justify; }

    .site-footer{ background: #000; }

  .footer-links-bar{
    border-bottom: 1px solid #262420;
    padding: 28px 24px;
  }
  .footer-links-inner{
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
  }
  .footer-links-inner a{
    color: #B9B6AA;
    font-size: 13.5px;
    text-decoration: none;
  }
  .footer-links-inner a:hover{ color: var(--yellow); }

  .footer-brand-bar{ padding: 28px 24px 36px; }
  .footer-brand-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer-badge{ display: flex; align-items: center; }
  .footer-badge img{ height: 44px; width: auto; display: block; }
  .footer-tagline{ text-align: right; }
  .footer-tagline p{
    margin: 0;
    font-family: 'Neo Sans Pro', sans-serif;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.01em;
  }
  .footer-tagline .q-yellow{ color: var(--yellow); }
  .footer-tagline .q-white{ color: #fff; }
  .footer-copyright{
    margin-top: 4px !important;
    font-family: 'Neo Sans Pro', sans-serif !important;
    font-weight: 400 !important;
    font-size: 12.5px !important;
    color: #8C8A80 !important;
  }
  @media (max-width: 560px){
    .footer-brand-inner{ flex-direction: column; align-items: flex-start; }
    .footer-tagline{ text-align: left; }
  }

    .modal-overlay{
    position: fixed; inset: 0; z-index: 100;
    background: rgba(16,16,16,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
  }
  .modal-overlay.open{ display: flex; }
  .modal-dialog{
    background: var(--bg);
    width: 100%;
    max-width: 480px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 4px;
    padding: 32px;
    position: relative;
  }
  .modal-dialog-wide{ max-width: 720px; }
  .modal-dialog-wide .eyebrow{ margin-top: 4px; }
  .modal-dialog-wide h2{
    font-family: 'Neo Sans Pro', sans-serif;
    font-weight: 500;
    font-size: 26px;
    margin: 0 0 16px;
    padding-right: 24px;
  }
  .modal-close{
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    border: 1px solid var(--line);
    background: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .modal-close:hover{ background: var(--surface); }
  .modal-dialog h3{
    font-family: 'Neo Sans Pro', sans-serif;
    font-weight: 500;
    font-size: 24px;
    margin: 0 0 6px;
    padding-right: 32px;
  }
  .modal-dialog p.modal-sub{
    color: var(--ink-soft);
    font-size: 14px;
    margin: 0 0 24px;
  }
  .form-field{ margin-bottom: 16px; }
  .form-field label{
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
  }
  .form-field input,
  .form-field textarea{
    width: 100%;
    font-family: inherit;
    font-size: 14px;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 2px;
    background: var(--bg);
    color: var(--ink);
  }
  .form-field input:focus,
  .form-field textarea:focus{
    outline: none;
    border-color: var(--ink);
  }
  .form-field textarea{ resize: vertical; min-height: 100px; }
  .form-honeypot{ position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

  .consent-label{
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12.5px;
    color: var(--ink-soft);
    cursor: pointer;
    line-height: 1.4;
  }
  .consent-label input{
    width: 16px; height: 16px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--ink);
  }
  .consent-label a{ color: var(--ink); text-decoration: underline; }

    .cookie-banner{
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 90;
    background: var(--ink);
    color: #EDEBE2;
    padding: 18px 24px;
    display: none;
  }
  .cookie-banner.show{ display: block; }
  .cookie-banner-inner{
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  .cookie-banner p{
    margin: 0;
    font-size: 13.5px;
    color: #CFCDC3;
    max-width: 70ch;
  }
  .cookie-banner a{ color: var(--yellow); text-decoration: underline; }
  .cookie-banner-actions{ display: flex; gap: 10px; flex-shrink: 0; }
  .cookie-btn{
    font-size: 13px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 2px;
    cursor: pointer;
    border: 2px solid var(--yellow);
    white-space: nowrap;
  }
  .cookie-btn-accept{ background: var(--yellow); color: var(--ink); }
  .cookie-btn-decline{ background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
  .form-submit{
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
  .form-submit:disabled{ opacity: 0.6; cursor: not-allowed; }
  .form-status{
    margin-top: 14px;
    font-size: 13.5px;
    padding: 10px 12px;
    border-radius: 2px;
    display: none;
  }
  .form-status.show{ display: block; }
  .form-status.ok{ background: #EAF7EE; color: #1E6B34; }
  .form-status.err{ background: #FCEBEA; color: #A32A22; }
