:root {
  --navy-950: #000e26;
  --navy-900: #001736;
  --navy-800: #001f4b;
  --navy-700: #063260;
  --teal-700: #006d78;
  --teal-600: #007f8c;
  --teal-500: #00a3aa;
  --teal-300: #62d8d8;
  --gold-500: #e5a700;
  --gold-400: #f3b51b;
  --gold-300: #ffd56a;
  --ink: #10233a;
  --muted: #607087;
  --line: #dbe3eb;
  --surface: #f4f7fa;
  --surface-warm: #fbfaf6;
  --white: #ffffff;
  --shadow-sm: 0 12px 32px rgba(0, 31, 75, 0.09);
  --shadow-lg: 0 32px 80px rgba(0, 20, 55, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

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

body.nav-open {
  overflow: hidden;
}

::selection {
  color: var(--navy-950);
  background: var(--gold-300);
}

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

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

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

button,
summary {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  color: var(--navy-900);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.25rem, 6vw, 5.75rem);
  font-weight: 760;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.5vw, 4.25rem);
  font-weight: 730;
}

h3 {
  font-size: 1.3rem;
  font-weight: 710;
}

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

.section {
  padding: 112px 0;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-800);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

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

main:focus {
  outline: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--teal-700);
  font-size: 0.75rem;
  font-weight: 780;
  letter-spacing: 0.17em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 2px;
  background: var(--gold-500);
  content: "";
}

.eyebrow--light {
  color: var(--teal-300);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 740;
  line-height: 1.2;
  text-align: center;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease),
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.button svg,
.text-link svg,
.path-card__link svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 220ms var(--ease);
}

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

.button:hover svg,
.text-link:hover svg,
.path-card:hover .path-card__link svg {
  transform: translateX(4px);
}

.button--primary {
  color: var(--white);
  background: var(--navy-800);
  box-shadow: 0 8px 20px rgba(0, 31, 75, 0.18);
}

.button--primary:hover {
  background: var(--teal-700);
  box-shadow: 0 12px 26px rgba(0, 109, 120, 0.2);
}

.button--gold {
  color: var(--navy-950);
  background: var(--gold-400);
  box-shadow: 0 14px 32px rgba(229, 167, 0, 0.22);
}

.button--gold:hover {
  background: var(--gold-300);
  box-shadow: 0 18px 38px rgba(229, 167, 0, 0.3);
}

.button--ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
}

.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.09);
}

.button--small {
  min-height: 44px;
  padding: 11px 18px;
  font-size: 0.82rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding-bottom: 5px;
  color: var(--navy-800);
  border-bottom: 1px solid rgba(0, 31, 75, 0.28);
  font-size: 0.92rem;
  font-weight: 760;
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.text-link:hover {
  color: var(--teal-700);
  border-color: var(--teal-700);
}

.text-link--light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
}

.text-link--light:hover {
  color: var(--gold-300);
  border-color: var(--gold-300);
}

/* Header */
.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(0, 31, 75, 0.08);
  transition:
    box-shadow 220ms ease,
    height 220ms ease;
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(0, 20, 55, 0.08);
}

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

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand__crop {
  position: relative;
  display: block;
  width: 178px;
  height: 58px;
  overflow: hidden;
}

.brand__image {
  position: absolute;
  top: -75px;
  left: -14px;
  width: 208px;
  height: 208px;
  background: url("assets/logo-vlm.png") center / contain no-repeat;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.3vw, 34px);
}

.nav > a:not(.button) {
  position: relative;
  color: #30445d;
  font-size: 0.86rem;
  font-weight: 650;
  transition: color 180ms ease;
}

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

.nav > a:not(.button):hover,
.nav > a:not(.button).is-active {
  color: var(--navy-800);
}

.nav > a:not(.button):hover::after,
.nav > a:not(.button).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-800);
  border-radius: 2px;
  transition:
    transform 220ms ease,
    opacity 180ms ease;
}

/* Hero */
.hero {
  position: relative;
  min-height: 790px;
  overflow: hidden;
  padding: calc(var(--header-height) + 64px) 0 0;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(135deg, #001936 0%, #001f4b 48%, #003f57 100%);
  background-size: 60px 60px, 60px 60px, 100% 100%;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 90px;
  background: var(--white);
  content: "";
  clip-path: polygon(0 75%, 100% 0, 100% 100%, 0 100%);
}

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

.hero__glow--one {
  top: 10%;
  right: -12%;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(0, 163, 170, 0.22), transparent 66%);
}

.hero__glow--two {
  bottom: -20%;
  left: -14%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(229, 167, 0, 0.12), transparent 65%);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 540px;
  align-items: center;
  grid-template-columns: minmax(0, 1.03fr) minmax(420px, 0.97fr);
  gap: 60px;
}

.hero__content {
  max-width: 690px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(3.4rem, 5.4vw, 5.35rem);
}

.hero h1 em {
  position: relative;
  color: var(--teal-300);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.hero h1 em:last-child {
  color: var(--gold-300);
}

.hero__lead {
  max-width: 630px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(1.06rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.79rem;
}

.hero__note-icon {
  display: grid;
  width: 27px;
  height: 27px;
  place-items: center;
  color: var(--gold-300);
  border: 1px solid rgba(255, 213, 106, 0.35);
  border-radius: 50%;
}

.hero__visual {
  position: relative;
  display: grid;
  min-height: 520px;
  place-items: center;
}

.hero-portrait {
  position: relative;
  z-index: 2;
  width: min(94%, 400px);
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 30px;
  box-shadow: 0 34px 80px rgba(0, 8, 30, 0.46);
  isolation: isolate;
}

.hero-portrait::after {
  position: absolute;
  z-index: 3;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 22px;
  content: "";
  pointer-events: none;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 32%;
  transform: scale(1.06);
  transform-origin: 50% 34%;
}

.hero-portrait figcaption {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 76px 28px 26px;
  color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(0, 23, 54, 0.94));
  text-align: center;
}

.hero-portrait figcaption span,
.hero-portrait figcaption small {
  display: block;
}

.hero-portrait figcaption span {
  margin-bottom: 3px;
  font-size: 1.08rem;
  font-weight: 760;
  letter-spacing: -0.015em;
}

.hero-portrait figcaption small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.7rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(98, 216, 216, 0.16);
  border-radius: 50%;
}

.orbit::after {
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  background: var(--gold-400);
  border-radius: 50%;
  box-shadow: 0 0 20px var(--gold-400);
  content: "";
}

.orbit--outer {
  width: 500px;
  height: 500px;
  animation: spin 28s linear infinite;
}

.orbit--inner {
  width: 400px;
  height: 400px;
  border-color: rgba(243, 181, 27, 0.12);
  animation: spin-reverse 24s linear infinite;
}

.orbit--inner::after {
  top: auto;
  right: 18%;
  bottom: 3%;
  left: auto;
  background: var(--teal-300);
  box-shadow: 0 0 20px var(--teal-300);
}

.hero-orbit-words {
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
}

.hero-orbit-word {
  position: absolute;
  color: rgba(98, 216, 216, 0.74);
  font-size: 0.67rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-orbit-word::before {
  display: inline-block;
  width: 18px;
  height: 1px;
  margin-right: 9px;
  vertical-align: middle;
  background: currentColor;
  content: "";
}

.hero-orbit-word--values {
  top: 8%;
  left: 8%;
}

.hero-orbit-word--leadership {
  top: 24%;
  right: -2%;
  color: rgba(255, 213, 106, 0.76);
}

.hero-orbit-word--metrics {
  right: 0;
  bottom: 13%;
}

.hero-orbit-word--people {
  bottom: 8%;
  left: 8%;
  color: rgba(255, 213, 106, 0.76);
}

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

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

.signal-card {
  position: relative;
  z-index: 2;
  width: min(100%, 440px);
  padding: 24px 24px 20px;
  background: rgba(3, 28, 58, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}

.signal-card__top,
.signal-card__legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.signal-card__label {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.signal-card__status {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.66rem;
}

.signal-card__status i {
  width: 6px;
  height: 6px;
  background: var(--teal-300);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(98, 216, 216, 0.1);
}

.signal-card__metric {
  display: flex;
  margin-top: 34px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.signal-card__metric span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
}

.signal-card__metric strong {
  color: var(--white);
  font-size: 1rem;
  font-weight: 680;
}

.signal-card__chart {
  width: 100%;
  margin: 18px 0 8px;
  overflow: visible;
}

.chart-grid {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.chart-area {
  fill: url("#area-gradient");
}

.chart-line {
  fill: none;
  stroke: url("#line-gradient");
  stroke-width: 4;
  stroke-linecap: round;
}

.signal-card__chart circle {
  fill: var(--gold-400);
  stroke: rgba(243, 181, 27, 0.3);
  stroke-width: 10;
}

.signal-card__legend {
  justify-content: flex-start;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
}

.signal-card__legend span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.dot--teal {
  background: var(--teal-300);
}

.dot--gold {
  background: var(--gold-400);
}

.float-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.74);
  background: rgba(5, 37, 69, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0, 10, 35, 0.3);
  font-size: 0.72rem;
  backdrop-filter: blur(12px);
}

.float-card strong {
  display: block;
  color: var(--white);
  font-size: 0.75rem;
}

.float-card__icon {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--navy-950);
  background: var(--teal-300);
  border-radius: 9px;
  font-size: 0.65rem;
  font-weight: 800;
}

.float-card--left {
  bottom: 48px;
  left: -10px;
}

.float-card--right {
  top: 60px;
  right: -8px;
}

.float-card--right .float-card__icon {
  background: var(--gold-400);
}

.principle-strip {
  position: relative;
  z-index: 3;
  display: flex;
  margin-top: 22px;
  padding: 22px 0 96px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.principle-strip i {
  width: 4px;
  height: 4px;
  background: var(--gold-400);
  border-radius: 50%;
}

/* Shared section headings */
.section-heading--split {
  display: grid;
  margin-bottom: 58px;
  align-items: end;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
}

.section-heading--split h2 {
  margin-bottom: 0;
}

.section-heading--split > p {
  max-width: 490px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.section-heading--center {
  max-width: 720px;
  margin: 0 auto 72px;
  text-align: center;
}

.section-heading--center .eyebrow {
  justify-content: center;
}

.section-heading--center > p:last-child {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.03rem;
}

/* Path cards */
.section--intro {
  padding-top: 118px;
  background: var(--white);
}

.path-selector {
  display: grid;
  max-width: 560px;
  margin: -12px auto 42px;
  padding: 6px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 31, 75, 0.08);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
}

.path-selector a {
  display: flex;
  min-height: 50px;
  padding: 10px 18px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--navy-800);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 760;
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms ease;
}

.path-selector a:first-child {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-800), var(--teal-700));
}

.path-selector a:last-child {
  color: var(--navy-950);
  background: var(--gold-400);
}

.path-selector a:hover {
  box-shadow: 0 10px 24px rgba(0, 31, 75, 0.16);
  transform: translateY(-2px);
}

.path-selector a span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: currentColor;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.58rem;
}

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

.path-card {
  position: relative;
  display: flex;
  min-height: 430px;
  overflow: hidden;
  padding: 40px;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition:
    transform 280ms var(--ease),
    box-shadow 280ms var(--ease),
    border-color 220ms ease;
}

.path-card::before {
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  content: "";
  opacity: 0.85;
  transition: transform 500ms var(--ease);
}

.path-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.path-card:hover::before {
  transform: scale(1.18);
}

.path-card--career {
  color: var(--white);
  background: linear-gradient(145deg, #001a3c, #00355a);
  border-color: transparent;
}

.path-card--career::before {
  top: -85px;
  right: -70px;
  background: radial-gradient(circle, rgba(0, 163, 170, 0.4), transparent 68%);
}

.path-card--sales {
  background: linear-gradient(145deg, #f5f8fa, #edf4f5);
}

.path-card--sales::before {
  right: -65px;
  bottom: -80px;
  background: radial-gradient(circle, rgba(243, 181, 27, 0.26), transparent 66%);
}

.path-card__number {
  position: absolute;
  top: 38px;
  right: 40px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.path-card--sales .path-card__number {
  color: var(--teal-700);
}

.path-card__icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 55px;
  place-items: center;
  color: var(--navy-950);
  background: var(--teal-300);
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0, 163, 170, 0.22);
}

.path-card--sales .path-card__icon {
  color: var(--navy-800);
  background: var(--gold-400);
  box-shadow: 0 15px 30px rgba(229, 167, 0, 0.18);
}

.path-card__icon svg {
  width: 34px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.path-card__content {
  position: relative;
  z-index: 1;
  max-width: 450px;
}

.path-card__content > p {
  margin-bottom: 8px;
  color: var(--teal-300);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.path-card--sales .path-card__content > p {
  color: var(--teal-700);
}

.path-card h3 {
  margin-bottom: 18px;
  color: inherit;
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
}

.path-card__content > span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.7;
}

.path-card--sales .path-card__content > span {
  color: var(--muted);
}

.path-card__link {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: auto;
  padding-top: 28px;
  align-items: center;
  gap: 9px;
  color: var(--gold-300);
  font-size: 0.85rem;
  font-weight: 750;
}

.path-card--sales .path-card__link {
  color: var(--navy-800);
}

/* Services */
.service-section {
  overflow: hidden;
  background: var(--surface-warm);
}

.service-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 100px;
}

.service-copy h2 {
  max-width: 500px;
}

.service-copy__lead {
  max-width: 510px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.78;
}

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

.deliverable {
  min-height: 205px;
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(0, 31, 75, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 10px 30px rgba(0, 31, 75, 0.05);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

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

.deliverable > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 26px;
  place-items: center;
  color: var(--teal-700);
  background: rgba(0, 163, 170, 0.09);
  border-radius: 10px;
  font-size: 0.68rem;
  font-weight: 800;
}

.deliverable h3 {
  margin-bottom: 10px;
  font-size: 1.04rem;
}

.deliverable p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.62;
}

.service-section--sales {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 5% 15%, rgba(0, 163, 170, 0.2), transparent 26%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.service-section--sales::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 48%;
  height: 100%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black);
}

.service-layout--reverse {
  position: relative;
  z-index: 1;
  grid-template-columns: 0.82fr 1.18fr;
}

.service-section--sales .service-copy {
  order: 2;
}

.service-section--sales h2 {
  color: var(--white);
}

.service-section--sales .service-copy__lead {
  color: rgba(255, 255, 255, 0.67);
}

.sales-system {
  padding: 30px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.sales-system__header {
  display: flex;
  margin-bottom: 26px;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.7rem;
  font-weight: 730;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sales-system__header i {
  width: 8px;
  height: 8px;
  background: var(--teal-300);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(98, 216, 216, 0.09);
}

.sales-flow {
  display: grid;
  gap: 3px;
}

.sales-flow article {
  position: relative;
  display: grid;
  min-height: 94px;
  padding: 18px 20px;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  transition: background 180ms ease;
}

.sales-flow article:hover {
  background: rgba(255, 255, 255, 0.08);
}

.sales-flow article:not(:last-child)::after {
  position: absolute;
  bottom: -7px;
  left: 43px;
  z-index: 2;
  width: 1px;
  height: 14px;
  background: linear-gradient(var(--teal-300), var(--gold-400));
  content: "";
}

.sales-flow article > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy-950);
  background: var(--teal-300);
  border-radius: 11px;
  font-size: 0.67rem;
  font-weight: 830;
}

.sales-flow article:nth-child(even) > span {
  background: var(--gold-400);
}

.sales-flow h3 {
  margin-bottom: 5px;
  color: var(--white);
  font-size: 1rem;
}

.sales-flow p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
}

/* Commercial control comparison */
.control-signals {
  background: var(--surface);
}

.control-signals__shell {
  position: relative;
  overflow: hidden;
  padding: 68px 72px;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 15%, rgba(0, 163, 170, 0.22), transparent 30%),
    linear-gradient(135deg, var(--navy-950), #002c50);
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
}

.control-signals__shell::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(120deg, transparent 8%, black 70%);
  pointer-events: none;
}

.control-signals__heading,
.control-signals__grid,
.control-signals__cta {
  position: relative;
  z-index: 1;
}

.control-signals__heading {
  max-width: 790px;
  margin: 0 auto 46px;
  text-align: center;
}

.control-signals__heading .eyebrow {
  justify-content: center;
}

.control-signals__heading h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.25rem, 4.5vw, 4.1rem);
}

.control-signals__heading > p:last-child {
  max-width: 680px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.64);
}

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

.control-card {
  position: relative;
  min-height: 320px;
  padding: 34px 36px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  backdrop-filter: blur(12px);
}

.control-card::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 4px;
  background: var(--gold-400);
  content: "";
}

.control-card--after {
  background: rgba(0, 163, 170, 0.12);
}

.control-card--after::before {
  background: var(--teal-300);
}

.control-card__label {
  display: flex;
  margin-bottom: 24px;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.control-card__label i {
  width: 9px;
  height: 9px;
  background: var(--gold-400);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(243, 181, 27, 0.08);
}

.control-card--after .control-card__label i {
  background: var(--teal-300);
  box-shadow: 0 0 0 5px rgba(98, 216, 216, 0.08);
}

.control-card h3 {
  max-width: 390px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1.45rem;
}

.control-card ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 13px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.88rem;
  list-style: none;
}

.control-card li {
  position: relative;
  padding-left: 24px;
}

.control-card li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold-300);
  content: "—";
  font-weight: 800;
}

.control-card--after li::before {
  color: var(--teal-300);
  content: "✓";
}

.control-signals__cta {
  width: fit-content;
  margin: 36px auto 0;
}

/* Method */
.method {
  background: var(--white);
}

.method-track {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}

.method-track__steps {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 28px;
  list-style: none;
}

.method-track__line {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  overflow: hidden;
  background: var(--line);
  transform: translateX(-50%);
}

.method-track__line span {
  display: block;
  width: 2px;
  height: 100%;
  background: linear-gradient(var(--teal-500), var(--gold-400));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1.2s 180ms var(--ease);
}

.method-track.is-visible .method-track__line span {
  transform: scaleY(1);
}

.method-step {
  position: relative;
  z-index: 1;
  width: calc(50% - 54px);
  min-height: 174px;
  padding: 30px 32px;
  background: var(--surface);
  border: 1px solid rgba(0, 31, 75, 0.09);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition:
    transform 240ms var(--ease),
    box-shadow 240ms ease;
}

.method-step:nth-child(odd) {
  margin-right: auto;
  text-align: right;
}

.method-step:nth-child(even) {
  margin-left: auto;
  text-align: left;
}

.method-step::before {
  position: absolute;
  top: 42px;
  width: 14px;
  height: 14px;
  background: var(--white);
  border: 4px solid var(--teal-500);
  border-radius: 50%;
  box-shadow: 0 0 0 6px var(--white);
  content: "";
}

.method-step:nth-child(odd)::before {
  right: -61px;
}

.method-step:nth-child(even)::before {
  left: -61px;
  border-color: var(--gold-400);
}

.method-step:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.method-step__number {
  display: inline-flex;
  margin-bottom: 11px;
  color: var(--teal-700);
  font-size: 0.65rem;
  font-weight: 820;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.method-step:nth-child(even) .method-step__number {
  color: #9b6e00;
}

.method-step h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.method-step p {
  max-width: 390px;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.65;
}

.method-step:nth-child(odd) p {
  margin-left: auto;
}

/* About */
.about {
  background: var(--surface);
}

.about__grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 104px;
}

.about__visual {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: linear-gradient(145deg, #001632, #004253);
  border: 1px solid rgba(0, 31, 75, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}

.about__visual::after {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 46%;
  background: linear-gradient(180deg, transparent, rgba(0, 24, 54, 0.88));
  content: "";
  pointer-events: none;
}

.about__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 42%;
}

.about__experience {
  position: absolute;
  z-index: 2;
  top: 28px;
  left: 28px;
  display: flex;
  width: auto;
  padding: 13px 16px;
  align-items: center;
  gap: 12px;
  color: var(--white);
  background: rgba(0, 31, 75, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 15px;
  box-shadow: 0 16px 36px rgba(0, 20, 55, 0.2);
  text-align: left;
  backdrop-filter: blur(10px);
}

.about__experience strong {
  display: block;
  margin: 0;
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 1;
}

.about__experience strong span {
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.about__experience p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.61rem;
  font-weight: 720;
  letter-spacing: 0.11em;
  line-height: 1.45;
  text-transform: uppercase;
}

.about__caption {
  position: absolute;
  z-index: 2;
  right: 38px;
  bottom: 38px;
  left: 38px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1.6;
  text-transform: uppercase;
}

.about__caption span {
  flex: 0 0 auto;
  width: 34px;
  height: 2px;
  margin-top: 9px;
  background: var(--gold-400);
}

.about__caption p {
  margin: 0;
}

.about__caption strong {
  display: block;
  margin-bottom: 2px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
}

.about__copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.about__principle {
  position: relative;
  margin: 34px 0;
  padding: 0 0 0 26px;
  color: var(--navy-800);
  border-left: 3px solid var(--gold-400);
}

.about__principle strong {
  display: block;
  margin-bottom: 7px;
  color: var(--teal-700);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about__principle p {
  max-width: 540px;
  margin: 0;
  color: var(--navy-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.52;
}

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

.about__values span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #38506a;
  font-size: 0.84rem;
  font-weight: 640;
}

.about__values i {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  color: var(--teal-700);
  background: rgba(0, 163, 170, 0.09);
  border-radius: 50%;
  font-size: 0.67rem;
  font-style: normal;
}

.career-path {
  margin-top: 88px;
  padding: 42px;
  background: var(--white);
  border: 1px solid rgba(0, 31, 75, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.career-path__header {
  display: flex;
  margin-bottom: 34px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.career-path__header .eyebrow {
  margin-bottom: 0;
}

.career-path__header > p:last-child {
  max-width: 480px;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  text-align: right;
}

.career-path__steps {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.career-path__steps span {
  position: relative;
  display: flex;
  min-height: 72px;
  padding: 14px 18px;
  align-items: center;
  justify-content: center;
  color: var(--navy-800);
  background: var(--surface);
  border-radius: 12px;
  font-size: 0.73rem;
  font-weight: 740;
  line-height: 1.35;
  text-align: center;
}

.career-path__steps span:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -9px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-400);
  border: 3px solid var(--white);
  border-radius: 50%;
  content: "›";
  font-size: 0.76rem;
  transform: translateY(-50%);
}

.vlm-pillars {
  display: grid;
  margin-top: 88px;
  align-items: end;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 60px;
}

.vlm-pillars__intro h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 3.8vw, 3.45rem);
}

.vlm-pillars__intro > p:last-child {
  max-width: 470px;
  margin-bottom: 0;
  color: var(--muted);
}

.vlm-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.vlm-pillar {
  min-height: 260px;
  padding: 26px;
  background: linear-gradient(155deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-md);
  box-shadow: 0 18px 44px rgba(0, 31, 75, 0.13);
}

.vlm-pillar:nth-child(2) {
  background: linear-gradient(155deg, #004450, var(--teal-700));
}

.vlm-pillar:nth-child(3) {
  background: linear-gradient(155deg, #715000, #a47600);
}

.vlm-pillar > span {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 58px;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-300);
  border-radius: 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.vlm-pillar h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.1rem;
}

.vlm-pillar p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  line-height: 1.6;
}

/* Outcomes */
.outcomes {
  color: var(--white);
  background: linear-gradient(110deg, var(--navy-950), #002a4e 70%, #004a55);
}

.outcomes__intro {
  display: grid;
  margin-bottom: 54px;
  align-items: end;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 50px;
}

.outcomes__intro .eyebrow {
  margin-bottom: 8px;
}

.outcomes__intro h2 {
  max-width: 820px;
  margin-bottom: 0;
  color: var(--white);
}

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

.outcome-card {
  min-height: 250px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
  transition:
    background 220ms ease,
    transform 220ms var(--ease);
  backdrop-filter: blur(10px);
}

.outcome-card:hover {
  background: rgba(255, 255, 255, 0.09);
  transform: translateY(-5px);
}

.outcome-card svg {
  width: 38px;
  margin-bottom: 40px;
  fill: none;
  stroke: var(--gold-300);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.outcome-card h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.2rem;
}

.outcome-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  line-height: 1.68;
}

/* Testimonials */
.testimonials {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(229, 167, 0, 0.12), transparent 23%),
    linear-gradient(145deg, var(--surface-warm), var(--white) 58%, #eef8f8);
}

.testimonials::after {
  position: absolute;
  right: -200px;
  bottom: -240px;
  width: 550px;
  height: 550px;
  border: 1px solid rgba(0, 127, 140, 0.14);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.testimonials__heading {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: 1120px;
  margin-bottom: 48px;
  align-items: end;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 72px;
}

.testimonials__heading h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.testimonials__heading > p {
  max-width: 390px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.75;
}

.testimonials__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.testimonial-card {
  position: relative;
  display: flex;
  min-height: 342px;
  margin: 0;
  padding: 36px 38px 32px;
  flex-direction: column;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 5%, rgba(0, 163, 170, 0.24), transparent 34%),
    linear-gradient(145deg, var(--navy-950), var(--navy-800));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  box-shadow: 0 18px 42px rgba(0, 31, 75, 0.14);
}

.testimonial-card::after {
  position: absolute;
  right: -40px;
  bottom: -42px;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  content: "";
}

.testimonial-card--teal {
  background:
    radial-gradient(circle at 93% 7%, rgba(229, 167, 0, 0.18), transparent 28%),
    linear-gradient(145deg, #003c4a, #006d78);
}

.testimonial-card--gold {
  background:
    radial-gradient(circle at 90% 7%, rgba(98, 216, 216, 0.18), transparent 28%),
    linear-gradient(145deg, #563f00, #8a6400);
}

.testimonial-card--light {
  color: var(--ink);
  background:
    radial-gradient(circle at 94% 5%, rgba(229, 167, 0, 0.17), transparent 32%),
    var(--white);
  border-color: rgba(0, 31, 75, 0.1);
}

.testimonial-card--light::after {
  border-color: rgba(0, 127, 140, 0.1);
}

.testimonial-card__mark {
  display: block;
  height: 54px;
  margin: -13px 0 18px;
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 6.5rem;
  font-weight: 700;
  line-height: 1;
}

.testimonial-card--light .testimonial-card__mark {
  color: var(--gold-500);
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  max-width: 610px;
  margin: 0;
}

.testimonial-card blockquote p {
  margin: 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2.1vw, 2rem);
  font-style: italic;
  line-height: 1.38;
}

.testimonial-card figcaption {
  position: relative;
  z-index: 1;
  display: grid;
  margin-top: auto;
  padding-top: 25px;
  gap: 5px;
}

.testimonial-card figcaption::before {
  display: block;
  width: 68px;
  height: 2px;
  margin-bottom: 11px;
  background: var(--gold-300);
  content: "";
}

.testimonial-card figcaption strong {
  color: inherit;
  font-size: 1.05rem;
}

.testimonial-card figcaption span {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.82rem;
  line-height: 1.5;
}

.testimonial-card--light figcaption span {
  color: var(--muted);
}

/* Fit */
.fit-section {
  position: relative;
  overflow: hidden;
  background: var(--surface-warm);
}

.fit-section::before {
  position: absolute;
  top: -220px;
  right: -170px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(0, 163, 170, 0.11), transparent 68%);
  content: "";
}

.fit-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.fit-card {
  position: relative;
  display: flex;
  min-height: 430px;
  padding: 40px;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.fit-card--professional {
  color: var(--white);
  background:
    radial-gradient(circle at 88% 15%, rgba(98, 216, 216, 0.2), transparent 28%),
    linear-gradient(145deg, var(--navy-950), var(--navy-700));
}

.fit-card--company {
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(0, 31, 75, 0.09);
}

.fit-card__number {
  position: absolute;
  top: 38px;
  right: 40px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.13em;
}

.fit-card--company .fit-card__number {
  color: var(--teal-700);
}

.fit-card__audience {
  margin-bottom: 34px;
  color: var(--teal-300);
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fit-card--company .fit-card__audience {
  color: var(--teal-700);
}

.fit-card h3 {
  max-width: 440px;
  margin-bottom: 26px;
  color: inherit;
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
}

.fit-card ul {
  display: grid;
  margin: 0 0 32px;
  padding: 0;
  gap: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
  list-style: none;
}

.fit-card--company ul {
  color: var(--muted);
}

.fit-card li {
  position: relative;
  padding-left: 27px;
}

.fit-card li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--navy-950);
  background: var(--teal-300);
  border-radius: 50%;
  content: "✓";
  font-size: 0.58rem;
  font-weight: 900;
}

.fit-card--company li::before {
  background: var(--gold-400);
}

.fit-card .text-link {
  width: fit-content;
  margin-top: auto;
}

.fit-section__note {
  position: relative;
  max-width: 920px;
  margin: 26px auto 0;
  padding: 18px 24px;
  color: var(--muted);
  background: rgba(0, 163, 170, 0.07);
  border: 1px solid rgba(0, 127, 140, 0.14);
  border-radius: 14px;
  font-size: 0.84rem;
  line-height: 1.65;
  text-align: center;
}

.fit-section__note strong {
  color: var(--navy-800);
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq__grid {
  display: grid;
  align-items: start;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
}

.faq__intro {
  position: sticky;
  top: calc(var(--header-height) + 30px);
}

.faq__intro h2 {
  font-size: clamp(2.2rem, 3.4vw, 3.3rem);
}

.faq__intro > p:not(.eyebrow) {
  max-width: 390px;
  margin-bottom: 28px;
  color: var(--muted);
}

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

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

.accordion summary {
  position: relative;
  display: flex;
  min-height: 88px;
  padding: 24px 54px 24px 0;
  align-items: center;
  justify-content: space-between;
  color: var(--navy-900);
  font-size: 1.02rem;
  font-weight: 690;
  list-style: none;
}

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

.accordion summary span {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  transform: translateY(-50%);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 220ms ease;
}

.accordion summary span::before,
.accordion summary span::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1.5px;
  background: var(--navy-800);
  content: "";
  transform: translate(-50%, -50%);
}

.accordion summary span::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.accordion details[open] summary span {
  background: var(--gold-400);
  border-color: var(--gold-400);
  transform: translateY(-50%) rotate(180deg);
}

.accordion details[open] summary span::after {
  transform: translate(-50%, -50%) rotate(0);
}

.accordion details p {
  max-width: 670px;
  margin: -4px 54px 25px 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  padding: 112px 0;
  color: var(--white);
  background:
    radial-gradient(circle at 13% 15%, rgba(0, 163, 170, 0.25), transparent 28%),
    radial-gradient(circle at 88% 95%, rgba(229, 167, 0, 0.15), transparent 25%),
    var(--navy-950);
}

.contact::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 65%);
}

.contact__grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: start;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 90px;
}

.contact__copy h2 {
  color: var(--white);
}

.contact__copy > p:not(.eyebrow) {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.04rem;
  line-height: 1.78;
}

.contact__promise {
  display: flex;
  max-width: 490px;
  margin-top: 44px;
  padding-top: 28px;
  align-items: flex-start;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.contact__promise > span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: 50%;
}

.contact__promise strong {
  display: block;
  margin-bottom: 5px;
  color: var(--white);
  font-size: 0.9rem;
}

.contact__promise p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.8rem;
}

.contact__channels {
  display: grid;
  max-width: 490px;
  margin-top: 18px;
  gap: 9px;
}

.contact__channels a {
  display: flex;
  padding: 12px 14px;
  align-items: center;
  gap: 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 220ms var(--ease);
}

.contact__channels a:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateX(3px);
}

.contact__channels a > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy-950);
  background: var(--teal-300);
  border-radius: 10px;
  font-size: 0.67rem;
  font-weight: 850;
}

.contact__channels a:last-child > span {
  background: var(--gold-400);
}

.contact__channels small,
.contact__channels strong {
  display: block;
}

.contact__channels small {
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.62rem;
}

.contact__channels strong {
  color: var(--white);
  font-size: 0.78rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.social-links--contact {
  max-width: 490px;
  margin-top: 18px;
}

.social-links a {
  display: inline-flex;
  min-height: 40px;
  padding: 8px 13px 8px 8px;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 680;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.social-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}

.social-links a span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--navy-950);
  background: var(--teal-300);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 850;
  text-transform: lowercase;
}

.contact-form {
  padding: 38px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.28);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-form label:not(.checkbox) {
  display: block;
  margin-bottom: 18px;
}

.contact-form label > span:first-child {
  display: block;
  margin-bottom: 8px;
  color: #344a63;
  font-size: 0.76rem;
  font-weight: 700;
}

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

.contact-form input,
.contact-form select {
  height: 52px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 122px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #66778c;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  background: var(--white);
  border-color: var(--teal-600);
  box-shadow: 0 0 0 4px rgba(0, 127, 140, 0.09);
}

.contact-form .is-invalid {
  border-color: #b42318;
}

.field-error {
  display: block;
  min-height: 0;
  margin-top: 5px;
  color: #b42318;
  font-size: 0.68rem;
}

.checkbox {
  display: grid;
  margin: 2px 0 8px;
  align-items: start;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  cursor: pointer;
}

.checkbox input {
  width: 18px;
  height: 18px;
  margin: 3px 0 0;
  accent-color: var(--teal-700);
}

.checkbox input[aria-invalid="true"] {
  outline: 2px solid #b42318;
  outline-offset: 2px;
}

.checkbox span {
  color: var(--muted) !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  line-height: 1.55;
}

.form-privacy {
  margin: 10px 0 0;
  color: #6b7b8e;
  font-size: 0.66rem;
  line-height: 1.55;
}

.button--submit {
  width: 100%;
  margin-top: 18px;
  border: 0;
}

.button--submit.is-loading {
  pointer-events: none;
  opacity: 0.75;
}

.button--submit.is-loading span::after {
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-left: 9px;
  border: 2px solid rgba(0, 14, 38, 0.3);
  border-top-color: var(--navy-950);
  border-radius: 50%;
  content: "";
  vertical-align: -2px;
  animation: spin 0.7s linear infinite;
}

.form-status {
  min-height: 20px;
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.5;
  text-align: center;
}

.form-status.is-success {
  color: var(--teal-700);
}

.form-status.is-error {
  color: #b42318;
}

/* Footer */
.footer {
  color: rgba(255, 255, 255, 0.56);
  background: #000918;
}

.footer__top {
  display: grid;
  min-height: 148px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.brand--footer {
  filter: brightness(0) invert(1);
  opacity: 0.78;
}

.footer__identity {
  text-align: center;
}

.footer__identity strong,
.footer__identity span {
  display: block;
}

.footer__identity strong {
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
}

.footer__identity span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
}

.footer__back {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
  font-weight: 680;
  transition: color 180ms ease;
}

.footer__back:hover {
  color: var(--gold-300);
}

.footer__back span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.footer__bottom {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.67rem;
}

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

.footer__links a {
  color: rgba(255, 255, 255, 0.58);
  transition: color 180ms ease;
}

.footer__links a:hover {
  color: var(--gold-300);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  display: flex;
  max-width: 360px;
  padding: 14px 17px;
  align-items: center;
  gap: 11px;
  color: var(--white);
  background: var(--navy-800);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 13px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition:
    opacity 220ms ease,
    transform 220ms var(--ease);
}

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

.toast > span {
  display: grid;
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy-950);
  background: var(--teal-300);
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
}

.toast p {
  margin: 0;
  font-size: 0.76rem;
  line-height: 1.45;
}

/* Progressive reveal */
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 720ms var(--delay, 0ms) var(--ease),
    transform 720ms var(--delay, 0ms) var(--ease);
}

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

/* Tablet */
@media (max-width: 1080px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(370px, 0.8fr);
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(3rem, 5.1vw, 4.6rem);
  }

  .orbit--outer {
    width: 430px;
    height: 430px;
  }

  .orbit--inner {
    width: 350px;
    height: 350px;
  }

  .service-layout,
  .about__grid,
  .contact__grid {
    gap: 60px;
  }

  .faq__grid {
    gap: 70px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-height: 70px;
  }

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

  .site-header {
    backdrop-filter: none;
  }

  .section,
  .contact {
    padding: 88px 0;
  }

  .brand__crop {
    width: 165px;
    height: 54px;
  }

  .brand__image {
    top: -70px;
    left: -12px;
    width: 194px;
    height: 194px;
  }

  .nav-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

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

  .nav {
    position: fixed;
    z-index: 101;
    top: var(--header-height);
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    height: calc(100dvh - var(--header-height));
    min-height: calc(100vh - var(--header-height));
    padding: 38px 28px 40px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: rgba(255, 255, 255, 0.99);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    visibility: hidden;
    transition:
      opacity 220ms ease,
      transform 280ms var(--ease),
      visibility 0s linear 280ms;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
    transition-delay: 0s;
  }

  .nav > a:not(.button) {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.2rem;
  }

  .nav > a:not(.button)::after {
    display: none;
  }

  .nav__cta {
    margin-top: 26px;
  }

  .hero {
    padding-top: calc(var(--header-height) + 74px);
  }

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

  .hero__content {
    max-width: 750px;
  }

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

  .hero__visual {
    min-height: 480px;
  }

  .signal-card {
    width: min(86%, 500px);
  }

  .orbit--outer {
    width: 480px;
    height: 480px;
  }

  .orbit--inner {
    width: 390px;
    height: 390px;
  }

  .float-card--left {
    left: 9%;
  }

  .float-card--right {
    right: 8%;
  }

  .principle-strip {
    margin-top: 10px;
  }

  .section-heading--split {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .section-heading--split > p {
    max-width: 660px;
  }

  .path-card {
    min-height: 440px;
    padding: 34px;
  }

  .service-layout,
  .service-layout--reverse,
  .about__grid,
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 54px;
  }

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

  .service-section--sales .service-copy {
    order: 0;
  }

  .deliverables {
    max-width: 760px;
  }

  .sales-system {
    max-width: 760px;
  }

  .control-signals__shell {
    padding: 54px 46px;
  }

  .method-track {
    max-width: 760px;
  }

  .about__visual {
    min-height: 440px;
  }

  .about__photo {
    object-position: 50% 39%;
  }

  .career-path__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .career-path__steps span::after {
    display: none !important;
  }

  .vlm-pillars {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .outcomes__intro {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .faq__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq__intro {
    position: static;
  }

  .contact__copy {
    max-width: 700px;
  }

  .contact-form {
    max-width: 760px;
  }
}

/* Mobile */
@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .section,
  .contact {
    padding: 72px 0;
  }

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

  .brand__crop {
    width: 148px;
  }

  .brand__image {
    top: -64px;
    left: -11px;
    width: 178px;
    height: 178px;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 62px);
  }

  .hero::after {
    height: 50px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.85rem, 14.5vw, 4.2rem);
    line-height: 1.02;
  }

  .hero__lead {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__actions .button {
    width: 100%;
  }

  .hero__note {
    align-items: flex-start;
  }

  .hero__visual {
    min-height: 450px;
  }

  .hero-orbit-words {
    display: none;
  }

  .hero-portrait {
    width: min(100%, 340px);
  }

  .hero-portrait img {
    object-position: 50% 29%;
  }

  .hero-portrait figcaption {
    padding: 64px 22px 22px;
  }

  .orbit--outer {
    width: 355px;
    height: 355px;
  }

  .orbit--inner {
    width: 285px;
    height: 285px;
  }

  .float-card {
    display: none;
  }

  .principle-strip {
    display: grid;
    margin-top: 8px;
    padding: 10px 0 66px;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    text-align: center;
  }

  .principle-strip i {
    display: none;
  }

  .section-heading--split {
    margin-bottom: 40px;
  }

  .path-selector {
    margin: 0 auto 32px;
  }

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

  .path-card {
    min-height: 420px;
    padding: 28px;
  }

  .path-card__icon {
    margin-bottom: 42px;
  }

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

  .deliverable {
    display: grid;
    min-height: 0;
    padding: 24px;
    align-items: start;
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .deliverable > span {
    margin-bottom: 0;
  }

  .sales-system {
    padding: 18px;
  }

  .sales-flow article {
    min-height: 100px;
    padding: 15px 12px;
    grid-template-columns: 42px 1fr;
    gap: 10px;
  }

  .sales-flow article:not(:last-child)::after {
    left: 31px;
  }

  .control-signals__shell {
    padding: 38px 22px;
    border-radius: 26px;
  }

  .control-signals__heading {
    margin-bottom: 32px;
  }

  .control-signals__grid {
    grid-template-columns: 1fr;
  }

  .control-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .control-signals__cta {
    width: 100%;
    text-align: center;
  }

  .method-track__line {
    left: 24px;
  }

  .method-track__steps {
    gap: 20px;
  }

  .method-step,
  .method-step:nth-child(odd),
  .method-step:nth-child(even) {
    width: auto;
    min-height: 0;
    margin: 0 0 0 68px;
    padding: 24px;
    text-align: left;
  }

  .method-step:nth-child(odd)::before,
  .method-step:nth-child(even)::before {
    top: 32px;
    right: auto;
    left: -51px;
  }

  .method-step:nth-child(odd) p,
  .method-step:nth-child(even) p {
    max-width: none;
    margin: 0;
  }

  .about__visual {
    min-height: 430px;
  }

  .about__photo {
    object-position: 50% 38%;
  }

  .about__experience {
    top: 18px;
    left: 18px;
    padding: 11px 13px;
    gap: 9px;
  }

  .about__experience strong {
    font-size: 2.15rem;
  }

  .about__experience p {
    font-size: 0.56rem;
  }

  .about__caption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

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

  .career-path {
    margin-top: 64px;
    padding: 26px 22px;
  }

  .career-path__header {
    margin-bottom: 24px;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .career-path__header > p:last-child {
    text-align: left;
  }

  .career-path__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vlm-pillars {
    margin-top: 64px;
  }

  .vlm-pillars__grid {
    grid-template-columns: 1fr;
  }

  .vlm-pillar {
    display: grid;
    min-height: 0;
    padding: 22px;
    align-items: start;
    grid-template-columns: 48px 1fr;
    gap: 16px;
  }

  .vlm-pillar > span {
    margin-bottom: 0;
    grid-row: 1 / 3;
  }

  .vlm-pillar h3 {
    margin-top: 2px;
  }

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

  .outcome-card {
    min-height: 220px;
  }

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

  .fit-card {
    min-height: 0;
    padding: 30px 26px;
  }

  .fit-card__number {
    top: 30px;
    right: 28px;
  }

  .fit-card h3 {
    font-size: 1.7rem;
  }

  .accordion summary {
    min-height: 82px;
    padding-right: 46px;
    font-size: 0.94rem;
  }

  .accordion details p {
    margin-right: 18px;
    font-size: 0.86rem;
  }

  .contact-form {
    padding: 25px 20px;
    border-radius: 22px;
  }

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

  .footer__top {
    min-height: 220px;
    padding: 32px 0;
    grid-template-columns: 1fr;
    text-align: center;
  }

  .brand--footer,
  .footer__back {
    justify-self: center;
  }

  .footer__bottom {
    padding: 22px 0;
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .footer__links {
    justify-content: center;
  }

  .toast {
    right: 14px;
    bottom: 14px;
    left: 14px;
    max-width: none;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 2.7rem;
  }

  .hero__visual {
    min-height: 390px;
  }

  .path-selector {
    padding: 5px;
    border-radius: 22px;
    grid-template-columns: 1fr;
  }

  .orbit--outer {
    width: 310px;
    height: 310px;
  }

  .career-path__steps {
    grid-template-columns: 1fr;
  }

  .orbit--inner {
    width: 250px;
    height: 250px;
  }
}

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

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

/* Service detail pages */
.detail-page {
  background: var(--white);
}

.detail-hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  padding: calc(var(--header-height) + 86px) 0 94px;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy-950), var(--navy-800) 55%, #004451);
  background-size: 64px 64px, 64px 64px, 100% 100%;
}

.detail-page--sales .detail-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(229, 167, 0, 0.15), transparent 25%),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(135deg, #000d22, #00204b 52%, #00606a);
  background-size: auto, 64px 64px, 64px 64px, 100% 100%;
}

.detail-page--career .detail-hero {
  background:
    radial-gradient(circle at 80% 20%, rgba(98, 216, 216, 0.18), transparent 28%),
    linear-gradient(135deg, #00142e, var(--navy-800) 55%, #004451);
}

.detail-hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 56px;
  background: var(--white);
  content: "";
  clip-path: polygon(0 80%, 100% 0, 100% 100%, 0 100%);
}

.detail-hero__glow {
  position: absolute;
  top: 2%;
  right: -12%;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(0, 163, 170, 0.2), transparent 67%);
  border-radius: 50%;
  pointer-events: none;
}

.detail-hero__grid {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 520px;
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(46px, 7vw, 92px);
}

.detail-hero__copy {
  max-width: 720px;
}

.breadcrumb {
  display: flex;
  margin-bottom: 34px;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.57);
  font-size: 0.72rem;
}

.breadcrumb a {
  transition: color 180ms ease;
}

.breadcrumb a:hover {
  color: var(--gold-300);
}

.detail-hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(3.25rem, 5.4vw, 5.2rem);
}

.detail-hero__lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.78;
}

.detail-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-framework {
  position: relative;
  min-height: 470px;
  padding: 34px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 90px rgba(0, 7, 25, 0.3);
  backdrop-filter: blur(16px);
}

.detail-framework::before {
  position: absolute;
  top: -110px;
  right: -90px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(98, 216, 216, 0.3), transparent 68%);
  border-radius: 50%;
  content: "";
}

.detail-framework__top {
  position: relative;
  display: flex;
  margin-bottom: 78px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.detail-framework__top > span {
  color: var(--teal-300);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.detail-framework__top strong {
  color: rgba(255, 255, 255, 0.22);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4rem;
  line-height: 0.75;
}

.detail-framework > p {
  position: relative;
  max-width: 310px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
  line-height: 1.6;
}

.detail-framework__list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.detail-framework__list span {
  display: flex;
  min-height: 76px;
  padding: 15px;
  align-items: center;
  gap: 11px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  font-size: 0.76rem;
  font-weight: 650;
}

.detail-framework__list i {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: 50%;
  font-size: 0.6rem;
  font-style: normal;
  font-weight: 840;
}

.detail-portrait {
  position: relative;
  width: min(100%, 430px);
  height: 535px;
  margin: 0 auto;
  overflow: hidden;
  background: #eef3f6;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  box-shadow: 0 34px 90px rgba(0, 7, 25, 0.34);
}

.detail-portrait::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 45%;
  background: linear-gradient(transparent, rgba(0, 18, 43, 0.9));
  content: "";
}

.detail-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 29%;
}

.detail-portrait figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 26px;
  left: 28px;
}

.detail-portrait figcaption strong,
.detail-portrait figcaption span {
  display: block;
}

.detail-portrait figcaption strong {
  margin-bottom: 3px;
  color: var(--white);
  font-size: 1.05rem;
}

.detail-portrait figcaption span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
}

.detail-intro__grid,
.detail-fit__grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(54px, 9vw, 128px);
}

.detail-intro h2,
.detail-fit h2 {
  max-width: 620px;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4vw, 4rem);
}

.detail-prose {
  padding-top: 35px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.84;
}

.detail-prose p:last-child {
  margin-bottom: 0;
}

.detail-benefits {
  background: var(--surface);
}

.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.detail-card {
  min-height: 280px;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(0, 31, 75, 0.08);
  border-radius: var(--radius-md);
  box-shadow: 0 12px 34px rgba(0, 31, 75, 0.055);
  grid-column: span 2;
}

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

.detail-card > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 64px;
  place-items: center;
  color: var(--teal-700);
  background: rgba(0, 163, 170, 0.09);
  border-radius: 13px;
  font-size: 0.68rem;
  font-weight: 820;
}

.detail-card h3 {
  margin-bottom: 12px;
  font-size: 1.16rem;
}

.detail-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.68;
}

.detail-card--accent {
  background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
  border-color: transparent;
}

.detail-card--accent > span {
  color: var(--navy-950);
  background: var(--gold-400);
}

.detail-card--accent h3 {
  color: var(--white);
}

.detail-card--accent p {
  color: rgba(255, 255, 255, 0.62);
}

.detail-process {
  color: var(--white);
  background:
    radial-gradient(circle at 90% 8%, rgba(0, 163, 170, 0.15), transparent 28%),
    linear-gradient(120deg, var(--navy-950), #00294a);
}

.detail-process__heading {
  max-width: 790px;
  margin-bottom: 58px;
}

.detail-process__heading h2 {
  margin-bottom: 0;
  color: var(--white);
}

.detail-steps {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.detail-steps li {
  min-height: 300px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-md);
}

.detail-steps li > span {
  display: block;
  margin-bottom: 76px;
  color: var(--gold-300);
  font-size: 0.72rem;
  font-weight: 820;
  letter-spacing: 0.12em;
}

.detail-steps h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.12rem;
}

.detail-steps p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  line-height: 1.68;
}

.detail-fit {
  background: var(--surface-warm);
}

.detail-fit__copy > p:last-child {
  max-width: 590px;
  margin: 24px 0 0;
  color: var(--muted);
}

.detail-checklist {
  display: grid;
  margin: 0;
  padding: 34px;
  gap: 0;
  background: var(--white);
  border: 1px solid rgba(0, 31, 75, 0.09);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  list-style: none;
}

.detail-checklist li {
  position: relative;
  padding: 19px 0 19px 38px;
  color: #41556d;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

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

.detail-checklist li::before {
  position: absolute;
  top: 19px;
  left: 0;
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: var(--navy-950);
  background: var(--gold-400);
  border-radius: 50%;
  content: "✓";
  font-size: 0.65rem;
  font-weight: 900;
}

.detail-related .section-heading {
  margin-bottom: 48px;
}

.detail-related__grid {
  display: grid;
  max-width: 920px;
  margin: 0 auto;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.detail-related__card {
  display: flex;
  min-height: 330px;
  padding: 34px;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid rgba(0, 31, 75, 0.08);
  border-radius: var(--radius-md);
  transition: transform 240ms var(--ease), box-shadow 240ms ease;
}

.detail-related__card:hover {
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.detail-related__card > span {
  margin-bottom: 62px;
  color: var(--teal-700);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.detail-related__card h3 {
  margin-bottom: 13px;
  font-size: 1.55rem;
}

.detail-related__card p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.86rem;
}

.detail-related__card strong {
  margin-top: auto;
  color: var(--navy-800);
  font-size: 0.82rem;
}

.detail-cta {
  padding: 96px 0;
  color: var(--white);
  background: linear-gradient(115deg, var(--navy-950), var(--navy-700) 68%, #005762);
}

.detail-cta__inner {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 70px;
}

.detail-cta h2 {
  max-width: 760px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
}

.detail-cta p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.64);
}

.detail-cta .button {
  min-width: 240px;
}

@media (max-width: 1080px) {
  .detail-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
    gap: 42px;
  }

  .detail-hero h1 {
    font-size: clamp(3rem, 5.2vw, 4.6rem);
  }

  .detail-framework {
    padding: 28px;
  }
}

@media (max-width: 920px) {
  .detail-hero {
    padding-top: calc(var(--header-height) + 64px);
  }

  .detail-hero__grid {
    grid-template-columns: 1fr;
  }

  .detail-hero__copy {
    max-width: 790px;
  }

  .detail-framework,
  .detail-portrait {
    width: min(100%, 620px);
    justify-self: center;
  }

  .detail-intro__grid,
  .detail-fit__grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .detail-prose {
    max-width: 720px;
    padding-top: 0;
  }

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

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

  .detail-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-cta__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .detail-cta .button {
    width: fit-content;
  }
}

@media (max-width: 680px) {
  .detail-hero {
    min-height: auto;
    padding: calc(var(--header-height) + 48px) 0 76px;
  }

  .breadcrumb {
    margin-bottom: 26px;
  }

  .detail-hero h1 {
    font-size: clamp(2.6rem, 12.5vw, 3.8rem);
    line-height: 1.03;
  }

  .detail-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .detail-hero__actions .button {
    width: 100%;
  }

  .detail-framework {
    min-height: 0;
    padding: 25px;
  }

  .detail-framework__top {
    margin-bottom: 52px;
  }

  .detail-framework__list {
    grid-template-columns: 1fr;
  }

  .detail-framework__list span {
    min-height: 64px;
  }

  .detail-portrait {
    height: 490px;
  }

  .detail-intro h2,
  .detail-fit h2 {
    font-size: clamp(2.2rem, 10.5vw, 3.2rem);
  }

  .detail-card-grid {
    grid-template-columns: 1fr;
  }

  .detail-card,
  .detail-card:nth-child(4),
  .detail-card:nth-child(5) {
    min-height: 0;
    grid-column: auto;
  }

  .detail-card > span {
    margin-bottom: 42px;
  }

  .detail-steps {
    grid-template-columns: 1fr;
  }

  .detail-steps li {
    min-height: 0;
  }

  .detail-steps li > span {
    margin-bottom: 42px;
  }

  .detail-checklist {
    padding: 22px;
  }

  .detail-related__grid {
    grid-template-columns: 1fr;
  }

  .detail-related__card {
    min-height: 290px;
    padding: 28px;
  }

  .detail-cta {
    padding: 76px 0;
  }

  .detail-cta .button {
    width: 100%;
  }
}

@media (max-width: 380px) {
  .detail-hero h1 {
    font-size: 2.45rem;
  }

  .detail-portrait {
    height: 430px;
  }
}

/* Not found */
.error-page {
  color: var(--white);
  background: var(--navy-950);
}

.error-page__main {
  display: grid;
  min-height: 100vh;
  padding: 48px 0;
  place-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 163, 170, 0.19), transparent 30%),
    linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.error-page__card {
  max-width: 780px;
  padding: 54px;
  background: rgba(255, 255, 255, 0.065);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.brand--error {
  margin-bottom: 72px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.error-page h1 {
  max-width: 680px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.6rem);
}

.error-page__card > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.65);
}

.error-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (max-width: 680px) {
  .error-page__card {
    padding: 34px 25px;
  }

  .brand--error {
    margin-bottom: 54px;
  }

  .error-page__actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 920px) {
  .testimonials__heading {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .testimonials__heading > p {
    max-width: 650px;
    margin-bottom: 0;
  }
}

@media (max-width: 680px) {
  .testimonials__heading {
    margin-bottom: 34px;
  }

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

  .testimonial-card {
    min-height: 290px;
    padding: 30px 25px 28px;
  }

  .testimonial-card__mark {
    height: 43px;
    margin: -10px 0 13px;
    font-size: 5.3rem;
  }

  .testimonial-card blockquote p {
    font-size: clamp(1.42rem, 7vw, 1.85rem);
  }

  .testimonial-card figcaption {
    padding-top: 22px;
  }
}
