: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);
      --header-offset: 96px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: var(--header-offset);
    }

    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;
    }

    .skip-link {
      position: fixed;
      top: 12px;
      left: 12px;
      z-index: 100;
      transform: translateY(-140%);
      padding: 10px 14px;
      border-radius: 999px;
      background: var(--navy);
      color: #fff;
      font-weight: 900;
      text-decoration: none;
      transition: transform 160ms ease;
    }

    .skip-link:focus {
      transform: translateY(0);
      outline: 3px solid rgba(226, 178, 71, 0.55);
      outline-offset: 2px;
    }

    .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,
    .section {
      scroll-margin-top: var(--header-offset);
    }

    .hero {
      position: relative;
      min-height: min(760px, calc(100svh - 84px));
      display: grid;
      align-items: center;
      padding: clamp(48px, 7vw, 76px) 0 32px;
      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(640px, 64vw) 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: 660px;
    }

    .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(2.8rem, 6.4vw, 5.2rem);
      line-height: 0.94;
      letter-spacing: 0;
    }

    .hero-lede {
      max-width: 580px;
      margin: 26px 0 0;
      color: #e7edf1;
      font-size: clamp(1.05rem, 1.6vw, 1.22rem);
      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: 36px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: rgba(255, 255, 255, 0.16);
      max-width: 760px;
    }

    .strip-item {
      min-height: 84px;
      padding: 18px;
      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(62px, 7vw, 92px) 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;
    }

    .section-carousel {
      position: relative;
      margin-top: 8px;
    }

    .carousel-viewport {
      display: grid;
      align-items: stretch;
      overflow: hidden;
    }

    .carousel-slide {
      grid-area: 1 / 1;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateX(18px);
      transition: opacity 420ms ease, transform 420ms ease, visibility 420ms ease;
    }

    .carousel-slide.is-active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(0);
    }

    .carousel-controls {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 12px;
      margin-top: 22px;
    }

    .carousel-btn {
      min-height: 40px;
      min-width: 72px;
      padding: 0 14px;
      border: 1px solid rgba(7, 27, 52, 0.18);
      border-radius: 999px;
      background: #fff;
      color: var(--navy);
      font: inherit;
      font-size: 0.82rem;
      font-weight: 900;
      cursor: pointer;
      transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
    }

    .carousel-btn:hover,
    .carousel-btn:focus-visible {
      border-color: var(--teal);
      color: var(--teal);
      outline: none;
      transform: translateY(-1px);
    }

    .carousel-dots {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .carousel-dot {
      width: 10px;
      height: 10px;
      padding: 0;
      border: 1px solid rgba(7, 27, 52, 0.3);
      border-radius: 999px;
      background: transparent;
      cursor: pointer;
    }

    .carousel-dot.is-active {
      width: 28px;
      border-color: var(--teal);
      background: var(--teal);
    }

    .slide-meta {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 14px;
    }

    .slide-meta .label {
      margin: 0;
    }

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

    .badge-teal {
      background: var(--teal);
    }

    .badge-copper {
      background: var(--copper);
    }

    .badge-gold {
      background: #806a12;
    }

    .badge-navy {
      background: var(--navy-soft);
    }

    .updates-carousel {
      margin-top: 12px;
    }

    .update-slide {
      min-height: 410px;
      display: grid;
      grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
      gap: clamp(24px, 5vw, 58px);
      align-items: stretch;
      padding: clamp(24px, 4vw, 42px);
      border: 1px solid var(--line);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(22, 112, 112, 0.08), rgba(226, 178, 71, 0.08)),
        var(--panel);
      box-shadow: var(--shadow);
    }

    .update-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      min-width: 0;
    }

    .update-content h3 {
      margin: 0;
      color: var(--navy);
      font-size: clamp(1.8rem, 3.6vw, 3.3rem);
      line-height: 1.04;
      letter-spacing: 0;
    }

    .update-content p {
      max-width: 690px;
      margin: 18px 0 0;
      color: var(--muted);
      font-size: 1.04rem;
    }

    .tag-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 22px;
    }

    .tag-row span {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      border: 1px solid rgba(22, 112, 112, 0.18);
      border-radius: 999px;
      color: var(--teal);
      background: rgba(255, 255, 255, 0.78);
      font-size: 0.78rem;
      font-weight: 800;
    }

    .update-media {
      min-height: 0;
      aspect-ratio: 16 / 9;
      align-self: center;
      display: grid;
      place-items: center;
      overflow: hidden;
      border: 1px solid rgba(7, 27, 52, 0.1);
      border-radius: 8px;
      background: #f3f7fa;
    }

    .update-media img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: #fff;
    }

    .brand-placeholder {
      width: min(100%, 320px);
      min-height: 210px;
      display: grid;
      place-items: center;
      gap: 10px;
      padding: 28px;
      text-align: center;
      color: #fff;
    }

    .brand-placeholder span {
      display: block;
      font-size: clamp(2rem, 5vw, 3.7rem);
      font-weight: 900;
      line-height: 1;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .brand-placeholder small {
      color: #d8ebe9;
      font-weight: 800;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

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

    .building-intro {
      margin-bottom: 36px;
    }

    .building-intro .section-head {
      margin-bottom: 0;
    }

    .building-intro.has-media {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
      gap: clamp(24px, 5vw, 56px);
      align-items: center;
    }

    .building-media {
      min-height: 260px;
      display: grid;
      place-items: center;
      overflow: hidden;
      border: 1px solid rgba(7, 27, 52, 0.12);
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 18px 52px rgba(7, 27, 52, 0.1);
    }

    .building-media img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .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.tone-teal .icon {
      background: var(--teal);
    }

    .value-card.tone-copper .icon {
      background: var(--copper);
    }

    .value-card.tone-navy .icon {
      background: var(--navy-soft);
    }

    .value-card.tone-gold .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;
    }

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

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

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

    .status.badge-copper {
      background: var(--copper);
    }

    .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);
    }

    .recaptcha-wrap {
      min-height: 78px;
      display: flex;
      align-items: center;
      overflow: hidden;
    }

    .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) {
      :root {
        --header-offset: 132px;
      }

      .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,
      .update-slide,
      .building-intro.has-media {
        grid-template-columns: 1fr;
      }

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

      .carousel-controls {
        justify-content: flex-start;
      }

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

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

    @media (max-width: 560px) {
      :root {
        --header-offset: 112px;
      }

      .wrap,
      .nav {
        width: min(1160px, calc(100% - 28px));
      }

      .nav {
        min-height: 0;
        gap: 10px;
        padding: 10px 0 12px;
      }

      .brand {
        gap: 10px;
      }

      .brand img {
        width: 74px;
        height: 46px;
      }

      .brand strong {
        font-size: 0.82rem;
      }

      .brand-kicker {
        font-size: 0.68rem;
      }

      .nav-links {
        width: 100%;
        flex-wrap: nowrap;
        gap: 4px;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
      }

      .nav-links::-webkit-scrollbar {
        display: none;
      }

      .hero-content,
      .section-head,
      .update-content {
        max-width: 100%;
        min-width: 0;
      }

      .eyebrow {
        font-size: 0.74rem;
        letter-spacing: 0.1em;
        overflow-wrap: anywhere;
      }

      h1 {
        max-width: 11ch;
        font-size: 2.55rem;
        line-height: 1.04;
        overflow-wrap: break-word;
      }

      .hero-lede {
        max-width: 34ch;
        font-size: 1rem;
        overflow-wrap: anywhere;
      }

      .brand strong {
        white-space: normal;
      }

      .nav-links a {
        min-height: 34px;
        padding: 0 8px;
        font-size: 0.74rem;
        white-space: nowrap;
      }

      .hero {
        min-height: 0;
        padding: 42px 0 34px;
        background:
          linear-gradient(180deg, rgba(7, 27, 52, 0.98) 0%, rgba(7, 27, 52, 0.9) 100%),
          var(--navy);
      }

      .hero-content {
        padding-bottom: 0;
      }

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

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

      .recaptcha-wrap {
        transform: scale(0.88);
        transform-origin: left top;
        min-height: 70px;
      }

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

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

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

      .update-slide {
        min-height: 0;
        padding: 22px;
      }

      .update-media {
        min-height: 0;
      }

      .building-media {
        min-height: 220px;
      }

      .carousel-controls {
        justify-content: center;
        flex-wrap: wrap;
      }

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

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        transition-duration: 1ms !important;
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
      }

      .carousel-slide {
        transform: none;
      }
    }
