:root {
  --black: #05070b;
  --ink: #0a1018;
  --panel: #101827;
  --panel-2: #162234;
  --silver: #f2f5f8;
  --paper: #f8fafc;
  --steel: #d3dce6;
  --muted: #5f6f82;
  --line: #c8d3df;
  --blue: #1669d8;
  --blue-2: #1d8bff;
  --cyan: #5fd9ff;
  --pine: #147447;
  --lime: #8fcf3c;
  --sky-blue: #5fd9ff;
  --canada-red: #d80621;
  --signal: #d7f024;
  --signal-hover: #c5df18;
  --accent-text-gradient: linear-gradient(90deg, var(--pine) 0%, var(--lime) 34%, var(--sky-blue) 67%, var(--canada-red) 100%);
  --accent-cycle-gradient: linear-gradient(
    90deg,
    var(--pine) 0%,
    var(--pine) 16%,
    var(--lime) 21%,
    var(--lime) 37%,
    var(--sky-blue) 42%,
    var(--sky-blue) 58%,
    var(--canada-red) 63%,
    var(--canada-red) 79%,
    var(--pine) 84%,
    var(--pine) 100%
  );
  --green: #23b26f;
  --amber: #e5a123;
  --white: #ffffff;
  --shadow: 0 18px 44px rgba(4, 9, 17, 0.12);
  --focus: #ffbf47;
  --content-max: 1240px;
  --page-gutter: 32px;
  --font-body: "Segoe UI Variable Text", "Aptos", "Helvetica Neue", Arial, sans-serif;
  --font-display: "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", "Helvetica Neue", Arial, sans-serif;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-body);
  background: var(--silver);
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
.brand strong,
.button,
.quote-button,
.site-nav a {
  font-family: var(--font-display);
  letter-spacing: 0;
}

body.nav-lock {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--white);
  color: var(--ink);
  padding: 10px 14px;
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.skip-link:focus {
  transform: translateY(0);
}

#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 77px;
}

body[data-page="home"] #site-header {
  position: fixed;
  right: 0;
  left: 0;
  min-height: 0;
}

.site-header {
  position: relative;
  z-index: 1;
  padding: 0 var(--page-gutter);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(95, 111, 130, 0.18);
  backdrop-filter: blur(20px);
}

body[data-page="home"] .site-header {
  color: var(--white);
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
  transition: color 260ms ease, background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease, backdrop-filter 260ms ease;
}

body[data-page="home"] .site-header.is-scrolled {
  color: var(--white);
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body[data-page="home"] .site-header-inner {
  grid-template-columns: auto minmax(0, 1fr) auto auto;
}

body[data-page="home"] .logo-brand {
  order: 1;
}

body[data-page="home"] .site-nav {
  order: 2;
}

body[data-page="home"] .quote-button {
  order: 3;
}

body[data-page="home"] .staff-access-link {
  order: 4;
}

body[data-page="home"] .nav-toggle {
  order: 5;
}

.site-header-inner {
  position: relative;
  width: min(var(--content-max), 100%);
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 18px;
  transition: min-height 240ms ease;
}

.brand {
  display: inline-grid;
  grid-template-columns: 42px minmax(0, auto);
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.logo-brand {
  position: relative;
  grid-template-columns: minmax(150px, auto);
  gap: 0;
  overflow: hidden;
  isolation: isolate;
  transition: height 240ms ease;
}

.brand-mark-image {
  width: 48px;
  height: 56px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(95, 217, 255, 0.22));
}

.ssai-logo-spin {
  transform-origin: 50% 50%;
  backface-visibility: visible;
  transform-style: preserve-3d;
  animation: ssai-logo-double-flip 1.8s cubic-bezier(0.45, 0, 0.2, 1) 1 both;
}

@keyframes ssai-logo-double-flip {
  from {
    transform: perspective(700px) rotateY(0deg);
  }

  to {
    transform: perspective(700px) rotateY(720deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ssai-logo-spin {
    animation: none;
  }

  .logo-brand::before,
  .logo-brand::after,
  .footer-logo-brand::after {
    display: none;
    animation: none;
  }

  .site-header-inner,
  .logo-brand,
  .header-logo,
  .brand-wordmark,
  .brand-wordmark-image,
  .brand-wordmark::after,
  .brand-signature,
  .brand-signature img {
    animation: none;
    transition: none;
  }
}

.footer-logo-brand {
  position: relative;
  grid-template-columns: minmax(140px, auto);
  gap: 0;
  overflow: hidden;
  isolation: isolate;
}

.logo-brand::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.12;
  background: linear-gradient(90deg, #5fd9ff 0%, #147447 24%, #8fcf3c 40%, #eef6ff 52%, #d80621 70%, #1669d8 88%, #5fd9ff 100%);
  background-position: 0% 50%;
  background-size: 320% 100%;
  mix-blend-mode: color;
  animation: header-logo-colour-cycle 22s ease-in-out infinite;
  mask-image: url("/assets/system-secure-logo-r12.webp");
  mask-position: left center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("/assets/system-secure-logo-r12.webp");
  -webkit-mask-position: left center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.logo-brand::after,
.footer-logo-brand::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.05) 38%, rgba(255, 255, 255, 0.42) 49%, rgba(188, 206, 220, 0.12) 60%, transparent 80%);
  transform: translateX(-145%);
  animation: logo-chrome-shimmer 18s cubic-bezier(0.42, 0, 0.18, 1) infinite;
  mask-image: url("/assets/system-secure-logo-r12.webp");
  mask-position: left center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-image: url("/assets/system-secure-logo-r12.webp");
  -webkit-mask-position: left center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  will-change: transform;
}

@keyframes header-logo-colour-cycle {
  0%,
  10% {
    opacity: 0.1;
    background-position: 0% 50%;
  }

  26% {
    opacity: 0.3;
    background-position: 28% 50%;
  }

  42%,
  50% {
    opacity: 0.16;
    background-position: 50% 50%;
  }

  66% {
    opacity: 0.28;
    background-position: 72% 50%;
  }

  82%,
  90% {
    opacity: 0.14;
    background-position: 100% 50%;
  }

  100% {
    opacity: 0.1;
    background-position: 0% 50%;
  }
}

@keyframes logo-chrome-shimmer {
  0%,
  10% {
    opacity: 0;
    transform: translateX(-145%);
  }

  16% {
    opacity: 0.2;
  }

  26% {
    opacity: 0.32;
    transform: translateX(24%);
  }

  36% {
    opacity: 0.1;
    transform: translateX(138%);
  }

  44%,
  66% {
    opacity: 0;
    transform: translateX(138%);
  }

  67% {
    opacity: 0;
    transform: translateX(-126%);
  }

  74% {
    opacity: 0.14;
  }

  83% {
    opacity: 0.24;
    transform: translateX(54%);
  }

  92% {
    opacity: 0;
    transform: translateX(126%);
  }

  100% {
    opacity: 0;
    transform: translateX(126%);
  }
}

.brand-logo {
  position: relative;
  z-index: 1;
  width: clamp(150px, 17vw, 230px);
  height: auto;
  max-height: 128px;
  object-fit: contain;
  object-position: left center;
  filter: drop-shadow(0 10px 24px rgba(95, 217, 255, 0.18));
}

.header-logo {
  width: clamp(205px, 18.5vw, 260px);
  max-height: 92px;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.72))
    drop-shadow(0 9px 18px rgba(2, 8, 20, 0.32))
    drop-shadow(0 0 14px rgba(95, 217, 255, 0.2));
  transform: translateZ(0);
  transition: filter 260ms ease, opacity 220ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.logo-brand::before,
.logo-brand::after {
  display: none;
}

.brand-wordmark {
  position: relative;
  z-index: 4;
  width: clamp(220px, 19vw, 280px);
  aspect-ratio: 1498 / 594;
  display: block;
  overflow: hidden;
  transform-origin: left top;
  transition: opacity 220ms ease, transform 300ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-wordmark-image {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.78))
    drop-shadow(0 8px 18px rgba(1, 7, 18, 0.34))
    drop-shadow(0 0 9px rgba(95, 217, 255, 0.18));
  animation: wordmark-tonal-sequence 24s ease-in-out infinite;
}

.brand-wordmark::after {
  content: none;
}

@supports ((-webkit-mask-image: url("/assets/system-secure-wordmark-r2.webp")) or (mask-image: url("/assets/system-secure-wordmark-r2.webp"))) {
  .brand-wordmark::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(108deg, transparent 34%, rgba(255, 255, 255, 0.08) 44%, rgba(255, 255, 255, 0.68) 50%, rgba(127, 229, 255, 0.18) 56%, transparent 66%);
    background-position: -170% 50%;
    background-size: 240% 100%;
    -webkit-mask-image: url("/assets/system-secure-wordmark-r2.webp");
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-image: url("/assets/system-secure-wordmark-r2.webp");
    mask-position: center;
    mask-repeat: no-repeat;
    mask-size: contain;
    mix-blend-mode: screen;
    opacity: 0;
    animation: wordmark-highlight-sequence 19s cubic-bezier(0.22, 1, 0.36, 1) infinite;
  }
}

@keyframes wordmark-highlight-sequence {
  0%,
  12%,
  100% {
    opacity: 0;
    background-position: -170% 50%;
  }

  16% {
    opacity: 0.18;
  }

  24% {
    opacity: 0.42;
  }

  32% {
    opacity: 0;
    background-position: 170% 50%;
  }
}

@keyframes wordmark-tonal-sequence {
  0%,
  28%,
  100% {
    filter:
      drop-shadow(0 1px 0 rgba(255, 255, 255, 0.78))
      drop-shadow(0 8px 18px rgba(1, 7, 18, 0.34))
      drop-shadow(0 0 9px rgba(95, 217, 255, 0.18));
  }

  48% {
    filter:
      drop-shadow(0 1px 0 rgba(255, 255, 255, 0.82))
      drop-shadow(0 8px 18px rgba(1, 7, 18, 0.34))
      drop-shadow(0 0 11px rgba(143, 207, 60, 0.22));
  }

  72% {
    filter:
      drop-shadow(0 1px 0 rgba(255, 255, 255, 0.8))
      drop-shadow(0 8px 18px rgba(1, 7, 18, 0.34))
      drop-shadow(0 0 10px rgba(216, 6, 33, 0.18));
  }
}

.brand-signature {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 4;
  width: 168px;
  height: 30px;
  overflow: hidden;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 12, 25, 0.76);
  box-shadow: 0 8px 18px rgba(1, 7, 18, 0.2);
  clip-path: polygon(3% 0, 97% 0, 100% 50%, 97% 100%, 3% 100%, 0 50%);
  opacity: 0;
  transform: translateY(-42%) scale(0.84);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-signature img {
  position: absolute;
  top: -40px;
  left: 4px;
  width: 160px;
  max-width: none;
  height: auto;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.85))
    drop-shadow(0 5px 10px rgba(2, 8, 20, 0.28))
    drop-shadow(0 0 10px rgba(95, 217, 255, 0.22));
  animation: brand-signature-glow 22s ease-in-out infinite;
}

body[data-page="home"] .site-header.is-scrolled .site-header-inner {
  min-height: 64px;
}

body[data-page="home"] .site-header.is-scrolled .logo-brand {
  width: 176px;
  height: 44px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

body[data-page="home"] .site-header.is-scrolled .logo-brand::before,
body[data-page="home"] .site-header.is-scrolled .logo-brand::after {
  display: none;
}

body[data-page="home"] .site-header.is-scrolled .brand-wordmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 260px;
  padding: 8px 10px 6px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(4, 12, 25, 0.9);
  box-shadow: 0 12px 28px rgba(1, 7, 18, 0.24);
  clip-path: polygon(2% 0, 98% 0, 100% 8%, 100% 92%, 98% 100%, 2% 100%, 0 92%, 0 8%);
  pointer-events: none;
  opacity: 0;
  transform: scale(0.72);
  transform-origin: left top;
}

body[data-page="home"] .site-header.is-scrolled .brand-signature {
  opacity: 1;
  transform: translateY(-42%) scale(1);
}

@media (hover: hover) {
  body[data-page="home"] .site-header.is-scrolled .logo-brand:hover .brand-wordmark,
  body[data-page="home"] .site-header.is-scrolled .logo-brand:focus-visible .brand-wordmark {
    pointer-events: auto;
    opacity: 1;
    transform: scale(0.96);
  }

  body[data-page="home"] .site-header.is-scrolled .logo-brand:hover .brand-signature,
  body[data-page="home"] .site-header.is-scrolled .logo-brand:focus-visible .brand-signature {
    opacity: 0;
    transform: translateY(-42%) scale(0.9);
  }
}

body[data-page="home"] .site-header.is-scrolled .site-nav,
body[data-page="home"] .site-header.is-scrolled .quote-button,
body[data-page="home"] .site-header.is-scrolled .staff-access-link,
body[data-page="home"] .site-header.is-scrolled .nav-toggle {
  color: var(--white);
  background: rgba(5, 10, 20, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 28px rgba(1, 6, 16, 0.18);
  backdrop-filter: blur(12px);
}

body[data-page="home"] .site-header.is-scrolled .site-nav a,
body[data-page="home"] .site-header.is-scrolled .site-nav a:hover,
body[data-page="home"] .site-header.is-scrolled .site-nav a.active {
  color: var(--white);
}

@keyframes brand-signature-glow {
  0%,
  22%,
  100% {
    filter:
      drop-shadow(0 1px 0 rgba(255, 255, 255, 0.85))
      drop-shadow(0 5px 10px rgba(2, 8, 20, 0.28))
      drop-shadow(0 0 9px rgba(95, 217, 255, 0.2));
  }

  48% {
    filter:
      drop-shadow(0 1px 0 rgba(255, 255, 255, 0.9))
      drop-shadow(0 5px 10px rgba(2, 8, 20, 0.28))
      drop-shadow(0 0 13px rgba(143, 207, 60, 0.28));
  }

  74% {
    filter:
      drop-shadow(0 1px 0 rgba(255, 255, 255, 0.9))
      drop-shadow(0 5px 10px rgba(2, 8, 20, 0.28))
      drop-shadow(0 0 12px rgba(216, 6, 33, 0.22));
  }
}

.logo-brand:hover .header-logo,
.logo-brand:focus-visible .header-logo {
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.82))
    drop-shadow(0 11px 22px rgba(2, 8, 20, 0.36))
    drop-shadow(0 0 20px rgba(95, 217, 255, 0.3));
  transform: translateY(-1px) scale(1.012);
}

.footer-logo {
  width: min(280px, 72vw);
  max-height: 150px;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(95, 217, 255, 0.55);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(22, 105, 216, 0.28), rgba(213, 222, 234, 0.08));
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  color: var(--ink);
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", sans-serif;
  font-size: 1.04rem;
  font-weight: 740;
  font-variation-settings: "wght" 740, "wdth" 84;
  line-height: 0.96;
  text-transform: uppercase;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 650;
  line-height: 1.15;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
}

body[data-page="home"] .site-nav {
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(5, 10, 20, 0.58);
  box-shadow: 0 10px 28px rgba(1, 6, 16, 0.18);
  backdrop-filter: blur(12px) saturate(120%);
  transition: background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

body[data-page="home"] .site-header.is-scrolled .site-nav {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(5, 10, 20, 0.7);
  box-shadow: 0 10px 28px rgba(1, 6, 16, 0.18);
  backdrop-filter: blur(12px);
}

.site-nav a {
  position: relative;
  border-radius: 4px;
  padding: 10px 12px;
  color: #536274;
  font-size: 0.78rem;
  font-weight: 680;
  text-transform: uppercase;
  transition: color 140ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  right: 12px;
  bottom: 4px;
  left: 12px;
  height: 1px;
  background: var(--accent-text-gradient);
}

body[data-page="home"] .site-nav a {
  color: rgba(255, 255, 255, 0.78);
  padding-right: 10px;
  padding-left: 10px;
}

body[data-page="home"] .site-nav a:hover,
body[data-page="home"] .site-nav a.active {
  color: var(--white);
}

body[data-page="home"] .site-header.is-scrolled .site-nav a {
  color: rgba(255, 255, 255, 0.78);
}

body[data-page="home"] .site-header.is-scrolled .site-nav a:hover,
body[data-page="home"] .site-header.is-scrolled .site-nav a.active {
  color: var(--white);
}

.staff-access-link {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(95, 111, 130, 0.32);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  transition: border-color 140ms ease, background-color 140ms ease, color 140ms ease;
}

.staff-access-link:hover,
.staff-access-link:focus-visible {
  border-color: var(--pine);
  color: var(--pine);
  background: #f4f8f2;
}

body[data-page="home"] .staff-access-link,
body[data-page="home"] .nav-toggle {
  color: var(--white);
  background: rgba(5, 10, 20, 0.58);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 28px rgba(1, 6, 16, 0.16);
  backdrop-filter: blur(12px);
}

body[data-page="home"] .site-header.is-scrolled .staff-access-link,
body[data-page="home"] .site-header.is-scrolled .nav-toggle {
  color: var(--white);
  background: rgba(5, 10, 20, 0.7);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 28px rgba(1, 6, 16, 0.18);
  backdrop-filter: blur(12px);
}

.staff-access-link svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-button,
.button,
.icon-button {
  border: 0;
}

.quote-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  gap: 8px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: 4px;
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(10, 16, 24, 0.14);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

body[data-page="home"] .quote-button {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(5, 10, 20, 0.72);
  box-shadow: 0 10px 28px rgba(1, 6, 16, 0.2);
  backdrop-filter: blur(12px);
  transition: transform 140ms ease, background-color 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
}

body[data-page="home"] .site-header.is-scrolled .quote-button {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 8px 20px rgba(10, 16, 24, 0.14);
  backdrop-filter: none;
}

.quote-button svg,
.button svg,
.icon-button svg,
.solution-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quote-count {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--white);
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
}

.icon-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  border: 1px solid var(--steel);
  background: var(--silver);
  color: var(--ink);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: clamp(540px, calc(100svh - 104px), 680px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.product-hero {
  display: block;
  min-height: 100svh;
  overflow: hidden;
  contain: paint;
  background: #061329;
  line-height: 0;
}

.product-hero::before,
.product-hero::after {
  content: none;
  display: none;
  background: none;
}

.hero > img,
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) brightness(1.02);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.98) 0%, rgba(248, 250, 252, 0.92) 34%, rgba(248, 250, 252, 0.4) 52%, rgba(248, 250, 252, 0.06) 70%),
    linear-gradient(0deg, rgba(248, 250, 252, 0.2), rgba(248, 250, 252, 0.01) 56%);
}

.hero.product-hero::before,
.hero.product-hero::after {
  content: none;
  display: none;
  background: none;
}

.hero-art {
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  padding: 0;
  background: #061329;
}

.hero-art img {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: center 15%;
  filter: none;
}

.hero-overlay-copy {
  position: absolute;
  top: 60%;
  right: clamp(32px, 6vw, 112px);
  z-index: 2;
  width: min(43vw, 650px);
  color: var(--white);
  line-height: normal;
  text-align: center;
  transform: translateY(-50%);
}

.product-hero .hero-overlay-copy h1 {
  margin: 0;
  color: var(--white);
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", sans-serif;
  font-size: 5.2rem;
  font-weight: 800;
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.22),
    0 8px 28px rgba(0, 4, 16, 0.48);
}

.product-hero .hero-overlay-copy h1 span {
  display: block;
}

.hero-overlay-copy p {
  max-width: 560px;
  margin: 24px auto 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.35rem;
  line-height: 1.35;
  text-shadow: 0 3px 16px rgba(0, 4, 16, 0.7);
}

.hero-summary-band {
  padding: 42px 0 46px;
  color: var(--ink);
  background: var(--white);
  border-top: 1px solid rgba(10, 16, 24, 0.12);
  border-bottom: 1px solid rgba(10, 16, 24, 0.1);
}

.hero-summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.62fr);
  gap: 40px;
  align-items: end;
}

.hero-summary-grid .hero-copy {
  max-width: 780px;
}

.hero-summary-band h2 {
  margin: 0;
  max-width: 780px;
  color: var(--ink);
  font-size: 3.35rem;
  font-weight: 660;
  line-height: 0.98;
  letter-spacing: 0;
  text-shadow:
    -1px 1px 0 rgba(20, 116, 71, 0.22),
    0 1px 0 rgba(143, 207, 60, 0.18),
    1px 2px 0 rgba(95, 217, 255, 0.22),
    2px 2px 0 rgba(216, 6, 33, 0.18);
}

.hero-summary-band p.lede {
  max-width: 680px;
  margin: 16px 0 0;
  color: #334255;
  font-size: 1.12rem;
  line-height: 1.58;
}

.hero-summary-band .hero-actions {
  margin-top: 22px;
}

.hero-summary-grid .hero-metrics {
  grid-template-columns: 1fr;
  align-self: stretch;
  max-width: none;
  margin: 0;
  padding: 0 0 0 24px;
  border-top: 0;
  border-left: 1px solid rgba(10, 16, 24, 0.14);
}

.hero-summary-grid .hero-metrics div {
  padding: 14px 0 0;
  border-top: 1px solid rgba(10, 16, 24, 0.14);
  border-left: 0;
}

.hero-summary-grid .hero-metrics div:first-child {
  padding-top: 0;
  border-top: 0;
}

.hero-summary-grid .hero-metrics dd {
  max-width: 360px;
  font-size: 0.94rem;
}

.hero-detail-panel {
  display: flex;
  align-items: center;
  background: var(--white);
  padding: clamp(28px, 3.6vw, 52px);
}

.hero-detail-panel .hero-copy {
  max-width: 720px;
}

.hero-detail-panel h1 {
  font-size: 3.35rem;
  line-height: 0.98;
}

.hero-detail-panel p.lede {
  margin-top: 16px;
  color: #334255;
}

.hero-detail-panel .hero-actions {
  margin-top: 24px;
}

.hero-detail-panel .hero-metrics {
  margin-top: 28px;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--content-max), calc(100% - (2 * var(--page-gutter))));
  margin: 0 auto;
  padding: 72px 0;
}

.hero-content.with-visual {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
}

.hero-copy {
  max-width: 740px;
}

.hero-intro {
  padding: 72px 0 84px;
  border-top: 0;
}

.hero-intro .hero-copy {
  max-width: 920px;
}

.hero-intro h1 {
  margin: 0;
  max-width: 860px;
  color: var(--ink);
  font-size: 4.2rem;
  font-weight: 660;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-intro p.lede {
  max-width: 680px;
  margin: 18px 0 0;
  color: #334255;
  font-size: 1.18rem;
  line-height: 1.6;
}

.hero-product-visual {
  display: grid;
  gap: 14px;
  align-self: stretch;
  min-height: 430px;
  align-content: center;
}

.visual-card,
.flow-ribbon {
  border: 1px solid rgba(213, 222, 234, 0.18);
  border-radius: 8px;
  background: rgba(11, 17, 28, 0.72);
  box-shadow: 0 24px 60px rgba(4, 9, 17, 0.26);
}

.visual-card {
  display: grid;
  gap: 8px;
  padding: 18px;
}

.visual-card-main {
  grid-template-columns: 68px minmax(0, 1fr);
  align-items: center;
}

.visual-card img {
  position: static;
  width: 64px;
  height: auto;
  grid-row: span 2;
  filter: drop-shadow(0 12px 28px rgba(95, 217, 255, 0.2));
}

.visual-card span,
.flow-ribbon span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.visual-card strong {
  color: var(--white);
  font-size: 1.5rem;
  line-height: 1.14;
}

.flow-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
}

.flow-ribbon span {
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(95, 217, 255, 0.24);
  border-radius: 6px;
  background: rgba(95, 217, 255, 0.08);
}

.eyebrow,
.kicker {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  max-width: 860px;
  color: var(--ink);
  font-size: 4.8rem;
  font-weight: 660;
  line-height: 0.97;
  letter-spacing: 0;
  text-shadow:
    -1px 1px 0 rgba(20, 116, 71, 0.34),
    0 1px 0 rgba(143, 207, 60, 0.28),
    1px 2px 0 rgba(95, 217, 255, 0.32),
    2px 2px 0 rgba(216, 6, 33, 0.26);
}

.hero p.lede,
.page-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: #334255;
  font-size: 1.18rem;
  line-height: 1.6;
}

.product-hero .hero-detail-panel h1 {
  margin: 0;
  max-width: 760px;
  color: var(--ink);
  font-size: 3.35rem;
  font-weight: 660;
  line-height: 0.98;
  letter-spacing: 0;
}

.product-hero .hero-detail-panel p.lede {
  max-width: 680px;
  margin-top: 16px;
  color: #334255;
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 4px;
  padding: 0 18px;
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 140ms ease, background-color 140ms ease, border-color 140ms ease, box-shadow 140ms ease;
}

.button:hover,
.quote-button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.button.primary:hover {
  background: var(--signal-hover);
  box-shadow: 0 10px 24px rgba(112, 140, 8, 0.2);
}

.quote-button:hover {
  background: #202a36;
  box-shadow: 0 10px 24px rgba(10, 16, 24, 0.2);
}

.button.primary {
  color: var(--ink);
  background: var(--signal);
  box-shadow: 0 8px 20px rgba(112, 140, 8, 0.16);
}

.button.secondary {
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--steel);
}

.button.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(10, 16, 24, 0.24);
}

.button.small {
  min-height: 38px;
  padding: 0 12px;
  font-size: 0.88rem;
}

.button.wide {
  width: 100%;
}

.hero-metrics,
.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 860px;
  margin-top: 36px;
}

.hero-metrics {
  padding-top: 20px;
  border-top: 1px solid rgba(10, 16, 24, 0.18);
}

.hero-metrics div,
.metric-strip div {
  border-left: 1px solid rgba(10, 16, 24, 0.14);
  padding: 0 18px;
}

.hero-metrics div:first-child {
  border-left: 0;
  padding-left: 0;
}

.hero-metrics dt,
.metric-strip span {
  color: var(--cyan);
  font-size: 0.82rem;
}

.hero-metrics dd,
.metric-strip strong {
  display: block;
  margin: 4px 0 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 750;
  line-height: 1.35;
}

.metric-strip strong {
  color: var(--ink);
}

.hero-metrics dd,
.dark .metric-strip strong {
  color: var(--ink);
}

.section {
  padding: 96px 0;
  border-top: 1px solid rgba(117, 132, 154, 0.14);
}

.section.dark {
  color: var(--ink);
  background: #edf2f6;
}

.section.silver {
  background: var(--paper);
}

.section.white {
  background: var(--white);
}

.section-inner {
  width: min(var(--content-max), calc(100% - (2 * var(--page-gutter))));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading h2 {
  margin: 0;
  max-width: 800px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.06;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.dark .section-heading p,
.dark .muted,
.dark .solution-card p,
.dark .solution-card li {
  color: var(--muted);
}

.mission-grid,
.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.6fr);
  gap: 28px;
  align-items: start;
}

.mission-copy h2,
.content-block h2 {
  margin: 0 0 16px;
  font-size: 2.95rem;
  font-weight: 700;
  line-height: 1.06;
}

.mission-copy p,
.content-block p {
  color: var(--muted);
  font-size: 1.05rem;
}

.security-list,
.process-list,
.status-list {
  display: grid;
  gap: 12px;
}

.security-list div,
.process-list div,
.status-list span {
  border: 1px solid var(--steel);
  border-radius: 4px;
  padding: 16px;
  background: var(--white);
  color: var(--muted);
  box-shadow: 0 8px 20px rgba(10, 16, 24, 0.04);
}

.practice-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
  border-top: 1px solid var(--steel);
  border-bottom: 1px solid var(--steel);
}

.practice-strip article {
  min-width: 0;
  padding: 22px;
}

.practice-strip article + article {
  border-left: 1px solid var(--steel);
}

.practice-strip span,
.catalog-count {
  display: block;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.catalog-count {
  margin: 14px 0 22px;
}

.practice-strip strong {
  display: block;
  margin-top: 7px;
  font-size: 0.98rem;
  line-height: 1.5;
}

.security-list strong,
.process-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}

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

.solution-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(7, 13, 24, 0.05);
  transition: transform 150ms ease, border-color 150ms ease;
}

.solution-card::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 22px;
  left: 22px;
  height: 2px;
  background: var(--cyan);
}

.solution-card:hover {
  transform: translateY(-1px);
  border-color: rgba(95, 217, 255, 0.48);
}

.dark .solution-card {
  background: var(--white);
}

.solution-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  color: var(--cyan);
  background: rgba(29, 139, 255, 0.12);
}

.solution-card h3,
.product-card h3,
.timeline-item h3 {
  margin: 16px 0 10px;
  font-weight: 700;
  line-height: 1.15;
}

.solution-card p {
  color: var(--muted);
}

.solution-card ul,
.spec-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.solution-card li,
.spec-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.94rem;
}

.solution-card li + li,
.spec-list li + li {
  margin-top: 8px;
}

.solution-card li::before,
.spec-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--blue-2);
}

.page-hero {
  position: relative;
  min-height: 400px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper);
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--content-max), calc(100% - (2 * var(--page-gutter))));
  margin: 0 auto;
  padding: 68px 0;
}

.page-hero h1 {
  max-width: 920px;
  font-size: 3.65rem;
  line-height: 1;
}

.builder-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 410px);
  gap: 24px;
  align-items: start;
}

.builder-layout > aside {
  min-width: 0;
  align-self: stretch;
}

.builder-config {
  display: grid;
  gap: 18px;
}

.build-visualizer,
.preset-panel {
  border: 1px solid var(--steel);
  border-radius: 6px;
  padding: 18px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(7, 13, 24, 0.05);
}

.visualizer-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.visualizer-head h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.05;
}

.visualizer-badge {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 12px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.chassis-stage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.8fr);
  gap: 18px;
  align-items: stretch;
}

.chassis-shell {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
  min-height: 480px;
  border: 1px solid rgba(95, 217, 255, 0.34);
  border-radius: 8px;
  padding: 18px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(5, 7, 11, 0.96), rgba(13, 25, 42, 0.96)),
    linear-gradient(90deg, rgba(95, 217, 255, 0.08), transparent);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.chassis-topline,
.chassis-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

.chassis-topline span,
.chassis-footer span {
  color: var(--steel);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chassis-topline strong {
  color: var(--cyan);
}

.chassis-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-template-rows: repeat(5, minmax(82px, 1fr));
  gap: 10px;
}

.chassis-slot {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  border: 1px solid rgba(213, 222, 234, 0.18);
  border-radius: 8px;
  padding: 12px;
  color: var(--white);
  text-align: left;
  background: rgba(255, 255, 255, 0.055);
}

.chassis-slot:hover,
.chassis-slot:focus-visible {
  border-color: rgba(95, 217, 255, 0.72);
  background: rgba(95, 217, 255, 0.1);
}

.slot-enclosure {
  grid-column: span 6;
}

.slot-cpu {
  grid-column: span 2;
  grid-row: span 2;
}

.slot-gpu {
  grid-column: span 4;
  grid-row: span 2;
}

.slot-ram,
.slot-storage {
  grid-column: span 2;
}

.slot-networking,
.slot-security {
  grid-column: span 2;
}

.slot-cooling {
  grid-column: span 4;
}

.slot-category {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.chassis-slot strong {
  line-height: 1.14;
  overflow-wrap: anywhere;
}

.chassis-slot small {
  color: var(--steel);
  font-size: 0.78rem;
  line-height: 1.3;
}

.visualizer-readout {
  display: grid;
  gap: 14px;
  align-content: start;
  border: 1px solid var(--steel);
  border-radius: 8px;
  padding: 16px;
  background: var(--silver);
}

.visualizer-readout > p {
  margin: 0;
  color: var(--muted);
}

.build-meter {
  display: grid;
  gap: 8px;
}

.build-meter span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.build-meter strong {
  font-size: 3rem;
  line-height: 1;
}

.build-meter div,
.rating-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(117, 132, 154, 0.24);
}

.build-meter i,
.rating-track i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.rating-grid {
  display: grid;
  gap: 10px;
}

.rating-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(86px, 0.34fr) 34px;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--steel);
  border-radius: 8px;
  padding: 10px;
  background: var(--white);
}

.rating-row strong,
.rating-row span {
  display: block;
}

.rating-row span {
  color: var(--muted);
  font-size: 0.8rem;
}

.rating-row b {
  color: var(--blue);
  text-align: right;
}

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

.preset-card {
  min-height: 132px;
  display: grid;
  align-content: start;
  gap: 8px;
  border: 1px solid var(--steel);
  border-radius: 8px;
  padding: 14px;
  color: var(--ink);
  text-align: left;
  background: var(--silver);
}

.preset-card:hover,
.preset-card.selected {
  border-color: var(--blue);
  background: #eaf3ff;
}

.preset-card span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preset-card strong,
.preset-card small {
  overflow-wrap: anywhere;
}

.preset-card small {
  color: var(--muted);
  font-size: 0.84rem;
}

.builder-group {
  border: 1px solid var(--steel);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 13, 24, 0.04);
}

.builder-group-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.builder-group-heading span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.builder-group-heading strong {
  font-size: 1.05rem;
}

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

.option-card {
  min-height: 142px;
  display: grid;
  align-content: space-between;
  gap: 10px;
  border: 1px solid var(--steel);
  border-radius: 8px;
  padding: 14px;
  text-align: left;
  background: var(--silver);
  color: var(--ink);
}

.option-card:hover,
.option-card.selected {
  border-color: var(--blue);
  background: #eaf3ff;
}

.option-card.selected {
  box-shadow: inset 4px 0 0 var(--blue);
}

.option-name {
  font-weight: 900;
  line-height: 1.2;
}

.option-short {
  color: var(--muted);
  font-size: 0.9rem;
}

.option-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
}

.constraint-list {
  display: grid;
  gap: 8px;
  margin: 16px 0;
}

.constraint-list p {
  margin: 0;
  border: 1px solid rgba(213, 222, 234, 0.16);
  border-radius: 8px;
  padding: 10px;
  color: var(--steel);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.86rem;
}

.summary-panel {
  position: sticky;
  top: 96px;
  max-height: calc(100svh - 116px);
  overflow: auto;
  border-radius: 8px;
  padding: 22px;
  color: var(--white);
  background: var(--ink);
  box-shadow: var(--shadow);
}

.summary-panel h2 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.05;
}

.score-ring {
  width: 148px;
  height: 148px;
  display: grid;
  place-items: center;
  margin: 24px auto;
  border-radius: 50%;
  background: conic-gradient(var(--cyan) var(--score), rgba(255, 255, 255, 0.12) 0);
  position: relative;
}

.score-ring::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  background: var(--ink);
}

.score-ring span,
.score-ring small {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
}

.score-ring span {
  font-size: 2.5rem;
  font-weight: 900;
}

.score-ring small {
  color: var(--steel);
}

.spec-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.spec-metrics div {
  border: 1px solid rgba(213, 222, 234, 0.16);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.05);
}

.spec-metrics dt {
  color: var(--muted);
  font-size: 0.78rem;
}

.spec-metrics dd {
  margin: 4px 0 0;
  font-weight: 900;
  overflow-wrap: anywhere;
}

.status-list {
  margin: 16px 0;
}

.status-list span {
  background: rgba(255, 255, 255, 0.06);
}

.status-list .success {
  border-color: rgba(35, 178, 111, 0.45);
  color: #a9f4ca;
}

.status-list .warning {
  border-color: rgba(229, 161, 35, 0.55);
  color: #ffe0a3;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin: 18px 0;
  padding-top: 16px;
  border-top: 1px solid rgba(213, 222, 234, 0.16);
}

.summary-total span,
.fine-print {
  color: var(--muted);
}

.summary-total strong {
  font-size: 1.6rem;
}

.fine-print {
  margin: 14px 0 0;
  font-size: 0.82rem;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.catalog-toolbar input,
.catalog-toolbar select,
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--steel);
  border-radius: 4px;
  padding: 0 12px;
  color: var(--ink);
  background: var(--white);
}

.field textarea {
  min-height: 140px;
  padding-top: 12px;
  resize: vertical;
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.category-filters button {
  min-height: 38px;
  border: 1px solid var(--steel);
  border-radius: 999px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  transition: color 140ms ease, background-color 140ms ease, border-color 140ms ease;
}

.category-filters button.active {
  color: var(--white);
  border-color: var(--ink);
  background: var(--ink);
}

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

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

.product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid var(--steel);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(7, 13, 24, 0.05);
  transition: transform 150ms ease, border-color 150ms ease, box-shadow 150ms ease;
}

.product-card:hover {
  transform: translateY(-1px);
  border-color: #b8c8da;
  box-shadow: 0 14px 30px rgba(7, 13, 24, 0.08);
}

.part-visual {
  min-height: 150px;
  display: grid;
  place-items: center;
  color: #1775a9;
  background:
    linear-gradient(rgba(22, 105, 216, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(22, 105, 216, 0.07) 1px, transparent 1px),
    #eef4f8;
  background-size: 24px 24px;
}

.part-visual.has-product-image {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 14px;
  background: #ffffff;
}

.product-photo {
  width: 100%;
  height: 210px;
  display: block;
  object-fit: contain;
  object-position: center;
}

.part-fallback {
  display: none;
}

.part-visual.image-failed .product-photo {
  display: none;
}

.part-visual.image-failed .part-fallback {
  width: 100%;
  display: grid;
  place-items: center;
}

.part-svg {
  width: 88%;
  height: 130px;
  fill: rgba(22, 105, 216, 0.04);
  stroke: currentColor;
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-body {
  display: grid;
  align-content: start;
  padding: 18px;
}

.product-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 44px;
}

.sku {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

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

.sourcing-note {
  max-width: 170px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 750;
  line-height: 1.35;
}

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

.timeline-item,
.contact-panel,
.info-panel {
  border: 1px solid var(--steel);
  border-radius: 6px;
  padding: 22px;
  background: var(--white);
}

.timeline-item {
  border: 0;
  border-top: 3px solid var(--blue);
  border-radius: 0;
  padding: 20px 4px 0;
  background: transparent;
}

.timeline-item span {
  color: var(--blue);
  font-weight: 900;
}

.timeline-item p,
.contact-panel p,
.info-panel p {
  color: var(--muted);
}

.contact-heading {
  margin-bottom: 22px;
}

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

.contact-cards-consolidated {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
  min-height: 236px;
  display: grid;
  align-content: start;
  gap: 10px;
  border: 1px solid var(--steel);
  border-radius: 6px;
  padding: 20px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(4, 9, 17, 0.05);
}

.contact-card span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 10px;
  background: #eaf3ff;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.2;
}

.contact-card a,
.contact-value {
  color: var(--blue);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-card p {
  margin: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.65fr);
  gap: 24px;
  align-items: start;
}

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

.contact-panel h2,
.info-panel h2 {
  margin-top: 0;
  line-height: 1.1;
}

.contact-facts {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.contact-facts div {
  border: 1px solid var(--steel);
  border-radius: 8px;
  padding: 12px;
  background: var(--silver);
}

.contact-facts dt {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-facts dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 750;
}

.field {
  display: grid;
  gap: 6px;
}

.field label {
  font-weight: 800;
}

.form-response {
  min-height: 24px;
  color: var(--blue);
  font-weight: 800;
}

.form-privacy {
  margin: 0;
  border-left: 3px solid var(--blue);
  padding: 10px 12px;
  color: var(--ink) !important;
  background: #eaf3ff;
  font-size: 0.9rem;
}

.quote-drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s linear 180ms;
}

.quote-drawer.open {
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.quote-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 11, 0.58);
  opacity: 0;
  transition: opacity 160ms ease;
}

.quote-drawer.open .quote-backdrop {
  opacity: 1;
}

.quote-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(430px, 100%);
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  padding: 24px;
  overflow: auto;
  color: var(--white);
  background: var(--ink);
  transform: translateX(100%);
  transition: transform 180ms ease;
}

.quote-drawer.open .quote-panel {
  transform: translateX(0);
}

.quote-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.quote-panel h2 {
  margin: 0;
}

.quote-lines {
  display: grid;
  gap: 12px;
}

.quote-line {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  border: 1px solid rgba(213, 222, 234, 0.16);
  border-radius: 8px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.quote-line span,
.quote-line button,
.empty-state p {
  color: var(--muted);
}

.quote-line span {
  display: block;
  font-size: 0.86rem;
}

.quote-line button {
  border: 0;
  padding: 0;
  background: transparent;
  text-decoration: underline;
}

.quote-checkout-form {
  display: grid;
  gap: 13px;
  margin-top: 20px;
  border-top: 1px solid rgba(213, 222, 234, 0.16);
  padding-top: 20px;
}

.quote-checkout-heading h3 {
  margin: 0;
  font-size: 1.15rem;
}

.quote-checkout-heading p:last-child {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.quote-checkout-form .field {
  gap: 6px;
}

.quote-checkout-form .field label {
  color: var(--white);
  font-size: 0.78rem;
}

.quote-checkout-form .field label span {
  color: var(--muted);
  font-weight: 500;
}

.quote-checkout-form input,
.quote-checkout-form textarea {
  border-color: rgba(213, 222, 234, 0.2);
  color: var(--white);
  background: #111b2b;
}

.quote-checkout-form input::placeholder,
.quote-checkout-form textarea::placeholder {
  color: #8ea0b7;
}

.quote-checkout-form .privacy-consent {
  color: #aebdd0;
}

.quote-checkout-form .form-response {
  color: var(--cyan);
  font-size: 0.82rem;
}

.quote-checkout-form .form-response a {
  color: var(--cyan);
}

.quote-checkout-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.quote-receipt {
  border-color: rgba(95, 217, 255, 0.38);
  background: rgba(95, 217, 255, 0.08);
}

.quote-receipt strong {
  color: var(--white);
}

.quote-total {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 18px 0;
  padding-top: 18px;
  border-top: 1px solid rgba(213, 222, 234, 0.16);
}

.empty-state {
  border: 1px solid rgba(213, 222, 234, 0.16);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.05);
}

.catalog-empty {
  grid-column: 1 / -1;
  color: var(--white);
  background: var(--ink);
}

.data-source {
  display: block;
  max-width: 860px;
  margin: 0 0 18px;
  border: 1px solid var(--steel);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--muted);
  background: var(--silver);
  font-size: 0.88rem;
  font-weight: 750;
}

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

.integration-card {
  display: grid;
  align-content: space-between;
  min-height: 260px;
  border: 1px solid var(--steel);
  border-radius: 8px;
  padding: 20px;
  background: var(--white);
  box-shadow: 0 18px 45px rgba(7, 13, 24, 0.07);
}

.integration-card h3 {
  margin: 14px 0 10px;
  line-height: 1.1;
}

.integration-card p {
  color: var(--muted);
}

.integration-card code {
  display: block;
  overflow-wrap: anywhere;
  border-radius: 6px;
  padding: 10px;
  color: var(--cyan);
  background: var(--ink);
  font-size: 0.86rem;
}

.api-status {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  border-radius: 999px;
  padding: 0 10px;
  color: var(--blue);
  background: #eaf3ff;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.site-footer {
  padding: 48px var(--page-gutter);
  color: var(--white);
  background: var(--black);
}

.site-footer-inner {
  width: min(var(--content-max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: 36px;
}

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

.footer-grid h2 {
  margin: 0 0 10px;
  font-size: 1rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  margin: 8px 0 0;
  color: var(--steel);
}

.live-region {
  position: fixed;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

@media (max-width: 1080px) {
  :root {
    --page-gutter: 24px;
  }

  .site-header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
  }

  body[data-page="home"] .site-header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto auto;
  }

  body[data-page="home"] .nav-toggle {
    order: 3;
  }

  body[data-page="home"] .staff-access-link {
    order: 4;
  }

  .product-hero {
    grid-template-columns: 1fr;
    min-height: 100svh;
  }

  .hero-art {
    height: 100svh;
    min-height: 560px;
    padding: 0;
  }

  .hero-art img {
    width: 100%;
    height: 100%;
    object-position: center 15%;
  }

  .hero-overlay-copy {
    right: 28px;
    width: min(44vw, 520px);
  }

  .product-hero .hero-overlay-copy h1 {
    font-size: 4.35rem;
  }

  .hero-overlay-copy p {
    max-width: 460px;
    font-size: 1.12rem;
  }

  .hero-summary-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: start;
  }

  .hero-summary-grid .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 20px 0 0;
    border-top: 1px solid rgba(10, 16, 24, 0.16);
    border-left: 0;
  }

  .hero-summary-grid .hero-metrics div {
    padding: 0 18px;
    border-top: 0;
    border-left: 1px solid rgba(10, 16, 24, 0.14);
  }

  .hero-summary-grid .hero-metrics div:first-child {
    padding-left: 0;
    border-left: 0;
  }

  .hero-detail-panel {
    padding: 56px var(--page-gutter) 64px;
  }

  .hero-detail-panel h1 {
    font-size: 3.1rem;
  }

  .product-hero .hero-detail-panel h1 {
    font-size: 3.1rem;
  }

  .hero h1 {
    font-size: 4.2rem;
  }

  .page-hero h1 {
    font-size: 3.2rem;
  }

  .section-heading h2,
  .mission-copy h2,
  .content-block h2 {
    font-size: 2.8rem;
  }

  .nav-toggle {
    display: inline-grid;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    justify-self: stretch;
    gap: 0;
    padding: 14px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--steel);
    box-shadow: 0 18px 36px rgba(10, 16, 24, 0.14);
  }

  body[data-page="home"] .site-nav,
  body[data-page="home"] .site-header.is-scrolled .site-nav {
    padding: 14px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(95, 111, 130, 0.2);
    box-shadow: 0 18px 36px rgba(10, 16, 24, 0.16);
    backdrop-filter: blur(18px);
  }

  body[data-page="home"] .site-nav a,
  body[data-page="home"] .site-nav a:hover,
  body[data-page="home"] .site-nav a.active {
    color: var(--ink);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .solutions-grid,
  .featured-grid,
  .integration-grid,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .builder-layout,
  .contact-grid,
  .hero-content.with-visual,
  .chassis-stage {
    grid-template-columns: 1fr;
  }

  .hero-product-visual {
    min-height: 0;
  }

  .summary-panel {
    position: static;
    max-height: none;
    overflow: visible;
  }

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

@media (max-width: 900px) {
  .hero-art {
    height: 100svh;
    min-height: 620px;
    padding: 0;
    background: #061329;
  }

  .hero-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 45% 38%;
  }

  .hero-overlay-copy {
    top: 58%;
    right: 24px;
    width: min(49vw, 430px);
  }

  .product-hero .hero-overlay-copy h1 {
    font-size: 3.7rem;
  }

  .hero-overlay-copy p {
    margin-top: 18px;
    font-size: 1.02rem;
  }
}

@media (max-width: 760px) {
  :root {
    --page-gutter: 18px;
  }

  .site-header {
    padding: 0 var(--page-gutter);
  }

  #site-header {
    min-height: 65px;
  }

  .site-header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    gap: 10px;
    min-height: 76px;
  }

  body[data-page="home"] .site-header-inner {
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 72px;
  }

  body[data-page="home"] .staff-access-link {
    display: none;
  }

  body[data-page="home"] #site-header {
    position: fixed;
    min-height: 0;
  }

  body[data-page="home"] .site-header {
    color: var(--white);
    background: transparent;
    border-bottom-color: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }

  body[data-page="home"] .brand-wordmark {
    width: min(176px, 46vw);
  }

  .brand {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .logo-brand {
    grid-template-columns: minmax(120px, 1fr);
    gap: 0;
  }

  .brand-mark-image {
    width: 40px;
    height: 46px;
  }

  .brand-logo {
    width: min(180px, 46vw);
    max-height: 90px;
  }

  .header-logo {
    width: min(150px, 38vw);
    max-height: 70px;
  }

  .footer-logo-brand {
    grid-template-columns: minmax(140px, auto);
  }

  .footer-logo {
    width: min(240px, 70vw);
    max-height: 130px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 0.72rem;
  }

  .brand small {
    display: none;
  }

  .quote-button span:not(.quote-count) {
    display: none;
  }

  .hero {
    min-height: clamp(500px, calc(100svh - 136px), 620px);
  }

  .product-hero {
    min-height: 100svh;
  }

  .hero-art {
    height: 100svh;
    min-height: 620px;
    padding: 0;
  }

  .hero-art img {
    height: 100%;
    object-fit: cover;
    object-position: 43% 38%;
  }

  .hero-overlay-copy {
    top: auto;
    right: 18px;
    bottom: 28px;
    left: 18px;
    width: auto;
    text-align: right;
    transform: none;
  }

  .product-hero .hero-overlay-copy h1 {
    font-size: 2.95rem;
    line-height: 0.86;
  }

  .hero-overlay-copy p {
    max-width: 300px;
    margin: 16px 0 0 auto;
    font-size: 0.94rem;
    line-height: 1.4;
  }

  .page-hero > img {
    object-position: 76% center;
  }

  .hero-content {
    padding: 40px 0 34px;
  }

  .hero::after,
  .page-hero::after {
    background:
      linear-gradient(90deg, rgba(248, 250, 252, 0.95), rgba(248, 250, 252, 0.56)),
      linear-gradient(0deg, rgba(248, 250, 252, 0.72), rgba(248, 250, 252, 0.12));
  }

  .hero h1 {
    font-size: 2.85rem;
    line-height: 0.98;
  }

  .hero-intro {
    padding: 54px 0 64px;
  }

  .hero-intro h1 {
    font-size: 2.85rem;
    line-height: 0.98;
  }

  .hero-detail-panel h1 {
    font-size: 2.65rem;
  }

  .product-hero .hero-detail-panel {
    padding: 44px var(--page-gutter) 52px;
  }

  .product-hero .hero-detail-panel h1 {
    font-size: 2.45rem;
  }

  .hero-intro p.lede {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero p.lede,
  .hero-summary-band p.lede {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-summary-band {
    padding: 34px 0 40px;
  }

  .hero-summary-band h2 {
    font-size: 2.75rem;
    line-height: 0.98;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .page-hero h1 {
    font-size: 2.45rem;
    line-height: 1.02;
  }

  .hero .kicker,
  .page-hero .kicker {
    max-width: 100%;
    font-size: 0.72rem;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .metric-strip,
  .section-heading,
  .mission-grid,
  .two-column,
  .site-footer-inner,
  .footer-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 24px;
  }

  .hero-metrics div {
    padding: 0 12px;
  }

  .hero-metrics div:last-child {
    grid-column: 1 / -1;
    margin-top: 16px;
    padding-top: 16px;
    padding-left: 0;
    border-top: 1px solid rgba(10, 16, 24, 0.14);
    border-left: 0;
  }

  .hero-metrics dd {
    font-size: 0.88rem;
  }

  .hero-summary-grid .hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 4px;
  }

  .hero-summary-grid .hero-metrics div {
    padding: 0 12px;
  }

  .hero-summary-grid .hero-metrics div:last-child {
    grid-column: 1 / -1;
    margin-top: 16px;
    padding-top: 16px;
    padding-left: 0;
    border-top: 1px solid rgba(10, 16, 24, 0.14);
    border-left: 0;
  }

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

  .practice-strip article {
    padding: 18px 0;
  }

  .practice-strip article + article {
    border-top: 1px solid var(--steel);
    border-left: 0;
  }

  .visualizer-head {
    display: grid;
  }

  .visualizer-head h2,
  .summary-panel h2 {
    font-size: 1.75rem;
    line-height: 1.1;
  }

  .visualizer-badge {
    width: fit-content;
  }

  .chassis-shell {
    min-height: 0;
    padding: 14px;
  }

  .chassis-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .slot-cpu,
  .slot-enclosure,
  .slot-gpu,
  .slot-ram,
  .slot-storage,
  .slot-networking,
  .slot-security,
  .slot-cooling {
    grid-column: auto;
    grid-row: auto;
  }

  .rating-row {
    grid-template-columns: 1fr;
  }

  .rating-row b {
    text-align: left;
  }

  .flow-ribbon {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section {
    padding: 56px 0;
  }

  .section-heading h2,
  .mission-copy h2,
  .content-block h2 {
    font-size: 2.35rem;
  }

  .page-hero {
    min-height: 350px;
  }

  .page-hero-content {
    padding: 52px 0;
  }

  .section-heading {
    align-items: start;
  }

  .solutions-grid,
  .featured-grid,
  .catalog-grid,
  .integration-grid,
  .contact-cards,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-actions .button {
    width: 100%;
  }

  .spec-metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  :root {
    --page-gutter: 16px;
  }

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

  .site-header-inner {
    gap: 6px;
  }

  .staff-access-link {
    width: 36px;
    height: 38px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
  }

  .quote-button {
    min-height: 40px;
    gap: 4px;
    padding: 0 8px;
  }

  .logo-brand {
    grid-template-columns: minmax(104px, 1fr);
    gap: 0;
  }

  .brand-mark-image {
    width: 36px;
    height: 42px;
  }

  .header-logo {
    width: min(126px, 36vw);
    max-height: 62px;
  }

  body[data-page="home"] .header-logo {
    width: min(156px, 42vw);
    max-height: 64px;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-summary-band h2 {
    font-size: 2.4rem;
  }

  .hero-intro h1 {
    font-size: 2.5rem;
  }

  .hero-detail-panel h1 {
    font-size: 2.35rem;
  }

  .product-hero .hero-detail-panel {
    padding: 36px var(--page-gutter) 44px;
  }

  .product-hero .hero-detail-panel h1 {
    font-size: 2.15rem;
  }

  .page-hero h1 {
    font-size: 2.15rem;
  }

  .section-heading h2,
  .mission-copy h2,
  .content-block h2 {
    font-size: 2.05rem;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    padding: 14px 0 0;
    border-top: 1px solid rgba(10, 16, 24, 0.14);
    border-left: 0;
  }

  .hero-metrics div:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .hero-metrics div:last-child {
    grid-column: auto;
    margin-top: 0;
  }

  .hero-summary-grid .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-summary-grid .hero-metrics div,
  .hero-summary-grid .hero-metrics div:last-child {
    grid-column: auto;
    margin-top: 0;
    padding: 14px 0 0;
    border-top: 1px solid rgba(10, 16, 24, 0.14);
    border-left: 0;
  }

  .hero-summary-grid .hero-metrics div:first-child {
    padding-top: 0;
    border-top: 0;
  }
}

@media (max-width: 360px) {
  .brand strong {
    font-size: 0.76rem;
    white-space: nowrap;
  }

  .hero {
    min-height: min(500px, calc(100svh - 100px));
  }

  .product-hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 28px 0;
  }

  .hero h1 {
    font-size: 2.3rem;
  }

  .hero-summary-band h2 {
    font-size: 2.22rem;
  }

  .hero-intro h1 {
    font-size: 2.3rem;
  }

  .hero-detail-panel h1 {
    font-size: 2.15rem;
  }

  .product-hero .hero-detail-panel h1 {
    font-size: 2rem;
  }

  .hero p.lede {
    line-height: 1.42;
  }

  .hero-metrics {
    display: none;
  }
}
.bot-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.privacy-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.privacy-consent input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.68;
}

@keyframes accent-colour-cycle {
  0%,
  20% {
    background-position: 0% 50%;
  }

  25%,
  45% {
    background-position: 25% 50%;
  }

  50%,
  70% {
    background-position: 50% 50%;
  }

  75%,
  95% {
    background-position: 75% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

.visual-card span,
.flow-ribbon span,
.eyebrow,
.kicker,
.hero-metrics dt,
.metric-strip span,
.practice-strip span,
.catalog-count,
.chassis-topline strong,
.slot-category,
.build-meter span,
.rating-row b,
.preset-card span,
.builder-group-heading span,
.option-meta,
.product-meta,
.product-topline > *,
.timeline-item span,
.contact-card span,
.contact-card a,
.contact-value,
.contact-facts dt,
.form-response,
.quote-checkout-form .form-response,
.quote-checkout-form .form-response a,
.integration-card code,
.api-status,
.quote-count {
  color: transparent;
  background-image: var(--accent-cycle-gradient);
  background-repeat: no-repeat;
  background-size: 625% 100%;
  animation: accent-colour-cycle 15s linear infinite;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow:
    -1px 1px 1px rgba(20, 116, 71, 0.18),
    0 1px 1px rgba(95, 217, 255, 0.14),
    1px 1px 1px rgba(216, 6, 33, 0.18);
}

.visual-card span,
.eyebrow,
.kicker,
.hero-metrics dt,
.metric-strip span,
.practice-strip span,
.catalog-count,
.chassis-topline strong,
.slot-category,
.build-meter span,
.rating-row b,
.preset-card span,
.builder-group-heading span,
.timeline-item span,
.contact-card span,
.contact-card a,
.contact-value,
.contact-facts dt {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
}

.quote-count {
  color: var(--ink);
  background-color: var(--white);
  background-image: none;
  background-clip: border-box;
  -webkit-background-clip: border-box;
  -webkit-text-fill-color: var(--ink);
  animation: none;
  text-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
  .visual-card span,
  .flow-ribbon span,
  .eyebrow,
  .kicker,
  .hero-metrics dt,
  .metric-strip span,
  .practice-strip span,
  .catalog-count,
  .chassis-topline strong,
  .slot-category,
  .build-meter span,
  .rating-row b,
  .preset-card span,
  .builder-group-heading span,
  .option-meta,
  .product-meta,
  .product-topline > *,
  .timeline-item span,
  .contact-card span,
  .contact-card a,
  .contact-value,
  .contact-facts dt,
  .form-response,
  .quote-checkout-form .form-response,
  .quote-checkout-form .form-response a,
  .integration-card code,
  .api-status {
    background-image: var(--accent-text-gradient);
    background-size: 100% 100%;
    animation: none;
  }
}

.rating-row b {
  justify-self: end;
}

/* Premium cinematic emblem release */
.logo-brand,
.footer-logo-brand {
  grid-template-columns: auto;
  overflow: visible;
}

.brand-emblem-image {
  display: block;
  aspect-ratio: 1;
  object-fit: contain;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.38))
    drop-shadow(0 12px 24px rgba(1, 7, 18, 0.34));
}

.brand-composite {
  width: 268px;
  display: grid;
  grid-template-columns: 188px 66px;
  align-items: start;
  gap: 10px;
}

.brand-composite .brand-wordmark-image {
  width: 188px;
  height: auto;
  align-self: center;
}

.brand-composite .brand-emblem-image {
  width: 66px;
  height: 66px;
  max-height: none;
  align-self: start;
}

.footer-brand-composite {
  width: 340px;
  grid-template-columns: 226px 96px;
  gap: 18px;
}

.footer-brand-composite .brand-wordmark-image {
  width: 226px;
}

.footer-brand-composite .brand-emblem-image {
  width: 96px;
  height: 96px;
  max-height: none;
}

body[data-page="home"] .site-header {
  padding-top: 14px;
}

body[data-page="home"] .site-header-inner,
body[data-page="home"] .site-header.is-scrolled .site-header-inner {
  min-height: 84px;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background: rgba(3, 10, 23, 0.76);
  box-shadow: 0 18px 46px rgba(1, 5, 15, 0.28);
  backdrop-filter: blur(18px) saturate(125%);
}

body[data-page="home"] .logo-brand,
body[data-page="home"] .site-header.is-scrolled .logo-brand {
  width: 268px;
  height: 70px;
  overflow: visible;
}

body[data-page="home"] .site-nav,
body[data-page="home"] .site-header.is-scrolled .site-nav {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.product-hero {
  height: 88svh;
  min-height: 600px;
  max-height: 860px;
  background: #040b17;
}

.hero-art {
  position: relative;
  height: 100%;
  min-height: 0;
  display: grid;
  place-items: center;
  background: #040b17;
}

.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(4, 11, 23, 0.34), rgba(4, 11, 23, 0.06) 42%, rgba(4, 11, 23, 0.48)),
    url("/assets/hero-system-secure-clean-r1.webp");
  background-position: center;
  background-size: cover;
  opacity: 0.42;
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(3, 8, 18, 0.04) 35%, rgba(3, 8, 18, 0.26) 62%, rgba(3, 8, 18, 0.64) 100%);
  pointer-events: none;
}

.hero-art img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.hero-overlay-copy {
  top: 55%;
  right: 6vw;
  width: min(43vw, 610px);
  text-align: left;
}

.product-hero .hero-overlay-copy h1 {
  font-size: 5rem;
  line-height: 0.86;
}

.cinematic-word,
.cinematic-dash,
.cinematic-tagline span {
  opacity: 0;
  will-change: opacity, transform, filter;
}

.cinematic-word {
  transform: translateY(28px);
  filter: blur(10px);
  animation: cinematic-brand-arrival 1.05s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cinematic-word:nth-child(1) {
  animation-delay: 180ms;
}

.cinematic-word:nth-child(2) {
  animation-delay: 470ms;
}

.product-hero .hero-overlay-copy h1 .cinematic-dash {
  width: 82px;
  display: block;
  margin-top: 22px;
  overflow: hidden;
  color: #d9b96f;
  font-size: 2.1rem;
  line-height: 0.4;
  transform: scaleX(0);
  transform-origin: left center;
  animation: cinematic-rule-arrival 720ms cubic-bezier(0.16, 1, 0.3, 1) 1s forwards;
}

.hero-overlay-copy .cinematic-tagline {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.45;
  text-transform: uppercase;
}

.cinematic-tagline span {
  display: block;
  transform: translateY(18px);
  filter: blur(7px);
  animation: cinematic-tagline-arrival 850ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.cinematic-tagline span:first-child {
  color: #f0d18b;
  animation-delay: 1.28s;
}

.cinematic-tagline span:last-child {
  animation-delay: 1.5s;
}

@keyframes cinematic-brand-arrival {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes cinematic-rule-arrival {
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes cinematic-tagline-arrival {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .brand-composite {
    width: 230px;
    grid-template-columns: 160px 60px;
    gap: 10px;
  }

  .brand-composite .brand-wordmark-image {
    width: 160px;
  }

  .brand-composite .brand-emblem-image {
    width: 60px;
    height: 60px;
  }

  body[data-page="home"] .logo-brand,
  body[data-page="home"] .site-header.is-scrolled .logo-brand {
    width: 230px;
    height: 64px;
  }

  .product-hero .hero-overlay-copy h1 {
    font-size: 4rem;
  }
}

@media (max-width: 760px) {
  body[data-page="home"] .site-header {
    padding: 10px 12px 0;
  }

  body[data-page="home"] .site-header-inner,
  body[data-page="home"] .site-header.is-scrolled .site-header-inner {
    min-height: 68px;
    padding: 3px 8px;
  }

  .brand-composite {
    width: 184px;
    grid-template-columns: 124px 52px;
    gap: 8px;
  }

  .brand-composite .brand-wordmark-image {
    width: 124px;
  }

  .brand-composite .brand-emblem-image {
    width: 52px;
    height: 52px;
  }

  body[data-page="home"] .logo-brand,
  body[data-page="home"] .site-header.is-scrolled .logo-brand {
    width: 184px;
    height: 56px;
  }

  body[data-page="home"] .site-nav,
  body[data-page="home"] .site-header.is-scrolled .site-nav {
    top: calc(100% + 8px);
    padding: 14px;
    border: 1px solid rgba(95, 111, 130, 0.2);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 36px rgba(10, 16, 24, 0.16);
    backdrop-filter: blur(18px);
  }

  .product-hero {
    height: 88svh;
    min-height: 590px;
    max-height: 760px;
  }

  .hero-art {
    display: block;
    padding-top: 78px;
  }

  .hero-art img {
    width: 100%;
    height: auto;
    max-height: calc(100% - 190px);
    object-fit: contain;
    object-position: top center;
  }

  .hero-art::after {
    background: linear-gradient(0deg, rgba(3, 8, 18, 0.78) 0%, rgba(3, 8, 18, 0.16) 46%, rgba(3, 8, 18, 0.04) 100%);
  }

  .hero-overlay-copy {
    right: 18px;
    bottom: 24px;
    left: 18px;
    text-align: left;
  }

  .product-hero .hero-overlay-copy h1 {
    font-size: 2.8rem;
    line-height: 0.88;
  }

  .product-hero .hero-overlay-copy h1 .cinematic-dash {
    width: 58px;
    margin-top: 14px;
  }

  .hero-overlay-copy .cinematic-tagline {
    max-width: 330px;
    margin: 16px 0 0;
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .footer-brand-composite {
    width: 260px;
    grid-template-columns: 174px 74px;
    gap: 12px;
  }

  .footer-brand-composite .brand-wordmark-image {
    width: 174px;
  }

  .footer-brand-composite .brand-emblem-image {
    width: 74px;
    height: 74px;
  }
}

@media (max-width: 390px) {
  .brand-composite {
    width: 164px;
    grid-template-columns: 110px 46px;
  }

  .brand-composite .brand-wordmark-image {
    width: 110px;
  }

  .brand-composite .brand-emblem-image {
    width: 46px;
    height: 46px;
  }

  body[data-page="home"] .logo-brand,
  body[data-page="home"] .site-header.is-scrolled .logo-brand {
    width: 164px;
    height: 50px;
  }

  .product-hero .hero-overlay-copy h1 {
    font-size: 2.45rem;
  }

  .hero-overlay-copy .cinematic-tagline {
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cinematic-word,
  .cinematic-dash,
  .cinematic-tagline span {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }
}

/* Unified premium brand system release */
:root {
  --ink: #0d151f;
  --panel: #0b1625;
  --panel-2: #132238;
  --paper: #f5f7f9;
  --silver: #eef2f5;
  --steel: #d8e0e7;
  --line: #d2dce5;
  --muted: #59697b;
  --signal: #c8e339;
  --signal-hover: #b7d12c;
  --shadow: 0 18px 44px rgba(4, 12, 24, 0.1);
  --font-display: "Segoe UI Variable Display", "Aptos Display", "Helvetica Neue", Arial, sans-serif;
}

body {
  color: var(--ink);
  background: var(--paper);
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

#site-header {
  min-height: 82px;
  background: #07111f;
}

body[data-page="home"] #site-header {
  min-height: 0;
  background: transparent;
}

.site-header,
body[data-page="home"] .site-header,
body[data-page="home"] .site-header.is-scrolled {
  color: var(--white);
  background: rgba(7, 17, 31, 0.98);
  border-bottom: 1px solid rgba(180, 199, 218, 0.18);
  box-shadow: 0 12px 34px rgba(2, 8, 18, 0.12);
  backdrop-filter: blur(18px) saturate(120%);
}

body[data-page="home"] .site-header,
body[data-page="home"] .site-header.is-scrolled {
  padding: 12px var(--page-gutter) 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header-inner,
body[data-page="home"] .site-header-inner,
body[data-page="home"] .site-header.is-scrolled .site-header-inner {
  grid-template-columns: 40px 250px minmax(0, 1fr) auto;
  gap: 18px;
  min-height: 82px;
  padding: 0;
}

body[data-page="home"] .site-header-inner,
body[data-page="home"] .site-header.is-scrolled .site-header-inner {
  min-height: 82px;
  padding: 5px 12px;
  border: 1px solid rgba(195, 211, 228, 0.18);
  border-radius: 6px;
  background: rgba(5, 15, 29, 0.88);
  box-shadow: 0 18px 48px rgba(0, 5, 14, 0.26);
  backdrop-filter: blur(20px) saturate(125%);
}

.staff-access-link,
body[data-page="home"] .staff-access-link {
  order: 1;
  color: rgba(239, 246, 252, 0.86);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(195, 211, 228, 0.2);
  box-shadow: none;
  backdrop-filter: none;
}

.staff-access-link:hover,
.staff-access-link:focus-visible,
body[data-page="home"] .staff-access-link:hover,
body[data-page="home"] .staff-access-link:focus-visible {
  color: var(--white);
  background: rgba(95, 217, 255, 0.1);
  border-color: rgba(95, 217, 255, 0.46);
}

.logo-brand,
body[data-page="home"] .logo-brand,
body[data-page="home"] .site-header.is-scrolled .logo-brand {
  order: 2;
  width: 250px;
  height: 66px;
}

.site-nav,
body[data-page="home"] .site-nav,
body[data-page="home"] .site-header.is-scrolled .site-nav {
  order: 3;
  gap: clamp(16px, 1.8vw, 28px);
  padding: 0;
  color: rgba(235, 243, 250, 0.76);
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.site-nav a,
body[data-page="home"] .site-nav a,
body[data-page="home"] .site-header.is-scrolled .site-nav a {
  min-height: 42px;
  padding: 0;
  color: inherit;
  font-size: 0.74rem;
  font-weight: 680;
}

.site-nav a::after {
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pine), var(--sky-blue), var(--canada-red));
}

.site-nav a:hover,
.site-nav a.active,
body[data-page="home"] .site-nav a:hover,
body[data-page="home"] .site-nav a.active,
body[data-page="home"] .site-header.is-scrolled .site-nav a:hover,
body[data-page="home"] .site-header.is-scrolled .site-nav a.active {
  color: var(--white);
}

.quote-button,
body[data-page="home"] .quote-button,
body[data-page="home"] .site-header.is-scrolled .quote-button {
  order: 4;
  min-height: 44px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(195, 211, 228, 0.24);
  box-shadow: none;
  backdrop-filter: none;
}

.quote-button:hover,
body[data-page="home"] .quote-button:hover,
body[data-page="home"] .site-header.is-scrolled .quote-button:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(95, 217, 255, 0.44);
  box-shadow: 0 10px 24px rgba(1, 7, 18, 0.18);
}

.nav-toggle,
body[data-page="home"] .nav-toggle {
  order: 5;
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(195, 211, 228, 0.24);
  box-shadow: none;
}

.brand-composite,
.footer-brand-composite {
  width: 250px;
  grid-template-columns: 170px 1px 55px;
  align-items: center;
  gap: 12px;
}

.brand-composite .brand-wordmark-image,
.footer-brand-composite .brand-wordmark-image {
  width: 170px;
  align-self: center;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.54))
    drop-shadow(0 6px 14px rgba(0, 5, 14, 0.32));
}

.brand-composite .brand-emblem-image,
.footer-brand-composite .brand-emblem-image {
  width: 55px;
  height: 55px;
  align-self: center;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.3))
    drop-shadow(0 8px 16px rgba(0, 5, 14, 0.3));
}

.brand-divider {
  width: 1px;
  height: 42px;
  display: block;
  background: linear-gradient(180deg, transparent, rgba(207, 221, 234, 0.5) 24%, rgba(207, 221, 234, 0.5) 76%, transparent);
}

.ssai-logo-spin {
  animation: ssai-logo-premium-double-flip 2.4s cubic-bezier(0.4, 0, 0.2, 1) 180ms 1 both;
}

@keyframes ssai-logo-premium-double-flip {
  0% {
    transform: perspective(800px) rotateY(0deg);
  }

  45% {
    transform: perspective(800px) rotateY(360deg);
  }

  55% {
    transform: perspective(800px) rotateY(360deg);
  }

  100% {
    transform: perspective(800px) rotateY(720deg);
  }
}

body[data-page="home"] .site-header.is-scrolled {
  padding-top: 7px;
}

body[data-page="home"] .site-header.is-scrolled .site-header-inner {
  min-height: 64px;
  padding-top: 2px;
  padding-bottom: 2px;
  background: rgba(5, 15, 29, 0.94);
  box-shadow: 0 14px 36px rgba(0, 5, 14, 0.2);
}

body[data-page="home"] .site-header.is-scrolled .logo-brand {
  width: 200px;
  height: 52px;
}

body[data-page="home"] .site-header.is-scrolled .brand-composite {
  width: 200px;
  grid-template-columns: 136px 1px 43px;
  gap: 10px;
}

body[data-page="home"] .site-header.is-scrolled .brand-wordmark-image {
  width: 136px;
}

body[data-page="home"] .site-header.is-scrolled .brand-emblem-image {
  width: 43px;
  height: 43px;
}

body[data-page="home"] .site-header.is-scrolled .brand-divider {
  height: 32px;
}

.hero-summary-band {
  padding: 54px 0 58px;
  border-top: 0;
  border-bottom-color: rgba(108, 125, 144, 0.18);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.hero-summary-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.4fr);
  gap: 64px;
  align-items: start;
}

.hero-summary-band h2 {
  max-width: 720px;
  font-size: 3.1rem;
  font-weight: 640;
  line-height: 1.02;
  text-shadow:
    -1px 1px 0 rgba(20, 116, 71, 0.12),
    0 1px 0 rgba(143, 207, 60, 0.1),
    1px 1px 0 rgba(95, 217, 255, 0.12),
    2px 2px 0 rgba(216, 6, 33, 0.08);
}

.hero-summary-band .hero-metrics {
  border-left-color: rgba(91, 109, 128, 0.2);
}

.page-hero {
  min-height: 420px;
  border-bottom: 1px solid rgba(108, 125, 144, 0.16);
}

.page-hero > img {
  filter: saturate(0.86) contrast(1.02) brightness(1.02);
}

.page-hero::after {
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.99) 0%, rgba(248, 250, 252, 0.94) 32%, rgba(248, 250, 252, 0.58) 52%, rgba(248, 250, 252, 0.08) 74%),
    linear-gradient(0deg, rgba(248, 250, 252, 0.22), rgba(248, 250, 252, 0.02) 56%);
}

.page-hero-content {
  padding: 74px 0 80px;
}

.page-hero h1,
.hero h1 {
  font-weight: 640;
  text-shadow:
    -1px 1px 0 rgba(20, 116, 71, 0.14),
    0 1px 0 rgba(143, 207, 60, 0.1),
    1px 1px 0 rgba(95, 217, 255, 0.14),
    2px 2px 0 rgba(216, 6, 33, 0.08);
}

.page-hero h1 {
  max-width: 850px;
  font-size: 3.5rem;
  line-height: 1.02;
}

.page-hero p {
  max-width: 620px;
  color: #405165;
  font-size: 1.12rem;
}

.section {
  padding: 88px 0;
  border-top-color: rgba(108, 125, 144, 0.12);
}

.section-heading {
  gap: 52px;
  margin-bottom: 34px;
}

.section-heading h2,
.mission-copy h2,
.content-block h2 {
  font-weight: 640;
}

.section-heading h2 {
  font-size: 2.85rem;
  line-height: 1.08;
}

.mission-copy h2,
.content-block h2 {
  font-size: 2.78rem;
  line-height: 1.08;
}

.section-heading p,
.mission-copy p,
.content-block p {
  line-height: 1.68;
}

.solution-card,
.product-card,
.build-visualizer,
.preset-panel {
  border-color: rgba(126, 144, 163, 0.28);
  box-shadow: 0 14px 34px rgba(6, 14, 25, 0.055);
}

.solution-card {
  padding: 24px;
}

.solution-card::before {
  right: 24px;
  left: 24px;
  background: linear-gradient(90deg, var(--pine), var(--sky-blue));
}

.button {
  min-height: 48px;
  border-radius: 5px;
  font-size: 0.82rem;
  font-weight: 720;
}

.button.primary {
  box-shadow: 0 9px 22px rgba(112, 140, 8, 0.14);
}

.button.secondary,
.button.ghost {
  border-color: rgba(91, 109, 128, 0.34);
}

.site-footer {
  border-top: 1px solid rgba(195, 211, 228, 0.16);
  background: #07111f;
}

.footer-brand-composite {
  width: 308px;
  grid-template-columns: 208px 1px 74px;
  gap: 12px;
}

.footer-brand-composite .brand-wordmark-image {
  width: 208px;
}

.footer-brand-composite .brand-emblem-image {
  width: 74px;
  height: 74px;
}

.footer-brand-composite .brand-divider {
  height: 56px;
}

section[id],
[id].section {
  scroll-margin-top: 92px;
}

@media (max-width: 1080px) {
  .site-header-inner,
  body[data-page="home"] .site-header-inner,
  body[data-page="home"] .site-header.is-scrolled .site-header-inner {
    grid-template-columns: 40px minmax(0, 1fr) auto auto;
    gap: 12px;
  }

  .site-nav,
  body[data-page="home"] .site-nav,
  body[data-page="home"] .site-header.is-scrolled .site-nav {
    top: calc(100% + 8px);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(108, 125, 144, 0.22);
    box-shadow: 0 18px 38px rgba(4, 12, 24, 0.15);
    backdrop-filter: blur(18px);
  }

  .site-nav a,
  body[data-page="home"] .site-nav a,
  body[data-page="home"] .site-header.is-scrolled .site-nav a {
    color: var(--ink);
  }

  .site-nav a:hover,
  .site-nav a.active,
  body[data-page="home"] .site-nav a:hover,
  body[data-page="home"] .site-nav a.active,
  body[data-page="home"] .site-header.is-scrolled .site-nav a:hover,
  body[data-page="home"] .site-header.is-scrolled .site-nav a.active {
    color: var(--ink);
  }

  .hero-summary-grid {
    gap: 34px;
  }
}

@media (max-width: 760px) {
  #site-header {
    min-height: 72px;
  }

  body[data-page="home"] .site-header,
  body[data-page="home"] .site-header.is-scrolled {
    padding: 8px 10px 0;
  }

  .site-header-inner,
  body[data-page="home"] .site-header-inner,
  body[data-page="home"] .site-header.is-scrolled .site-header-inner {
    grid-template-columns: 36px minmax(0, 1fr) 40px 40px;
    gap: 6px;
    min-height: 64px;
    padding: 2px 6px;
  }

  body[data-page="home"] .staff-access-link {
    display: inline-flex;
  }

  .logo-brand,
  body[data-page="home"] .logo-brand,
  body[data-page="home"] .site-header.is-scrolled .logo-brand {
    width: 174px;
    height: 50px;
  }

  .brand-composite,
  body[data-page="home"] .site-header.is-scrolled .brand-composite {
    width: 174px;
    grid-template-columns: 117px 1px 40px;
    gap: 8px;
  }

  .brand-composite .brand-wordmark-image,
  body[data-page="home"] .site-header.is-scrolled .brand-wordmark-image {
    width: 117px;
  }

  .brand-composite .brand-emblem-image,
  body[data-page="home"] .site-header.is-scrolled .brand-emblem-image {
    width: 40px;
    height: 40px;
  }

  .brand-composite .brand-divider,
  body[data-page="home"] .site-header.is-scrolled .brand-divider {
    height: 30px;
  }

  .quote-button,
  .nav-toggle {
    width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
  }

  .hero-summary-band {
    padding: 42px 0 46px;
  }

  .hero-summary-band h2 {
    font-size: 2.48rem;
  }

  .page-hero {
    min-height: 360px;
  }

  .page-hero-content {
    padding: 54px 0 58px;
  }

  .page-hero h1 {
    font-size: 2.38rem;
  }

  .section {
    padding: 62px 0;
  }

  .section-heading {
    gap: 18px;
  }

  .section-heading h2,
  .mission-copy h2,
  .content-block h2 {
    font-size: 2.16rem;
  }

  .footer-brand-composite {
    width: 256px;
    grid-template-columns: 170px 1px 62px;
    gap: 11px;
  }

  .footer-brand-composite .brand-wordmark-image {
    width: 170px;
  }

  .footer-brand-composite .brand-emblem-image {
    width: 62px;
    height: 62px;
  }
}

@media (max-width: 390px) {
  .site-header-inner,
  body[data-page="home"] .site-header-inner,
  body[data-page="home"] .site-header.is-scrolled .site-header-inner {
    grid-template-columns: 34px minmax(0, 1fr) 38px 38px;
    gap: 4px;
  }

  .staff-access-link {
    width: 34px;
    height: 38px;
  }

  .logo-brand,
  body[data-page="home"] .logo-brand,
  body[data-page="home"] .site-header.is-scrolled .logo-brand {
    width: 154px;
    height: 46px;
  }

  .brand-composite,
  body[data-page="home"] .site-header.is-scrolled .brand-composite {
    width: 154px;
    grid-template-columns: 103px 1px 36px;
    gap: 7px;
  }

  .brand-composite .brand-wordmark-image,
  body[data-page="home"] .site-header.is-scrolled .brand-wordmark-image {
    width: 103px;
  }

  .brand-composite .brand-emblem-image,
  body[data-page="home"] .site-header.is-scrolled .brand-emblem-image {
    width: 36px;
    height: 36px;
  }

  .product-hero .hero-overlay-copy h1 {
    font-size: 2.38rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ssai-logo-spin {
    animation: none;
  }
}

/* Compact maple-leaf brand reveal */
.site-header-inner,
body[data-page="home"] .site-header-inner,
body[data-page="home"] .site-header.is-scrolled .site-header-inner {
  grid-template-columns: 40px 135px minmax(0, 1fr) auto;
}

.logo-brand,
body[data-page="home"] .logo-brand,
body[data-page="home"] .site-header.is-scrolled .logo-brand {
  width: 135px;
  height: 56px;
  overflow: visible;
  z-index: 6;
}

.brand-composite:not(.footer-brand-composite) {
  position: relative;
  width: 135px;
  height: 56px;
  display: block;
  overflow: visible;
}

.brand-composite:not(.footer-brand-composite) .brand-primary-mark {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 55px;
  height: 55px;
}

.brand-leaf {
  position: absolute;
  inset: 0;
  display: block;
  background-image: url("/assets/system-secure-leaf-shield-r1.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 180% auto;
  filter:
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.5))
    drop-shadow(0 7px 14px rgba(0, 5, 14, 0.32));
  opacity: 1;
  transform: scale(0.94);
  transition: opacity 180ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-composite:not(.footer-brand-composite) .brand-primary-mark .brand-wordmark-image {
  position: absolute;
  top: 50%;
  left: 0;
  width: 170px;
  max-width: none;
  opacity: 0;
  transform: translateY(-50%) scale(0.84);
  transform-origin: left center;
  transition: opacity 180ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-composite:not(.footer-brand-composite) > .brand-divider {
  position: absolute;
  top: 50%;
  left: 67px;
  z-index: 1;
  transform: translateY(-50%);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-composite:not(.footer-brand-composite) > .brand-emblem-slot {
  position: absolute;
  top: 0;
  left: 80px;
  z-index: 2;
  width: 55px;
  height: 55px;
  display: block;
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-composite:not(.footer-brand-composite) .brand-emblem-image {
  width: 55px;
  height: 55px;
}

@media (hover: hover) and (min-width: 761px) {
  .logo-brand:hover .brand-leaf,
  .logo-brand:focus-visible .brand-leaf {
    opacity: 0;
    transform: scale(0.78);
  }

  .logo-brand:hover .brand-primary-mark .brand-wordmark-image,
  .logo-brand:focus-visible .brand-primary-mark .brand-wordmark-image {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }

  .logo-brand:hover .brand-composite:not(.footer-brand-composite) > .brand-divider,
  .logo-brand:focus-visible .brand-composite:not(.footer-brand-composite) > .brand-divider {
    transform: translate(115px, -50%);
  }

  .logo-brand:hover .brand-composite:not(.footer-brand-composite) > .brand-emblem-slot,
  .logo-brand:focus-visible .brand-composite:not(.footer-brand-composite) > .brand-emblem-slot {
    transform: translateX(115px);
  }
}

.footer-brand-composite .brand-primary-mark {
  position: relative;
  width: 208px;
  min-width: 0;
}

.footer-brand-composite .brand-primary-mark .brand-leaf {
  display: none;
}

.footer-brand-composite .brand-primary-mark .brand-wordmark-image {
  position: static;
  width: 208px;
  opacity: 1;
  transform: none;
}

.footer-brand-composite .brand-emblem-slot {
  width: 74px;
  height: 74px;
  display: block;
}

@media (max-width: 1080px) {
  .site-header-inner,
  body[data-page="home"] .site-header-inner,
  body[data-page="home"] .site-header.is-scrolled .site-header-inner {
    grid-template-columns: 40px minmax(0, 1fr) auto auto;
  }
}

@media (max-width: 760px) {
  .site-header-inner,
  body[data-page="home"] .site-header-inner,
  body[data-page="home"] .site-header.is-scrolled .site-header-inner {
    grid-template-columns: 36px minmax(0, 1fr) 40px 40px;
  }

  .logo-brand,
  body[data-page="home"] .logo-brand,
  body[data-page="home"] .site-header.is-scrolled .logo-brand {
    width: 112px;
    height: 46px;
  }

  .brand-composite:not(.footer-brand-composite) {
    width: 112px;
    height: 46px;
  }

  .brand-composite:not(.footer-brand-composite) .brand-primary-mark {
    width: 44px;
    height: 44px;
  }

  .brand-composite:not(.footer-brand-composite) > .brand-divider {
    left: 52px;
    height: 30px;
  }

  .brand-composite:not(.footer-brand-composite) > .brand-emblem-slot {
    left: 62px;
    width: 44px;
    height: 44px;
  }

  .brand-composite:not(.footer-brand-composite) .brand-emblem-image {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 390px) {
  .site-header-inner,
  body[data-page="home"] .site-header-inner,
  body[data-page="home"] .site-header.is-scrolled .site-header-inner {
    grid-template-columns: 34px minmax(0, 1fr) 38px 38px;
  }

  .logo-brand,
  body[data-page="home"] .logo-brand,
  body[data-page="home"] .site-header.is-scrolled .logo-brand {
    width: 102px;
    height: 42px;
  }

  .brand-composite:not(.footer-brand-composite) {
    width: 102px;
    height: 42px;
  }

  .brand-composite:not(.footer-brand-composite) .brand-primary-mark {
    width: 40px;
    height: 40px;
  }

  .brand-composite:not(.footer-brand-composite) > .brand-divider {
    left: 47px;
    height: 28px;
  }

  .brand-composite:not(.footer-brand-composite) > .brand-emblem-slot {
    left: 56px;
    width: 40px;
    height: 40px;
  }

  .brand-composite:not(.footer-brand-composite) .brand-emblem-image {
    width: 40px;
    height: 40px;
  }
}

/* Premium compact header formatting */
.site-header,
body[data-page="home"] .site-header,
body[data-page="home"] .site-header.is-scrolled {
  padding: 10px 16px 0;
}

.site-header-inner,
body[data-page="home"] .site-header-inner,
body[data-page="home"] .site-header.is-scrolled .site-header-inner {
  width: min(1440px, calc(100% - 16px));
  grid-template-columns: 36px 168px minmax(0, 1fr) auto;
  gap: 14px;
  min-height: 112px;
  padding: 0 14px;
  border: 1px solid rgba(198, 215, 232, 0.16);
  border-radius: 4px;
  background: rgba(5, 16, 30, 0.91);
  box-shadow: 0 14px 40px rgba(0, 5, 14, 0.24);
  backdrop-filter: blur(22px) saturate(128%);
}

.staff-access-link,
body[data-page="home"] .staff-access-link,
body[data-page="home"] .site-header.is-scrolled .staff-access-link {
  width: 36px;
  height: 36px;
  border-color: transparent;
  border-radius: 3px;
  color: rgba(221, 232, 242, 0.72);
  background: transparent;
  box-shadow: none;
}

.staff-access-link:hover,
.staff-access-link:focus-visible,
body[data-page="home"] .staff-access-link:hover,
body[data-page="home"] .staff-access-link:focus-visible {
  color: #ffffff;
  border-color: rgba(198, 215, 232, 0.2);
  background: rgba(255, 255, 255, 0.06);
}

.logo-brand,
body[data-page="home"] .logo-brand,
body[data-page="home"] .site-header.is-scrolled .logo-brand,
.header-logo {
  width: 168px;
  height: 98px;
}

.brand-composite:not(.footer-brand-composite) {
  width: 168px;
  height: 98px;
}

.brand-composite:not(.footer-brand-composite) .brand-primary-mark {
  width: 49px;
  height: 49px;
  top: 50%;
  transform: translateY(-50%);
}

.brand-composite:not(.footer-brand-composite) .brand-primary-mark .brand-wordmark-image {
  width: 160px;
}

.brand-composite:not(.footer-brand-composite) > .brand-divider {
  left: 58px;
  height: 34px;
}

.brand-composite:not(.footer-brand-composite) > .brand-emblem-slot {
  left: 70px;
  width: 98px;
  height: 98px;
}

.brand-composite:not(.footer-brand-composite) .brand-emblem-image {
  width: 98px;
  height: 98px;
  max-height: none;
}

.site-nav,
body[data-page="home"] .site-nav,
body[data-page="home"] .site-header.is-scrolled .site-nav {
  justify-self: end;
  gap: 20px;
  padding-right: 4px;
}

.site-nav a,
body[data-page="home"] .site-nav a,
body[data-page="home"] .site-header.is-scrolled .site-nav a {
  min-height: 40px;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(227, 237, 246, 0.72);
}

.site-nav a::after {
  right: 50%;
  left: 50%;
  bottom: 2px;
  width: 0;
  transition: left 180ms ease, right 180ms ease, width 180ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  right: calc(50% - 12px);
  left: calc(50% - 12px);
  width: 24px;
}

.quote-button,
body[data-page="home"] .quote-button,
body[data-page="home"] .site-header.is-scrolled .quote-button {
  min-height: 40px;
  padding: 0 13px;
  border-color: rgba(198, 215, 232, 0.22);
  border-radius: 3px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
  box-shadow: none;
}

.quote-button:hover,
.quote-button:focus-visible {
  border-color: rgba(95, 217, 255, 0.42);
  background: rgba(95, 217, 255, 0.1);
  transform: none;
}

@media (hover: hover) and (min-width: 1081px) {
  .logo-brand:hover .brand-composite:not(.footer-brand-composite) > .brand-divider,
  .logo-brand:focus-visible .brand-composite:not(.footer-brand-composite) > .brand-divider {
    transform: translate(111px, -50%);
  }

  .logo-brand:hover .brand-composite:not(.footer-brand-composite) > .brand-emblem-slot,
  .logo-brand:focus-visible .brand-composite:not(.footer-brand-composite) > .brand-emblem-slot {
    transform: translateX(111px);
  }
}

@media (max-width: 1080px) {
  .site-header,
  body[data-page="home"] .site-header,
  body[data-page="home"] .site-header.is-scrolled {
    padding: 8px 10px 0;
  }

  .site-header-inner,
  body[data-page="home"] .site-header-inner,
  body[data-page="home"] .site-header.is-scrolled .site-header-inner {
    width: 100%;
    grid-template-columns: 36px minmax(0, 1fr) 40px 40px;
    gap: 8px;
    min-height: 64px;
    padding: 2px 8px;
  }

  .site-nav,
  body[data-page="home"] .site-nav,
  body[data-page="home"] .site-header.is-scrolled .site-nav {
    justify-self: stretch;
    gap: 0;
    padding: 12px;
  }
}

@media (max-width: 760px) {
  .site-header,
  body[data-page="home"] .site-header,
  body[data-page="home"] .site-header.is-scrolled {
    padding-right: 8px;
    padding-left: 8px;
  }

  .site-header-inner,
  body[data-page="home"] .site-header-inner,
  body[data-page="home"] .site-header.is-scrolled .site-header-inner {
    grid-template-columns: 34px minmax(0, 1fr) 40px 40px;
    gap: 6px;
    min-height: 64px;
    padding-right: 6px;
    padding-left: 6px;
  }

  .staff-access-link,
  body[data-page="home"] .staff-access-link {
    width: 34px;
    height: 38px;
  }

  .logo-brand,
  body[data-page="home"] .logo-brand,
  body[data-page="home"] .site-header.is-scrolled .logo-brand,
  .header-logo,
  .brand-composite:not(.footer-brand-composite) {
    width: 42px;
    height: 42px;
  }

  .brand-composite:not(.footer-brand-composite) .brand-primary-mark {
    width: 42px;
    height: 42px;
  }

  .brand-composite:not(.footer-brand-composite) > .brand-divider {
    left: 50px;
    height: 29px;
  }

  .brand-composite:not(.footer-brand-composite) > .brand-emblem-slot {
    display: none;
  }

  .brand-composite:not(.footer-brand-composite) .brand-emblem-image {
    display: none;
  }

  .brand-composite:not(.footer-brand-composite) > .brand-divider {
    display: none;
  }
}

@media (max-width: 390px) {
  .site-header-inner,
  body[data-page="home"] .site-header-inner,
  body[data-page="home"] .site-header.is-scrolled .site-header-inner {
    grid-template-columns: 32px minmax(0, 1fr) 38px 38px;
    gap: 4px;
    min-height: 60px;
    padding-right: 4px;
    padding-left: 4px;
  }

  .staff-access-link,
  body[data-page="home"] .staff-access-link {
    width: 32px;
  }

  .logo-brand,
  body[data-page="home"] .logo-brand,
  body[data-page="home"] .site-header.is-scrolled .logo-brand,
  .header-logo,
  .brand-composite:not(.footer-brand-composite) {
    width: 39px;
    height: 39px;
  }

  .brand-composite:not(.footer-brand-composite) .brand-primary-mark {
    width: 39px;
    height: 39px;
  }

  .brand-composite:not(.footer-brand-composite) > .brand-divider {
    left: 46px;
    height: 27px;
  }

}

.footer-brand-composite .brand-primary-mark {
  display: flex;
  align-items: center;
}

.footer-brand-text {
  display: block;
  color: #ffffff;
  font-family: "Bahnschrift SemiCondensed", "Bahnschrift", "Aptos Display", "Segoe UI Variable Display", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  opacity: 1;
  transform: none;
  animation: none;
  transition: none;
}

@media (max-width: 1080px) {
  .footer-brand-composite .brand-primary-mark {
    width: 170px;
  }

  .footer-brand-text {
    font-size: 1.25rem;
  }
}

/* Single-line cinematic hero signature */
.hero-overlay-copy {
  top: 53%;
  right: clamp(28px, 5vw, 92px);
  width: min(52vw, 720px);
}

.product-hero .hero-overlay-copy h1 {
  display: flex;
  align-items: baseline;
  gap: 0.2em;
  margin: 0;
  color: transparent;
  background-image: linear-gradient(108deg, #eef4f8 0%, #ffffff 42%, #b8d9eb 54%, #ffffff 66%, #dce6ed 100%);
  background-position: 100% 50%;
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 4.35rem;
  font-weight: 690;
  line-height: 0.94;
  text-transform: uppercase;
  white-space: nowrap;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.2)) drop-shadow(0 12px 30px rgba(0, 12, 28, 0.48));
  animation: hero-title-sheen 10s ease-in-out 2.1s infinite;
}

.product-hero .hero-overlay-copy h1 .cinematic-word {
  display: inline-block;
  opacity: 0;
  filter: blur(9px);
  will-change: opacity, transform, filter;
}

.product-hero .hero-overlay-copy h1 .cinematic-word:first-child {
  transform: translateX(-48px);
  animation: cinematic-brand-arrival-left 950ms cubic-bezier(0.16, 1, 0.3, 1) 160ms forwards;
}

.product-hero .hero-overlay-copy h1 .cinematic-word:nth-child(2) {
  transform: translateX(48px);
  animation: cinematic-brand-arrival-right 950ms cubic-bezier(0.16, 1, 0.3, 1) 320ms forwards;
}

.cinematic-rule {
  width: 92px;
  height: 3px;
  display: block;
  margin-top: 22px;
  opacity: 0;
  background: linear-gradient(90deg, #d4b76f, #f3dea4 58%, rgba(243, 222, 164, 0));
  transform: scaleX(0);
  transform-origin: left center;
  animation: cinematic-rule-arrival 720ms cubic-bezier(0.16, 1, 0.3, 1) 880ms forwards;
}

.hero-overlay-copy .cinematic-tagline {
  max-width: 610px;
  display: grid;
  gap: 7px;
  margin: 20px 0 0;
  text-transform: uppercase;
}

.hero-overlay-copy .cinematic-tagline span {
  display: block;
  margin: 0;
}

.hero-overlay-copy .cinematic-tagline .cinematic-tagline-lead {
  color: #f1d58d;
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.2;
  animation-delay: 1.12s;
}

.hero-overlay-copy .cinematic-tagline span:last-child {
  color: rgba(255, 255, 255, 0.96);
  font-size: 1.22rem;
  font-weight: 650;
  line-height: 1.26;
  animation-delay: 1.32s;
}

@keyframes cinematic-brand-arrival-left {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

@keyframes cinematic-brand-arrival-right {
  to {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
  }
}

@keyframes hero-title-sheen {
  0%,
  30%,
  100% {
    background-position: 100% 50%;
  }

  48%,
  62% {
    background-position: 0 50%;
  }
}

@media (max-width: 1080px) {
  .hero-overlay-copy {
    right: 34px;
    width: min(55vw, 590px);
  }

  .product-hero .hero-overlay-copy h1 {
    font-size: 3.35rem;
  }

  .hero-overlay-copy .cinematic-tagline span:last-child {
    font-size: 1.08rem;
  }
}

@media (max-width: 760px) {
  .hero-overlay-copy {
    top: auto;
    right: 18px;
    bottom: 30px;
    left: 18px;
    width: auto;
  }

  .hero-art::before {
    background: #040b17;
    opacity: 1;
  }

  .product-hero .hero-overlay-copy h1 {
    gap: 0.18em;
    font-size: 2.3rem;
    line-height: 0.96;
  }

  .cinematic-rule {
    width: 66px;
    height: 2px;
    margin-top: 15px;
  }

  .hero-overlay-copy .cinematic-tagline {
    gap: 5px;
    margin-top: 14px;
  }

  .hero-overlay-copy .cinematic-tagline .cinematic-tagline-lead {
    font-size: 0.72rem;
  }

  .hero-overlay-copy .cinematic-tagline span:last-child {
    font-size: 0.96rem;
  }
}

@media (max-width: 390px) {
  .product-hero .hero-overlay-copy h1 {
    font-size: 2rem;
  }

  .hero-overlay-copy .cinematic-tagline span:last-child {
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-hero .hero-overlay-copy h1,
  .product-hero .hero-overlay-copy h1 .cinematic-word,
  .cinematic-rule,
  .hero-overlay-copy .cinematic-tagline span {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }
}

/* Hero copy begins after the one-time emblem loading intro. */
.product-hero .hero-overlay-copy h1 {
  color: #ffffff;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: #ffffff;
  font-weight: 800;
  filter: drop-shadow(0 3px 0 rgba(0, 0, 0, 0.24)) drop-shadow(0 14px 34px rgba(0, 10, 24, 0.52));
  animation: none;
  perspective: 900px;
}

.product-hero .hero-overlay-copy h1 .cinematic-word,
.product-hero .hero-overlay-copy h1 .cinematic-word:first-child,
.product-hero .hero-overlay-copy h1 .cinematic-word:nth-child(2) {
  color: #ffffff;
  opacity: 0;
  filter: none;
  transform: perspective(900px) translateZ(-130px) scale(0.86);
  transform-origin: center center;
  transform-style: preserve-3d;
  animation: hero-copy-forward-cycle 10s cubic-bezier(0.22, 1, 0.36, 1) 3.6s infinite both;
}

.hero-overlay-copy .cinematic-tagline,
.hero-overlay-copy .cinematic-tagline .cinematic-tagline-lead,
.hero-overlay-copy .cinematic-tagline span:last-child {
  color: #ffffff;
}

.hero-overlay-copy .cinematic-tagline .cinematic-tagline-lead,
.hero-overlay-copy .cinematic-tagline span:last-child,
.cinematic-rule {
  opacity: 0;
  filter: none;
  transform: perspective(900px) translateZ(-110px) scale(0.9);
  transform-origin: center center;
  animation: hero-secondary-forward-cycle 10s cubic-bezier(0.22, 1, 0.36, 1) 4.8s infinite both;
}

.hero-overlay-copy .cinematic-tagline .cinematic-tagline-lead {
  font-weight: 800;
}

.hero-overlay-copy .cinematic-tagline span:last-child {
  font-weight: 760;
}

.cinematic-rule {
  background: rgba(255, 255, 255, 0.9);
}

@keyframes hero-copy-forward-cycle {
  0% {
    opacity: 0;
    transform: perspective(900px) translateZ(-130px) scale(0.86);
  }

  4% {
    opacity: 1;
    transform: perspective(900px) translateZ(0) scale(1);
  }

  38% {
    opacity: 1;
    transform: perspective(900px) translateZ(0) scale(1);
  }

  42% {
    opacity: 0;
    transform: perspective(900px) translateZ(110px) scale(1.1);
  }

  100% {
    opacity: 0;
    transform: perspective(900px) translateZ(110px) scale(1.1);
  }
}

@keyframes hero-secondary-forward-cycle {
  0% {
    opacity: 0;
    transform: perspective(900px) translateZ(-110px) scale(0.9);
  }

  4% {
    opacity: 1;
    transform: perspective(900px) translateZ(0) scale(1);
  }

  30% {
    opacity: 1;
    transform: perspective(900px) translateZ(0) scale(1);
  }

  34% {
    opacity: 0;
    transform: perspective(900px) translateZ(110px) scale(1.1);
  }

  100% {
    opacity: 0;
    transform: perspective(900px) translateZ(110px) scale(1.1);
  }
}

.hero-emblem-zone {
  position: absolute;
  top: 53%;
  right: clamp(28px, 5vw, 92px);
  z-index: 3;
  width: min(52vw, 720px);
  height: 492px;
  pointer-events: none;
  transform: translateY(-50%);
}

.hero-sequence-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  width: 492px;
  height: 492px;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
  animation: none;
}

.hero-sequence-emblem img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  backface-visibility: visible;
  filter: none;
  transform-style: preserve-3d;
  animation: none;
}

@media (max-width: 760px) {
  .product-hero {
    height: 96svh;
    min-height: 780px;
    max-height: none;
  }

  .hero-art img {
    object-position: center 12%;
  }

  .hero-overlay-copy {
    top: 30%;
    bottom: auto;
  }

  .hero-emblem-zone {
    top: auto;
    right: 0;
    bottom: 24px;
    left: 0;
    width: 100%;
    height: min(346px, calc(100vw - 16px));
    transform: none;
  }

  .hero-sequence-emblem {
    width: min(346px, calc(100vw - 16px));
    height: min(346px, calc(100vw - 16px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .product-hero .hero-overlay-copy h1 .cinematic-word,
  .product-hero .hero-overlay-copy h1 .cinematic-word:first-child,
  .product-hero .hero-overlay-copy h1 .cinematic-word:nth-child(2),
  .hero-overlay-copy .cinematic-tagline .cinematic-tagline-lead,
  .hero-overlay-copy .cinematic-tagline span:last-child,
  .cinematic-rule {
    opacity: 1;
    filter: none;
    transform: none;
    animation: none;
  }

  .hero-sequence-emblem {
    display: none;
  }

  .hero-sequence-emblem img {
    animation: none;
  }
}

/* Keep the cinematic copy firmly within the visual's right-hand field. */
@media (min-width: 761px) {
  body[data-page="home"] .hero-overlay-copy {
    text-align: right;
  }

  body[data-page="home"] .hero-overlay-copy h1 {
    justify-content: flex-end;
  }

  body[data-page="home"] .hero-overlay-copy .cinematic-rule {
    margin-left: auto;
    transform-origin: right center;
  }

  body[data-page="home"] .hero-overlay-copy .cinematic-tagline {
    margin-left: auto;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  body[data-page="home"] .hero-overlay-copy {
    right: 18px;
    width: min(58vw, 590px);
  }
}

@media (min-width: 1081px) {
  body[data-page="home"] .hero-overlay-copy {
    right: clamp(18px, 2.25vw, 48px);
    width: min(46vw, 660px);
  }
}

/* One chevron navigation pattern at every viewport. */
.nav-toggle,
body[data-page="home"] .nav-toggle,
body[data-page="home"] .site-header.is-scrolled .nav-toggle {
  display: inline-grid;
  justify-self: end;
}

.nav-toggle svg {
  transition: transform 180ms ease;
}

.nav-toggle.is-open svg {
  transform: rotate(180deg);
}

.site-nav,
body[data-page="home"] .site-nav,
body[data-page="home"] .site-header.is-scrolled .site-nav {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: auto;
  z-index: 6;
  width: min(320px, calc(100vw - 32px));
  display: none;
  flex-direction: column;
  align-items: stretch;
  justify-self: auto;
  gap: 0;
  padding: 10px;
  color: rgba(235, 243, 250, 0.78);
  background: rgba(3, 10, 20, 0.98);
  border: 1px solid rgba(198, 215, 232, 0.22);
  border-radius: 4px;
  box-shadow: 0 20px 44px rgba(0, 5, 14, 0.38);
  backdrop-filter: blur(20px) saturate(122%);
}

.site-nav.open,
body[data-page="home"] .site-nav.open,
body[data-page="home"] .site-header.is-scrolled .site-nav.open {
  display: flex;
}

.site-nav a,
body[data-page="home"] .site-nav a,
body[data-page="home"] .site-header.is-scrolled .site-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  color: rgba(235, 243, 250, 0.78);
  border-bottom: 1px solid rgba(198, 215, 232, 0.1);
}

.site-nav a:last-child {
  border-bottom: 0;
}

.site-nav a:hover,
.site-nav a.active,
body[data-page="home"] .site-nav a:hover,
body[data-page="home"] .site-nav a.active,
body[data-page="home"] .site-header.is-scrolled .site-nav a:hover,
body[data-page="home"] .site-header.is-scrolled .site-nav a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
}

/* One-time hero loading intro and the final copy phase. */
.hero-overlay-copy .hero-message-stack {
  width: 100%;
  max-width: 610px;
  display: grid;
  margin: 20px 0 0;
}

.hero-overlay-copy .hero-message-stack > * {
  grid-area: 1 / 1;
  margin: 0;
}

.hero-overlay-copy .cinematic-control-line {
  display: grid;
  justify-items: end;
  gap: 6px;
  color: #ffffff;
  font-size: 1.72rem;
  font-weight: 800;
  line-height: 1.08;
  text-align: right;
  text-transform: uppercase;
}

.hero-overlay-copy .cinematic-control-line span {
  display: block;
  width: max-content;
  max-width: 100%;
  opacity: 0;
  transform: perspective(900px) translateZ(-110px) scale(0.9);
  transform-origin: center center;
  animation: hero-control-forward-cycle 10s cubic-bezier(0.22, 1, 0.36, 1) 8.2s infinite both;
}

.hero-overlay-copy .cinematic-control-line span:nth-child(2) {
  margin-right: 26px;
  font-size: 1.35em;
  animation-name: hero-control-second-line;
}

.hero-overlay-copy .cinematic-control-line span:nth-child(3) {
  margin-right: 74px;
  font-size: 0.92em;
  animation-name: hero-control-third-line;
}

.hero-overlay-copy .cinematic-control-line span:nth-child(4) {
  margin-right: 18px;
  font-size: 1.22em;
  animation-name: hero-control-fourth-line;
}

.hero-overlay-copy .cinematic-control-line span:first-child {
  font-size: 1.15em;
}

@keyframes hero-control-forward-cycle {
  0% {
    opacity: 0;
    transform: perspective(900px) translateZ(-110px) scale(0.9);
  }

  3%,
  48% {
    opacity: 1;
    transform: perspective(900px) translateZ(0) scale(1);
  }

  52%,
  100% {
    opacity: 0;
    transform: perspective(900px) translateZ(110px) scale(1.1);
  }
}

@keyframes hero-control-second-line {
  0%,
  7% {
    opacity: 0;
    transform: perspective(900px) translateZ(-110px) scale(0.9);
  }

  10%,
  48% {
    opacity: 1;
    transform: perspective(900px) translateZ(0) scale(1);
  }

  52%,
  100% {
    opacity: 0;
    transform: perspective(900px) translateZ(110px) scale(1.1);
  }
}

@keyframes hero-control-third-line {
  0%,
  13% {
    opacity: 0;
    transform: perspective(900px) translateZ(-110px) scale(0.9);
  }

  16%,
  48% {
    opacity: 1;
    transform: perspective(900px) translateZ(0) scale(1);
  }

  52%,
  100% {
    opacity: 0;
    transform: perspective(900px) translateZ(110px) scale(1.1);
  }
}

@keyframes hero-control-fourth-line {
  0%,
  19% {
    opacity: 0;
    transform: perspective(900px) translateZ(-110px) scale(0.9);
  }

  22%,
  48% {
    opacity: 1;
    transform: perspective(900px) translateZ(0) scale(1);
  }

  52%,
  100% {
    opacity: 0;
    transform: perspective(900px) translateZ(110px) scale(1.1);
  }
}

/* Animated emblems remain fully opaque and unfiltered. */
.hero-emblem-zone {
  inset: 0;
  z-index: 5;
  width: auto;
  height: auto;
  display: grid;
  place-items: center;
  background: #030812;
  transform: none;
  animation: hero-loader-layer 3.6s ease 1 both;
}

.hero-sequence-emblem {
  position: relative;
  top: auto;
  left: auto;
  width: min(492px, 80vw);
  height: min(492px, 80vw);
  opacity: 1;
  transform: scale(1);
  animation: none;
}

.hero-sequence-emblem img {
  filter: none;
  animation: hero-loader-spin 3.6s cubic-bezier(0.4, 0, 0.2, 1) 1 both;
}

@keyframes hero-loader-layer {
  0%,
  99.999% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes hero-loader-spin {
  0% {
    transform: perspective(900px) rotateY(0deg);
  }

  66.667%,
  100% {
    transform: perspective(900px) rotateY(720deg);
  }
}

/* The header retains only the maple mark and its wordmark reveal. */
@media (min-width: 761px) {
  .site-header-inner,
  body[data-page="home"] .site-header-inner,
  body[data-page="home"] .site-header.is-scrolled .site-header-inner {
    grid-template-columns: 36px 98px minmax(0, 1fr) auto;
  }

  .logo-brand,
  body[data-page="home"] .logo-brand,
  body[data-page="home"] .site-header.is-scrolled .logo-brand,
  .header-logo,
  .brand-composite:not(.footer-brand-composite),
  .brand-composite:not(.footer-brand-composite) .brand-primary-mark {
    width: 98px;
    height: 98px;
  }
}

.brand-composite:not(.footer-brand-composite) > .brand-divider,
.brand-composite:not(.footer-brand-composite) > .brand-emblem-slot {
  display: none;
}

@media (min-width: 761px) {
  body[data-page="home"] .hero-overlay-copy .hero-message-stack {
    margin-left: auto;
  }
}

@media (max-width: 760px) {
  .hero-overlay-copy .hero-message-stack {
    margin-top: 14px;
  }

  .hero-overlay-copy .cinematic-control-line {
    justify-items: start;
    gap: 4px;
    font-size: 1.05rem;
    line-height: 1.12;
    text-align: left;
  }

  .hero-emblem-zone {
    inset: 0;
    width: auto;
    height: auto;
  }

  .hero-sequence-emblem {
    width: min(346px, calc(100vw - 16px));
    height: min(346px, calc(100vw - 16px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-emblem-zone {
    display: none;
    animation: none;
  }

  .hero-overlay-copy .hero-message-stack {
    display: block;
  }

  .hero-overlay-copy .cinematic-control-line {
    margin-top: 8px;
  }

  .hero-overlay-copy .cinematic-control-line span {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

/* Header surface: solid black at rest, 80% transparent after scroll. */
.site-header-inner,
body[data-page="home"] .site-header-inner {
  background: #000000;
  transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled .site-header-inner,
body[data-page="home"] .site-header.is-scrolled .site-header-inner {
  background: rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px) saturate(128%) brightness(0.46);
}

/* Compact desktop header after removing the companion emblem. */
@media (min-width: 761px) {
  #site-header {
    min-height: 78px;
  }

  .site-header,
  body[data-page="home"] .site-header,
  body[data-page="home"] .site-header.is-scrolled {
    padding: 6px 16px 0;
  }

  .site-header-inner,
  body[data-page="home"] .site-header-inner,
  body[data-page="home"] .site-header.is-scrolled .site-header-inner {
    grid-template-columns: 36px 64px minmax(0, 1fr) auto;
    min-height: 72px;
  }

  .logo-brand,
  body[data-page="home"] .logo-brand,
  body[data-page="home"] .site-header.is-scrolled .logo-brand,
  .header-logo,
  .brand-composite:not(.footer-brand-composite),
  .brand-composite:not(.footer-brand-composite) .brand-primary-mark {
    width: 64px;
    height: 64px;
  }
}

/* Keep the landing loader visually isolated, then reveal navigation with the hero copy. */
body[data-page="home"] #site-header {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  animation: landing-header-reveal 0.6s ease 3.6s 1 both;
}

@keyframes landing-header-reveal {
  0% {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  1% {
    opacity: 0;
    visibility: visible;
    pointer-events: none;
  }

  100% {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  body[data-page="home"] #site-header {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: none;
  }
}

/* Preserve the full constellation shield across desktop aspect ratios. */
@media (min-width: 761px) {
  body[data-page="home"] .hero-art::before {
    opacity: 0.32;
    filter: brightness(0.55) saturate(0.82);
  }

  body[data-page="home"] .hero-art img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: left center;
  }
}

/* Open the landing wordmark, then return to the maple-first scroll state. */
body[data-page="home"] .site-header:not(.is-scrolled) .logo-brand,
body[data-page="home"] .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite),
body[data-page="home"] .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite) .brand-primary-mark {
  width: 168px;
}

body[data-page="home"] .site-header:not(.is-scrolled) .brand-leaf {
  opacity: 0;
  transform: scale(0.78);
}

body[data-page="home"] .site-header:not(.is-scrolled) .brand-primary-mark .brand-wordmark-image {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.logo-brand,
.brand-composite:not(.footer-brand-composite),
.brand-composite:not(.footer-brand-composite) .brand-primary-mark {
  transition: width 280ms cubic-bezier(0.22, 1, 0.36, 1), height 240ms ease;
}

/* Prototype-led glass header with a compact maple-first scroll state. */
#site-header {
  min-height: 80px;
  transition: min-height 350ms ease;
}

#site-header:has(.site-header.is-scrolled) {
  min-height: 60px;
}

.site-header,
body[data-page="home"] .site-header,
body[data-page="home"] .site-header.is-scrolled {
  padding: 0;
  color: #eef4fb;
  background: rgba(6, 14, 26, 0.5);
  border-bottom: 1px solid rgba(91, 225, 255, 0.18);
  box-shadow: none;
  backdrop-filter: blur(14px) saturate(140%);
  transition: background-color 350ms ease, border-color 350ms ease, box-shadow 350ms ease, backdrop-filter 350ms ease;
}

.site-header.is-scrolled,
body[data-page="home"] .site-header.is-scrolled {
  background: rgba(6, 14, 26, 0.82);
  border-bottom-color: rgba(91, 225, 255, 0.24);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px) saturate(140%);
}

.site-header::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, #5be1ff 15%, transparent 30%, rgba(91, 225, 255, 0.35) 55%, transparent 75%);
  background-size: 200% 100%;
  opacity: 0.8;
  animation: header-edge-sweep 9s linear infinite;
}

@keyframes header-edge-sweep {
  from {
    background-position: 0% 0;
  }

  to {
    background-position: -200% 0;
  }
}

.site-header-inner,
body[data-page="home"] .site-header-inner,
body[data-page="home"] .site-header.is-scrolled .site-header-inner {
  width: min(1280px, 100%);
  min-height: 80px;
  padding: 8px 32px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transition: min-height 350ms ease, padding 350ms ease;
}

.site-header.is-scrolled .site-header-inner,
body[data-page="home"] .site-header.is-scrolled .site-header-inner {
  min-height: 60px;
  padding-top: 4px;
  padding-bottom: 4px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-header:not(.is-scrolled) .logo-brand,
.site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite),
.site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite) .brand-primary-mark,
body[data-page="home"] .site-header:not(.is-scrolled) .logo-brand,
body[data-page="home"] .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite),
body[data-page="home"] .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite) .brand-primary-mark {
  width: 168px;
  height: 64px;
}

.site-header:not(.is-scrolled) .brand-leaf {
  opacity: 0;
  transform: scale(0.78);
}

.site-header:not(.is-scrolled) .brand-primary-mark .brand-wordmark-image {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.staff-access-link,
.logo-brand {
  transition: opacity 220ms ease, visibility 220ms ease, transform 350ms cubic-bezier(0.22, 1, 0.36, 1), width 280ms cubic-bezier(0.22, 1, 0.36, 1), height 240ms ease;
}

.site-header.is-scrolled .staff-access-link,
body[data-page="home"] .site-header.is-scrolled .staff-access-link {
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.72);
}

.site-header.is-scrolled .logo-brand,
body[data-page="home"] .site-header.is-scrolled .logo-brand {
  width: 52px;
  height: 52px;
  transform: translateX(-50px);
}

.site-header.is-scrolled .brand-composite:not(.footer-brand-composite),
.site-header.is-scrolled .brand-composite:not(.footer-brand-composite) .brand-primary-mark,
body[data-page="home"] .site-header.is-scrolled .brand-composite:not(.footer-brand-composite),
body[data-page="home"] .site-header.is-scrolled .brand-composite:not(.footer-brand-composite) .brand-primary-mark {
  width: 52px;
  height: 52px;
}

.site-header.is-scrolled .brand-leaf {
  background-size: 170% auto;
  filter:
    brightness(1.18)
    contrast(1.16)
    saturate(0.72)
    drop-shadow(0 1px 0 rgba(255, 255, 255, 0.92))
    drop-shadow(0 0 9px rgba(91, 225, 255, 0.38))
    drop-shadow(0 9px 17px rgba(0, 4, 12, 0.48));
  transform: scale(0.98);
}

.brand-leaf::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(108deg, transparent 30%, rgba(255, 255, 255, 0.12) 42%, rgba(255, 255, 255, 0.96) 49%, rgba(91, 225, 255, 0.44) 54%, transparent 68%);
  background-position: -180% 50%;
  background-size: 240% 100%;
  mix-blend-mode: screen;
  opacity: 0;
  -webkit-mask-image: url("/assets/system-secure-leaf-shield-r1.webp");
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: 170% auto;
  mask-image: url("/assets/system-secure-leaf-shield-r1.webp");
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: 170% auto;
}

.site-header.is-scrolled .brand-leaf::after {
  animation: maple-polish-sweep 6.4s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

@keyframes maple-polish-sweep {
  0%,
  54%,
  100% {
    opacity: 0;
    background-position: -180% 50%;
  }

  60% {
    opacity: 0.22;
  }

  72% {
    opacity: 0.86;
  }

  84% {
    opacity: 0;
    background-position: 180% 50%;
  }
}

.quote-button,
.nav-toggle,
body[data-page="home"] .quote-button,
body[data-page="home"] .nav-toggle,
body[data-page="home"] .site-header.is-scrolled .quote-button,
body[data-page="home"] .site-header.is-scrolled .nav-toggle {
  border-color: rgba(91, 225, 255, 0.18);
  border-radius: 3px;
  color: #eef4fb;
  background: rgba(91, 225, 255, 0.035);
  box-shadow: none;
  backdrop-filter: none;
}

.quote-button:hover,
.quote-button:focus-visible,
.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(91, 225, 255, 0.42);
  background: rgba(91, 225, 255, 0.1);
}

.quote-count {
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border: 1px solid rgba(91, 225, 255, 0.35);
  border-radius: 2px;
  color: #5be1ff;
  background: rgba(91, 225, 255, 0.12);
}

.site-nav,
body[data-page="home"] .site-nav,
body[data-page="home"] .site-header.is-scrolled .site-nav {
  border-color: rgba(91, 225, 255, 0.2);
  background: rgba(6, 14, 26, 0.96);
}

@media (max-width: 760px) {
  #site-header {
    min-height: 72px;
  }

  #site-header:has(.site-header.is-scrolled) {
    min-height: 56px;
  }

  .site-header-inner,
  body[data-page="home"] .site-header-inner,
  body[data-page="home"] .site-header.is-scrolled .site-header-inner {
    min-height: 72px;
    padding: 4px 16px;
  }

  .site-header.is-scrolled .site-header-inner,
  body[data-page="home"] .site-header.is-scrolled .site-header-inner {
    min-height: 56px;
    padding-top: 2px;
    padding-bottom: 2px;
  }

  .site-header:not(.is-scrolled) .logo-brand,
  .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite),
  .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite) .brand-primary-mark,
  body[data-page="home"] .site-header:not(.is-scrolled) .logo-brand,
  body[data-page="home"] .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite),
  body[data-page="home"] .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite) .brand-primary-mark {
    width: 168px;
    height: 52px;
  }

  .site-header.is-scrolled .logo-brand,
  body[data-page="home"] .site-header.is-scrolled .logo-brand {
    width: 42px;
    height: 42px;
    transform: translateX(-40px);
  }

  .site-header.is-scrolled .brand-composite:not(.footer-brand-composite),
  .site-header.is-scrolled .brand-composite:not(.footer-brand-composite) .brand-primary-mark,
  body[data-page="home"] .site-header.is-scrolled .brand-composite:not(.footer-brand-composite),
  body[data-page="home"] .site-header.is-scrolled .brand-composite:not(.footer-brand-composite) .brand-primary-mark {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 390px) {
  .site-header.is-scrolled .logo-brand,
  body[data-page="home"] .site-header.is-scrolled .logo-brand {
    transform: translateX(-36px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header::after,
  .site-header.is-scrolled .brand-leaf::after {
    animation: none;
  }

  .site-header::after {
    background-position: 50% 0;
  }

  .site-header.is-scrolled .brand-leaf::after {
    opacity: 0.28;
    background-position: 50% 50%;
  }
}

/* Scroll-only compact brand cycle: 30 seconds maple, 20 seconds sigil. */
.header-brand-sigil {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  pointer-events: none;
  opacity: 0;
  filter: none;
  transform: scale(0.78) rotateY(0deg);
  transform-style: preserve-3d;
  backface-visibility: visible;
  will-change: opacity, transform;
}

.site-header.is-scrolled .brand-leaf {
  animation: header-maple-cycle 50s linear infinite both;
}

.site-header.is-scrolled .header-brand-sigil {
  animation: header-sigil-cycle 50s linear infinite both;
}

@keyframes header-maple-cycle {
  0%,
  58.8%,
  59.999% {
    opacity: 1;
    transform: scale(0.98) rotateY(0deg);
  }

  60%,
  98.8%,
  99.999% {
    opacity: 0;
    transform: scale(0.78) rotateY(78deg);
  }

  100% {
    opacity: 1;
    transform: scale(0.98) rotateY(0deg);
  }
}

@keyframes header-sigil-cycle {
  0%,
  58.8%,
  59.999% {
    opacity: 0;
    transform: scale(0.78) rotateY(0deg);
  }

  60% {
    opacity: 1;
    transform: scale(0.98) rotateY(0deg);
  }

  67.2%,
  98.8%,
  99.999% {
    opacity: 1;
    transform: scale(0.98) rotateY(720deg);
  }

  100% {
    opacity: 0;
    transform: scale(0.78) rotateY(720deg);
  }
}

@media (hover: hover) and (min-width: 761px) {
  .site-header.is-scrolled .logo-brand:hover .brand-leaf,
  .site-header.is-scrolled .logo-brand:focus-visible .brand-leaf,
  .site-header.is-scrolled .logo-brand:hover .header-brand-sigil,
  .site-header.is-scrolled .logo-brand:focus-visible .header-brand-sigil {
    opacity: 0;
    animation: none;
    transform: scale(0.78);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header.is-scrolled .brand-leaf {
    opacity: 1;
    animation: none;
    transform: scale(0.98);
  }

  .site-header.is-scrolled .header-brand-sigil {
    opacity: 0;
    animation: none;
  }
}

/* Product-led responsive hero and leaf-shield wordmark release. */
.product-hero {
  height: clamp(560px, 86svh, 860px);
  min-height: 0;
  max-height: none;
  overflow: hidden;
  background: #020712;
}

.hero-art,
.hero-art > picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

body[data-page="home"] .hero-art::before {
  background: #020712;
  opacity: 1;
  filter: none;
}

body[data-page="home"] .hero-art::after {
  background:
    linear-gradient(90deg, rgba(2, 7, 18, 0.92) 0%, rgba(2, 7, 18, 0.68) 26%, rgba(2, 7, 18, 0.22) 52%, rgba(2, 7, 18, 0.04) 76%),
    linear-gradient(180deg, rgba(2, 7, 18, 0.14), transparent 58%, rgba(2, 7, 18, 0.34));
}

body[data-page="home"] .hero-art img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: auto;
  width: auto;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: fill;
  object-position: center;
}

@media (min-width: 761px) {
  body[data-page="home"] .hero-overlay-copy {
    top: 52%;
    right: auto;
    left: clamp(32px, 6.5vw, 124px);
    width: min(45vw, 720px);
    text-align: left;
  }

  body[data-page="home"] .hero-overlay-copy h1 {
    justify-content: flex-start;
  }

  body[data-page="home"] .hero-overlay-copy .cinematic-rule {
    margin-left: 0;
    transform-origin: left center;
  }

  body[data-page="home"] .hero-overlay-copy .cinematic-tagline,
  body[data-page="home"] .hero-overlay-copy .hero-message-stack {
    margin-left: 0;
  }

  body[data-page="home"] .hero-overlay-copy .cinematic-control-line {
    justify-items: start;
    text-align: left;
  }

  body[data-page="home"] .hero-overlay-copy .cinematic-control-line span:nth-child(2) {
    margin-right: 0;
    margin-left: 24px;
  }

  body[data-page="home"] .hero-overlay-copy .cinematic-control-line span:nth-child(3) {
    margin-right: 0;
    margin-left: 68px;
  }

  body[data-page="home"] .hero-overlay-copy .cinematic-control-line span:nth-child(4) {
    margin-right: 0;
    margin-left: 16px;
  }

  .site-header:not(.is-scrolled) .site-header-inner,
  body[data-page="home"] .site-header:not(.is-scrolled) .site-header-inner {
    grid-template-columns: 36px 264px minmax(0, 1fr) auto;
  }

  .site-header:not(.is-scrolled) .logo-brand,
  .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite),
  .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite) .brand-primary-mark,
  body[data-page="home"] .site-header:not(.is-scrolled) .logo-brand,
  body[data-page="home"] .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite),
  body[data-page="home"] .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite) .brand-primary-mark {
    width: 264px;
    height: 52px;
  }

  .site-header:not(.is-scrolled) .brand-primary-mark .brand-wordmark-image,
  body[data-page="home"] .site-header:not(.is-scrolled) .brand-primary-mark .brand-wordmark-image {
    width: 252px;
  }

  .site-header.is-scrolled .site-header-inner,
  body[data-page="home"] .site-header.is-scrolled .site-header-inner {
    grid-template-columns: 36px 64px minmax(0, 1fr) auto;
  }
}

@media (min-width: 761px) and (max-width: 1080px) {
  .site-header:not(.is-scrolled) .site-header-inner,
  body[data-page="home"] .site-header:not(.is-scrolled) .site-header-inner {
    grid-template-columns: 36px 220px minmax(0, 1fr) auto;
  }

  .site-header:not(.is-scrolled) .logo-brand,
  .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite),
  .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite) .brand-primary-mark,
  body[data-page="home"] .site-header:not(.is-scrolled) .logo-brand,
  body[data-page="home"] .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite),
  body[data-page="home"] .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite) .brand-primary-mark {
    width: 220px;
  }

  .site-header:not(.is-scrolled) .brand-primary-mark .brand-wordmark-image,
  body[data-page="home"] .site-header:not(.is-scrolled) .brand-primary-mark .brand-wordmark-image {
    width: 210px;
  }

  body[data-page="home"] .hero-overlay-copy {
    left: 28px;
    width: min(52vw, 560px);
  }
}

@media (max-width: 760px) {
  .product-hero {
    height: clamp(580px, 86svh, 760px);
  }

  body[data-page="home"] .hero-art::before {
    background: #020712;
    opacity: 1;
  }

  body[data-page="home"] .hero-art::after {
    background: linear-gradient(180deg, rgba(2, 7, 18, 0.72) 0%, rgba(2, 7, 18, 0.3) 40%, rgba(2, 7, 18, 0.08) 68%, rgba(2, 7, 18, 0.42) 100%);
  }

  body[data-page="home"] .hero-art,
  body[data-page="home"] .hero-art > picture {
    padding: 0;
  }

  body[data-page="home"] .hero-art img {
    top: 0;
    right: 0;
    bottom: auto;
    left: 0;
    width: 100%;
    height: auto;
    max-width: none;
    max-height: none;
    object-fit: fill;
    object-position: center;
  }

  body[data-page="home"] .hero-overlay-copy {
    top: clamp(104px, 17svh, 146px);
    right: 20px;
    bottom: auto;
    left: 20px;
    width: auto;
    text-align: left;
    transform: none;
  }

  body[data-page="home"] .product-hero .hero-overlay-copy h1 {
    justify-content: flex-start;
    font-size: 2.25rem;
  }

  body[data-page="home"] .hero-overlay-copy .cinematic-control-line {
    justify-items: start;
    text-align: left;
  }

  body[data-page="home"] .hero-overlay-copy .cinematic-control-line span:nth-child(n) {
    margin-right: 0;
    margin-left: 0;
  }

  .site-header:not(.is-scrolled) .brand-primary-mark .brand-wordmark-image,
  body[data-page="home"] .site-header:not(.is-scrolled) .brand-primary-mark .brand-wordmark-image {
    width: min(175px, 100%);
  }

  .site-header:not(.is-scrolled) .logo-brand,
  .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite),
  .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite) .brand-primary-mark,
  body[data-page="home"] .site-header:not(.is-scrolled) .logo-brand,
  body[data-page="home"] .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite),
  body[data-page="home"] .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite) .brand-primary-mark {
    width: min(175px, 100%);
    height: 44px;
  }
}

@media (max-width: 390px) {
  body[data-page="home"] .hero-overlay-copy {
    top: 100px;
    right: 16px;
    left: 16px;
  }

  body[data-page="home"] .hero-overlay-copy .cinematic-control-line {
    font-size: 0.98rem;
  }

  body[data-page="home"] .product-hero .hero-overlay-copy h1 {
    font-size: 2rem;
  }
}

/* Unified footer and compact leaf-shield release. */
.site-footer {
  position: relative;
  isolation: isolate;
  padding: 64px var(--page-gutter) 28px;
  color: #ffffff;
  border-top: 0;
  background: #020712;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #147447 0%, #8fcf3c 27%, #5fd9ff 62%, #d80621 100%);
}

.site-footer-inner {
  width: min(var(--content-max), 100%);
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.3fr);
  column-gap: clamp(44px, 7vw, 104px);
  row-gap: 42px;
  margin: 0 auto;
}

.footer-brand-block {
  max-width: 390px;
}

.footer-brand-link {
  width: min(360px, 100%);
  display: inline-flex;
  align-items: center;
}

.footer-brand-logo {
  width: 100%;
  height: auto;
  display: block;
  filter: none;
}

.footer-brand-summary {
  max-width: 350px;
  margin: 22px 0 0;
  color: rgba(223, 233, 242, 0.72);
  font-size: 0.96rem;
  line-height: 1.62;
}

.footer-contact-link {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  margin-top: 18px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 760;
  text-decoration: underline;
  text-decoration-color: rgba(95, 217, 255, 0.5);
  text-underline-offset: 5px;
}

.footer-contact-link:hover,
.footer-contact-link:focus-visible {
  color: #5fd9ff;
  text-decoration-color: currentColor;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(120px, 0.72fr) minmax(120px, 0.72fr) minmax(220px, 1.2fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.footer-column h2 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  display: block;
  margin: 11px 0 0;
  color: rgba(223, 233, 242, 0.68);
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-column a {
  width: max-content;
  max-width: 100%;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #ffffff;
}

.footer-service-column p {
  max-width: 300px;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  color: rgba(223, 233, 242, 0.48);
  border-top: 1px solid rgba(198, 215, 232, 0.14);
  font-size: 0.78rem;
  line-height: 1.4;
}

.brand-leaf {
  background-image: url("/assets/system-secure-leaf-shield-r1.webp");
  background-position: center;
  background-size: contain;
}

.brand-leaf::after {
  -webkit-mask-image: url("/assets/system-secure-leaf-shield-r1.webp");
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  mask-image: url("/assets/system-secure-leaf-shield-r1.webp");
  mask-position: center;
  mask-size: contain;
}

@media (max-width: 900px) {
  .site-footer-inner {
    grid-template-columns: 1fr;
    row-gap: 38px;
  }

  .footer-brand-block {
    max-width: 520px;
  }

  .footer-brand-summary {
    max-width: 460px;
  }
}

@media (max-width: 620px) {
  .site-footer {
    padding-top: 48px;
    padding-bottom: 24px;
  }

  .footer-brand-link {
    width: min(312px, 100%);
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 24px;
  }

  .footer-service-column {
    grid-column: 1 / -1;
  }

  .footer-meta {
    flex-direction: column;
    gap: 8px;
  }
}

/* Mobile usability and interaction-density release. */
@media (max-width: 760px) {
  :root {
    --page-gutter: 16px;
  }

  html {
    scroll-padding-top: 76px;
  }

  button,
  a,
  input,
  select,
  textarea {
    touch-action: manipulation;
  }

  #site-header,
  body[data-page="home"] #site-header {
    min-height: 68px;
  }

  #site-header:has(.site-header.is-scrolled),
  body[data-page="home"] #site-header:has(.site-header.is-scrolled) {
    min-height: 56px;
  }

  .site-header,
  body[data-page="home"] .site-header,
  body[data-page="home"] .site-header.is-scrolled {
    padding: 0;
  }

  .site-header-inner,
  body[data-page="home"] .site-header-inner,
  body[data-page="home"] .site-header.is-scrolled .site-header-inner {
    width: 100%;
    min-height: 68px;
    grid-template-columns: 44px minmax(0, 1fr) 44px 44px;
    gap: 4px;
    padding: 0 12px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .site-header.is-scrolled .site-header-inner,
  body[data-page="home"] .site-header.is-scrolled .site-header-inner {
    min-height: 56px;
  }

  .staff-access-link,
  body[data-page="home"] .staff-access-link,
  .quote-button,
  .nav-toggle,
  body[data-page="home"] .quote-button,
  body[data-page="home"] .nav-toggle {
    width: 44px;
    height: 44px;
    min-height: 44px;
  }

  .staff-access-link,
  body[data-page="home"] .staff-access-link {
    display: inline-flex;
  }

  .quote-button,
  body[data-page="home"] .quote-button {
    position: relative;
    gap: 0;
    justify-content: center;
    padding: 0;
  }

  .quote-button svg,
  body[data-page="home"] .quote-button svg {
    width: 22px;
    min-width: 22px;
    height: 22px;
    flex: 0 0 22px;
  }

  .quote-button .quote-count,
  body[data-page="home"] .quote-button .quote-count {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 19px;
    height: 19px;
    padding: 0 4px;
    border-radius: 9px;
    font-size: 0.66rem;
  }

  .logo-brand,
  body[data-page="home"] .logo-brand,
  .site-header:not(.is-scrolled) .logo-brand,
  body[data-page="home"] .site-header:not(.is-scrolled) .logo-brand,
  .brand-composite:not(.footer-brand-composite),
  .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite),
  .site-header:not(.is-scrolled) .brand-composite:not(.footer-brand-composite) .brand-primary-mark {
    width: 100%;
    max-width: 175px;
    height: 44px;
  }

  .site-header:not(.is-scrolled) .brand-primary-mark .brand-wordmark-image,
  body[data-page="home"] .site-header:not(.is-scrolled) .brand-primary-mark .brand-wordmark-image {
    width: 100%;
    max-width: 175px;
  }

  .site-header.is-scrolled .logo-brand,
  body[data-page="home"] .site-header.is-scrolled .logo-brand {
    width: 44px;
    height: 44px;
    transform: translateX(-48px);
  }

  .site-header.is-scrolled .brand-composite:not(.footer-brand-composite),
  .site-header.is-scrolled .brand-composite:not(.footer-brand-composite) .brand-primary-mark,
  body[data-page="home"] .site-header.is-scrolled .brand-composite:not(.footer-brand-composite),
  body[data-page="home"] .site-header.is-scrolled .brand-composite:not(.footer-brand-composite) .brand-primary-mark {
    width: 44px;
    height: 44px;
  }

  .site-header.is-scrolled .brand-wordmark-image,
  body[data-page="home"] .site-header.is-scrolled .brand-wordmark-image {
    visibility: hidden;
    opacity: 0;
  }

  .site-nav,
  body[data-page="home"] .site-nav,
  body[data-page="home"] .site-header.is-scrolled .site-nav {
    top: calc(100% + 6px);
    right: 12px;
    width: min(336px, calc(100% - 24px));
    max-height: calc(100dvh - 82px);
    padding: 8px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav a,
  body[data-page="home"] .site-nav a,
  body[data-page="home"] .site-header.is-scrolled .site-nav a {
    min-height: 48px;
    padding: 0 16px;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: 2.2rem;
    line-height: 1.02;
    overflow-wrap: anywhere;
  }

  .page-hero-content {
    padding: 46px 0;
  }

  .section {
    padding: 48px 0;
  }

  .section-heading h2,
  .mission-copy h2,
  .content-block h2 {
    font-size: 2.15rem;
    line-height: 1.04;
  }

  .visualizer-head h2,
  .summary-panel h2 {
    line-height: 1.18;
  }

  .button,
  .contact-form button,
  .quote-checkout-form button {
    min-height: 48px;
  }

  .button.small,
  .product-card .button,
  .product-card button {
    min-height: 44px;
  }

  .catalog-toolbar input,
  .catalog-toolbar select,
  .field input,
  .field select {
    min-height: 48px;
  }

  .category-filters {
    flex-wrap: nowrap;
    gap: 8px;
    margin-right: calc(var(--page-gutter) * -1);
    margin-bottom: 16px;
    margin-left: calc(var(--page-gutter) * -1);
    padding: 2px var(--page-gutter) 10px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: var(--page-gutter);
    scroll-snap-type: inline proximity;
    scrollbar-width: thin;
  }

  .category-filters button {
    min-height: 44px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .data-source,
  .product-card,
  .contact-card,
  .info-panel,
  .contact-panel {
    overflow-wrap: anywhere;
  }

  .preset-grid,
  .option-grid {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: min(78vw, 270px);
    gap: 10px;
    padding: 2px 2px 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 2px;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .preset-card,
  .option-card {
    min-height: 158px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .builder-group {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: 16px;
  }

  .builder-layout,
  .builder-layout > *,
  .builder-config,
  .preset-panel {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .builder-group-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .chassis-shell {
    padding: 12px;
  }

  .chassis-grid {
    gap: 8px;
  }

  .chassis-slot {
    min-height: 0;
    padding: 12px;
  }

  .quote-panel {
    width: 100%;
    height: 100dvh;
    gap: 14px;
    padding: 18px 16px 24px;
  }

  .quote-panel-header .icon-button {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }

  .quote-line button {
    min-width: 44px;
    min-height: 44px;
    padding: 8px;
  }

  .privacy-consent {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 12px;
  }

  .privacy-consent input {
    width: 22px;
    height: 22px;
    margin-top: 1px;
  }

  .contact-card a,
  .contact-value,
  .footer-contact-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .footer-column a {
    min-height: 34px;
    display: flex;
    align-items: center;
  }
}

@media (max-width: 380px) {
  :root {
    --page-gutter: 14px;
  }

  .site-header-inner,
  body[data-page="home"] .site-header-inner,
  body[data-page="home"] .site-header.is-scrolled .site-header-inner {
    grid-template-columns: 44px minmax(0, 1fr) 44px 44px;
    gap: 2px;
    padding-right: 8px;
    padding-left: 8px;
  }

  .site-header.is-scrolled .logo-brand,
  body[data-page="home"] .site-header.is-scrolled .logo-brand {
    transform: translateX(-46px);
  }

  body[data-page="home"] .hero-overlay-copy {
    right: 14px;
    left: 14px;
  }

  body[data-page="home"] .product-hero .hero-overlay-copy h1 {
    font-size: 1.92rem;
  }

  .page-hero h1 {
    font-size: 2.05rem;
  }

  .section-heading h2,
  .mission-copy h2,
  .content-block h2 {
    font-size: 1.95rem;
  }

  .preset-grid,
  .option-grid {
    grid-auto-columns: min(82vw, 252px);
  }
}

@media (max-height: 500px) and (orientation: landscape) and (max-width: 900px) {
  .product-hero {
    height: 100svh;
    min-height: 500px;
  }

  body[data-page="home"] .hero-overlay-copy {
    top: 48%;
  }
}

/* Match the compact shielded maple to its scale inside the open wordmark. */
.site-header.is-scrolled .brand-leaf,
body[data-page="home"] .site-header.is-scrolled .brand-leaf {
  inset: 7px;
  background-size: 100% auto;
}

.site-header.is-scrolled .brand-leaf::after,
body[data-page="home"] .site-header.is-scrolled .brand-leaf::after {
  -webkit-mask-size: 100% auto;
  mask-size: 100% auto;
}

@media (max-width: 760px) {
  .site-header.is-scrolled .brand-leaf,
  body[data-page="home"] .site-header.is-scrolled .brand-leaf {
    inset: 8px;
  }
}

/* Responsive text-flow containment release. */
.hero-summary-grid > *,
.section-heading > *,
.mission-grid > *,
.two-column > * {
  min-width: 0;
}

@media (max-width: 1080px) {
  .hero-summary-grid {
    grid-template-columns: minmax(0, 1fr);
    align-items: start;
  }

  .hero-summary-grid .hero-copy,
  .hero-summary-grid .hero-metrics {
    width: 100%;
    max-width: none;
    min-width: 0;
  }
}

@media (max-width: 900px) {
  .section-heading,
  .mission-grid,
  .two-column {
    grid-template-columns: minmax(0, 1fr);
  }

  .section-heading {
    gap: 18px;
    align-items: start;
  }

  .section-heading h2,
  .mission-copy h2,
  .content-block h2 {
    font-size: 2.45rem;
    line-height: 1.08;
  }
}

@media (max-width: 760px) {
  .hero-summary-grid {
    gap: 26px;
  }

  .hero-summary-band h2 {
    font-size: 2.35rem;
    line-height: 1.05;
  }

  .hero-summary-band .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-summary-band :is(.kicker, h2, p.lede) {
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
  }

  .section-heading h2,
  .mission-copy h2,
  .content-block h2 {
    font-size: 2.1rem;
    line-height: 1.08;
  }

  .hero-summary-grid .hero-metrics {
    display: grid;
  }

  .hero-summary-grid .hero-metrics dd {
    max-width: 100%;
  }
}

@media (max-width: 380px) {
  .hero-summary-band h2 {
    font-size: 2.12rem;
  }
}
