    :root {
      --red: #b7153f;
      --red-dark: #8f0e31;
      --red-soft: #fff0f4;
      --navy: #111827;
      --navy-2: #182235;
      --navy-3: #202b3f;
      --text: #111827;
      --muted: #667085;
      --soft: #f5f6f8;
      --line: #e5e7eb;
      --white: #ffffff;
      --success: #087443;
      --danger: #b42318;
      --link-blue: #0b63ce;
      --shadow: 0 26px 70px rgba(17, 24, 39, .12);
      --small-shadow: 0 14px 42px rgba(17, 24, 39, .06);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background: var(--white);
      color: var(--text);
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    button {
      border-radius: 0;
    }

    .container {
      width: min(1180px, calc(100% - 40px));
      margin: 0 auto;
    }

    .topbar {
      background: var(--navy);
      color: rgba(255, 255, 255, .72);
      font-size: 13px;
    }

    .topbar-inner {
      min-height: 38px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .navbar {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 255, 255, .94);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid var(--line);
    }

    .nav-inner {
      min-height: 82px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      min-width: 158px;
    }

    .brand img {
      display: block;
      width: 154px;
      max-height: 48px;
      object-fit: contain;
      object-position: left center;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 30px;
      font-size: 14px;
      font-weight: 800;
      color: #344054;
    }

    .nav-links a {
      position: relative;
      padding: 8px 0;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--red);
      transition: .22s ease;
    }

    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }

    .nav-actions {
      display: inline-flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 46px;
      padding: 0 20px;
      border: 1px solid transparent;
      background: transparent;
      color: inherit;
      cursor: pointer;
      font-size: 14px;
      font-weight: 900;
      line-height: 1;
      transition: .2s ease;
      white-space: nowrap;
    }

    .btn:disabled {
      opacity: .55;
      cursor: not-allowed;
    }

    .btn-red {
      background: var(--red);
      color: var(--white);
    }

    .btn-red:hover {
      background: var(--red-dark);
      transform: translateY(-1px);
    }

    .btn-dark {
      background: var(--navy);
      color: var(--white);
    }

    .btn-dark:hover {
      background: #000;
      transform: translateY(-1px);
    }

    .btn-outline {
      color: var(--navy);
      border-color: var(--navy);
    }

    .btn-outline:hover {
      background: var(--navy);
      color: var(--white);
    }

    .btn-quiet {
      min-height: 38px;
      padding: 0 12px;
      border-color: var(--line);
      color: #344054;
      font-size: 13px;
    }

    .btn-danger {
      background: #fff;
      border-color: #fecdca;
      color: var(--danger);
    }

    .btn-danger:hover {
      background: #fff3f1;
    }

    .hero {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(17, 24, 39, .97), rgba(24, 34, 53, .98)),
        var(--navy);
      color: var(--white);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(120deg, transparent 0 45%, rgba(183, 21, 63, .78) 45% 58%, transparent 58%),
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .08), transparent 28%);
      opacity: .9;
    }

    .hero::after {
      content: "";
      position: absolute;
      right: -110px;
      top: -80px;
      width: 420px;
      height: 420px;
      background: rgba(183, 21, 63, .22);
      transform: rotate(45deg);
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      min-height: 640px;
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 60px;
      align-items: center;
      padding: 80px 0;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 26px;
      color: rgba(255, 255, 255, .78);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .eyebrow span {
      width: 38px;
      height: 2px;
      background: var(--red);
      display: inline-block;
    }

    .hero h1 {
      max-width: 780px;
      margin: 0;
      font-size: clamp(43px, 6.3vw, 84px);
      font-weight: 900;
      letter-spacing: -.075em;
      line-height: .96;
    }

    .hero h1 strong {
      background: linear-gradient(transparent 58%, rgba(183, 21, 63, .9) 58%);
      color: var(--white);
      font-weight: inherit;
    }

    .hero-lead {
      max-width: 620px;
      margin: 28px 0 0;
      color: rgba(255, 255, 255, .74);
      font-size: 18px;
      line-height: 1.7;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    .hero-tags {
      display: grid;
      gap: 14px;
    }

    .hero-tag {
      min-height: 96px;
      padding: 24px;
      border-left: 5px solid var(--red);
      background: rgba(255, 255, 255, .08);
      backdrop-filter: blur(12px);
    }

    .hero-tag span {
      display: block;
      margin-bottom: 8px;
      color: rgba(255, 255, 255, .58);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .hero-tag strong {
      display: block;
      font-size: 27px;
      font-weight: 900;
      letter-spacing: -.045em;
      line-height: 1.15;
    }

    .section {
      padding: 76px 0;
    }

    .section.gray {
      background: var(--soft);
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 34px;
    }

    .section-kicker {
      margin: 0 0 12px;
      color: var(--red);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .section-title {
      margin: 0;
      font-size: clamp(32px, 4.5vw, 56px);
      font-weight: 900;
      letter-spacing: -.06em;
      line-height: 1.02;
    }

    .section-desc {
      max-width: 540px;
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.7;
    }

    .tech-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      border: 1px solid var(--line);
      background: var(--white);
    }

    .tech-card {
      min-height: 128px;
      display: grid;
      place-items: center;
      border-right: 1px solid var(--line);
      color: var(--navy);
      font-size: 19px;
      font-weight: 900;
      letter-spacing: -.04em;
      transition: .2s ease;
    }

    .tech-card:last-child {
      border-right: 0;
    }

    .tech-card:hover {
      background: var(--red);
      color: var(--white);
    }

    .jobs-layout {
      display: grid;
      grid-template-columns: 300px 1fr;
      gap: 34px;
      align-items: start;
    }

    .filters,
    .application-form {
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 18px 50px rgba(17, 24, 39, .07);
    }

    .filters {
      position: sticky;
      top: 108px;
    }

    .filters-header,
    .panel-header {
      padding: 22px 24px;
      background: var(--navy);
      color: var(--white);
    }

    .filters-header h3,
    .panel-header h3 {
      margin: 0;
      font-size: 20px;
      font-weight: 900;
      letter-spacing: -.04em;
    }

    .filters-body,
    .panel-body {
      padding: 24px;
    }

    .field {
      margin-bottom: 20px;
    }

    .field label {
      display: block;
      margin-bottom: 8px;
      color: var(--navy);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .field small {
      display: block;
      margin-top: 7px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.45;
    }

    .input,
    .select,
    .textarea {
      width: 100%;
      border: 1px solid var(--line);
      border-bottom: 3px solid var(--navy);
      background: var(--white);
      color: var(--text);
      font-weight: 700;
      outline: none;
      transition: .2s ease;
    }

    .input,
    .select {
      height: 48px;
      padding: 0 13px;
    }

    .textarea {
      min-height: 116px;
      padding: 13px;
      line-height: 1.55;
      resize: vertical;
    }

    .input:focus,
    .select:focus,
    .textarea:focus {
      border-bottom-color: var(--red);
    }

    .choice-list {
      display: grid;
      gap: 10px;
    }

    .choice-item {
      display: flex !important;
      gap: 10px;
      align-items: flex-start;
      margin: 0 !important;
      padding: 12px;
      border: 1px solid var(--line);
      background: var(--white);
      color: var(--text) !important;
      font-size: 14px !important;
      font-weight: 700 !important;
      letter-spacing: 0 !important;
      line-height: 1.45;
      text-transform: none !important;
    }

    .choice-item input {
      margin-top: 2px;
      accent-color: var(--red);
    }

    .choice-item span {
      color: var(--text);
    }

    .career-consent-action-link,
    .career-consent-action-button {
      color: var(--link-blue);
      font-weight: 900;
      text-decoration: underline;
      text-decoration-thickness: 1px;
      text-underline-offset: 3px;
    }

    .career-consent-action-link:hover,
    .career-consent-action-button:hover {
      color: #084fa7;
    }

    .career-consent-action-button {
      display: inline;
      padding: 0;
      border: 0;
      background: transparent;
      cursor: pointer;
      line-height: inherit;
      text-align: left;
    }

    .consent-modal-open {
      overflow: hidden;
    }

    .career-consent-modal[hidden] {
      display: none;
    }

    .career-consent-modal {
      position: fixed;
      inset: 0;
      z-index: 140;
      display: grid;
      place-items: center;
      padding: 20px;
    }

    .career-consent-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(17, 24, 39, .62);
    }

    .career-consent-modal__panel {
      position: relative;
      width: min(680px, 100%);
      max-height: min(720px, calc(100vh - 40px));
      overflow: auto;
      border: 1px solid var(--line);
      background: var(--white);
      box-shadow: var(--shadow);
      padding: 30px;
    }

    .career-consent-modal__panel h3 {
      margin: 0 42px 18px 0;
      color: var(--navy);
      font-size: 24px;
      font-weight: 900;
      letter-spacing: -.035em;
      line-height: 1.2;
    }

    .career-consent-modal__body {
      display: grid;
      gap: 14px;
      color: #344054;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.65;
    }

    .career-consent-modal__body p {
      margin: 0;
    }

    .career-consent-modal__close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 36px;
      height: 36px;
      border: 1px solid var(--line);
      background: var(--white);
      color: var(--navy);
      cursor: pointer;
      font-size: 24px;
      font-weight: 700;
      line-height: 1;
    }

    .career-consent-modal__close:hover {
      border-color: var(--navy);
    }

    .hint-box {
      margin-top: 22px;
      padding: 16px;
      background: var(--red-soft);
      color: var(--red-dark);
      font-size: 13px;
      font-weight: 800;
      line-height: 1.55;
    }

    .jobs-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 18px;
    }

    .jobs-count {
      color: var(--muted);
      font-weight: 800;
    }

    .jobs-count strong {
      color: var(--navy);
    }

    .jobs-list {
      display: grid;
      gap: 16px;
    }

    .job-card {
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: var(--small-shadow);
      transition: .2s ease;
    }

    .job-card:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }

    .job-main {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 300px 48px;
      gap: 24px;
      align-items: center;
      padding: 28px;
      cursor: pointer;
    }

    .job-title {
      margin: 0;
      font-size: 25px;
      font-weight: 900;
      letter-spacing: -.045em;
      line-height: 1.18;
    }

    .job-location {
      margin-top: 11px;
      color: var(--muted);
      font-size: 14px;
      font-weight: 800;
    }

    .job-location strong {
      color: var(--red);
    }

    .job-salary {
      text-align: right;
    }

    .job-salary span {
      display: block;
      margin-bottom: 5px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .job-salary strong {
      display: block;
      color: var(--navy);
      font-size: 18px;
      font-weight: 900;
      letter-spacing: -.035em;
      line-height: 1.3;
    }

    .job-arrow {
      display: flex;
      justify-content: flex-end;
    }

    .arrow-box {
      width: 48px;
      height: 48px;
      display: grid;
      place-items: center;
      background: var(--navy);
      color: var(--white);
      font-size: 24px;
      font-weight: 900;
      transition: .2s ease;
    }

    .job-card:hover .arrow-box,
    .job-card.open .arrow-box {
      background: var(--red);
    }

    .job-card.open .arrow-box {
      transform: rotate(45deg);
    }

    .badges {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 16px;
    }

    .badge {
      min-height: 28px;
      display: inline-flex;
      align-items: center;
      padding: 0 9px;
      background: #f3f4f6;
      color: #344054;
      font-size: 12px;
      font-weight: 900;
    }

    .badge.red {
      background: var(--red-soft);
      color: var(--red-dark);
    }

    .job-details {
      display: none;
      padding: 28px;
      border-top: 1px solid var(--line);
      background: #fafafa;
    }

    .job-card.open .job-details {
      display: block;
    }

    .details-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 22px;
    }

    .details-box {
      background: var(--white);
      border: 1px solid var(--line);
      padding: 22px;
    }

    .details-box h4 {
      margin: 0 0 14px;
      color: var(--navy);
      font-size: 15px;
      font-weight: 900;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .details-box ul,
    .rich-list {
      margin: 0;
      padding-left: 18px;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.8;
    }

    .job-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 22px;
    }

    .empty {
      display: none;
      padding: 42px;
      background: var(--white);
      border: 1px dashed #cbd5e1;
      text-align: center;
    }

    .empty.show {
      display: block;
    }

    .empty h3 {
      margin: 0;
      font-size: 24px;
      font-weight: 900;
      letter-spacing: -.04em;
    }

    .empty p {
      max-width: 480px;
      margin: 10px auto 0;
      color: var(--muted);
      line-height: 1.6;
    }

    .faq {
      max-width: 920px;
      display: grid;
      gap: 10px;
      margin: 0 auto;
    }

    .faq-item {
      background: var(--white);
      border: 1px solid var(--line);
    }

    .faq-question {
      width: 100%;
      min-height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 0 24px;
      border: 0;
      background: transparent;
      color: var(--navy);
      cursor: pointer;
      font-size: 16px;
      font-weight: 900;
      text-align: left;
    }

    .faq-plus {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      background: var(--navy);
      color: var(--white);
      transition: .2s ease;
    }

    .faq-answer {
      display: none;
      padding: 0 24px 24px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.75;
    }

    .faq-item.open .faq-answer {
      display: block;
    }

    .faq-item.open .faq-plus {
      background: var(--red);
      transform: rotate(45deg);
    }

    .cta {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(17, 24, 39, .96), rgba(17, 24, 39, .88)),
        var(--navy);
      color: var(--white);
    }

    .cta::before {
      content: "";
      position: absolute;
      top: -90px;
      right: 12%;
      width: 360px;
      height: 360px;
      background: rgba(183, 21, 63, .85);
      transform: rotate(45deg);
    }

    .cta-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 40px;
      align-items: center;
      padding: 80px 0;
    }

    .cta h2 {
      max-width: 780px;
      margin: 0;
      font-size: clamp(34px, 4.8vw, 62px);
      font-weight: 900;
      letter-spacing: -.065em;
      line-height: 1.02;
    }

    .cta p {
      max-width: 620px;
      margin: 18px 0 0;
      color: rgba(255, 255, 255, .72);
      line-height: 1.7;
    }

    .footer {
      padding: 34px 0;
      background: #0c111d;
      color: rgba(255, 255, 255, .64);
      font-size: 13px;
    }

    .footer-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 20px;
    }

    .page-hero {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(135deg, rgba(17, 24, 39, .98), rgba(24, 34, 53, .95)),
        var(--navy);
      color: var(--white);
    }

    .page-hero::after {
      content: "";
      position: absolute;
      right: -80px;
      bottom: -140px;
      width: 420px;
      height: 420px;
      background: rgba(183, 21, 63, .58);
      transform: rotate(45deg);
    }

    .page-hero-inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 52px;
      align-items: end;
      padding: 82px 0 72px;
    }

    .breadcrumb {
      display: inline-flex;
      gap: 8px;
      margin-bottom: 24px;
      color: rgba(255, 255, 255, .72);
      font-size: 13px;
      font-weight: 800;
    }

    .breadcrumb a {
      color: var(--white);
    }

    .page-title {
      max-width: 820px;
      margin: 0;
      font-size: clamp(38px, 5.3vw, 74px);
      font-weight: 900;
      letter-spacing: -.075em;
      line-height: .98;
    }

    .page-lead {
      max-width: 710px;
      margin: 24px 0 0;
      color: rgba(255, 255, 255, .74);
      font-size: 17px;
      line-height: 1.72;
    }

    .summary-panel {
      border-left: 5px solid var(--red);
      background: rgba(255, 255, 255, .08);
      backdrop-filter: blur(12px);
      padding: 24px;
    }

    .summary-panel dl {
      display: grid;
      gap: 16px;
      margin: 0;
    }

    .summary-panel dt {
      color: rgba(255, 255, 255, .58);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .summary-panel dd {
      margin: 5px 0 0;
      color: var(--white);
      font-size: 17px;
      font-weight: 900;
      line-height: 1.35;
    }

    .job-page-grid {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 34px;
      align-items: start;
    }

    .content-flow {
      display: grid;
      gap: 22px;
    }

    .content-panel {
      background: var(--white);
      border: 1px solid var(--line);
      padding: 30px;
      box-shadow: var(--small-shadow);
    }

    .content-panel h2,
    .content-panel h3 {
      margin: 0 0 18px;
      color: var(--navy);
      font-size: 28px;
      font-weight: 900;
      letter-spacing: -.045em;
      line-height: 1.15;
    }

    .content-panel p {
      margin: 0;
      color: var(--muted);
      line-height: 1.75;
    }

    .apply-rail {
      position: sticky;
      top: 108px;
      display: grid;
      gap: 12px;
      padding: 24px;
      background: var(--navy);
      color: var(--white);
    }

    .apply-rail strong {
      display: block;
      font-size: 24px;
      font-weight: 900;
      letter-spacing: -.045em;
      line-height: 1.18;
    }

    .apply-rail p {
      margin: 0 0 8px;
      color: rgba(255, 255, 255, .7);
      line-height: 1.65;
    }

    .apply-strip {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 28px;
      background: var(--red-soft);
      border-left: 5px solid var(--red);
    }

    .apply-strip h3 {
      margin: 0 0 8px;
      color: var(--navy);
      font-size: 24px;
      font-weight: 900;
      letter-spacing: -.04em;
    }

    .apply-strip p {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }

    .application-form {
      scroll-margin-top: 120px;
    }

    .application-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .span-2 {
      grid-column: 1 / -1;
    }

    .dropzone {
      min-height: 220px;
      display: grid;
      place-items: center;
      padding: 32px;
      border: 2px dashed #cbd5e1;
      background:
        linear-gradient(135deg, rgba(255, 240, 244, .8), rgba(255, 255, 255, .9)),
        var(--white);
      text-align: center;
      transition: .2s ease;
    }

    .dropzone.dragover {
      border-color: var(--red);
      background: var(--red-soft);
    }

    .dropzone-icon {
      width: 64px;
      height: 64px;
      display: grid;
      place-items: center;
      margin: 0 auto 16px;
      background: var(--navy);
      color: var(--white);
      font-size: 30px;
      font-weight: 900;
    }

    .dropzone h3 {
      margin: 0;
      color: var(--navy);
      font-size: 24px;
      font-weight: 900;
      letter-spacing: -.04em;
    }

    .dropzone p {
      max-width: 420px;
      margin: 10px auto 18px;
      color: var(--muted);
      line-height: 1.6;
    }

    .file-name {
      margin-top: 14px;
      color: var(--success);
      font-size: 13px;
      font-weight: 900;
    }

    .notice {
      display: none;
      margin-top: 18px;
      padding: 16px;
      border-left: 4px solid var(--success);
      background: #ecfdf3;
      color: #05603a;
      font-size: 14px;
      font-weight: 800;
      line-height: 1.55;
    }

    .notice.show {
      display: block;
    }

    .main-page {
      background: var(--white);
      color: #2b2f38;
    }

    .main-header {
      position: sticky;
      top: 0;
      z-index: 60;
      background: rgba(255, 255, 255, .96);
      border-bottom: 1px solid rgba(17, 24, 39, .14);
      box-shadow: 0 4px 16px rgba(17, 24, 39, .08);
    }

    .main-header-inner {
      width: min(1140px, calc(100% - 40px));
      min-height: 86px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 34px;
      margin: 0 auto;
    }

    .main-logo {
      display: inline-flex;
      align-items: center;
      width: 172px;
    }

    .main-logo img {
      display: block;
      width: 172px;
      max-height: 38px;
      object-fit: contain;
      object-position: left center;
    }

    .main-nav {
      display: flex;
      align-items: center;
      gap: 34px;
      color: #202633;
      font-size: 15px;
      font-weight: 900;
      letter-spacing: -.01em;
      text-transform: uppercase;
    }

    .main-nav a {
      position: relative;
      padding: 10px 0;
    }

    .main-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 2px;
      width: 0;
      height: 2px;
      background: var(--red);
      transition: .2s ease;
    }

    .main-nav a:hover::after {
      width: 100%;
    }

    .main-hero {
      min-height: 640px;
      display: grid;
      align-items: center;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(17, 24, 39, .38), rgba(17, 24, 39, .08) 50%, rgba(17, 24, 39, .2)),
        url("/public/assets/images/main-hero.jpg") center / cover no-repeat;
      color: var(--white);
    }

    .main-hero-content {
      width: min(1140px, calc(100% - 40px));
      margin: 0 auto;
      padding-top: 72px;
    }

    .main-hero h1 {
      max-width: 850px;
      margin: 0;
      font-size: clamp(44px, 6vw, 78px);
      font-weight: 900;
      line-height: .94;
      letter-spacing: -.055em;
      text-transform: uppercase;
      text-shadow: 0 18px 42px rgba(17, 24, 39, .28);
    }

    .main-hero h1 span {
      display: block;
    }

    .main-hero-actions {
      margin-top: 22px;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .main-btn {
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 28px;
      border: 1px solid transparent;
      background: var(--red);
      color: var(--white);
      font-size: 14px;
      font-weight: 900;
      text-transform: uppercase;
      transition: .2s ease;
    }

    .main-btn:hover {
      background: var(--red-dark);
      transform: translateY(-1px);
    }

    .main-btn.outline {
      background: transparent;
      border-color: currentColor;
      color: inherit;
    }

    .main-section {
      padding: 86px 0;
    }

    .main-section.tight {
      padding: 58px 0;
    }

    .main-container {
      width: min(1140px, calc(100% - 40px));
      margin: 0 auto;
    }

    .main-clients {
      display: grid;
      grid-template-columns: 170px 1fr;
      gap: 34px;
      align-items: center;
      padding: 36px 0;
      border-bottom: 1px solid var(--line);
    }

    .main-clients h2 {
      margin: 0;
      color: var(--navy);
      font-size: 22px;
      font-weight: 900;
      letter-spacing: -.03em;
    }

    .client-strip {
      display: grid;
      grid-template-columns: repeat(5, minmax(90px, 1fr));
      gap: 22px;
      align-items: center;
    }

    .client-strip img {
      max-width: 132px;
      max-height: 44px;
      width: 100%;
      object-fit: contain;
      filter: grayscale(1);
      opacity: .82;
      transition: .2s ease;
    }

    .client-strip img:hover {
      filter: none;
      opacity: 1;
    }

    .main-intro h2 {
      max-width: 980px;
      margin: 0;
      color: var(--red);
      font-size: clamp(40px, 5vw, 64px);
      font-weight: 300;
      letter-spacing: -.055em;
      line-height: 1.12;
    }

    .main-intro h2 strong {
      color: var(--red);
      font-weight: 900;
    }

    .main-intro-copy {
      max-width: 1040px;
      margin-top: 54px;
      color: #3c4048;
      font-size: 21px;
      line-height: 1.6;
    }

    .main-intro-copy p {
      margin: 0 0 18px;
    }

    .main-intro-copy strong {
      color: #252a33;
      font-weight: 900;
    }

    .main-screens {
      margin-top: 56px;
      display: block;
      width: min(100%, 1084px);
      margin-left: auto;
      margin-right: auto;
      filter: drop-shadow(0 26px 44px rgba(17, 24, 39, .14));
    }

    .main-solutions {
      background:
        linear-gradient(90deg, rgba(183, 21, 63, .93), rgba(143, 14, 49, .9)),
        url("/public/assets/images/main-red-bg.jpg") center / cover no-repeat;
      color: var(--white);
    }

    .solution-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0;
    }

    .solution-card {
      min-height: 260px;
      padding: 58px 54px;
      border-right: 1px solid rgba(255, 255, 255, .16);
      border-bottom: 1px solid rgba(255, 255, 255, .16);
    }

    .solution-card:nth-child(2n) {
      border-right: 0;
    }

    .solution-card span {
      display: block;
      margin-bottom: 12px;
      color: rgba(255, 255, 255, .78);
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
    }

    .solution-card h3 {
      margin: 0;
      font-size: clamp(28px, 3.2vw, 40px);
      font-weight: 900;
      letter-spacing: -.045em;
      line-height: 1.05;
    }

    .solution-card p {
      max-width: 520px;
      margin: 16px 0 24px;
      color: rgba(255, 255, 255, .88);
      line-height: 1.65;
    }

    .main-onboarding {
      min-height: 520px;
      display: grid;
      align-items: center;
      background:
        linear-gradient(90deg, rgba(17, 24, 39, .72), rgba(17, 24, 39, .28)),
        url("/public/assets/images/main-onboarding.jpg") center / cover no-repeat;
      color: var(--white);
    }

    .main-onboarding h2 {
      max-width: 660px;
      margin: 0;
      font-size: clamp(42px, 5.4vw, 74px);
      font-weight: 300;
      letter-spacing: -.06em;
      line-height: 1.02;
    }

    .main-onboarding h2 strong {
      display: block;
      font-weight: 900;
    }

    .main-onboarding p {
      max-width: 620px;
      margin: 22px 0 30px;
      color: rgba(255, 255, 255, .82);
      font-size: 18px;
      line-height: 1.7;
    }

    .story-head {
      display: flex;
      justify-content: space-between;
      align-items: end;
      gap: 28px;
      margin-bottom: 32px;
    }

    .story-head h2 {
      max-width: 800px;
      margin: 0;
      color: var(--navy);
      font-size: clamp(36px, 4.6vw, 58px);
      font-weight: 300;
      letter-spacing: -.055em;
      line-height: 1.1;
    }

    .story-head h2 strong {
      font-weight: 900;
    }

    .story-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .story-card {
      min-height: 230px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 24px;
      background: var(--navy);
      color: var(--white);
      border-left: 5px solid var(--red);
      box-shadow: var(--small-shadow);
    }

    .story-card span {
      color: rgba(255, 255, 255, .58);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .story-card h3 {
      margin: 12px 0 0;
      font-size: 24px;
      font-weight: 900;
      letter-spacing: -.04em;
      line-height: 1.12;
    }

    .main-coop {
      background:
        linear-gradient(135deg, rgba(17, 24, 39, .96), rgba(17, 24, 39, .8)),
        var(--navy);
      color: var(--white);
    }

    .coop-inner {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 46px;
      align-items: center;
    }

    .coop-inner h2 {
      margin: 0;
      font-size: clamp(38px, 4.8vw, 62px);
      font-weight: 900;
      letter-spacing: -.06em;
      line-height: 1.05;
    }

    .coop-inner p {
      max-width: 760px;
      margin: 18px 0 0;
      color: rgba(255, 255, 255, .74);
      font-size: 17px;
      line-height: 1.7;
    }

    .main-footer {
      padding: 52px 0 32px;
      background: #0c111d;
      color: rgba(255, 255, 255, .72);
    }

    .main-footer-grid {
      display: grid;
      grid-template-columns: 1.1fr repeat(3, minmax(150px, .7fr));
      gap: 34px;
    }

    .main-footer img {
      width: 170px;
      margin-bottom: 18px;
    }

    .main-footer h3 {
      margin: 0 0 14px;
      color: var(--white);
      font-size: 16px;
      font-weight: 900;
      letter-spacing: -.02em;
    }

    .main-footer p,
    .main-footer a {
      display: block;
      margin: 0 0 8px;
      color: rgba(255, 255, 255, .68);
      line-height: 1.55;
    }

    .main-footer-bottom {
      margin-top: 34px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, .12);
      color: rgba(255, 255, 255, .48);
      font-size: 13px;
    }

    .main-career-hero .hero-inner {
      grid-template-columns: 1.02fr .98fr;
    }

    .main-career-hero .hero-lead {
      max-width: 680px;
    }

    .main-client-strip {
      grid-template-columns: repeat(5, minmax(100px, 1fr));
      padding: 22px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 14px 42px rgba(17, 24, 39, .06);
    }

    .main-client-strip img {
      justify-self: center;
    }

    .main-product-layout {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 34px;
      align-items: center;
    }

    .main-product-media {
      overflow: hidden;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .main-product-media img {
      display: block;
      width: 100%;
    }

    .main-product-copy {
      display: grid;
      gap: 16px;
    }

    .main-product-box {
      padding: 24px;
      background: var(--white);
      border: 1px solid var(--line);
      border-left: 5px solid var(--red);
      box-shadow: 0 14px 42px rgba(17, 24, 39, .06);
    }

    .main-product-box span {
      display: block;
      margin-bottom: 8px;
      color: var(--red);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .main-product-box h3 {
      margin: 0;
      color: var(--navy);
      font-size: 24px;
      font-weight: 900;
      letter-spacing: -.04em;
    }

    .main-product-box p {
      margin: 10px 0 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .main-offer-list .job-main {
      grid-template-columns: 1fr 220px 150px;
    }

    .main-story-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .main-story-card {
      min-height: 260px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 26px;
      background:
        linear-gradient(135deg, rgba(17, 24, 39, .94), rgba(24, 34, 53, .86)),
        var(--navy);
      color: var(--white);
      border-left: 5px solid var(--red);
      box-shadow: var(--small-shadow);
    }

    .main-story-card span {
      color: rgba(255, 255, 255, .58);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .main-story-card h3 {
      margin: 12px 0 0;
      font-size: 25px;
      font-weight: 900;
      letter-spacing: -.045em;
      line-height: 1.12;
    }

    .main-story-card p {
      margin: 14px 0 0;
      color: rgba(255, 255, 255, .72);
      line-height: 1.65;
    }

    .main-footer-career .brand-footer {
      width: 170px;
      margin-bottom: 16px;
    }

    .not-found {
      min-height: 520px;
      display: grid;
      place-items: center;
      text-align: center;
    }

    .not-found h1 {
      margin: 0;
      font-size: clamp(42px, 6vw, 76px);
      font-weight: 900;
      letter-spacing: -.07em;
    }

    .not-found p {
      max-width: 540px;
      margin: 16px auto 28px;
      color: var(--muted);
      line-height: 1.7;
    }

    .hidden {
      display: none !important;
    }

    @media (max-width: 980px) {
      .nav-links {
        display: none;
      }

      .hero-inner,
      .jobs-layout,
      .section-head,
      .cta-inner,
      .page-hero-inner,
      .job-page-grid {
        grid-template-columns: 1fr;
      }

      .hero-inner {
        min-height: auto;
      }

      .tech-grid {
        grid-template-columns: repeat(3, 1fr);
      }

      .tech-card:nth-child(3) {
        border-right: 0;
      }

      .filters,
      .apply-rail {
        position: static;
      }

      .job-main {
        grid-template-columns: 1fr;
      }

      .job-salary {
        text-align: left;
      }

      .job-arrow {
        justify-content: flex-start;
      }

      .details-grid,
      .application-grid {
        grid-template-columns: 1fr;
      }

      .span-2 {
        grid-column: auto;
      }

      .main-header-inner,
      .main-hero-content,
      .main-container {
        width: min(100% - 32px, 1140px);
      }

      .main-career-hero .hero-inner {
        grid-template-columns: 1fr;
      }

      .main-nav {
        display: none;
      }

      .main-hero {
        min-height: 560px;
        background-position: 63% center;
      }

      .main-clients,
      .story-head,
      .coop-inner,
      .main-footer-grid,
      .main-product-layout {
        grid-template-columns: 1fr;
      }

      .client-strip,
      .story-grid,
      .main-story-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .solution-grid {
        grid-template-columns: 1fr;
      }

      .solution-card {
        border-right: 0;
      }
    }

    @media (max-width: 640px) {
      .container {
        width: min(100% - 28px, 1180px);
      }

      .topbar {
        display: none;
      }

      .nav-inner {
        min-height: 72px;
      }

      .brand img {
        width: 128px;
      }

      .nav-actions .btn-outline {
        display: none;
      }

      .hero-inner,
      .page-hero-inner {
        padding: 58px 0;
      }

      .hero-tags {
        margin-top: 20px;
      }

      .section {
        padding: 56px 0;
      }

      .tech-grid {
        grid-template-columns: 1fr;
      }

      .tech-card {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .tech-card:last-child {
        border-bottom: 0;
      }

      .job-main,
      .job-details,
      .content-panel,
      .panel-body,
      .filters-body {
        padding: 22px;
      }

      .job-title {
        font-size: 22px;
      }

      .jobs-top {
        align-items: stretch;
        flex-direction: column;
      }

      .main-header-inner {
        min-height: 72px;
      }

      .main-logo,
      .main-logo img {
        width: 148px;
      }

      .main-hero {
        min-height: 520px;
        background-position: 70% center;
      }

      .main-hero h1 {
        font-size: clamp(36px, 12vw, 52px);
      }

      .main-section {
        padding: 58px 0;
      }

      .main-clients {
        gap: 22px;
      }

      .client-strip {
        grid-template-columns: 1fr 1fr;
      }

      .main-intro h2,
      .main-onboarding h2,
      .story-head h2,
      .coop-inner h2 {
        letter-spacing: -.04em;
      }

      .main-intro-copy {
        margin-top: 32px;
        font-size: 17px;
      }

      .solution-card {
        min-height: auto;
        padding: 36px 24px;
      }

      .story-grid {
        grid-template-columns: 1fr;
      }

      .main-story-grid {
        grid-template-columns: 1fr;
      }

      .main-onboarding {
        min-height: 480px;
      }

      .btn {
        width: 100%;
      }
    }
