:root {
  --ink: #09111f;
  --ink-soft: #111d31;
  --panel: #14223a;
  --line-dark: rgba(255, 255, 255, 0.12);
  --paper: #f5f7fb;
  --white: #ffffff;
  --text: #19263a;
  --muted: #647087;
  --blue: #4b57db;
  --blue-bright: #6c78ff;
  --green: #25b765;
  --green-bright: #46db86;
  --line: #dce2eb;
  --shadow: 0 24px 70px rgba(10, 20, 40, 0.13);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: 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.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--green-bright);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--white);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-150%);
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 120;
  height: 3px;
  background: transparent;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--blue-bright), var(--green-bright));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(9, 17, 31, 0.92);
  border-color: var(--line-dark);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 8px;
}

.brand strong {
  color: #b7c0d1;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-nav a {
  position: relative;
  padding: 28px 0;
  color: #c6ccda;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none;
}

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

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px 10px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: transparent;
}

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

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 160px 0 0;
  color: var(--white);
  background:
    radial-gradient(circle at 65% 14%, rgba(75, 87, 219, 0.2), transparent 31%),
    linear-gradient(145deg, #08101d 0%, #0d1728 52%, #09111f 100%);
}

.hero-grid,
.approach-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  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, rgba(0,0,0,.75), transparent 85%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-one {
  top: 18%;
  right: -260px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(108, 120, 255, 0.18);
  box-shadow: inset 0 0 120px rgba(75, 87, 219, 0.08);
}

.hero-glow-two {
  bottom: -380px;
  left: -180px;
  width: 620px;
  height: 620px;
  border: 1px solid rgba(70, 219, 134, 0.12);
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, .82fr);
  gap: clamp(50px, 7vw, 96px);
  align-items: center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: #b8c1d3;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--green-bright);
}

.eyebrow-dark {
  color: #68758c;
}

.hero h1,
.section h2 {
  margin: 0;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 6vw, 6rem);
  font-weight: 760;
}

.hero h1 em {
  color: #9aa4ff;
  font-style: normal;
}

.hero-lead {
  max-width: 650px;
  margin: 30px 0 0;
  color: #b8c1d2;
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(75, 87, 219, 0.28);
}

.button-primary:hover {
  background: #5965e8;
}

.button-secondary {
  color: #d8deea;
  border-color: var(--line-dark);
  background: rgba(255, 255, 255, 0.035);
}

.button-secondary:hover {
  border-color: rgba(255,255,255,.28);
  background: rgba(255, 255, 255, 0.07);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 24px;
  margin: 34px 0 0;
  padding: 0;
  color: #98a4b8;
  font-size: 13px;
  list-style: none;
}

.hero-points span {
  color: var(--green-bright);
  margin-right: 5px;
}

.delivery-map {
  position: relative;
  min-height: 570px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(26, 42, 69, 0.93), rgba(11, 20, 35, 0.96));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.35);
}

.delivery-map::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(108, 120, 255, .42), transparent 35%, rgba(70, 219, 134, .18));
}

.map-topline,
.map-footer,
.lifecycle-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8f9aaf;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.live-state {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #c5cddb;
}

.live-state i,
.lifecycle-footer > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-bright);
  box-shadow: 0 0 0 6px rgba(70, 219, 134, 0.11);
}

.map-core {
  position: relative;
  display: grid;
  place-items: center;
  width: 222px;
  height: 222px;
  margin: 43px auto 34px;
}

.core-ring {
  position: absolute;
  border: 1px solid rgba(128, 139, 255, 0.28);
  border-radius: 50%;
}

.core-ring-one {
  inset: 0;
  border-style: dashed;
  animation: rotate 28s linear infinite;
}

.core-ring-two {
  inset: 28px;
  box-shadow: 0 0 48px rgba(75, 87, 219, 0.15), inset 0 0 38px rgba(75, 87, 219, 0.1);
}

.core-label {
  position: relative;
  display: grid;
  place-items: center;
  width: 122px;
  height: 122px;
  border: 1px solid rgba(137, 148, 255, 0.4);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(75, 87, 219, .28), rgba(75, 87, 219, .08));
  box-shadow: 0 0 34px rgba(75, 87, 219, 0.17);
}

.core-label span {
  align-self: end;
  color: #a8b0ff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.core-label strong {
  align-self: start;
  font-size: 16px;
}

.map-streams {
  display: grid;
  gap: 8px;
}

.map-stream {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 11px 13px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 7px;
  background: rgba(255,255,255,.025);
}

.map-stream.active {
  border-color: rgba(108, 120, 255, 0.35);
  background: rgba(75, 87, 219, 0.1);
}

.map-stream > span {
  color: #6f7b91;
  font-size: 10px;
  font-weight: 800;
}

.map-stream div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.map-stream strong {
  color: #e5e9f1;
  font-size: 13px;
}

.map-stream small {
  color: #7f8aa0;
  font-size: 10px;
}

.map-stream > i {
  width: 7px;
  height: 7px;
  border: 1px solid var(--green-bright);
  border-radius: 50%;
}

.map-stream.active > i {
  background: var(--green-bright);
  box-shadow: 0 0 10px var(--green-bright);
}

.map-footer {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.signal {
  display: flex;
  align-items: end;
  gap: 3px;
  height: 15px;
}

.signal i {
  display: block;
  width: 3px;
  border-radius: 3px;
  background: var(--green-bright);
}

.signal i:nth-child(1) { height: 5px; opacity: .3; }
.signal i:nth-child(2) { height: 8px; opacity: .45; }
.signal i:nth-child(3) { height: 11px; opacity: .65; }
.signal i:nth-child(4) { height: 13px; opacity: .8; }
.signal i:nth-child(5) { height: 15px; }

.value-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 100px;
  border: 1px solid var(--line-dark);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(12px);
}

.value-strip > div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 15px;
  padding: 25px 27px;
  border-right: 1px solid var(--line-dark);
}

.value-strip > div:last-child {
  border-right: 0;
}

.value-strip span {
  grid-row: 1 / span 2;
  color: var(--green-bright);
  font-size: 10px;
  font-weight: 800;
}

.value-strip strong {
  color: #e8ebf2;
  font-size: 14px;
}

.value-strip small {
  color: #7f8aa0;
  font-size: 11px;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-light {
  color: var(--text);
  background: var(--paper);
}

.intro {
  padding-top: 130px;
  padding-bottom: 90px;
}

.intro-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(56px, 10vw, 130px);
  align-items: start;
}

.section h2 {
  max-width: 780px;
  font-size: clamp(2.5rem, 4.4vw, 4.4rem);
  font-weight: 740;
}

.intro-copy {
  padding-top: 41px;
}

.intro-copy p {
  margin: 0 0 20px;
  color: #566278;
  font-size: 17px;
  line-height: 1.8;
}

.expertise {
  padding-top: 80px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 62px;
}

.section-heading > p {
  max-width: 430px;
  margin: 0 0 6px auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

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

.capability-card {
  position: relative;
  min-height: 330px;
  padding: 36px 34px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.54);
  transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.capability-card:hover {
  z-index: 2;
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.card-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: #a4adbd;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 48px;
  border: 1px solid #d9deff;
  border-radius: 8px;
  color: var(--blue);
  background: #f0f2ff;
}

.icon-box svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.capability-card h3 {
  margin: 0 0 14px;
  color: #142136;
  font-size: 20px;
  letter-spacing: -0.02em;
}

.capability-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.approach {
  overflow: hidden;
  color: var(--white);
  background: #0a1424;
}

.approach-pattern {
  opacity: .55;
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}

.approach-layout {
  position: relative;
  display: grid;
  grid-template-columns: 1fr .82fr;
  gap: clamp(60px, 9vw, 120px);
  align-items: center;
}

.approach-copy > p:not(.eyebrow) {
  max-width: 660px;
  margin: 28px 0 0;
  color: #a7b1c2;
  font-size: 17px;
  line-height: 1.8;
}

.approach-principles {
  display: grid;
  margin-top: 48px;
  border-top: 1px solid var(--line-dark);
}

.approach-principles > div {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
}

.approach-principles > div > span {
  color: var(--green-bright);
  font-size: 11px;
  font-weight: 800;
}

.approach-principles p {
  margin: 0;
  color: #8995a9;
  font-size: 13px;
}

.approach-principles strong {
  display: block;
  margin-bottom: 3px;
  color: #e9edf4;
  font-size: 15px;
}

.lifecycle {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  background: rgba(18, 32, 54, .82);
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
  backdrop-filter: blur(12px);
}

.lifecycle-header {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.lifecycle-header small {
  color: var(--green-bright);
  font-size: 9px;
}

.lifecycle ol {
  margin: 0;
  padding: 12px 0;
  list-style: none;
}

.lifecycle li {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 15px;
  align-items: center;
  min-height: 78px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.lifecycle li:last-child {
  border-bottom: 0;
}

.lifecycle li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(108, 120, 255, .32);
  border-radius: 50%;
  color: #9ea7ff;
  font-size: 10px;
  font-weight: 800;
}

.lifecycle li div {
  display: grid;
}

.lifecycle strong {
  color: #e6eaf2;
  font-size: 14px;
}

.lifecycle li small {
  color: #7f8ba0;
  font-size: 11px;
}

.lifecycle li > i {
  width: 46px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-bright), var(--green-bright));
  opacity: .55;
}

.lifecycle-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #939eb0;
  font-size: 11px;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.client-logo {
  display: grid;
  place-items: center;
  min-height: 176px;
  padding: 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  filter: grayscale(1);
  transition: filter 180ms ease, background 180ms ease;
}

.client-logo:hover {
  filter: grayscale(0);
  background: #fafbfe;
}

.client-logo img {
  width: auto;
  max-width: 150px;
  max-height: 65px;
  object-fit: contain;
}

.about {
  padding-top: 20px;
  padding-bottom: 130px;
}

.about-panel {
  position: relative;
  display: grid;
  grid-template-columns: .56fr 1.25fr .62fr;
  gap: 58px;
  align-items: center;
  overflow: hidden;
  padding: clamp(42px, 6vw, 76px);
  color: var(--text);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 20px 70px rgba(15, 27, 49, .08);
}

.about-mark {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: 220px;
  height: 220px;
  overflow: hidden;
  border-radius: 50%;
  background: #0d1728;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.1), 0 24px 50px rgba(23, 37, 64, .18);
}

.about-mark::after {
  content: "";
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 50%;
}

.about-mark span {
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 36px;
  font-weight: 900;
}

.about-mark span:nth-child(1) { background: rgba(75, 87, 219, .9); }
.about-mark span:nth-child(2) { background: rgba(75, 87, 219, .45); }
.about-mark span:nth-child(3) { background: rgba(37, 183, 101, .82); }

.about-copy h2 {
  max-width: 720px;
  font-size: clamp(2.2rem, 3.6vw, 3.6rem);
}

.about-copy > p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: var(--muted);
}

.about-focus {
  display: grid;
  border-top: 1px solid var(--line);
}

.about-focus div {
  display: grid;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.about-focus strong {
  color: #253249;
  font-size: 13px;
}

.about-focus span {
  color: #8a95a6;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.site-footer {
  padding: 38px 0;
  color: #7f8ba0;
  border-top: 1px solid var(--line-dark);
  background: #07101c;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 42px;
  align-items: center;
}

.brand-footer {
  font-size: 13px;
}

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

.footer-inner p {
  margin: 0;
  font-size: 11px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(.2,.7,.2,1);
}

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

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@media (max-width: 1050px) {
  .hero-layout {
    grid-template-columns: 1fr 410px;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 5.8vw, 4.8rem);
  }

  .capability-card {
    padding-inline: 26px;
  }

  .about-panel {
    grid-template-columns: 210px 1fr;
  }

  .about-focus {
    grid-column: 2;
    grid-template-columns: repeat(3, 1fr);
  }

  .about-focus div {
    border-right: 1px solid var(--line);
  }
}

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

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

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

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

  .site-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line-dark);
    background: rgba(9, 17, 31, .98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line-dark);
    font-size: 16px;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    padding-top: 140px;
  }

  .hero-layout,
  .intro-layout,
  .section-heading,
  .approach-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    gap: 70px;
  }

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

  .delivery-map {
    width: min(100%, 540px);
    margin-inline: auto;
  }

  .intro-layout,
  .section-heading,
  .approach-layout {
    gap: 34px;
  }

  .intro-copy {
    padding-top: 0;
  }

  .section-heading > p {
    margin-left: 0;
  }

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

  .approach-copy {
    max-width: 680px;
  }

  .lifecycle {
    max-width: 600px;
  }

  .about-panel {
    grid-template-columns: 180px 1fr;
    gap: 38px;
  }

  .about-mark {
    width: 180px;
    height: 180px;
  }

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

  .footer-inner > p:first-of-type {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .header-inner {
    min-height: 74px;
  }

  .site-nav {
    top: 74px;
  }

  .brand span {
    font-size: 12px;
  }

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

  .hero {
    padding-top: 124px;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4rem);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-points {
    display: grid;
    gap: 8px;
  }

  .delivery-map {
    min-height: 520px;
    padding: 18px;
  }

  .map-core {
    width: 190px;
    height: 190px;
    margin-top: 35px;
  }

  .map-stream div {
    display: grid;
  }

  .value-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 72px;
  }

  .value-strip > div:nth-child(2) {
    border-right: 0;
  }

  .value-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .section {
    padding: 88px 0;
  }

  .intro {
    padding-top: 96px;
    padding-bottom: 60px;
  }

  .expertise {
    padding-top: 55px;
  }

  .section h2 {
    font-size: clamp(2.2rem, 11vw, 3.2rem);
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .section-heading > p,
  .intro-copy p,
  .approach-copy > p:not(.eyebrow) {
    font-size: 15px;
  }

  .capability-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .capability-card {
    min-height: auto;
  }

  .client-logo {
    min-height: 145px;
  }

  .lifecycle {
    padding: 20px;
  }

  .lifecycle li > i {
    width: 24px;
  }

  .about {
    padding-top: 10px;
  }

  .about-panel {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 34px 26px;
  }

  .about-mark {
    width: 150px;
    height: 150px;
  }

  .about-mark span {
    font-size: 28px;
  }

  .about-focus {
    grid-column: auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
