:root {
  --navy-950: #030b18;
  --navy-900: #061326;
  --navy-850: #081a31;
  --navy-800: #0b2340;
  --blue-700: #0a4f88;
  --cyan-500: #50c7ff;
  --cyan-400: #72d3ff;
  --ice-100: #eaf7ff;
  --white: #fff;
  --ink: #07101d;
  --slate: #54677a;
  --line-dark: rgba(151, 205, 241, 0.2);
  --line-light: #d9e1e8;
  --surface: #f4f7f9;
  --container: 1380px;
  --header-height: 84px;
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

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

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

::selection {
  color: var(--navy-950);
  background: var(--cyan-400);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--navy-950);
  background: var(--cyan-400);
  transform: translateY(-160%);
}

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

.section {
  padding-block: 120px;
}

.section-label {
  margin: 0 0 20px;
  color: var(--cyan-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.section-label.dark {
  color: var(--blue-700);
}

.display-title {
  margin: 0;
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 500;
  line-height: 0.97;
  letter-spacing: -0.065em;
}

.section-title {
  margin: 0;
  font-size: clamp(39px, 4.8vw, 72px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.lead {
  color: var(--slate);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 54px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: color 220ms var(--ease), background 220ms var(--ease), border 220ms var(--ease);
}

.button-primary {
  color: var(--navy-950);
  background: var(--cyan-400);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--white);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.button-outline:hover,
.button-outline:focus-visible {
  color: var(--navy-950);
  background: var(--white);
}

.button-dark {
  color: var(--white);
  background: var(--navy-950);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--navy-950);
  background: var(--cyan-400);
}

.button-light {
  color: var(--navy-950);
  background: var(--white);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 6px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.text-link span {
  transition: transform 200ms var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

/* Header */
.site-shell {
  position: relative;
  z-index: 100;
}

.utility-bar {
  position: relative;
  z-index: 102;
  height: 34px;
  color: #8da9c0;
  background: var(--navy-950);
  border-bottom: 1px solid var(--line-dark);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.utility-inner,
.utility-inner > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.utility-inner > div {
  gap: 28px;
}

.utility-inner a {
  color: var(--ice-100);
  text-decoration: none;
}

.site-header {
  position: absolute;
  z-index: 101;
  top: 34px;
  right: 0;
  left: 0;
  color: var(--white);
  background: rgba(3, 11, 24, 0.18);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(12px);
  transition: background 260ms var(--ease), transform 260ms var(--ease);
}

.site-header.is-scrolled {
  position: fixed;
  top: 0;
  background: rgba(3, 11, 24, 0.96);
}

body:not(.home) .site-header {
  background: rgba(3, 11, 24, 0.96);
}

.header-inner {
  display: grid;
  grid-template-columns: minmax(260px, auto) 1fr auto;
  gap: 48px;
  align-items: center;
  height: var(--header-height);
}

.brand {
  width: auto;
  max-width: 100%;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  width: max-content;
}

.brand-mark {
  width: 48px;
  height: auto;
  flex-shrink: 0;
}

.brand-word {
  width: 205px;
  height: auto;
  filter: invert(1);
}

.desktop-nav {
  display: flex;
  align-items: stretch;
  justify-content: center;
  height: 100%;
}

.desktop-nav > a,
.nav-services-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 0 22px;
  color: #cad9e6;
  background: none;
  border: 0;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.desktop-nav > a:hover,
.desktop-nav > a:focus-visible,
.desktop-nav > a[aria-current="page"],
.nav-services-trigger:hover,
.nav-services-trigger:focus-visible,
.nav-services-trigger[aria-expanded="true"] {
  color: var(--white);
}

.nav-services-trigger span {
  color: var(--cyan-400);
  font-size: 15px;
  transition: transform 180ms var(--ease);
}

.nav-services-trigger[aria-expanded="true"] span {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: static;
  height: 100%;
}

.mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  visibility: hidden;
  color: var(--white);
  background: #07172c;
  border-top: 1px solid var(--line-dark);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms;
}

.nav-dropdown.is-open .mega-menu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 70px;
  padding-block: 44px 52px;
}

.mega-intro {
  padding-right: 70px;
  border-right: 1px solid var(--line-dark);
}

.mega-intro > p:not(.section-label) {
  margin: 0 0 28px;
  color: #91abc0;
  line-height: 1.65;
}

.mega-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.mega-links > a {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 16px;
  align-items: start;
  min-height: 142px;
  padding: 24px;
  text-decoration: none;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  transition: background 180ms var(--ease);
}

.mega-links > a:nth-child(2n) {
  border-right: 0;
}

.mega-links > a:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.mega-links > a:hover {
  background: rgba(80, 199, 255, 0.07);
}

.mega-links > a > span {
  color: var(--cyan-400);
  font-size: 11px;
}

.mega-links strong {
  display: block;
  margin-bottom: 9px;
  font-size: 16px;
}

.mega-links small {
  display: block;
  color: #87a0b5;
  line-height: 1.5;
}

.mega-links i {
  color: var(--cyan-400);
  font-style: normal;
}

.header-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 46px;
  padding: 0 17px;
  color: var(--navy-950);
  background: var(--cyan-400);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.header-cta:hover {
  background: var(--white);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 13px;
  background: none;
  border: 1px solid var(--line-dark);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 6px 0;
  background: var(--white);
  transition: transform 180ms var(--ease);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(2) {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 99;
  inset: 0;
  visibility: hidden;
  padding-top: calc(34px + var(--header-height));
  overflow-y: auto;
  color: var(--white);
  background: var(--navy-950);
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms;
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-inner {
  display: grid;
  min-height: calc(100dvh - 34px - var(--header-height));
  padding: 30px 24px 34px;
}

.mobile-menu nav > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.04em;
  text-decoration: none;
  border-bottom: 1px solid var(--line-dark);
}

.mobile-menu nav > a span {
  color: var(--cyan-400);
  font-size: 17px;
}

.mobile-services {
  padding: 26px 0;
  border-bottom: 1px solid var(--line-dark);
}

.mobile-services p {
  margin: 0 0 15px;
  color: #6f8ba2;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mobile-services a {
  display: grid;
  grid-template-columns: 30px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  font-size: 17px;
  text-decoration: none;
}

.mobile-services small {
  color: var(--cyan-400);
}

.mobile-menu-footer {
  align-self: end;
  padding-top: 44px;
  color: #91a8bc;
}

.mobile-menu-footer a {
  color: var(--cyan-400);
  font-size: 18px;
  text-decoration: none;
}

/* Home hero */
.home-hero {
  position: relative;
  display: grid;
  min-height: 900px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.home-hero::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 11, 24, 0.96) 0%, rgba(3, 11, 24, 0.63) 42%, rgba(3, 11, 24, 0.08) 75%),
    linear-gradient(0deg, rgba(3, 11, 24, 0.65), transparent 42%);
}

.home-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(114, 211, 255, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 211, 255, 0.09) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to right, black, transparent 68%);
}

.home-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 880px) 1fr;
  gap: 60px;
  align-items: end;
  padding-top: 245px;
  padding-bottom: 78px;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 28px;
  color: #c9deee;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-kicker::before {
  width: 34px;
  height: 1px;
  content: "";
  background: var(--cyan-400);
}

.home-hero h1 {
  max-width: 900px;
  margin: 0 0 34px;
  font-size: clamp(65px, 8.1vw, 126px);
  font-weight: 500;
  line-height: 0.89;
  letter-spacing: -0.075em;
}

.home-hero h1 span {
  color: var(--cyan-400);
}

.hero-intro {
  display: grid;
  grid-template-columns: minmax(0, 520px) auto;
  gap: 34px;
  align-items: end;
}

.hero-intro p {
  margin: 0;
  color: #b3c9da;
  font-size: 18px;
  line-height: 1.6;
}

.hero-aside {
  justify-self: end;
  width: min(100%, 330px);
}

.hero-aside-item {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  padding: 19px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-aside-item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-aside-item strong {
  color: var(--cyan-400);
  font-size: 11px;
}

.hero-aside-item span {
  font-size: 14px;
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 50px;
  color: #b3c9da;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-decoration: none;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

/* Home sections */
.signal-strip {
  color: #a7bfd2;
  background: var(--navy-950);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}

.signal-track {
  display: flex;
  width: max-content;
  animation: signal 28s linear infinite;
}

.signal-track span {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 22px 34px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.signal-track span::after {
  color: var(--cyan-400);
  content: "◆";
  font-size: 7px;
}

@keyframes signal {
  to { transform: translateX(-50%); }
}

.intro-section {
  background: var(--white);
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 8vw;
}

.intro-content .section-title {
  max-width: 1030px;
  margin-bottom: 44px;
}

.intro-lower {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.intro-lower p {
  max-width: 560px;
  margin: 0;
  color: var(--slate);
  font-size: 18px;
  line-height: 1.7;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 90px;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.proof-item {
  min-height: 155px;
  padding: 30px;
  border-right: 1px solid var(--line-light);
}

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

.proof-item strong {
  display: block;
  margin-bottom: 14px;
  color: var(--blue-700);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.proof-item span {
  display: block;
  max-width: 300px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.services-section {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(13, 95, 156, 0.25), transparent 30%),
    var(--navy-900);
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: end;
  margin-bottom: 70px;
}

.section-heading-row > div {
  max-width: 920px;
}

.section-heading-row > p {
  max-width: 520px;
  margin: 0;
  color: var(--slate);
  line-height: 1.65;
}

.services-section .section-heading-row > p,
.scope-section .section-heading-row > p {
  color: #91a9bd;
}

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

.service-row {
  position: relative;
  display: grid;
  grid-template-columns: 90px 1.05fr 0.72fr 66px;
  gap: 34px;
  align-items: center;
  min-height: 210px;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid var(--line-dark);
  transition: background 220ms var(--ease);
}

.service-row:hover {
  background: rgba(80, 199, 255, 0.055);
}

.service-row > span:first-child {
  color: var(--cyan-400);
  font-size: 12px;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(29px, 3vw, 49px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.service-row p {
  margin: 0;
  color: #8fa8bc;
  line-height: 1.6;
}

.service-row > span:last-child {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  transition: color 200ms var(--ease), background 200ms var(--ease), transform 200ms var(--ease);
}

.service-row:hover > span:last-child {
  color: var(--navy-950);
  background: var(--cyan-400);
  transform: rotate(45deg);
}

.nexus-statement {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.nexus-statement img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.nexus-statement::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--navy-950) 0%, rgba(3, 11, 24, 0.62) 58%, rgba(3, 11, 24, 0.2));
}

.statement-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 8vw;
  align-items: end;
  min-height: 820px;
  padding-block: 100px;
}

.statement-copy h2 {
  max-width: 930px;
  margin: 0 0 42px;
  font-size: clamp(51px, 6vw, 96px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.statement-copy h2 span {
  color: var(--cyan-400);
}

.statement-copy p {
  max-width: 620px;
  margin: 0;
  color: #a9bfd0;
  font-size: 19px;
  line-height: 1.65;
}

.method-section {
  background: var(--surface);
}

.method-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 7vw;
}

.method-sticky {
  position: sticky;
  top: 130px;
  height: fit-content;
}

.method-sticky .section-title {
  max-width: 560px;
  margin-bottom: 32px;
}

.method-sticky p:not(.section-label) {
  max-width: 490px;
  color: var(--slate);
  line-height: 1.7;
}

.method-steps {
  border-top: 1px solid #becbd5;
}

.method-step {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 34px;
  min-height: 215px;
  padding: 38px 0;
  border-bottom: 1px solid #becbd5;
}

.method-step > span {
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 700;
}

.method-step h3 {
  margin: 0 0 14px;
  font-size: clamp(26px, 2.7vw, 42px);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.method-step p {
  max-width: 620px;
  margin: 0;
  color: var(--slate);
  line-height: 1.65;
}

.field-section {
  color: var(--white);
  background: var(--navy-900);
}

.field-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 660px;
}

.field-image {
  position: relative;
  min-height: 600px;
  overflow: hidden;
}

.field-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease);
}

.field-image:hover img {
  transform: scale(1.03);
}

.field-content {
  display: grid;
  align-content: center;
  padding: 7vw;
  background:
    linear-gradient(rgba(114, 211, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 211, 255, 0.07) 1px, transparent 1px),
    var(--navy-900);
  background-size: 72px 72px;
}

.field-content h2 {
  margin: 0 0 28px;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.field-content > p:not(.section-label) {
  max-width: 610px;
  margin: 0 0 40px;
  color: #9db4c6;
  line-height: 1.7;
}

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

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

.principle {
  min-height: 340px;
  padding: 38px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.principle > span {
  display: block;
  margin-bottom: 98px;
  color: var(--blue-700);
  font-size: 12px;
  font-weight: 700;
}

.principle h3 {
  margin: 0 0 17px;
  font-size: 29px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.principle p {
  margin: 0;
  color: var(--slate);
  line-height: 1.65;
}

.cta-section {
  color: var(--navy-950);
  background: var(--cyan-400);
}

.cta-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: end;
  padding-block: 95px;
}

.cta-layout h2 {
  max-width: 930px;
  margin: 0;
  font-size: clamp(48px, 6vw, 92px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: -0.065em;
}

/* Interior page hero */
.page-hero {
  position: relative;
  display: grid;
  min-height: 620px;
  padding-top: 160px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 30%, rgba(22, 116, 184, 0.32), transparent 28%),
    var(--navy-950);
}

.page-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(114, 211, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 211, 255, 0.08) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(to right, black, transparent 85%);
}

.page-hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 7vw;
  align-items: end;
  padding-bottom: 80px;
}

.page-hero-title h1 {
  max-width: 1000px;
  margin: 0;
  font-size: clamp(55px, 7vw, 108px);
  font-weight: 500;
  line-height: 0.91;
  letter-spacing: -0.07em;
}

.page-hero-side {
  max-width: 470px;
  justify-self: end;
  color: #a9bfd0;
  font-size: 18px;
  line-height: 1.65;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 30px;
  color: #7994aa;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.breadcrumb a {
  text-decoration: none;
}

.breadcrumb span {
  color: var(--cyan-400);
}

/* Services hub */
.services-intro {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 8vw;
}

.services-intro .lead {
  max-width: 900px;
  margin: 0;
}

.services-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 90px;
}

.service-hub-card {
  position: relative;
  display: grid;
  min-height: 610px;
  overflow: hidden;
  color: var(--white);
  text-decoration: none;
  background: var(--navy-900);
}

.service-hub-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.service-hub-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 11, 24, 0.96), rgba(3, 11, 24, 0.1) 70%);
}

.service-hub-card:hover img {
  transform: scale(1.035);
}

.service-hub-content {
  position: relative;
  z-index: 1;
  align-self: end;
  padding: 42px;
}

.service-hub-content > span {
  display: block;
  margin-bottom: 20px;
  color: var(--cyan-400);
  font-size: 12px;
}

.service-hub-content h2 {
  max-width: 580px;
  margin: 0 0 18px;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}

.service-hub-content p {
  max-width: 610px;
  margin: 0;
  color: #b7cad8;
  line-height: 1.6;
}

/* Service detail */
.service-hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.service-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.64;
}

.service-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 11, 24, 0.98), rgba(3, 11, 24, 0.48) 62%, rgba(3, 11, 24, 0.1)),
    linear-gradient(0deg, rgba(3, 11, 24, 0.7), transparent 45%);
}

.service-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 820px;
  padding-top: 180px;
  padding-bottom: 76px;
}

.service-number {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 30px;
  color: var(--cyan-400);
  border: 1px solid rgba(114, 211, 255, 0.5);
  border-radius: 50%;
  font-size: 12px;
}

.service-hero h1 {
  max-width: 1000px;
  margin: 0 0 30px;
  font-size: clamp(54px, 7.2vw, 110px);
  font-weight: 500;
  line-height: 0.91;
  letter-spacing: -0.07em;
}

.service-hero-copy {
  display: grid;
  grid-template-columns: minmax(0, 660px) auto;
  gap: 50px;
  align-items: end;
}

.service-hero-copy p {
  margin: 0;
  color: #b4c9d8;
  font-size: 19px;
  line-height: 1.65;
}

.service-overview {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  gap: 8vw;
}

.service-overview h2 {
  max-width: 900px;
  margin: 0 0 34px;
  font-size: clamp(42px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.service-overview .lead {
  max-width: 820px;
}

.needs-section {
  color: var(--white);
  background: var(--navy-900);
}

.needs-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 8vw;
}

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

.need-item {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 26px;
  align-items: center;
  min-height: 104px;
  border-bottom: 1px solid var(--line-dark);
}

.need-item span {
  color: var(--cyan-400);
  font-size: 11px;
}

.need-item strong {
  font-size: 19px;
  font-weight: 500;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 70px;
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.offer-card {
  min-height: 280px;
  padding: 38px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.offer-card > span {
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 700;
}

.offer-card h3 {
  margin: 80px 0 16px;
  font-size: 27px;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.offer-card p {
  margin: 0;
  color: var(--slate);
  line-height: 1.65;
}

.offers-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(80, 199, 255, 0.13), transparent 25%),
    #edf3f7;
}

.offers-section .offers-grid {
  background: rgba(255, 255, 255, 0.72);
  border-color: #cbd8e2;
}

.offers-section .offer-card {
  background: rgba(255, 255, 255, 0.76);
  border-color: #cbd8e2;
  transition: color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
}

.offers-section .offer-card:hover {
  color: var(--white);
  background: var(--navy-850);
  transform: translateY(-4px);
}

.offers-section .offer-card:hover p {
  color: #a9bfd0;
}

.offers-section .offer-card:hover > span {
  color: var(--cyan-400);
}

.outcomes-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.outcomes-image {
  min-height: 630px;
}

.outcomes-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.outcomes-copy {
  display: grid;
  align-content: center;
  padding: 7vw;
  color: var(--white);
  background: var(--navy-950);
}

.outcomes-copy h2 {
  margin: 0 0 42px;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}

.outcome {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line-dark);
}

.outcome span {
  color: var(--cyan-400);
  font-size: 11px;
}

/* Company */
.company-story {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
  align-items: start;
}

.company-story-media {
  position: sticky;
  top: 120px;
}

.company-story-media img {
  width: 100%;
  max-height: 790px;
  object-fit: cover;
}

.company-story-copy {
  padding-top: 50px;
}

.company-story-copy h2 {
  margin: 0 0 38px;
  font-size: clamp(45px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.company-story-copy > p:not(.section-label) {
  color: var(--slate);
  font-size: 19px;
  line-height: 1.75;
}

.company-points {
  margin-top: 60px;
  border-top: 1px solid var(--line-light);
}

.company-point {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-light);
}

.company-point span {
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 700;
}

.company-point h3 {
  margin: 0 0 9px;
  font-size: 24px;
  font-weight: 500;
}

.company-point p {
  margin: 0;
  color: var(--slate);
}

.scope-section {
  color: var(--white);
  background: var(--navy-900);
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin-top: 70px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.scope-card {
  min-height: 300px;
  padding: 40px;
  background: var(--navy-900);
}

.scope-card span {
  color: var(--cyan-400);
  font-size: 11px;
}

.scope-card h3 {
  margin: 75px 0 15px;
  font-size: 31px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.scope-card p {
  margin: 0;
  color: #93acbf;
  line-height: 1.65;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 8vw;
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: 120px;
}

.contact-aside h2 {
  margin: 0 0 28px;
  font-size: clamp(39px, 4vw, 62px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -0.05em;
}

.contact-aside > p:not(.section-label) {
  color: var(--slate);
  line-height: 1.7;
}

.contact-email {
  display: block;
  margin-top: 34px;
  color: var(--blue-700);
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 600;
  text-decoration: none;
}

.contact-note {
  margin-top: 55px;
  padding-top: 30px;
  border-top: 1px solid var(--line-light);
}

.contact-note strong {
  display: block;
  margin-bottom: 10px;
}

.contact-note p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
}

.contact-form {
  padding: 48px;
  background: var(--surface);
}

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

.form-heading h2 {
  margin: 0 0 12px;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.form-heading p {
  margin: 0;
  color: var(--slate);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 24px;
}

.form-group {
  display: grid;
  gap: 9px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label,
.form-legend {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  color: var(--ink);
  background: var(--white);
  border: 1px solid #c8d3dc;
  border-radius: 0;
  outline: none;
  transition: border 180ms var(--ease), box-shadow 180ms var(--ease);
}

.form-group input,
.form-group select {
  height: 54px;
  padding: 0 16px;
}

.form-group textarea {
  min-height: 180px;
  padding: 16px;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(10, 79, 136, 0.11);
}

.form-group .field-error {
  margin: 0;
  color: #a31717;
  font-size: 13px;
}

.form-notice {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--slate);
  font-size: 13px;
  line-height: 1.6;
}

.form-notice a {
  color: var(--blue-700);
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 12px;
}

.form-required {
  color: var(--slate);
  font-size: 12px;
}

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

.alert {
  margin-bottom: 28px;
  padding: 16px 18px;
  border: 1px solid;
}

.alert-error {
  color: #7a1515;
  background: #fff0f0;
  border-color: #e5b1b1;
}

.alert-success {
  color: #0e552e;
  background: #edfff5;
  border-color: #9ed7b7;
}

.success-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 70px;
  text-align: center;
  background: var(--surface);
}

.success-mark {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  margin: 0 auto 28px;
  color: var(--navy-950);
  background: var(--cyan-400);
  border-radius: 50%;
  font-size: 26px;
}

.success-card h1 {
  margin: 0 0 20px;
  font-size: clamp(39px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.success-card p {
  max-width: 600px;
  margin: 0 auto 30px;
  color: var(--slate);
  font-size: 18px;
}

/* Legal */
.legal-layout {
  display: grid;
  grid-template-columns: 0.42fr 1.58fr;
  gap: 8vw;
  align-items: start;
}

.legal-nav {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 12px;
  padding: 26px;
  background: var(--surface);
}

.legal-nav strong {
  margin-bottom: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-nav a {
  color: var(--slate);
  font-size: 14px;
  text-decoration: none;
}

.legal-content {
  max-width: 880px;
}

.legal-content section {
  padding: 0 0 54px;
  margin-bottom: 54px;
  border-bottom: 1px solid var(--line-light);
}

.legal-content h2 {
  margin: 0 0 22px;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.legal-content h3 {
  margin: 28px 0 12px;
  font-size: 20px;
}

.legal-content p,
.legal-content li {
  color: #455a6d;
  line-height: 1.75;
}

.legal-content a {
  color: var(--blue-700);
}

/* Expanded editorial sections */
.home-cases-section {
  background: #f2f6f9;
}

.home-cases-head,
.service-focus-head,
.expertise-combination-head,
.company-process-head,
.contact-prep-head {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: end;
  margin-bottom: 68px;
}

.home-cases-head > div,
.service-focus-head > div,
.company-process-head > div {
  max-width: 900px;
}

.home-cases-head > p,
.service-focus-head > p,
.company-process-head > p {
  max-width: 520px;
  margin: 0;
  color: var(--slate);
  line-height: 1.7;
}

.home-cases-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 14px;
}

.home-case {
  position: relative;
  min-height: 300px;
  padding: 32px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #d8e2e9;
  transition: color 220ms var(--ease), background 220ms var(--ease), transform 220ms var(--ease);
}

.home-case:not(.home-case-image):hover {
  color: var(--white);
  background: var(--navy-850);
  transform: translateY(-4px);
}

.home-case > span {
  display: block;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-case h3 {
  max-width: 420px;
  margin: 96px 0 14px;
  font-size: clamp(25px, 2.5vw, 38px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.home-case p {
  margin: 0;
  color: var(--slate);
  line-height: 1.6;
}

.home-case:hover p {
  color: #9fb5c6;
}

.home-case-image {
  grid-row: span 2;
  min-height: 614px;
  color: var(--white);
  border: 0;
}

.home-case-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(3, 11, 24, 0.94), rgba(3, 11, 24, 0.06) 68%);
}

.home-case-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease);
}

.home-case-image:hover img {
  transform: scale(1.035);
}

.home-case-image > div {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  height: 100%;
}

.home-case-image > div > span {
  color: var(--cyan-400);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-case-image h3 {
  margin-top: 20px;
}

.home-commitment-section {
  position: relative;
  padding-block: 120px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(114, 211, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 211, 255, 0.06) 1px, transparent 1px),
    var(--navy-900);
  background-size: 76px 76px;
}

.home-commitment-layout {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 8vw;
  align-items: end;
}

.home-commitment-title h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(50px, 6vw, 94px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.065em;
}

.home-commitment-title h2 span {
  color: var(--cyan-400);
}

.home-commitment-copy > p {
  margin: 0 0 34px;
  color: #a3b9ca;
  font-size: 18px;
  line-height: 1.7;
}

.home-commitment-points {
  border-top: 1px solid var(--line-dark);
}

.home-commitment-points span {
  display: block;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
}

.service-focus-section {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 15%, rgba(22, 116, 184, 0.24), transparent 27%),
    var(--navy-900);
}

.service-focus-head > p,
.expertise-combination-head > p,
.contact-prep-head > p {
  max-width: 520px;
  margin: 0;
  color: #98b0c2;
  line-height: 1.7;
}

.service-focus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.service-focus-card {
  display: grid;
  min-height: 380px;
  padding: 34px;
  background: var(--navy-900);
}

.service-focus-card > span {
  color: var(--cyan-400);
  font-size: 11px;
}

.service-focus-card > div {
  align-self: end;
}

.service-focus-card h3 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.service-focus-card p {
  margin: 0;
  color: #91aabd;
  line-height: 1.65;
}

.service-faq-section,
.contact-faq-section {
  background: var(--white);
}

.service-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 8vw;
  align-items: start;
}

.service-faq-layout > div:first-child {
  position: sticky;
  top: 120px;
}

.faq-list {
  border-top: 1px solid #bdcbd5;
}

.faq-item {
  border-bottom: 1px solid #bdcbd5;
}

.faq-item summary {
  display: grid;
  grid-template-columns: 48px 1fr 28px;
  gap: 18px;
  align-items: center;
  min-height: 100px;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary > span {
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 700;
}

.faq-item summary strong {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.025em;
}

.faq-item summary i {
  position: relative;
  width: 20px;
  height: 20px;
}

.faq-item summary i::before,
.faq-item summary i::after {
  position: absolute;
  top: 9px;
  left: 3px;
  width: 14px;
  height: 1px;
  content: "";
  background: var(--blue-700);
  transition: transform 180ms var(--ease);
}

.faq-item summary i::after {
  transform: rotate(90deg);
}

.faq-item[open] summary i::after {
  transform: rotate(0);
}

.faq-item > p {
  max-width: 720px;
  margin: -8px 0 0;
  padding: 0 46px 32px 66px;
  color: var(--slate);
  line-height: 1.7;
}

.expertise-combination-section,
.contact-prep-section {
  color: var(--white);
  background: var(--navy-900);
}

.expertise-combination-head {
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
}

.expertise-combination-head .section-title,
.contact-prep-head .section-title {
  max-width: 930px;
}

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

.expertise-combination-grid article {
  min-height: 420px;
  padding: 34px;
  background: #0a203a;
  border: 1px solid var(--line-dark);
}

.expertise-combination-grid article > span {
  color: var(--cyan-400);
  font-size: 11px;
}

.expertise-combination-grid article > p {
  display: inline-block;
  margin: 90px 10px 20px 0;
  color: #aac1d2;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.expertise-combination-grid article i {
  margin-right: 10px;
  color: var(--cyan-400);
  font-style: normal;
}

.expertise-combination-grid h3 {
  margin: 24px 0 0;
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.045em;
}

.expertise-orientation-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}

.expertise-orientation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expertise-orientation-copy {
  display: grid;
  align-content: center;
  padding: 7vw;
  background: #eef3f7;
}

.expertise-orientation-copy h2 {
  margin: 0 0 28px;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}

.expertise-orientation-copy > p:not(.section-label) {
  margin: 0 0 36px;
  color: var(--slate);
  line-height: 1.7;
}

.expertise-orientation-list {
  border-top: 1px solid #bdcbd5;
}

.expertise-orientation-list > div {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #bdcbd5;
}

.expertise-orientation-list span {
  color: var(--blue-700);
  font-size: 11px;
}

.company-process-section {
  background: #eef3f7;
}

.company-process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid #bdcbd5;
  border-left: 1px solid #bdcbd5;
}

.company-process-track article {
  min-height: 330px;
  padding: 32px;
  border-right: 1px solid #bdcbd5;
  border-bottom: 1px solid #bdcbd5;
}

.company-process-track article > span {
  display: block;
  margin-bottom: 90px;
  color: var(--blue-700);
  font-size: 11px;
  font-weight: 700;
}

.company-process-track strong {
  display: block;
  margin-bottom: 14px;
  font-size: 27px;
  font-weight: 500;
}

.company-process-track p {
  margin: 0;
  color: var(--slate);
  line-height: 1.6;
}

.company-reach-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 720px;
  color: var(--white);
  background: var(--navy-900);
}

.company-reach-copy {
  display: grid;
  align-content: center;
  padding: 7vw;
}

.company-reach-copy h2 {
  margin: 0 0 30px;
  font-size: clamp(43px, 5vw, 76px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.company-reach-copy > p:not(.section-label) {
  margin: 0 0 36px;
  color: #9db4c6;
  line-height: 1.7;
}

.company-reach-copy .text-link {
  width: fit-content;
}

.company-reach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-prep-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.contact-prep-grid article {
  min-height: 310px;
  padding: 30px;
  background: var(--navy-900);
}

.contact-prep-grid article > span {
  display: block;
  margin-bottom: 78px;
  color: var(--cyan-400);
  font-size: 11px;
}

.contact-prep-grid h3 {
  margin: 0 0 14px;
  font-size: 28px;
  font-weight: 500;
}

.contact-prep-grid p {
  margin: 0;
  color: #94adbf;
  line-height: 1.6;
}

/* Footer */
.site-footer {
  color: #dbe8f2;
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 0.55fr 0.65fr 1fr;
  gap: 6vw;
  padding-block: 80px 70px;
}

.footer-brand .brand-lockup {
  margin-bottom: 30px;
}

.footer-brand p {
  max-width: 380px;
  color: #7f9ab0;
  line-height: 1.65;
}

.footer-email {
  display: inline-block;
  margin-top: 14px;
  color: var(--cyan-400);
  font-size: 18px;
  text-decoration: none;
}

.footer-title {
  margin: 0 0 24px;
  color: #6f899f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.footer-column a {
  color: #b8cbd9;
  font-size: 14px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-contact > p:not(.footer-title) {
  margin: 0 0 28px;
  color: #8ca5b8;
  line-height: 1.65;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 42px;
  align-items: center;
  min-height: 82px;
  color: #627d93;
  border-top: 1px solid var(--line-dark);
  font-size: 11px;
}

.footer-bottom p {
  margin: 0;
}

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

.footer-bottom a {
  text-decoration: none;
}

.back-top {
  color: var(--cyan-400);
}

/* Reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

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

[data-reveal-delay="1"] { transition-delay: 90ms; }
[data-reveal-delay="2"] { transition-delay: 180ms; }
[data-reveal-delay="3"] { transition-delay: 270ms; }

/* 404 */
.error-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 120px 24px;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(rgba(114, 211, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 211, 255, 0.07) 1px, transparent 1px),
    var(--navy-950);
  background-size: 76px 76px;
}

.error-code {
  margin: 0;
  color: var(--cyan-400);
  font-size: clamp(110px, 22vw, 280px);
  font-weight: 500;
  line-height: 0.75;
  letter-spacing: -0.08em;
}

.error-page h1 {
  margin: 45px 0 16px;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 500;
}

.error-page p {
  max-width: 550px;
  margin: 0 auto 30px;
  color: #91a9bd;
}

@media (max-width: 1100px) {
  :root {
    --header-height: 76px;
  }

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

  .desktop-nav,
  .header-cta {
    display: none;
  }

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

  .menu-toggle {
    display: block;
  }

  .site-header.is-scrolled {
    position: absolute;
    top: 34px;
  }

  .home-hero-content,
  .service-hero-copy {
    grid-template-columns: 1fr;
  }

  .hero-aside {
    display: none;
  }

  .service-row {
    grid-template-columns: 60px 1fr 0.8fr 50px;
  }

  .home-cases-grid {
    grid-template-columns: 1fr 1fr;
  }

  .home-case-image {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 540px;
  }

  .company-process-track,
  .contact-prep-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-services {
    display: none;
  }
}

@media (max-width: 820px) {
  .section {
    padding-block: 84px;
  }

  .container {
    width: min(calc(100% - 36px), var(--container));
  }

  .utility-inner > span,
  .utility-inner > div > span {
    display: none;
  }

  .utility-inner {
    justify-content: center;
  }

  .header-inner {
    gap: 20px;
  }

  .brand-mark {
    width: 40px;
  }

  .brand-word {
    width: 168px;
  }

  .home-hero {
    min-height: 790px;
  }

  .home-hero::before {
    background:
      linear-gradient(90deg, rgba(3, 11, 24, 0.88), rgba(3, 11, 24, 0.25)),
      linear-gradient(0deg, rgba(3, 11, 24, 0.92), rgba(3, 11, 24, 0.15) 65%);
  }

  .home-hero-image {
    object-position: 58% center;
  }

  .home-hero-content {
    padding-top: 190px;
    padding-bottom: 48px;
  }

  .home-hero h1 {
    font-size: clamp(55px, 14vw, 82px);
  }

  .hero-intro {
    grid-template-columns: 1fr;
  }

  .hero-scroll {
    display: none;
  }

  .intro-grid,
  .section-heading-row,
  .statement-content,
  .method-layout,
  .page-hero-inner,
  .services-intro,
  .service-overview,
  .needs-layout,
  .company-story,
  .contact-layout,
  .legal-layout,
  .home-cases-head,
  .service-focus-head,
  .home-commitment-layout,
  .service-faq-layout,
  .expertise-combination-head,
  .company-process-head,
  .contact-prep-head {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .intro-lower {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .proof-row {
    grid-template-columns: 1fr;
    margin-top: 60px;
  }

  .proof-item {
    min-height: 120px;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

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

  .section-heading-row {
    margin-bottom: 45px;
  }

  .service-row {
    grid-template-columns: 40px 1fr 42px;
    gap: 16px;
    min-height: 170px;
  }

  .service-row p {
    display: none;
  }

  .nexus-statement,
  .statement-content {
    min-height: 690px;
  }

  .method-sticky,
  .company-story-media,
  .contact-aside,
  .legal-nav {
    position: static;
  }

  .field-layout,
  .outcomes-layout {
    grid-template-columns: 1fr;
  }

  .field-image,
  .outcomes-image {
    min-height: 480px;
  }

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

  .home-cases-grid,
  .service-focus-grid,
  .expertise-combination-grid,
  .company-process-track,
  .contact-prep-grid {
    grid-template-columns: 1fr;
  }

  .home-case-image {
    min-height: 480px;
  }

  .home-commitment-section {
    padding-block: 84px;
  }

  .service-focus-card,
  .expertise-combination-grid article,
  .company-process-track article,
  .contact-prep-grid article {
    min-height: 280px;
  }

  .service-faq-layout > div:first-child {
    position: static;
  }

  .expertise-orientation-section,
  .company-reach-section {
    grid-template-columns: 1fr;
  }

  .expertise-orientation-image,
  .company-reach-image {
    min-height: 480px;
  }

  .principle {
    min-height: 250px;
  }

  .principle > span {
    margin-bottom: 50px;
  }

  .cta-layout {
    grid-template-columns: 1fr;
    align-items: start;
    padding-block: 78px;
  }

  .page-hero {
    min-height: 560px;
    padding-top: 145px;
  }

  .page-hero-inner {
    align-content: end;
    padding-bottom: 55px;
  }

  .page-hero-side {
    max-width: 650px;
    justify-self: start;
  }

  .services-hub-grid {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .service-hub-card {
    min-height: 520px;
  }

  .service-hero,
  .service-hero-inner {
    min-height: 730px;
  }

  .offers-grid,
  .scope-grid {
    grid-template-columns: 1fr;
  }

  .company-story-media img {
    max-height: 620px;
  }

  .company-story-copy {
    padding-top: 10px;
  }

  .contact-form {
    padding: 34px;
  }

  .legal-nav {
    display: none;
  }

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

  .footer-contact {
    grid-column: 1 / -1;
    max-width: 500px;
  }

  .footer-bottom {
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding-block: 24px;
  }

  .footer-bottom > div {
    grid-column: 1 / -1;
    grid-row: 2;
  }
}

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

  .section {
    padding-block: 72px;
  }

  .brand-mark {
    width: 36px;
  }

  .brand-word {
    width: 148px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .home-hero {
    min-height: 760px;
  }

  .home-hero-content {
    padding-top: 175px;
  }

  .home-hero h1 {
    margin-bottom: 26px;
    font-size: clamp(50px, 15.5vw, 70px);
  }

  .hero-intro p {
    font-size: 16px;
  }

  .display-title,
  .page-hero-title h1,
  .service-hero h1 {
    font-size: clamp(46px, 13vw, 66px);
  }

  .section-title {
    font-size: clamp(38px, 11vw, 55px);
  }

  .service-row {
    grid-template-columns: 30px 1fr 38px;
    min-height: 145px;
  }

  .service-row h3 {
    font-size: 27px;
  }

  .service-row > span:last-child {
    width: 36px;
    height: 36px;
  }

  .home-case {
    min-height: 260px;
    padding: 26px;
  }

  .home-case h3 {
    margin-top: 64px;
  }

  .home-case-image {
    min-height: 430px;
  }

  .home-case-image h3 {
    margin-top: 18px;
  }

  .home-commitment-title h2 {
    font-size: 46px;
  }

  .service-focus-card,
  .expertise-combination-grid article,
  .company-process-track article,
  .contact-prep-grid article {
    padding: 26px;
  }

  .faq-item summary {
    grid-template-columns: 34px 1fr 22px;
    gap: 12px;
    min-height: 92px;
  }

  .faq-item > p {
    padding: 0 12px 28px 46px;
  }

  .expertise-orientation-image,
  .company-reach-image {
    min-height: 350px;
  }

  .expertise-orientation-copy,
  .company-reach-copy {
    padding: 70px 20px;
  }

  .statement-copy h2 {
    font-size: clamp(45px, 12vw, 62px);
  }

  .method-step {
    grid-template-columns: 42px 1fr;
    gap: 16px;
    min-height: 185px;
  }

  .field-image,
  .outcomes-image {
    min-height: 360px;
  }

  .field-content,
  .outcomes-copy {
    padding: 72px 20px;
  }

  .principle {
    padding: 28px;
  }

  .cta-layout h2 {
    font-size: 47px;
  }

  .services-hub-grid {
    gap: 12px;
  }

  .service-hub-card {
    min-height: 480px;
  }

  .service-hub-content {
    padding: 28px;
  }

  .service-hero-image {
    object-position: 58% center;
  }

  .service-hero,
  .service-hero-inner {
    min-height: 700px;
  }

  .offer-card {
    min-height: 250px;
    padding: 28px;
  }

  .offer-card h3 {
    margin-top: 55px;
  }

  .scope-card {
    min-height: 270px;
    padding: 30px;
  }

  .contact-form {
    padding: 26px 18px;
  }

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

  .form-group.full,
  .form-notice,
  .form-actions {
    grid-column: auto;
  }

  .form-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .form-actions .button {
    width: 100%;
  }

  .success-card {
    padding: 48px 22px;
  }

  .legal-content h2 {
    font-size: 29px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 44px;
    padding-block: 65px 55px;
  }

  .footer-contact {
    grid-column: auto;
  }

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

  .footer-bottom > div {
    grid-column: auto;
    grid-row: auto;
    flex-direction: column;
    gap: 10px;
  }

  .back-top {
    padding-bottom: 22px;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
