:root {
  --bg: #050505;
  --bg-soft: #090909;
  --panel: #0d0d0d;
  --panel-strong: #121212;
  --line: rgba(255, 255, 255, .14);
  --line-soft: rgba(255, 255, 255, .075);
  --red: #e01919;
  --red-hot: #ff2b2b;
  --red-dark: #620909;
  --text: #f4f4f4;
  --muted: #b8b8b8;
  --dim: #747474;
  --green: #76d86c;
  --amber: #ffb02e;
  --shadow: 0 24px 72px rgba(0, 0, 0, .48);
  --max: 1180px;
  --font: Arial, Helvetica, sans-serif;
  --display: "Arial Narrow", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    linear-gradient(rgba(224, 25, 25, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 25, 25, .055) 1px, transparent 1px),
    linear-gradient(180deg, rgba(72, 5, 5, .2), transparent 34rem);
  background-size: 72px 72px, 72px 72px, 100% 100%;
  mask-image: linear-gradient(to bottom, #000 0 68%, transparent 100%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255, 255, 255, .018), rgba(255, 255, 255, .018) 1px, transparent 1px, transparent 4px);
  opacity: .3;
}

a {
  color: inherit;
}

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

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

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

:focus-visible {
  outline: 2px solid var(--red-hot);
  outline-offset: 4px;
}

::selection {
  background: var(--red);
  color: #fff;
}

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

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  background: var(--red);
  color: #fff;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--display);
  text-transform: uppercase;
  line-height: .99;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 1.3rem;
  font-size: 3.5rem;
  font-weight: 900;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.55rem;
  font-weight: 900;
}

h3 {
  margin-bottom: .65rem;
  font-size: 1.2rem;
  line-height: 1.12;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 .9rem;
  color: var(--red-hot);
  text-transform: uppercase;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .1em;
}

.eyebrow > span {
  width: 22px;
  height: 2px;
  flex: 0 0 22px;
  background: var(--red-hot);
  box-shadow: 0 0 12px rgba(255, 43, 43, .6);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(224, 25, 25, .38);
  background: rgba(5, 5, 5, .84);
  backdrop-filter: blur(16px);
  transition: background .2s ease, box-shadow .2s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, .97);
  box-shadow: 0 12px 42px rgba(0, 0, 0, .44);
}

.nav-shell,
.site-footer,
.section-grid,
.services-section,
.process-section,
.engagements-section,
.contact-section,
.capability-rail,
.sheet-header,
.sheet-main {
  width: min(var(--max), calc(100% - 40px));
  margin-inline: auto;
}

.nav-shell {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.brand-link {
  width: 286px;
  min-width: 210px;
  text-decoration: none;
}

.site-menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-menu a,
.sheet-header nav a,
.site-footer nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  transition: color .18s ease;
}

.site-menu a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -.55rem;
  height: 2px;
  background: var(--red-hot);
  transition: right .18s ease;
}

.site-menu a:hover,
.site-menu a.is-active,
.sheet-header nav a:hover,
.site-footer nav a:hover {
  color: var(--text);
}

.site-menu a:hover::after,
.site-menu a.is-active::after {
  right: 0;
}

.site-menu .nav-cta {
  color: #fff;
  background: var(--red);
  padding: .72rem .9rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 4px;
  box-shadow: 0 0 26px rgba(224, 25, 25, .2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #090909;
  color: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform .18s ease, opacity .18s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

main {
  position: relative;
}

main > section[id] {
  scroll-margin-top: 92px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
}

.hero-section {
  min-height: min(760px, calc(100svh - 76px));
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: 3rem;
  padding: 4.2rem 0 3.6rem;
}

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

.hero-lede {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 1.03rem;
}

.hero-actions,
.component-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.7rem;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  padding: .75rem 1rem;
  border: 1px solid transparent;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .045em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

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

.button svg,
.engagement-card a svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.button-primary {
  background: var(--red);
  border-color: rgba(255, 255, 255, .15);
  box-shadow: 0 0 28px rgba(224, 25, 25, .18);
}

.button-primary:hover {
  background: var(--red-hot);
}

.button-secondary {
  background: rgba(12, 12, 12, .75);
  border-color: var(--line);
}

.button-secondary:hover {
  border-color: rgba(255, 43, 43, .72);
}

.signal-list {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.2rem;
  padding: 0;
  margin: 1.45rem 0 0;
  list-style: none;
}

.signal-list li,
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--muted);
  text-transform: uppercase;
  font-size: .69rem;
  font-weight: 800;
}

.signal-list li::before,
.status-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border: 2px solid var(--red-hot);
  border-radius: 50%;
  box-shadow: 0 0 11px rgba(255, 43, 43, .7);
}

.command-frame {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: rgba(8, 8, 8, .92);
  box-shadow: var(--shadow), inset 0 0 0 1px rgba(224, 25, 25, .12);
  overflow: hidden;
}

.command-frame::before {
  content: "";
  position: absolute;
  inset: 43px 0 0;
  background:
    linear-gradient(rgba(224, 25, 25, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 25, 25, .08) 1px, transparent 1px),
    linear-gradient(135deg, rgba(224, 25, 25, .1), transparent 42%);
  background-size: 44px 44px, 44px 44px, 100% 100%;
  mask-image: linear-gradient(to bottom, #000, transparent 95%);
}

.frame-top {
  position: relative;
  height: 43px;
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: 0 .9rem;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, .025);
  color: var(--dim);
  text-transform: uppercase;
  font-size: .64rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.frame-top > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  opacity: .72;
}

.frame-top strong {
  margin-left: auto;
}

.dashboard-grid {
  position: relative;
  display: grid;
  grid-template-columns: .78fr 1.3fr 1fr;
  gap: .75rem;
  min-height: 405px;
  padding: 1rem;
  align-content: center;
}

.coverage-panel,
.topology-panel,
.health-panel {
  min-width: 0;
  min-height: 330px;
  border: 1px solid rgba(224, 25, 25, .5);
  border-radius: 4px;
  background: rgba(5, 5, 5, .82);
  padding: .85rem;
}

.coverage-panel > p,
.topology-panel > p,
.health-panel > p {
  margin: 0 0 .9rem;
  color: var(--muted);
  text-transform: uppercase;
  font-size: .65rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.coverage-panel {
  display: flex;
  flex-direction: column;
}

.coverage-panel > strong {
  color: var(--red-hot);
  font-family: var(--display);
  font-size: 1.85rem;
  line-height: 1;
  text-transform: uppercase;
}

.coverage-panel > span {
  margin-top: .35rem;
  color: var(--muted);
  text-transform: uppercase;
  font-size: .67rem;
  font-weight: 800;
}

.coverage-panel ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: auto 0 0;
  list-style: none;
}

.coverage-panel li {
  padding: .7rem 0;
  border-top: 1px solid var(--line-soft);
  color: var(--text);
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 800;
}

.coverage-panel li::before {
  content: ">";
  margin-right: .5rem;
  color: var(--red-hot);
}

.topology-panel {
  display: flex;
  flex-direction: column;
}

.topology-panel svg {
  width: 100%;
  margin-block: auto;
}

.grid-lines {
  stroke: rgba(224, 25, 25, .14);
  stroke-width: 1;
}

.topology-lines {
  stroke: var(--red-hot);
  stroke-width: 3;
  fill: none;
}

.topology-lines rect,
.topology-lines circle {
  fill: rgba(224, 25, 25, .07);
}

.topology-legend {
  display: flex;
  justify-content: space-between;
  gap: .5rem;
  padding-top: .55rem;
  border-top: 1px solid var(--line-soft);
  color: var(--dim);
  text-transform: uppercase;
  font-size: .57rem;
  font-weight: 800;
}

.health-panel dl {
  margin: 0;
}

.health-panel dl > div {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  padding: .68rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.health-panel dt,
.health-panel dd {
  margin: 0;
  color: var(--muted);
  font-size: .63rem;
  text-transform: uppercase;
}

.health-panel dd {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--text);
  text-align: right;
}

.health-panel i {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 9px rgba(118, 216, 108, .7);
}

.capability-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #090909;
}

.capability-rail > div {
  min-width: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: .65rem;
  padding: 1rem;
  border-right: 1px solid var(--line-soft);
}

.capability-rail > div:last-child {
  border-right: 0;
}

.capability-rail span {
  grid-row: span 2;
  color: var(--red-hot);
  font-size: .68rem;
  font-weight: 900;
}

.capability-rail strong {
  text-transform: uppercase;
  font-size: .74rem;
  line-height: 1.2;
}

.capability-rail small {
  min-width: 0;
  color: var(--dim);
  font-size: .68rem;
  line-height: 1.3;
}

.services-section,
.process-section,
.engagements-section,
.contact-section,
.systems-section,
.support-section {
  padding: 5.5rem 0;
  border-top: 1px solid rgba(224, 25, 25, .24);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .7fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 2rem;
}

.section-heading h2 {
  max-width: 680px;
  margin-bottom: 0;
}

.section-heading > p,
.section-heading > div + p {
  margin: 0 0 .2rem;
  color: var(--muted);
}

.compact-heading {
  margin-bottom: 1.5rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.solution-card,
.engagement-card,
.process-list li,
.support-console,
.contact-form,
.system-visual,
.asset-sample,
.token,
.grid-sample,
.service-tile {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(12, 12, 12, .82);
  box-shadow: inset 0 0 0 1px rgba(224, 25, 25, .035);
}

.solution-card {
  position: relative;
  min-height: 290px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 1.05rem;
  padding: 1.35rem;
  overflow: hidden;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.solution-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--red-hot), transparent 58%);
  opacity: 0;
  transition: opacity .18s ease;
}

.solution-card:hover,
.engagement-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 43, 43, .72);
  background: #101010;
}

.solution-card:hover::after {
  opacity: 1;
}

.solution-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 43, 43, .55);
  border-radius: 4px;
  background: rgba(224, 25, 25, .06);
}

.solution-icon svg,
.service-tile svg {
  width: 33px;
  height: 33px;
  stroke: var(--red-hot);
  stroke-width: 2;
  fill: none;
  stroke-linejoin: miter;
  stroke-linecap: square;
}

.card-index {
  display: block;
  margin-bottom: .75rem;
  color: var(--red-hot);
  text-transform: uppercase;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.solution-card h3 {
  font-size: 1.38rem;
}

.solution-card p {
  margin: 0;
  color: var(--muted);
  font-size: .91rem;
}

.capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .45rem .75rem;
  padding: 0;
  margin: 1.15rem 0 0;
  list-style: none;
}

.capability-list li {
  position: relative;
  padding-left: .8rem;
  color: #d0d0d0;
  font-size: .77rem;
  line-height: 1.35;
}

.capability-list li::before {
  content: "";
  position: absolute;
  top: .42rem;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--red-hot);
}

.systems-section {
  align-items: center;
}

.system-visual {
  min-height: 550px;
  overflow: hidden;
}

.grid-stage {
  position: relative;
  min-height: 550px;
  height: 100%;
  background:
    linear-gradient(to bottom, transparent 0 34%, rgba(224, 25, 25, .13) 34%, transparent 35%),
    linear-gradient(rgba(224, 25, 25, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 25, 25, .075) 1px, transparent 1px),
    #060606;
  background-size: 100% 100%, 50px 50px, 50px 50px, auto;
  perspective: 700px;
}

.grid-stage::before {
  content: "";
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -16%;
  height: 60%;
  background:
    linear-gradient(rgba(255, 43, 43, .38) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 43, 43, .38) 1px, transparent 1px);
  background-size: 55px 55px;
  transform: rotateX(62deg);
  transform-origin: bottom;
}

.server-row {
  position: absolute;
  top: 16%;
  width: 28%;
  height: 60%;
  border: 1px solid rgba(224, 25, 25, .66);
  background:
    repeating-linear-gradient(0deg, transparent, transparent 18px, rgba(224, 25, 25, .33) 19px, transparent 20px),
    rgba(25, 4, 4, .28);
}

.row-a {
  right: 8%;
  transform: skewY(-12deg);
}

.row-b {
  right: 31%;
  opacity: .54;
  transform: skewY(-8deg) scale(.82);
}

.warden-node {
  position: absolute;
  left: 40%;
  bottom: 25%;
  width: 90px;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 26px rgba(255, 43, 43, .42));
}

.grid-label {
  position: absolute;
  padding: .35rem .55rem;
  border-left: 2px solid var(--red-hot);
  background: rgba(5, 5, 5, .82);
  color: var(--muted);
  text-transform: uppercase;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.label-a { left: 7%; top: 14%; }
.label-b { left: 10%; top: 31%; }
.label-c { left: 15%; top: 48%; }

.system-copy > p:not(.eyebrow),
.support-copy > p:not(.eyebrow),
.contact-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.feature-list {
  padding: 0;
  margin: 1.6rem 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.feature-list li {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 1rem;
  padding: .95rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.feature-list strong {
  color: var(--text);
  text-transform: uppercase;
  font-size: .76rem;
}

.feature-list span {
  color: var(--muted);
  font-size: .84rem;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process-list li {
  position: relative;
  min-height: 225px;
  padding: 1.25rem;
  overflow: hidden;
}

.process-list li::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(224, 25, 25, .2);
  transform: rotate(45deg);
}

.process-list strong {
  display: block;
  margin-bottom: 1.4rem;
  color: var(--red-hot);
  font-size: 1.35rem;
}

.process-list p,
.engagement-card p {
  color: var(--muted);
  font-size: .87rem;
}

.engagement-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
}

.engagement-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  background:
    linear-gradient(rgba(224, 25, 25, .065) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 25, 25, .065) 1px, transparent 1px),
    #0b0b0b;
  background-size: 38px 38px, 38px 38px, auto;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.engagement-card > span {
  color: var(--red-hot);
  font-size: .72rem;
  font-weight: 900;
}

.engagement-card h3 {
  max-width: 280px;
  margin-top: auto;
  font-size: 1.5rem;
}

.engagement-card a {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .65rem;
  color: var(--red-hot);
  text-decoration: none;
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 900;
}

.support-section {
  align-items: center;
}

.support-copy .button {
  margin-top: 1rem;
}

.support-console {
  padding: 1rem;
  background: #090909;
}

.console-title {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .25rem .25rem 1rem;
  border-bottom: 1px solid rgba(224, 25, 25, .38);
  color: var(--muted);
  text-transform: uppercase;
  font-size: .67rem;
  font-weight: 900;
}

.console-title strong {
  color: var(--green);
}

.support-console ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.support-console li {
  display: grid;
  grid-template-columns: 12px minmax(0, 1fr);
  gap: .85rem;
  padding: 1rem .25rem;
  border-bottom: 1px solid var(--line-soft);
}

.support-console li:last-child {
  border-bottom: 0;
}

.support-console i {
  width: 8px;
  height: 8px;
  margin-top: .35rem;
  border: 2px solid var(--red-hot);
  border-radius: 50%;
  box-shadow: 0 0 9px rgba(255, 43, 43, .55);
}

.support-console li strong,
.support-console li span {
  display: block;
}

.support-console li strong {
  margin-bottom: .18rem;
  text-transform: uppercase;
  font-size: .76rem;
}

.support-console li span {
  color: var(--muted);
  font-size: .82rem;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(440px, 1fr);
  gap: 3rem;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-direct {
  display: grid;
  gap: .2rem;
  margin-top: 1.8rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-soft);
}

.contact-direct span {
  color: var(--dim);
  text-transform: uppercase;
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.contact-direct a {
  color: var(--red-hot);
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-detail {
  font-size: .78rem;
}

.contact-form {
  display: grid;
  gap: .9rem;
  padding: 1.25rem;
  background: #0b0b0b;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .8rem;
}

.contact-form label {
  display: grid;
  gap: .4rem;
}

.contact-form label > span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .06em;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #070707;
  color: var(--text);
  padding: .82rem .9rem;
  outline: 0;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.contact-form textarea {
  min-height: 128px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #6f6f6f;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red-hot);
  box-shadow: 0 0 0 3px rgba(224, 25, 25, .14);
}

.contact-form .button {
  justify-self: start;
}

.form-note {
  margin: 0;
  color: var(--dim);
  font-size: .78rem;
}

.form-note.is-active {
  color: var(--green);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto;
  gap: 1.5rem 2rem;
  align-items: center;
  padding: 2.6rem 0;
  border-top: 1px solid rgba(224, 25, 25, .35);
}

.footer-brand img {
  width: 260px;
}

.footer-brand p {
  margin: .5rem 0 0;
  color: var(--dim);
  text-transform: uppercase;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.site-footer nav,
.sheet-header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 1rem;
}

.footer-meta {
  grid-column: 1 / -1;
  margin: 0;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
  color: var(--dim);
  font-size: .7rem;
}

/* Brand and grid contact sheets */
.sheet-body {
  background: var(--bg);
}

.sheet-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(224, 25, 25, .4);
}

.sheet-main {
  padding: 3rem 0 5rem;
}

.sheet-hero {
  max-width: 820px;
  margin-bottom: 2rem;
}

.sheet-hero > p:not(.eyebrow) {
  color: var(--muted);
}

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

.asset-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
  margin-bottom: 1rem;
}

.asset-sample {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1rem;
}

.asset-sample.wide {
  grid-column: span 2;
}

.asset-sample span,
.grid-sample > span {
  color: var(--muted);
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .08em;
}

.tokens-board {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: .75rem;
  margin: 1.5rem 0 3rem;
}

.token {
  min-height: 116px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: .85rem;
}

.token strong {
  text-transform: uppercase;
  font-size: .7rem;
}

.token span {
  color: var(--muted);
  font-size: .74rem;
}

.swatch-black { background: #050505; }
.swatch-panel { background: #101010; }
.swatch-red { background: #e01919; }
.swatch-hot { background: #ff2b2b; }
.swatch-white { background: #f6f6f6; color: #050505; }
.swatch-green { background: #76d86c; color: #050505; }
.swatch-amber { background: #ffb02e; color: #050505; }
.swatch-white span,
.swatch-green span,
.swatch-amber span { color: #191919; }

.status-pill {
  min-height: 36px;
  padding: .45rem .7rem;
  border: 1px solid var(--line);
  border-radius: 4px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .75rem;
}

.service-grid.compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 1rem;
}

.service-tile {
  min-height: 150px;
  padding: 1.1rem;
}

.service-tile p {
  color: var(--muted);
  font-size: .88rem;
}

.grid-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .85rem;
}

.grid-sample {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .85rem;
  padding: .85rem;
}

.grid-sample.large {
  grid-row: span 2;
}

.grid-sample img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  border: 1px solid rgba(224, 25, 25, .22);
  border-radius: 4px;
}

.access-diagram,
.stack-diagram {
  position: relative;
  min-height: 240px;
  border: 1px solid rgba(224, 25, 25, .28);
  border-radius: 4px;
  background:
    linear-gradient(rgba(224, 25, 25, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 25, 25, .08) 1px, transparent 1px),
    #070707;
  background-size: 34px 34px;
  overflow: hidden;
}

.access-diagram .door {
  position: absolute;
  right: 14%;
  top: 18%;
  width: 90px;
  height: 150px;
  border: 2px solid var(--red-hot);
}

.access-diagram .camera,
.access-diagram .panel {
  position: absolute;
  border: 2px solid var(--red-hot);
}

.access-diagram .camera {
  left: 15%;
  top: 22%;
  width: 62px;
  height: 34px;
}

.access-diagram .panel {
  right: 36%;
  top: 39%;
  width: 38px;
  height: 60px;
}

.access-diagram .route {
  position: absolute;
  left: 24%;
  right: 20%;
  top: 54%;
  border-top: 2px solid var(--red-hot);
}

.stack-diagram {
  display: grid;
  align-content: center;
  gap: .6rem;
  padding: 1rem;
}

.stack-diagram i {
  display: block;
  padding: .75rem;
  border: 1px solid rgba(224, 25, 25, .62);
  border-radius: 4px;
  color: var(--text);
  background: rgba(224, 25, 25, .08);
  font-style: normal;
  text-transform: uppercase;
  font-size: .7rem;
  font-weight: 900;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3rem;
  }

  .hero-section,
  .section-grid,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
  }

  .dashboard-grid {
    grid-template-columns: .8fr 1.25fr 1fr;
  }

  .contact-copy {
    position: static;
  }

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

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

@media (max-width: 820px) {
  body.nav-open {
    overflow: hidden;
  }

  .nav-shell,
  .site-footer,
  .section-grid,
  .services-section,
  .process-section,
  .engagements-section,
  .contact-section,
  .capability-rail,
  .sheet-header,
  .sheet-main {
    width: min(100% - 28px, var(--max));
  }

  .nav-toggle {
    display: block;
  }

  .brand-link {
    width: 230px;
  }

  .site-menu {
    position: absolute;
    top: 76px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100vh - 92px);
    overflow-y: auto;
    border: 1px solid rgba(224, 25, 25, .46);
    border-radius: 8px;
    background: rgba(5, 5, 5, .985);
    padding: .55rem;
    box-shadow: var(--shadow);
  }

  .site-menu.is-open {
    display: flex;
  }

  .site-menu a {
    padding: .9rem;
    border-bottom: 1px solid var(--line-soft);
  }

  .site-menu a::after {
    display: none;
  }

  .site-menu .nav-cta {
    margin-top: .4rem;
    text-align: center;
  }

  .hero-section {
    gap: 2.5rem;
    padding: 3.4rem 0 2rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2,
  .sheet-hero h1 {
    font-size: 2rem;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
    min-height: 0;
    padding: .8rem;
  }

  .coverage-panel,
  .health-panel {
    display: none;
  }

  .topology-panel {
    min-height: 270px;
  }

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

  .capability-rail > div:nth-child(2) {
    border-right: 0;
  }

  .capability-rail > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-soft);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: .75rem;
  }

  .solution-grid,
  .engagement-grid {
    grid-template-columns: 1fr;
  }

  .system-visual,
  .grid-stage {
    min-height: 430px;
  }

  .engagement-card {
    min-height: 250px;
  }

  .asset-board,
  .tokens-board,
  .grid-board {
    grid-template-columns: 1fr;
  }

  .asset-sample.wide {
    grid-column: auto;
  }

  .site-footer,
  .sheet-header {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer nav,
  .sheet-header nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .brand-link {
    width: 204px;
    min-width: 0;
  }

  h1 {
    font-size: 2.1rem;
  }

  .hero-lede {
    font-size: .97rem;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
  }

  .signal-list {
    display: grid;
  }

  .frame-top strong {
    max-width: 210px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .capability-rail {
    grid-template-columns: 1fr;
  }

  .capability-rail > div {
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
  }

  .capability-rail > div:last-child {
    border-bottom: 0;
  }

  .solution-card {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .capability-list {
    grid-template-columns: 1fr;
  }

  .process-list,
  .service-grid,
  .service-grid.compact {
    grid-template-columns: 1fr;
  }

  .feature-list li {
    grid-template-columns: 1fr;
    gap: .25rem;
  }

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

  .contact-form .button {
    justify-self: stretch;
  }
}

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

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