:root {
  --ink: #080b0e;
  --ink-2: #11171d;
  --ink-3: #19222b;
  --paper: #f2efe8;
  --paper-strong: #fffaf1;
  --white: #ffffff;
  --line: rgba(8, 11, 14, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);
  --muted: #626b73;
  --cyan: #19c5d8;
  --cyan-soft: #93edf4;
  --amber: #e0a33a;
  --amber-dark: #8f5d09;
  --green: #66b96c;
  --red: #d45442;
  --violet: #7568e8;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

:focus-visible {
  outline: 3px solid var(--cyan-soft);
  outline-offset: 4px;
}

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

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  padding: 18px 36px;
  color: var(--white);
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(8, 11, 14, 0.94);
  border-bottom: 1px solid var(--line-light);
  padding-top: 12px;
  padding-bottom: 12px;
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 238px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 39px;
  height: 39px;
  background: var(--cyan);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 0 28px rgba(25, 197, 216, 0.44);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 17px;
  line-height: 1;
}

.brand small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a {
  padding: 8px 0;
}

.site-nav a:hover {
  color: var(--white);
}

.nav-cta,
.mobile-call,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.button span::after {
  content: " ->";
}

.nav-cta {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
}

.nav-cta:hover,
.mobile-call:hover {
  background: rgba(255, 255, 255, 0.12);
}

.mobile-call,
.mobile-menu-call {
  display: none;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: calc(100vh - 46px);
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: 34px;
  padding: 118px 48px 24px;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 11, 14, 0.92), rgba(8, 11, 14, 0.62) 48%, rgba(8, 11, 14, 0.78)),
    linear-gradient(0deg, rgba(8, 11, 14, 0.96), rgba(8, 11, 14, 0.08) 48%),
    url("assets/network-rack.jpg") center / cover no-repeat;
  transform: scale(1.02);
}

.hero-content,
.ops-deck {
  position: relative;
  min-width: 0;
}

.hero-content {
  max-width: 910px;
  padding-bottom: 66px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 92px;
  line-height: 0.94;
  font-weight: 700;
}

h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  line-height: 1.03;
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.18;
}

.hero-lede {
  max-width: 790px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 24px;
  line-height: 1.28;
}

.hero-actions,
.brief-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.button-primary:hover {
  background: var(--cyan-soft);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
}

.ops-deck {
  align-self: stretch;
  min-height: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  border: 1px solid var(--line-light);
  background: rgba(8, 11, 14, 0.73);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.deck-header,
.panel-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 16px;
  border-bottom: 1px solid var(--line-light);
}

.deck-header strong,
.panel-top strong {
  min-width: 0;
  overflow-wrap: anywhere;
}

.deck-header span,
.panel-top span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.deck-header strong,
.panel-top strong {
  text-align: right;
}

.signal-map {
  position: relative;
  min-height: 218px;
  margin: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    rgba(255, 255, 255, 0.04);
  background-size: 34px 34px;
  overflow: hidden;
}

.signal-map::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(25, 197, 216, 0.22);
  pointer-events: none;
}

.signal-map::before {
  content: "";
  position: absolute;
  inset: 42px 70px;
  background:
    linear-gradient(90deg, rgba(25, 197, 216, 0.14), rgba(25, 197, 216, 0.46), rgba(25, 197, 216, 0.14)) center / 100% 2px no-repeat,
    linear-gradient(0deg, rgba(25, 197, 216, 0.14), rgba(25, 197, 216, 0.46), rgba(25, 197, 216, 0.14)) center / 2px 100% no-repeat;
  opacity: 0.72;
}

.map-core,
.map-item {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(25, 197, 216, 0.32);
  background: rgba(8, 11, 14, 0.84);
  box-shadow: 0 0 24px rgba(25, 197, 216, 0.16);
}

.map-core {
  left: 50%;
  top: 50%;
  width: 132px;
  min-height: 76px;
  padding: 12px;
  transform: translate(-50%, -50%);
  text-align: center;
}

.map-core span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
  background: var(--cyan);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.map-core strong {
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
}

.map-item {
  min-width: 112px;
  min-height: 38px;
  padding: 8px 10px;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.map-internet {
  top: 24px;
  left: 24px;
}

.map-network {
  top: 24px;
  right: 24px;
}

.map-pos {
  left: 24px;
  bottom: 24px;
}

.map-site {
  right: 24px;
  bottom: 24px;
}

.deck-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-light);
}

.deck-grid div {
  min-height: 118px;
  padding: 14px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.deck-grid span,
.mission-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
}

.deck-grid strong {
  display: block;
  margin-bottom: 8px;
}

.deck-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--paper-strong);
  border-bottom: 1px solid var(--line);
}

.proof-band div {
  min-height: 138px;
  padding: 28px 48px;
  border-right: 1px solid var(--line);
}

.proof-band strong,
.proof-band span {
  display: block;
}

.proof-band strong {
  margin-bottom: 10px;
  font-size: 20px;
}

.proof-band span {
  color: var(--muted);
}

.mission,
.engagements,
.stack,
.field-console,
.portfolio,
.industries,
.trust,
.brief {
  padding: 90px 48px;
}

.mission {
  display: grid;
  grid-template-columns: minmax(290px, 0.82fr) minmax(0, 1.18fr);
  gap: 52px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.mission-grid article {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
}

.mission-grid p,
.stack-grid p,
.stack-grid li,
.engagement-grid p,
.console-copy p,
.industry-grid p,
.trust-grid p,
.brief-copy p {
  color: var(--muted);
}

.section-heading {
  max-width: 960px;
  margin-bottom: 36px;
}

.engagements {
  background: #e8eef0;
}

.engagement-grid,
.trust-grid,
.case-grid {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

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

.engagement-grid article,
.trust-grid article {
  min-height: 282px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.55);
}

.engagement-grid span,
.trust-grid span,
.case-grid span {
  display: block;
  margin-bottom: 20px;
  color: var(--amber-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.text-cta {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 18px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

.text-cta::after {
  content: " ->";
}

.text-cta:hover {
  color: var(--cyan);
}

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

.stack .section-heading h2 {
  color: var(--white);
}

.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-light);
  border: 1px solid var(--line-light);
}

.stack-grid article {
  min-height: 364px;
  padding: 28px;
  background: var(--ink-2);
  display: flex;
  flex-direction: column;
}

.service-code {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 34px;
  margin-bottom: 32px;
  background: var(--cyan);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.stack-grid ul {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.stack-grid li {
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stack-grid .text-cta,
.portfolio .text-cta,
.brief .text-cta {
  margin-top: auto;
  color: var(--cyan);
}

.stack-grid .text-cta:hover,
.portfolio .text-cta:hover,
.brief .text-cta:hover {
  color: var(--cyan-soft);
}

.field-console {
  display: grid;
  grid-template-columns: minmax(290px, 0.82fr) minmax(0, 1.18fr);
  gap: 52px;
  align-items: start;
  background: var(--paper-strong);
}

.console-panel {
  border: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

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

.timeline li {
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid var(--line-light);
}

.timeline span {
  display: block;
  margin-bottom: 46px;
  color: var(--amber);
  font-weight: 900;
  text-transform: uppercase;
}

.timeline p {
  color: rgba(255, 255, 255, 0.74);
}

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

.portfolio .section-heading h2 {
  color: var(--white);
}

.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 28px;
  border-color: var(--line-light);
  background: var(--line-light);
}

.case-grid article {
  min-height: 320px;
  padding: 28px;
  background: var(--ink-3);
}

.case-grid span {
  color: var(--cyan);
}

.case-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.case-grid strong {
  color: var(--white);
}

.work-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 18px;
}

.work-item {
  position: relative;
  min-height: 370px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: #111;
}

.work-large {
  grid-row: span 2;
  min-height: 760px;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.05);
}

.work-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.08) 62%);
}

.work-item div {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 30px;
}

.work-item p {
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.work-item h3 {
  max-width: 590px;
  margin-bottom: 10px;
  font-size: 28px;
}

.work-item span {
  color: rgba(255, 255, 255, 0.78);
}

.industries {
  background: #e8eef0;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.industry-grid article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.section-cta {
  margin-top: 28px;
}

.section-cta .button-primary {
  width: fit-content;
}

.trust {
  display: grid;
  grid-template-columns: minmax(290px, 0.8fr) minmax(0, 1.2fr);
  gap: 52px;
  background: var(--paper-strong);
}

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

.brief {
  display: grid;
  grid-template-columns: minmax(290px, 0.75fr) minmax(360px, 1.25fr);
  gap: 56px;
  background: var(--ink);
  color: var(--white);
}

.brief h2 {
  color: var(--white);
}

.contact-lines {
  display: grid;
  gap: 12px;
  margin-top: 32px;
}

.contact-line {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.06);
  overflow-wrap: anywhere;
}

.contact-line span {
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-form {
  display: grid;
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.06);
}

fieldset {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  color: var(--cyan);
  font-weight: 900;
}

.brief-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 800;
}

fieldset label {
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.04);
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  padding: 0 12px;
}

textarea {
  min-height: 132px;
  padding-top: 12px;
  resize: vertical;
}

::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

input[type="checkbox"] {
  width: 18px;
  min-height: 18px;
  accent-color: var(--cyan);
}

option {
  color: var(--ink);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.notes-field {
  display: grid;
}

.urgent-callout {
  padding: 16px;
  border: 1px solid rgba(224, 163, 58, 0.48);
  background: rgba(224, 163, 58, 0.12);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
}

.urgent-callout a {
  display: inline-flex;
  margin-left: 8px;
  color: var(--amber);
  font-weight: 900;
}

.brief-output {
  min-height: 118px;
  padding: 18px;
  border: 1px solid rgba(25, 197, 216, 0.38);
  background: rgba(25, 197, 216, 0.08);
  color: rgba(255, 255, 255, 0.86);
  white-space: pre-line;
}

.brief-actions .button-secondary {
  border-color: rgba(255, 255, 255, 0.34);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 48px;
  background: #050608;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.mobile-action-bar {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  .stack-grid,
  .industry-grid,
  .engagement-grid,
  .case-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
    gap: 14px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 20px 24px;
    background: rgba(8, 11, 14, 0.97);
    border-bottom: 1px solid var(--line-light);
  }

  .site-header.is-open .site-nav {
    display: grid;
    justify-items: start;
    gap: 12px;
  }

  .mobile-menu-call {
    display: inline-flex;
    margin-top: 8px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
  }

  .nav-cta {
    display: none;
  }

  .mobile-call {
    display: inline-flex;
    justify-self: end;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
  }

  .menu-button {
    display: block;
  }

  .hero,
  .mission,
  .field-console,
  .trust,
  .brief {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 116px 24px 24px;
  }

  .hero-content {
    padding-bottom: 18px;
  }

  .ops-deck {
    min-height: auto;
  }

  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 37px;
  }

  .hero-lede {
    font-size: 21px;
  }

  .proof-band {
    grid-template-columns: 1fr;
  }

  .proof-band div {
    min-height: auto;
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mission,
  .engagements,
  .stack,
  .field-console,
  .portfolio,
  .industries,
  .trust,
  .brief {
    padding: 66px 24px;
  }

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

  .work-large {
    min-height: 540px;
  }
}

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

  .brand small {
    display: none;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-lede {
    font-size: 18px;
    overflow-wrap: break-word;
  }

  .hero-actions,
  .brief-actions {
    display: grid;
  }

  body {
    padding-bottom: 68px;
  }

  .mobile-action-bar {
    position: fixed;
    z-index: 30;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(8, 11, 14, 0.96);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar a {
    min-height: 58px;
    display: grid;
    place-items: center;
    color: var(--white);
    font-size: 14px;
    font-weight: 900;
    overflow: hidden;
    padding: 0 10px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-action-bar a:first-child {
    background: var(--cyan);
    color: var(--ink);
  }

  .signal-map {
    min-height: 214px;
    margin: 16px;
  }

  .signal-map::before {
    inset: 54px 78px;
  }

  .map-core {
    width: 116px;
    min-height: 72px;
  }

  .map-item {
    min-width: 98px;
    min-height: 36px;
    padding: 8px;
    font-size: 11px;
  }

  .deck-header,
  .panel-top {
    display: grid;
    justify-items: start;
  }

  .deck-header strong,
  .panel-top strong {
    text-align: left;
  }

  .ops-deck {
    align-self: auto;
  }

  .ops-deck .deck-grid {
    display: none;
  }

  .mission-grid,
  .stack-grid,
  .timeline,
  .industry-grid,
  .engagement-grid,
  .case-grid,
  .trust-grid,
  fieldset,
  .form-row {
    grid-template-columns: 1fr;
  }

  .deck-grid div,
    .mission-grid article,
    .stack-grid article,
    .timeline li,
    .industry-grid article,
    .engagement-grid article,
    .trust-grid article,
    .case-grid article {
    min-height: auto;
  }

  .work-item,
  .work-large {
    min-height: 390px;
  }

  .work-item h3 {
    font-size: 22px;
  }

  .brief-form {
    padding: 20px;
  }

  .site-footer {
    display: grid;
    padding: 22px 24px;
  }
}

@media (max-width: 420px) {
  .site-header {
    gap: 10px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .mobile-call {
    min-height: 40px;
    padding: 0 12px;
  }

  .menu-button {
    width: 40px;
    height: 40px;
  }

  .hero,
  .mission,
  .engagements,
  .stack,
  .field-console,
  .portfolio,
  .industries,
  .trust,
  .brief {
    padding-left: 20px;
    padding-right: 20px;
  }
}
