:root {
  --amber: #F59711;
  --maroon: #8B2252;
  --violet: #785CFE;
  --cyan: #0BAFE2;
  --emerald: #13BA82;
  --ink: #111817;
  --deep: #0D1718;
  --deep-2: #142322;
  --text: #263332;
  --muted: #667574;
  --line: #DCE5E4;
  --surface: #FFFFFF;
  --soft: #F4F7F7;
  --soft-2: #EAF2F1;
  --shadow: 0 20px 55px rgba(13, 23, 24, 0.12);
  --button-shadow: 0 18px 42px rgba(11, 175, 226, 0.28);
  --header-space: 93px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
  scroll-padding-top: 108px;
}

body {
  min-height: 100%;
  margin: 0;
  padding-top: var(--header-space);
  font-family: "DM Sans", sans-serif;
  color: var(--text);
  background: var(--surface);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.thanks-page {
  display: grid;
  min-height: 100svh;
  padding-top: 0;
  background:
    linear-gradient(135deg, rgba(13, 23, 24, 0.92), rgba(13, 23, 24, 0.72)),
    url("assets/trade-compliance-documents.jpg") center / cover;
}

html.modal-open,
body.modal-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

[hidden] {
  display: none !important;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

section {
  scroll-margin-top: 120px;
}

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

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

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

.thanks-shell {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 32px;
}

.thanks-card {
  width: min(520px, 100%);
  padding: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.thanks-card img {
  width: 142px;
  margin-bottom: 34px;
}

.thanks-card h1 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 44px;
  line-height: 1.05;
}

.thanks-card p:not(.label) {
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.thanks-resource {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
  margin: 8px 0 26px;
  padding: 20px 0 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.thanks-resource img {
  width: 86px;
  margin: 0;
  border-radius: 6px;
  box-shadow: 0 16px 30px rgba(13, 23, 24, 0.16);
}

.thanks-card .thanks-resource h2 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.thanks-card .thanks-resource p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: grid;
  grid-template-columns: 170px 1fr auto;
  align-items: center;
  gap: 24px;
  height: var(--header-space);
  min-height: var(--header-space);
  padding: 10px 28px;
  background: #FFFFFF;
  border-bottom: 1px solid rgba(220, 229, 228, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: 0 -96px 0 96px #FFFFFF;
  transition: min-height 180ms ease, padding 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header[data-scrolled="true"] {
  background: #FFFFFF;
  box-shadow: 0 -96px 0 96px #FFFFFF, 0 14px 34px rgba(13, 23, 24, 0.1);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand img {
  width: 150px;
  height: auto;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 38px;
}

.site-nav a,
.site-footer nav a {
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
}

.site-nav a:hover,
.site-footer nav a:hover {
  color: var(--cyan);
}

.header-action,
.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  isolation: isolate;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.header-action::before,
.button::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.34) 45%, transparent 62%);
  transform: translateX(-130%);
  transition: transform 420ms ease;
}

.header-action > *,
.button > * {
  position: relative;
  z-index: 1;
}

.button:focus-visible,
.header-action:focus-visible,
.header-linkedin:focus-visible,
.site-nav a:focus-visible,
.footer-grid a:focus-visible,
.resume-modal a:focus-visible,
.faq-item button:focus-visible,
.industry-card:focus-visible,
.service-list article:focus-visible,
.modal-close:focus-visible,
.discovery-form input:focus-visible,
.discovery-form select:focus-visible,
.discovery-form textarea:focus-visible {
  outline: 3px solid rgba(11, 175, 226, 0.42);
  outline-offset: 3px;
}

.header-action {
  background: var(--cyan);
  color: #FFFFFF;
  white-space: nowrap;
}

.header-actions {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 10px;
}

.header-linkedin {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #FFFFFF;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-linkedin:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 175, 226, 0.42);
  box-shadow: 0 14px 32px rgba(13, 23, 24, 0.1);
}

button.header-action {
  border: 0;
}

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

.button:hover::before,
.header-action:hover::before {
  transform: translateX(130%);
}

.button:active,
.header-action:active {
  transform: translateY(0);
}

.button-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.button:hover .button-icon,
.header-action:hover .button-icon,
.quote-panel a:hover .button-icon {
  transform: translateX(2px);
}

.button.primary {
  background: linear-gradient(135deg, var(--cyan), #0798CC);
  color: #FFFFFF;
  box-shadow: var(--button-shadow);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #FFFFFF;
}

.button.secondary:hover {
  border-color: rgba(11, 175, 226, 0.42);
  box-shadow: 0 14px 32px rgba(13, 23, 24, 0.1);
}

.button.dark-button {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  backdrop-filter: blur(12px);
}

.button.dark-button:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.18);
}

.linkedin-button {
  gap: 10px;
}

.linkedin-icon {
  fill: #0A66C2;
  stroke: none;
}

.button.ghost {
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.button.light-button {
  background: #FFFFFF;
  color: var(--ink);
  box-shadow: none;
}

.button.light-button:hover {
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #FFFFFF;
  color: var(--ink);
  padding: 0;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  display: block;
  width: 22px;
  height: 3px;
  margin: 0;
  background: var(--ink);
  border-radius: 2px;
}

.menu-toggle span:nth-child(1) {
  top: 14px;
}

.menu-toggle span:nth-child(2) {
  top: 21px;
}

.menu-toggle span:nth-child(3) {
  top: 28px;
}

.hero {
  position: relative;
  --hero-pointer-x: 50%;
  --hero-pointer-y: 50%;
  min-height: 600px;
  height: calc(100svh - var(--header-space));
  max-height: 760px;
  overflow: hidden;
  isolation: isolate;
  background: var(--deep);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transition: opacity 260ms ease, transform 180ms ease;
}

.hero::before {
  z-index: 2;
  inset: 0;
  background:
    radial-gradient(
      circle at var(--hero-pointer-x) var(--hero-pointer-y),
      rgba(199, 244, 255, 0.2) 0%,
      rgba(11, 175, 226, 0.1) 18%,
      rgba(13, 23, 24, 0) 46%
    );
  mix-blend-mode: screen;
}

.hero::after {
  z-index: 3;
  left: var(--hero-pointer-x);
  top: var(--hero-pointer-y);
  width: 22px;
  height: 22px;
  border: 1px solid rgba(199, 244, 255, 0.36);
  border-radius: 999px;
  box-shadow: 0 0 22px rgba(11, 175, 226, 0.16);
  transform: translate3d(-50%, -50%, 0) scale(0.86);
}

.hero[data-pointer-active="true"]::before {
  opacity: 1;
}

.hero[data-pointer-active="true"]::after {
  opacity: 1;
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.hero-media,
.hero-media img,
.process-media,
.process-media img,
.support-media,
.support-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img,
.process-media img,
.support-media img {
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
  transform-origin: center;
  transition: transform 120ms linear;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 23, 24, 0.9) 0%, rgba(13, 23, 24, 0.62) 42%, rgba(13, 23, 24, 0.24) 100%),
    linear-gradient(180deg, rgba(13, 23, 24, 0.15) 0%, rgba(13, 23, 24, 0.76) 100%);
}

.hero-grid {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 64px;
  align-items: center;
  height: 100%;
}

.hero-copy {
  max-width: 710px;
  color: #FFFFFF;
}

.label {
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--cyan);
}

.label.light {
  color: #C7F4FF;
}

.hero h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1.04;
  font-weight: 600;
  color: #FFFFFF;
  text-wrap: balance;
}

.hero-lede {
  margin: 34px 0 12px;
  font-size: 24px;
  line-height: 1.35;
  font-style: italic;
  color: #FFFFFF;
}

.hero-text {
  max-width: 620px;
  margin: 0;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.84);
}

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

.hero-proof {
  display: grid;
  gap: 12px;
}

.hero-proof div {
  position: relative;
  overflow: hidden;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  backdrop-filter: blur(16px);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.hero-proof div::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--cyan), var(--emerald));
  opacity: 0.86;
}

.hero-proof div:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.14);
}

.hero-proof strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}

.hero-proof span {
  display: block;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.intro,
.principal,
.needs,
.engagement,
.faq {
  padding: 96px 0;
  background: #FFFFFF;
}

.intro-grid,
.principal-grid,
.services-grid,
.support-grid,
.engagement-grid,
.snapshot-grid,
.about-detail-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 72px;
  align-items: start;
}

.section-title h2,
.industries-head h2,
.principal-copy h2,
.services-copy h2,
.process-heading h2,
.support-copy h2,
.engagement h2,
.snapshots h2,
.about-detail h2,
.contact h2,
.faq h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.13;
  font-weight: 700;
  color: var(--ink);
  text-wrap: balance;
}

.section-title.narrow {
  max-width: 720px;
  margin-bottom: 36px;
}

.intro-copy {
  display: grid;
  gap: 22px;
}

.intro-copy p,
.resource-copy p,
.principal-copy p,
.services-copy p,
.about-detail p,
.model-list p,
.snapshot-list,
.faq-item p {
  margin: 0;
  font-size: 17px;
  line-height: 1.72;
  color: var(--muted);
}

.resource {
  padding: 88px 0;
  background: linear-gradient(180deg, #FFFFFF 0%, var(--soft) 100%);
}

.resource-panel {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0 24px 70px rgba(13, 23, 24, 0.08);
}

.resource-cover {
  width: min(100%, 260px);
}

.resource-cover img,
.ebook-preview img {
  border-radius: 8px;
  box-shadow: 0 22px 46px rgba(13, 23, 24, 0.2);
}

.resource-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.14;
  text-wrap: balance;
}

.resource-copy p {
  max-width: 690px;
  margin: 18px 0 0;
}

.resource-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 28px;
}

.resource-points span {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--soft);
  font-size: 13px;
  font-weight: 700;
}

.principal {
  background:
    linear-gradient(180deg, #FFFFFF 0%, var(--soft) 100%);
}

.principal-grid {
  align-items: center;
}

.principal-media {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  min-height: 520px;
  box-shadow: var(--shadow);
  background: var(--deep);
}

.principal-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(13, 23, 24, 0), rgba(13, 23, 24, 0.38));
  pointer-events: none;
}

.principal-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center top;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.035);
  transition: transform 120ms linear;
}

.principal-copy p {
  margin: 22px 0 0;
}

.principal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.process,
.support {
  position: relative;
  min-height: 640px;
  padding: 106px 0;
  overflow: hidden;
  background: var(--deep);
  isolation: isolate;
}

.process::before,
.support::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(13, 23, 24, 0.82), rgba(13, 23, 24, 0.58));
}

.process-inner,
.support-grid {
  position: relative;
  z-index: 2;
}

.process-heading {
  max-width: 720px;
  margin-bottom: 72px;
}

.process-heading h2,
.support-copy h2,
.contact h2 {
  color: #FFFFFF;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 68px auto;
  gap: 0;
  overflow: hidden;
  padding-top: 4px;
}

.process-track {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 1;
}

.process-track::before {
  content: "";
  position: absolute;
  left: 0;
  right: 44px;
  top: 32px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), var(--cyan), var(--emerald));
  box-shadow: 0 0 28px rgba(11, 175, 226, 0.28);
}

.process-track::after {
  content: "";
  position: absolute;
  right: 0;
  top: 19px;
  width: 0;
  height: 0;
  border-top: 14px solid transparent;
  border-bottom: 14px solid transparent;
  border-left: 42px solid var(--emerald);
  filter: drop-shadow(0 0 16px rgba(19, 186, 130, 0.28));
}

.process-steps article {
  position: relative;
  grid-row: 2;
  min-height: 210px;
  padding: 28px 28px 0 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  color: #FFFFFF;
}

.process-steps article:first-of-type {
  border-left: 0;
}

.process-steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 24px;
  border-radius: 999px;
  color: var(--deep);
  background: var(--amber);
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.1);
}

.process-steps article:nth-of-type(2) span {
  background: var(--cyan);
}

.process-steps article:nth-of-type(3) span {
  color: #FFFFFF;
  background: var(--violet);
}

.process-steps article:nth-of-type(4) span {
  background: var(--emerald);
}

.process-steps h3,
.need-card h3,
.service-list h3,
.model-list h3,
.work-steps h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.24;
  font-weight: 700;
  color: var(--ink);
  text-wrap: balance;
}

.process-steps h3 {
  color: #FFFFFF;
}

.process-steps p {
  margin: 0;
  font-size: 15px;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.72);
}

.needs {
  background: var(--soft);
}

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

.need-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0 12px 30px rgba(13, 23, 24, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
  --need-accent: var(--cyan);
  --need-accent-soft: rgba(11, 175, 226, 0.12);
  --need-accent-line: rgba(11, 175, 226, 0.24);
}

.need-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--need-accent-soft), transparent 52%),
    linear-gradient(90deg, var(--need-accent-line), transparent 42%);
  opacity: 0;
  transition: opacity 180ms ease;
}

.need-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: var(--need-accent);
  transform: scaleX(0.32);
  transform-origin: left;
  opacity: 0.8;
  transition: transform 180ms ease, opacity 180ms ease;
}

.need-card:nth-child(1) {
  --need-accent: var(--maroon);
  --need-accent-soft: rgba(139, 34, 82, 0.1);
  --need-accent-line: rgba(139, 34, 82, 0.2);
}

.need-card:nth-child(2) {
  --need-accent: var(--cyan);
  --need-accent-soft: rgba(11, 175, 226, 0.11);
  --need-accent-line: rgba(11, 175, 226, 0.22);
}

.need-card:nth-child(3) {
  --need-accent: var(--emerald);
  --need-accent-soft: rgba(19, 186, 130, 0.11);
  --need-accent-line: rgba(19, 186, 130, 0.22);
}

.need-card:nth-child(4) {
  --need-accent: var(--violet);
  --need-accent-soft: rgba(120, 92, 254, 0.1);
  --need-accent-line: rgba(120, 92, 254, 0.2);
}

.need-card:nth-child(5) {
  --need-accent: var(--amber);
  --need-accent-soft: rgba(245, 151, 17, 0.12);
  --need-accent-line: rgba(245, 151, 17, 0.24);
}

.need-card:hover {
  transform: translateY(-4px);
  border-color: var(--need-accent-line);
  box-shadow: 0 20px 46px rgba(13, 23, 24, 0.1);
}

.need-card:hover::before {
  opacity: 1;
}

.need-card:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.need-card.wide {
  grid-column: span 2;
}

.icon-box {
  position: relative;
  display: inline-flex;
  width: 62px;
  height: 62px;
  margin-bottom: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--need-accent);
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 255, 255, 0.9), transparent 30%),
    linear-gradient(135deg, #FFFFFF, var(--need-accent-soft));
  box-shadow:
    inset 0 0 0 1px var(--need-accent-line),
    0 12px 26px rgba(13, 23, 24, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.icon-box::after {
  content: "";
  position: absolute;
  right: 9px;
  bottom: 9px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--need-accent);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.82);
}

.need-card:hover .icon-box {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    inset 0 0 0 1px var(--need-accent-line),
    0 18px 34px rgba(13, 23, 24, 0.12);
}

.icon-box svg {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-box svg .icon-accent {
  stroke: var(--amber);
}

.need-card p,
.service-list li,
.support-tags span,
.work-steps p,
.contact-card p,
.contact-card a {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.services {
  padding: 106px 0;
  background: #FFFFFF;
}

.services-copy {
  position: sticky;
  top: 112px;
}

.services-copy p {
  margin: 22px 0 28px;
}

.services-copy .button {
  margin: 0 10px 10px 0;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-list article {
  position: relative;
  overflow: hidden;
  padding: 32px 34px;
  border-radius: 8px;
  background: var(--soft);
  border-left: 4px solid var(--cyan);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.service-list article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cyan), var(--emerald), var(--amber));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.service-list article:hover,
.service-list article:focus-visible {
  transform: translateY(-4px);
  background: #FFFFFF;
  box-shadow: 0 18px 44px rgba(13, 23, 24, 0.1);
}

.service-list article:hover::after,
.service-list article:focus-visible::after {
  transform: scaleX(1);
}

.service-list ul,
.snapshot-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.service-list li::marker,
.snapshot-list li::marker {
  color: var(--cyan);
}

.service-detail {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 15px;
  line-height: 1.72;
  color: var(--text);
  transition: max-height 220ms ease, opacity 180ms ease, margin 180ms ease;
}

.service-list article:hover .service-detail,
.service-list article:focus-visible .service-detail,
.service-list article:focus-within .service-detail {
  max-height: 180px;
  margin-top: 18px;
  opacity: 1;
}

.support-grid {
  align-items: center;
}

.quote-panel {
  padding: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: var(--shadow);
}

.quote-panel p {
  margin: 0 0 26px;
  font-size: 32px;
  line-height: 1.18;
  font-weight: 700;
  color: var(--ink);
}

.quote-panel a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cyan);
  font-weight: 700;
}

.support-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.support-tags span {
  padding: 10px 12px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
}

.industries {
  padding: 96px 0;
  background: #FFFFFF;
}

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

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

.industry-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 24px;
  border-radius: 8px;
  color: #FFFFFF;
  background:
    linear-gradient(135deg, rgba(13, 23, 24, 0.78), rgba(13, 23, 24, 0.36)),
    url("assets/advisory-table.jpg") center / cover;
  isolation: isolate;
  background-position: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background-position 360ms ease;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(13, 23, 24, 0.1), rgba(13, 23, 24, 0.86)),
    linear-gradient(135deg, rgba(11, 175, 226, 0.52), rgba(19, 186, 130, 0.12));
  transition: background 180ms ease;
}

.industry-card h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
}

.industry-card p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.84);
  transition: max-height 220ms ease, opacity 180ms ease;
}

.industry-card:hover,
.industry-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(13, 23, 24, 0.16);
  background-position: center 46%;
}

.industry-card:hover p,
.industry-card:focus-visible p,
.industry-card:focus-within p {
  max-height: 150px;
  opacity: 1;
}

.industry-card:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(13, 23, 24, 0.76), rgba(13, 23, 24, 0.28)),
    url("assets/trade-analysis.jpg") center / cover;
}

.industry-card:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(13, 23, 24, 0.78), rgba(13, 23, 24, 0.32)),
    url("assets/trade-compliance-containers.jpg") center / cover;
}

.industry-card:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(13, 23, 24, 0.8), rgba(13, 23, 24, 0.32)),
    url("assets/process-office.png") center / cover;
}

.industry-card:nth-child(5) {
  background:
    linear-gradient(135deg, rgba(13, 23, 24, 0.8), rgba(13, 23, 24, 0.34)),
    url("assets/trade-compliance-containers.jpg") center / cover;
}

.industry-card:nth-child(6) {
  background:
    linear-gradient(135deg, rgba(13, 23, 24, 0.8), rgba(13, 23, 24, 0.3)),
    url("assets/trade-compliance-containers.jpg") center / cover;
}

.engagement {
  background: var(--soft);
}

.engagement-copy {
  position: sticky;
  top: calc(var(--header-space) + 32px);
}

.engagement-copy p:not(.label) {
  margin: 22px 0 0;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
}

.engagement-grid {
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: 56px;
}

.approach-system {
  display: grid;
  gap: 18px;
}

.momentum-graphic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: 88px auto auto;
  gap: 0;
  overflow: hidden;
  min-height: 520px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(13, 23, 24, 0.92), rgba(13, 23, 24, 0.78)),
    url("assets/trade-compliance-documents.jpg") center / cover;
  color: #FFFFFF;
  box-shadow: var(--shadow);
  isolation: isolate;
}

.momentum-graphic::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 20%, rgba(11, 175, 226, 0.24), transparent 28%),
    radial-gradient(circle at 90% 16%, rgba(19, 186, 130, 0.2), transparent 25%),
    linear-gradient(90deg, rgba(13, 23, 24, 0.9), rgba(13, 23, 24, 0.62));
}

.momentum-graphic::after {
  content: "";
  position: absolute;
  inset: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  pointer-events: none;
}

.method-circle {
  position: absolute;
  left: 32px;
  top: 32px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border-radius: 999px;
  background: #FFFFFF;
  box-shadow:
    0 0 0 8px rgba(255, 255, 255, 0.1),
    0 20px 42px rgba(0, 0, 0, 0.24);
}

.method-circle img {
  width: 72px;
  height: auto;
}

.momentum-arrow {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 1;
  height: 88px;
}

.momentum-arrow::before {
  content: "";
  position: absolute;
  left: 118px;
  right: 38px;
  top: 43px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--amber), var(--cyan), var(--emerald));
  box-shadow: 0 0 26px rgba(11, 175, 226, 0.24);
  animation: arrow-flow 3.8s ease-in-out infinite;
}

.momentum-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 30px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 40px solid var(--emerald);
  filter: drop-shadow(0 0 16px rgba(19, 186, 130, 0.28));
}

.flow-step {
  position: relative;
  z-index: 1;
  grid-row: 2;
  min-height: 260px;
  padding: 22px 20px 22px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
}

.step-one {
  grid-column: 1;
  border-left: 0;
}

.step-two {
  grid-column: 2;
}

.step-three {
  grid-column: 3;
}

.step-four {
  grid-column: 4;
}

.flow-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 28px;
  border-radius: 999px;
  color: var(--deep);
  background: #FFFFFF;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12);
}

.step-one span {
  background: var(--amber);
}

.step-two span {
  background: var(--cyan);
}

.step-three span {
  background: var(--violet);
  color: #FFFFFF;
}

.step-four span {
  background: var(--emerald);
}

.flow-step h3 {
  margin: 0 0 13px;
  color: #FFFFFF;
  font-size: 23px;
  line-height: 1.18;
  font-weight: 800;
  text-wrap: balance;
}

.flow-step p {
  margin: 0;
  max-width: 210px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.6;
}

.expertise-lanes {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.expertise-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.08);
  font-size: 13px;
  font-weight: 700;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.expertise-pill:hover,
.expertise-pill.is-active,
.expertise-pill:focus,
.expertise-pill:focus-visible {
  border-color: rgba(11, 175, 226, 0.48);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

.expertise-popover {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 14px);
  z-index: 8;
  display: block;
  width: min(320px, calc(100vw - 56px));
  padding: 15px 16px;
  border: 1px solid rgba(220, 229, 228, 0.9);
  border-radius: 8px;
  color: var(--text);
  background: #FFFFFF;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translate(-50%, 8px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.expertise-popover::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 14px;
  height: 14px;
  background: #FFFFFF;
  border-right: 1px solid rgba(220, 229, 228, 0.9);
  border-bottom: 1px solid rgba(220, 229, 228, 0.9);
  transform: translateX(-50%) rotate(45deg);
}

.expertise-pill:nth-child(1) .expertise-popover,
.expertise-pill:nth-child(2) .expertise-popover {
  left: 0;
  transform: translate(0, 8px);
}

.expertise-pill:nth-child(5) .expertise-popover,
.expertise-pill:nth-child(6) .expertise-popover {
  right: 0;
  left: auto;
  transform: translate(0, 8px);
}

.expertise-pill:hover .expertise-popover,
.expertise-pill.is-active .expertise-popover,
.expertise-pill:focus .expertise-popover,
.expertise-pill:focus-visible .expertise-popover {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.expertise-pill:nth-child(1):hover .expertise-popover,
.expertise-pill:nth-child(1).is-active .expertise-popover,
.expertise-pill:nth-child(1):focus .expertise-popover,
.expertise-pill:nth-child(1):focus-visible .expertise-popover,
.expertise-pill:nth-child(2):hover .expertise-popover,
.expertise-pill:nth-child(2).is-active .expertise-popover,
.expertise-pill:nth-child(2):focus .expertise-popover,
.expertise-pill:nth-child(2):focus-visible .expertise-popover,
.expertise-pill:nth-child(5):hover .expertise-popover,
.expertise-pill:nth-child(5).is-active .expertise-popover,
.expertise-pill:nth-child(5):focus .expertise-popover,
.expertise-pill:nth-child(5):focus-visible .expertise-popover,
.expertise-pill:nth-child(6):hover .expertise-popover,
.expertise-pill:nth-child(6).is-active .expertise-popover,
.expertise-pill:nth-child(6):focus .expertise-popover,
.expertise-pill:nth-child(6):focus-visible .expertise-popover {
  transform: translate(0, 0);
}

.expertise-popover strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.expertise-popover span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

@keyframes arrow-flow {
  0%,
  100% {
    opacity: 0.82;
    transform: scaleX(0.96);
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

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

.delivery-modes article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #FFFFFF;
}

.delivery-modes span {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 800;
}

.delivery-modes p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.model-list {
  display: grid;
  gap: 16px;
}

.model-list article {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 26px;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1px solid var(--line);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.model-list article:hover {
  transform: translateX(3px);
  border-color: rgba(11, 175, 226, 0.32);
  box-shadow: 0 16px 34px rgba(13, 23, 24, 0.08);
}

.model-list span {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: var(--deep);
  color: #FFFFFF;
  font-weight: 700;
}

.model-list h3,
.model-list p {
  grid-column: 2;
}

.model-list span + h3 {
  margin-top: 4px;
}

.snapshots {
  padding: 96px 0;
  background: #FFFFFF;
}

.metric-stack {
  display: grid;
  gap: 16px;
}

.metric-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 8px;
  background: var(--deep);
  color: #FFFFFF;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.metric-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--cyan), var(--emerald));
  transform: scaleX(var(--metric-progress, 0));
  transform-origin: left;
  transition: transform 900ms ease;
}

.metric-card::after {
  content: "";
  position: absolute;
  inset: -60px -80px auto auto;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  background: rgba(11, 175, 226, 0.16);
  filter: blur(2px);
  z-index: -1;
}

.metric-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(13, 23, 24, 0.18);
}

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

.metric-card > span {
  display: block;
  margin-top: 8px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.78);
}

.source-note {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
}

.source-note a {
  color: var(--cyan);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.about-detail {
  padding: 96px 0;
  background: var(--soft);
}

.about-image {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.035);
  transition: transform 120ms linear;
}

.about-detail p {
  margin-top: 22px;
}

.work-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.work-steps article {
  padding: 22px;
  border-radius: 8px;
  background: #FFFFFF;
  border: 1px solid var(--line);
}

.contact {
  padding: 96px 0;
  background:
    linear-gradient(135deg, rgba(13, 23, 24, 0.94), rgba(13, 23, 24, 0.78)),
    linear-gradient(135deg, var(--deep), var(--cyan));
}

.contact-card {
  display: grid;
  gap: 18px;
  padding: 34px;
  border-radius: 8px;
  background: #FFFFFF;
}

.contact-card > div > span {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--cyan);
}

.contact-card a,
.contact-card p {
  color: var(--ink);
  font-weight: 700;
}

.profile-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}

.profile-link span {
  display: inline;
}

.profile-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: #0A66C2;
  fill: currentColor;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(13, 23, 24, 0.66);
  backdrop-filter: blur(10px);
}

.modal-backdrop[hidden] {
  display: none;
}

.modal {
  width: min(760px, 100%);
  max-height: min(96svh, 820px);
  overflow: auto;
  padding: 28px;
  border-radius: 8px;
  background: #FFFFFF;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.modal-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
  margin-bottom: 24px;
}

.modal-head h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.16;
  color: var(--ink);
}

.modal-close {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #FFFFFF;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
}

.resume-modal {
  width: min(1120px, 100%);
  height: min(92svh, 900px);
  max-height: min(96svh, 900px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  padding: 0;
}

.ebook-modal {
  width: min(920px, 100%);
}

.ebook-modal-grid {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.ebook-preview {
  position: sticky;
  top: 0;
}

.ebook-form {
  align-content: start;
}

.resume-modal-head {
  margin: 0;
  padding: 30px 38px 24px;
  border-bottom: 1px solid var(--line);
  background: #FFFFFF;
}

.resume-contact {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

.resume-contact a {
  color: var(--ink);
  font-weight: 700;
}

.resume-content {
  overflow: auto;
  padding: 34px 38px 42px;
  color: var(--text);
}

.resume-section {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}

.resume-section + .resume-section {
  padding-top: 30px;
}

.resume-section:last-child {
  border-bottom: 0;
}

.resume-section h3 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.2;
}

.resume-role {
  display: grid;
  gap: 12px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.resume-role:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.resume-role h4 {
  margin: 0;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.28;
}

.resume-meta {
  margin: 0;
  color: var(--cyan);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.resume-content p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.68;
}

.resume-content ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.55;
}

.resume-content li::marker {
  color: var(--cyan);
}

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

.resume-section-grid h3:not(:first-child) {
  margin-top: 24px;
}

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

.form-honey {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.discovery-form label,
.discovery-form span {
  display: grid;
}

.discovery-form span {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.discovery-form input,
.discovery-form select,
.discovery-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  color: var(--ink);
  font-size: 16px;
}

.discovery-form input,
.discovery-form select {
  min-height: 46px;
  padding: 0 12px;
}

.discovery-form select {
  appearance: none;
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%) calc(100% - 18px) 20px / 6px 6px no-repeat,
    linear-gradient(135deg, var(--muted) 50%, transparent 50%) calc(100% - 12px) 20px / 6px 6px no-repeat,
    var(--soft);
}

.discovery-form textarea {
  min-height: 112px;
  padding: 12px;
  resize: vertical;
}

.full-field,
.modal-actions,
.modal-status {
  grid-column: 1 / -1;
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 4px;
}

.modal-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.modal-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.modal-direct a {
  color: var(--cyan);
  font-weight: 700;
}

.text-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cyan);
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}

.text-link-button:hover,
.text-link-button:focus-visible {
  color: #0798CC;
}

.faq-grid {
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #FFFFFF;
}

.faq-item button {
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
}

.faq-item button::after {
  content: "+";
  float: right;
  color: var(--cyan);
}

.faq-item button[aria-expanded="true"]::after {
  content: "-";
}

.faq-item p {
  padding: 0 20px 20px;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid var(--line);
  background: #FFFFFF;
}

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

.footer-brand img {
  width: 140px;
}

.site-footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.site-footer nav a {
  font-size: 15px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.motion-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

.motion-ready .reveal-item {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease var(--reveal-delay, 0ms), transform 520ms ease var(--reveal-delay, 0ms);
}

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

.motion-ready .need-card.reveal-item.is-visible:hover,
.motion-ready .service-list article.reveal-item.is-visible:hover,
.motion-ready .service-list article.reveal-item.is-visible:focus-visible,
.motion-ready .industry-card.reveal-item.is-visible:hover,
.motion-ready .industry-card.reveal-item.is-visible:focus-visible,
.motion-ready .metric-card.reveal-item.is-visible:hover {
  transform: translateY(-4px);
}

.motion-ready .model-list article.reveal-item.is-visible:hover {
  transform: translateX(3px);
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 150px auto auto;
  }

  .site-nav {
    gap: 22px;
  }

  .site-nav a {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

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

  .intro-grid,
  .principal-grid,
  .services-grid,
  .support-grid,
  .engagement-grid,
  .snapshot-grid,
  .about-detail-grid,
  .contact-grid,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .services-copy {
    position: static;
  }

  .engagement-copy {
    position: static;
  }

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

  .principal-media,
  .principal-media img {
    min-height: 460px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding-top: 0;
  }

  .process-track {
    grid-column: 1;
    grid-row: auto;
    height: 52px;
  }

  .process-track::before {
    left: 16px;
    right: auto;
    top: 0;
    width: 2px;
    height: 46px;
    background: linear-gradient(180deg, var(--amber), var(--cyan), var(--emerald));
  }

  .process-track::after {
    right: auto;
    left: 3px;
    top: 38px;
    border-top: 24px solid var(--emerald);
    border-right: 14px solid transparent;
    border-bottom: 0;
    border-left: 14px solid transparent;
  }

  .process-steps article,
  .process-steps article:first-of-type {
    grid-row: auto;
    min-height: 0;
    padding: 18px 0 18px 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .process-steps span {
    position: absolute;
    left: 0;
    top: 19px;
    width: 26px;
    height: 26px;
    margin: 0;
    font-size: 11px;
    box-shadow: none;
  }
}

@media (max-width: 760px) {
  :root {
    --header-space: 87px;
  }

  .container {
    width: min(100% - 32px, 620px);
  }

  .site-header {
    grid-template-columns: 132px 1fr auto;
    height: var(--header-space);
    min-height: var(--header-space);
    padding: 8px 16px;
  }

  .brand img {
    width: 128px;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-space) 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    justify-content: start;
    gap: 0;
    padding: 12px 16px 18px;
    background: #FFFFFF;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .site-nav[data-open="true"] {
    display: grid;
  }

  .site-nav a {
    min-height: 48px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
  }

  .header-actions {
    display: none;
  }

  .hero {
    min-height: 620px;
    height: calc(100svh - var(--header-space));
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-lede {
    font-size: 21px;
  }

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

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

  .hero-proof div {
    padding: 16px;
  }

  .hero-proof div:nth-child(2),
  .hero-proof div:nth-child(3) {
    display: none;
  }

  .intro,
  .resource,
  .principal,
  .needs,
  .engagement,
  .faq,
  .industries,
  .snapshots,
  .about-detail,
  .services,
  .contact {
    padding: 72px 0;
  }

  .process,
  .support {
    min-height: auto;
    padding: 72px 0;
  }

  .section-title h2,
  .industries-head h2,
  .resource-copy h2,
  .principal-copy h2,
  .services-copy h2,
  .process-heading h2,
  .support-copy h2,
  .engagement h2,
  .snapshots h2,
  .about-detail h2,
  .contact h2,
  .faq h2 {
    font-size: 34px;
  }

  .process-heading {
    margin-bottom: 42px;
  }

  .process-steps,
  .resource-panel,
  .ebook-modal-grid,
  .need-grid,
  .industry-grid,
  .work-steps {
    grid-template-columns: 1fr;
  }

  .resource-panel {
    padding: 24px;
  }

  .resource-cover,
  .ebook-preview {
    position: static;
    width: min(210px, 100%);
  }

  .process-steps {
    grid-template-rows: auto;
    padding-top: 0;
  }

  .process-track {
    grid-column: 1;
    grid-row: auto;
    height: 52px;
  }

  .process-track::before {
    left: 16px;
    right: auto;
    top: 0;
    width: 2px;
    height: 46px;
    background: linear-gradient(180deg, var(--amber), var(--cyan), var(--emerald));
  }

  .process-track::after {
    right: auto;
    left: 3px;
    top: 38px;
    border-top: 24px solid var(--emerald);
    border-right: 14px solid transparent;
    border-bottom: 0;
    border-left: 14px solid transparent;
  }

  .process-steps article {
    grid-row: auto;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 0;
    min-height: 0;
    padding: 18px 0 18px 32px;
  }

  .process-steps article:last-child {
    border-bottom: 0;
  }

  .process-steps span {
    position: absolute;
    left: 0;
    top: 19px;
    width: 26px;
    height: 26px;
    margin: 0;
    font-size: 11px;
    box-shadow: none;
  }

  .need-card,
  .need-card.wide {
    grid-column: auto;
    min-height: 0;
  }

  .principal-media,
  .principal-media img {
    min-height: 440px;
  }

  .industries-head {
    display: grid;
    align-items: start;
  }

  .industry-card p,
  .service-detail {
    max-height: none;
    opacity: 1;
  }

  .service-detail {
    margin-top: 18px;
  }

  .model-list article {
    grid-template-columns: 44px 1fr;
    padding: 22px;
  }

  .momentum-graphic {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    padding: 24px;
  }

  .momentum-graphic::after {
    inset: 18px;
  }

  .method-circle {
    position: relative;
    left: auto;
    top: auto;
    grid-column: 1;
    grid-row: auto;
    width: 86px;
    height: 86px;
    margin-bottom: 18px;
  }

  .method-circle img {
    width: 64px;
  }

  .momentum-arrow {
    grid-column: 1;
    grid-row: auto;
    height: 48px;
    margin-bottom: 4px;
  }

  .momentum-arrow::before {
    left: 16px;
    right: auto;
    top: 0;
    width: 3px;
    height: 42px;
    transform-origin: top;
    background: linear-gradient(180deg, var(--amber), var(--cyan), var(--emerald));
  }

  .momentum-arrow::after {
    right: auto;
    left: 3px;
    top: 36px;
    border-top: 24px solid var(--emerald);
    border-right: 14px solid transparent;
    border-bottom: 0;
    border-left: 14px solid transparent;
  }

  .flow-step,
  .step-one,
  .step-two,
  .step-three,
  .step-four {
    grid-column: 1;
    grid-row: auto;
    min-height: auto;
    padding: 18px 0 18px 32px;
    border-left: 1px solid rgba(255, 255, 255, 0.24);
  }

  .flow-step span {
    position: absolute;
    left: 0;
    top: 19px;
    width: 26px;
    height: 26px;
    margin: 0;
    font-size: 11px;
    box-shadow: none;
  }

  .flow-step h3 {
    margin-top: 0;
  }

  .flow-step p {
    max-width: none;
  }

  .expertise-lanes {
    grid-column: 1;
    grid-row: auto;
  }

  .expertise-pill {
    width: 100%;
  }

  .expertise-popover,
  .expertise-pill:nth-child(1) .expertise-popover,
  .expertise-pill:nth-child(2) .expertise-popover,
  .expertise-pill:nth-child(5) .expertise-popover,
  .expertise-pill:nth-child(6) .expertise-popover {
    right: auto;
    left: 0;
    width: min(100%, 320px);
    transform: translate(0, 8px);
  }

  .expertise-pill:hover .expertise-popover,
  .expertise-pill.is-active .expertise-popover,
  .expertise-pill:focus .expertise-popover,
  .expertise-pill:focus-visible .expertise-popover,
  .expertise-pill:nth-child(1):hover .expertise-popover,
  .expertise-pill:nth-child(1).is-active .expertise-popover,
  .expertise-pill:nth-child(1):focus .expertise-popover,
  .expertise-pill:nth-child(1):focus-visible .expertise-popover,
  .expertise-pill:nth-child(2):hover .expertise-popover,
  .expertise-pill:nth-child(2).is-active .expertise-popover,
  .expertise-pill:nth-child(2):focus .expertise-popover,
  .expertise-pill:nth-child(2):focus-visible .expertise-popover,
  .expertise-pill:nth-child(5):hover .expertise-popover,
  .expertise-pill:nth-child(5).is-active .expertise-popover,
  .expertise-pill:nth-child(5):focus .expertise-popover,
  .expertise-pill:nth-child(5):focus-visible .expertise-popover,
  .expertise-pill:nth-child(6):hover .expertise-popover,
  .expertise-pill:nth-child(6).is-active .expertise-popover,
  .expertise-pill:nth-child(6):focus .expertise-popover,
  .expertise-pill:nth-child(6):focus-visible .expertise-popover {
    transform: translate(0, 0);
  }

  .delivery-modes {
    grid-template-columns: 1fr;
  }

  .quote-panel {
    padding: 28px;
  }

  .quote-panel p {
    font-size: 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .site-footer nav {
    justify-content: start;
  }

  .modal {
    padding: 22px;
  }

  .resume-modal {
    width: 100%;
    height: calc(100svh - 24px);
    max-height: calc(100svh - 24px);
    padding: 0;
  }

  .resume-modal-head {
    padding: 22px 22px 18px;
  }

  .resume-content {
    padding: 24px 22px 28px;
  }

  .resume-columns,
  .resume-section-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .resume-role {
    padding: 18px 0;
  }

  .modal-head,
  .discovery-form {
    grid-template-columns: 1fr;
  }

  .modal-head h2 {
    font-size: 26px;
  }
}

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

  .button,
  .header-action,
  .motion-ready .reveal,
  .hero-media img,
  .process-media img,
  .support-media img,
  .principal-media img,
  .about-image img,
  .momentum-arrow::before,
  .motion-ready .reveal-item {
    animation: none;
    transition: none;
    transform: none;
  }
}

@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after {
    display: none;
  }
}
