:root {
  --brand: #13265a;
  --brand-strong: #0a1536;
  --brand-mid: #294b9e;
  --brand-pale: #edf2ff;
  --ink: #08142f;
  --ink-soft: #0d1d43;
  --ink-raised: #14295b;
  --ink-dark: #111b35;
  --paper: #f4f6fb;
  --paper-bright: #ffffff;
  --text: #f7f9ff;
  --text-dark: #111b35;
  --muted: #aebbd7;
  --muted-dark: #5c6882;
  --signal: #91abff;
  --signal-dark: #13265a;
  --blue: #5579d8;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(19, 38, 90, 0.16);
  --shell: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}


* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font-family: Inter, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:where(a, button, summary):focus-visible {
  outline: 2px solid var(--signal);
  outline-offset: 4px;
}

.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;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  padding: 10px 14px;
  background: var(--signal);
  color: var(--ink);
  font-weight: 750;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid var(--line-dark);
  background: rgba(250, 252, 255, 0.96);
  backdrop-filter: blur(18px);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled,
.site-header.has-open-dropdown {
  background: rgba(250, 252, 255, 0.985);
  border-color: var(--line-dark);
  box-shadow: 0 12px 36px rgba(19, 38, 90, 0.08);
}

.header-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 50px;
}

.wordmark {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.wordmark img {
  display: block;
  width: 118px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.25vw, 34px);
}

.nav-direct,
.nav-dropdown > summary {
  position: relative;
  color: #4d5d80;
  font-size: 14px;
  font-weight: 560;
  transition: color 180ms ease;
}

.nav-direct::after,
.nav-dropdown > summary::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -9px;
  height: 1px;
  background: var(--brand);
  transition: right 240ms var(--ease);
}

.nav-direct:hover,
.nav-direct:focus-visible,
.nav-direct.is-current,
.nav-dropdown > summary:hover,
.nav-dropdown > summary:focus-visible,
.nav-dropdown[open] > summary,
.nav-dropdown.is-current > summary {
  color: var(--brand);
}

.nav-direct:hover::after,
.nav-direct:focus-visible::after,
.nav-direct.is-current::after,
.nav-dropdown > summary:hover::after,
.nav-dropdown > summary:focus-visible::after,
.nav-dropdown[open] > summary::after,
.nav-dropdown.is-current > summary::after {
  right: 0;
}

.nav-dropdown {
  position: static;
}

.nav-dropdown > summary {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  cursor: pointer;
}

.nav-dropdown > summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown > summary i {
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 180ms ease;
}

.nav-dropdown[open] > summary i {
  transform: translateY(2px) rotate(225deg);
}

.nav-mega {
  position: fixed;
  top: 86px;
  left: 0;
  width: 100vw;
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(250, 252, 255, 0.99);
  box-shadow: 0 30px 70px rgba(19, 38, 90, 0.14);
  backdrop-filter: blur(22px);
}

.nav-mega-inner {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(45px, 7vw, 100px);
  padding-block: 30px 34px;
}

.nav-mega-intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.nav-mega-intro > span {
  color: var(--brand-mid);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.13em;
}

.nav-mega-intro strong {
  max-width: 220px;
  color: var(--text-dark);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 580;
}

.nav-mega-intro a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: #506084;
  font-size: 13px;
  font-weight: 680;
}

.nav-mega-intro a:hover,
.nav-mega-intro a:focus-visible {
  color: var(--brand);
}

.nav-mega-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(28px, 5vw, 72px);
}

.nav-dropdown-integrations .nav-mega-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.nav-mega-link {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 52px;
  padding-block: 8px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--text-dark);
  transition: color 180ms ease, padding 180ms var(--ease), background 180ms ease;
}

.nav-mega-link > span {
  color: #5f6e91;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
}

.nav-mega-link b {
  font-size: 13px;
  line-height: 1.25;
  font-weight: 590;
}

.nav-mega-link:hover,
.nav-mega-link:focus-visible {
  padding-inline: 10px;
  background: var(--brand-pale);
  color: var(--brand);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #5f6e91;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.language-switch button,
.language-switch a {
  padding: 4px;
  border: 0;
  background: transparent;
  color: #5f6e91;
  cursor: pointer;
}

.language-switch button.is-active,
.language-switch a.is-active {
  color: var(--brand);
}

.header-cta {
  padding: 12px 17px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  font-size: 13px;
  font-weight: 720;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--brand-mid);
  border-color: var(--brand-mid);
  color: #fff;
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 150px 0 0;
  background:
    radial-gradient(circle at 89% 6%, rgba(85, 121, 216, 0.18), transparent 29%),
    radial-gradient(circle at 7% 62%, rgba(145, 171, 255, 0.08), transparent 32%),
    var(--ink);
}

.hero-grid,
.cta-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  pointer-events: none;
}

.hero-glow-one {
  width: 370px;
  height: 370px;
  right: -220px;
  top: 22%;
  border: 1px solid rgba(145, 171, 255, 0.22);
  box-shadow: 0 0 100px rgba(145, 171, 255, 0.1) inset;
}

.hero-glow-two {
  width: 180px;
  height: 180px;
  left: -120px;
  bottom: 16%;
  border: 1px solid rgba(85, 121, 216, 0.22);
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(460px, 0.92fr);
  align-items: center;
  gap: clamp(40px, 6vw, 90px);
  min-height: 670px;
  padding-bottom: 70px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
  color: var(--signal);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow-line {
  width: 36px;
  height: 1px;
  background: var(--signal);
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  color: #f8faff;
  font-size: clamp(50px, 5.35vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.057em;
  font-weight: 630;
}

.hero-lead {
  max-width: 680px;
  margin: 34px 0 0;
  color: #b8c4df;
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 42px;
}

.hero-shortcuts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  max-width: 730px;
  margin-top: 28px;
}

.hero-shortcuts-label {
  margin-right: 4px;
  color: #8090b1;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.13em;
}

.hero-shortcuts a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #b8c4dc;
  font-size: 11px;
  font-weight: 620;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.hero-shortcuts a:hover,
.hero-shortcuts a:focus-visible {
  border-color: rgba(145, 171, 255, 0.58);
  background: rgba(145, 171, 255, 0.1);
  color: var(--signal);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 56px;
  padding: 0 20px 0 23px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 760;
  transition: transform 220ms var(--ease), background 220ms ease, color 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--signal);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #b6c5ff;
}

.button-arrow {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border: 1px solid rgba(10, 21, 54, 0.3);
  border-radius: 50%;
  font-size: 13px;
}

.text-link,
.dark-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #cbd4e8;
  font-size: 14px;
  font-weight: 650;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--signal);
}

.system-stage {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(145deg, rgba(17, 39, 83, 0.92), rgba(8, 24, 55, 0.7));
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(15px);
}

.system-stage::before {
  content: "";
  position: absolute;
  top: -160px;
  right: -120px;
  width: 330px;
  height: 330px;
  border-radius: 50%;
  background: rgba(85, 121, 216, 0.12);
  filter: blur(20px);
}

.stage-topline,
.stage-footer {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 23px;
}

.stage-topline {
  border-bottom: 1px solid var(--line);
}

.stage-topline > div {
  display: grid;
  gap: 3px;
}

.stage-kicker,
.live-state,
.stage-footer {
  color: #8291b1;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.stage-topline strong {
  color: #eef2ff;
  font-size: 14px;
  font-weight: 620;
}

.live-state {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b4bfd8;
}

.live-state i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 0 4px rgba(145, 171, 255, 0.12), 0 0 18px rgba(145, 171, 255, 0.58);
  animation: pulse 2.4s ease-in-out infinite;
}

.system-map {
  position: relative;
  min-height: 470px;
  background-image:
    radial-gradient(circle at center, rgba(145, 171, 255, 0.075), transparent 38%),
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
}

.connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.connection {
  fill: none;
  stroke: rgba(154, 174, 225, 0.38);
  stroke-width: 1.15;
  stroke-dasharray: 5 8;
  animation: data-flow 12s linear infinite;
}

.connection-b,
.connection-d,
.connection-f {
  animation-direction: reverse;
  animation-duration: 10s;
}

.system-node {
  position: absolute;
  z-index: 3;
  min-width: 94px;
  display: grid;
  gap: 3px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(11, 28, 64, 0.9);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
}

.system-node > span {
  color: #edf2ff;
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.04em;
}

.system-node small {
  color: #8290af;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 7px;
  letter-spacing: 0.11em;
}

.system-node > i {
  position: absolute;
  top: -4px;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
}

.core-node {
  top: 50%;
  left: 50%;
  min-width: 130px;
  min-height: 130px;
  place-content: center;
  text-align: center;
  transform: translate(-50%, -50%) rotate(45deg);
  border-color: rgba(145, 171, 255, 0.68);
  background: rgba(14, 35, 80, 0.96);
  box-shadow: 0 0 0 11px rgba(145, 171, 255, 0.03), 0 0 70px rgba(145, 171, 255, 0.16);
}

.core-node span,
.core-node small {
  transform: rotate(-45deg);
}

.core-node span {
  color: var(--signal);
  font-size: 21px;
  letter-spacing: 0.15em;
}

.node-crm { left: 6%; top: 13%; }
.node-erp { right: 6%; top: 13%; }
.node-b2b { left: 4%; bottom: 14%; }
.node-api { right: 4%; bottom: 14%; }
.node-ai { left: 50%; top: 3%; transform: translateX(-50%); }
.node-bi { left: 50%; bottom: 3%; transform: translateX(-50%); }

.stage-footer {
  gap: 16px;
  justify-content: flex-start;
  border-top: 1px solid var(--line);
  background: rgba(4, 13, 34, 0.34);
}

.stage-footer > span {
  display: flex;
  align-items: center;
  gap: 7px;
}

.mini-square {
  width: 5px;
  height: 5px;
  background: #6e7fa5;
}

.hero-proof {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.hero-proof > div {
  display: flex;
  align-items: center;
  gap: 18px;
  min-height: 92px;
  padding: 16px 30px;
  border-right: 1px solid var(--line);
}

.hero-proof > div:first-child {
  padding-left: 0;
}

.hero-proof > div:last-child {
  border-right: 0;
}

.hero-proof span {
  color: var(--signal);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.hero-proof p {
  margin: 0;
  color: #c2cbe0;
  font-size: 13px;
  font-weight: 620;
}

.section-light {
  background: var(--paper);
  color: var(--text-dark);
}

.section-dark {
  background: var(--ink-soft);
  color: var(--text);
}

.manifesto {
  padding: 150px 0 110px;
}

.manifesto-grid,
.applications-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: clamp(40px, 7vw, 115px);
}

.section-marker {
  padding-top: 10px;
  color: var(--signal-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.12em;
}

.marker-light {
  color: var(--signal);
}

.display-statement {
  max-width: 920px;
  margin: 0;
  font-size: clamp(36px, 4.2vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 570;
}

.manifesto-notes {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
  margin-top: 58px;
  padding-top: 26px;
  border-top: 1px solid var(--line-dark);
}

.manifesto-notes p {
  max-width: 620px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 17px;
}

.dark-link {
  color: var(--text-dark);
  white-space: nowrap;
}

.dark-link:hover,
.dark-link:focus-visible {
  color: var(--signal-dark);
}

.capabilities {
  padding: 70px 0 150px;
}

.section-head {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: clamp(40px, 7vw, 115px);
  align-items: start;
  margin-bottom: 70px;
}

.section-head h2,
.applications h2,
.company h2,
.final-cta h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 590;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.capability-card {
  position: relative;
  min-height: 570px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.26);
  transition: transform 260ms var(--ease), background 260ms ease;
}

.capability-card:hover {
  transform: translateY(-7px);
  background: var(--paper-bright);
}

.capability-card.card-dark {
  background: var(--ink);
  color: var(--text);
}

.capability-card.card-dark:hover {
  background: #10224f;
}

.card-number {
  position: relative;
  z-index: 2;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  color: var(--signal-dark);
}

.card-dark .card-number {
  color: var(--signal);
}

.card-content {
  position: relative;
  z-index: 2;
}

.card-label {
  margin: 0 0 15px;
  color: var(--signal-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0.11em;
}

.card-dark .card-label {
  color: var(--signal);
}

.card-content h3 {
  margin: 0;
  font-size: 29px;
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 630;
}

.card-content > p:not(.card-label) {
  margin: 22px 0 0;
  color: var(--muted-dark);
  line-height: 1.65;
}

.card-dark .card-content > p:not(.card-label) {
  color: var(--muted);
}

.card-content ul {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.card-content li {
  padding: 10px 0;
  border-top: 1px solid var(--line-dark);
  color: #53617b;
  font-size: 13px;
  font-weight: 600;
}

.card-dark .card-content li {
  border-color: var(--line);
  color: #ced6e8;
}

.card-orbit {
  position: absolute;
  top: 48px;
  right: -70px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(145, 171, 255, 0.18);
  border-radius: 50%;
}

.card-orbit span {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(85, 121, 216, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.card-orbit span:first-child {
  width: 170px;
  height: 170px;
}

.card-orbit span:last-child {
  width: 76px;
  height: 76px;
  background: rgba(145, 171, 255, 0.05);
}

.applications {
  padding: 150px 0;
}

.applications-layout {
  align-items: start;
}

.applications-intro {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: clamp(40px, 7vw, 115px);
}

.applications-intro h2 {
  max-width: 930px;
}

.applications-intro > p {
  grid-column: 2;
  max-width: 630px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-inline-link {
  grid-column: 2;
  display: inline-flex;
  align-items: center;
  justify-self: start;
  gap: 12px;
  margin-top: 22px;
  color: #d9e1f2;
  font-size: 13px;
  font-weight: 680;
}

.section-inline-link:hover,
.section-inline-link:focus-visible {
  color: var(--signal);
}

.application-list {
  grid-column: 2;
  margin-top: 80px;
  border-top: 1px solid var(--line);
}

.application-item {
  display: grid;
  grid-template-columns: 55px 1.05fr 1fr;
  gap: 32px;
  align-items: center;
  min-height: 122px;
  border-bottom: 1px solid var(--line);
  transition: padding 220ms var(--ease), background 220ms ease;
}

.application-item:hover {
  padding-inline: 16px;
  background: rgba(255, 255, 255, 0.025);
}

.application-item > span {
  color: var(--signal);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.application-item h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 580;
}

.application-item p {
  margin: 0;
  color: #91a0bd;
  font-size: 14px;
}

.approach {
  padding: 150px 0;
}

.approach-head h2 {
  max-width: 850px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.process-step {
  min-height: 340px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--signal-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
}

.step-top i {
  width: 8px;
  height: 8px;
  border: 1px solid var(--signal-dark);
  transform: rotate(45deg);
}

.process-step h3 {
  margin: 135px 0 0;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 640;
}

.process-step p {
  margin: 18px 0 0;
  color: var(--muted-dark);
  font-size: 14px;
}

.company {
  padding: 150px 0;
  overflow: hidden;
  background: #0b193b;
}

.company-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  align-items: center;
  gap: clamp(70px, 10vw, 150px);
}

.company-year {
  position: relative;
  min-height: 430px;
  display: grid;
  place-content: center;
  border: 1px solid var(--line);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

.company-year::after {
  content: "";
  position: absolute;
  inset: 34px;
  border: 1px solid rgba(145, 171, 255, 0.24);
  transform: rotate(5deg);
}

.company-year span,
.company-year strong {
  position: relative;
  z-index: 2;
  text-align: center;
}

.company-year span {
  color: var(--signal);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.company-year strong {
  color: #f3f6ff;
  font-size: clamp(80px, 9vw, 132px);
  line-height: 1;
  letter-spacing: -0.07em;
  font-weight: 430;
}

.company-copy h2 {
  margin-top: 34px;
}

.company-copy > p {
  max-width: 700px;
  margin: 34px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.company-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.company-principles span {
  padding: 9px 11px;
  border: 1px solid var(--line);
  color: #b6c1da;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
}

.company-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: #dbe3f3;
  font-size: 13px;
  font-weight: 680;
}

.company-link:hover,
.company-link:focus-visible {
  color: var(--signal);
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 150px 0;
  background: #102452;
}

.final-cta::after {
  content: "";
  position: absolute;
  right: -180px;
  bottom: -260px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(145, 171, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(145, 171, 255, 0.022), 0 0 0 160px rgba(145, 171, 255, 0.014);
}

.final-cta-inner {
  position: relative;
  z-index: 2;
}

.final-cta-inner > p {
  margin: 0 0 22px;
  color: var(--signal);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.14em;
}

.final-cta h2 {
  max-width: 950px;
}

.button-large {
  min-width: 240px;
  min-height: 64px;
  margin-top: 50px;
}

.site-footer {
  padding: 80px 0 24px;
  background: #050c22;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 70px;
  align-items: start;
  padding-bottom: 70px;
}

.footer-wordmark {
  align-self: start;
}

.footer-wordmark img {
  width: 170px;
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

.footer-contact,
.footer-location {
  display: grid;
  gap: 8px;
}

.footer-contact > span,
.footer-location > span {
  margin-bottom: 9px;
  color: #7080a4;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.footer-contact a,
.footer-location p,
.footer-location a {
  margin: 0;
  color: #c5cee2;
  font-size: 14px;
}

.footer-contact a:hover,
.footer-location a:hover {
  color: var(--signal);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-top: 23px;
  border-top: 1px solid var(--line);
  color: #677799;
  font-size: 11px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes data-flow {
  to { stroke-dashoffset: -120; }
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

@media (max-width: 1280px) {
  .header-inner { gap: 25px; }
  .header-cta { display: none; }
}

@media (max-width: 1120px) {
  .hero-layout {
    grid-template-columns: 1fr;
    padding-top: 55px;
  }
  .hero-copy { max-width: 850px; }
  .system-stage { max-width: 720px; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .capability-card:last-child { grid-column: 1 / -1; min-height: 450px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  .header-inner { min-height: 72px; grid-template-columns: auto 1fr auto; }
  .header-actions { margin-left: auto; }
  .menu-toggle {
    position: relative;
    z-index: 3;
    order: 3;
    width: 44px;
    height: 44px;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 1px solid var(--line-dark);
    background: transparent;
    cursor: pointer;
  }
  .menu-toggle > span:not(.sr-only) {
    width: 18px;
    height: 1px;
    background: var(--brand);
    transition: transform 200ms ease;
  }
  .menu-toggle[aria-expanded="true"] > span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { transform: translateY(-3.5px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 18px;
    overflow-y: auto;
    padding: 104px 28px 48px;
    background: rgba(250, 252, 255, 0.99);
    transform: translateX(100%);
    transition: transform 320ms var(--ease);
  }
  .site-nav.is-open { transform: translateX(0); }
  .nav-direct,
  .nav-dropdown > summary { font-size: 28px; letter-spacing: -0.03em; }
  .nav-direct { min-height: 44px; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown > summary { min-height: 44px; justify-content: space-between; }
  .nav-dropdown > summary::after,
  .nav-direct::after { bottom: 0; }
  .nav-dropdown > summary i { width: 9px; height: 9px; margin-right: 5px; }
  .nav-mega {
    position: static;
    width: 100%;
    margin-top: 10px;
    border: 0;
    border-top: 1px solid var(--line-dark);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
  }
  .nav-mega-inner {
    width: 100%;
    display: block;
    padding: 17px 0 8px;
  }
  .nav-mega-intro { gap: 8px; margin-bottom: 13px; }
  .nav-mega-intro strong { max-width: 100%; font-size: 17px; }
  .nav-mega-intro a { min-height: 38px; margin-top: 0; font-size: 12px; }
  .nav-mega-grid,
  .nav-dropdown-integrations .nav-mega-grid { grid-template-columns: 1fr; }
  .nav-mega-link { min-height: 46px; padding-block: 7px; }
  .nav-mega-link b { font-size: 14px; letter-spacing: 0; }
  .language-switch { position: relative; z-index: 3; }
}

@media (max-width: 820px) {
  .shell { width: min(calc(100% - 32px), var(--shell)); }
  .hero { padding-top: 100px; }
  .hero-layout { min-height: auto; padding-top: 50px; }
  .hero h1 { font-size: clamp(46px, 11vw, 72px); }
  .system-stage { width: 100%; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof > div,
  .hero-proof > div:first-child { min-height: 65px; padding: 12px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .manifesto,
  .applications,
  .approach,
  .company,
  .final-cta { padding-block: 100px; }
  .manifesto-grid,
  .section-head,
  .applications-layout,
  .applications-intro { grid-template-columns: 1fr; gap: 35px; }
  .manifesto-notes { grid-template-columns: 1fr; gap: 28px; }
  .applications-intro > p,
  .section-inline-link,
  .application-list { grid-column: 1; }
  .application-list { margin-top: 40px; }
  .company-grid { grid-template-columns: 1fr; }
  .company-year { min-height: 360px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-wordmark { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .wordmark img { width: 100px; }
  .footer-wordmark img { width: 150px; }
  .header-inner { gap: 14px; }
  .header-actions { gap: 10px; }
  .hero-copy { padding-bottom: 15px; }
  .hero h1 { font-size: clamp(43px, 13vw, 62px); }
  .hero-lead { font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 22px; }
  .hero-shortcuts { margin-top: 32px; }
  .hero-shortcuts-label { flex-basis: 100%; margin-bottom: 2px; }
  .hero-shortcuts a { min-height: 44px; }
  .system-map { min-height: 400px; }
  .system-node { min-width: 75px; padding: 8px; }
  .system-node small { font-size: 6px; }
  .core-node { min-width: 102px; min-height: 102px; }
  .core-node span { font-size: 17px; }
  .stage-footer { flex-wrap: wrap; }
  .display-statement { font-size: 36px; }
  .section-head h2,
  .applications h2,
  .company h2,
  .final-cta h2 { font-size: 42px; }
  .capability-grid,
  .process-grid { grid-template-columns: 1fr; }
  .capability-card,
  .capability-card:last-child { grid-column: auto; min-height: 490px; }
  .application-item { grid-template-columns: 34px 1fr; gap: 18px; padding-block: 25px; }
  .application-item p { grid-column: 2; }
  .process-step { min-height: 290px; }
  .process-step h3 { margin-top: 95px; }
  .company-year { min-height: 300px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-wordmark { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* Crawlable solution pages and answer-first content */
.card-detail-link {
  position: absolute;
  right: 28px;
  bottom: 26px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text-dark);
  font-size: 12px;
  font-weight: 760;
}

.card-dark .card-detail-link {
  color: var(--text);
}

.card-detail-link::after {
  content: "↗";
  color: var(--signal-dark);
  font-size: 16px;
}

.card-dark .card-detail-link::after {
  color: var(--signal);
}

.home-faq {
  padding: 145px 0;
  border-top: 1px solid var(--line-dark);
}

.home-faq-layout,
.faq-page-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(55px, 9vw, 135px);
  align-items: start;
}

.home-faq h2,
.faq-section h2 {
  max-width: 520px;
  margin: 24px 0 0;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.03;
  letter-spacing: -0.05em;
  font-weight: 590;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-list details {
  border-bottom: 1px solid var(--line-dark);
}

.faq-list summary {
  position: relative;
  padding: 25px 54px 25px 0;
  cursor: pointer;
  list-style: none;
  color: var(--text-dark);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.35;
  font-weight: 640;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 21px;
  right: 0;
  color: var(--signal-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 23px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 720px;
  margin: -3px 54px 27px 0;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.75;
}

.inner-page {
  background: var(--ink);
}

.page-hero {
  position: relative;
  min-height: 740px;
  overflow: hidden;
  padding: 175px 0 105px;
  background:
    radial-gradient(circle at 83% 14%, rgba(85, 121, 216, 0.2), transparent 28%),
    radial-gradient(circle at 17% 91%, rgba(145, 171, 255, 0.1), transparent 31%),
    var(--ink);
}

.page-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 92%);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 80px;
  color: #8998ba;
  font-size: 12px;
}

.breadcrumbs a:hover,
.breadcrumbs a:focus-visible,
.breadcrumbs a[aria-current="page"] {
  color: var(--signal);
}

.page-eyebrow {
  margin: 0 0 20px;
  color: var(--signal);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 1060px;
  margin: 0;
  font-size: clamp(50px, 7vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.062em;
  font-weight: 560;
  text-wrap: balance;
}

.page-lead {
  max-width: 760px;
  margin: 39px 0 38px;
  color: #bdc7df;
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.65;
}

.answer-section {
  padding: 125px 0 80px;
}

.answer-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(40px, 7vw, 115px);
}

.answer-layout h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(38px, 4.4vw, 65px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 590;
}

.answer-layout p {
  max-width: 810px;
  margin: 32px 0 0;
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.8;
}

.service-details {
  padding: 35px 0 145px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.detail-panel {
  min-height: 580px;
  padding: clamp(30px, 4vw, 56px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper-bright);
}

.detail-panel-dark {
  background: var(--ink-soft);
  color: var(--text);
}

.detail-panel > span,
.service-process-grid article > span,
.solution-index-card > span {
  color: var(--signal-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.1em;
}

.detail-panel-dark > span,
.service-process-grid article > span {
  color: var(--signal);
}

.detail-panel h2 {
  max-width: 480px;
  margin: 135px 0 38px;
  font-size: clamp(32px, 3.3vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.detail-panel ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-panel li {
  position: relative;
  padding: 16px 0 16px 25px;
  border-top: 1px solid var(--line-dark);
  color: var(--muted-dark);
  font-size: 16px;
}

.detail-panel-dark li {
  border-color: var(--line);
  color: #b9c4dc;
}

.detail-panel li::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--signal-dark);
}

.detail-panel-dark li::before {
  background: var(--signal);
}

.service-process {
  padding: 140px 0;
}

.service-section-head {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: clamp(40px, 7vw, 115px);
  margin-bottom: 70px;
}

.service-section-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.03;
  letter-spacing: -0.05em;
  font-weight: 570;
}

.service-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-process-grid article {
  min-height: 375px;
  padding: 31px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-process-grid h3 {
  margin: 112px 0 19px;
  font-size: 25px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 620;
}

.service-process-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-section {
  padding: 145px 0;
}

.related-section {
  padding: 10px 0 150px;
}

.related-head {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  margin-bottom: 35px;
}

.related-head h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.045em;
  font-weight: 590;
}

.related-head > a {
  color: var(--signal-dark);
  font-size: 13px;
  font-weight: 760;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.related-grid > a {
  min-height: 355px;
  padding: 28px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background 220ms ease, transform 220ms var(--ease);
}

.related-grid > a:hover,
.related-grid > a:focus-visible {
  z-index: 1;
  background: var(--paper-bright);
  transform: translateY(-5px);
}

.related-grid span,
.solution-index-card > p {
  color: var(--signal-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.related-grid h3 {
  margin: 92px 0 17px;
  font-size: 27px;
  line-height: 1.12;
  letter-spacing: -0.035em;
  font-weight: 620;
}

.related-grid p {
  color: var(--muted-dark);
  font-size: 14px;
}

.related-grid b {
  display: inline-block;
  margin-top: 20px;
  color: var(--signal-dark);
  font-size: 12px;
}

.compact-cta {
  padding: 90px 0;
  border-top: 1px solid var(--line);
  background: #102452;
}

.compact-cta .shell {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
}

.compact-cta p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(28px, 3.4vw, 49px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.solutions-hero {
  min-height: 690px;
}

.solutions-index {
  padding: 120px 0 150px;
}

.solutions-index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.solution-index-card {
  min-height: 475px;
  padding: clamp(28px, 4vw, 50px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.24);
  transition: background 220ms ease, transform 220ms var(--ease);
}

.solution-index-card:hover,
.solution-index-card:focus-visible {
  z-index: 1;
  background: var(--paper-bright);
  transform: translateY(-6px);
}

.solution-index-card > p {
  margin: 105px 0 14px;
}

.solution-index-card h2 {
  max-width: 510px;
  margin: 0;
  font-size: clamp(29px, 3vw, 43px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 610;
}

.solution-index-card > div {
  max-width: 540px;
  margin: 23px 0;
  color: var(--muted-dark);
  font-size: 16px;
}

.solution-index-card b {
  color: var(--signal-dark);
  font-size: 12px;
}

.not-found {
  min-height: 80vh;
  display: grid;
  place-items: center;
  padding: 150px 0 90px;
  text-align: center;
}

.not-found .wordmark img {
  margin-inline: auto;
  filter: brightness(0) invert(1);
}

.not-found h1 {
  margin: 0;
  color: var(--signal);
  font-size: clamp(80px, 15vw, 180px);
  line-height: 1;
  letter-spacing: -0.08em;
  font-weight: 450;
}

.not-found p {
  max-width: 560px;
  margin: 18px auto 34px;
  color: var(--muted);
  font-size: 18px;
}

@media (max-width: 900px) {
  .home-faq-layout,
  .faq-page-layout,
  .answer-layout,
  .service-section-head {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .page-hero {
    min-height: auto;
    padding: 145px 0 90px;
  }

  .breadcrumbs {
    margin-bottom: 60px;
  }

  .detail-grid,
  .solutions-index-grid {
    grid-template-columns: 1fr;
  }

  .detail-panel {
    min-height: auto;
  }

  .detail-panel h2 {
    margin-top: 75px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .related-grid > a {
    min-height: 290px;
  }

  .related-grid h3 {
    margin-top: 65px;
  }
}

@media (max-width: 620px) {
  .home-faq,
  .faq-section,
  .service-process,
  .solutions-index {
    padding-block: 95px;
  }

  .answer-section {
    padding-block: 95px 60px;
  }

  .service-details,
  .related-section {
    padding-bottom: 95px;
  }

  .page-hero h1 {
    font-size: clamp(45px, 13vw, 64px);
  }

  .page-lead {
    font-size: 17px;
  }

  .service-process-grid {
    grid-template-columns: 1fr;
  }

  .service-process-grid article {
    min-height: 300px;
  }

  .service-process-grid h3 {
    margin-top: 78px;
  }

  .solution-index-card {
    min-height: 420px;
  }

  .compact-cta .shell,
  .related-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .compact-cta .button {
    width: 100%;
  }
}

/* Search-intent clusters */
.footer-main {
  grid-template-columns: 1.15fr 0.9fr 0.8fr 1.15fr;
  gap: clamp(34px, 5vw, 70px);
}

.footer-directory {
  display: grid;
  gap: 8px;
}

.footer-directory > span {
  margin-bottom: 9px;
  color: #7080a4;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  letter-spacing: 0.13em;
}

.footer-directory a {
  color: #c5cee2;
  font-size: 14px;
}

.footer-directory a:hover,
.footer-directory a:focus-visible {
  color: var(--signal);
}

.intent-section {
  padding: 15px 0 145px;
}

.intent-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: start;
}

.intent-layout > div:first-child {
  position: sticky;
  top: 125px;
}

.intent-layout h2 {
  max-width: 560px;
  margin: 25px 0 24px;
  font-size: clamp(38px, 4.3vw, 61px);
  line-height: 1.04;
  letter-spacing: -0.048em;
  font-weight: 590;
}

.intent-layout > div:first-child > p {
  max-width: 570px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.75;
}

.intent-grid {
  border-top: 1px solid var(--line-dark);
}

.intent-grid article {
  display: grid;
  grid-template-columns: 48px minmax(150px, 0.7fr) minmax(0, 1fr);
  gap: 25px;
  align-items: start;
  padding: 29px 0;
  border-bottom: 1px solid var(--line-dark);
}

.intent-grid article > span {
  color: var(--signal-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 760;
}

.intent-grid h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.025em;
  font-weight: 640;
}

.intent-grid p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.7;
}

.cluster-index {
  padding-top: 30px;
}

.solutions-index-grid > .solution-index-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

@media (max-width: 1120px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-wordmark {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .intent-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .intent-layout > div:first-child {
    position: static;
  }
}

@media (max-width: 620px) {
  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-wordmark {
    grid-column: auto;
  }

  .intent-section {
    padding-bottom: 95px;
  }

  .intent-grid article {
    grid-template-columns: 34px 1fr;
    gap: 18px;
  }

  .intent-grid p {
    grid-column: 2;
  }

  .solutions-index-grid > .solution-index-card:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

/* Professional insight and location pages */
.guide-links {
  padding: 5px 0 150px;
}

.guide-link-grid,
.insight-grid,
.location-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.guide-link-grid > a,
.insight-card > a,
.location-service-grid > a {
  min-height: 390px;
  display: block;
  padding: clamp(28px, 3.5vw, 46px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.22);
  transition: background 220ms ease, transform 220ms var(--ease);
}

.guide-link-grid > a:hover,
.guide-link-grid > a:focus-visible,
.insight-card > a:hover,
.insight-card > a:focus-visible,
.location-service-grid > a:hover,
.location-service-grid > a:focus-visible {
  position: relative;
  z-index: 1;
  background: var(--paper-bright);
  transform: translateY(-5px);
}

.guide-link-grid span,
.insight-card > a > p,
.location-service-grid span {
  color: var(--signal-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 9px;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.guide-link-grid h3,
.location-service-grid h3 {
  margin: 95px 0 17px;
  font-size: clamp(25px, 2.5vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 620;
}

.guide-link-grid p,
.location-service-grid p {
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.7;
}

.guide-link-grid b,
.insight-card b,
.location-service-grid b {
  display: inline-block;
  margin-top: 24px;
  color: var(--signal-dark);
  font-size: 12px;
}

.insights-hero {
  min-height: 690px;
}

.insights-index {
  padding: 125px 0 150px;
}

.insight-card {
  display: contents;
}

.insight-card > a {
  min-height: 535px;
}

.insight-card-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
}

.insight-card-top > span {
  color: var(--signal-dark);
  font-weight: 760;
}

.insight-card > a > p {
  margin: 105px 0 15px;
}

.insight-card h2 {
  margin: 0;
  font-size: clamp(31px, 3.1vw, 45px);
  line-height: 1.06;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.insight-card > a > div:not(.insight-card-top) {
  margin-top: 24px;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.7;
}

.article-hero {
  min-height: 780px;
}

.article-hero h1 {
  max-width: 1120px;
  font-size: clamp(52px, 6.5vw, 88px);
}

.article-meta {
  display: flex;
  gap: 18px 34px;
  flex-wrap: wrap;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: #8998b6;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-answer {
  padding-bottom: 120px;
}

.article-content {
  padding: 10px 0 150px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 1fr);
  gap: clamp(55px, 9vw, 135px);
  align-items: start;
}

.article-aside {
  position: sticky;
  top: 120px;
  padding-top: 8px;
}

.article-aside > span {
  color: var(--signal-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.article-aside ol {
  display: grid;
  gap: 0;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.article-aside li {
  border-bottom: 1px solid var(--line-dark);
}

.article-aside a {
  display: block;
  padding: 13px 0;
  color: var(--muted-dark);
  font-size: 13px;
  line-height: 1.45;
}

.article-aside a:hover,
.article-aside a:focus-visible {
  color: var(--signal-dark);
}

.article-body {
  max-width: 850px;
}

.article-section {
  padding: 65px 0;
  border-top: 1px solid var(--line-dark);
  scroll-margin-top: 110px;
}

.article-section:first-child {
  padding-top: 8px;
  border-top: 0;
}

.article-section > span {
  color: var(--signal-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 760;
}

.article-section h2 {
  max-width: 760px;
  margin: 22px 0 30px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.042em;
  font-weight: 600;
}

.article-section p {
  max-width: 780px;
  margin: 0 0 22px;
  color: #4f5d7a;
  font-size: 18px;
  line-height: 1.84;
}

.article-section ul {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line-dark);
}

.article-section li {
  position: relative;
  padding: 16px 0 16px 28px;
  border-bottom: 1px solid var(--line-dark);
  color: #34425f;
  font-size: 16px;
}

.article-section li::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 2px;
  width: 6px;
  height: 6px;
  background: var(--signal-dark);
}

.article-table-wrap {
  margin-top: 34px;
  overflow-x: auto;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.28);
}

.article-table-wrap table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  text-align: left;
}

.article-table-wrap caption {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line-dark);
  color: var(--signal-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.09em;
  text-align: left;
  text-transform: uppercase;
}

.article-table-wrap th,
.article-table-wrap td {
  padding: 18px 20px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  vertical-align: top;
  font-size: 14px;
  line-height: 1.55;
}

.article-table-wrap tr > :last-child {
  border-right: 0;
}

.article-table-wrap tbody tr:last-child > * {
  border-bottom: 0;
}

.article-table-wrap thead th,
.article-table-wrap tbody th {
  color: var(--ink-dark);
  font-weight: 690;
}

.article-table-wrap td {
  color: var(--muted-dark);
}

.article-guides {
  padding-top: 0;
}

.article-related {
  padding-top: 0;
}

/* About Fika */
.references-hero {
  min-height: 0;
  padding: 138px 0 56px;
}

.references-hero .breadcrumbs {
  margin-bottom: 36px;
  font-size: 0.875rem;
}

.references-hero .page-eyebrow {
  font-size: 0.875rem;
}

.references-hero h1 {
  font-size: clamp(2.75rem, 5.5vw, 4.75rem);
  line-height: 1.08;
}

.references-hero .page-lead {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: 1.125rem;
}

.references-section {
  padding: 56px 0 88px;
}

.references-section h2 {
  margin: 0 0 28px;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.35;
  font-weight: 560;
  letter-spacing: -0.025em;
}

.reference-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.reference-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
  background: #fff;
  border: 1px solid var(--line-dark);
}

.reference-logo {
  display: grid;
  place-items: center;
  padding: 8px 12px 0;
  min-width: 0;
}

.reference-logo img {
  display: block;
  width: 100%;
  max-width: 276px;
  height: auto;
  aspect-ratio: 276 / 222;
  object-fit: contain;
}

.reference-card figcaption {
  margin-top: auto;
  padding: 14px 16px 18px;
  border-top: 1px solid var(--line-dark);
  color: var(--brand);
  font-size: 0.9375rem;
  font-weight: 550;
  line-height: 1.45;
  text-align: center;
  overflow-wrap: anywhere;
}

@media (max-width: 900px) {
  .reference-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
  .references-hero { padding: 110px 0 36px; }
  .references-hero .breadcrumbs { margin-bottom: 28px; }
  .references-section { padding: 36px 0 56px; }
  .reference-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .reference-logo { padding: 4px 4px 0; }
  .reference-card figcaption { padding: 12px 8px; font-size: 0.875rem; }
}

.about-hero {
  min-height: 790px;
}

.about-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(55px, 8vw, 120px);
  align-items: end;
}

.about-hero-inner .breadcrumbs {
  grid-column: 1 / -1;
}

.about-hero-copy h1 {
  max-width: 790px;
}

.about-era {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 0 11px clamp(28px, 4vw, 58px);
  border-left: 1px solid var(--line);
}

.about-era span,
.about-era i {
  color: var(--signal);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.12em;
}

.about-era strong {
  margin: 14px 0 8px;
  color: transparent;
  font-size: clamp(100px, 12vw, 172px);
  font-weight: 500;
  line-height: 0.82;
  letter-spacing: -0.085em;
  -webkit-text-stroke: 1px rgba(145, 171, 255, 0.62);
}

.about-origin {
  padding: 145px 0;
}

.about-origin-grid,
.about-section-head,
.about-reach-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(45px, 8vw, 125px);
}

.about-origin-copy {
  max-width: 850px;
}

.about-kicker {
  max-width: 700px;
  margin: 0 0 25px;
  padding-left: 20px;
  border-left: 2px solid var(--brand);
  color: var(--brand);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.65;
}

.about-origin h2,
.about-section-head h2,
.about-reach h2 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(42px, 5vw, 70px);
  font-weight: 580;
  line-height: 1.04;
  letter-spacing: -0.052em;
  text-wrap: balance;
}

.about-origin-copy > p:not(.about-kicker) {
  max-width: 790px;
  margin: 31px 0 0;
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.82;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 105px;
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.about-facts article {
  min-height: 285px;
  padding: 32px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.about-facts strong {
  display: block;
  color: var(--brand);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 540;
  line-height: 1;
  letter-spacing: -0.055em;
}

.about-facts h3 {
  margin: 74px 0 13px;
  font-size: 20px;
  font-weight: 680;
}

.about-facts p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 15px;
  line-height: 1.7;
}

.about-principles {
  padding: 145px 0;
}

.about-section-head {
  align-items: start;
  margin-bottom: 75px;
}

.about-principle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.about-principle-grid article {
  min-height: 390px;
  padding: 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-principle-grid span,
.about-direction article > span {
  color: var(--signal);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.11em;
}

.about-principle-grid h3 {
  margin: 120px 0 19px;
  font-size: clamp(25px, 2.7vw, 37px);
  font-weight: 610;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.about-principle-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.about-direction {
  padding: 145px 0 85px;
}

.about-direction-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.about-direction article {
  min-height: 520px;
  padding: clamp(34px, 4.5vw, 64px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: var(--paper-bright);
}

.about-direction article:last-child {
  background: var(--brand-pale);
}

.about-direction article > span {
  color: var(--brand);
}

.about-direction h2 {
  max-width: 590px;
  margin: 135px 0 30px;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 590;
  line-height: 1.05;
  letter-spacing: -0.047em;
  text-wrap: balance;
}

.about-direction p {
  max-width: 590px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.78;
}

.about-reach {
  padding: 75px 0 145px;
}

.about-reach-grid {
  padding-top: 70px;
  border-top: 1px solid var(--line-dark);
}

.about-reach p {
  max-width: 780px;
  margin: 34px 0 30px;
  color: var(--muted-dark);
  font-size: 18px;
  line-height: 1.8;
}

.about-reach a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand);
  font-size: 14px;
  font-weight: 760;
}

.about-reach a:hover,
.about-reach a:focus-visible {
  color: var(--brand-mid);
}

.location-proof {
  padding: 10px 0 150px;
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.location-grid article {
  min-height: 390px;
  padding: clamp(28px, 3.5vw, 46px);
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.location-grid article > span {
  color: var(--signal-dark);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 760;
}

.location-grid h2 {
  margin: 115px 0 22px;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 610;
}

.location-grid p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.75;
}

.location-address {
  padding: 135px 0;
}

.location-address-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(60px, 10vw, 150px);
  align-items: start;
}

.location-address h2 {
  max-width: 720px;
  margin: 25px 0 0;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.03;
  letter-spacing: -0.05em;
  font-weight: 570;
}

.location-address address {
  display: grid;
  gap: 12px;
  padding: 36px;
  border: 1px solid var(--line);
  color: #c1cbe0;
  font-style: normal;
}

.location-address address > span {
  margin-bottom: 30px;
  color: var(--signal);
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.location-address address p {
  margin: 0 0 16px;
  line-height: 1.75;
}

.location-address address a:hover,
.location-address address a:focus-visible {
  color: var(--signal);
}

.location-solutions {
  padding-top: 140px;
}

.location-service-grid {
  grid-template-columns: repeat(2, 1fr);
}

.location-service-grid > a {
  min-height: 420px;
}

@media (max-width: 900px) {
  .about-hero-inner,
  .about-origin-grid,
  .about-section-head,
  .about-reach-grid,
  .about-direction-grid,
  .about-principle-grid,
  .about-facts,
  .guide-link-grid,
  .insight-grid,
  .location-grid,
  .location-service-grid,
  .article-layout,
  .location-address-grid {
    grid-template-columns: 1fr;
  }

  .about-hero-inner .breadcrumbs {
    grid-column: auto;
  }

  .about-era {
    min-height: 190px;
    padding: 36px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .about-era strong {
    font-size: clamp(90px, 22vw, 150px);
  }

  .about-facts article,
  .about-principle-grid article {
    min-height: 300px;
  }

  .about-facts h3,
  .about-principle-grid h3 {
    margin-top: 72px;
  }

  .about-direction article {
    min-height: 450px;
  }

  .article-aside {
    position: static;
  }

  .article-aside ol {
    grid-template-columns: repeat(2, 1fr);
  }

  .article-aside li:nth-child(odd) {
    border-right: 1px solid var(--line-dark);
    padding-right: 24px;
  }

  .article-aside li:nth-child(even) {
    padding-left: 24px;
  }

  .location-grid article {
    min-height: 300px;
  }

  .location-grid h2 {
    margin-top: 75px;
  }
}

@media (max-width: 620px) {
  .guide-links,
  .insights-index,
  .article-content,
  .location-proof,
  .location-solutions,
  .location-address {
    padding-block: 95px;
  }

  .about-origin,
  .about-principles,
  .about-direction,
  .about-reach {
    padding-block: 95px;
  }

  .about-hero {
    min-height: 760px;
  }

  .about-era {
    min-height: 155px;
  }

  .about-origin-copy > p:not(.about-kicker),
  .about-reach p {
    font-size: 17px;
  }

  .about-facts {
    margin-top: 70px;
  }

  .about-facts article,
  .about-principle-grid article {
    min-height: 270px;
    padding: 28px;
  }

  .about-direction article {
    min-height: 410px;
    padding: 30px;
  }

  .about-direction h2 {
    margin-top: 92px;
  }

  .about-reach-grid {
    padding-top: 0;
    border-top: 0;
  }

  .article-hero h1 {
    font-size: clamp(43px, 12vw, 61px);
  }

  .article-aside ol {
    grid-template-columns: 1fr;
  }

  .article-aside li:nth-child(odd),
  .article-aside li:nth-child(even) {
    border-right: 0;
    padding-inline: 0;
  }

  .article-section {
    padding-block: 48px;
  }

  .article-section p {
    font-size: 17px;
  }

  .guide-link-grid > a,
  .insight-card > a,
  .location-service-grid > a {
    min-height: 380px;
  }

  .location-address address {
    padding: 28px;
  }
}

/* Contact: progressive form with a compact, readable layout. */
.site-nav .nav-contact { display: none; }
.contact-form-jump { display: none; }
#project-form { scroll-margin-top: 100px; }
.contact-section { background: var(--paper); color: var(--text-dark); padding: 130px 0 100px; }
.contact-section .breadcrumbs { margin-bottom: 42px; color: var(--muted-dark); }
.contact-section .page-eyebrow { color: var(--brand); font-size: 12px; letter-spacing: .15em; margin: 0 0 22px; }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.contact-intro h1 { font-size: clamp(36px, 3.6vw, 52px); line-height: 1.12; letter-spacing: -.045em; font-weight: 500; margin: 0 0 24px; color: var(--brand); }
.contact-lead { font-size: 17px; line-height: 1.7; color: var(--muted-dark); margin: 0 0 34px; }
.contact-details { margin: 0; }
.contact-details > div { padding: 16px 0; border-top: 1px solid var(--line-dark); }
.contact-details dt { font-size: 12px; color: var(--muted-dark); margin-bottom: 5px; }
.contact-details dd { margin: 0; font-size: 17px; color: var(--brand); }
.contact-details dd a { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 3px 0; min-height: 32px; }
.contact-details dd a:hover { text-decoration: underline; text-underline-offset: 5px; }
.contact-details address { font-style: normal; font-size: 15px; line-height: 1.7; max-width: 340px; }
.contact-next { margin-top: 26px; padding-left: 20px; border-left: 2px solid var(--brand); }
.contact-next h2 { font-size: 17px; font-weight: 600; margin: 0 0 8px; }
.contact-next p { font-size: 14px; line-height: 1.75; margin: 0; color: var(--muted-dark); }
.contact-panel { background: #fff; padding: clamp(24px, 3vw, 42px); border: 1px solid var(--line-dark); border-radius: 4px; box-shadow: 0 12px 44px rgba(19,38,90,.04); }
.contact-panel h2 { font-size: clamp(24px, 2.1vw, 30px); line-height: 1.25; letter-spacing: -.025em; font-weight: 500; margin: 0 0 12px; }
.contact-form-hint { color: var(--muted-dark); font-size: 13px; margin: 0 0 28px; line-height: 1.6; }
.contact-field-grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 18px; }
.contact-field { min-width: 0; margin-bottom: 20px; }
.contact-field label { display: block; font-size: 14px; font-weight: 500; margin-bottom: 8px; }
.contact-field input, .contact-field textarea { width: 100%; display: block; border: 1px solid #abb4c7; border-radius: 3px; padding: 12px; color: var(--text-dark); background: #fff; font: inherit; font-size: 16px; line-height: 1.5; min-height: 48px; }
.contact-field textarea { resize: vertical; min-height: 142px; }
.contact-field textarea::placeholder { color: #69738a; opacity: 1; }
.contact-field :is(input,textarea):focus-visible { outline: 2px solid var(--brand-mid); outline-offset: 2px; border-color: var(--brand-mid); }
.contact-field [aria-invalid="true"] { border-color: #a42b3e; }
.contact-message-hint { font-size: 13px; color: var(--muted-dark); margin: 0 0 10px; line-height: 1.65; }
.field-error { color: #a02035; font-size: 13px; margin: 6px 0 0; line-height: 1.5; }
.field-error:empty { display: none; }
.contact-notice { margin: 0 0 22px; color: var(--muted-dark); font-size: 13px; }
.contact-notice summary { cursor: pointer; padding: 8px 0; color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.contact-notice p { margin: 8px 0; line-height: 1.7; }
.contact-submit { width: 100%; border: 1px solid var(--brand); background: var(--brand); color: white; cursor: pointer; min-height: 54px; justify-content: space-between; }
.contact-submit:hover { background: var(--brand-strong); color: white; }
.contact-submit:disabled { opacity: .7; cursor: wait; }
.contact-privacy-note { font-size: 12px; line-height: 1.65; color: var(--muted-dark); margin: 14px 0 0; }
.contact-trap { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-error-summary { background: #fff4f3; color: #832337; border-left: 3px solid #a42b3e; padding: 16px; margin: 0 0 24px; font-size: 14px; }
.contact-error-summary strong { font-weight: 600; }
.contact-error-summary ul { margin: 10px 0 0; padding-left: 20px; }
.contact-error-summary a { text-decoration: underline; text-underline-offset: 3px; }
.contact-error-summary:focus, .contact-success:focus { outline: 2px solid var(--brand-mid); outline-offset: 5px; }
.contact-pending { font-size: 14px; color: var(--brand); margin-bottom: 22px; }
.contact-success { padding: 24px 0; }
.contact-success p { color: var(--muted-dark); line-height: 1.75; }
.contact-success-mark { display: grid; place-items: center; background: var(--brand-pale); color: var(--brand); width: 56px; height: 56px; border-radius: 50%; font-size: 28px; margin-bottom: 28px; }
.contact-success .contact-receipt { background: var(--paper); padding: 16px; font-size: 14px; margin: 25px 0; }
.contact-receipt strong { color: var(--brand); white-space: nowrap; }
.contact-success .button { background: var(--brand); color: white; font-size: 14px; }
@media (max-width: 1280px) { .site-nav .nav-contact { display: inline-flex; } }
@media (max-width: 1024px) { .contact-layout { gap: 30px; } .contact-panel { padding: 25px; } .contact-field-grid { grid-template-columns: 1fr; } }
@media (max-width: 760px) {
  .contact-section { padding: 105px 0 60px; }
  .contact-section .breadcrumbs { margin-bottom: 30px; }
  .contact-layout { grid-template-columns: 1fr; gap: 34px; }
  .contact-intro h1 { font-size: clamp(34px, 7.5vw, 45px); }
  .contact-lead { font-size: 16px; margin-bottom: 22px; }
  .contact-details { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
  .contact-details > div:last-child { grid-column: 1 / -1; }
  .contact-details dd { font-size: 14px; }
  .contact-details dd a span { display: none; }
  .contact-form-jump { display: flex; justify-content: space-between; align-items: center; background: var(--brand); color: white; padding: 14px 18px; margin: 0 0 24px; font-size: 15px; }
  .contact-panel { padding: 24px 20px; }
  .contact-field-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

.privacy-section { background: var(--paper); color: var(--text-dark); padding: 135px 0 85px; }
.privacy-section .breadcrumbs { color: var(--muted-dark); margin-bottom: 38px; }
.privacy-document { max-width: 820px; }
.privacy-document h1 { color: var(--brand); font-size: clamp(28px, 4vw, 40px); line-height: 1.25; letter-spacing: -.02em; margin: 0 0 32px; }
.privacy-document p, .privacy-document li { font-size: 16px; line-height: 1.85; }
.privacy-document > b { display: block; font-size: 20px; margin-top: 32px; }
.privacy-document ul { padding-left: 22px; }
.privacy-document li { margin-bottom: 10px; }
.footer-bottom > a { flex-shrink: 0; text-decoration: underline; text-underline-offset: 4px; }
.contact-notice > a { text-decoration: underline; text-underline-offset: 3px; }

/* Measurement choices: unobtrusive, equal choices, keyboard and narrow-screen support. */
.analytics-consent[hidden], .analytics-preferences[hidden] { display: none; }
.analytics-consent { position: fixed; inset: auto 24px 24px auto; z-index: 1000; width: min(490px, calc(100vw - 48px)); max-height: calc(100dvh - 48px); overflow-y: auto; padding: 24px; background: #fff; color: #13265a; border: 1px solid #d6dce7; border-radius: 12px; box-shadow: 0 12px 48px #13265a24; }
.analytics-consent h2 { margin: 0 0 10px; font-size: 19px; line-height: 1.3; }
.analytics-consent p { margin: 0 0 12px; color: #3d4a63; font-size: 13px; line-height: 1.65; }
.analytics-consent summary { cursor: pointer; font-size: 13px; padding: 6px 0 12px; text-decoration: underline; text-underline-offset: 3px; }
.analytics-consent details a { font-size: 13px; text-decoration: underline; }
.analytics-consent-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 18px; }
.analytics-consent-actions button { min-height: 44px; padding: 10px 14px; border: 1px solid #13265a; border-radius: 5px; background: #fff; color: #13265a; font: inherit; font-size: 14px; cursor: pointer; }
.analytics-consent-actions button:hover { background: #eef1f7; }
.analytics-preferences { display: block; margin: 8px auto 0; padding: 8px 16px; background: transparent; border: 0; color: inherit; font: inherit; font-size: 12px; text-decoration: underline; text-underline-offset: 3px; cursor: pointer; min-height: 44px; }
.analytics-consent :focus-visible, .analytics-preferences:focus-visible { outline: 3px solid #4b72c4; outline-offset: 3px; }
@media (max-width: 600px) { .analytics-consent { inset: auto 12px 12px; width: auto; max-height: calc(100dvh - 24px); padding: 18px; } }

/* UX: visible content, predictable focus and readable supporting text. */
[hidden] { display: none !important; }
html { scroll-padding-top: 108px; }
main { min-width: 0; }
:where(a, button, summary, input, textarea, [tabindex]):focus-visible { outline: 3px solid #294b9e; outline-offset: 3px; box-shadow: 0 0 0 6px #fff; }
:where(h1,h2,h3,p,li,dd,a,summary) { overflow-wrap: break-word; }
:where(.shell > *, .header-inner > *, .article-layout > *, .contact-layout > *) { min-width: 0; }
.nav-mega { width: 100%; max-height: calc(100dvh - 86px); overflow-y: auto; }
.nav-mega-grid { margin: 0; padding: 0; list-style: none; }
.nav-mega-grid > li { min-width: 0; }
.nav-direct, .nav-dropdown > summary { display: inline-flex; align-items: center; min-height: 44px; }
.nav-mega-link b, .nav-mega-intro a { font-size: 0.9375rem; line-height: 1.5; }
.nav-mega-intro > span, .nav-mega-link > span { font-size: 0.75rem; letter-spacing: .05em; }
.language-switch a { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; min-height: 44px; font-size: 0.8125rem; }
.hero-shortcuts a { min-height: 44px; font-size: 0.875rem; }
.hero-shortcuts-label, .stage-kicker, .live-state, .stage-footer, .section-marker, .card-label, .company-year span, .company-principles span, .final-cta-inner > p, .article-meta, .article-aside > span, .article-section > span, .article-table-wrap caption, .footer-contact > span, .footer-location > span, .footer-directory > span { font-size: 0.75rem; letter-spacing: .06em; }
.stage-kicker, .stage-footer, .system-node small { color: #b3c0dd; }
.system-node small { font-size: .75rem; line-height: 1.5; letter-spacing: .01em; }
.system-node { max-width: 170px; }
.system-node.core-node { max-width: 150px; }
.system-node.core-node small { font-size: .625rem; }
.stage-topline { gap: 16px; flex-wrap: wrap; }
.connection { animation-duration: 4.8s; animation-iteration-count: 1; }
.live-state i { animation-iteration-count: 2; }
.hero-proof p, .article-aside a, .footer-contact a, .footer-location p, .footer-location a, .footer-directory a { font-size: .9375rem; }
.footer-contact a, .footer-directory a { display: flex; align-items: center; min-height: 44px; }
.footer-bottom { flex-wrap: wrap; color: #aebbd7; font-size: .875rem; }
.footer-contact > span, .footer-location > span, .footer-directory > span { color: #aebbd7; }
.contact-form-hint, .contact-message-hint, .field-error, .contact-notice, .contact-privacy-note, .analytics-consent p, .analytics-consent summary, .analytics-consent details a, .analytics-preferences { font-size: .875rem; }
.contact-notice summary, .analytics-consent summary { min-height: 44px; }
.contact-details dd { overflow-wrap: anywhere; }
.table-scroll-hint { display: none; }
.site-header[aria-modal="true"] { z-index: 1100; }
body.menu-open .analytics-consent { visibility: hidden; }
@media (max-width: 1024px) {
  html { scroll-padding-top: 92px; }
  .site-nav { width: 100%; height: 100vh; height: 100dvh; overscroll-behavior: contain; padding-bottom: max(40px,env(safe-area-inset-bottom)); }
  .nav-mega { max-height: none; overflow: visible; }
  .nav-dropdown > summary { display: flex; }
  html:not(.navigation-ready) .site-header { position: static; }
  html:not(.navigation-ready) .header-inner { display: flex; flex-wrap: wrap; padding-block: 14px; }
  html:not(.navigation-ready) .header-actions { margin-left: auto; order: 1; }
  html:not(.navigation-ready) .site-nav { position: static; order: 2; flex-basis: 100%; height: auto; padding: 20px 0 0; transform: none; gap: 8px; overflow: visible; background: transparent; }
  html:not(.navigation-ready) .nav-direct, html:not(.navigation-ready) .nav-dropdown > summary { font-size: 1rem; letter-spacing: 0; }
  html:not(.navigation-ready) .hero { padding-top: 20px; }
  html:not(.navigation-ready) .inner-page main > section:first-child { padding-top: 36px; }
  .table-scroll-hint { display: block; margin: 24px 0 10px; color: var(--muted-dark); font-size: .875rem; }
  .table-scroll-hint + .article-table-wrap { margin-top: 0; }
}
@media (max-width: 620px) {
  .header-inner { gap: 10px; }
  .language-switch { gap: 2px; }
  .hero h1 { font-size: clamp(2.5rem, 11vw, 3.875rem); line-height: 1.08; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .system-map { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; padding: 22px 16px; min-height: 0; }
  .connections { display: none; }
  .system-map .system-node { position: relative; inset: auto; width: 100%; min-width: 0; max-width: none; padding: 14px 10px; transform: none; }
  .system-map .core-node { grid-column: 1/-1; min-height: 90px; }
  .system-map .core-node :is(span,small) { transform: none; }
  .system-map .system-node small { font-size: .75rem; }
  .system-map .system-node > span { font-size: .9375rem; }
  .system-map .core-node > span { font-size: 1.125rem; }
  .system-map .system-node > i { display: none; }
  .article-table-wrap th, .article-table-wrap td { font-size: .9375rem; }
}
@media (prefers-reduced-motion: reduce) {
  .connection, .live-state i { animation: none; }
  .button:hover, .button:focus-visible { transform: none; }
}
@media (forced-colors: active) {
  :where(a,button,summary,input,textarea,[tabindex]):focus-visible { outline: 3px solid Highlight; box-shadow: none; }
  .system-node, .analytics-consent { border: 1px solid CanvasText; }
}

/* Readable, server-rendered buying guidance on existing solution pages. */
.intent-reading { padding: 18px 0 64px; }
.intent-reading-inner { max-width: 880px; margin-inline: auto; }
.intent-reading-section { padding: 42px 0; border-top: 1px solid #d7dfeb; min-width: 0; }
.intent-reading-section h2 { max-width: 26ch; margin: 0 0 22px; color: #13265a; font-size: clamp(1.55rem, 3vw, 2.15rem); line-height: 1.25; letter-spacing: -.02em; }
.intent-reading-section p, .intent-reading-section li { font-size: 1rem; line-height: 1.8; color: #45516b; overflow-wrap: anywhere; }
.intent-reading-section p + p { margin-top: 16px; }
.intent-reading-section > ul { padding-left: 22px; margin: 20px 0; }
.intent-reading-section li + li { margin-top: 10px; }
.intent-links { list-style: none; padding: 0 !important; margin: 24px 0 0 !important; display: grid; gap: 4px; }
.intent-links li { margin: 0 !important; }
.intent-links a { display: inline-flex; align-items: center; min-height: 44px; color: #13265a; font-size: 1rem; line-height: 1.6; text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.intent-links a:hover { text-decoration-thickness: 2px; }
.intent-reading .article-table-wrap { margin: 24px 0; }
.intent-reading table { width: 100%; border-collapse: collapse; min-width: 540px; }
.intent-reading caption { text-align: left; font-size: 1rem; font-weight: 600; padding-bottom: 14px; color: #13265a; }
.intent-reading th, .intent-reading td { text-align: left; vertical-align: top; padding: 16px; border: 1px solid #d7dfeb; font-size: 1rem; line-height: 1.6; color: #45516b; }
.conversation-hint { max-width: 48rem; margin: 18px 0 0; color: #b7c5df; font-size: .875rem; line-height: 1.65; }
.scope-contact-link { display: inline-flex; align-items: center; gap: 12px; min-height: 44px; margin-top: 22px; color: #fff; font-size: 1rem; line-height: 1.5; text-decoration: underline; text-underline-offset: 5px; }
.service-process-intro { max-width: 50rem; margin: -12px 0 40px; color: #bfcee6; font-size: 1rem; line-height: 1.8; }
.contact-context { display: grid; gap: 6px; margin: -8px 0 24px; padding: 14px 16px; border-left: 3px solid #13265a; background: #eff3fa; color: #13265a; font-size: 1rem; line-height: 1.5; overflow-wrap: anywhere; }
.contact-context span { color: #45516b; font-size: .875rem; }
.compact-cta .button { flex-shrink: 0; max-width: 100%; text-align: center; white-space: normal; }
.intent-reading thead th { background: #edf1f8; color: #13265a; }
@media (max-width: 620px) {
  .intent-reading { padding-bottom: 32px; }
  .intent-reading-section { padding: 28px 0; }
  .intent-reading th, .intent-reading td { padding: 12px; }
}
