:root {
  --blue: #0b66c3;
  --blue-deep: #084d93;
  --blue-soft: #eaf3fc;
  --orange: #ff963b;
  --orange-soft: #fff0e2;
  --ink: #10243e;
  --ink-2: #173555;
  --brand-wordmark: #444446;
  --muted: #58708a;
  --line: #dce5ee;
  --soft: #f4f7fa;
  --paper: #ffffff;
  --night: #0b1d33;
  --success: #1a7956;
  --shadow: 0 22px 60px rgba(22, 50, 80, 0.1);
  --radius: 8px;
  --font: "Aptos", "Segoe UI", Inter, Arial, sans-serif;
  --display: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

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

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 7vw, 6.7rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.1rem, 4.6vw, 4.15rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.narrow {
  max-width: 860px;
}

.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;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--night);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.brand-intro {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  overflow: hidden;
  place-items: center;
  background: var(--paper);
  pointer-events: none;
  animation: brand-intro-surface 2000ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand-intro__lockup {
  display: grid;
  width: min(88vw, 440px);
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.brand-intro__logo {
  width: min(72vw, 340px);
  height: auto;
  animation: brand-intro-logo 2000ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.brand-intro__name {
  margin: 0;
  color: var(--brand-wordmark);
  font-family: var(--display);
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  animation: brand-intro-name 2000ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes brand-intro-surface {
  0%,
  74% {
    opacity: 1;
    visibility: visible;
  }

  100% {
    opacity: 0;
    visibility: hidden;
  }
}

@keyframes brand-intro-logo {
  0% {
    opacity: 0;
    transform: translateY(-18px);
  }

  22%,
  72% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-5px);
  }
}

@keyframes brand-intro-name {
  0%,
  12% {
    opacity: 0;
    transform: translateY(14px);
  }

  34%,
  72% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(5px);
  }
}

.eyebrow,
.card-label {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 96px;
  background: var(--paper);
  border-bottom: 1px solid transparent;
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(20, 47, 77, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 120px;
  height: auto;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.primary-nav > a {
  position: relative;
  color: #34516d;
  font-size: 0.91rem;
  font-weight: 650;
  text-decoration: none;
}

.primary-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav > a:hover::after,
.primary-nav > a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.primary-nav .nav-cta {
  padding: 12px 17px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 4px;
}

.primary-nav .nav-cta:hover {
  background: var(--blue);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 0;
}

.menu-toggle i {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 13px 19px;
  color: var(--paper);
  background: var(--blue);
  border: 1px solid var(--blue);
  border-radius: 4px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover {
  background: var(--blue-deep);
  border-color: var(--blue-deep);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: #aebdca;
}

.button-secondary:hover {
  color: var(--blue-deep);
  background: var(--blue-soft);
  border-color: var(--blue);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.text-link {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  color: var(--blue-deep);
  font-weight: 750;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 112px 0 80px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 102, 195, 0.055) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(11, 102, 195, 0.055) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(130deg, #f8fbfe 15%, #ffffff 68%);
}

.hero::before {
  position: absolute;
  top: -240px;
  right: -180px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(11, 102, 195, 0.18);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  top: -120px;
  right: -60px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(255, 150, 59, 0.34);
  border-radius: 50%;
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
  gap: 84px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 830px;
}

.hero-copy h1 em {
  display: block;
  color: var(--blue);
  font-style: normal;
}

.hero-lead,
.large-copy {
  max-width: 760px;
  color: #3f5e79;
  font-size: clamp(1.18rem, 2.1vw, 1.52rem);
  line-height: 1.48;
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.trust-line span {
  position: relative;
  padding-left: 15px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
}

.trust-line span::before {
  position: absolute;
  top: 0.59em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

.hero-system {
  position: relative;
  padding: 26px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #cbd9e5;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.system-top {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  color: var(--blue-deep);
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.system-flow {
  display: grid;
  gap: 0;
  padding: 18px 0 16px;
}

.system-flow > div {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  padding: 10px 0;
}

.system-step {
  display: grid;
  grid-row: 1 / 3;
  width: 30px;
  height: 30px;
  color: var(--blue-deep);
  background: var(--orange-soft);
  border: 1px solid rgba(255, 150, 59, 0.55);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  line-height: 1;
  place-items: center;
}

.system-flow > div:not(:last-child)::before {
  position: absolute;
  top: 40px;
  bottom: -10px;
  left: 14px;
  width: 1px;
  background: #d6e1ec;
  content: "";
}

.system-flow strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.system-flow small {
  color: var(--muted);
  font-size: 0.81rem;
}

.system-outcomes-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.system-outcomes-label::after {
  height: 1px;
  background: var(--line);
  content: "";
  flex: 1;
}

.system-output {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.system-output span {
  padding: 12px 8px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
}

.signal-strip {
  color: var(--paper);
  background: var(--ink);
}

.signal-strip .shell {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 82px;
  overflow-x: auto;
}

.signal-strip p {
  flex: 0 0 auto;
  margin: 0 14px 0 0;
  color: #9eb4c9;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-strip span {
  flex: 0 0 auto;
  font-size: 0.86rem;
  font-weight: 650;
}

.section {
  padding: 112px 0;
}

.section-soft {
  background: var(--soft);
}

.section-ink {
  color: #dce8f2;
  background: var(--night);
}

.section-ink h2,
.section-ink h3 {
  color: var(--paper);
}

.section-ink .eyebrow {
  color: #79b8ef;
}

.section-head {
  max-width: 810px;
  margin-bottom: 52px;
}

.section-head > p:last-child:not(.eyebrow) {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section-ink .section-head > p:last-child:not(.eyebrow) {
  color: #aac0d3;
}

.section-action {
  margin-top: 38px;
  text-align: center;
}

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

.service-card {
  position: relative;
  display: flex;
  grid-column: span 2;
  flex-direction: column;
  min-height: 350px;
  padding: 30px;
  background: var(--paper);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-card:nth-child(4),
.service-card:nth-child(5) {
  grid-column: span 3;
}

.service-card:hover {
  z-index: 1;
  background: #f9fcff;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-card > span {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card h3 {
  max-width: 320px;
  margin-top: 42px;
}

.service-card p {
  color: var(--muted);
}

.service-card b {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 26px;
  color: var(--blue-deep);
  border-top: 1px solid var(--line);
  font-size: 0.83rem;
}

.service-card-alt {
  background: var(--orange-soft);
}

.split-intro {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}

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

.problem-list article {
  min-height: 230px;
  padding: 0 30px 30px;
  border-left: 1px solid #29425b;
}

.problem-list article:nth-child(n + 3) {
  padding-top: 30px;
  border-top: 1px solid #29425b;
}

.problem-list span,
.steps span,
.fde-use-grid span {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
}

.problem-list h3 {
  margin-top: 38px;
}

.problem-list p {
  color: #9fb5c7;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.case-card {
  display: flex;
  flex-direction: column;
  min-height: 450px;
  padding: 34px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.case-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.case-card h3 {
  max-width: 520px;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
}

.case-index .case-card h2 {
  max-width: 520px;
  font-size: clamp(2rem, 3.75vw, 3rem);
}

.case-card h3 a,
.insight-card h3 a {
  text-decoration: none;
}

.case-card > p:not(.card-label) {
  color: var(--muted);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: auto 0 26px;
  padding-top: 28px;
}

.metric-row > div {
  min-width: 0;
  padding: 15px;
  background: var(--soft);
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  color: var(--blue-deep);
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.1;
}

.metric-row span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.3;
}

.fde-preview {
  background: linear-gradient(130deg, #eef6fe 0%, #fff 52%, #fff2e6 100%);
}

.fde-grid {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 100px;
  align-items: center;
}

.fde-grid > div:first-child > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}

.use-case-stack {
  border-top: 1px solid #bacbd9;
}

.use-case-stack span {
  position: relative;
  display: block;
  padding: 20px 18px 20px 48px;
  border-bottom: 1px solid #bacbd9;
  font-weight: 700;
}

.use-case-stack span::before {
  position: absolute;
  top: 27px;
  left: 18px;
  width: 9px;
  height: 9px;
  background: var(--orange);
  border-radius: 50%;
  content: "";
}

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

.steps.three {
  grid-template-columns: repeat(3, 1fr);
  border-color: #29425b;
}

.steps article {
  min-height: 240px;
  padding: 27px;
  border-right: 1px solid var(--line);
}

.steps article:last-child {
  border-right: 0;
}

.section-ink .steps article {
  border-color: #29425b;
}

.steps h3 {
  margin-top: 50px;
}

.steps p {
  color: var(--muted);
}

.section-ink .steps p {
  color: #9fb5c7;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.insight-grid .insight-card:nth-child(4) {
  grid-column: 2;
}

.insights-index .insight-card h2 {
  font-size: clamp(2rem, 3.75vw, 3rem);
}

.insights-index .insight-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.insights-index .insight-card {
  grid-column: span 2;
}

.insights-index .insight-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.insight-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 28px;
  background: var(--paper);
  border-top: 4px solid var(--blue);
  box-shadow: 0 12px 36px rgba(20, 47, 77, 0.07);
}

.insight-card p:not(.card-label) {
  color: var(--muted);
}

.insight-card .text-link {
  margin-top: auto;
}

.cta-band {
  padding: 92px 0;
  color: var(--paper);
  background: var(--blue);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.cta-inner > div {
  max-width: 760px;
}

.cta-inner h2 {
  color: var(--paper);
}

.cta-inner .eyebrow {
  color: #c9e4fc;
}

.cta-inner p:last-child {
  color: #d9ebfb;
}

.cta-inner .button {
  flex: 0 0 auto;
  color: var(--ink);
  background: var(--paper);
  border-color: var(--paper);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.75rem;
}

.breadcrumbs a {
  color: var(--blue-deep);
}

.page-hero,
.article-hero,
.case-hero {
  position: relative;
  padding: 104px 0 106px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(11, 102, 195, 0.045) 1px, transparent 1px) 0 0 / 48px 48px,
    linear-gradient(rgba(11, 102, 195, 0.045) 1px, transparent 1px) 0 0 / 48px 48px,
    #f9fbfd;
}

.page-hero::after,
.article-hero::after,
.case-hero::after {
  position: absolute;
  right: -90px;
  bottom: -170px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(11, 102, 195, 0.16);
  border-radius: 50%;
  content: "";
}

.page-hero h1,
.article-hero h1,
.case-hero h1 {
  font-size: clamp(3rem, 6.5vw, 6rem);
}

.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  gap: 90px;
  align-items: center;
}

.hero-note {
  padding: 30px;
  background: var(--paper);
  border-left: 4px solid var(--orange);
  box-shadow: var(--shadow);
}

.hero-note > span {
  display: block;
  margin-bottom: 22px;
  color: var(--blue-deep);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-note p {
  margin: 0;
  padding: 16px 0;
  color: #3f5d77;
  border-top: 1px solid var(--line);
  font-weight: 650;
}

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

.scope-card {
  grid-column: span 2;
  min-height: 250px;
  padding: 30px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.scope-card:nth-child(4),
.scope-card:nth-child(5) {
  grid-column: span 3;
}

.scope-card p {
  color: var(--muted);
}

.outcome-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 22px 0 22px 46px;
  border-bottom: 1px solid #29425b;
  font-size: 1.1rem;
}

.check-list li::before {
  position: absolute;
  top: 25px;
  left: 5px;
  width: 18px;
  height: 9px;
  border-bottom: 2px solid var(--orange);
  border-left: 2px solid var(--orange);
  content: "";
  transform: rotate(-45deg);
}

.feature-case {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.feature-case > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-case .metric-row {
  margin: 0;
}

.feature-case .metric-row > div {
  min-height: 140px;
  padding: 25px 15px;
}

.feature-case .metric-row strong {
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  overflow-wrap: anywhere;
}

.related-bar {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.related-bar .shell {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px 36px;
  min-height: 86px;
}

.related-bar p {
  margin: 0 auto 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.related-bar a {
  color: var(--blue-deep);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.delivery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.delivery-card {
  display: flex;
  flex-direction: column;
  min-height: 530px;
  padding: 32px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.delivery-card.featured {
  background: #eef6fe;
  border-color: #9bc5eb;
}

.delivery-card > p:not(.card-label),
.delivery-card li {
  color: var(--muted);
}

.delivery-card ul {
  padding: 22px 0 0 20px;
  border-top: 1px solid var(--line);
}

.delivery-card .text-link {
  margin-top: auto;
}

.comparison-table {
  max-width: 100%;
  overflow-x: auto;
}

.comparison-table table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
  padding: 16px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--paper);
  background: var(--ink);
}

.comparison-table td:first-child {
  color: var(--blue-deep);
  font-weight: 800;
}

.fde-use-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fde-use-grid article {
  grid-column: span 2;
  min-height: 270px;
  padding: 29px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fde-use-grid article:nth-child(4),
.fde-use-grid article:nth-child(5) {
  grid-column: span 3;
}

.fde-use-grid h3 {
  margin-top: 42px;
}

.fde-use-grid p {
  color: var(--muted);
}

.fde-phases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #29425b;
}

.fde-phases article {
  min-height: 280px;
  padding: 26px;
  border-right: 1px solid #29425b;
}

.fde-phases article:last-child {
  border-right: 0;
}

.fde-phases p {
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fde-phases strong,
.fde-phases span {
  display: block;
}

.fde-phases strong {
  margin: 52px 0 17px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.2;
}

.fde-phases span {
  color: #9fb5c7;
  font-size: 0.92rem;
}

.stack-model {
  counter-reset: stack;
}

.stack-model > div {
  position: relative;
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding: 22px 22px 22px 72px;
  background: var(--paper);
  border-top: 1px solid var(--line);
  counter-increment: stack;
}

.stack-model > div::before {
  position: absolute;
  left: 24px;
  color: var(--orange);
  content: "0" counter(stack);
  font-size: 0.76rem;
  font-weight: 800;
}

.stack-model b {
  min-width: 190px;
}

.stack-model span {
  color: var(--muted);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  position: relative;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  font-weight: 750;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary span::before,
.accordion summary span::after {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 16px;
  height: 2px;
  background: var(--blue);
  content: "";
}

.accordion summary span::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.accordion details[open] summary span::after {
  transform: rotate(0);
}

.accordion details p {
  padding: 0 44px 24px 0;
  color: var(--muted);
}

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

.industry-grid article {
  min-height: 320px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.industry-grid article > p:first-child {
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
}

.industry-grid article > span {
  display: block;
  margin: 34px 0 18px;
  color: var(--blue-deep);
  font-size: 0.77rem;
  font-weight: 800;
  line-height: 1.5;
  text-transform: uppercase;
}

.industry-grid article > p:last-child {
  color: var(--muted);
}

.quote-panel {
  display: flex;
  min-height: 260px;
  padding: 38px;
  color: var(--paper);
  background: var(--ink);
  align-items: flex-end;
}

.quote-panel blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.5rem, 3vw, 2.3rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  line-height: 1.25;
}

.case-hero .shell {
  position: relative;
  z-index: 1;
}

.case-hero h1 {
  max-width: 980px;
}

.status-pill {
  display: inline-block;
  margin: 16px 0 36px;
  padding: 8px 12px;
  color: var(--blue-deep);
  background: var(--blue-soft);
  border: 1px solid #b8d6ef;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 750;
}

.case-hero .metric-row {
  max-width: 690px;
  margin: 0;
}

.case-hero .article-meta {
  margin-top: 24px;
}

.case-evidence-note {
  max-width: 690px;
  margin: 28px 0 0;
  padding-top: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  line-height: 1.65;
}

.case-evidence-note strong {
  color: var(--ink);
}

.case-story {
  display: grid;
  grid-template-columns: 300px minmax(0, 720px);
  gap: 100px;
  justify-content: center;
}

.case-story aside,
.article-layout aside {
  align-self: start;
  padding: 24px;
  background: var(--soft);
  border-top: 4px solid var(--orange);
}

.case-story aside > p,
.article-layout aside > p {
  color: var(--blue-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-story aside div {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.case-story aside b,
.case-story aside span {
  display: block;
}

.case-story aside b {
  font-size: 0.76rem;
}

.case-story aside span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.9rem;
}

.case-story aside > .case-freshness {
  margin: 18px 0 0;
  padding-top: 16px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.6;
  text-transform: none;
}

.case-freshness span,
.case-freshness time {
  display: block;
}

.prose {
  color: #3f5871;
  font-size: 1.05rem;
}

.prose h2 {
  margin-top: 54px;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.5vw, 2.85rem);
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 30px;
}

.prose a {
  color: var(--blue-deep);
}

.prose blockquote {
  margin: 44px 0;
  padding: 26px 30px;
  color: var(--ink);
  background: var(--orange-soft);
  border-left: 4px solid var(--orange);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 650;
  line-height: 1.4;
}

.prose li {
  margin-bottom: 9px;
}

.case-caution {
  margin-top: 42px;
  padding: 22px;
  background: var(--blue-soft);
  border: 1px solid #b8d6ef;
}

.case-caution p {
  margin-bottom: 0;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  margin-top: 40px;
  color: var(--muted);
  font-size: 0.84rem;
}

.article-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 720px);
  gap: 90px;
  justify-content: center;
}

.article-prose {
  min-width: 0;
}

.article-layout aside {
  position: sticky;
  top: 112px;
}

.article-layout aside span {
  display: block;
  padding: 9px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.83rem;
}

.article-layout aside a {
  display: block;
  margin-top: 22px;
  color: var(--blue-deep);
  font-size: 0.82rem;
  font-weight: 750;
  text-decoration: none;
}

.definition-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 34px 0;
}

.definition-grid div {
  padding: 22px;
  background: var(--soft);
  border-top: 3px solid var(--blue);
}

.definition-grid h3 {
  margin-top: 0;
}

.definition-grid p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.tech-groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.tech-groups > div {
  padding: 30px;
  background: var(--soft);
  border-top: 4px solid var(--blue);
}

.tech-groups > div:last-child {
  border-color: var(--orange);
}

.tech-groups p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.contact-options article {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.contact-options article:first-child {
  padding-top: 0;
}

.contact-options article h2 {
  margin-bottom: 8px;
  font-size: 1.5rem;
}

.contact-options article p:last-child {
  margin-bottom: 0;
  color: var(--muted);
}

.direct-contact {
  margin-top: 35px;
  padding: 25px;
  color: var(--paper);
  background: var(--ink);
}

.direct-contact p {
  display: grid;
  grid-template-columns: 70px 1fr;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid #304861;
}

.direct-contact p:last-child {
  border: 0;
}

.direct-contact span {
  color: #9eb4c9;
  font-size: 0.74rem;
  font-weight: 750;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 38px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.82rem;
  font-weight: 750;
}

.field label span {
  color: var(--muted);
  font-weight: 450;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  background: var(--paper);
  border: 1px solid #b8c7d4;
  border-radius: 3px;
}

.field textarea {
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(11, 102, 195, 0.14);
}

.field [aria-invalid="true"] {
  border-color: #b43838;
}

.consent label {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-weight: 450;
}

.consent input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-action {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.form-action .button {
  cursor: pointer;
}

.form-action > p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.form-status {
  flex: 1 0 100%;
  min-height: 1.5em;
  color: var(--success);
  font-size: 0.84rem;
  font-weight: 700;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.site-footer {
  color: #c2d1de;
  background: #081726;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 55px;
  padding-top: 78px;
  padding-bottom: 70px;
}

.footer-brand img {
  width: 144px;
  height: auto;
  margin-bottom: 24px;
  padding: 6px;
  background: var(--paper);
  border-radius: 4px;
}

.footer-brand p {
  max-width: 250px;
  color: var(--paper);
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 650;
  line-height: 1.35;
}

.footer-grid h2 {
  margin-bottom: 20px;
  color: #7591aa;
  font-family: var(--font);
  font-size: 0.73rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid a,
.footer-grid > div > p {
  display: block;
  margin-bottom: 11px;
  color: #c2d1de;
  font-size: 0.85rem;
  text-decoration: none;
}

.footer-grid a:hover {
  color: var(--paper);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 25px;
  padding-bottom: 28px;
  border-top: 1px solid #25394c;
}

.footer-bottom p {
  margin: 0;
  color: #8098ad;
  font-size: 0.73rem;
  line-height: 1.55;
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.footer-bottom a {
  color: #9bb0c2;
  font-size: 0.75rem;
  text-decoration: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1060px) {
  .primary-nav {
    gap: 18px;
  }

  .primary-nav > a {
    font-size: 0.84rem;
  }

  .hero-grid,
  .page-hero-grid {
    gap: 48px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  }

  .signal-strip .shell {
    flex-wrap: wrap;
    align-content: center;
    gap: 10px 18px;
    min-height: 0;
    padding: 18px 0;
    overflow-x: visible;
  }

  .signal-strip p {
    flex-basis: 100%;
    margin-right: 0;
  }

  .service-card {
    grid-column: span 3;
  }

  .service-card:nth-child(5) {
    grid-column: span 6;
  }

  .scope-card {
    grid-column: span 3;
  }

  .scope-card:nth-child(5) {
    grid-column: span 6;
  }

  .fde-use-grid article {
    grid-column: span 3;
  }

  .fde-use-grid article:nth-child(5) {
    grid-column: span 6;
  }
}

@media (max-width: 880px) {
  .site-header {
    height: 72px;
  }

  .brand img {
    width: 94px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle[aria-expanded="true"] i:nth-of-type(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] i:nth-of-type(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] i:nth-of-type(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    top: 72px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    padding: 24px;
    background: var(--paper);
    overflow-y: auto;
    align-items: stretch;
  }

  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
  }

  .primary-nav > a {
    padding: 16px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .primary-nav > a::after {
    display: none;
  }

  .primary-nav .nav-cta {
    margin-top: 10px;
    padding: 15px;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-top: 82px;
  }

  .hero-grid,
  .page-hero-grid,
  .split-intro,
  .fde-grid,
  .outcome-grid,
  .feature-case,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-system {
    max-width: 600px;
  }

  .split-intro,
  .fde-grid,
  .outcome-grid,
  .feature-case,
  .faq-grid,
  .contact-grid {
    gap: 50px;
  }

  .delivery-grid,
  .insight-grid {
    grid-template-columns: 1fr;
  }

  .insight-grid .insight-card:nth-child(4) {
    grid-column: auto;
  }

  .insights-index .insight-grid {
    grid-template-columns: 1fr;
  }

  .insights-index .insight-card,
  .insights-index .insight-card:nth-child(4) {
    grid-column: auto;
  }

  .delivery-card {
    min-height: 430px;
  }

  .steps,
  .steps.three,
  .fde-phases {
    grid-template-columns: 1fr 1fr;
  }

  .steps article:nth-child(2),
  .fde-phases article:nth-child(2) {
    border-right: 0;
  }

  .steps article,
  .fde-phases article {
    border-bottom: 1px solid var(--line);
  }

  .section-ink .steps article,
  .fde-phases article {
    border-color: #29425b;
  }

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

  .article-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .case-story,
  .article-layout {
    gap: 50px;
  }

  .case-story aside,
  .article-layout aside {
    position: static;
  }

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

@media (max-width: 640px) {
  .shell {
    width: min(100% - 32px, 1180px);
  }

  h1,
  .page-hero h1,
  .article-hero h1,
  .case-hero h1 {
    font-size: clamp(2.1rem, 12vw, 4.3rem);
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .section {
    padding: 82px 0;
  }

  .page-hero,
  .article-hero,
  .case-hero {
    padding: 76px 0 82px;
  }

  .button-row,
  .button-row .button {
    width: 100%;
  }

  .signal-strip .shell {
    flex-wrap: wrap;
    align-content: center;
    gap: 10px 18px;
    min-height: 0;
    padding: 18px 0;
    overflow-x: visible;
  }

  .signal-strip p {
    flex-basis: 100%;
    margin-right: 0;
  }

  .service-grid,
  .scope-grid,
  .fde-use-grid {
    display: block;
    border: 0;
  }

  .service-card,
  .scope-card,
  .fde-use-grid article {
    min-height: 0;
    margin-bottom: 14px;
    border: 1px solid var(--line);
  }

  .problem-list,
  .case-grid,
  .industry-grid,
  .tech-groups,
  .definition-grid {
    grid-template-columns: 1fr;
  }

  .problem-list article {
    min-height: 0;
    padding: 26px 20px;
    border-top: 1px solid #29425b;
    border-left: 0;
  }

  .problem-list h3 {
    margin-top: 24px;
  }

  .case-card {
    min-height: 0;
    padding: 25px;
  }

  .metric-row {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-top: 20px;
  }

  .steps,
  .steps.three,
  .fde-phases {
    grid-template-columns: 1fr;
  }

  .steps article,
  .fde-phases article {
    min-height: 0;
    border-right: 0;
  }

  .steps h3,
  .fde-phases strong {
    margin-top: 30px;
  }

  .stack-model > div {
    display: block;
  }

  .stack-model span {
    display: block;
    margin-top: 5px;
  }

  .industry-grid {
    border: 0;
  }

  .industry-grid article {
    min-height: 0;
    margin-bottom: 12px;
    border: 1px solid var(--line);
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .field.full {
    grid-column: auto;
  }

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

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .brand-intro {
    display: none;
  }
}

@media print {
  .brand-intro,
  .site-header,
  .site-footer,
  .cta-band,
  .related-bar,
  .button,
  .breadcrumbs {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .section,
  .page-hero,
  .article-hero,
  .case-hero {
    padding: 32px 0;
  }
}
