:root {
      --navy: #071b34;
      --navy-soft: #123457;
      --ink: #162033;
      --muted: #5f6b7c;
      --line: #dfe5ec;
      --paper: #fbfcf8;
      --panel: #ffffff;
      --mist: #eef5f6;
      --copper: #b55227;
      --teal: #167070;
      --gold: #e2b247;
      --shadow: 0 24px 70px rgba(7, 27, 52, 0.12);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--ink);
      background: var(--paper);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.6;
    }

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

    a {
      color: inherit;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 20;
      background: rgba(251, 252, 248, 0.92);
      border-bottom: 1px solid rgba(7, 27, 52, 0.1);
      backdrop-filter: blur(18px);
    }

    .nav {
      width: min(1160px, calc(100% - 40px));
      min-height: 84px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      color: var(--navy);
      text-decoration: none;
      min-width: 0;
    }

    .brand img {
      width: 96px;
      height: 58px;
      object-fit: contain;
      object-position: center;
      border-radius: 0;
    }

    .brand strong {
      display: block;
      font-size: 0.98rem;
      line-height: 1;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .brand-text {
      display: block;
      margin-top: 3px;
    }

    .brand-kicker {
      display: block;
      margin-top: 3px;
      color: var(--muted);
      font-size: 0.76rem;
      letter-spacing: 0.02em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 8px;
      flex-wrap: wrap;
    }

    .nav-links a {
      min-height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 14px;
      border-radius: 999px;
      color: var(--muted);
      font-size: 0.86rem;
      font-weight: 700;
      text-decoration: none;
      transition: background 180ms ease, color 180ms ease;
    }

    .nav-links a:hover,
    .nav-links a:focus-visible {
      background: rgba(22, 112, 112, 0.1);
      color: var(--teal);
      outline: none;
    }

    .nav-links .nav-cta {
      background: var(--navy);
      color: #fff;
    }

    .nav-links .nav-cta:hover,
    .nav-links .nav-cta:focus-visible {
      background: var(--teal);
      color: #fff;
    }

    main {
      overflow: hidden;
    }

    .hero {
      position: relative;
      min-height: calc(100svh - 72px);
      display: grid;
      align-items: center;
      padding: clamp(66px, 10vw, 118px) 0 58px;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(7, 27, 52, 0.98) 0%, rgba(7, 27, 52, 0.88) 48%, rgba(7, 27, 52, 0.3) 100%),
        url("../../images/Northific_blue.png") center right / min(760px, 82vw) auto no-repeat,
        radial-gradient(circle at 80% 10%, rgba(22, 112, 112, 0.36), transparent 28%),
        var(--navy);
      isolation: isolate;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: auto 0 0;
      height: 9px;
      background: linear-gradient(90deg, var(--copper), var(--gold), var(--teal));
      z-index: -1;
    }

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

    .hero-content {
      max-width: 710px;
    }

    .eyebrow {
      margin: 0 0 18px;
      color: #d8ebe9;
      font-size: 0.8rem;
      font-weight: 800;
      letter-spacing: 0.16em;
      text-transform: uppercase;
    }

    h1 {
      margin: 0;
      max-width: 820px;
      font-size: clamp(3rem, 8vw, 6.5rem);
      line-height: 0.94;
      letter-spacing: 0;
    }

    .hero-lede {
      max-width: 620px;
      margin: 26px 0 0;
      color: #e7edf1;
      font-size: clamp(1.1rem, 2vw, 1.35rem);
      line-height: 1.55;
    }

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

    .section-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 24px;
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 0 18px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-weight: 800;
      text-decoration: none;
      transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
    }

    .btn:hover,
    .btn:focus-visible {
      transform: translateY(-1px);
      outline: none;
    }

    .btn-primary {
      background: #fff;
      color: var(--navy);
    }

    .btn-secondary {
      border-color: rgba(255, 255, 255, 0.34);
      color: #fff;
    }

    .btn-secondary:hover,
    .btn-secondary:focus-visible {
      border-color: rgba(255, 255, 255, 0.78);
      background: rgba(255, 255, 255, 0.08);
    }

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

    .btn-light-outline {
      border-color: rgba(7, 27, 52, 0.2);
      color: var(--navy);
      background: #fff;
    }

    .btn-light-outline:hover,
    .btn-light-outline:focus-visible {
      border-color: var(--teal);
      color: var(--teal);
      background: rgba(22, 112, 112, 0.06);
    }

    .hero-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      margin-top: 64px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.16);
      max-width: 760px;
    }

    .strip-item {
      min-height: 94px;
      padding: 20px;
      background: rgba(7, 27, 52, 0.48);
    }

    .strip-item b {
      display: block;
      color: #fff;
      font-size: 1.04rem;
      line-height: 1.2;
    }

    .strip-item span {
      display: block;
      margin-top: 6px;
      color: #c8d7dd;
      font-size: 0.92rem;
      line-height: 1.45;
    }

    .section {
      padding: clamp(74px, 9vw, 112px) 0;
      border-bottom: 1px solid var(--line);
    }

    .section-alt {
      background: var(--mist);
    }

    .section-dark {
      background: var(--navy);
      color: #fff;
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 36px;
    }

    .label {
      margin: 0 0 12px;
      color: var(--copper);
      font-size: 0.78rem;
      font-weight: 900;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    h2 {
      margin: 0;
      color: var(--navy);
      font-size: clamp(2rem, 4.4vw, 4rem);
      line-height: 1.02;
      letter-spacing: 0;
    }

    .section-dark h2,
    .section-dark .label {
      color: #fff;
    }

    .section-head p {
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 1.08rem;
      max-width: 690px;
    }

    .lora-callout {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin: 4px 0 20px;
      color: var(--teal);
      font-size: 0.86rem;
      font-weight: 800;
    }

    .lora-symbol {
      width: 112px;
      height: 54px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 7px 9px;
      border: 1px solid rgba(22, 112, 112, 0.24);
      border-radius: 8px;
      background: #fff;
      overflow: hidden;
    }

    .lora-symbol img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .section-dark .section-head p {
      color: #cdd9df;
    }

    .mission-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
      gap: clamp(28px, 5vw, 72px);
      align-items: start;
    }

    .mission-statement {
      margin: 0;
      color: var(--navy);
      font-size: clamp(1.55rem, 3vw, 2.65rem);
      font-weight: 800;
      line-height: 1.12;
    }

    .mission-copy {
      display: grid;
      gap: 20px;
    }

    .mission-copy p {
      margin: 0;
      color: var(--muted);
      font-size: 1.04rem;
    }

    .pill-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 4px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 0 12px;
      border: 1px solid rgba(22, 112, 112, 0.24);
      border-radius: 999px;
      color: var(--teal);
      background: #fff;
      font-size: 0.86rem;
      font-weight: 800;
    }

    .values-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .value-card,
    .product-card {
      min-height: 100%;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--panel);
      box-shadow: 0 10px 36px rgba(7, 27, 52, 0.06);
    }

    .value-card {
      padding: 26px;
    }

    .icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: var(--teal);
      font-weight: 900;
    }

    .value-card:nth-child(2) .icon {
      background: var(--copper);
    }

    .value-card:nth-child(3) .icon {
      background: var(--navy-soft);
    }

    .value-card:nth-child(4) .icon {
      background: #806a12;
    }

    .value-card h3,
    .product-card h3 {
      margin: 22px 0 10px;
      color: var(--navy);
      font-size: 1.2rem;
      line-height: 1.22;
    }

    .value-card p,
    .product-card p {
      margin: 0;
      color: var(--muted);
    }

    .products-layout {
      display: grid;
      grid-template-columns: minmax(260px, 0.86fr) minmax(0, 1.14fr);
      gap: 22px;
      align-items: stretch;
    }

    .launch-panel {
      min-height: 420px;
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: clamp(24px, 4vw, 36px);
      overflow: hidden;
      border-radius: 8px;
      color: #fff;
      background:
        linear-gradient(180deg, rgba(7, 27, 52, 0.08), rgba(7, 27, 52, 0.92)),
        url("../../images/ChatGPT Image Jun 3, 2026, 05_52_47 PM.png") center / cover no-repeat,
        var(--navy);
      box-shadow: var(--shadow);
    }

    .launch-panel::before {
      content: "";
      position: absolute;
      inset: 18px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 6px;
      pointer-events: none;
    }

    .launch-panel small {
      position: relative;
      width: max-content;
      max-width: 100%;
      margin-bottom: 16px;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(226, 178, 71, 0.94);
      color: #1a2435;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.1em;
    }

    .launch-panel h3 {
      position: relative;
      margin: 0;
      max-width: 480px;
      font-size: clamp(1.8rem, 3.5vw, 3rem);
      line-height: 1.04;
      letter-spacing: 0;
    }

    .launch-panel p {
      position: relative;
      max-width: 520px;
      margin: 16px 0 0;
      color: #dfe8ed;
    }

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

    .product-card {
      padding: 24px;
    }

    .status {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      border-radius: 999px;
      color: #fff;
      background: var(--copper);
      font-size: 0.76rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .product-card:nth-child(2) .status {
      background: var(--teal);
    }

    .product-card:nth-child(3) .status {
      background: var(--navy-soft);
    }

    .product-card:nth-child(4) .status {
      background: #806a12;
    }

    .contact-card {
      display: grid;
      grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
      gap: clamp(28px, 5vw, 54px);
      align-items: start;
      padding: clamp(28px, 5vw, 52px);
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(22, 112, 112, 0.28), rgba(181, 82, 39, 0.16)),
        rgba(255, 255, 255, 0.05);
    }

    .contact-copy {
      align-self: center;
    }

    .contact-card h2 {
      color: #fff;
    }

    .contact-card p {
      max-width: 650px;
      margin: 16px 0 0;
      color: #d7e3e9;
      font-size: 1.08rem;
    }

    .contact-actions {
      display: grid;
      gap: 12px;
      justify-items: stretch;
      min-width: 220px;
    }

    .contact-direct {
      max-width: 260px;
      margin-top: 26px;
    }

    .contact-actions .btn-primary {
      color: var(--navy);
    }

    .contact-form {
      display: grid;
      gap: 12px;
    }

    .contact-form label {
      display: block;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      border: 1px solid rgba(255, 255, 255, 0.22);
      border-radius: 0;
      background: rgba(255, 255, 255, 0.95);
      color: var(--navy);
      font: inherit;
      font-size: 0.98rem;
      outline: none;
      transition: border-color 180ms ease, box-shadow 180ms ease;
    }

    .contact-form input {
      min-height: 46px;
      padding: 0 14px;
    }

    .contact-form textarea {
      min-height: 148px;
      resize: vertical;
      padding: 12px 14px;
    }

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
      color: #8d97a6;
    }

    .contact-form input:focus,
    .contact-form textarea:focus {
      border-color: rgba(226, 178, 71, 0.84);
      box-shadow: 0 0 0 3px rgba(226, 178, 71, 0.18);
    }

    .contact-submit {
      width: max-content;
      min-width: 150px;
      border: 0;
      cursor: pointer;
      text-transform: uppercase;
    }

    .contact-submit:disabled {
      cursor: wait;
      opacity: 0.72;
      transform: none;
    }

    .contact-card .form-status {
      min-height: 24px;
      margin: 0;
      color: #d7e3e9;
      font-size: 0.94rem;
      font-weight: 700;
    }

    .contact-card .form-status.is-success {
      color: #ffffff;
    }

    .contact-card .form-status.is-error {
      color: #ffd8ca;
    }

    .form-honeypot {
      position: absolute;
      left: -10000px;
      width: 1px;
      height: 1px;
      overflow: hidden;
    }

    .visually-hidden {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    .footer {
      padding: 28px 0;
      background: #fff;
      color: var(--muted);
    }

    .footer .wrap {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
      font-size: 0.92rem;
    }

    .footer-main {
      max-width: 760px;
    }

    .legal-notice {
      margin: 8px 0 0;
      max-width: 720px;
      color: var(--muted);
      font-size: 0.78rem;
      line-height: 1.55;
    }

    .legal-notice a {
      color: var(--teal);
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .footer a {
      color: var(--navy);
      font-weight: 800;
      text-decoration: none;
    }

    .footer-links {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    @media (max-width: 900px) {
      .nav {
        min-height: 78px;
        align-items: flex-start;
        flex-direction: column;
        padding: 14px 0;
      }

      .nav-links {
        width: 100%;
        justify-content: flex-start;
      }

      .nav-links a {
        padding: 0 10px;
      }

      .hero {
        min-height: auto;
        padding-top: 72px;
        background:
          linear-gradient(180deg, rgba(7, 27, 52, 0.97) 0%, rgba(7, 27, 52, 0.86) 56%, rgba(7, 27, 52, 0.52) 100%),
          url("../../images/Northific_blue.png") center bottom 18px / min(560px, 88vw) auto no-repeat,
          var(--navy);
      }

      .hero-content {
        padding-bottom: 190px;
      }

      .hero-strip,
      .mission-grid,
      .products-layout,
      .contact-card {
        grid-template-columns: 1fr;
      }

      .values-grid,
      .product-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .contact-actions {
        min-width: 0;
        justify-items: start;
      }

      .contact-direct {
        max-width: none;
      }
    }

    @media (max-width: 560px) {
      .wrap,
      .nav {
        width: min(100% - 28px, 1160px);
      }

      .brand strong {
        white-space: normal;
      }

      .nav-links a {
        min-height: 36px;
        font-size: 0.8rem;
      }

      .hero-actions,
      .btn {
        width: 100%;
      }

      .contact-submit,
      .contact-direct {
        width: 100%;
      }

      .hero-strip {
        margin-top: 36px;
      }

      .strip-item {
        min-height: 82px;
      }

      .values-grid,
      .product-list {
        grid-template-columns: 1fr;
      }

      .launch-panel {
        min-height: 360px;
      }
    }
