:root {
  --navy: #0b1220;
  --navy-deep: #070c14;
  --navy-raised: #111b2b;
  --white: #f7f9fc;
  --surface: #f5f7fa;
  --ink: #111827;
  --muted: #5f6f85;
  --muted-dark: #94a3b8;
  --line: #dbe2ea;
  --line-dark: #263348;
  --blue: #0066ff;
  --blue-secondary: #00a3ff;
  --blue-deep: #075bdc;
  --container: 1200px;
  --header-height: 64px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

h1, h2, h3, p, ul, ol, dl, dd { margin-top: 0; }
h1, h2, h3 { text-wrap: balance; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }

::selection { background: var(--blue); color: #fff; }

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

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  background: var(--navy);
  color: var(--white);
  transition: border-color .2s ease, background-color .2s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  border-color: var(--line-dark);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .14);
}

.nav-shell {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 17px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: .15em;
}

.brand img { width: 30px; height: 30px; transition: width .25s var(--ease), height .25s var(--ease); }
.site-header.is-scrolled .brand img { width: 28px; height: 28px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.8vw, 35px);
}

.site-nav > a:not(.nav-cta) {
  position: relative;
  color: #c5cfdd;
  font-size: 14px;
  font-weight: 550;
  transition: color .2s ease;
}

.site-nav > a:not(.nav-cta):hover { color: #fff; }

.site-nav > a[aria-current="true"]:not(.nav-cta) {
  color: #fff;
}

.site-nav > a[aria-current="true"]:not(.nav-cta)::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--blue-secondary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

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

.nav-cta {
  padding: 9px 14px;
  border: 1px solid #3b4a61;
  color: var(--white);
  font-size: 14px;
  font-weight: 650;
  transition: border-color .2s ease, background .2s ease, transform .2s var(--ease), padding .25s var(--ease);
}

.site-header.is-scrolled .nav-cta { padding-block: 8px; }
.nav-cta:hover { border-color: var(--blue); background: var(--blue); transform: translateY(-1px); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: min(790px, calc(100svh - var(--header-height)));
  display: flex;
  flex-direction: column;
  overflow: hidden;
  overflow: clip;
  background: var(--navy);
  color: var(--white);
}

.hero-layout {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  padding-block: clamp(64px, 7vw, 90px);
}

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

.tagline,
.eyebrow {
  margin-bottom: 23px;
  color: var(--blue-secondary);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
  transform: scaleX(.45);
  transform-origin: left;
  transition: transform .6s var(--ease);
}

html.js [data-reveal].is-visible .eyebrow::before,
html.js [data-reveal-group].is-visible .eyebrow::before {
  transform: scaleX(1);
}

.hero h1 {
  max-width: 800px;
  margin-bottom: 26px;
  font-size: clamp(46px, 5.2vw, 72px);
  font-weight: 600;
  line-height: 1.01;
  letter-spacing: -.052em;
}

.hero-intro {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--muted-dark);
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 14px 18px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 680;
  line-height: 1.2;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .25s var(--ease);
}

.button-primary { min-width: 216px; background: var(--blue); color: #fff; }
.button-primary:hover { background: #075bdc; transform: translateY(-2px); }
.button span { display: inline-block; transition: transform .25s var(--ease); }
.button:hover span { transform: translate(3px, -3px); }

.text-link {
  position: relative;
  padding-block: 8px;
  font-size: 14px;
  font-weight: 650;
}

.text-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(.35);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.text-link-light { color: #d5deea; }
.text-link:hover { color: #fff; }
.text-link:hover::after, .text-link:focus-visible::after { transform: scaleX(1); }

.hero-mark {
  --parallax-x: 0px;
  --parallax-y: 0px;
  width: min(100%, 380px);
  justify-self: end;
  opacity: .78;
  transform: translate3d(var(--parallax-x), var(--parallax-y), 0);
  transition: transform .55s var(--ease);
}

.hero .tagline { animation: hero-content-in .56s var(--ease) both; }
.hero h1 { animation: hero-content-in .6s .06s var(--ease) both; }
.hero-intro { animation: hero-content-in .6s .12s var(--ease) both; }
.hero-actions { animation: hero-content-in .6s .18s var(--ease) both; }

.hero-mark img {
  width: 100%;
  height: auto;
  animation:
    hero-mark-in .85s .08s var(--ease) both,
    hero-mark-drift 6.8s 1s ease-in-out infinite;
}

@keyframes hero-content-in {
  from { opacity: .62; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes hero-mark-in {
  from { opacity: 0; transform: translate3d(0, 18px, 0) scale(.97); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes hero-mark-drift {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  25% { transform: translate3d(3px, -8px, 0) scale(1.008); }
  50% { transform: translate3d(5px, -15px, 0) scale(1.015); }
  75% { transform: translate3d(-2px, -7px, 0) scale(1.006); }
}

.hero-footer {
  min-height: 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid var(--line-dark);
}

.hero-footer p {
  margin: 0;
  color: #718096;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.hero-footer p:not(:first-child) { text-align: center; }
.hero-footer p:last-child { text-align: right; }

.hero-footer p { animation: hero-content-in .52s var(--ease) both; }
.hero-footer p:nth-child(1) { animation-delay: .22s; }
.hero-footer p:nth-child(2) { animation-delay: .28s; }
.hero-footer p:nth-child(3) { animation-delay: .34s; }
.hero-footer p:nth-child(4) { animation-delay: .40s; }

.section { padding-block: clamp(76px, 7.2vw, 104px); }

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, .55fr);
  gap: clamp(60px, 11vw, 160px);
  align-items: end;
  margin-bottom: 50px;
}

.section-heading h2,
.section-intro h2,
.process h2,
.future h2,
.contact h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(34px, 3.7vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.section-heading > p,
.section-intro > p:not(.eyebrow) {
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.capabilities { background: var(--surface); }

.capability-list { border-top: 1px solid #bfc9d5; }

.capability-list article {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) minmax(220px, 310px);
  gap: 28px;
  align-items: start;
  padding-block: 26px;
  border-bottom: 0;
}

.capability-list article::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  transform: scaleX(1);
  transform-origin: left;
}

.item-number,
.outcome-list article > span,
.principle-list > li > span,
.process-list > li > span {
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .08em;
}

.item-number { transition: color .25s ease; }

.capability-list h3 {
  margin-bottom: 8px;
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 620;
  letter-spacing: -.025em;
  transition: color .25s ease, transform .25s var(--ease);
}

.capability-list article:hover h3 { color: var(--blue); transform: translateX(3px); }
.capability-list article:hover .item-number { color: var(--blue-secondary); }
.capability-list article div p { max-width: 610px; margin-bottom: 0; color: var(--muted); font-size: 16px; line-height: 1.7; }
.item-scope { margin: 3px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }

.outcomes { background: var(--navy-deep); color: var(--white); }

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(440px, 1fr);
  gap: clamp(60px, 9vw, 130px);
}

.section-intro { align-self: start; }
.section-intro > p:not(.eyebrow) { max-width: 540px; margin-top: 22px; color: var(--muted-dark); }
.eyebrow-light { color: #6ea9ff; }

.outcome-list { border-top: 1px solid var(--line-dark); }

.outcome-list article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 20px;
  padding-block: 25px;
  border-bottom: 1px solid var(--line-dark);
}

.outcome-list article > span { padding-top: 4px; color: #6ea9ff; }
.outcome-list h3 { margin-bottom: 8px; font-size: 21px; font-weight: 570; letter-spacing: -.02em; }
.outcome-list p { max-width: 560px; margin-bottom: 0; color: var(--muted-dark); font-size: 16px; line-height: 1.7; }

.principles { background: var(--white); }

.principle-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  border-top: 1px solid #bfc9d5;
  list-style: none;
}

.principle-list li {
  min-height: 190px;
  padding: 24px 22px 18px 0;
  border-right: 1px solid var(--line);
}

.principle-list li:not(:first-child) { padding-left: 22px; }
.principle-list li:last-child { border-right: 0; }
.principle-list h3 { margin: 42px 0 9px; font-size: 18px; font-weight: 630; }
.principle-list p { margin-bottom: 0; color: var(--muted); font-size: 15px; line-height: 1.65; }

.process { background: var(--surface); }

.process-heading {
  display: grid;
  grid-template-columns: .55fr 1fr;
  gap: 50px;
  align-items: start;
  margin-bottom: 50px;
}

.process-heading .eyebrow { margin-top: 8px; }

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

.process-list li {
  min-height: 190px;
  padding: 24px clamp(25px, 4vw, 52px) 0 0;
  border-top: 1px solid #bfc9d5;
}

.process-list li:not(:last-child) { margin-right: 22px; }
.process-list h3 { margin: 40px 0 10px; font-size: 20px; font-weight: 630; }
.process-list p { margin-bottom: 0; color: var(--muted); font-size: 15px; line-height: 1.7; }

.future {
  padding-block: clamp(72px, 6.4vw, 94px);
  background: var(--navy-raised);
  color: var(--white);
}

.future-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, .65fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.future-copy > p { margin-bottom: 32px; color: var(--muted-dark); font-size: 17px; line-height: 1.75; }
.future-copy dl { margin: 0; border-top: 1px solid var(--line-dark); }
.future-copy dl div { display: grid; grid-template-columns: 100px 1fr; gap: 25px; padding-block: 15px; border-bottom: 1px solid var(--line-dark); }
.future-copy dt { color: #718096; font-size: 12px; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.future-copy dd { color: #dbe4f0; font-size: 16px; }

.contact {
  padding-block: clamp(64px, 5.8vw, 82px);
  background: var(--blue-deep);
  color: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .55fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: end;
}

.contact h2 { max-width: 800px; }
.eyebrow-blue { color: #fff; }
.contact-action p { margin-bottom: 24px; color: #fff; font-size: 17px; line-height: 1.7; }
.button-light { width: 100%; max-width: 310px; background: #fff; color: var(--ink); }
.button-light:hover { background: var(--navy); color: #fff; transform: translateY(-2px); }

.site-footer {
  padding: 55px 0 24px;
  background: var(--navy-deep);
  color: var(--white);
}

.footer-main {
  min-height: 140px;
  display: flex;
  justify-content: space-between;
  gap: 70px;
}

.brand-footer img { width: 36px; height: 36px; }
.footer-main > div > p { margin-top: 21px; color: var(--muted-dark); font-size: 14px; }
.footer-nav { display: flex; align-items: flex-start; gap: clamp(30px, 5vw, 65px); }
.footer-nav a { color: #b6c2d2; font-size: 14px; transition: color .2s ease; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 21px; border-top: 1px solid var(--line-dark); color: #718096; font-size: 12px; letter-spacing: .045em; text-transform: uppercase; }
.footer-bottom p { margin-bottom: 0; }
.footer-bottom a:hover { color: var(--white); }

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s var(--ease);
}

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

html.js [data-reveal-group] [data-reveal-item] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity .58s ease var(--reveal-delay, 0ms),
    transform .58s var(--ease) var(--reveal-delay, 0ms);
}

html.js [data-reveal-group].is-visible [data-reveal-item] {
  opacity: 1;
  transform: translateY(0);
}

.capability-list article::after {
  transition: transform .7s var(--ease) var(--reveal-delay, 0ms);
}

html.js .capability-list[data-reveal-group] article::after { transform: scaleX(0); }
html.js .capability-list[data-reveal-group].is-visible article::after { transform: scaleX(1); }


@media (hover: hover) and (pointer: fine) {
  .capability-list article {
    transition: background-color .25s ease;
  }

  .capability-list article:hover {
    background: rgba(0, 102, 255, .025);
  }

  .outcome-list article {
    transition: background-color .25s ease, transform .25s var(--ease);
  }

  .outcome-list h3 {
    transition: color .25s ease;
  }

  .outcome-list article:hover {
    background: rgba(255, 255, 255, .025);
    transform: translateX(3px);
  }

  .outcome-list article:hover h3 {
    color: #b9d6ff;
  }

  .principle-list li {
    transition: transform .25s var(--ease), background-color .25s ease;
  }

  .principle-list h3,
  .process-list h3 {
    transition: color .25s ease;
  }

  .principle-list li:hover {
    background: rgba(0, 102, 255, .025);
    transform: translateY(-3px);
  }

  .principle-list li:hover h3,
  .process-list li:hover h3 {
    color: var(--blue);
  }

  .process-list li {
    transition: transform .25s var(--ease), border-color .25s ease;
  }

  .process-list li:hover {
    border-top-color: var(--blue);
    transform: translateY(-3px);
  }
}

.error-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: var(--navy);
  color: var(--white);
}

.error-content { width: min(100%, 740px); text-align: center; }
.error-content .brand { margin-bottom: 90px; }
.error-code { margin-bottom: 18px; color: #6ea9ff; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.error-content h1 { margin-bottom: 22px; font-size: clamp(50px, 9vw, 88px); font-weight: 600; line-height: 1; letter-spacing: -.055em; }
.error-content > p:not(.error-code) { max-width: 520px; margin: 0 auto 34px; color: var(--muted-dark); }
.error-button { min-width: 172px; background: var(--blue); color: #fff; }
.error-button:hover { background: #fff; color: var(--ink); }

@media (max-width: 1000px) {
  .hero-layout { grid-template-columns: minmax(0, 1fr) minmax(260px, .45fr); gap: 40px; }
  .hero-mark { opacity: .66; }
  .capability-list article { grid-template-columns: 48px 1fr; }
  .item-scope { grid-column: 2; margin-top: -10px; }
  .principle-list { grid-template-columns: repeat(3, 1fr); }
  .principle-list li:nth-child(3) { border-right: 0; }
  .principle-list li:nth-child(n+4) { border-top: 1px solid var(--line); }
  .future-layout { grid-template-columns: 1fr 1fr; gap: 55px; }
}

@media (max-width: 780px) {
  :root { --header-height: 62px; }
  .container { width: min(calc(100% - 36px), var(--container)); }
  .menu-toggle { position: relative; z-index: 2; width: 38px; height: 38px; display: block; border: 1px solid #41506a; background: transparent; cursor: pointer; }
  .menu-toggle span { position: absolute; left: 9px; width: 18px; height: 1px; background: #fff; transition: transform .2s ease, top .2s ease; }
  .menu-toggle span:first-child { top: 14px; }
  .menu-toggle span:last-child { top: 21px; }
  .menu-toggle[aria-expanded="true"] span:first-child { top: 18px; transform: rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { top: 18px; transform: rotate(-45deg); }
  .site-nav { position: fixed; inset: var(--header-height) 0 auto; display: flex; align-items: stretch; flex-direction: column; gap: 0; padding: 20px 18px 26px; border-bottom: 1px solid var(--line-dark); background: var(--navy); visibility: hidden; opacity: 0; transform: translateY(-10px); pointer-events: none; transition: opacity .2s ease, transform .2s ease, visibility .2s; }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: translateY(0); pointer-events: auto; }
  .site-nav > a:not(.nav-cta) { padding: 14px 3px; border-bottom: 1px solid var(--line-dark); font-size: 16px; }
  .site-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 17px; padding: 15px; text-align: center; }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; min-height: 620px; padding-block: 72px 54px; }
  .hero-copy { max-width: 690px; }
  .hero-mark { position: absolute; right: -6%; bottom: 90px; width: 270px; opacity: .11; }
  .hero h1 { font-size: clamp(42px, 8vw, 58px); }
  .hero-footer { grid-template-columns: repeat(2, 1fr); gap: 11px 30px; padding-block: 17px; }
  .hero-footer p:not(:first-child), .hero-footer p:last-child { text-align: left; }
  .section-heading, .split-layout, .future-layout, .contact-layout { grid-template-columns: 1fr; gap: 34px; }
  .section-heading { margin-bottom: 48px; }
  .split-layout { gap: 52px; }
  .section-intro > p:not(.eyebrow) { max-width: 620px; }
  .process-heading { grid-template-columns: 1fr; gap: 12px; margin-bottom: 48px; }
  .process-heading .eyebrow { margin-top: 0; }
  .process-list { grid-template-columns: repeat(2, 1fr); gap: 45px 28px; }
  .process-list li:not(:last-child) { margin-right: 0; }
  .future-layout { gap: 40px; }
  .contact-layout { gap: 36px; }
  .contact-action { max-width: 520px; }
}

@media (max-width: 540px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .brand { font-size: 16px; }
  .brand img { width: 29px; height: 29px; }
  .hero-layout { min-height: 590px; padding-block: 60px 46px; }
  .hero h1 { font-size: clamp(38px, 11vw, 50px); }
  .hero-intro { font-size: 17px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .button-primary { width: 100%; }
  .text-link { width: fit-content; }
  .hero-mark { right: -19%; bottom: 86px; width: 240px; }
  .hero-footer { grid-template-columns: 1fr 1fr; }
  .section { padding-block: 70px; }
  .section-heading h2, .section-intro h2, .process h2, .future h2, .contact h2 { font-size: clamp(32px, 9vw, 42px); }
  .capability-list article { grid-template-columns: 34px 1fr; gap: 14px; padding-block: 24px; }
  .item-scope { grid-column: 2; }
  .outcome-list article { grid-template-columns: 34px 1fr; gap: 12px; }
  .principle-list { grid-template-columns: 1fr; }
  .principle-list li, .principle-list li:not(:first-child) { min-height: auto; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .principle-list li:nth-child(n+4) { border-top: 0; }
  .principle-list h3 { margin: 29px 0 8px; }
  .process-list { grid-template-columns: 1fr; gap: 0; }
  .process-list li { min-height: auto; padding: 24px 0 31px; }
  .process-list li:not(:last-child) { margin: 0; }
  .process-list h3 { margin: 31px 0 9px; }
  .future-copy dl div { grid-template-columns: 90px 1fr; }
  .button-light { max-width: none; }
  .footer-main { min-height: 0; flex-direction: column; padding-bottom: 40px; }
  .footer-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 15px 60px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    transition-delay: 0ms !important;
  }
  html.js [data-reveal],
  html.js [data-reveal-group] [data-reveal-item] {
    opacity: 1;
    transform: none;
  }
  .hero .tagline,
  .hero h1,
  .hero-intro,
  .hero-actions,
  .hero-mark img {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  .hero-mark { transform: none !important; }
  html.js .capability-list[data-reveal-group] article::after { transform: scaleX(1); }
}


/* ===== Multi-page corporate site ===== */
.footer-meta {
  display: flex;
  align-items: center;
  gap: 22px;
}

.page-hero,
.service-hero,
.contact-page-hero {
  background: var(--navy);
  color: var(--white);
}

.page-hero,
.service-hero { padding-block: clamp(82px, 9vw, 126px); }
.contact-page-hero { padding-block: clamp(88px, 9vw, 132px); }

.page-hero-grid,
.service-hero-grid,
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .62fr);
  gap: clamp(58px, 9vw, 130px);
  align-items: end;
}

.page-hero h1,
.service-hero h1,
.contact-page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.048em;
}

.page-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: #a7b5c7;
  font-size: clamp(18px, 1.45vw, 20px);
  line-height: 1.72;
}

.page-hero-aside {
  padding-top: 10px;
  border-top: 1px solid var(--line-dark);
}

.page-hero-aside > p {
  margin-bottom: 22px;
  color: var(--muted-dark);
  font-size: 17px;
  line-height: 1.75;
}

.section-dark {
  background: var(--navy-deep);
  color: var(--white);
}

.section-heading-dark > p,
.section-heading-dark .heading-side,
.section-heading-dark .heading-side p {
  color: var(--muted-dark);
}

.split-copy,
.detail-grid,
.tech-layout,
.related-layout,
.contact-info-grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(440px, 1fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}

.split-copy h2,
.detail-grid h2,
.tech-layout h2,
.related-layout h2,
.contact-info-grid h2 {
  max-width: 700px;
  margin-bottom: 0;
  font-size: clamp(34px, 3.7vw, 52px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.split-copy-dark .prose-stack { color: var(--muted-dark); }

.prose-stack p,
.section-copy,
.tech-layout > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.78;
}

.section-dark .prose-stack p,
.section-dark .section-copy { color: var(--muted-dark); }
.prose-stack p:last-child { margin-bottom: 0; }

/* Services overview */
.service-index { background: var(--surface); }
.service-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #bfc9d5;
}

.service-card {
  position: relative;
  min-height: 280px;
  padding: 30px 34px 34px 0;
  border-bottom: 1px solid var(--line);
  transition: background-color .25s ease, transform .25s var(--ease);
}
.service-card:nth-child(even) { padding-left: 34px; border-left: 1px solid var(--line); }
.service-card > span,
.dark-panel > span,
.numbered-list li > span,
.solution-no,
.contact-steps li > span {
  display: inline-block;
  color: var(--blue);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  letter-spacing: .07em;
}
.service-card h3 {
  max-width: 500px;
  margin: 35px 0 11px;
  font-size: clamp(23px, 2.2vw, 29px);
  font-weight: 620;
  line-height: 1.15;
  letter-spacing: -.03em;
}
.service-card p { max-width: 600px; margin-bottom: 27px; color: var(--muted); font-size: 16px; line-height: 1.72; }
.service-card strong { color: var(--blue); font-size: 14px; font-weight: 680; }
.service-card:hover { background: rgba(0,102,255,.025); }
.service-card:hover h3 { color: var(--blue); }

.three-up,
.challenge-grid,
.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.dark-panel,
.challenge-card,
.value-grid article {
  min-height: 230px;
  padding: 27px clamp(25px, 3vw, 38px) 30px 0;
  border-right: 1px solid var(--line-dark);
}
.dark-panel:not(:first-child),
.challenge-card:not(:first-child),
.value-grid article:not(:first-child) { padding-left: clamp(25px, 3vw, 38px); }
.dark-panel:last-child,
.challenge-card:last-child,
.value-grid article:nth-child(3n) { border-right: 0; }
.dark-panel > span,
.challenge-card > span { color: #78aefd; }
.dark-panel h3,
.challenge-card h3,
.value-grid h3 { margin: 48px 0 10px; font-size: 20px; font-weight: 620; }
.challenge-card h3 { margin-top: 10px; }
.dark-panel p,
.challenge-card p,
.value-grid p { margin-bottom: 0; color: var(--muted-dark); font-size: 15.5px; line-height: 1.72; }
.value-grid { border-color: var(--line); }
.value-grid article { border-color: var(--line); }
.value-grid p { color: var(--muted); }

/* Service detail pages */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 44px;
  color: #75869c;
  font-size: 13px;
}
.breadcrumb a { color: #aebaca; }
.breadcrumb a:hover { color: #fff; }

.service-hero-grid { align-items: start; }
.service-hero-grid .page-lead { margin-top: 0; }
.service-hero-grid .button { margin-top: 30px; }

.numbered-list,
.check-list,
.tag-list,
.contact-steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.numbered-list { border-top: 1px solid #bfc9d5; }
.numbered-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  align-items: center;
  min-height: 70px;
  border-bottom: 1px solid var(--line);
}
.numbered-list li > span { font-size: 14px; }
.numbered-list p { margin: 0; font-size: 17px; font-weight: 560; line-height: 1.45; }

.challenge-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.challenge-card { min-height: 210px; border-bottom: 1px solid var(--line-dark); }
.challenge-card:nth-child(even) { border-right: 0; }
.challenge-card:nth-child(n+3) { padding-top: 32px; }
.challenge-card h3 { color: var(--white); font-size: 21px; }

.check-list { border-top: 1px solid #bfc9d5; }
.check-list li {
  position: relative;
  padding: 17px 0 17px 34px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.55;
}
.check-list li::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 3px;
  width: 9px;
  height: 5px;
  border-bottom: 2px solid var(--blue);
  border-left: 2px solid var(--blue);
  transform: rotate(-45deg);
}

.tech-section { background: var(--surface); }
.tag-list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 10px;
}
.tag-list li {
  padding: 10px 13px;
  border: 1px solid #c9d2dd;
  background: #fff;
  color: #344154;
  font-size: 14px;
  font-weight: 600;
}

.related-section { padding-top: 0; }
.related-links { border-top: 1px solid #bfc9d5; }
.related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
  font-size: 17px;
  font-weight: 620;
  transition: color .2s ease, padding .25s var(--ease);
}
.related-link:hover { color: var(--blue); padding-left: 5px; }
.related-link span { transition: transform .25s var(--ease); }
.related-link:hover span { transform: translate(3px,-3px); }

/* Solutions */
.solution-detail-list { background: var(--surface); }
.solution-rows { border-top: 1px solid #bfc9d5; }
.solution-rows article {
  display: grid;
  grid-template-columns: 58px minmax(0, 1.15fr) minmax(250px, .62fr);
  gap: 28px;
  padding-block: 31px;
  border-bottom: 1px solid var(--line);
}
.solution-no { padding-top: 4px; }
.solution-label {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.solution-rows h3 { margin-bottom: 10px; font-size: clamp(21px, 2vw, 26px); font-weight: 620; line-height: 1.2; letter-spacing: -.025em; }
.solution-rows article > div > p:not(.solution-label),
.solution-result p { margin-bottom: 0; color: var(--muted); font-size: 15.5px; line-height: 1.7; }
.solution-result { padding-left: 26px; border-left: 1px solid #d3dbe5; }
.solution-result strong { display: block; margin-bottom: 8px; color: #45556a; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; }

/* About */
.location-note { margin-top: 22px; color: #8292a6; font-size: 14px; }
.value-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.value-grid article:nth-child(n+4) { border-top: 1px solid var(--line); }
.value-grid h3 { margin-top: 18px; }

/* Contact page */
.contact-page-grid { align-items: center; }
.contact-card {
  width: min(100%, 430px);
  justify-self: end;
  padding: 31px;
  border: 1px solid #30415a;
  background: var(--navy-raised);
}
.contact-label { margin-bottom: 9px; color: #7e8fa5; font-size: 13px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.contact-email { display: inline-block; margin-bottom: 24px; color: #fff; font-size: clamp(20px, 2vw, 25px); font-weight: 620; letter-spacing: -.02em; }
.contact-card > p:not(.contact-label) { margin-bottom: 28px; color: var(--muted-dark); font-size: 15.5px; line-height: 1.72; }
.contact-card .button { width: 100%; }

.contact-steps { border-top: 1px solid #bfc9d5; }
.contact-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding-block: 22px;
  border-bottom: 1px solid var(--line);
}
.contact-steps li > span { padding-top: 3px; font-size: 14px; }
.contact-steps h3 { margin-bottom: 6px; font-size: 19px; font-weight: 630; }
.contact-steps p { margin-bottom: 0; color: var(--muted); font-size: 15.5px; line-height: 1.65; }

.contact-info-section { background: var(--surface); }
.contact-details { margin: 0; border-top: 1px solid #bfc9d5; }
.contact-details > div {
  display: grid;
  grid-template-columns: 125px 1fr;
  gap: 20px;
  padding-block: 18px;
  border-bottom: 1px solid var(--line);
}
.contact-details dt { color: var(--muted); font-size: 13px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.contact-details dd { margin: 0; color: var(--ink); font-size: 16px; font-weight: 560; }
.contact-details a:hover { color: var(--blue); }

/* Homepage polish: number legibility + contact alignment */
.item-number,
.outcome-list article > span,
.principle-list > li > span,
.process-list > li > span {
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
}

.principle-list h3 { margin-top: 34px; }
.process-list h3 { margin-top: 34px; }

.contact-layout {
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .62fr);
  align-items: center;
}
.contact-action {
  width: 100%;
  max-width: 390px;
  justify-self: end;
  align-self: center;
}
.contact-action .button-light { width: 100%; max-width: none; }

@media (max-width: 1000px) {
  .service-cards { grid-template-columns: 1fr; }
  .service-card,
  .service-card:nth-child(even) { min-height: 0; padding: 26px 0 29px; border-left: 0; }
  .service-card h3 { margin-top: 28px; }
  .three-up,
  .value-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .dark-panel:nth-child(2n),
  .value-grid article:nth-child(2n) { border-right: 0; }
  .dark-panel:nth-child(n+3),
  .value-grid article:nth-child(n+3) { border-top: 1px solid var(--line-dark); }
  .value-grid article:nth-child(n+3) { border-top-color: var(--line); }
  .solution-rows article { grid-template-columns: 48px 1fr; }
  .solution-result { grid-column: 2; padding: 14px 0 0; border-top: 1px solid #d3dbe5; border-left: 0; }
}

@media (max-width: 780px) {
  .page-hero,
  .service-hero,
  .contact-page-hero { padding-block: 72px; }
  .page-hero-grid,
  .service-hero-grid,
  .contact-page-grid,
  .split-copy,
  .detail-grid,
  .tech-layout,
  .related-layout,
  .contact-info-grid { grid-template-columns: 1fr; gap: 38px; }
  .page-hero h1,
  .service-hero h1,
  .contact-page-hero h1 { font-size: clamp(40px, 9vw, 56px); }
  .page-hero-aside { max-width: 620px; }
  .contact-card { justify-self: start; }
  .challenge-grid { grid-template-columns: 1fr; }
  .challenge-card,
  .challenge-card:not(:first-child) { min-height: 0; padding: 26px 0; border-right: 0; }
  .challenge-card:nth-child(n+3) { padding-top: 26px; }
  .three-up,
  .value-grid { grid-template-columns: 1fr; }
  .dark-panel,
  .dark-panel:not(:first-child),
  .value-grid article,
  .value-grid article:not(:first-child) { min-height: 0; padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line-dark); }
  .value-grid article,
  .value-grid article:not(:first-child) { border-bottom-color: var(--line); }
  .dark-panel h3 { margin-top: 30px; }
  .footer-meta { align-items: flex-start; flex-direction: column; gap: 8px; }
  .contact-layout { grid-template-columns: 1fr; align-items: start; }
  .contact-action { justify-self: start; max-width: 520px; }
}

@media (max-width: 540px) {
  .breadcrumb { margin-bottom: 34px; font-size: 12px; }
  .page-lead { font-size: 17px; }
  .solution-rows article { grid-template-columns: 36px 1fr; gap: 13px; }
  .solution-result { grid-column: 2; }
  .numbered-list li,
  .contact-steps li { grid-template-columns: 40px 1fr; gap: 13px; }
  .item-number,
  .outcome-list article > span,
  .principle-list > li > span,
  .process-list > li > span,
  .service-card > span,
  .dark-panel > span,
  .numbered-list li > span,
  .solution-no,
  .contact-steps li > span { font-size: 13.5px; }
  .contact-card { padding: 25px; }
  .contact-details > div { grid-template-columns: 1fr; gap: 5px; }
}
