    :root {
      --bg: #f5fcff;
      --surface: #ffffff;
      --text: #222222;
      --muted: #4f6176;
      --brand: #183a67;
      --brand-deep: #012e6a;
      --accent: #126ae3;
      --line: #c0d4ee;
      --success: #008b9d;
      --shadow-lg: 0 0 12px 8px rgba(181, 197, 221, 0.45);
      --shadow-md: 0 0 12px 4px rgba(181, 197, 221, 0.35);
      --container: 1180px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "Inter", sans-serif;
      background: linear-gradient(180deg, #ffffff 0%, #f5fcff 45%, #f2f6ff 100%);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(100% - 40px, var(--container));
      margin: 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 20px;
      border-radius: 5px;
      border: 0;
      cursor: pointer;
      font-family: "Inter", sans-serif;
      font-weight: 700;
      font-size: 0.93rem;
      transition: transform 170ms ease, box-shadow 170ms ease, background-color 170ms ease;
    }

    .btn:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--accent);
      color: #ffffff;
      box-shadow: var(--shadow-md);
    }

    .btn-secondary {
      background: transparent;
      border: 1px solid var(--brand);
      color: var(--brand);
    }

    .btn-light {
      background: #fff;
      border: 1px solid var(--line);
      color: var(--brand);
      box-shadow: var(--shadow-md);
    }

    .hero {
      position: relative;
      padding: 68px 0 78px;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(242, 246, 255, 0.96) 100%),
        url("assets/brand/hero-bg.png") center top / cover no-repeat;
    }

    .hero::after {
      content: "";
      position: absolute;
      right: -170px;
      top: -160px;
      width: 520px;
      height: 520px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(190, 209, 238, 0.8) 0%, rgba(190, 209, 238, 0) 70%);
      pointer-events: none;
    }

    .hero .container {
      position: relative;
      z-index: 1;
    }

    .top-bar {
      margin-bottom: 42px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      color: var(--brand);
    }

    .brand-logo {
      width: 176px;
      height: auto;
      object-fit: contain;
    }

    .brand-copy {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .brand-copy strong {
      color: var(--brand);
      font-size: 1rem;
      font-weight: 700;
    }

    .brand-copy span {
      color: var(--muted);
      font-size: 0.8rem;
    }

    .eyebrow {
      display: inline-flex;
      border: 1px solid var(--line);
      background: rgba(190, 209, 238, 0.45);
      color: var(--brand);
      border-radius: 5px;
      padding: 8px 14px;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-weight: 700;
      margin-bottom: 18px;
    }

    .hero h1 {
      font-family: "Inter", sans-serif;
      color: var(--brand);
      font-size: clamp(2rem, 3.7vw, 3.4rem);
      line-height: 1.1;
      margin-bottom: 14px;
      max-width: 14ch;
    }

    .hero p {
      color: var(--muted);
      max-width: 68ch;
      margin-bottom: 22px;
      font-size: 1.03rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .jobs-wrap {
      padding: 80px 0;
    }

    .jobs-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 24px;
    }

    .jobs-head h2 {
      font-family: "Inter", sans-serif;
      font-size: clamp(1.6rem, 3vw, 2.3rem);
      color: #0f2742;
      margin-bottom: 8px;
    }

    .jobs-head p {
      color: var(--muted);
      max-width: 62ch;
      font-size: 0.95rem;
    }

    .coming-soon {
      border: 1px solid #d6e2ef;
      background: linear-gradient(180deg, #ffffff 0%, #f2f6ff 100%);
      border-radius: 18px;
      padding: 34px 28px;
      box-shadow: var(--shadow-md);
    }

    .coming-soon h3 {
      font-family: "Inter", sans-serif;
      color: #112f4d;
      font-size: 1.28rem;
      margin-bottom: 10px;
    }

    .coming-soon p {
      color: #526173;
      max-width: 68ch;
      margin-bottom: 16px;
      font-size: 0.95rem;
    }

    .coming-soon .btn {
      margin-top: 4px;
    }

    .job-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 16px;
      padding: 22px;
      box-shadow: var(--shadow-md);
      transition: transform 170ms ease, box-shadow 170ms ease;
    }

    .job-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    .job-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 10px;
    }

    .job-top h3 {
      font-family: "Inter", sans-serif;
      color: #112f4d;
      font-size: 1.08rem;
    }

    .tag {
      border-radius: 999px;
      padding: 5px 10px;
      font-size: 0.75rem;
      font-weight: 700;
      background: #e8f1fb;
      color: #174472;
      white-space: nowrap;
    }

    .job-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-bottom: 12px;
    }

    .pill {
      border: 1px solid #d6e0eb;
      background: #f7fafd;
      color: #38526c;
      border-radius: 999px;
      padding: 4px 9px;
      font-size: 0.76rem;
      font-weight: 700;
    }

    .job-card p {
      color: #526173;
      font-size: 0.92rem;
      margin-bottom: 14px;
    }

    .job-card .btn {
      width: 100%;
    }

    .hiring-note {
      margin-top: 22px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, #ffffff 0%, #f2f6ff 100%);
      border-radius: 14px;
      padding: 16px;
      color: var(--muted);
      font-size: 0.92rem;
      font-weight: 600;
    }

    .cta {
      padding: 78px 0;
      background: linear-gradient(180deg, #183a67 0%, #012e6a 100%);
      color: #fff;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta::after {
      content: "";
      position: absolute;
      left: -160px;
      top: -180px;
      width: 380px;
      height: 380px;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(190, 209, 238, 0.28) 0%, rgba(190, 209, 238, 0) 70%);
    }

    .cta .container {
      position: relative;
      z-index: 1;
    }

    .cta h2 {
      font-family: "Inter", sans-serif;
      font-size: clamp(1.7rem, 2.8vw, 2.4rem);
      margin-bottom: 10px;
    }

    .cta p {
      color: #d8e6f4;
      max-width: 60ch;
      margin: 0 auto 20px;
    }

    .cta-actions {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 10px;
    }

    footer {
      padding: 28px 0 32px;
      background: #081d32;
      color: #c8d6e6;
      text-align: center;
      border-top: 1px solid rgba(255, 255, 255, 0.16);
      font-size: 0.86rem;
    }

    .modal {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(4, 18, 33, 0.68);
      z-index: 1200;
      padding: 24px;
      align-items: center;
      justify-content: center;
    }

    .modal.active {
      display: flex;
    }

    .modal-content {
      width: min(640px, 100%);
      max-height: min(90vh, 760px);
      overflow-y: auto;
      background: #fff;
      border-radius: 20px;
      padding: 30px;
      position: relative;
      box-shadow: var(--shadow-lg);
    }

    .modal-close {
      position: absolute;
      top: 10px;
      right: 14px;
      border: 0;
      background: transparent;
      color: #64748b;
      cursor: pointer;
      font-size: 1.9rem;
      line-height: 1;
    }

    .modal h2 {
      font-family: "Inter", sans-serif;
      color: #0f2742;
      margin-bottom: 6px;
    }

    .modal .subtitle {
      color: #5c6d80;
      margin-bottom: 16px;
      font-size: 0.92rem;
    }

    .form-row {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
    }

    .form-group {
      margin-bottom: 14px;
    }

    .form-group label {
      display: block;
      font-size: 0.86rem;
      color: #334155;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .form-group input,
    .form-group select {
      width: 100%;
      border: 1px solid #ced8e3;
      border-radius: 10px;
      padding: 11px 12px;
      font-family: "Inter", sans-serif;
      font-size: 0.93rem;
    }

    .form-group input:focus,
    .form-group select:focus {
      outline: 3px solid rgba(13, 59, 102, 0.2);
      border-color: #5b7ea3;
    }

    .submit-btn {
      width: 100%;
      border-radius: 5px;
      border: 0;
      background: var(--accent);
      color: #fff;
      font-family: "Inter", sans-serif;
      font-weight: 700;
      padding: 13px 18px;
      cursor: pointer;
      margin-top: 4px;
    }

    .submit-btn:disabled {
      opacity: 0.72;
      cursor: not-allowed;
    }

    @media (max-width: 980px) {
      .jobs-head {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 700px) {
      .hero {
        padding: 60px 0 60px;
      }

      .brand {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
      }

      .brand-logo {
        width: 150px;
      }

      .hero-actions,
      .cta-actions {
        flex-direction: column;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .modal {
        padding: 12px;
      }

      .modal-content {
        padding: 22px 18px;
      }
    }
