:root {
  --ink-950: #061124;
  --ink-900: #0b1d3a;
  --ink-800: #14233e;
  --ink-700: #26364f;
  --ink-600: #40506b;
  --ink-500: #61708a;
  --ink-200: #d8e1ee;
  --ink-100: #ecf1f7;
  --paper: #ffffff;
  --paper-soft: #f7f9fc;
  --blue-600: #2563eb;
  --blue-500: #2f6ff4;
  --teal-500: #14b8a6;
  --teal-600: #0c9487;
  --amber-500: #f2b84b;
  --line: rgba(11, 29, 58, 0.13);
  --line-strong: rgba(11, 29, 58, 0.2);
  --radius-1: 6px;
  --radius-2: 8px;
  --shadow-1: 0 1px 2px rgba(6, 17, 36, 0.08), 0 18px 48px rgba(6, 17, 36, 0.1);
  --shadow-2: 0 28px 80px rgba(6, 17, 36, 0.18);
  --container: 1180px;
  --header-height: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink-900);
  background:
    linear-gradient(90deg, rgba(11, 29, 58, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 48%, #eef4fb 100%);
  background-size: 84px 84px, 100% 100%;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: geometricPrecision;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 8%, rgba(20, 184, 166, 0.14), transparent 20rem),
    radial-gradient(circle at 88% 18%, rgba(37, 99, 235, 0.12), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0));
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(rgba(37, 99, 235, 0.18) 1px, transparent 1px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, transparent 0%, transparent 68%, #000 86%, transparent 100%);
  opacity: 0.5;
}

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

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

svg {
  display: block;
}

h1,
h2,
h3,
p,
dl,
dd,
ol,
ul {
  margin-top: 0;
}

p,
li,
dd {
  color: var(--ink-600);
  line-height: 1.72;
}

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

:focus-visible {
  outline: 3px solid rgba(20, 184, 166, 0.45);
  outline-offset: 4px;
}

::selection {
  color: white;
  background: var(--blue-600);
}

.skip-link {
  position: fixed;
  top: -80px;
  left: 18px;
  z-index: 80;
  padding: 10px 14px;
  color: white;
  background: var(--ink-950);
  border-radius: var(--radius-1);
  font-weight: 700;
}

.skip-link:focus {
  top: 14px;
}

.section-shell {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
  width: min(var(--container), calc(100% - 48px));
  min-height: var(--header-height);
  margin: 0 auto;
  padding: 14px 0;
}

.site-header::before {
  content: "";
  position: fixed;
  inset: 0 0 auto;
  z-index: -1;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(216, 225, 238, 0.7);
  backdrop-filter: blur(22px) saturate(1.2);
}

.brand {
  display: flex;
  align-items: center;
  width: 210px;
  height: 46px;
  overflow: hidden;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
  mix-blend-mode: multiply;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(6, 17, 36, 0.05);
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  color: var(--ink-700);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  transition: color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--ink-950);
  background: white;
  transform: translateY(-1px);
}

.nav-action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius-2);
  font-weight: 800;
  line-height: 1;
  transition:
    color 180ms var(--ease),
    background 180ms var(--ease),
    border-color 180ms var(--ease),
    box-shadow 180ms var(--ease),
    transform 180ms var(--ease);
}

.nav-action {
  padding: 0 18px;
  color: white;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-600));
  box-shadow: 0 16px 34px rgba(20, 184, 166, 0.24);
}

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

.nav-action:active,
.button:active {
  transform: translateY(0);
}

.nav-action svg,
.button svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.35;
}

.button {
  min-width: 176px;
  padding: 0 22px;
}

.button-primary {
  color: white;
  background: var(--ink-950);
  box-shadow: 0 18px 38px rgba(6, 17, 36, 0.24);
}

.button-primary:hover {
  background: #0d2346;
}

.button-secondary {
  color: var(--teal-600);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(20, 184, 166, 0.45);
}

.button-secondary:hover {
  color: #08776f;
  background: white;
  border-color: rgba(20, 184, 166, 0.72);
  box-shadow: 0 16px 34px rgba(20, 184, 166, 0.14);
}

.button-light {
  min-width: 278px;
  color: var(--ink-950);
  background: white;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.18);
}

.button-light:hover {
  box-shadow: 0 26px 52px rgba(0, 0, 0, 0.24);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 52px;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  padding: 44px 0 78px;
}

.hero-copy {
  min-width: 0;
  max-width: 650px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  margin-bottom: 18px;
  color: var(--ink-700);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 3px;
  height: 19px;
  background: linear-gradient(180deg, var(--teal-500), var(--blue-600));
  border-radius: 999px;
}

h1 {
  max-width: 650px;
  margin-bottom: 24px;
  color: var(--ink-950);
  font-size: clamp(3.65rem, 5.7vw, 4.55rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin-bottom: 30px;
  color: #31415e;
  font-size: 1.12rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 0;
}

.hero-proof div {
  padding: 14px 14px 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius-2);
  box-shadow: 0 10px 28px rgba(6, 17, 36, 0.05);
}

.hero-proof dt {
  margin-bottom: 6px;
  color: var(--ink-950);
  font-size: 1.52rem;
  font-weight: 850;
  line-height: 1;
}

.hero-proof dd {
  margin-left: 0;
  color: var(--ink-600);
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.38;
}

.hero-product {
  min-width: 0;
  position: relative;
}

.hero-product::before {
  content: "";
  position: absolute;
  inset: 12% -4% auto auto;
  width: 46%;
  height: 72%;
  background: rgba(20, 184, 166, 0.18);
  filter: blur(70px);
}

.product-shell {
  position: relative;
  overflow: hidden;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(20, 184, 166, 0.1));
  border: 1px solid rgba(11, 29, 58, 0.16);
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-2);
}

.product-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 8%, rgba(37, 99, 235, 0.16), transparent 18rem),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.62) 50%, transparent 100%);
}

.product-topbar,
.signal-grid,
.ops-grid {
  position: relative;
  z-index: 1;
}

.product-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  padding: 14px;
  color: white;
  background: linear-gradient(135deg, #071732, #0b1d3a);
  border-radius: var(--radius-2);
}

.product-identity {
  display: flex;
  align-items: center;
  gap: 12px;
}

.product-identity img {
  width: 44px;
  height: 38px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.product-identity span,
.panel-heading span,
.signal-card span,
.case-kicker {
  display: block;
  color: var(--ink-500);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.25;
}

.product-identity span {
  color: rgba(255, 255, 255, 0.62);
}

.product-identity strong {
  display: block;
  color: white;
  font-size: 0.98rem;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 750;
}

.live-badge span {
  width: 8px;
  height: 8px;
  background: var(--teal-500);
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.16);
}

.signal-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}

.signal-card,
.ops-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--line);
  border-radius: var(--radius-2);
  box-shadow: 0 14px 36px rgba(6, 17, 36, 0.08);
}

.signal-card {
  padding: 18px;
}

.signal-card-primary {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 249, 255, 0.96)),
    linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(20, 184, 166, 0.1));
  border-color: rgba(37, 99, 235, 0.24);
}

.signal-card strong {
  display: block;
  margin: 9px 0 8px;
  color: var(--ink-950);
  font-size: 1.55rem;
  line-height: 1;
}

.signal-card small {
  color: #078779;
  font-size: 0.78rem;
  font-weight: 800;
}

.ops-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(190px, 0.75fr);
  gap: 12px;
}

.ops-panel {
  min-height: 230px;
  padding: 18px;
}

.panel-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.panel-heading strong {
  color: var(--ink-950);
  font-size: 0.94rem;
}

.revenue-panel svg {
  width: 100%;
  height: 158px;
}

.chart-grid {
  fill: none;
  stroke: rgba(97, 112, 138, 0.16);
  stroke-width: 1;
}

.chart-fill {
  fill: rgba(37, 99, 235, 0.1);
}

.chart-line {
  fill: none;
  stroke: var(--blue-600);
  stroke-linecap: round;
  stroke-width: 7;
}

.revenue-panel circle {
  fill: var(--blue-600);
  stroke: white;
  stroke-width: 4;
}

.decision-list {
  display: grid;
  gap: 13px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.decision-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-700);
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1.35;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

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

.status-dot.blue {
  background: var(--blue-600);
}

.status-dot.ink {
  background: var(--ink-900);
}

.intro-band {
  padding: 76px 0;
  background: var(--ink-950);
}

.intro-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.72fr);
  gap: 70px;
  align-items: start;
}

.intro-band .eyebrow,
.work-section .eyebrow,
.cta-band .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.intro-band h2 {
  max-width: 720px;
  margin-bottom: 0;
  color: white;
  font-size: 3rem;
  line-height: 1.1;
}

.intro-band p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1.04rem;
}

.section {
  padding: 104px 0;
}

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

.section-heading h2,
.cta-band h2 {
  margin-bottom: 14px;
  color: var(--ink-950);
  font-size: 3rem;
  line-height: 1.1;
}

.section-heading p:not(.eyebrow),
.system-copy > p {
  max-width: 700px;
  margin-bottom: 0;
  font-size: 1.03rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-1);
}

.service-lane {
  position: relative;
  min-height: 322px;
  padding: 30px 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 254, 0.96)),
    white;
  transition: background 180ms var(--ease), transform 180ms var(--ease);
}

.service-lane::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(37, 99, 235, 0.12));
  border-radius: 999px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease);
}

.service-lane:hover {
  background: white;
  transform: translateY(-2px);
}

.service-lane:hover::after {
  opacity: 1;
  transform: scale(1);
}

.service-lane svg {
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  color: var(--blue-600);
  stroke-width: 1.85;
}

.service-lane h3 {
  margin-bottom: 12px;
  color: var(--ink-950);
  font-size: 1.26rem;
  line-height: 1.22;
}

.service-lane p {
  margin-bottom: 22px;
  color: var(--ink-600);
}

.service-lane span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: var(--ink-800);
  background: rgba(216, 225, 238, 0.5);
  border: 1px solid rgba(216, 225, 238, 0.8);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.work-section {
  padding: 104px 0;
  color: white;
  background:
    radial-gradient(circle at 78% 20%, rgba(20, 184, 166, 0.16), transparent 24rem),
    linear-gradient(180deg, #071732 0%, #091a34 52%, #061124 100%);
}

.section-heading-inverted h2 {
  color: white;
}

.section-heading-inverted p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.case-card {
  position: relative;
  overflow: hidden;
  grid-column: span 3;
  min-height: 262px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  transition: border-color 180ms var(--ease), transform 180ms var(--ease), background 180ms var(--ease);
}

.case-card::after {
  content: "";
  position: absolute;
  inset: auto 22px 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(20, 184, 166, 0.8), transparent);
  opacity: 0;
  transition: opacity 180ms var(--ease);
}

.case-card:hover {
  background: rgba(255, 255, 255, 0.095);
  border-color: rgba(20, 184, 166, 0.34);
  transform: translateY(-3px);
}

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

.case-featured {
  grid-column: span 6;
  min-height: 300px;
  padding: 34px;
  background:
    radial-gradient(circle at 80% 12%, rgba(20, 184, 166, 0.28), transparent 18rem),
    linear-gradient(135deg, rgba(37, 99, 235, 0.24), rgba(255, 255, 255, 0.075));
}

.case-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.74);
}

.case-kicker svg {
  width: 18px;
  height: 18px;
  color: var(--teal-500);
}

.case-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 28px;
  color: white;
  border-radius: var(--radius-2);
}

.case-icon svg {
  width: 28px;
  height: 28px;
}

.case-icon.navy {
  background: #102447;
}

.case-icon.blue {
  background: var(--blue-600);
}

.case-icon.dark {
  background: #243042;
}

.case-icon.cyan {
  background: #0e9a9e;
}

.case-card h3 {
  max-width: 740px;
  margin-bottom: 12px;
  color: white;
  font-size: 1.42rem;
  line-height: 1.18;
}

.case-featured h3 {
  font-size: 2rem;
}

.case-card p {
  max-width: 760px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.72);
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.case-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.77rem;
  font-weight: 800;
}

.system-section {
  padding-bottom: 96px;
}

.system-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 52px;
  align-items: start;
}

.system-copy {
  min-width: 0;
  position: sticky;
  top: 112px;
}

.system-copy > p {
  margin-bottom: 26px;
}

.system-checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.system-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink-700);
  font-weight: 650;
}

.system-checklist svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 4px;
  color: var(--teal-600);
  stroke-width: 2.5;
}

.capability-board {
  min-width: 0;
  overflow: hidden;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-1);
}

.capability-row {
  display: grid;
  grid-template-columns: 62px minmax(130px, 0.5fr) 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 24px 26px;
  border-bottom: 1px solid var(--line);
  transition: background 180ms var(--ease);
}

.capability-row:last-child {
  border-bottom: 0;
}

.capability-row:hover {
  background: #f8fbff;
}

.capability-row svg {
  width: 24px;
  height: 24px;
  color: var(--blue-600);
  stroke-width: 2.2;
}

.capability-row strong {
  color: var(--ink-950);
  font-size: 1.08rem;
}

.capability-row p {
  margin-bottom: 0;
}

.process-band {
  padding: 104px 0;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.9), rgba(255, 255, 255, 0.88)),
    var(--paper-soft);
  border-top: 1px solid rgba(216, 225, 238, 0.8);
  border-bottom: 1px solid rgba(216, 225, 238, 0.8);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-2);
  list-style: none;
  box-shadow: var(--shadow-1);
}

.process-timeline li {
  position: relative;
  min-height: 276px;
  padding: 28px;
  background: white;
}

.process-timeline li::before {
  content: "";
  position: absolute;
  top: 49px;
  left: 78px;
  right: 0;
  height: 1px;
  background: rgba(37, 99, 235, 0.18);
}

.process-timeline li:last-child::before {
  content: none;
}

.process-marker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  color: var(--blue-600);
  background: #eef4ff;
  border: 1px solid #d9e6ff;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 850;
}

.process-marker svg {
  width: 21px;
  height: 21px;
  stroke-width: 2.3;
}

.process-timeline h3 {
  margin-bottom: 12px;
  color: var(--ink-950);
  font-size: 1.16rem;
  line-height: 1.24;
}

.process-timeline p {
  margin-bottom: 0;
}

.cta-band {
  padding: 96px 0;
  color: white;
  background:
    radial-gradient(circle at 80% 18%, rgba(20, 184, 166, 0.28), transparent 22rem),
    linear-gradient(135deg, #0a4ddf 0%, #102e72 52%, #061124 100%);
}

.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.cta-band h2 {
  max-width: 760px;
  color: white;
}

.cta-band p:not(.eyebrow) {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.04rem;
}

.site-footer {
  color: white;
  background: #061124;
}

.footer-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(420px, 1.1fr);
  gap: 40px;
  align-items: center;
  padding-top: 44px;
  padding-bottom: 34px;
}

.footer-brand img {
  width: 216px;
  height: 58px;
  object-fit: contain;
  object-position: left center;
  filter: invert(1) brightness(2.4) contrast(0.9);
  mix-blend-mode: screen;
}

.footer-brand p {
  max-width: 300px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px 28px;
  font-style: normal;
}

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 750;
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.78);
}

.copyright {
  margin: 0;
  padding: 18px 24px 24px;
  color: rgba(255, 255, 255, 0.58);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

  .hero-copy {
    max-width: 850px;
  }

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

  .system-layout,
  .intro-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .system-copy {
    position: static;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    grid-template-columns: auto auto;
    width: min(var(--container), calc(100% - 32px));
  }

  .main-nav {
    display: none;
  }

  .brand {
    width: 168px;
  }

  .section-shell {
    width: min(var(--container), calc(100% - 32px));
  }

  .hero-proof,
  .signal-grid,
  .ops-grid,
  .cta-layout,
  .footer-layout {
    grid-template-columns: 1fr;
  }

  .section,
  .work-section,
  .process-band,
  .cta-band {
    padding: 78px 0;
  }

  .intro-band {
    padding: 66px 0;
  }

  .section-heading h2,
  .intro-band h2,
  .cta-band h2 {
    font-size: 2.3rem;
  }

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

  .case-card,
  .case-featured {
    grid-column: span 1;
  }

  .capability-row {
    grid-template-columns: 52px 1fr;
  }

  .capability-row p {
    grid-column: 2;
  }

  .footer-contact {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  body::after {
    opacity: 0.32;
  }

  .site-header {
    gap: 12px;
    padding: 12px 0;
  }

  .brand {
    width: 146px;
    height: 42px;
  }

  .nav-action {
    width: 44px;
    min-width: 44px;
    padding: 0;
    gap: 0;
    overflow: hidden;
    font-size: 0;
  }

  .nav-action svg {
    width: 22px;
    height: 22px;
  }

  .hero {
    gap: 38px;
    padding: 42px 0 60px;
  }

  h1 {
    font-size: 2.72rem;
    line-height: 1.05;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-lead {
    font-size: 1.02rem;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .product-shell {
    padding: 10px;
  }

  .product-topbar {
    align-items: flex-start;
    padding: 12px;
  }

  .live-badge {
    display: none;
  }

  .signal-card,
  .ops-panel {
    padding: 16px;
  }

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

  .service-lane {
    min-height: 260px;
    padding: 26px 22px;
  }

  .case-card,
  .case-featured {
    min-height: auto;
    padding: 24px;
  }

  .case-featured h3 {
    font-size: 1.55rem;
  }

  .capability-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 22px;
  }

  .capability-row p {
    grid-column: auto;
  }

  .process-timeline li {
    min-height: auto;
  }

  .process-timeline li::before {
    display: none;
  }

  .cta-layout {
    gap: 28px;
  }
}

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

  .section-heading h2,
  .intro-band h2,
  .cta-band h2 {
    font-size: 2rem;
  }
}
