:root {
  color-scheme: light dark;
  accent-color: #ff6d2d;
  --canvas: #090d0f;
  --canvas-deep: #06090a;
  --surface: #0d1518;
  --surface-raised: #121d20;
  --surface-bright: #18272a;
  --line: #2a3c3f;
  --line-soft: rgb(136 181 174 / 18%);
  --text: #f1f4ed;
  --text-soft: #c5d1ca;
  --muted: #8ea19f;
  --orange: #ff6d2d;
  --orange-soft: #ffad7d;
  --teal: #00d4c7;
  --teal-soft: #8ff1e6;
  --lime: #c4f36d;
  --shadow: 0 1.25rem 4rem rgb(0 0 0 / 28%);
  --container: min(75rem, calc(100vw - 3rem));
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: #516668 #101719;
  scrollbar-width: thin;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 85% -15%, rgb(0 212 199 / 11%), transparent 31rem),
    radial-gradient(circle at 5% 20%, rgb(255 109 45 / 8%), transparent 28rem),
    var(--canvas);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.5;
  text-align: start;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgb(147 187 179 / 3%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(147 187 179 / 3%) 1px, transparent 1px);
  background-size: 4rem 4rem;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  pointer-events: none;
}

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

button,
select {
  cursor: pointer;
}

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

a {
  color: inherit;
  text-decoration-color: rgb(143 241 230 / 50%);
  text-underline-offset: 0.2em;
}

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

h1,
h2,
h3,
p {
  margin-block: 0;
}

h1,
h2,
h3 {
  font-weight: 680;
  line-height: 0.97;
  text-wrap: balance;
}

h1 span,
h2 em,
h3 span {
  color: var(--teal);
  font-style: normal;
}

ul,
ol {
  margin-block: 0;
  padding-inline-start: 0;
}

.site-shell {
  overflow: clip;
}

.skip-link {
  position: fixed;
  z-index: 20;
  inset: 0 auto auto 1rem;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  border: 1px solid var(--teal);
  background: var(--canvas);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease;
}

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

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

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  min-height: 5.25rem;
  margin-inline: auto;
  border-bottom: 1px solid rgb(135 166 162 / 16%);
  background: rgb(9 13 15 / 88%);
}

@supports (backdrop-filter: blur(1rem)) {
  .site-header {
    background: rgb(9 13 15 / 68%);
    backdrop-filter: blur(1rem);
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.48rem;
  color: var(--text);
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.brand-mark {
  width: 1.75rem;
  color: var(--orange);
}

.brand-name {
  white-space: nowrap;
}

.brand-suffix {
  color: var(--muted);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.15em;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 1.45rem;
  list-style: none;
}

.primary-nav a {
  color: var(--text-soft);
  font-size: 0.87rem;
  font-weight: 620;
  text-decoration: none;
  transition: color 150ms ease;
}

.primary-nav a:hover {
  color: var(--teal-soft);
}

.nav-cta,
.nav-toggle {
  min-height: 2.65rem;
  border: 1px solid rgb(255 109 45 / 70%);
  border-radius: 0;
  background: transparent;
  color: var(--orange-soft);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  padding-inline: 0.9rem;
}

.nav-cta:hover,
.nav-toggle:hover {
  background: rgb(255 109 45 / 12%);
  color: #ffe5d5;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.65rem;
}

.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 1.05rem;
  height: 1px;
  background: currentColor;
  content: "";
}

.menu-icon {
  position: relative;
}

.menu-icon::before,
.menu-icon::after {
  position: absolute;
  inset-inline-start: 0;
}

.menu-icon::before {
  top: -0.3rem;
}

.menu-icon::after {
  top: 0.3rem;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(25rem, 1.07fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 7rem);
  min-height: min(49rem, calc(100svh - 5.25rem));
  padding-block: clamp(4rem, 8vw, 7.4rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  color: var(--orange-soft);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.4rem;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 10ch;
  margin-block: 1.25rem 1.45rem;
  font-size: clamp(3.15rem, 6.1vw, 6.25rem);
  letter-spacing: -0.068em;
}

.hero-intro {
  max-width: 39rem;
  color: var(--text-soft);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.67;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  min-height: 3.1rem;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 0.65rem 1rem;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 760;
  letter-spacing: 0.01em;
  line-height: 1.1;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.button svg {
  width: 1.05rem;
}

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

.button-primary {
  border-color: var(--orange);
  background: var(--orange);
  color: #170b06;
}

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

.button-quiet {
  border-color: var(--line);
  background: rgb(13 21 24 / 70%);
  color: var(--text-soft);
}

.button-quiet:hover {
  border-color: var(--teal);
  background: rgb(0 212 199 / 9%);
  color: var(--teal-soft);
}

.button-large {
  min-height: 3.6rem;
  padding-inline: 1.25rem;
}

.hero-credentials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: clamp(2.9rem, 5vw, 4.4rem);
  list-style: none;
}

.hero-credentials li {
  min-width: 0;
  padding-top: 0.8rem;
  border-top: 1px solid var(--line);
}

.hero-credentials strong,
.hero-credentials span {
  display: block;
}

.hero-credentials strong {
  color: var(--teal-soft);
  font-size: 0.73rem;
  letter-spacing: 0.02em;
}

.hero-credentials span {
  margin-top: 0.23rem;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
}

.hero-console {
  position: relative;
  isolation: isolate;
  min-width: 0;
  margin: 0;
  border: 1px solid rgb(126 171 165 / 29%);
  background:
    linear-gradient(135deg, rgb(22 38 40 / 92%), rgb(8 16 18 / 92%)),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero-console::before {
  position: absolute;
  z-index: -1;
  inset: -2.5rem;
  background: radial-gradient(circle, rgb(0 212 199 / 14%), transparent 62%);
  content: "";
  filter: blur(1.4rem);
}

.console-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line-soft);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.status-pulse {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--teal-soft);
  text-align: end;
}

.status-pulse i {
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 999px;
  background: var(--teal);
  box-shadow: 0 0 0.6rem var(--teal);
}

.console-visual {
  padding: 1.15rem clamp(1rem, 3vw, 2rem) 0.45rem;
}

.console-visual svg {
  width: 100%;
  min-height: 17rem;
}

.hero-console figcaption {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  padding: 0.45rem 1rem 1rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.58rem;
  letter-spacing: 0.02em;
}

.hero-console figcaption span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.data-dot {
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
}

.data-dot.orange {
  background: var(--orange);
}

.data-dot.teal {
  background: var(--teal);
}

.data-dot.white {
  background: #eaf5ec;
}

.console-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-soft);
}

.console-stats div {
  min-width: 0;
  padding: 1rem;
  border-inline-end: 1px solid var(--line-soft);
}

.console-stats div:last-child {
  border-inline-end: 0;
}

.console-stats dt {
  color: var(--orange-soft);
  font-family: var(--mono);
  font-size: clamp(0.86rem, 1.5vw, 1.22rem);
  font-weight: 700;
}

.console-stats dd {
  margin: 0.24rem 0 0;
  color: var(--muted);
  font-size: 0.61rem;
  line-height: 1.35;
}

.proof-bar {
  display: grid;
  grid-template-columns: minmax(12rem, 0.7fr) minmax(0, 2.3fr);
  gap: 2rem;
  align-items: center;
  width: 100%;
  padding: 1.25rem max(1.5rem, calc((100vw - 75rem) / 2));
  border-block: 1px solid var(--line-soft);
  background: #0b1214;
}

.proof-bar p {
  color: var(--muted);
  font-size: 0.8rem;
}

.proof-bar ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem 1.25rem;
  list-style: none;
}

.proof-bar li {
  color: #b8cac3;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.standard-section,
.platforms-section,
.catalog-section,
.fleet-section,
.privacy-section {
  padding-block: clamp(5.5rem, 10vw, 9.5rem);
}

.section-heading {
  max-width: 51rem;
}

.section-heading h2,
.catalog-heading h2,
.fleet-copy h2,
.privacy-section h2,
.closing-cta h2 {
  margin-top: 0.95rem;
  font-size: clamp(2.5rem, 4.8vw, 4.6rem);
  letter-spacing: -0.06em;
}

.section-lead,
.section-heading > p:last-child,
.catalog-heading > p {
  max-width: 45rem;
  margin-top: 1.25rem;
  color: var(--text-soft);
  line-height: 1.7;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.1fr minmax(15rem, 0.75fr);
  gap: clamp(2rem, 6vw, 6rem);
  max-width: none;
  align-items: end;
}

.split-heading > p {
  margin-bottom: 0.35rem;
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(2.75rem, 6vw, 5rem);
  border: 1px solid var(--line);
  background: var(--line);
}

.standard-card {
  min-height: 22rem;
  padding: clamp(1.4rem, 3vw, 2.3rem);
  background: var(--surface);
}

.card-index {
  display: block;
  color: var(--orange-soft);
  font-family: var(--mono);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.standard-card svg {
  width: 4.3rem;
  margin-block: 2.35rem 1.45rem;
  color: var(--teal);
}

.standard-card h3 {
  font-size: clamp(1.28rem, 2vw, 1.7rem);
  letter-spacing: -0.04em;
}

.standard-card p {
  max-width: 27rem;
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.compliance-callout {
  display: grid;
  grid-template-columns: 0.76fr 1.3fr auto;
  gap: 2rem;
  align-items: center;
  margin-top: 1px;
  padding: clamp(1.35rem, 3vw, 2.25rem);
  border: 1px solid var(--line);
  background: linear-gradient(90deg, rgb(0 212 199 / 10%), rgb(0 212 199 / 1%));
}

.compliance-callout > div strong {
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  letter-spacing: -0.04em;
}

.compliance-callout > div p {
  max-width: 42rem;
  margin-top: 0.35rem;
  color: var(--text-soft);
  font-size: 0.88rem;
}

.compliance-callout a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--teal-soft);
  font-size: 0.83rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.compliance-callout a:hover {
  color: white;
}

.filter-fieldset {
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding: 0;
  border: 0;
}

.filter-fieldset legend {
  margin-bottom: 0.85rem;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 650;
}

.filter-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-button {
  min-height: 2.75rem;
  border: 1px solid var(--line);
  background: rgb(13 21 24 / 70%);
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 680;
  padding-inline: 0.85rem;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.filter-button:hover,
.filter-button.is-active {
  border-color: var(--teal);
  background: rgb(0 212 199 / 12%);
  color: var(--teal-soft);
}

.filter-status {
  min-height: 1.5rem;
  margin-top: 0.75rem;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.7rem;
}

.platform-matrix {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.8rem;
  margin-top: 2.5rem;
}

.platform-card {
  position: relative;
  display: flex;
  grid-column: span 2;
  flex-direction: column;
  align-items: flex-start;
  min-height: 17.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--platform-color) 10%, transparent), transparent 60%),
    var(--surface);
  color: var(--text);
  padding: 1.15rem;
  text-align: start;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.platform-card::after {
  position: absolute;
  inset: auto -2rem -3.7rem auto;
  width: 9rem;
  height: 9rem;
  border: 1px solid var(--platform-color);
  border-color: color-mix(in srgb, var(--platform-color) 60%, transparent);
  border-radius: 50%;
  box-shadow: 0 0 0 1rem rgb(255 255 255 / 2%), 0 0 0 2rem rgb(255 255 255 / 1%);
  content: "";
  opacity: 0.8;
}

.platform-card:hover {
  border-color: var(--platform-color);
  background: var(--surface-bright);
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--platform-color) 16%, transparent), transparent 65%),
    var(--surface-bright);
  transform: translateY(-0.22rem);
}

.platform-card:nth-child(4),
.platform-card:nth-child(5) {
  grid-column: span 3;
}

.platform-stern { --platform-color: #ff7940; }
.platform-jjp { --platform-color: #91f1e5; }
.platform-boutique { --platform-color: #de8eff; }
.platform-cgc { --platform-color: #ffcf5b; }
.platform-p3 { --platform-color: #9dc9ff; }

.platform-code,
.platform-system {
  position: relative;
  z-index: 1;
  color: var(--platform-color);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.platform-name {
  position: relative;
  z-index: 1;
  max-width: 10ch;
  margin-top: auto;
  font-size: clamp(1.28rem, 2.3vw, 1.92rem);
  font-weight: 720;
  letter-spacing: -0.05em;
  line-height: 0.98;
}

.platform-system {
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.59rem;
}

.platform-copy {
  position: relative;
  z-index: 1;
  max-width: 30ch;
  margin-top: 0.9rem;
  color: var(--text-soft);
  font-size: 0.78rem;
  line-height: 1.5;
}

.platform-link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  gap: 0.4rem;
  margin-top: 1.2rem;
  color: var(--platform-color);
  font-size: 0.73rem;
  font-weight: 700;
}

.platform-link b {
  font-size: 0.92rem;
  line-height: 0.75;
}

.catalog-section {
  border-top: 1px solid var(--line-soft);
}

.catalog-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(15rem, 0.65fr);
  gap: clamp(2rem, 7vw, 8rem);
  align-items: end;
}

.catalog-heading > p {
  margin-bottom: 0.35rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
}

.product-card {
  display: flex;
  min-width: 0;
  min-height: 32rem;
  flex-direction: column;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgb(22 36 38 / 78%), rgb(9 15 17 / 90%));
  padding: clamp(1.3rem, 3vw, 2rem);
  transition: border-color 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: #4b6a69;
  transform: translateY(-0.22rem);
}

.product-card[hidden] {
  display: none;
}

.product-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-number {
  color: var(--orange-soft);
  font-family: var(--mono);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.availability {
  padding: 0.27rem 0.42rem;
  border: 1px solid rgb(0 212 199 / 38%);
  color: var(--teal-soft);
  font-family: var(--mono);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.product-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 7rem;
  height: 6.2rem;
  margin-block: 1.8rem 1rem;
  color: var(--teal);
}

.product-icon-mech::before,
.product-icon-mech::after {
  position: absolute;
  inset: 0.65rem;
  border: 3px solid currentColor;
  border-radius: 50%;
  content: "";
}

.product-icon-mech::after {
  inset: 1.85rem;
  border-color: var(--orange);
}

.product-icon-mech span {
  position: absolute;
  width: 4.8rem;
  height: 0.32rem;
  background: currentColor;
  transform: rotate(0deg);
}

.product-icon-mech span:nth-child(2) {
  background: var(--orange);
  transform: rotate(60deg);
}

.product-icon-mech span:nth-child(3) {
  transform: rotate(-60deg);
}

.product-icon-light {
  justify-content: flex-start;
  gap: 0.5rem;
}

.product-icon-light::before {
  position: absolute;
  inset-inline: 0.4rem;
  height: 1px;
  background: var(--line);
  content: "";
}

.product-icon-light i {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0.9rem rgb(0 212 199 / 80%);
}

.product-icon-light i:nth-child(2),
.product-icon-light i:nth-child(4) {
  background: var(--orange);
  box-shadow: 0 0 0.9rem rgb(255 109 45 / 70%);
}

.product-icon-armor::before {
  position: absolute;
  width: 5.3rem;
  height: 3.8rem;
  border: 3px solid var(--orange);
  clip-path: polygon(12% 0, 88% 0, 100% 25%, 100% 75%, 88% 100%, 12% 100%, 0 75%, 0 25%);
  content: "";
}

.product-icon-armor span {
  position: absolute;
  width: 3.6rem;
  height: 0.35rem;
  background: var(--teal);
  transform: rotate(34deg);
}

.product-icon-armor span:nth-child(2) {
  transform: rotate(-34deg);
}

.product-icon-audio::before {
  position: absolute;
  width: 4.9rem;
  height: 4.9rem;
  border: 2px solid var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 0.6rem rgb(0 212 199 / 8%), 0 0 0 1.25rem rgb(0 212 199 / 4%);
  content: "";
}

.product-icon-audio span {
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid var(--orange);
  border-radius: 50%;
}

.product-icon-audio span:nth-child(2) {
  width: 2.2rem;
  height: 2.2rem;
  border-color: var(--teal);
}

.product-icon-audio span:nth-child(3) {
  width: 0.35rem;
  height: 0.35rem;
  border: 0;
  background: var(--orange);
}

.product-card h3 {
  max-width: 14ch;
  font-size: clamp(1.72rem, 3vw, 2.5rem);
  letter-spacing: -0.06em;
}

.product-summary {
  max-width: 43ch;
  margin-top: 0.9rem;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.62;
}

.spec-list {
  display: grid;
  gap: 0.63rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.spec-list div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.78fr) minmax(0, 1.25fr);
  gap: 0.75rem;
  padding-top: 0.63rem;
  border-top: 1px solid var(--line-soft);
}

.spec-list dt {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.61rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.spec-list dd {
  margin: 0;
  color: #dce6df;
  font-size: 0.68rem;
  line-height: 1.45;
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  align-self: flex-start;
  min-height: 2.75rem;
  margin-top: 1.3rem;
  border: 0;
  border-bottom: 1px solid rgb(0 212 199 / 55%);
  background: transparent;
  color: var(--teal-soft);
  font-size: 0.78rem;
  font-weight: 750;
  padding: 0;
}

.text-button:hover {
  color: white;
}

.empty-results {
  margin-top: 1rem;
  border: 1px solid rgb(255 109 45 / 35%);
  background: rgb(255 109 45 / 7%);
  color: var(--orange-soft);
  padding: 1rem;
}

.fleet-section {
  width: 100%;
  max-width: none;
  padding-inline: max(1.5rem, calc((100vw - 75rem) / 2));
  background:
    linear-gradient(135deg, rgb(0 212 199 / 10%), transparent 40%),
    #0a1416;
  border-block: 1px solid var(--line-soft);
}

.fleet-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  gap: clamp(3rem, 8vw, 9rem);
  max-width: 75rem;
  margin-inline: auto;
}

.fleet-copy h2 {
  max-width: 12ch;
}

.fleet-copy > p:not(.eyebrow) {
  max-width: 46rem;
  margin-top: 1.25rem;
  color: var(--text-soft);
  line-height: 1.68;
}

.fleet-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1.3rem;
  margin-block: 2rem;
  list-style: none;
}

.fleet-benefits li {
  display: flex;
  gap: 0.55rem;
  color: #d5e3dc;
  font-size: 0.82rem;
}

.fleet-benefits span {
  color: var(--teal);
  font-weight: 800;
}

.fleet-tiers {
  align-self: end;
  border-top: 1px solid rgb(141 235 225 / 48%);
}

.fleet-tiers > p {
  margin-block: 0.85rem;
  color: var(--teal-soft);
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fleet-tiers article {
  display: grid;
  grid-template-columns: 2.3rem 1fr auto;
  gap: 0.8rem;
  align-items: center;
  min-height: 6.7rem;
  border-top: 1px solid var(--line);
}

.fleet-tiers article > span {
  color: var(--orange-soft);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
}

.fleet-tiers h3 {
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.fleet-tiers article p {
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.73rem;
}

.fleet-tiers strong {
  color: var(--teal-soft);
  font-family: var(--mono);
  font-size: 0.61rem;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: end;
  text-transform: uppercase;
}

.privacy-section {
  display: grid;
  grid-template-columns: auto minmax(0, 1.15fr) minmax(14rem, 0.85fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: start;
  padding-bottom: clamp(5rem, 9vw, 8rem);
}

.privacy-mark {
  display: grid;
  width: 4rem;
  aspect-ratio: 1;
  place-content: center;
  gap: 0.24rem;
  border: 1px solid var(--teal);
  transform: rotate(45deg);
}

.privacy-mark span {
  width: 1.75rem;
  height: 0.18rem;
  background: var(--teal);
}

.privacy-section h2 {
  max-width: 14ch;
}

.privacy-section > div:nth-child(2) > p:last-child {
  max-width: 45rem;
  margin-top: 1rem;
  color: var(--text-soft);
  line-height: 1.67;
}

.privacy-section ul {
  display: grid;
  gap: 0.95rem;
  list-style: none;
}

.privacy-section li {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
}

.privacy-section strong,
.privacy-section li span {
  display: block;
}

.privacy-section strong {
  color: var(--orange-soft);
  font-size: 0.83rem;
}

.privacy-section li span {
  margin-top: 0.2rem;
  color: var(--muted);
  font-size: 0.75rem;
  line-height: 1.4;
}

.closing-cta {
  position: relative;
  isolation: isolate;
  padding: clamp(5rem, 10vw, 10rem) 1.5rem;
  border-top: 1px solid var(--line-soft);
  background:
    radial-gradient(circle at 50% 120%, rgb(255 109 45 / 22%), transparent 38rem),
    #0a1113;
  text-align: center;
}

.closing-cta::before,
.closing-cta::after {
  position: absolute;
  z-index: -1;
  width: min(30vw, 22rem);
  aspect-ratio: 1;
  border: 1px solid rgb(0 212 199 / 15%);
  border-radius: 50%;
  content: "";
}

.closing-cta::before {
  inset: 2.2rem auto auto 4%;
}

.closing-cta::after {
  inset: auto 4% 2.2rem auto;
}

.closing-cta .eyebrow {
  justify-content: center;
}

.closing-cta h2 {
  max-width: 15ch;
  margin: 0.9rem auto 2rem;
  font-size: clamp(3rem, 6vw, 6.2rem);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 1.5rem;
  align-items: start;
  width: var(--container);
  padding-block: 2rem 2.6rem;
  margin-inline: auto;
  color: var(--muted);
}

.footer-brand {
  align-self: center;
  width: max-content;
}

.site-footer > p {
  max-width: 18rem;
  font-size: 0.75rem;
}

.footer-links {
  display: grid;
  gap: 0.4rem;
}

.footer-links a {
  color: var(--text-soft);
  font-size: 0.72rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--teal-soft);
}

.site-footer small {
  align-self: center;
  color: #667979;
  font-family: var(--mono);
  font-size: 0.59rem;
  line-height: 1.4;
  text-align: end;
}

.allocation-dialog {
  width: min(42rem, calc(100vw - 1.5rem));
  max-height: min(48rem, calc(100svh - 1.5rem));
  overflow: auto;
  border: 1px solid #3c5858;
  border-radius: 0;
  background: #0d1719;
  color: var(--text);
  box-shadow: 0 1.5rem 6rem rgb(0 0 0 / 55%);
  padding: 0;
}

.allocation-dialog::backdrop {
  background: rgb(0 5 6 / 75%);
  backdrop-filter: blur(0.32rem);
}

.allocation-form {
  padding: clamp(1.3rem, 4vw, 2.25rem);
}

.dialog-heading {
  display: flex;
  gap: 1rem;
  justify-content: space-between;
}

.dialog-heading h2 {
  margin-top: 0.55rem;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.06em;
}

.dialog-close {
  display: grid;
  width: 2.8rem;
  height: 2.8rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--text-soft);
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
}

.dialog-close:hover {
  border-color: var(--orange);
  color: var(--orange-soft);
}

.dialog-intro {
  max-width: 58ch;
  margin-top: 1rem;
  color: var(--text-soft);
  font-size: 0.87rem;
  line-height: 1.6;
}

.allocation-form fieldset {
  margin: 1.5rem 0 0;
  padding: 1.15rem 0 0;
  border: 0;
  border-top: 1px solid var(--line);
}

.allocation-form legend {
  padding: 0;
  color: var(--teal-soft);
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.9rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

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

.form-field + .form-field:not(.form-field-wide) {
  margin-top: 0;
}

.allocation-form fieldset > .form-field {
  margin-top: 1rem;
}

.form-field label {
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 680;
}

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

.field-hint {
  color: var(--muted);
  font-size: 0.68rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 3rem;
  border: 1px solid #3b5353;
  border-radius: 0;
  background: #091113;
  color: var(--text);
  font-size: 1rem;
  padding: 0.65rem 0.75rem;
}

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

.form-field select {
  appearance: auto;
}

.form-field input:user-invalid,
.form-field textarea:user-invalid,
.form-field select:user-invalid {
  border-color: var(--orange);
  box-shadow: inset 0 0 0 1px var(--orange);
}

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1rem;
  margin-top: 1.5rem;
}

.dialog-actions p {
  flex: 1 1 14rem;
  color: var(--teal-soft);
  font-size: 0.72rem;
  line-height: 1.4;
}

.dialog-actions p[data-state="error"] {
  color: var(--orange-soft);
}

.dialog-actions .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

@media (max-width: 67rem) {
  .hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(20rem, 1fr);
    gap: 3rem;
  }

  .primary-nav {
    gap: 1.2rem;
  }

  .primary-nav ul {
    gap: 0.9rem;
  }

  .fleet-panel {
    gap: 3rem;
  }
}

@media (max-width: 53rem) {
  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    max-width: 43rem;
  }

  .hero-console {
    max-width: 45rem;
  }

  .split-heading,
  .catalog-heading,
  .fleet-panel,
  .privacy-section {
    grid-template-columns: 1fr;
  }

  .split-heading > p,
  .catalog-heading > p {
    margin-bottom: 0;
  }

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

  .standard-card {
    min-height: 0;
  }

  .standard-card svg {
    margin-block: 1.5rem 1rem;
  }

  .compliance-callout {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .compliance-callout a {
    justify-self: start;
  }

  .platform-matrix {
    grid-template-columns: repeat(2, 1fr);
  }

  .platform-card,
  .platform-card:nth-child(4),
  .platform-card:nth-child(5) {
    grid-column: span 1;
  }

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

  .product-card {
    min-height: 28rem;
  }

  .privacy-mark {
    margin-inline-start: 0.75rem;
  }

  .site-footer {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer small {
    text-align: start;
  }
}

@media (max-width: 46rem) {
  .site-header {
    min-height: 4.55rem;
  }

  .js .nav-toggle {
    display: inline-flex;
  }

  .js .primary-nav {
    position: absolute;
    inset: calc(100% + 0.45rem) 0 auto;
    display: none;
    align-items: stretch;
    gap: 1rem;
    border: 1px solid var(--line);
    background: #0c1517;
    box-shadow: var(--shadow);
    padding: 1rem;
  }

  .js .primary-nav[data-open="true"] {
    display: grid;
  }

  .primary-nav ul {
    display: grid;
    gap: 0;
  }

  .primary-nav li {
    border-bottom: 1px solid var(--line-soft);
  }

  .primary-nav li:last-child {
    border-bottom: 0;
  }

  .primary-nav a {
    display: block;
    padding-block: 0.75rem;
  }

  .nav-cta {
    width: 100%;
  }

  .hero {
    padding-block: 3.8rem 4.6rem;
  }

  .hero-credentials {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .hero-credentials li {
    display: grid;
    grid-template-columns: minmax(8rem, 0.7fr) 1fr;
    gap: 0.7rem;
  }

  .hero-credentials span {
    margin-top: 0;
  }

  .console-visual svg {
    min-height: auto;
  }

  .console-stats div {
    padding: 0.75rem;
  }

  .proof-bar {
    grid-template-columns: 1fr;
    gap: 0.7rem;
  }

  .proof-bar ul {
    justify-content: flex-start;
  }

  .platform-matrix {
    grid-template-columns: 1fr;
  }

  .platform-card,
  .platform-card:nth-child(4),
  .platform-card:nth-child(5) {
    grid-column: span 1;
    min-height: 14rem;
  }

  .fleet-benefits {
    grid-template-columns: 1fr;
  }

  .privacy-section {
    gap: 1.75rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .form-field-wide {
    grid-column: auto;
  }
}

@media (max-width: 29rem) {
  :root {
    --container: min(75rem, calc(100vw - 2rem));
  }

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

  .brand-suffix {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

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

  .console-topline {
    font-size: 0.51rem;
  }

  .status-pulse {
    max-width: 8rem;
  }

  .console-stats {
    grid-template-columns: 1fr;
  }

  .console-stats div {
    display: grid;
    grid-template-columns: 4rem 1fr;
    gap: 0.6rem;
    border-inline-end: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .console-stats div:last-child {
    border-bottom: 0;
  }

  .console-stats dd {
    margin: 0;
  }

  .spec-list div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

@media (prefers-contrast: more) {
  :root {
    --line: #638080;
    --muted: #bed0ca;
  }

  .button-quiet,
  .filter-button,
  .form-field input,
  .form-field textarea,
  .form-field select {
    border-width: 2px;
  }
}

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

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