:root {
  --blue: #0a56e8;
  --blue-2: #124ee4;
  --navy: #001f49;
  --navy-2: #002b62;
  --ink: #112146;
  --muted: #5d6b87;
  --green: #45a35e;
  --line: #dbe6f6;
  --soft: #f1f7ff;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(9, 42, 92, .09);
  --shadow-strong: 0 30px 70px rgba(9, 42, 92, .14);
  --surface: rgba(255, 255, 255, .86);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 0%, rgba(10, 86, 232, .035), transparent 28%),
    linear-gradient(180deg, #fbfdff 0%, #fff 34%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

.container {
  width: min(1160px, calc(100% - 72px));
  margin: 0 auto;
}

.site-header {
  height: 84px;
  background: rgba(255, 255, 255, .86);
  border-bottom: 1px solid rgba(0, 36, 92, .1);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 20;
  transition: box-shadow .25s ease, background .25s ease;
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  box-shadow: 0 12px 34px rgba(0, 31, 73, .1);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  width: 154px;
  height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  font-weight: 800;
  color: #0f1f40;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.submenu-toggle:after {
  content: "⌄";
  margin-left: 6px;
  color: var(--blue);
  font-size: 13px;
  transition: transform .22s ease;
}

.nav-item:hover .submenu-toggle:after,
.nav-item:focus-within .submenu-toggle:after {
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: 292px;
  padding: 10px;
  border: 1px solid rgba(203, 218, 239, .9);
  border-radius: 14px;
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
  transform: translate(-50%, 8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.submenu:before {
  content: "";
  position: absolute;
  inset: -18px 0 auto;
  height: 18px;
}

.nav-item:hover .submenu,
.nav-item:focus-within .submenu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.submenu a {
  display: grid;
  gap: 3px;
  min-height: auto;
  padding: 12px 13px;
  border: 0;
  border-radius: 10px;
  color: var(--ink);
  line-height: 1.3;
}

.submenu a:hover {
  background: #f1f7ff;
  color: var(--blue);
}

.submenu span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 5px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 800;
  position: relative;
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
  cursor: pointer;
}

.btn:before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, .34), transparent);
  transform: translateX(-120%);
  transition: transform .6s ease;
}

.btn.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 10px 22px rgba(10, 86, 232, .22);
}

.btn.outline {
  background: #fff;
  color: var(--blue);
  border-color: var(--blue);
}

.btn.dark {
  background: rgba(0, 0, 0, .18);
  color: #fff;
  border-color: rgba(255, 255, 255, .6);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(10, 86, 232, .24);
}

.btn:hover:before {
  transform: translateX(120%);
}

.btn.outline.nav-pulse {
  isolation: isolate;
  background: #1f6fff;
  color: #fff;
  border-color: rgba(255, 255, 255, .12);
  box-shadow: 0 10px 24px rgba(31, 111, 255, .2);
  animation: talkPulse 4.2s ease-in-out infinite;
}

.btn.outline.nav-pulse:after {
  display: none;
}

.btn.outline.nav-pulse:before {
  display: none;
}

.nav-pulse span {
  transition: transform .22s ease;
}

.nav-pulse:hover span {
  transform: translateX(3px);
}

.icon {
  width: 26px;
  height: 26px;
  color: var(--blue);
}

.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  color: var(--blue);
  font-size: 24px;
}

.hero {
  min-height: 430px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 62%, rgba(0, 208, 142, .18), transparent 20%),
    radial-gradient(circle at 70% 42%, rgba(28, 113, 255, .3), transparent 25%),
    linear-gradient(90deg, #00142f 0%, #001b3f 48%, #002352 100%);
  overflow: hidden;
  position: relative;
}

.hero:before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 150px;
  background:
    radial-gradient(ellipse at 15% 120%, rgba(0, 86, 255, .8), transparent 45%),
    repeating-linear-gradient(170deg, rgba(0, 208, 142, .45) 0 1px, transparent 1px 10px);
  opacity: .45;
  transform: skewY(-5deg);
  animation: waveDrift 9s ease-in-out infinite alternate;
}

.hero:after,
.page-hero:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.22) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 45%, transparent 100%);
  opacity: .18;
}

.hero .container {
  position: relative;
  min-height: 430px;
  display: grid;
  grid-template-columns: 45% 55%;
  align-items: center;
}

.hero-copy {
  padding: 64px 0 68px;
  z-index: 2;
  animation: heroIn .8s cubic-bezier(.2, .8, .2, 1) both;
}

.hero h1 {
  margin: 0;
  font-size: clamp(44px, 5.3vw, 66px);
  line-height: 1.07;
  letter-spacing: -.04em;
  font-weight: 900;
}

.hero h1 span {
  color: var(--green);
}

.hero p {
  max-width: 420px;
  margin: 24px 0 28px;
  color: #eaf2ff;
  line-height: 1.95;
  font-size: 15px;
  font-weight: 700;
}

.hero-visual {
  align-self: stretch;
  position: relative;
  min-height: 430px;
}

.hero-visual img {
  position: absolute;
  right: -40px;
  bottom: 0;
  width: 690px;
  height: 430px;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen;
  opacity: .95;
  animation: visualIn .9s cubic-bezier(.2, .8, .2, 1) .1s both, floatImage 7s ease-in-out 1s infinite alternate;
}

.section {
  position: relative;
  padding: 86px 0;
  overflow: hidden;
}

.trust {
  background: #fff;
  text-align: center;
  padding: 40px 0 46px;
  border-bottom: 1px solid rgba(203, 218, 239, .55);
  box-shadow: none;
}

.trust h2 {
  margin: 0 0 34px;
  font-size: 20px;
  font-weight: 900;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1080px;
  margin: 0 auto;
}

.trust-item {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-left: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 0;
}

.trust-item strong {
  display: block;
  font-size: 18px;
  text-align: left;
}

.trust-item span {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  text-align: left;
}

.soft-section {
  background:
    linear-gradient(180deg, #f8fbff 0%, #ffffff 52%, #f8fbff 100%);
  border-top: 1px solid rgba(203, 218, 239, .42);
  border-bottom: 1px solid rgba(203, 218, 239, .42);
}

.split {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 64px;
  align-items: start;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--green);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 900;
}

.section-title {
  margin: 0;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.18;
  letter-spacing: -.03em;
  font-weight: 900;
}

.section-copy {
  margin: 22px 0 30px;
  color: #233859;
  font-size: 14px;
  line-height: 1.85;
  font-weight: 650;
}

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

.service-card,
.insight-card,
.page-card {
  background: var(--surface);
  border: 1px solid rgba(203, 218, 239, .64);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.service-card:hover,
.insight-card:hover,
.page-card:hover {
  transform: translateY(-6px);
  border-color: rgba(10, 86, 232, .28);
  box-shadow: var(--shadow-strong);
}

.service-card {
  min-height: 192px;
  padding: 32px 28px 26px;
  position: relative;
  overflow: hidden;
}

.service-card:after,
.page-card:after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}

.service-card:hover:after,
.page-card:hover:after {
  transform: scaleX(1);
}

.service-card h3,
.insight-card h3,
.page-card h3 {
  margin: 18px 0 12px;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 900;
}

.service-card p,
.insight-card p,
.page-card p {
  margin: 0;
  color: #50607c;
  font-size: 12px;
  line-height: 1.8;
  font-weight: 650;
}

.arrow {
  display: inline-flex;
  margin-top: 18px;
  color: var(--blue);
  font-weight: 900;
}

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

.industry-card {
  min-height: 104px;
  display: grid;
  place-items: center;
  text-align: center;
  gap: 8px;
  padding: 10px;
  border-right: 1px solid rgba(203, 218, 239, .72);
  border-bottom: 1px solid rgba(203, 218, 239, .72);
  font-size: 14px;
  line-height: 1.35;
  font-weight: 900;
  border-radius: 0;
  transition: background .25s ease, transform .25s ease, color .25s ease;
}

.industry-card:hover {
  background: #f3f8ff;
  color: var(--blue);
  transform: translateY(-3px);
}

.industry-card:nth-last-child(-n+3) {
  border-bottom: 0;
}

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

.insight-card {
  overflow: hidden;
}

.insight-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform .5s ease;
}

.insight-card:hover img {
  transform: scale(1.045);
}

.insight-card .body {
  padding: 25px 28px;
  min-height: 142px;
  position: relative;
}

.insight-card .arrow {
  position: absolute;
  right: 28px;
  top: 42px;
}

.why {
  color: #fff;
  background:
    radial-gradient(circle at 70% 64%, rgba(10, 86, 232, .2), transparent 28%),
    linear-gradient(90deg, #00183a 0%, #00214c 100%);
  padding: 92px 0;
}

.why .section-title {
  color: #fff;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 44px;
}

.why-item {
  padding: 0 36px 0 0;
  border-right: 1px solid rgba(255, 255, 255, .16);
  transition: transform .25s ease;
}

.why-item:hover {
  transform: translateY(-4px);
}

.why-item + .why-item {
  padding-left: 36px;
}

.why-item:last-child {
  border-right: 0;
}

.why-item h3 {
  margin: 14px 0 12px;
  color: #fff;
  font-size: 15px;
}

.why-item p {
  margin: 0;
  color: #d4e1f4;
  font-size: 12px;
  line-height: 1.8;
  font-weight: 650;
}

.cta-strip {
  padding: 42px 0;
  background: #fff;
}

.cta-box {
  min-height: 110px;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 28px 38px;
  background: linear-gradient(135deg, #edf5ff, #f8fbff);
  border: 1px solid rgba(203, 218, 239, .8);
  border-radius: 16px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.cta-box:after {
  content: "";
  position: absolute;
  right: -80px;
  top: -90px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(10, 86, 232, .1);
}

.cta-logo {
  display: none;
}

.cta-box h2 {
  margin: 0 0 8px;
  font-size: 24px;
}

.cta-box p {
  margin: 0;
  color: #324866;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 650;
}

.footer {
  color: #dbe8fb;
  background: linear-gradient(90deg, #001636 0%, #002454 100%);
  padding: 30px 0 18px;
}

.footer-simple {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  width: 118px;
  filter: brightness(0) invert(1);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.footer-brand span {
  color: rgba(219, 232, 251, .72);
  font-size: 12px;
  font-weight: 750;
}

.footer p,
.footer a {
  color: #dbe8fb;
  font-size: 12px;
  line-height: 1.8;
  font-weight: 600;
}

.footer-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-nav a {
  color: rgba(219, 232, 251, .82);
  font-weight: 750;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 22px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.footer-bottom p {
  margin: 0;
  color: rgba(219, 232, 251, .68);
}

.page-hero {
  padding: 96px 0;
  color: #fff;
  background:
    radial-gradient(circle at 82% 45%, rgba(69, 163, 94, .25), transparent 22%),
    linear-gradient(90deg, #00183a 0%, #002454 100%);
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.page-hero p {
  max-width: 650px;
  margin: 20px 0 0;
  color: #e2edff;
  line-height: 1.85;
  font-weight: 650;
}

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

.page-card {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.service-detail {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 24px;
  align-items: start;
}

.resource-request-section {
  padding-top: 62px;
}

.resource-request {
  grid-template-columns: .85fr 1.15fr;
  gap: 30px;
}

.resource-summary {
  position: sticky;
  top: 112px;
}

.resource-offering {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(145, 178, 226, .36);
  border-radius: 10px;
  background: rgba(255, 255, 255, .7);
  box-shadow: 0 18px 50px rgba(8, 28, 64, .06);
}

.resource-offering h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 1rem;
}

.resource-offering p {
  margin: 0;
  color: #425673;
  font-size: .95rem;
  font-weight: 650;
  line-height: 1.75;
}

.metric-row.compact {
  margin-top: 24px;
}

.compact-list {
  margin-top: 24px;
}

.compact-list li {
  font-size: .95rem;
}

.detail-panel {
  background: #fff;
  border: 1px solid rgba(203, 218, 239, .75);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 34px;
}

.detail-panel h2,
.detail-panel h3 {
  margin: 0 0 14px;
  font-size: 24px;
  letter-spacing: -.02em;
}

.detail-panel p {
  margin: 0;
  color: #465a78;
  line-height: 1.85;
  font-weight: 650;
}

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

.detail-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #263b5d;
  line-height: 1.65;
  font-weight: 720;
}

.detail-list li:before {
  content: "✓";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  margin-top: 2px;
  border-radius: 50%;
  background: #e9f4ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.process-step {
  background: #fff;
  border: 1px solid rgba(203, 218, 239, .8);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 14px 34px rgba(9, 42, 92, .08);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.process-step h3 {
  margin: 16px 0 8px;
  font-size: 15px;
}

.process-step p {
  margin: 0;
  color: #536681;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 650;
}

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

.metric {
  padding: 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, #eef6ff, #fff);
  border: 1px solid rgba(203, 218, 239, .8);
}

.metric strong {
  display: block;
  color: var(--blue);
  font-size: 26px;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: #405370;
  font-size: 12px;
  line-height: 1.5;
  font-weight: 800;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(.985);
  filter: blur(4px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2, .8, .2, 1), filter .8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.section.reveal,
.logo-section.reveal,
.trust.reveal,
.cta-strip.reveal {
  transform: translateY(42px);
}

.section.reveal.visible,
.logo-section.reveal.visible,
.trust.reveal.visible,
.cta-strip.reveal.visible {
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }

.logo-section {
  padding: 56px 0 62px;
  background: #fff;
  border-top: 1px solid rgba(203, 218, 239, .55);
  border-bottom: 1px solid rgba(203, 218, 239, .55);
  overflow: hidden;
}

.logo-section .eyebrow {
  text-align: center;
  margin-bottom: 8px;
}

.logo-section h2 {
  margin: 0 auto 34px;
  max-width: 720px;
  text-align: center;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.25;
  letter-spacing: -.02em;
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: logoScroll 34s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.client-logo {
  width: 174px;
  height: 90px;
  display: grid;
  place-items: center;
  padding: 18px 22px;
  border: 1px solid rgba(203, 218, 239, .75);
  border-radius: 18px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 30px rgba(9, 42, 92, .06);
}

.client-logo img {
  max-width: 118px;
  max-height: 44px;
  object-fit: contain;
  filter: grayscale(1) contrast(.9);
  opacity: .78;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.client-logo:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.04);
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes visualIn {
  from { opacity: 0; transform: translateX(28px) scale(.98); }
  to { opacity: .95; transform: translateX(0) scale(1); }
}

@keyframes floatImage {
  from { transform: translateY(0); }
  to { transform: translateY(-8px); }
}

@keyframes waveDrift {
  from { transform: skewY(-5deg) translateX(-18px); }
  to { transform: skewY(-5deg) translateX(18px); }
}

@keyframes logoScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes talkPulse {
  0%, 100% { box-shadow: 0 10px 24px rgba(31, 111, 255, .18); }
  50% { box-shadow: 0 12px 30px rgba(31, 111, 255, .34); }
}

@keyframes talkRing {
  0%, 100% { opacity: 0; transform: scale(.9); }
  18% { opacity: .85; }
  72% { opacity: 0; transform: scale(1.2); }
}

@keyframes talkSweep {
  0%, 48%, 100% { transform: translateX(-130%); }
  72% { transform: translateX(130%); }
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form fieldset {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  border: 0;
}

.contact-form fieldset[hidden] {
  display: none;
}

.contact-form legend {
  margin: 0 0 4px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: .86rem;
  font-weight: 800;
}

.contact-form label span {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.contact-form select[multiple] {
  min-height: 170px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(31, 111, 255, .72);
  box-shadow: 0 0 0 4px rgba(31, 111, 255, .11);
  outline: 0;
}

.contact-form input.is-invalid,
.contact-form select.is-invalid,
.contact-form textarea.is-invalid {
  border-color: #dc2626;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, .09);
}

.form-progress {
  display: grid;
  grid-template-columns: 30px 1fr 30px;
  align-items: center;
  gap: 10px;
  margin-bottom: 2px;
}

.form-progress span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 111, 255, .18);
  border-radius: 50%;
  background: #f3f7ff;
  color: #55719c;
  font-size: .78rem;
  font-weight: 900;
}

.form-progress span.active {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

.form-progress i {
  height: 1px;
  background: linear-gradient(90deg, rgba(31, 111, 255, .45), rgba(31, 111, 255, .08));
}

.form-field {
  display: grid;
  gap: 10px;
}

.requirement-method {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.requirement-method label {
  display: block;
  cursor: pointer;
}

.requirement-method input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.requirement-method span {
  display: grid;
  gap: 5px;
  min-height: 86px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.requirement-method strong {
  color: var(--ink);
  font-size: .92rem;
}

.requirement-method small {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.45;
}

.requirement-method input:checked + span {
  border-color: rgba(31, 111, 255, .7);
  background: rgba(31, 111, 255, .08);
  box-shadow: inset 0 0 0 1px rgba(31, 111, 255, .14);
}

.requirement-pane {
  display: grid;
  gap: 14px;
}

.requirement-pane[hidden] {
  display: none;
}

.upload-field {
  min-height: 154px;
  align-content: center;
  justify-items: center;
  padding: 28px;
  border: 1px dashed rgba(31, 111, 255, .45);
  border-radius: 12px;
  background: rgba(31, 111, 255, .06);
  text-align: center;
}

.upload-field input {
  max-width: 100%;
  margin-top: 6px;
  border-style: dashed;
  background: #fff;
}

.upload-field input.is-invalid {
  border-color: #dc2626;
}

.form-help {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 700;
  line-height: 1.6;
}

.form-label {
  color: var(--ink);
  font-size: .86rem;
  font-weight: 800;
}

.form-label span {
  color: var(--muted);
  font-size: .76rem;
  font-weight: 700;
}

.resource-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-form .resource-chip {
  display: block;
  gap: 0;
  cursor: pointer;
}

.contact-form .resource-chip input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form .resource-chip span {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 13px 11px 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  color: #1d3152;
  font-size: .82rem;
  font-weight: 850;
  text-align: left;
  box-shadow: 0 10px 24px rgba(9, 42, 92, .04);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}

.contact-form .resource-chip span:after {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border: 1px solid rgba(31, 111, 255, .24);
  border-radius: 50%;
  background: #f7faff;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.contact-form .resource-chip:hover span {
  transform: translateY(-1px);
  border-color: rgba(31, 111, 255, .35);
  box-shadow: 0 14px 30px rgba(9, 42, 92, .08);
}

.contact-form .resource-chip strong {
  font-size: .82rem;
  line-height: 1.25;
}

.contact-form .resource-chip input:checked + span {
  border-color: rgba(31, 111, 255, .72);
  background: linear-gradient(135deg, rgba(31, 111, 255, .12), rgba(255, 255, 255, .95));
  color: var(--blue);
  box-shadow: inset 0 0 0 1px rgba(31, 111, 255, .12), 0 14px 30px rgba(31, 111, 255, .08);
}

.contact-form .resource-chip input:checked + span:after {
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: inset 0 0 0 4px #fff;
}

.contact-form .resource-chip-field.is-invalid .resource-chip span {
  border-color: rgba(220, 38, 38, .65);
}

.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-form .form-actions .btn {
  flex: 1 1 140px;
}

.contact-form textarea {
  min-height: 145px;
  resize: vertical;
}

.form-message {
  border-radius: 6px;
  font-size: .92rem;
  font-weight: 800;
  line-height: 1.55;
  padding: 12px 14px;
}

.form-message[hidden] {
  display: none;
}

.form-message.success {
  background: rgba(36, 166, 91, .1);
  color: #11713a;
}

.form-message.error {
  background: rgba(220, 38, 38, .09);
  color: #b91c1c;
}

.contact-form button[disabled] {
  cursor: wait;
  opacity: .72;
  transform: none;
}

.success:not(.form-message) {
  display: none;
  margin-top: 14px;
  color: var(--green);
  font-weight: 900;
}

@media (max-width: 940px) {
  .container {
    width: min(100% - 34px, 720px);
  }

  .site-header {
    height: auto;
    min-height: 76px;
  }

  .nav-wrap {
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .hamburger {
    display: block;
    margin-left: auto;
  }

  .nav-links,
  .nav-actions {
    display: none;
    width: 100%;
  }

  .nav-links.open,
  .nav-actions.open {
    display: grid;
    gap: 12px;
  }

  .nav-links a {
    padding: 10px 0;
  }

  .nav-item {
    display: block;
  }

  .submenu {
    position: static;
    width: 100%;
    margin: 6px 0 10px;
    padding: 6px 0 6px 14px;
    border: 0;
    border-left: 1px solid var(--line);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    background: transparent;
  }

  .submenu a {
    padding: 9px 10px;
  }

  .hero .container,
  .split,
  .cta-box,
  .service-detail {
    grid-template-columns: 1fr;
  }

  .resource-summary {
    position: static;
  }

  .resource-chip-grid {
    grid-template-columns: 1fr;
  }

  .requirement-method {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .hero,
  .hero .container {
    min-height: auto;
  }

  .trust-grid,
  .card-grid,
  .industry-grid,
  .insight-grid,
  .why-grid,
  .page-grid,
  .process-grid,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .industry-card,
  .why-item {
    border: 0;
    border-top: 1px solid var(--line);
    justify-content: flex-start;
  }

  .why-item {
    padding: 22px 0;
    border-top-color: rgba(255, 255, 255, .16);
  }

  .why-item + .why-item {
    padding-left: 0;
  }

  .footer-bottom {
    flex-direction: column;
    margin-top: 18px;
  }

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

  .footer-nav {
    justify-content: flex-start;
    gap: 14px;
  }
}

/* Clean enterprise refresh inspired by the provided dark, minimal reference. */
body {
  color: #080b12;
  background: #fff;
}

.site-header {
  height: 92px;
  background: rgba(2, 4, 9, .82);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(22px);
}

.site-header.scrolled {
  background: rgba(2, 4, 9, .92);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .22);
}

.logo {
  width: 178px;
  height: 67px;
}

.nav-links {
  gap: 28px;
  color: rgba(255, 255, 255, .88);
  font-size: 13px;
  font-weight: 650;
}

.nav-links a {
  border: 0;
}

.nav-links a.active,
.nav-links a:hover {
  color: #fff;
}

.submenu-toggle:after {
  color: #5f9cff;
}

.submenu {
  border-color: rgba(255, 255, 255, .12);
  background: rgba(10, 14, 23, .96);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .3);
}

.submenu a {
  color: #fff;
}

.submenu a:hover {
  background: rgba(37, 99, 235, .16);
  color: #fff;
}

.submenu span {
  color: rgba(255, 255, 255, .55);
}

.btn {
  min-height: 44px;
  border-radius: 6px;
  font-weight: 720;
}

.btn.primary {
  background: linear-gradient(135deg, #0f63ff, #064bd7);
  box-shadow: 0 18px 42px rgba(10, 86, 232, .28);
}

.btn.outline {
  background: rgba(255, 255, 255, .02);
  color: #fff;
  border-color: rgba(255, 255, 255, .42);
}

.btn.dark {
  background: rgba(255, 255, 255, .03);
  border-color: rgba(255, 255, 255, .24);
  color: #fff;
}

.hamburger {
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .18);
  color: #fff;
}

.hero {
  min-height: 540px;
  margin-top: -92px;
  padding-top: 92px;
  background:
    radial-gradient(circle at 84% 42%, rgba(18, 78, 228, .34), transparent 22%),
    radial-gradient(circle at 64% 58%, rgba(20, 98, 255, .18), transparent 28%),
    linear-gradient(100deg, #010204 0%, #02050b 52%, #061225 100%);
}

.hero:before {
  inset: 16% -12% -24% 34%;
  height: auto;
  background:
    repeating-radial-gradient(ellipse at 68% 62%, rgba(72, 145, 255, .62) 0 1px, transparent 2px 11px),
    radial-gradient(ellipse at 60% 56%, rgba(28, 100, 242, .34), transparent 46%);
  opacity: .76;
  transform: rotate(-12deg) skewY(-8deg);
  filter: blur(.1px);
  mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 92%, transparent 100%);
  animation: neuralDrift 12s ease-in-out infinite alternate;
}

.hero:after {
  opacity: .12;
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at 72% 56%, #000 0%, transparent 66%);
}

.hero .container {
  min-height: 448px;
  grid-template-columns: .48fr .52fr;
}

.hero-copy {
  padding: 62px 0 70px;
}

.hero-eyebrow {
  margin: 0 0 22px !important;
  color: #2f7cff !important;
  font-size: 13px !important;
  font-weight: 850 !important;
  letter-spacing: .28em;
  line-height: 1.2 !important;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(58px, 7.4vw, 94px);
  line-height: .98;
  letter-spacing: -.055em;
  font-weight: 640;
}

.hero p:not(.hero-eyebrow) {
  max-width: 510px;
  color: rgba(255, 255, 255, .76);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 450;
}

.hero-proof {
  width: fit-content;
  display: grid;
  gap: 4px;
  margin: -4px 0 28px;
  padding-left: 16px;
  border-left: 2px solid rgba(120, 170, 255, .72);
  color: rgba(255, 255, 255, .68);
}

.hero-proof strong {
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  letter-spacing: .01em;
  text-transform: none;
  font-weight: 650;
}

.hero-proof span {
  color: #78aaff;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 760;
}

.hero-visual img {
  display: none;
}

.trust {
  padding: 58px 0 56px;
  text-align: left;
  border-bottom: 1px solid #e8ebf1;
}

.trust-layout {
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 76px;
  align-items: center;
}

.trust h2 {
  margin: 0;
  color: #0a0d14;
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 520;
}

.trust-grid {
  grid-template-columns: repeat(4, 1fr);
  max-width: none;
  gap: 16px;
}

.trust-item {
  min-height: 138px;
  display: grid;
  place-items: center;
  gap: 12px;
  border: 0;
  text-align: center;
}

.trust-item .icon {
  width: 38px;
  height: 38px;
  padding: 9px;
  border-radius: 50%;
  background: #f4f7ff;
}

.trust-item strong,
.trust-item span,
.trust-item small {
  text-align: center;
}

.trust-item strong {
  color: #05070c;
  font-size: 16px;
  font-weight: 780;
}

.trust-item span {
  color: #05070c;
  font-size: 13px;
  font-weight: 760;
}

.trust-item small {
  display: block;
  max-width: 135px;
  margin: 10px auto 0;
  color: #5a6472;
  font-size: 13px;
  line-height: 1.45;
}

.partner-section {
  padding: 26px 0 32px;
  margin-top: -1px;
  color: #fff;
  background:
    radial-gradient(circle at 86% 0%, rgba(47, 124, 255, .22), transparent 28%),
    linear-gradient(100deg, #02050b 0%, #061225 100%);
  border-top: 1px solid rgba(255, 255, 255, .08);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  overflow: hidden;
}

.partner-section.reveal {
  opacity: 1;
  transform: none;
  filter: none;
}

.partner-section:after {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 52%;
  height: 100%;
  background-image: radial-gradient(rgba(120, 170, 255, .2) 1px, transparent 1px);
  background-size: 20px 20px;
  mask-image: linear-gradient(90deg, transparent, #000 40%, transparent);
  opacity: .35;
  pointer-events: none;
}

.partner-layout {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.partner-intro {
  display: block;
}

.partner-section .section-copy {
  max-width: 300px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 12px;
  line-height: 1.55;
}

.partner-section .section-title {
  color: #fff;
  font-size: clamp(24px, 2vw, 32px);
}

.partner-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  background: rgba(255, 255, 255, .055);
  box-shadow: none;
  backdrop-filter: blur(16px);
  overflow: hidden;
}

.partner-proof {
  min-height: 126px;
  display: block;
  padding: 18px 16px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .1);
  border-radius: 0;
  background: transparent;
}

.partner-proof:last-child {
  border-right: 0;
}

.partner-proof strong {
  display: block;
  color: #78aaff;
  font-size: clamp(20px, 1.6vw, 26px);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 620;
}

.partner-proof span {
  display: block;
  margin-top: 12px;
  color: #fff;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 650;
}

.partner-proof p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: 11px;
  line-height: 1.45;
}

.section {
  padding: 78px 0;
}

.soft-section,
.industries-band,
.insight-band {
  background: #fbfcff;
  border-top: 1px solid #eef1f6;
  border-bottom: 1px solid #eef1f6;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head .section-title {
  max-width: 610px;
}

.eyebrow {
  color: #0f63ff;
  letter-spacing: .24em;
  font-size: 11px;
}

.section-title {
  color: #090b12;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 520;
}

.section-copy {
  color: #4c5564;
  font-weight: 450;
}

.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #111827;
  font-size: 14px;
  font-weight: 560;
  white-space: nowrap;
}

.link-cta span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #d9dde7;
  border-radius: 50%;
}

.six-grid {
  grid-template-columns: repeat(6, 1fr);
}

.service-card,
.insight-card,
.page-card,
.detail-panel,
.process-step {
  background: rgba(255, 255, 255, .8);
  border-color: #dfe4ee;
  border-radius: 10px;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

.service-card {
  min-height: 244px;
  padding: 30px 22px 24px;
}

.service-card:after,
.page-card:after {
  display: none;
}

.service-card h3,
.insight-card h3,
.page-card h3 {
  font-size: 15px;
  letter-spacing: -.01em;
}

.service-card p,
.insight-card p,
.page-card p {
  color: #4b5565;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 420;
}

.service-card:hover,
.insight-card:hover,
.page-card:hover {
  transform: translateY(-7px);
  border-color: #b8c7e7;
  box-shadow: 0 24px 60px rgba(8, 18, 38, .1);
}

.industry-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 6px;
}

.industry-grid {
  border-left-color: #e5e9f2;
}

.industry-card {
  min-height: 116px;
  border: 0;
  border-radius: 10px;
  color: #4c5564;
  font-weight: 500;
}

.industry-card .icon {
  color: #1c2430;
}

.industry-card:hover {
  background: #f4f7ff;
  color: #0f63ff;
}

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

.case-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(180deg, rgba(3, 7, 18, .2), rgba(3, 7, 18, .86)),
    url("images/technology-trends.jpg") center/cover;
  transition: transform .28s ease, box-shadow .28s ease;
}

.case-card:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(3, 7, 18, .2), rgba(3, 7, 18, .86)),
    url("images/case-study.jpg") center/cover;
}

.case-card:nth-child(3) {
  background:
    linear-gradient(180deg, rgba(3, 7, 18, .2), rgba(3, 7, 18, .86)),
    url("images/hero-people.png") center/cover;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .16);
}

.case-card span {
  color: #4d8cff;
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 850;
}

.case-card h3 {
  max-width: 330px;
  margin: 14px 0 20px;
  font-size: 20px;
  line-height: 1.28;
  letter-spacing: -.02em;
  font-weight: 520;
}

.case-card p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .88);
}

.engagement-head {
  align-items: start;
  margin-bottom: 38px;
}

.engagement-head .section-title {
  max-width: 620px;
}

.engagement-intro {
  max-width: 470px;
  margin: 8px 0 0;
  color: #4c5564;
  font-size: 15px;
  line-height: 1.75;
}

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

.engagement-card {
  min-height: 470px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px;
  border: 1px solid #dfe4ee;
  border-radius: 10px;
  background: rgba(255, 255, 255, .84);
  position: relative;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.engagement-card:hover {
  transform: translateY(-6px);
  border-color: #b8c7e7;
  box-shadow: 0 24px 60px rgba(8, 18, 38, .1);
}

.engagement-card.featured {
  color: #fff;
  background:
    radial-gradient(circle at 84% 8%, rgba(54, 132, 255, .42), transparent 34%),
    linear-gradient(150deg, #07101f 0%, #0b1f45 58%, #0f63ff 140%);
  border-color: rgba(15, 99, 255, .52);
  box-shadow: 0 28px 70px rgba(8, 18, 38, .16);
}

.engagement-card.featured:after {
  content: "";
  position: absolute;
  inset: auto -20% -35% 18%;
  height: 220px;
  background: repeating-radial-gradient(circle, rgba(255,255,255,.32) 0 1px, transparent 2px 12px);
  opacity: .2;
  transform: rotate(-12deg);
  pointer-events: none;
}

.engagement-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 4px;
}

.engagement-card span {
  color: #0f63ff;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 850;
}

.engagement-card small {
  padding: 7px 10px;
  border-radius: 999px;
  background: #f4f7ff;
  color: #50607c;
  font-size: 11px;
  font-weight: 720;
}

.engagement-card h3 {
  margin: 0;
  color: #090b12;
  font-size: 24px;
  line-height: 1.18;
  letter-spacing: -.025em;
  font-weight: 560;
}

.engagement-card p {
  margin: 0;
  color: #4c5564;
  font-size: 14px;
  line-height: 1.7;
}

.engagement-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.engagement-card li {
  color: #263241;
  font-size: 13px;
  line-height: 1.55;
}

.engagement-card li:before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: #0f63ff;
  vertical-align: 2px;
}

.engagement-fit {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #e5e9f2;
  color: #4c5564;
  font-size: 13px;
  line-height: 1.65;
}

.engagement-card strong {
  color: #111827;
}

.engagement-card.featured h3,
.engagement-card.featured strong {
  color: #fff;
}

.engagement-card.featured p,
.engagement-card.featured li,
.engagement-card.featured .engagement-fit {
  color: rgba(255, 255, 255, .78);
}

.engagement-card.featured small {
  background: rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .82);
}

.engagement-card.featured .engagement-fit {
  border-top-color: rgba(255, 255, 255, .16);
}

.engagement-card.featured li:before {
  background: #74a8ff;
}

.engagement-button {
  width: 100%;
  margin-top: 2px;
  z-index: 1;
}

.engagement-card.featured .engagement-button {
  background: #fff;
  color: #0b1f45;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
}

.logo-section {
  padding: 72px 0;
  background: #fff;
}

.logo-section h2 {
  max-width: 790px;
  color: #111827;
  font-weight: 500;
}

.client-logo {
  border-radius: 10px;
  box-shadow: none;
  background: #fff;
}

.why {
  background:
    radial-gradient(circle at 82% 38%, rgba(14, 91, 238, .34), transparent 34%),
    linear-gradient(100deg, #020407 0%, #061225 100%);
}

.why .section-title {
  color: #fff;
}

.cta-strip {
  padding: 0;
  background:
    radial-gradient(circle at 90% 35%, rgba(14, 91, 238, .42), transparent 24%),
    linear-gradient(100deg, #020407 0%, #061225 100%);
}

.cta-box {
  min-height: 132px;
  grid-template-columns: 1fr auto;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 42px 0;
}

.cta-box:after {
  display: none;
}

.cta-box h2 {
  color: #fff;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 520;
  letter-spacing: -.035em;
}

.cta-box p {
  max-width: 420px;
  color: rgba(255, 255, 255, .64);
  font-weight: 420;
}

.footer {
  background:
    radial-gradient(circle at 100% 0%, rgba(18, 78, 228, .12), transparent 30%),
    #0a0d12;
}

.footer-logo {
  filter: none;
}

.page-hero {
  background:
    radial-gradient(circle at 82% 45%, rgba(18, 78, 228, .28), transparent 24%),
    linear-gradient(100deg, #020407 0%, #061225 100%);
}

.page-hero h1 {
  font-weight: 540;
}

.about-hero {
  min-height: 610px;
  margin-top: -92px;
  padding-top: 92px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(2, 4, 9, .96) 0%, rgba(2, 4, 9, .86) 42%, rgba(2, 4, 9, .24) 100%),
    radial-gradient(circle at 78% 35%, rgba(15, 99, 255, .18), transparent 28%),
    linear-gradient(120deg, #020407 0%, #101923 55%, #03060c 100%);
  position: relative;
  overflow: hidden;
}

.about-hero:before {
  content: "";
  position: absolute;
  inset: 92px 0 0 48%;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .08), transparent 1px) 0 0 / 92px 100%,
    linear-gradient(180deg, rgba(255, 255, 255, .07), transparent 1px) 0 0 / 100% 86px,
    radial-gradient(circle at 64% 54%, rgba(255, 255, 255, .12), transparent 11%),
    linear-gradient(180deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, 0));
  opacity: .7;
}

.about-hero:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(760px, 58vw);
  height: 330px;
  background:
    linear-gradient(90deg, transparent 0 14%, rgba(255,255,255,.13) 14% 15%, transparent 15% 31%, rgba(255,255,255,.12) 31% 32%, transparent 32%),
    repeating-linear-gradient(90deg, transparent 0 58px, rgba(255,255,255,.18) 59px 61px, transparent 62px 96px);
  opacity: .42;
  transform: perspective(700px) rotateX(58deg) translateY(60px);
  transform-origin: bottom;
}

.about-hero-grid {
  min-height: 518px;
  display: grid;
  grid-template-columns: .55fr .45fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-hero h1 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(46px, 5.4vw, 76px);
  line-height: 1.06;
  letter-spacing: -.055em;
  font-weight: 520;
}

.about-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.75;
}

.hero-rule {
  display: block;
  width: 44px;
  height: 2px;
  margin-top: 30px;
  background: #0f63ff;
}

.about-boardroom {
  min-height: 310px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .1);
  background:
    linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    radial-gradient(circle at 55% 35%, rgba(255,255,255,.11), transparent 20%);
  box-shadow: inset 0 0 90px rgba(255,255,255,.04), 0 40px 110px rgba(0,0,0,.35);
  backdrop-filter: blur(12px);
}

.about-boardroom img {
  width: min(310px, 70%);
  opacity: .96;
}

.about-proof {
  position: relative;
  z-index: 2;
  margin-top: -64px;
}

.proof-card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 34px 40px;
  border: 1px solid rgba(223, 228, 238, .9);
  border-radius: 10px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 28px 80px rgba(8, 18, 38, .13);
  backdrop-filter: blur(18px);
}

.proof-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 22px;
  padding: 8px 26px;
  border-right: 1px solid #e4e8f0;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item .icon {
  width: 50px;
  height: 50px;
}

.proof-item h3,
.value-item h3,
.office-card h3 {
  margin: 0 0 10px;
  color: #090b12;
  font-size: 16px;
}

.proof-item p,
.value-item p,
.office-card p {
  margin: 0;
  color: #4c5564;
  font-size: 13px;
  line-height: 1.65;
}

.story-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 72px;
  align-items: start;
}

.about-model-card {
  width: min(520px, 100%);
  margin-left: auto;
  padding: 22px;
  border: 1px solid rgba(203, 218, 239, .85);
  border-radius: 14px;
  background:
    radial-gradient(circle at 90% 8%, rgba(31, 111, 255, .12), transparent 28%),
    linear-gradient(180deg, #fff, #f8fbff);
  box-shadow: 0 28px 70px rgba(8, 18, 38, .09);
}

.model-header {
  padding-bottom: 14px;
  border-bottom: 1px solid #dfe7f5;
}

.model-header .eyebrow {
  color: var(--blue);
}

.model-header h3 {
  margin: 0;
  color: #090b12;
  font-size: clamp(26px, 2.8vw, 34px);
  line-height: 1.12;
  letter-spacing: -.04em;
}

.model-header p {
  margin: 10px 0 0;
  color: #4c5564;
  font-weight: 650;
  line-height: 1.5;
}

.model-steps {
  display: grid;
  gap: 0;
}

.model-steps div {
  display: grid;
  grid-template-columns: 44px 1fr;
  column-gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #dfe7f5;
}

.model-steps div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.model-steps span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf4ff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.model-steps strong {
  display: block;
  color: #09162a;
  font-size: 18px;
  line-height: 1.2;
}

.model-steps p {
  grid-column: 2;
  margin: 6px 0 0;
  color: #56667c;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.42;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 46px;
}

.team-band {
  min-height: 260px;
  display: grid;
  align-items: end;
  margin-top: -18px;
  padding: 70px 0 42px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #061225;
}

.team-band:before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(3, 10, 23, .72), rgba(3, 10, 23, .38) 46%, rgba(3, 10, 23, .66));
  pointer-events: none;
}

.team-band:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url("images/invent-team-outdoor-small.png") center 58% / cover no-repeat;
  filter: grayscale(1) contrast(1.02) brightness(1.04);
  pointer-events: none;
}

.team-band .container {
  position: relative;
  z-index: 1;
}

.team-band .eyebrow {
  color: #78aaff;
}

  .team-band h2 {
    max-width: 650px;
    margin: 0;
    color: #fff;
    font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.04em;
}

@media (max-width: 940px) {
  .site-header {
    background: rgba(2, 4, 9, .96);
  }

  .nav-wrap {
    gap: 12px;
  }

  .site-header .logo {
    width: 150px;
    height: 56px;
  }

  .hamburger {
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    background: rgba(31, 111, 255, .95);
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
    box-shadow: 0 12px 28px rgba(31, 111, 255, .28);
    z-index: 20;
  }

  .nav-links.open,
  .nav-actions.open {
    width: 100%;
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    background: rgba(5, 12, 25, .98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
  }

  .nav-links.open a,
  .nav-links.open .submenu a {
    color: #fff;
  }

  .nav-links.open a.active {
    color: #78aaff;
  }

  .nav-links.open .submenu {
    margin: 4px 0 8px;
    padding-left: 12px;
    border-left-color: rgba(120, 170, 255, .28);
  }

  .nav-links.open .submenu span {
    color: rgba(255, 255, 255, .62);
  }

  .nav-actions.open {
    margin-top: 0;
  }

  .nav-actions.open .btn {
    width: 100%;
  }
}

.value-item {
  min-height: 150px;
  padding: 0 28px;
  border-right: 1px solid #dfe4ee;
}

.value-item:first-child {
  padding-left: 0;
}

.value-item:last-child {
  border-right: 0;
}

.value-item .icon {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
}

.offices-section {
  background: #fff;
}

.office-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.office-card {
  padding: 30px;
  border: 1px solid #dfe4ee;
  border-radius: 10px;
  background: #fbfcff;
}

.office-mini {
  display: grid;
  gap: 16px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid #dfe4ee;
}

.contact-line,
.office-contact,
.contact-socials {
  display: grid;
  gap: 5px;
}

.contact-line span,
.contact-socials > span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.contact-line a,
.office-contact a,
.contact-socials a {
  color: var(--blue);
  font-weight: 850;
}

.contact-socials div {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-socials a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid #dfe7f5;
  border-radius: 999px;
  background: #fff;
}

.contact-socials svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.office-mini h3 {
  margin: 0;
  font-size: 15px;
}

.office-mini p {
  margin: 0;
  color: #4c5564;
  line-height: 1.65;
}

.industry-detail-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 24px;
  align-items: stretch;
}

.industry-panel {
  padding: 34px;
  border: 1px solid #dfe4ee;
  border-radius: 10px;
  background: #fff;
}

.industry-panel h2,
.industry-panel h3 {
  margin: 0 0 16px;
  color: #090b12;
  letter-spacing: -.025em;
}

.industry-panel h2 {
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.12;
  font-weight: 520;
}

.industry-panel p {
  margin: 0;
  color: #4c5564;
  line-height: 1.75;
}

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

.industry-list li {
  color: #263241;
  line-height: 1.6;
  font-weight: 520;
}

.industry-list li:before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 11px;
  border-radius: 50%;
  background: #0f63ff;
  vertical-align: 2px;
}

.outcome-grid,
.relevant-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.outcome-card,
.relevant-card {
  padding: 26px;
  border: 1px solid #dfe4ee;
  border-radius: 10px;
  background: rgba(255, 255, 255, .82);
}

.outcome-card strong,
.relevant-card strong {
  display: block;
  margin-bottom: 10px;
  color: #0f63ff;
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.outcome-card p,
.relevant-card p {
  margin: 0;
  color: #4c5564;
  font-size: 14px;
  line-height: 1.65;
}

.case-study-list {
  display: grid;
  gap: 22px;
}

.case-study-detail {
  display: grid;
  grid-template-columns: .42fr .58fr;
  gap: 34px;
  padding: 38px;
  border: 1px solid #dfe4ee;
  border-radius: 10px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 18px 50px rgba(8, 18, 38, .07);
}

.case-study-heading h2 {
  margin: 0;
  color: #090b12;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  letter-spacing: -.045em;
  font-weight: 520;
}

.case-meta {
  display: inline-grid;
  gap: 7px;
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid #dfe4ee;
  border-radius: 10px;
  background: #fbfcff;
  color: #182230;
  font-weight: 650;
}

.case-meta span {
  color: #0f63ff;
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 850;
}

.case-study-body {
  display: grid;
  gap: 28px;
}

.case-study-body h3 {
  margin: 0 0 12px;
  color: #090b12;
  font-size: 17px;
}

.case-study-body p {
  margin: 0 0 14px;
  color: #4c5564;
  line-height: 1.75;
}

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

@keyframes neuralDrift {
  from { transform: rotate(-12deg) skewY(-8deg) translateX(-24px) translateY(8px); }
  to { transform: rotate(-12deg) skewY(-8deg) translateX(24px) translateY(-10px); }
}

@media (max-width: 1180px) {
  .six-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .nav-actions {
    display: none;
  }
}

@media (max-width: 940px) {
  .site-header {
    min-height: 76px;
  }

  .nav-links,
  .nav-actions {
    color: #fff;
  }

  .nav-actions.open {
    display: grid;
  }

  .submenu {
    background: transparent;
    border-left-color: rgba(255, 255, 255, .14);
  }

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

  .hero-copy {
    padding: 44px 0 52px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 70px);
  }

  .trust-layout,
  .partner-layout,
  .section-head,
  .cta-box {
    grid-template-columns: 1fr;
    display: grid;
  }

  .partner-section {
    padding: 24px 0 28px;
  }

  .partner-layout {
    gap: 20px;
  }

  .partner-intro {
    display: block;
  }

  .partner-section .section-title {
    font-size: 28px;
  }

  .partner-section .section-copy {
    max-width: none;
    margin-top: 12px;
  }

  .about-hero {
    margin-top: -76px;
    padding-top: 76px;
  }

  .about-hero-grid,
  .proof-card,
  .story-grid,
  .values-grid,
  .office-grid,
  .industry-detail-grid,
  .outcome-grid,
  .relevant-grid,
  .case-study-detail,
  .case-columns {
    grid-template-columns: 1fr;
  }

  .about-boardroom {
    min-height: 220px;
  }

  .proof-card {
    padding: 22px;
  }

  .proof-item,
  .value-item {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid #e4e8f0;
  }

  .proof-item:last-child,
  .value-item:last-child {
    border-bottom: 0;
  }

  .about-model-card {
    margin-left: 0;
    padding: 26px;
  }

  .trust-layout {
    gap: 26px;
  }

  .trust-grid,
  .six-grid,
  .industry-row,
  .case-grid,
  .engagement-grid {
    grid-template-columns: 1fr;
  }

  .partner-proof-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(180px, 70%);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .partner-proof {
    min-height: auto;
    display: block;
    padding: 16px;
    border-right: 1px solid rgba(255, 255, 255, .1);
    border-bottom: 0;
    scroll-snap-align: start;
  }

  .partner-proof strong {
    font-size: 22px;
  }

  .partner-proof span {
    margin-top: 12px;
  }

  .partner-proof p {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.5;
  }

  .partner-proof:last-child {
    border-right: 0;
  }

  .section-head {
    align-items: start;
  }

  .link-cta {
    justify-self: start;
  }
}

@media (max-width: 940px) {
  .site-header {
    height: auto;
    min-height: 76px;
    overflow: visible;
  }

  .nav-wrap {
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
  }

  .site-header .logo {
    width: 150px;
    height: 56px;
  }

  .hamburger {
    display: grid;
    place-items: center;
    flex: 0 0 44px;
    margin-left: auto;
    background: rgba(31, 111, 255, .95);
    border-color: rgba(255, 255, 255, .2);
    color: #fff;
    box-shadow: 0 12px 28px rgba(31, 111, 255, .28);
  }

  .nav-links,
  .nav-actions {
    display: none;
    width: 100%;
  }

  .nav-links.open,
  .nav-actions.open {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    background: rgba(5, 12, 25, .98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
  }

  .nav-links.open {
    align-content: start;
    max-height: min(66vh, 560px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open a,
  .nav-links.open .submenu a {
    color: #fff;
  }

  .nav-links.open a.active {
    color: #78aaff;
  }

  .nav-links.open .submenu {
    margin: 4px 0 8px;
    padding-left: 12px;
    border-left-color: rgba(120, 170, 255, .28);
    background: transparent;
  }

  .nav-links.open .submenu span {
    color: rgba(255, 255, 255, .62);
  }

  .nav-actions.open .btn {
    width: 100%;
    justify-content: center;
  }
}
