:root {
  --ink: #171a19;
  --ink-2: #202422;
  --ink-3: #303633;
  --steel: #64706a;
  --steel-light: #a8b0ac;
  --paper: #f4f0e7;
  --paper-2: #fbf9f4;
  --white: #ffffff;
  --orange: #f96a31;
  --orange-dark: #b83e11;
  --lime: #b8d17f;
  --line: rgba(23, 26, 25, 0.16);
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 32px 80px rgba(10, 13, 12, 0.22);
  --shell: min(100% - 2rem, 78rem);
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --display: "Arial Narrow", "Helvetica Neue Condensed", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

[id] {
  scroll-margin-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper-2);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  content: "";
  pointer-events: none;
  background-image:
    linear-gradient(rgba(23, 26, 25, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 26, 25, 0.025) 1px, transparent 1px);
  background-size: 40px 40px;
}

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

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.2em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 3px;
  box-shadow: 0 0 0 6px var(--ink);
}

::selection {
  color: var(--ink);
  background: #ffb696;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.7rem 1rem;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

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

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

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 40;
  top: 0;
  background: rgba(251, 249, 244, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  min-height: 4.6rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.brand,
.wordmark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1;
  text-decoration: none;
}

.brand img {
  width: 8.1rem;
  height: auto;
}

.wordmark::after {
  width: 0.42rem;
  height: 0.42rem;
  margin-left: 0.4rem;
  content: "";
  background: var(--orange);
  border-radius: 50%;
}

.menu-toggle {
  display: none;
  width: 2.8rem;
  height: 2.8rem;
  place-items: center;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  cursor: pointer;
}

.menu-toggle-lines,
.menu-toggle-lines::before,
.menu-toggle-lines::after {
  width: 1.15rem;
  height: 2px;
  background: currentColor;
}

.menu-toggle-lines {
  position: relative;
}

.menu-toggle-lines::before,
.menu-toggle-lines::after {
  position: absolute;
  left: 0;
  content: "";
  transition: transform 150ms ease, top 150ms ease;
}

.menu-toggle-lines::before {
  top: -0.38rem;
}

.menu-toggle-lines::after {
  top: 0.38rem;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 0.4rem 0 1rem;
}

.site-nav a {
  position: relative;
  padding: 0.72rem 0;
  color: #414844;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--orange-dark);
}

.site-nav .nav-order {
  color: var(--ink);
  font-weight: 900;
}

.js .menu-toggle {
  display: grid;
}

.js .site-nav {
  display: none;
}

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

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 76% 24%, rgba(249, 106, 49, 0.18), transparent 25rem),
    linear-gradient(130deg, rgba(255, 255, 255, 0.025), transparent 42%);
}

.hero-grid-lines,
.os-grid,
.quote-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000, transparent 94%);
}

.hero-shell {
  display: grid;
  min-height: calc(100svh - 4.6rem);
  align-items: center;
  padding-block: clamp(4rem, 11vw, 7.5rem) 3rem;
  gap: 3rem;
}

.eyebrow {
  display: flex;
  margin: 0 0 1.3rem;
  align-items: center;
  gap: 0.65rem;
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow span {
  color: var(--ink);
}

.eyebrow-light {
  color: #ff9a6f;
}

.eyebrow-light span {
  color: rgba(255, 255, 255, 0.65);
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.hero h1 {
  max-width: 8ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 18vw, 8.8rem);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.065em;
  line-height: 0.78;
  text-transform: uppercase;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  color: var(--orange);
}

.hero-lede {
  max-width: 43rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 2.2vw, 1.2rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.1rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--orange);
  border-color: var(--orange);
}

.button-primary:hover {
  background: #ff8b5a;
  border-color: #ff8b5a;
}

.button-ghost {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.38);
}

.button-ghost:hover {
  border-color: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.hero-product {
  position: relative;
  min-height: 25rem;
}

.hero-image-wrap {
  position: absolute;
  inset: 1.5rem 0 1rem;
  overflow: hidden;
  background: #736d64;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.hero-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(120deg, rgba(23, 26, 25, 0.08), transparent 45%, rgba(23, 26, 25, 0.36));
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 48% 46%;
}

.product-orbit {
  position: absolute;
  inset: -1rem;
  border: 1px solid rgba(249, 106, 49, 0.42);
  border-radius: 50%;
  transform: rotate(-12deg);
}

.product-orbit::before,
.product-orbit::after {
  position: absolute;
  width: 0.65rem;
  height: 0.65rem;
  content: "";
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 0.38rem rgba(249, 106, 49, 0.14);
}

.product-orbit::before {
  top: 8%;
  left: 24%;
}

.product-orbit::after {
  right: 8%;
  bottom: 20%;
}

.tech-tag {
  position: absolute;
  z-index: 3;
  min-width: 8.5rem;
  padding: 0.7rem 0.8rem;
  color: var(--ink);
  background: rgba(251, 249, 244, 0.95);
  border-left: 3px solid var(--orange);
  box-shadow: 0 12px 32px rgba(10, 13, 12, 0.22);
}

.tech-tag span,
.tech-tag strong {
  display: block;
  font-family: var(--mono);
}

.tech-tag span {
  margin-bottom: 0.25rem;
  color: var(--steel);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
}

.tech-tag strong {
  font-size: 0.67rem;
}

.tech-tag-a {
  top: 0;
  left: -0.25rem;
}

.tech-tag-b {
  right: 0;
  bottom: 0;
}

.tech-tag-c {
  right: -0.25rem;
  top: 37%;
}

.hero-status {
  display: grid;
  padding-block: 0.2rem;
  border-top: 1px solid var(--line-dark);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-status > div {
  min-height: 5rem;
  padding: 0.9rem;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.hero-status > div:nth-child(even) {
  border-right: 0;
}

.hero-status small,
.hero-status strong {
  display: block;
}

.hero-status small {
  margin-bottom: 0.35rem;
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-status strong {
  color: rgba(255, 255, 255, 0.88);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
}

.status-pulse {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin: 0 0.4rem 0.4rem 0;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(184, 209, 127, 0.45);
  animation: signal-pulse 2.4s ease-out infinite;
}

@keyframes signal-pulse {
  0% { box-shadow: 0 0 0 0 rgba(184, 209, 127, 0.45); }
  65%, 100% { box-shadow: 0 0 0 0.55rem rgba(184, 209, 127, 0); }
}

.section {
  position: relative;
  padding: clamp(4.5rem, 10vw, 8rem) 0;
}

.section-heading {
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-heading h2,
.os-content > h2,
.specs-intro h2,
.quote-intro h2,
.contact-layout h2 {
  max-width: 13ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.7rem, 9vw, 5.7rem);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-transform: uppercase;
}

.section-heading > p:last-child,
.heading-split > p,
.specs-intro > p,
.quote-intro > p,
.os-content > p {
  max-width: 38rem;
  color: var(--steel);
}

.signal-flow {
  position: relative;
  display: grid;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}

.signal-flow::before {
  position: absolute;
  top: 1.65rem;
  bottom: 1.65rem;
  left: 1.65rem;
  width: 1px;
  content: "";
  background: var(--line);
}

.signal-flow li {
  position: relative;
  display: grid;
  min-height: 10rem;
  grid-template-columns: 3.4rem 1fr;
  gap: 1.2rem;
  padding: 1.25rem 0;
}

.flow-node {
  position: relative;
  z-index: 2;
  display: grid;
  width: 3.4rem;
  height: 3.4rem;
  place-items: center;
  color: var(--ink);
  background: var(--paper-2);
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 800;
}

.signal-flow li:nth-child(2) .flow-node,
.signal-flow li:nth-child(4) .flow-node {
  color: var(--white);
  background: var(--ink);
}

.signal-flow li:nth-child(3) .flow-node {
  background: var(--orange);
  border-color: var(--orange);
}

.signal-flow small,
.os-modules span,
.product-meta,
.category-type,
.resource-card > div span,
.form-actions > span {
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.signal-flow h3 {
  margin: 0.35rem 0 0.55rem;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.signal-flow p {
  margin: 0;
  color: var(--steel);
  font-size: 0.9rem;
}

.os-section {
  overflow: hidden;
  color: var(--white);
  background: var(--ink-2);
  isolation: isolate;
}

.os-grid {
  mask-image: linear-gradient(90deg, transparent, #000 35%, #000);
}

.os-layout {
  display: grid;
  gap: 3.5rem;
}

.os-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  height: clamp(24rem, 75vw, 36rem);
  overflow: hidden;
  background: #736d64;
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.os-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(160deg, transparent 48%, rgba(23, 26, 25, 0.78));
}

.os-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.os-screen-label {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  padding: 1rem;
  background: rgba(23, 26, 25, 0.88);
  border-left: 3px solid var(--orange);
}

.os-screen-label span,
.os-screen-label strong {
  display: block;
  font-family: var(--mono);
}

.os-screen-label span {
  margin-bottom: 0.3rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.58rem;
}

.os-screen-label strong {
  font-size: 0.9rem;
}

.os-content > p {
  color: rgba(255, 255, 255, 0.65);
}

.os-modules {
  display: grid;
  margin-top: 2.2rem;
  border-top: 1px solid var(--line-dark);
}

.os-modules article {
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.os-modules h3 {
  margin: 0.45rem 0 0.55rem;
  font-family: var(--display);
  font-size: 1.5rem;
  line-height: 1;
  text-transform: uppercase;
}

.os-modules p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

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

.category-controls {
  display: flex;
  margin-bottom: 1.25rem;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}

.category-controls a {
  flex: 0 0 auto;
  padding: 0.85rem 1rem;
  color: var(--steel);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.category-controls a:hover,
.category-controls a[aria-current="true"] {
  color: var(--ink);
  box-shadow: inset 0 -3px 0 var(--orange);
}

.product-field {
  display: grid;
  gap: 1rem;
}

.product-feature {
  display: grid;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
}

.product-feature-copy {
  padding: clamp(1.5rem, 5vw, 3.5rem);
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
}

.product-meta [data-product-price] {
  flex-basis: 100%;
  font-size: 0.78rem;
}

.product-feature h3 {
  max-width: 9ch;
  margin: 2rem 0 1.1rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.9;
  text-transform: uppercase;
}

.product-feature-copy > p,
.category-panel p {
  color: var(--steel);
}

.compact-list {
  display: grid;
  margin: 1.5rem 0 2rem;
  padding: 0;
  list-style: none;
}

.compact-list li {
  padding: 0.62rem 0;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

.compact-list li::before {
  color: var(--orange);
  content: "■";
  margin-right: 0.65rem;
}

.product-feature-figure {
  position: relative;
  width: 100%;
  min-width: 0;
  height: clamp(21rem, 45vw, 32rem);
  overflow: hidden;
  background: var(--ink-3);
}

.product-feature-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-feature-figure > span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.7rem;
  color: var(--white);
  background: rgba(23, 26, 25, 0.82);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.category-panel {
  display: grid;
  min-height: 18rem;
  align-content: space-between;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  background: var(--white);
  border: 1px solid var(--line);
}

.category-panel-dark {
  color: var(--white);
  background: var(--ink);
}

.category-panel-dark p {
  color: rgba(255, 255, 255, 0.62);
}

.category-index {
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 4rem;
  font-weight: 900;
  line-height: 0.8;
}

.category-panel-dark .category-index {
  color: #ff9a6f;
}

.category-panel h3 {
  margin: 0.5rem 0 0.75rem;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.category-panel > a {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.specs-layout {
  display: grid;
  gap: 3rem;
}

.specs-intro {
  align-self: start;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-grid {
  display: grid;
  margin: 0;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.spec-grid > div {
  position: relative;
  min-height: 10rem;
  padding: 1.2rem;
  background: var(--white);
}

.spec-grid dt {
  margin-bottom: 0.9rem;
  color: var(--steel);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.spec-grid dd {
  max-width: 17rem;
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.spec-grid > div > span {
  position: absolute;
  right: 0.8rem;
  bottom: 0.55rem;
  color: rgba(23, 26, 25, 0.18);
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 900;
}

.spec-grid .spec-major {
  color: var(--white);
  background: var(--ink);
}

.spec-grid .spec-major dt {
  color: rgba(255, 255, 255, 0.55);
}

.spec-grid .spec-major > span {
  color: rgba(255, 255, 255, 0.14);
}

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

.solutions-section .heading-split > p {
  color: rgba(255, 255, 255, 0.62);
}

.solution-rail {
  display: grid;
  border-top: 1px solid var(--line-dark);
}

.solution-rail article {
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--line-dark);
}

.solution-rail article > span {
  color: var(--orange);
  font-family: var(--display);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 0.8;
}

.solution-rail h3 {
  margin: 1.5rem 0 0.7rem;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.solution-rail p {
  color: rgba(255, 255, 255, 0.62);
}

.solution-rail a {
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.resource-board {
  display: grid;
  gap: 1rem;
}

.resource-card {
  min-height: 20rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
}

.resource-card > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.resource-card > div strong {
  color: rgba(23, 26, 25, 0.16);
  font-family: var(--display);
  font-size: 3.6rem;
  line-height: 0.75;
}

.resource-card h3 {
  max-width: 10ch;
  margin: 4rem 0 0.8rem;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.resource-card p {
  color: var(--steel);
}

.resource-card > a {
  overflow-wrap: anywhere;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.resource-card-controlled {
  color: var(--white);
  background: var(--ink-2);
  border-color: var(--ink-2);
}

.resource-card-controlled p {
  color: rgba(255, 255, 255, 0.62);
}

.resource-card-controlled > a {
  color: var(--white);
}

.resource-card-controlled > div strong {
  color: rgba(255, 255, 255, 0.14);
}

.quote-section {
  overflow: hidden;
  color: var(--white);
  background: var(--ink-2);
  isolation: isolate;
}

.quote-grid {
  opacity: 0.55;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}

.quote-layout {
  display: grid;
  gap: 3rem;
}

.quote-intro > p {
  color: rgba(255, 255, 255, 0.65);
}

.commerce-state {
  display: flex;
  margin-top: 2rem;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-dark);
}

.commerce-state > span {
  flex: 0 0 auto;
  width: 0.65rem;
  height: 0.65rem;
  margin-top: 0.35rem;
  background: var(--orange);
  border-radius: 50%;
}

.commerce-state strong,
.commerce-state p {
  display: block;
  margin: 0;
}

.commerce-state strong {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.commerce-state p,
.privacy-note {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
}

.quote-form {
  padding: clamp(1.25rem, 5vw, 2.5rem);
  color: var(--ink);
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.field-grid {
  display: grid;
  gap: 1rem;
}

.form-field {
  display: grid;
  align-content: start;
}

.form-field label {
  margin-bottom: 0.38rem;
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
}

.form-field label span {
  color: var(--orange-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3rem;
  padding: 0.72rem 0.8rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(23, 26, 25, 0.3);
  border-radius: 0;
}

.form-field textarea {
  min-height: 8.5rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange-dark);
}

.form-field [aria-invalid="true"] {
  border-color: #a22118;
  box-shadow: inset 3px 0 0 #a22118;
}

.form-field [aria-invalid="true"]:focus-visible {
  box-shadow: inset 3px 0 0 #a22118, 0 0 0 6px var(--ink);
}

.field-error {
  min-height: 1.2rem;
  padding-top: 0.2rem;
  color: #8f1e17;
  font-size: 0.7rem;
}

.form-actions {
  display: flex;
  margin-top: 0.7rem;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem 1rem;
}

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: #e8efdc;
  border-left: 4px solid #68813e;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  background: #f8e3df;
  border-left-color: #a22118;
}

.form-status p {
  margin: 0 0 0.55rem;
}

.form-status a {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 800;
}

.noscript-note {
  margin-top: 1rem;
  padding: 0.8rem;
  background: #f8e3df;
}

.contact-section {
  padding: clamp(3.5rem, 9vw, 6.5rem) 0;
  background: var(--orange);
}

.contact-layout {
  display: grid;
  gap: 2.5rem;
}

.contact-layout .eyebrow {
  color: var(--ink);
}

.contact-panel {
  display: grid;
  gap: 1px;
  background: rgba(23, 26, 25, 0.22);
  border: 1px solid rgba(23, 26, 25, 0.22);
}

.contact-panel > * {
  padding: 1rem;
  background: rgba(251, 249, 244, 0.9);
  text-decoration: none;
}

.contact-panel a:focus-visible {
  outline-color: var(--ink);
}

.contact-panel span,
.contact-panel strong {
  display: block;
}

.contact-panel span {
  margin-bottom: 0.4rem;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.58rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-panel strong {
  overflow-wrap: anywhere;
  font-size: 0.94rem;
}

.site-footer {
  padding: 2.2rem 0;
  color: rgba(255, 255, 255, 0.62);
  background: #0f1211;
  border-top: 1px solid var(--line-dark);
}

.footer-layout {
  display: grid;
  gap: 1.2rem;
}

.footer-brand {
  display: inline-block;
  width: 7.5rem;
  padding: 0.35rem;
  background: var(--paper-2);
}

.footer-brand img {
  width: 100%;
  height: auto;
}

.footer-layout > p {
  margin: 0;
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
}

.copyright {
  font-family: var(--mono);
  font-size: 0.62rem !important;
  letter-spacing: 0.045em;
}

/* Shared brochure-page treatment */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(4.5rem, 13vw, 8rem) 0 clamp(4rem, 10vw, 7rem);
  color: var(--white);
  background: var(--ink);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, #000, transparent 90%);
}

.page-hero .shell {
  position: relative;
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: 3rem;
}

.kicker,
.section-label,
.placeholder-label {
  margin: 0 0 1.2rem;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.kicker,
.placeholder-label,
.section-dark .section-label {
  color: #ff9a6f;
}

.section-label {
  color: var(--orange-dark);
}

.page-title {
  max-width: 13ch;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.6rem, 15vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.82;
  text-transform: uppercase;
}

.page-title.stacked span {
  display: block;
}

.page-title.stacked span:nth-child(2) {
  color: var(--orange);
  font-size: 0.62em;
  font-style: italic;
}

.page-title-wide {
  max-width: 15ch;
  font-size: clamp(2.6rem, 11vw, 6rem);
}

.page-hero .hero-copy > p:last-child {
  max-width: 45rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
}

.media-placeholder {
  display: grid;
  min-height: 18rem;
  place-content: center;
  padding: 2rem;
  color: rgba(255, 255, 255, 0.58);
  background:
    linear-gradient(135deg, transparent 49.7%, rgba(255, 255, 255, 0.16) 50%, transparent 50.3%),
    linear-gradient(45deg, transparent 49.7%, rgba(255, 255, 255, 0.16) 50%, transparent 50.3%),
    var(--ink-3);
  border: 1px dashed rgba(255, 255, 255, 0.35);
  text-align: center;
}

.media-placeholder span,
.media-placeholder small {
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-placeholder strong {
  display: block;
  margin: 0.4rem 0;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(2.5rem, 12vw, 5rem);
  line-height: 1;
  overflow-wrap: anywhere;
}

.page-photo {
  position: relative;
  width: 100%;
  min-width: 0;
  height: clamp(20rem, 45vw, 32rem);
  overflow: hidden;
  background: #736d64;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: var(--shadow);
  clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
}

.page-photo::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(145deg, transparent 45%, rgba(23, 26, 25, 0.58));
}

.page-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-photo > span {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.7rem;
  color: var(--white);
  background: rgba(23, 26, 25, 0.82);
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
}

.signal-strip {
  color: var(--white);
  background: var(--ink-3);
  border-bottom: 4px solid var(--orange);
}

.signal-list {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-dark);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
}

.section-dark {
  color: var(--white);
  background: var(--ink-2);
}

.content-grid,
.category-grid,
.fact-grid,
.placeholder-grid,
.bundle-grid,
.resource-panel {
  display: grid;
  gap: 1rem;
}

.long-copy {
  max-width: 48rem;
}

.long-copy p {
  font-size: 1.08rem;
}

.long-copy h2 {
  max-width: 14ch;
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.category-card,
.fact-card,
.placeholder-card,
.bundle-card {
  min-height: 17rem;
  padding: 1.5rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
}

.category-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
}

.category-card:hover {
  border-color: var(--orange);
}

.card-index {
  color: var(--orange-dark);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
}

.category-card h2,
.category-card h3,
.fact-card h2,
.fact-card h3,
.placeholder-card h2,
.bundle-card h2,
.bundle-card h3 {
  max-width: 12ch;
  margin: 2.5rem 0 1.2rem;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  text-transform: uppercase;
}

.card-link {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.placeholder-card,
.bundle-card {
  border-style: dashed;
}

.fact-card {
  min-height: 15rem;
  color: var(--white);
  background: var(--ink-3);
  border-color: var(--line-dark);
}

.fact-card p:last-child {
  color: var(--steel-light);
}

.placeholder-card dl,
.bundle-card dl {
  margin: 1.5rem 0 0;
}

.placeholder-card dl div,
.bundle-card dl div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.7fr) 1fr;
  padding: 0.55rem 0;
  border-top: 1px solid var(--line);
}

.placeholder-card dt,
.placeholder-card dd,
.bundle-card dt,
.bundle-card dd {
  margin: 0;
  font-size: 0.8rem;
}

.notice {
  margin-bottom: 1.5rem;
  padding: 1rem;
  color: var(--ink);
  background: #fff0e9;
  border-left: 4px solid var(--orange);
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
}

.tier-table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 1px solid var(--line);
}

.tier-table {
  width: 100%;
  min-width: 46rem;
  border-collapse: collapse;
}

.tier-table th,
.tier-table td {
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.tier-table thead th {
  color: var(--white);
  background: var(--ink-3);
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.tier-table tbody th {
  color: var(--orange-dark);
  font-family: var(--display);
  font-size: 1.2rem;
  text-transform: uppercase;
}

.contact-card {
  padding: 2rem;
  background: var(--white);
  border-top: 4px solid var(--orange);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.distributor-list {
  display: grid;
  gap: 1rem;
  margin: 0;
}

.distributor-list div {
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.distributor-list dt {
  color: var(--steel);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
}

.distributor-list dd {
  margin: 0.25rem 0 0;
}

.error-page {
  display: grid;
  min-height: 100vh;
  grid-template-rows: auto 1fr auto;
}

.error-main {
  display: grid;
  place-items: center;
  padding: 5rem 0;
}

.error-panel {
  max-width: 42rem;
  padding: clamp(1.5rem, 7vw, 4rem);
  color: var(--white);
  background: var(--ink-2);
  border-left: 5px solid var(--orange);
}

.error-panel h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 20vw, 9rem);
  line-height: 0.8;
}

@media (min-width: 48rem) {
  :root {
    --shell: min(100% - 3rem, 78rem);
  }

  .hero-product {
    min-height: 34rem;
  }

  .hero-status {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .hero-status > div,
  .hero-status > div:nth-child(even) {
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .hero-status > div:last-child {
    border-right: 0;
  }

  .heading-split {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.75fr);
    align-items: end;
    gap: 3rem;
  }

  .os-modules,
  .resource-board,
  .field-grid,
  .spec-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .form-field-wide {
    grid-column: 1 / -1;
  }

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

  .product-feature {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }

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

  .solution-rail article {
    padding: 1.7rem;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .solution-rail article:last-child {
    border-right: 0;
  }

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

  .footer-layout {
    grid-template-columns: auto minmax(12rem, 1fr) auto;
    align-items: center;
  }

  .footer-layout .copyright {
    grid-column: 1 / -1;
  }

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

  .category-grid,
  .fact-grid,
  .placeholder-grid,
  .bundle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

  .signal-list li {
    padding: 1rem;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
    text-align: center;
  }
}

@media (min-width: 64rem) {
  .header-inner {
    flex-wrap: nowrap;
  }

  .menu-toggle,
  .js .menu-toggle {
    display: none;
  }

  .site-nav,
  .js .site-nav,
  .js .site-nav.is-open {
    display: flex;
    width: auto;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: clamp(0.7rem, 1.5vw, 1.45rem);
  }

  .site-nav a {
    padding: 1.75rem 0;
    border-top: 0;
  }

  .site-nav a::after {
    position: absolute;
    right: 0;
    bottom: 1.1rem;
    left: 0;
    height: 2px;
    content: "";
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 150ms ease;
  }

  .site-nav a:hover::after,
  .site-nav a[aria-current="page"]::after {
    transform: scaleX(1);
  }

  .site-nav .nav-order {
    padding: 0.75rem 0.9rem;
    color: var(--white);
    background: var(--ink);
  }

  .site-nav .nav-order::after {
    display: none;
  }

  .hero-shell {
    grid-template-columns: minmax(0, 0.94fr) minmax(30rem, 1.06fr);
    gap: 4rem;
  }

  .hero-product {
    min-height: 39rem;
  }

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

  .signal-flow::before {
    top: 1.7rem;
    right: 10%;
    bottom: auto;
    left: 10%;
    width: auto;
    height: 1px;
  }

  .signal-flow li {
    display: block;
    min-height: 18rem;
    padding: 0 1.05rem;
  }

  .flow-node {
    margin-bottom: 2rem;
  }

  .os-layout {
    grid-template-columns: minmax(22rem, 0.8fr) minmax(0, 1.2fr);
    align-items: center;
    gap: clamp(4rem, 8vw, 7rem);
  }

  .os-visual {
    height: 42rem;
  }

  .specs-layout {
    grid-template-columns: minmax(18rem, 0.65fr) minmax(0, 1.35fr);
    align-items: start;
    gap: clamp(3rem, 7vw, 6rem);
  }

  .specs-intro {
    position: sticky;
    top: 7rem;
  }

  .quote-layout {
    grid-template-columns: minmax(18rem, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
    gap: clamp(3rem, 7vw, 6rem);
  }

  .quote-intro {
    position: sticky;
    top: 7rem;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(28rem, 0.8fr);
    align-items: end;
  }
}

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

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

@media print {
  .site-header,
  .button-row,
  .tech-tag,
  .product-orbit,
  .quote-form {
    display: none;
  }

  body,
  .hero,
  .os-section,
  .solutions-section,
  .quote-section,
  .site-footer {
    color: #000;
    background: #fff;
  }
}
