:root {
  --ink: #13072f;
  --ink-2: #2c2352;
  --muted: #635d78;
  --line: #d7d8e5;
  --paper: #f1f4fa;
  --panel: #f8f9fd;
  --wash: #e9eef6;
  --blueprint: #dfe8f2;
  --violet: #6c19ff;
  --violet-dark: #250861;
  --cyan: #0ea5b7;
  --mint: #34d399;
  --shadow: 0 24px 70px rgba(18, 7, 47, 0.14);
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(108, 25, 255, 0.08), transparent 24rem),
    radial-gradient(circle at 88% 34%, rgba(14, 165, 183, 0.1), transparent 26rem),
    linear-gradient(180deg, #eef2f8 0%, #f5f7fb 34%, #e9eff6 70%, #f1f4fa 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(19, 7, 47, 0.034) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 7, 47, 0.034) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 16px clamp(20px, 5vw, 64px);
  background: rgba(247, 249, 253, 0.9);
  border-bottom: 1px solid rgba(230, 227, 239, 0.85);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand-mark {
  position: relative;
  display: inline-grid;
  width: 54px;
  height: 42px;
  overflow: hidden;
  place-items: center;
  background:
    linear-gradient(#f8f9fd, #f8f9fd) padding-box,
    linear-gradient(135deg, rgba(19, 7, 47, 0.9), rgba(108, 25, 255, 0.85)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(19, 7, 47, 0.12);
}

.brand-mark::after {
  position: absolute;
  inset: 5px;
  content: "";
  border: 1px solid rgba(108, 25, 255, 0.14);
  border-radius: 6px;
  pointer-events: none;
}

.brand-mark img {
  width: 48px;
  max-width: none;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.brand-text {
  display: inline-block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  color: var(--ink-2);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  text-decoration: none;
}

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

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #ffffff;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.72fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
  min-height: 92vh;
  padding: 118px clamp(20px, 5vw, 64px) 70px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(90deg, rgba(237, 242, 248, 0.98) 0%, rgba(237, 242, 248, 0.88) 56%, rgba(226, 235, 245, 0.82) 100%),
    radial-gradient(circle at 78% 26%, rgba(14, 165, 183, 0.15), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(108, 25, 255, 0.09), transparent 30%),
    linear-gradient(135deg, #eef3f9 0%, #e5edf6 100%);
}

.hero::before {
  position: absolute;
  inset: 78px 0 0;
  z-index: -2;
  content: "";
  background-image:
    linear-gradient(rgba(19, 7, 47, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 7, 47, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.8), transparent 78%);
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--violet-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 10.5ch;
  margin-bottom: 24px;
  color: var(--ink);
  font-size: clamp(3.2rem, 7vw, 6.55rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 700px;
  color: var(--ink-2);
  font-size: clamp(1.12rem, 2.2vw, 1.42rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

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

.button.primary {
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 16px 36px rgba(19, 7, 47, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
  box-shadow: 0 18px 42px rgba(108, 25, 255, 0.28);
}

.button.secondary {
  color: var(--ink);
  background: rgba(248, 249, 253, 0.92);
  border-color: var(--line);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 820px;
  margin: 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-proof div {
  min-height: 126px;
  padding: 22px;
  background: rgba(248, 249, 253, 0.9);
}

.hero-proof dt {
  margin-bottom: 16px;
  color: var(--cyan);
  font-weight: 900;
}

.hero-proof dd {
  margin: 0;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.25;
}

.engineering-board {
  position: relative;
  min-height: 580px;
  padding: clamp(26px, 4vw, 38px);
  overflow: hidden;
  background:
    linear-gradient(rgba(248, 249, 253, 0.86), rgba(241, 245, 250, 0.94)) padding-box,
    linear-gradient(135deg, rgba(19, 7, 47, 0.16), rgba(108, 25, 255, 0.34)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  box-shadow: 0 26px 80px rgba(19, 7, 47, 0.1);
}

.engineering-board::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(19, 7, 47, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 7, 47, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
}

.engineering-board::after {
  position: absolute;
  inset: 18px;
  content: "";
  border: 1px solid rgba(108, 25, 255, 0.12);
  border-radius: 8px;
  pointer-events: none;
}

.board-mark {
  position: absolute;
  right: -88px;
  bottom: -52px;
  width: min(72%, 440px);
  opacity: 0.11;
}

.board-mark img {
  width: 100%;
  mix-blend-mode: multiply;
}

.board-header,
.blueprint-flow,
.board-footer {
  position: relative;
  z-index: 1;
}

.board-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(99, 93, 120, 0.18);
}

.board-header span {
  color: var(--violet);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.board-header strong {
  color: var(--ink);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1;
  text-align: right;
}

.blueprint-flow {
  display: grid;
  gap: 18px;
  margin: 34px 0;
}

.blueprint-node {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  min-height: 78px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(230, 227, 239, 0.95);
  border-radius: 8px;
}

.blueprint-node:not(:last-child)::after {
  position: absolute;
  bottom: -19px;
  left: 44px;
  width: 1px;
  height: 19px;
  content: "";
  background: rgba(108, 25, 255, 0.28);
}

.blueprint-node span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
  place-items: center;
  background: var(--ink);
  border-radius: 8px;
}

.blueprint-node strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.2;
}

.blueprint-node small {
  display: block;
  grid-column: 2;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

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

.board-footer span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  color: var(--violet-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(246, 244, 251, 0.86);
  border: 1px solid rgba(230, 227, 239, 0.95);
  border-radius: 8px;
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 124px) 0;
}

.intro,
.services,
.portfolio {
  position: relative;
}

.intro::before,
.services::before,
.portfolio::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100%;
  max-width: 100vw;
  z-index: -1;
  content: "";
  pointer-events: none;
  transform: translateX(-50%);
}

.intro::before {
  background:
    linear-gradient(180deg, rgba(241, 244, 250, 0), rgba(223, 232, 242, 0.52) 48%, rgba(241, 244, 250, 0));
}

.services::before {
  background:
    radial-gradient(circle at 8% 18%, rgba(14, 165, 183, 0.08), transparent 24rem),
    linear-gradient(180deg, rgba(229, 237, 246, 0.78), rgba(241, 244, 250, 0.58));
}

.portfolio::before {
  background:
    radial-gradient(circle at 86% 4%, rgba(108, 25, 255, 0.07), transparent 24rem),
    linear-gradient(180deg, rgba(241, 244, 250, 0.36), rgba(223, 232, 242, 0.58));
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.5fr) minmax(0, 1.5fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  margin-bottom: 44px;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(34px, 6vw, 80px);
}

.intro .section-heading {
  display: block;
  margin-bottom: 0;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-copy p:last-child,
.service-card p:last-child,
.timeline p:last-child,
.product-card p:last-child,
.contact p:last-child {
  margin-bottom: 0;
}

.services,
.portfolio {
  border-top: 1px solid var(--line);
}

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

.service-card,
.product-card {
  min-height: 245px;
  padding: 24px;
  background: rgba(248, 249, 253, 0.88);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(19, 7, 47, 0.06);
  backdrop-filter: blur(10px);
}

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card:nth-child(2) {
  border-top-color: rgba(14, 165, 183, 0.52);
}

.service-card:nth-child(3) {
  border-top-color: rgba(52, 211, 153, 0.52);
}

.service-card p,
.timeline p,
.product-card p,
.contact p {
  color: var(--muted);
}

.service-kicker,
.status {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 28px;
  color: var(--violet);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process {
  width: 100%;
  max-width: none;
  padding-right: clamp(20px, 5vw, 64px);
  padding-left: clamp(20px, 5vw, 64px);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(19, 7, 47, 0.98), rgba(37, 8, 97, 0.96)),
    linear-gradient(90deg, rgba(14, 165, 183, 0.16), transparent);
}

.process .section-heading,
.timeline {
  width: min(var(--max), 100%);
  margin-right: auto;
  margin-left: auto;
}

.process .eyebrow,
.process h2,
.process h3 {
  color: #ffffff;
}

.process .eyebrow {
  opacity: 0.76;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  overflow: hidden;
  list-style: none;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
}

.timeline li {
  min-height: 280px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.07);
}

.timeline span {
  display: block;
  margin-bottom: 54px;
  color: var(--mint);
  font-weight: 900;
}

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

.portfolio-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.product-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 330px;
}

.featured-product {
  color: #ffffff;
  background:
    radial-gradient(circle at 82% 8%, rgba(14, 165, 183, 0.38), transparent 32%),
    linear-gradient(135deg, #081327 0%, #0d2f58 46%, #123c4a 100%);
  border-color: transparent;
}

.featured-product h3,
.featured-product .status {
  color: #ffffff;
}

.featured-product p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
}

.product-link-card {
  position: relative;
  color: #ffffff;
  overflow: hidden;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.product-link-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(135deg, rgba(0, 0, 0, 0.75), transparent 82%);
}

.product-link-card:hover,
.product-link-card:focus-visible {
  color: #ffffff;
  outline: none;
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(108, 25, 255, 0.22);
}

.product-copy,
.product-preview,
.product-cta {
  position: relative;
  z-index: 1;
}

.product-card h3 {
  font-size: clamp(1.8rem, 4vw, 3.4rem);
}

.product-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: end;
  margin-bottom: 14px;
}

.product-title-row h3 {
  margin-bottom: 0;
  letter-spacing: 0;
}

.product-title-row h3 span {
  color: #5eead4;
}

.product-title-row small {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-preview {
  margin: 24px 0;
}

.pos-window {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(2, 8, 23, 0.26);
}

.pos-window-bar {
  display: flex;
  gap: 7px;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  color: #0f172a;
  font-size: 0.78rem;
  font-weight: 900;
  background: #edf8fb;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
}

.pos-window-bar span {
  width: 8px;
  height: 8px;
  background: #14b8a6;
  border-radius: 99px;
}

.pos-window-bar span:nth-child(2) {
  background: #38bdf8;
}

.pos-window-bar span:nth-child(3) {
  background: #a78bfa;
}

.pos-window-bar strong {
  margin-left: auto;
}

.pos-layout {
  display: grid;
  grid-template-columns: 1fr minmax(120px, 0.72fr);
  gap: 12px;
  padding: 14px;
}

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

.pos-tiles span {
  min-height: 44px;
  background: #0ea5b7;
  border-radius: 8px;
}

.pos-tiles span:nth-child(2n) {
  background: #2563eb;
}

.pos-tiles span:nth-child(3n) {
  background: #f59e0b;
}

.pos-sale {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 12px;
  color: #0f172a;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.pos-sale b {
  font-size: 0.82rem;
}

.pos-sale i {
  display: block;
  height: 8px;
  background: #cbd5e1;
  border-radius: 99px;
}

.pos-sale strong {
  margin-top: 6px;
  font-size: 1.25rem;
}

.product-cta,
.muted-link {
  width: fit-content;
  color: inherit;
  font-weight: 900;
  text-decoration: none;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
}

.placeholder-product {
  background:
    linear-gradient(rgba(239, 244, 250, 0.9), rgba(230, 238, 247, 0.98)),
    linear-gradient(135deg, rgba(108, 25, 255, 0.1), rgba(14, 165, 183, 0.08));
}

.muted-link {
  color: var(--muted);
}

.placeholder-preview {
  display: grid;
  gap: 10px;
  margin: 24px 0;
  padding: 18px;
  border: 1px dashed rgba(99, 93, 120, 0.32);
  border-radius: 8px;
}

.placeholder-preview span {
  display: block;
  height: 12px;
  background: rgba(99, 93, 120, 0.16);
  border-radius: 99px;
}

.placeholder-preview span:nth-child(2) {
  width: 72%;
}

.placeholder-preview span:nth-child(3) {
  width: 46%;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  padding: clamp(70px, 10vw, 110px) clamp(20px, 5vw, 64px);
  background:
    linear-gradient(135deg, rgba(229, 236, 246, 0.96), rgba(219, 229, 241, 0.9)),
    linear-gradient(90deg, rgba(14, 165, 183, 0.08), transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact h2 {
  max-width: 760px;
  margin-bottom: 22px;
}

.contact-panel {
  display: grid;
  gap: 12px;
  padding: 28px;
  font-style: normal;
  background: rgba(248, 249, 253, 0.9);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-panel span {
  font-weight: 900;
}

.contact-panel a {
  color: var(--violet-dark);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-panel small {
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 30px clamp(20px, 5vw, 64px);
  color: var(--muted);
}

.site-footer p,
.site-footer small {
  margin: 0;
}

@media (max-width: 940px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 78px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 0;
    padding: 8px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-nav a {
    padding: 16px;
  }

  .nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-open .nav-toggle span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-open .nav-toggle span:nth-child(3) {
    opacity: 0;
  }

  .nav-open .nav-toggle span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 126px;
  }

  .engineering-board {
    min-height: auto;
  }

  .hero-proof,
  .section-heading,
  .intro,
  .timeline,
  .contact,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

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

  .timeline li {
    min-height: auto;
  }

  .timeline span {
    margin-bottom: 26px;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 70px;
    padding: 12px 16px;
  }

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

  .brand .brand-mark img {
    width: 45px;
    height: auto;
  }

  .brand .brand-text {
    max-width: 140px;
    font-size: 0.78rem;
  }

  .footer-brand .brand-mark {
    width: 50px;
    height: 40px;
  }

  .site-nav {
    top: 70px;
  }

  .hero {
    padding: 118px 20px 64px;
  }

  h1 {
    max-width: 10ch;
    font-size: clamp(3.05rem, 15vw, 4.7rem);
  }

  .engineering-board {
    padding: 22px;
  }

  .board-header,
  .board-footer {
    grid-template-columns: 1fr;
  }

  .board-header {
    display: grid;
  }

  .board-header strong {
    text-align: left;
  }

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

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

  .hero-proof,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .section {
    width: calc(100% - 32px);
  }

  .service-card,
  .product-card,
  .contact-panel {
    padding: 22px;
  }

  .pos-layout {
    grid-template-columns: 1fr;
  }

  .contact {
    padding-right: 16px;
    padding-left: 16px;
  }
}
