:root {
  --ink: #101820;
  --muted: #5b6672;
  --line: #d8e1e4;
  --paper: #f5f7f4;
  --white: #ffffff;
  --teal: #0f766e;
  --green: #2f9e44;
  --amber: #d99a21;
  --charcoal: #071113;
  --surface-soft: #f7f9f7;
  --surface-tint: #eef4ef;
  --border-soft: rgba(16, 37, 38, 0.1);
  --shadow-card: 0 12px 30px rgba(16, 37, 38, 0.055);
  --shadow-card-strong: 0 16px 38px rgba(16, 37, 38, 0.075);
  --content-max: 1440px;
  --section-y: clamp(28px, 3.2vw, 40px);
  --content-gap: 14px;
  --section-x: clamp(20px, 6vw, 82px);
  --page-x: max(var(--section-x), calc((100vw - var(--content-max)) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.6;
  user-select: none;
}

button {
  font-family: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px var(--page-x);
  color: var(--white);
  background: rgba(7, 17, 19, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-photo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  object-position: center 35%;
  background: #9af0c0;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  filter: grayscale(1) contrast(1.08);
  box-shadow:
    0 0 0 3px rgba(154, 240, 192, 0.22),
    0 8px 22px rgba(0, 0, 0, 0.28);
}

.brand.is-active .brand-photo,
.brand:hover .brand-photo,
.brand:focus-visible .brand-photo {
  border-color: #9af0c0;
  box-shadow:
    0 0 0 4px rgba(154, 240, 192, 0.32),
    0 10px 24px rgba(0, 0, 0, 0.32);
}

.brand-home {
  position: absolute;
  left: 50%;
  bottom: -4px;
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  color: #06201d;
  background: #9af0c0;
  border: 2px solid rgba(7, 17, 19, 0.9);
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.24);
  transform: translateX(-50%);
}

.brand-home svg {
  width: 11px;
  height: 11px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.profile-zoom-trigger {
  cursor: zoom-in;
}

.menu-toggle {
  display: none;
  min-width: 44px;
  height: 44px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  color: #06201d;
  background: #9af0c0;
  border-color: #9af0c0;
  transform: translateY(-1px);
}

.menu-bars {
  display: grid;
  gap: 4px;
}

.menu-bars span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.menu-label {
  display: none;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
}

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

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

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

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.nav-links a,
.site-footer a {
  position: relative;
  transition: color 160ms ease;
}

.nav-links a::after,
.site-footer a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: #9af0c0;
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.4);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
  content: "";
}

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

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a.is-active::after,
.site-footer a:hover::after,
.site-footer a:focus-visible::after,
.site-footer a.is-active::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-links a:focus-visible,
.site-footer a:focus-visible {
  outline: 2px solid rgba(154, 240, 192, 0.85);
  outline-offset: 8px;
  border-radius: 4px;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  padding: 104px var(--page-x) 38px;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.05);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 17, 19, 0.95) 0%, rgba(7, 17, 19, 0.73) 44%, rgba(7, 17, 19, 0.28) 100%),
    linear-gradient(180deg, rgba(7, 17, 19, 0.12) 0%, rgba(7, 17, 19, 0.92) 100%);
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 14px;
  color: #9af0c0;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(2.55rem, 5vw, 4.75rem);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 820px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
}

.hero-profile {
  display: inline-grid;
  grid-template-columns: 96px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  max-width: 720px;
  margin-top: 24px;
  padding: 14px 18px 14px 14px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.hero-profile img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  object-position: center 35%;
  border: 2px solid rgba(154, 240, 192, 0.9);
  border-radius: 50%;
}

.hero-profile strong,
.hero-profile span {
  display: block;
}

.hero-profile strong {
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.1;
}

.hero-profile span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.35;
}

.hero-profile .profile-tag-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0;
}

.hero-profile .profile-tag-line span {
  display: inline;
  margin-top: 0;
}

.hero-profile .profile-tag-line b {
  margin: 0 8px;
  color: rgba(184, 198, 201, 0.82);
  font-size: 0.78em;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-0.02em);
}

.hero-profile .profile-tag-mobile {
  display: none;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-actions .button {
  width: 240px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.icon-action {
  gap: 9px;
}

.linkedin-mark {
  display: inline-grid;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  place-items: center;
  color: currentColor;
  border: 2px solid currentColor;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
}

.action-icon {
  display: block;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button.primary {
  color: #06201d;
  background: #9af0c0;
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: transparent;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(7, 17, 19, 0.2);
}

.button.primary:hover,
.button.primary:focus-visible {
  color: #06201d;
  background: #ffffff;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  color: #06201d;
  background: #9af0c0;
  border-color: #9af0c0;
}

.button:focus-visible,
.menu-toggle:focus-visible,
.carousel-button:focus-visible,
.pause-button:focus-visible,
.back-to-top:focus-visible,
.proof-item a:focus-visible,
.experience-context a:focus-visible,
.timeline-company a:focus-visible,
.recommendation-name[href]:focus-visible,
.recommendation-company[href]:focus-visible,
.terms-panel summary:focus-visible {
  outline: 3px solid rgba(154, 240, 192, 0.85);
  outline-offset: 3px;
}

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

.hero-panel div {
  min-height: 112px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}

.hero-panel strong {
  display: block;
  font-size: 1.72rem;
  line-height: 1;
}

.hero-panel span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.91rem;
}

section {
  padding: var(--section-y) var(--page-x);
  scroll-margin-top: 78px;
}

.intro-band {
  padding-top: 24px;
  padding-bottom: 24px;
}

.section-heading {
  max-width: none;
  margin-bottom: var(--content-gap);
}

.section-heading h2,
.contact-section h2,
.education-band h2,
.terms-panel summary strong {
  max-width: none;
  margin: 0;
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading.compact {
  margin-bottom: 0;
}

.section-heading p:not(.eyebrow) {
  max-width: none;
  margin-top: 10px;
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.62;
}

.section-heading.compact p:not(.eyebrow) {
  max-width: none;
}

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

.impact-grid article {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(16, 37, 38, 0.07);
}

.impact-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--accent, var(--teal));
  content: "";
}

.card-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 800;
  font-size: 0.8rem;
}

.impact-grid .card-icon {
  background: var(--accent, var(--teal));
}

.capability-board .card-icon {
  background: var(--capability, var(--teal));
}

.impact-visual {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.7fr;
  gap: 5px;
  height: 42px;
  margin: 18px 0 12px;
  align-items: end;
}

.impact-visual span {
  display: block;
  background: var(--accent, var(--teal));
  background: color-mix(in srgb, var(--accent, var(--teal)) 76%, white);
  border-radius: 999px 999px 5px 5px;
}

.impact-visual span:nth-child(1) {
  height: 100%;
}

.impact-visual span:nth-child(2) {
  height: 72%;
  opacity: 0.78;
}

.impact-visual span:nth-child(3) {
  height: 48%;
  opacity: 0.55;
}

.impact-customer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}

.impact-customer::before {
  position: absolute;
  left: 18px;
  right: 18px;
  top: 50%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent, var(--teal)), rgba(15, 118, 110, 0.22));
  border-radius: 999px;
  content: "";
}

.impact-customer span {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px !important;
  border-radius: 50%;
}

.impact-operations {
  grid-template-columns: 1fr 1fr 1fr;
}

.impact-operations::after {
  position: absolute;
  right: 4px;
  top: 2px;
  width: 22px;
  height: 12px;
  border-left: 4px solid var(--accent, var(--green));
  border-bottom: 4px solid var(--accent, var(--green));
  transform: rotate(-45deg);
  content: "";
}

.impact-transformation {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.impact-transformation span {
  height: 12px !important;
  border-radius: 999px;
}

.impact-transformation span:nth-child(1) {
  opacity: 0.45;
}

.impact-transformation span:nth-child(2) {
  opacity: 0.7;
}

.impact-transformation span:nth-child(3) {
  opacity: 1;
}

.impact-insight {
  grid-template-columns: 1fr;
  align-content: center;
  gap: 7px;
}

.impact-insight span {
  height: 8px !important;
  border-radius: 999px;
}

.impact-insight span:nth-child(1) {
  width: 92%;
}

.impact-insight span:nth-child(2) {
  width: 70%;
}

.impact-insight span:nth-child(3) {
  width: 84%;
}

.value-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin: 0 0 14px;
}

.value-chips span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 28px;
  padding: 5px 9px;
  color: #063d38;
  background: #e2f4ec;
  border: 1px solid #b8ddd0;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.value-chips.compact {
  margin-top: 12px;
  margin-bottom: 16px;
}

h3 {
  margin: 18px 0 10px;
  font-size: 1.18rem;
  line-height: 1.22;
}

p {
  color: var(--muted);
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 24px var(--page-x);
  background: var(--line);
}

.proof-item {
  padding: 22px;
  background: #0d1c1d;
  color: var(--white);
}

.proof-item span {
  color: #9af0c0;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.proof-item strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
  line-height: 1.05;
}

.proof-item p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.proof-item a,
.timeline h3 a {
  color: inherit;
  text-decoration: none;
  text-underline-offset: 4px;
  transition:
    color 160ms ease,
    text-decoration-color 160ms ease;
}

.proof-item a:hover,
.proof-item a:focus-visible,
.timeline h3 a:hover,
.timeline h3 a:focus-visible {
  color: #9af0c0;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: start;
}

.skills-section {
  display: block;
  background: var(--surface-soft);
  padding-top: 24px;
  padding-bottom: 24px;
}

.skills-section .section-heading.compact {
  max-width: none;
  margin-bottom: var(--content-gap);
}

.capability-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.capability-board article {
  position: relative;
  overflow: hidden;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 36px rgba(16, 37, 38, 0.06);
}

.capability-board article::after {
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--capability, var(--teal));
  content: "";
}

.capability-signal {
  position: relative;
  display: flex;
  gap: 7px;
  margin-top: 18px;
}

.capability-signal span {
  width: 36px;
  height: 8px;
  background: var(--capability, var(--teal));
  background: color-mix(in srgb, var(--capability, var(--teal)) 74%, white);
  border-radius: 999px;
}

.capability-signal span:nth-child(2) {
  width: 54px;
  opacity: 0.7;
}

.capability-signal span:nth-child(3) {
  width: 24px;
  opacity: 0.45;
}

.capability-customer::before,
.capability-reliability::before,
.capability-transformation::before,
.capability-technical::before {
  position: absolute;
  inset: -7px auto auto -1px;
  width: 78px;
  height: 32px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 999px;
  content: "";
}

.capability-reliability span {
  width: 12px;
  height: 12px;
}

.capability-reliability span:nth-child(2) {
  width: 12px;
}

.capability-transformation span {
  height: 10px;
}

.capability-transformation span:nth-child(1) {
  width: 22px;
}

.capability-transformation span:nth-child(2) {
  width: 44px;
}

.capability-transformation span:nth-child(3) {
  width: 66px;
}

.capability-technical {
  display: grid;
  grid-template-columns: repeat(3, 22px);
  gap: 8px;
}

.capability-technical span {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.capability-board h3 {
  margin: 18px 0 10px;
}

.capability-board p {
  margin: 0 0 18px;
}

.capability-board strong {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.capability-board ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-board li {
  position: relative;
  padding-left: 18px;
  color: #39464f;
  font-weight: 650;
}

.capability-board li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

.approach-section {
  background:
    linear-gradient(180deg, #ffffff 0, #ffffff 46%, #f4f8f6 46%, #f4f8f6 100%);
  padding-top: 24px;
  padding-bottom: 24px;
}

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

.story-panel {
  max-width: none;
  margin: 0 0 var(--content-gap);
  padding: clamp(18px, 2.4vw, 24px);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.12), rgba(154, 240, 192, 0.1)),
    #ffffff;
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-left: 0;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 37, 38, 0.055);
}

.story-panel p {
  max-width: none;
  margin: 0;
  color: #26343d;
  font-size: clamp(1rem, 1.5vw, 1.14rem);
  line-height: 1.62;
}

.approach-grid article {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  column-gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(16, 37, 38, 0.1);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(16, 37, 38, 0.055);
}

.approach-grid h3 {
  grid-column: 2;
  margin: 2px 0 8px;
}

.approach-grid p {
  grid-column: 2;
  margin: 0;
}

.approach-step {
  display: inline-grid;
  grid-column: 1;
  grid-row: 1 / 3;
  width: 46px;
  height: 46px;
  place-items: center;
  overflow: hidden;
  color: transparent;
  background: #102526;
  border: 1px solid rgba(154, 240, 192, 0.34);
  border-radius: 14px;
  box-shadow: inset 0 0 0 6px rgba(154, 240, 192, 0.08);
  font-size: 0;
  font-weight: 900;
}

.approach-step::before {
  display: block;
  width: 22px;
  height: 22px;
  background: #9af0c0;
  content: "";
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.approach-grid article:nth-child(1) .approach-step::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 0 0-7.1 17.1l1.4-1.4A8 8 0 1 1 20 12h-3l4 4 4-4h-3A10 10 0 0 0 12 2Zm-1 5h2v6h-2V7Zm0 8h2v2h-2v-2Z'/%3E%3C/svg%3E");
}

.approach-grid article:nth-child(2) .approach-step::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3 3 8l9 5 9-5-9-5Zm-7 8 7 4 7-4v5l-7 4-7-4v-5Z'/%3E%3C/svg%3E");
}

.approach-grid article:nth-child(3) .approach-step::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 11a4 4 0 1 0-8 0 4 4 0 0 0 8 0ZM4 21a8 8 0 0 1 16 0H4Zm14.5-15 1.5 1.5L17 10.5 15.5 9l3-3Z'/%3E%3C/svg%3E");
}

.approach-grid article:nth-child(4) .approach-step::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 17h4V7H4v10Zm6 0h4V3h-4v14Zm6 0h4v-7h-4v7ZM3 19h18v2H3v-2Z'/%3E%3C/svg%3E");
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.capability-list span {
  padding: 11px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #25323b;
  font-weight: 700;
  font-size: 0.92rem;
}

.portfolio-section {
  background: var(--surface-tint);
  padding-top: 24px;
  padding-bottom: 24px;
}

.portfolio-flow {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 var(--content-gap);
  overflow: hidden;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 8px;
  background: rgba(15, 118, 110, 0.16);
}

.portfolio-flow span {
  position: relative;
  display: grid;
  min-height: 50px;
  place-items: center;
  color: #063d38;
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.portfolio-flow span:not(:last-child)::after {
  position: absolute;
  right: -8px;
  z-index: 1;
  width: 16px;
  height: 16px;
  background: inherit;
  border-top: 1px solid rgba(15, 118, 110, 0.12);
  border-right: 1px solid rgba(15, 118, 110, 0.12);
  transform: rotate(45deg);
  content: "";
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.portfolio-grid article {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  column-gap: 12px;
  align-content: start;
  min-height: 100%;
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.portfolio-grid article::before {
  position: absolute;
  inset: 0 0 auto 0;
  width: auto;
  height: 4px;
  background: linear-gradient(90deg, rgba(15, 118, 110, 0.75), rgba(154, 240, 192, 0.4));
  content: "";
}

.portfolio-grid article:nth-child(1),
.portfolio-grid article:nth-child(2) {
  grid-column: span 3;
}

.portfolio-grid article:nth-child(n+3) {
  grid-column: span 3;
}

.portfolio-number {
  display: inline-grid;
  grid-column: 1;
  grid-row: 1 / 3;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  color: transparent;
  background:
    linear-gradient(145deg, rgba(154, 240, 192, 0.9), rgba(15, 118, 110, 0.9));
  border: 1px solid rgba(15, 118, 110, 0.2);
  border-radius: 12px;
  box-shadow: 0 9px 20px rgba(15, 118, 110, 0.13);
  font-size: 0;
  font-weight: 900;
  vertical-align: middle;
}

.portfolio-number::before {
  display: block;
  width: 22px;
  height: 22px;
  background: #063d38;
  content: "";
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.portfolio-grid article:nth-child(1) .portfolio-number::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3 5 6v5c0 4.6 3 8.6 7 10 4-1.4 7-5.4 7-10V6l-7-3Zm-1 12.2-3-3 1.4-1.4L11 12.4l4.6-4.6L17 9.2l-6 6Z'/%3E%3C/svg%3E");
}

.portfolio-grid article:nth-child(2) .portfolio-number::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 5h16v3H4V5Zm0 6h10v3H4v-3Zm0 6h16v3H4v-3Zm13.7-7.7 1.4 1.4-6.4 6.4-3.2-3.2 1.4-1.4 1.8 1.8 5-5Z'/%3E%3C/svg%3E");
}

.portfolio-grid article:nth-child(3) .portfolio-number::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm6.9 9h-3.1a15.8 15.8 0 0 0-1.1-5A8.03 8.03 0 0 1 18.9 11ZM12 4.1c.7 1 1.5 3.2 1.8 6.9h-3.6c.3-3.7 1.1-5.9 1.8-6.9ZM4.1 13h3.1c.2 1.9.6 3.6 1.1 5A8.03 8.03 0 0 1 4.1 13Zm3.1-2H4.1A8.03 8.03 0 0 1 8.3 6c-.5 1.4-.9 3.1-1.1 5Zm4.8 8.9c-.7-1-1.5-3.2-1.8-6.9h3.6c-.3 3.7-1.1 5.9-1.8 6.9Zm3.7-1.9c.5-1.4.9-3.1 1.1-5h3.1a8.03 8.03 0 0 1-4.2 5Z'/%3E%3C/svg%3E");
}

.portfolio-grid article:nth-child(4) .portfolio-number::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h7v7H4V4Zm9 0h7v7h-7V4ZM4 13h7v7H4v-7Zm9 0h7v7h-7v-7Z'/%3E%3C/svg%3E");
}

.portfolio-grid article:nth-child(5) .portfolio-number::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 19h16v2H4v-2Zm2-8h3v6H6v-6Zm5-6h3v12h-3V5Zm5 3h3v9h-3V8Z'/%3E%3C/svg%3E");
}

.portfolio-grid article:nth-child(6) .portfolio-number::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 9 9l-7 3 7 3 3 7 3-7 7-3-7-3-3-7Zm0 5.5 1.4 3.1 3.1 1.4-3.1 1.4L12 16.5l-1.4-3.1L7.5 12l3.1-1.4L12 7.5Z'/%3E%3C/svg%3E");
}

.portfolio-outcome {
  display: inline-flex;
  grid-column: 2;
  grid-row: 1;
  width: fit-content;
  margin-left: 0;
  padding: 7px 10px;
  color: #063d38;
  background: rgba(226, 244, 236, 0.72);
  border: 1px solid rgba(15, 118, 110, 0.14);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  vertical-align: 0;
}

.portfolio-grid h3 {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 18px 0 10px;
}

.portfolio-grid p {
  grid-column: 1 / -1;
  grid-row: 3;
  margin: 0;
}

.timeline-section {
  background: #ffffff;
  padding-top: 24px;
  padding-bottom: 24px;
}

.timeline-section .section-heading {
  margin-bottom: var(--content-gap);
}

.experience-context {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 10px;
}

.experience-context a {
  display: block;
  position: relative;
  padding: 14px 16px;
  color: #ffffff;
  background: #102526;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(16, 37, 38, 0.12);
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.experience-context a:hover,
.experience-context a:focus-visible {
  background: #0f766e;
  border-color: #9af0c0;
  box-shadow: 0 18px 38px rgba(15, 118, 110, 0.22);
  transform: translateY(-2px);
}

.experience-context a::after,
.timeline-company a::after {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 7px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230f766e' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 4h6v6'/%3E%3Cpath d='M10 14 20 4'/%3E%3Cpath d='M20 14v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  opacity: 0.85;
  vertical-align: -0.14em;
}

.experience-context a::after {
  position: absolute;
  top: 14px;
  right: 14px;
  margin-left: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239af0c0' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 4h6v6'/%3E%3Cpath d='M10 14 20 4'/%3E%3Cpath d='M20 14v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h4'/%3E%3C/svg%3E");
}

.experience-context strong,
.experience-context span {
  display: block;
}

.experience-context strong {
  color: #a5f0c6;
  font-size: 0.92rem;
}

.experience-context span {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  line-height: 1.45;
}

.timeline {
  position: relative;
  display: grid;
  gap: 10px;
}

.timeline article {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 38px);
  padding: 18px 20px;
  background:
    linear-gradient(90deg, rgba(15, 118, 110, 0.08), rgba(15, 118, 110, 0) 34%),
    #f7f9f7;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 37, 38, 0.055);
}

.timeline article::before {
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 202px;
  width: 2px;
  background: linear-gradient(#9af0c0, rgba(15, 118, 110, 0.08));
  content: "";
}

.timeline article > div {
  display: grid;
  align-content: start;
  gap: 7px;
}

.timeline time {
  display: block;
  font-weight: 800;
}

.timeline time span {
  display: inline-flex;
  min-width: 162px;
  justify-content: center;
  padding: 8px 12px;
  color: #0b5f58;
  background: #e2f4ec;
  border: 1px solid #b8ddd0;
  border-radius: 999px;
  font-size: 0.9rem;
  white-space: nowrap;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.timeline h3 {
  margin: 0;
  color: #101820;
  font-size: 1.16rem;
  line-height: 1.25;
}

.timeline-company {
  margin: 0;
  color: #4f5d67;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.timeline-company span {
  display: inline;
  color: #4f5d67;
  font-size: inherit;
  font-weight: 700;
}

.timeline-company span::after {
  content: none;
}

.timeline-company b {
  margin: 0 9px;
  color: #b8c6c9;
  font-weight: 700;
}

.timeline-company a {
  color: var(--teal);
  font-size: inherit;
  font-weight: 800;
  text-decoration: none;
  text-underline-offset: 4px;
  transition: color 160ms ease;
}

.timeline-company a:hover,
.timeline-company a:focus-visible {
  color: #063d38;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.timeline-meta {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #0b5f58;
  background: transparent;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.timeline p {
  max-width: none;
  margin: 0;
  line-height: 1.58;
}

.customer-section {
  background: var(--surface-tint);
  padding-top: 24px;
  padding-bottom: 24px;
}

.customer-section .section-heading p:not(.eyebrow) {
  max-width: none;
}

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

.market-map article {
  position: relative;
  overflow: hidden;
  padding: 26px;
  color: #ffffff;
  background:
    radial-gradient(circle at 85% 18%, rgba(154, 240, 192, 0.22), transparent 28%),
    #0d1c1d;
  border-radius: 8px;
}

.market-orbit {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 82px;
  height: 82px;
  border: 1px solid rgba(154, 240, 192, 0.24);
  border-radius: 50%;
}

.market-orbit::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(154, 240, 192, 0.18);
  border-radius: 50%;
  content: "";
}

.market-orbit span {
  position: absolute;
  width: 9px;
  height: 9px;
  margin: 0;
  padding: 0;
  background: #9af0c0;
  border-radius: 50%;
}

.market-orbit span:nth-child(1) {
  top: 8px;
  left: 36px;
}

.market-orbit span:nth-child(2) {
  right: 10px;
  bottom: 22px;
}

.market-orbit span:nth-child(3) {
  bottom: 12px;
  left: 18px;
}

.market-map strong {
  display: block;
  color: #9af0c0;
  font-size: clamp(1.6rem, 3vw, 2.35rem);
  line-height: 1;
}

.market-map p {
  margin: 14px 0 16px;
  color: rgba(255, 255, 255, 0.76);
}

.market-map span {
  display: inline-flex;
  margin: 6px 6px 0 0;
  padding: 7px 10px;
  color: #06201d;
  background: #9af0c0;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.market-map .market-orbit span {
  display: block;
  width: 9px;
  height: 9px;
  margin: 0;
  padding: 0;
  background: #9af0c0;
  border-radius: 50%;
}

/* Sleek value visuals: clean signals that support the text without adding clutter. */
.impact-grid article,
.capability-board article,
.portfolio-grid article,
.approach-grid article,
.timeline article,
.contact-card,
.terms-panel,
.terms-grid article {
  border-color: var(--border-soft);
  box-shadow: var(--shadow-card);
}

.impact-grid article::before,
.capability-board article::after {
  height: 4px;
  opacity: 0.92;
}

.impact-visual,
.capability-signal {
  display: flex;
  width: 100%;
  height: 14px;
  align-items: center;
  gap: 7px;
  margin: 18px 0 12px;
}

.impact-visual::before,
.impact-visual::after,
.capability-signal::before,
.capability-signal::after {
  display: none;
  content: none;
}

.impact-visual span,
.capability-signal span,
.impact-customer span,
.impact-operations span,
.impact-transformation span,
.impact-insight span,
.capability-reliability span,
.capability-transformation span,
.capability-technical span {
  display: block;
  flex: 1 1 0;
  width: auto;
  height: 8px !important;
  min-width: 0;
  background: color-mix(in srgb, var(--accent, var(--capability, var(--teal))) 72%, white);
  border-radius: 999px;
  opacity: 1;
}

.impact-visual span:nth-child(1),
.capability-signal span:nth-child(1) {
  flex-basis: 48%;
}

.impact-visual span:nth-child(2),
.capability-signal span:nth-child(2) {
  flex-basis: 32%;
  opacity: 0.68;
}

.impact-visual span:nth-child(3),
.capability-signal span:nth-child(3) {
  flex-basis: 20%;
  opacity: 0.42;
}

.value-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 16px;
}

.value-chips span,
.portfolio-outcome {
  justify-content: center;
  min-width: 0;
  min-height: 27px;
  color: #0b5f58;
  background: rgba(226, 244, 236, 0.72);
  border: 1px solid rgba(15, 118, 110, 0.14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
  line-height: 1.1;
  text-align: center;
  white-space: nowrap;
}

.impact-grid article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  column-gap: 12px;
  padding-top: 30px;
}

.impact-grid .card-icon {
  grid-column: 1;
  grid-row: 1;
  position: static;
  width: 42px;
  height: 42px;
  margin: 0;
  overflow: hidden;
  color: transparent;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--accent, var(--teal)) 84%, #9af0c0), var(--accent, var(--teal)));
  border: 1px solid color-mix(in srgb, var(--accent, var(--teal)) 36%, #ffffff);
  border-radius: 12px;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--accent, var(--teal)) 18%, transparent);
  font-size: 0;
  letter-spacing: 0;
}

.impact-grid .card-icon::before {
  display: block;
  width: 22px;
  height: 22px;
  background: #ffffff;
  content: "";
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
}

.impact-grid article:nth-child(1) .card-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3 5 6v6c0 4.4 2.8 8 7 9.5 4.2-1.5 7-5.1 7-9.5V6l-7-3Zm0 4.2a2.8 2.8 0 1 1 0 5.6 2.8 2.8 0 0 1 0-5.6Zm-5 9.2c1.2-1.8 3-2.8 5-2.8s3.8 1 5 2.8c-1.2 1.4-2.8 2.4-5 3.1-2.2-.7-3.8-1.7-5-3.1Z'/%3E%3C/svg%3E");
}

.impact-grid article:nth-child(2) .card-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16v4H4V4Zm0 6h7v10H4V10Zm9 0h7v4h-7v-4Zm0 6h7v4h-7v-4Z'/%3E%3C/svg%3E");
}

.impact-grid article:nth-child(3) .card-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 9.2 8.8 2 12l7.2 3.2L12 22l2.8-6.8L22 12l-7.2-3.2L12 2Zm0 5.6 1.2 2.8 2.8 1.2-2.8 1.2L12 15.6l-1.2-2.8L8 11.6l2.8-1.2L12 7.6Z'/%3E%3C/svg%3E");
}

.impact-grid article:nth-child(4) .card-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 19h16v2H4v-2Zm2-8h3v6H6v-6Zm5-6h3v12h-3V5Zm5 3h3v9h-3V8Zm3.4-5.4 1.4 1.4-4.9 4.9-2.4-2.4 1.4-1.4 1 1 3.5-3.5Z'/%3E%3C/svg%3E");
}

.impact-grid .impact-visual {
  display: none;
}

.impact-grid h3 {
  grid-column: 2;
  grid-row: 1;
  max-width: none;
  min-height: 42px;
  margin-top: 0;
  display: flex;
  align-items: center;
}

.impact-grid p {
  grid-column: 1 / -1;
  grid-row: 3;
}

.impact-grid .value-chips {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 14px 0 14px;
  padding-top: 0;
}

.capability-board article {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 12px;
  align-content: start;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--capability, var(--teal)) 8%, #ffffff) 0 92px, #ffffff 92px),
    #ffffff;
  border-color: color-mix(in srgb, var(--capability, var(--teal)) 18%, #d9e4df);
  box-shadow:
    0 14px 34px rgba(16, 37, 38, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.capability-board article > * {
  position: relative;
  z-index: 1;
}

.capability-board article::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(
    180deg,
    var(--capability, var(--teal)),
    color-mix(in srgb, var(--capability, var(--teal)) 32%, #ffffff)
  );
  content: "";
  opacity: 0.86;
}

.capability-board .card-icon {
  grid-column: 1;
  grid-row: 1;
  color: #ffffff;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--capability, var(--teal)) 88%, #ffffff), var(--capability, var(--teal)));
  border: 1px solid color-mix(in srgb, var(--capability, var(--teal)) 42%, #ffffff);
  box-shadow: 0 8px 18px color-mix(in srgb, var(--capability, var(--teal)) 22%, transparent);
}

.capability-board h3 {
  grid-column: 2;
  grid-row: 1;
  min-height: 42px;
  margin-top: 0;
  display: flex;
  align-items: center;
}

.capability-board .capability-signal,
.capability-board .value-chips,
.capability-board p,
.capability-board strong,
.capability-board ul {
  grid-column: 1 / -1;
}

.capability-board .capability-signal {
  display: none;
}

.capability-board .value-chips.compact {
  margin: 14px 0 14px;
}

.capability-board .value-chips span {
  color: color-mix(in srgb, var(--capability, var(--teal)) 62%, #102526);
  background: color-mix(in srgb, var(--capability, var(--teal)) 9%, #ffffff);
  border-color: color-mix(in srgb, var(--capability, var(--teal)) 18%, #d9e4df);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.capability-board article::after {
  right: auto;
  bottom: 0;
  left: 0;
  width: 72px;
  height: 3px;
  background: color-mix(in srgb, var(--capability, var(--teal)) 44%, #d9e4df);
  opacity: 0.62;
}

.portfolio-flow {
  gap: 8px;
  overflow: visible;
  border: 0;
  background: transparent;
}

.portfolio-flow span {
  min-height: 46px;
  color: #0b5f58;
  background: #ffffff;
  border: 1px solid rgba(16, 37, 38, 0.1);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(16, 37, 38, 0.05);
}

.portfolio-flow span:not(:last-child)::after,
.timeline article::before {
  display: none;
  content: none;
}

.portfolio-grid article::before {
  opacity: 0.76;
}

.market-map article {
  background:
    linear-gradient(135deg, rgba(154, 240, 192, 0.12), rgba(154, 240, 192, 0) 42%),
    #0d1c1d;
  border: 1px solid rgba(154, 240, 192, 0.12);
}

.market-orbit {
  top: 22px;
  right: 22px;
  display: flex;
  width: auto;
  height: auto;
  gap: 5px;
  padding: 6px;
  border: 1px solid rgba(154, 240, 192, 0.18);
  border-radius: 999px;
  background: rgba(154, 240, 192, 0.08);
}

.market-orbit::before {
  display: none;
  content: none;
}

.market-orbit span:nth-child(1),
.market-orbit span:nth-child(2),
.market-orbit span:nth-child(3),
.market-map .market-orbit span {
  position: static;
  width: 7px;
  height: 7px;
  opacity: 0.92;
}

.recommendations-section {
  padding-top: 24px;
  padding-bottom: 24px;
  color: var(--white);
  background: #071113;
}

.section-heading.light p:not(.eyebrow) {
  max-width: none;
  color: rgba(255, 255, 255, 0.72);
}

.reputation-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 var(--content-gap);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.reputation-strip div {
  position: relative;
  min-height: 132px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(154, 240, 192, 0.11), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.reputation-strip div::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: #9af0c0;
  content: "";
  opacity: 0.82;
}

.reputation-strip strong {
  display: block;
  color: #9af0c0;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1;
}

.recommendation-trust-grid strong {
  max-width: 13rem;
  font-size: 0.9rem;
  line-height: 1.18;
  text-transform: uppercase;
}

.recommendation-trust-grid div:first-child strong {
  max-width: none;
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1;
}

.reputation-strip span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.recommendation-shell {
  display: block;
}

.recommendation-card {
  min-height: 330px;
  padding: clamp(28px, 4vw, 48px);
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.32), rgba(47, 158, 68, 0.12)),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.18);
}

.recommendation-person {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-bottom: 28px;
}

.recommendation-avatar {
  display: grid;
  width: 76px;
  height: 76px;
  place-items: center;
  color: #06201d;
  background:
    linear-gradient(135deg, #9af0c0, #d7f8e3);
  background-position: center;
  background-size: cover;
  border: 2px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.25rem;
}

.recommendation-avatar.has-photo {
  color: transparent;
}

.recommendation-name {
  display: block;
  margin: 10px 0 2px;
  color: #ffffff;
  font-size: 1.18rem;
  font-weight: 900;
  text-underline-offset: 4px;
  transition: color 160ms ease;
}

.recommendation-name[href]::after {
  margin-left: 7px;
  display: inline-grid;
  width: 17px;
  height: 17px;
  place-items: center;
  color: currentColor;
  border: 2px solid currentColor;
  border-radius: 4px;
  content: "in";
  font-size: 0.58em;
  font-weight: 800;
  line-height: 1;
  vertical-align: 0.08em;
}

.recommendation-company[href]::after {
  margin-left: 7px;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239af0c0' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M14 4h6v6'/%3E%3Cpath d='M10 14 20 4'/%3E%3Cpath d='M20 14v4a2 2 0 0 1-2 2H6a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2h4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  opacity: 0.9;
  vertical-align: -0.14em;
}

.recommendation-name[href]:hover,
.recommendation-name[href]:focus-visible {
  color: #9af0c0;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.recommendation-person span:not(.recommendation-relation),
.recommendation-company {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.recommendation-company {
  margin-top: 5px;
  color: #9af0c0 !important;
  font-weight: 800;
  text-underline-offset: 4px;
  transition: color 160ms ease;
}

.recommendation-company[href]:hover,
.recommendation-company[href]:focus-visible {
  color: #ffffff !important;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.recommendation-company:empty {
  display: none;
}

.quote-mark {
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
  color: #06201d;
  background: rgba(154, 240, 192, 0.86);
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
  font-weight: 800;
}

.recommendation-card p {
  min-height: 0;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.18rem, 2.2vw, 2rem);
  line-height: 1.2;
}

.recommendation-card span {
  color: rgba(255, 255, 255, 0.68);
}

.exact-recommendation {
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.exact-recommendation summary {
  width: fit-content;
  color: #9af0c0;
  cursor: pointer;
  font-weight: 800;
}

.exact-recommendation p {
  white-space: pre-line;
  max-height: 320px;
  overflow: auto;
  margin: 18px 0 0;
  padding-right: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.62;
}

.recommendation-relation {
  width: fit-content;
  padding: 6px 10px;
  color: #06201d !important;
  background: #9af0c0;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.carousel-button {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.recommendation-shell > .carousel-button {
  display: none;
}

.mobile-carousel-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  cursor: pointer;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.carousel-button svg,
.mobile-carousel-button svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-button:hover,
.carousel-button:focus-visible,
.mobile-carousel-button:hover,
.mobile-carousel-button:focus-visible,
.carousel-dot.is-active {
  background: #9af0c0;
  color: #06201d;
}

.carousel-button:hover,
.carousel-button:focus-visible,
.mobile-carousel-button:hover,
.mobile-carousel-button:focus-visible {
  border-color: #9af0c0;
  transform: translateY(-1px);
}

.carousel-meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  justify-items: center;
  gap: 10px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.7);
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.carousel-progress {
  display: inline-grid;
  grid-template-columns: auto minmax(0, auto);
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: min(680px, 100%);
}

#recommendationCounter {
  justify-self: end;
  align-self: center;
  white-space: nowrap;
}

.carousel-dots {
  justify-self: start;
  width: min(520px, 52vw);
}

.pause-button {
  min-height: 36px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: #06201d;
  background: #9af0c0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
  transition:
    background-color 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.pause-button:hover,
.pause-button:focus-visible,
.pause-button[aria-pressed="true"] {
  background: #ffffff;
}

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

.pause-button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-dots {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 6px;
  min-width: 0;
  max-width: 620px;
  overflow-x: auto;
  padding-bottom: 4px;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel-dots::-webkit-scrollbar {
  display: none;
}

.carousel-dot {
  flex: 0 0 auto;
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(255, 255, 255, 0.24);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.education-band,
.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.education-band {
  background: var(--surface-soft);
  padding-top: 24px;
  padding-bottom: 24px;
}

.education-band ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.education-band li {
  padding: 16px 18px;
  background: var(--white);
  border-left: 4px solid var(--green);
  border-radius: 6px;
  font-weight: 700;
}

.education-band li strong,
.education-band li span {
  display: block;
}

.education-band li span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.45;
}

.contact-section {
  padding-top: 24px;
  padding-bottom: 24px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(47, 158, 68, 0.05)),
    var(--surface-tint);
}

.contact-section p {
  max-width: none;
}

.contact-card {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 34px);
  background: #ffffff;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.contact-signal {
  padding: 18px;
  background: #f4f8f6;
  border-left: 4px solid var(--teal);
  border-radius: 6px;
}

.contact-signal strong,
.contact-signal span {
  display: block;
}

.contact-signal strong {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-signal span {
  margin-top: 8px;
  color: #25323b;
  font-weight: 650;
}

.contact-card .contact-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 8px;
}

.contact-card .contact-actions .button {
  width: 100%;
  min-width: 0;
  padding-inline: 14px;
  font-size: 0.92rem;
  white-space: nowrap;
}

.dark-button {
  color: var(--white) !important;
  background: var(--teal) !important;
}

.dark-button:hover,
.dark-button:focus-visible {
  color: #06201d !important;
  background: #9af0c0 !important;
}

.dark-secondary {
  color: var(--ink) !important;
  border-color: rgba(16, 24, 32, 0.25) !important;
}

.dark-secondary:hover,
.dark-secondary:focus-visible {
  color: var(--white) !important;
  background: var(--teal) !important;
  border-color: var(--teal) !important;
}

.protected-email {
  min-width: 235px;
  text-align: center;
}

.email-fallback-note {
  justify-self: end;
  max-width: 520px;
  margin: 0;
  padding: 10px 12px;
  color: #25323b;
  background: #f4f8f6;
  border: 1px solid var(--line);
  border-left: 4px solid var(--teal);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.45;
}

.email-fallback-note[hidden] {
  display: none;
}

.email-fallback-note a {
  color: var(--teal);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.email-fallback-note a:hover,
.email-fallback-note a:focus-visible {
  color: #063d38;
}

.terms-section {
  display: none;
  background: var(--surface-soft);
  padding-top: 24px;
  padding-bottom: 24px;
}

.terms-section:not(.is-visible) {
  display: none !important;
}

.terms-section.is-visible {
  display: block;
}

.terms-panel {
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.terms-panel summary {
  display: grid;
  gap: 8px;
  cursor: pointer;
  list-style: none;
}

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

.terms-panel summary::after {
  justify-self: start;
  padding: 7px 12px;
  color: #06201d;
  background: #9af0c0;
  border-radius: 999px;
  content: "Open terms";
  font-size: 0.78rem;
  font-weight: 900;
}

.terms-panel[open] summary::after {
  content: "Close terms";
}

.terms-panel summary strong {
  color: var(--ink);
}

.terms-panel > p {
  margin: 16px 0;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}

.terms-grid article {
  padding: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.terms-grid h3 {
  margin: 0 0 10px;
}

.terms-grid p {
  margin: 0;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px var(--page-x);
  color: rgba(255, 255, 255, 0.72);
  background: var(--charcoal);
  font-size: 0.9rem;
}

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

.site-footer a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 750;
}

.back-to-top {
  position: fixed;
  z-index: 30;
  right: max(10px, calc((100vw - var(--content-max)) / 2 + 8px));
  bottom: clamp(18px, 3vw, 34px);
  display: inline-flex;
  min-width: 58px;
  height: 52px;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: #06201d;
  background: #9af0c0;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 14px 32px rgba(7, 17, 19, 0.22);
  cursor: pointer;
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: #ffffff;
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.back-to-top span {
  font-size: 0.78rem;
}

.external-link-modal {
  position: fixed;
  z-index: 70;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(7, 17, 19, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.external-link-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.external-link-dialog {
  width: min(560px, 100%);
  padding: clamp(22px, 4vw, 30px);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
}

.external-link-dialog h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
}

.external-link-dialog p {
  margin: 14px 0 0;
  color: #4f5d67;
  font-weight: 600;
}

.external-link-target {
  padding: 10px 12px;
  overflow-wrap: anywhere;
  color: #0b5f58 !important;
  background: #e2f4ec;
  border: 1px solid #b8ddd0;
  border-radius: 6px;
  font-size: 0.9rem;
}

.external-link-countdown {
  display: grid;
  gap: 9px;
  margin-top: 16px;
  padding: 12px;
  color: #25323b;
  background: #f4f8f6;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-weight: 750;
}

.external-link-countdown strong {
  color: var(--teal);
  font-size: 1.08em;
}

.external-link-progress {
  display: block;
  height: 6px;
  overflow: hidden;
  background: #d8e1e4;
  border-radius: 999px;
}

.external-link-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--teal);
  border-radius: inherit;
  transform-origin: left center;
  transition: transform 1000ms linear;
}

.external-link-blocked {
  padding: 10px 12px;
  color: #6b4300 !important;
  background: #fff4d8;
  border: 1px solid #ead49d;
  border-radius: 6px;
  font-size: 0.9rem;
}

.external-link-blocked[hidden] {
  display: none;
}

.external-link-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.external-link-actions .button {
  width: 100%;
}

.photo-modal {
  position: fixed;
  z-index: 60;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(7, 17, 19, 0.86);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.photo-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.photo-modal img {
  width: min(420px, 82vw);
  max-height: 82vh;
  object-fit: cover;
  object-position: center 35%;
  border: 4px solid rgba(154, 240, 192, 0.8);
  border-radius: 50%;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.44);
}

.photo-modal-close {
  position: absolute;
  top: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  min-height: 40px;
  padding: 0 14px;
  color: #06201d;
  background: #9af0c0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

@media (max-width: 1120px) {
  .site-header {
    position: fixed;
    padding: 12px var(--page-x);
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: var(--page-x);
    right: var(--page-x);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    max-height: min(68vh, 520px);
    padding: 12px;
    overflow: auto;
    color: rgba(255, 255, 255, 0.88);
    background: rgba(7, 17, 19, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

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

  .nav-links a {
    padding: 11px 12px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-weight: 750;
  }

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

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .nav-links a.is-active {
    color: #06201d;
    background: #9af0c0;
    border-color: #9af0c0;
    outline: 0;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

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

  .impact-grid,
  .proof-band,
  .reputation-strip,
  .capability-board,
  .portfolio-grid,
  .experience-context,
  .market-map,
  .approach-grid,
  .split-section,
  .terms-grid,
  .education-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .portfolio-grid article,
  .portfolio-grid article:nth-child(1),
  .portfolio-grid article:nth-child(2),
  .portfolio-grid article:nth-child(n+3) {
    grid-column: auto;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 12px 16px;
  }

  .menu-toggle {
    width: 44px;
    min-width: 44px;
    padding: 0;
    border-radius: 50%;
  }

  .menu-label {
    display: none;
  }

  .nav-links {
    left: 16px;
    right: 16px;
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding: 88px 18px 40px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, 13vw, 3.7rem);
  }

  .hero-panel,
  .timeline article,
  .recommendation-person,
  .hero-profile {
    grid-template-columns: 1fr;
  }

  .recommendation-shell {
    display: block;
  }

  .hero-profile {
    width: 100%;
    gap: 14px;
    padding: 18px;
  }

  .hero-profile img {
    width: 116px;
    height: 116px;
  }

  .hero-profile span {
    overflow-wrap: normal;
    word-break: normal;
  }

  .hero-profile .profile-tag-line {
    row-gap: 2px;
  }

  .hero-profile .profile-tag-line b {
    margin: 0 7px;
  }

  .hero-profile .profile-tag-desktop {
    display: none;
  }

  .hero-profile .profile-tag-mobile {
    display: flex;
  }

  .hero-actions .button,
  .contact-card .contact-actions .button {
    width: 100%;
    min-width: 0;
  }

  .button.icon-action {
    gap: 10px;
  }

  .linkedin-mark {
    width: 22px;
    height: 22px;
    border-width: 2px;
    font-size: 0.72rem;
  }

  .action-icon {
    width: 22px;
    height: 22px;
  }

  .timeline article {
    gap: 16px;
    padding: 22px;
  }

  .timeline article::before {
    display: none;
  }

  .timeline time span {
    min-width: 0;
    width: fit-content;
  }

  .timeline article > div {
    gap: 8px;
  }

  .timeline h3 {
    font-size: 1.28rem;
  }

  .timeline-company {
    display: block;
    font-size: 0.96rem;
  }

  .timeline-company span {
    display: block;
    margin-bottom: 1px;
  }

  .timeline-company b {
    display: none;
  }

  .timeline-meta {
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .protected-email {
    width: 100%;
    min-width: 0;
  }

  .contact-card .contact-actions .button {
    white-space: normal;
  }

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

  .external-link-actions {
    grid-template-columns: 1fr;
  }

  .email-fallback-note {
    justify-self: stretch;
    max-width: none;
  }

  .recommendation-card {
    min-height: auto;
    padding: 28px 26px;
  }

  .reputation-strip {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .reputation-strip div {
    padding: 12px;
  }

  .reputation-strip strong {
    font-size: 0.82rem;
  }

  .recommendation-trust-grid div:first-child strong {
    font-size: 1.08rem;
  }

  .reputation-strip span {
    margin-top: 6px;
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .portfolio-flow {
    grid-template-columns: repeat(5, minmax(56px, 1fr));
  }

  .portfolio-flow span {
    min-height: 42px;
    font-size: 0.68rem;
  }

  .portfolio-flow span:not(:last-child)::after {
    display: none;
  }

  .portfolio-outcome {
    margin-left: 0;
    font-size: 0.68rem;
  }

  .market-orbit {
    width: auto;
    height: auto;
    gap: 5px;
    padding: 6px;
  }

  .recommendation-person {
    gap: 14px;
    margin-bottom: 22px;
  }

  .recommendation-relation {
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    overflow: hidden;
    font-size: 0.72rem;
    line-height: 1.3;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .recommendation-card p {
    font-size: 1.18rem;
    line-height: 1.28;
  }

  .quote-mark {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
    font-size: 1.9rem;
  }

  .exact-recommendation p {
    max-height: none;
    overflow: visible;
    padding-right: 0;
    font-size: 0.95rem;
    line-height: 1.58;
  }

  .exact-recommendation summary {
    display: block;
    width: 100%;
    overflow: hidden;
    font-size: 0.94rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .carousel-meta {
    gap: 9px 12px;
    margin-top: 14px;
  }

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

  .carousel-dots {
    width: min(300px, 46vw);
    max-width: none;
    gap: 7px;
    padding-bottom: 0;
  }

  .carousel-dot {
    width: 8px;
    height: 8px;
  }

  .carousel-dot.is-active {
    width: 18px;
    border-radius: 999px;
  }

  #recommendationCounter {
    font-size: 0.92rem;
  }

  .mobile-carousel-button {
    width: 38px;
    height: 38px;
  }

  .mobile-carousel-button svg {
    width: 19px;
    height: 19px;
  }

  .pause-button {
    grid-column: 2;
    grid-row: 1;
    width: 38px;
    height: 38px;
    min-height: 38px;
  }

  .pause-button svg {
    width: 18px;
    height: 18px;
  }

  #mobilePrevRecommendation {
    grid-column: 1;
    grid-row: 1;
  }

  #mobileNextRecommendation {
    grid-column: 3;
    grid-row: 1;
  }

  .site-footer {
    gap: 16px;
  }

  .site-footer > span {
    text-align: center;
  }

  .site-footer nav {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    justify-content: stretch;
  }

  .site-footer a {
    justify-content: center;
    min-height: 46px;
    padding: 8px 9px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    font-size: 0.86rem;
    text-align: center;
  }

  .site-footer .footer-linkedin {
    grid-column: auto;
  }

  .site-footer .footer-linkedin .linkedin-mark {
    width: 18px;
    height: 18px;
    font-size: 0.62rem;
  }

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

  .site-footer a:hover,
  .site-footer a:focus-visible,
  .site-footer a.is-active {
    color: #06201d;
    background: #9af0c0;
    border-color: #9af0c0;
    outline: 0;
  }
}


/* Transformation portfolio recommended layout */
.portfolio-grid article {
  grid-template-columns: 58px minmax(0, 1fr);
  grid-template-rows: auto auto 1fr;
  column-gap: 14px;
  row-gap: 6px;
  padding: 24px;
}

.portfolio-number {
  display: inline-grid;
  grid-column: 1;
  grid-row: 1 / 3;
  width: 54px;
  height: 54px;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
  background: linear-gradient(145deg, rgba(166, 214, 169, 0.98), rgba(101, 169, 103, 0.98));
  border: 1px solid rgba(95, 164, 103, 0.18);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(95, 164, 103, 0.12);
  font-size: 0;
  font-weight: 900;
  vertical-align: middle;
}

.portfolio-number::before {
  content: none;
}

.portfolio-number svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-grid h3 {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  margin: 0;
}

.portfolio-outcome {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  width: fit-content;
  margin: 4px 0 0;
}

.portfolio-grid p {
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: 14px;
}

@media (max-width: 680px) {
  .portfolio-grid article {
    grid-template-columns: 52px minmax(0, 1fr);
  }

  .portfolio-number {
    width: 50px;
    height: 50px;
  }
}


/* Transformation icon color alignment update */
.portfolio-number {
  color: #ffffff;
  background:
    radial-gradient(circle at 30% 22%, rgba(154, 240, 192, 0.52), transparent 34%),
    linear-gradient(145deg, #0f766e 0%, #2f9e44 100%);
  border: 1px solid rgba(154, 240, 192, 0.28);
  border-radius: 14px;
  box-shadow:
    0 10px 22px rgba(15, 118, 110, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.portfolio-number svg {
  stroke: #ffffff;
  opacity: 0.98;
}

/* Transformation Portfolio: balanced impact-style icon colors */
.portfolio-grid article:nth-child(1) { --portfolio-accent: #0f766e; --portfolio-soft: rgba(15, 118, 110, 0.10); --portfolio-border: rgba(15, 118, 110, 0.18); }
.portfolio-grid article:nth-child(2) { --portfolio-accent: #2f9e44; --portfolio-soft: rgba(47, 158, 68, 0.10); --portfolio-border: rgba(47, 158, 68, 0.18); }
.portfolio-grid article:nth-child(3) { --portfolio-accent: #d99a21; --portfolio-soft: rgba(217, 154, 33, 0.12); --portfolio-border: rgba(217, 154, 33, 0.20); }
.portfolio-grid article:nth-child(4) { --portfolio-accent: #0f766e; --portfolio-soft: rgba(15, 118, 110, 0.10); --portfolio-border: rgba(15, 118, 110, 0.18); }
.portfolio-grid article:nth-child(5) { --portfolio-accent: #102526; --portfolio-soft: rgba(16, 37, 38, 0.08); --portfolio-border: rgba(16, 37, 38, 0.16); }
.portfolio-grid article:nth-child(6) { --portfolio-accent: #102526; --portfolio-soft: rgba(16, 37, 38, 0.08); --portfolio-border: rgba(16, 37, 38, 0.16); }
.portfolio-grid article:nth-child(7) { --portfolio-accent: #2f9e44; --portfolio-soft: rgba(47, 158, 68, 0.10); --portfolio-border: rgba(47, 158, 68, 0.18); }
.portfolio-grid article:nth-child(8) { --portfolio-accent: #0f766e; --portfolio-soft: rgba(15, 118, 110, 0.10); --portfolio-border: rgba(15, 118, 110, 0.18); }

.portfolio-number {
  color: #ffffff;
  background: var(--portfolio-accent, #0f766e);
  border: 1px solid var(--portfolio-border, rgba(15, 118, 110, 0.18));
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(16, 37, 38, 0.09);
}

.portfolio-number svg {
  stroke: currentColor;
  opacity: 1;
}

.portfolio-grid article::before {
  background: var(--portfolio-accent, #0f766e);
  opacity: 0.54;
}

.portfolio-outcome {
  color: color-mix(in srgb, var(--portfolio-accent, #0f766e) 68%, #102526);
  background: var(--portfolio-soft, rgba(15, 118, 110, 0.10));
  border-color: var(--portfolio-border, rgba(15, 118, 110, 0.18));
}



/* Flow boxes match experience context boxes */
.portfolio-flow span {
  color: #ffffff;
  background: #102526;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 34px rgba(16, 37, 38, 0.12);
}

.portfolio-flow span:not(:last-child)::after {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}


/* Leadership story box matches experience context boxes */
.story-panel {
  color: #ffffff;
  background: #102526;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 6px solid #0f766e;
  box-shadow: 0 14px 34px rgba(16, 37, 38, 0.12);
}

.story-panel p {
  color: rgba(255, 255, 255, 0.82);
}


/* Leadership icon centering fix */
.approach-step {
  position: relative;
}

.approach-step::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
}


/* Business Impact icon centering fix */
.impact-grid .card-icon {
  position: relative;
}

.impact-grid .card-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
}


/* Business Impact high-impact icon mapping */
.impact-grid article:nth-child(1) .card-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox=%220%200%2024%2024%22%20xmlns=%22http://www.w3.org/2000/svg%22%20fill=%22none%22%20stroke=%22black%22%20stroke-width=%222.2%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22%3E%3Cpath%20d=%22M8%2011a3%203%200%201%200%200-6%203%203%200%200%200%200%206Z%22/%3E%3Cpath%20d=%22M3.5%2019a4.5%204.5%200%200%201%209%200%22/%3E%3Cpath%20d=%22M13.5%2015.5%2017%2012l3%203%22/%3E%3Cpath%20d=%22M17%2012v7%22/%3E%3C/svg%3E");
}

.impact-grid article:nth-child(2) .card-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox=%220%200%2024%2024%22%20xmlns=%22http://www.w3.org/2000/svg%22%20fill=%22none%22%20stroke=%22black%22%20stroke-width=%222.2%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22%3E%3Crect%20x=%224%22%20y=%225%22%20width=%226%22%20height=%225%22%20rx=%221.3%22/%3E%3Crect%20x=%2214%22%20y=%225%22%20width=%226%22%20height=%225%22%20rx=%221.3%22/%3E%3Crect%20x=%229%22%20y=%2214%22%20width=%226%22%20height=%225%22%20rx=%221.3%22/%3E%3Cpath%20d=%22M10%207.5h4%22/%3E%3Cpath%20d=%22M12%2010v4%22/%3E%3C/svg%3E");
}

.impact-grid article:nth-child(3) .card-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox=%220%200%2024%2024%22%20xmlns=%22http://www.w3.org/2000/svg%22%20fill=%22none%22%20stroke=%22black%22%20stroke-width=%222.1%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22%3E%3Crect%20x=%227%22%20y=%227%22%20width=%2210%22%20height=%2210%22%20rx=%222.5%22/%3E%3Cpath%20d=%22M12%203.5v2%22/%3E%3Cpath%20d=%22M12%2018.5v2%22/%3E%3Cpath%20d=%22M3.5%2012h2%22/%3E%3Cpath%20d=%22M18.5%2012h2%22/%3E%3Cpath%20d=%22m9.5%2012%201.6%201.6%203.4-3.4%22/%3E%3C/svg%3E");
}

.impact-grid article:nth-child(4) .card-icon::before {
  mask-image: url("data:image/svg+xml,%3Csvg%20viewBox=%220%200%2024%2024%22%20xmlns=%22http://www.w3.org/2000/svg%22%20fill=%22none%22%20stroke=%22black%22%20stroke-width=%222.2%22%20stroke-linecap=%22round%22%20stroke-linejoin=%22round%22%3E%3Cpath%20d=%22M5%2019h14%22/%3E%3Cpath%20d=%22M8%2016v-4%22/%3E%3Cpath%20d=%22M12%2016V8%22/%3E%3Cpath%20d=%22M16%2016v-6%22/%3E%3Cpath%20d=%22m6.5%207.5%203%202.5%203.5-4%204.5%203%22/%3E%3C/svg%3E");
}



/* Business Impact tag consistency update */
.impact-grid .value-chips span {
  min-height: 27px;
  padding: 6px 10px;
  color: color-mix(in srgb, var(--accent, #0f766e) 66%, #102526);
  background: color-mix(in srgb, var(--accent, #0f766e) 9%, #ffffff);
  border: 1px solid color-mix(in srgb, var(--accent, #0f766e) 18%, #d9e4df);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.impact-grid .value-chips {
  gap: 6px;
}


/* Tag spacing and overflow fix */
.impact-grid .value-chips,
.capability-board .value-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: stretch;
  width: 100%;
  margin-bottom: 16px;
}

.impact-grid .value-chips span,
.capability-board .value-chips span {
  flex: 1 1 74px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 9px;
  padding-right: 9px;
}

.impact-grid .value-chips span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 760px) {
  .impact-grid .value-chips span,
  .capability-board .value-chips span {
    flex-basis: auto;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }
}


/* Force three value tags on one row */
.impact-grid .value-chips,
.capability-board .value-chips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  width: 100%;
  align-items: stretch;
  margin-bottom: 16px;
}

.impact-grid .value-chips span,
.capability-board .value-chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 5px 6px;
  font-size: 0.64rem;
  line-height: 1.05;
  letter-spacing: 0;
}

@media (max-width: 760px) {
  .impact-grid .value-chips,
  .capability-board .value-chips {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .impact-grid .value-chips span,
  .capability-board .value-chips span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 0.58rem;
    padding-left: 4px;
    padding-right: 4px;
  }
}


/* Workflow tag readability test */
.impact-grid .value-chips,
.capability-board .value-chips {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 5px;
}

.impact-grid .value-chips span,
.capability-board .value-chips span {
  padding: 6px 7px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  text-overflow: clip;
}

@media (max-width: 760px) {
  .impact-grid .value-chips span,
  .capability-board .value-chips span {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 0.62rem;
  }
}


/* Restore original value chip size with compact AI Ops label */
.impact-grid .value-chips,
.capability-board .value-chips {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
}

.impact-grid .value-chips span,
.capability-board .value-chips span {
  padding: 5px 9px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: clip;
}

@media (max-width: 760px) {
  .impact-grid .value-chips span,
  .capability-board .value-chips span {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 0.66rem;
  }
}


/* Flow hover effect aligned with site interactions */
.portfolio-flow span {
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.portfolio-flow span:hover {
  z-index: 2;
  background: #0f766e;
  border-left-color: rgba(154, 240, 192, 0.24);
  box-shadow: 0 18px 38px rgba(15, 118, 110, 0.22);
  transform: translateY(-2px);
}

.portfolio-flow span:hover::after {
  background: #0f766e;
  border-top-color: rgba(154, 240, 192, 0.24);
  border-right-color: rgba(154, 240, 192, 0.24);
}


/* Capability tags under title */
.capability-board h3 {
  margin-bottom: 0;
}

.capability-board .value-chips.compact {
  grid-column: 1 / -1;
  margin: 10px 0 14px;
}

.capability-board p {
  margin-top: 0;
}

/* Capability Map: remove bottom accent border */
.capability-board article::after {
  display: none;
  content: none;
}


/* End-to-end final UI consistency pass */
:root {
  --ui-radius-card: 10px;
  --ui-radius-pill: 999px;
}

.impact-grid article,
.capability-board article,
.portfolio-grid article,
.approach-grid article,
.timeline article,
.market-map article,
.recommendation-card,
.contact-card,
.terms-panel,
.terms-grid article {
  border-radius: var(--ui-radius-card);
}

.value-chips {
  align-items: stretch;
}

.impact-grid .value-chips span,
.capability-board .value-chips span,
.portfolio-outcome,
.market-map article > span {
  border-radius: var(--ui-radius-pill);
  line-height: 1.08;
}

.impact-grid .value-chips span,
.capability-board .value-chips span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.impact-grid .card-icon,
.approach-step,
.portfolio-number {
  flex: 0 0 auto;
}

.impact-grid .card-icon::before,
.approach-step::before {
  transform: translate(-50%, -50%);
}

.portfolio-outcome {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
}

.portfolio-grid article,
.impact-grid article,
.capability-board article,
.approach-grid article {
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.portfolio-grid article:hover,
.impact-grid article:hover,
.capability-board article:hover,
.approach-grid article:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(16, 37, 38, 0.09);
}

@media (max-width: 760px) {
  .impact-grid .value-chips span,
  .capability-board .value-chips span {
    font-size: 0.64rem;
    padding-left: 4px;
    padding-right: 4px;
  }
}


/* Extended hover effects for Experience, Market Trust, and Recommendations */
.timeline article,
.market-map article,
.recommendation-card,
.recommendation-trust-grid > div,
.experience-context a {
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.timeline article:hover,
.timeline article:focus-within,
.market-map article:hover,
.market-map article:focus-within,
.recommendation-card:hover,
.recommendation-card:focus-within,
.recommendation-trust-grid > div:hover,
.recommendation-trust-grid > div:focus-within {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(16, 37, 38, 0.09);
  border-color: rgba(15, 118, 110, 0.18);
}

.market-map article:hover,
.market-map article:focus-within {
  border-color: rgba(154, 240, 192, 0.22);
  box-shadow: 0 18px 38px rgba(16, 37, 38, 0.16);
}

.recommendation-card:hover,
.recommendation-card:focus-within,
.recommendation-trust-grid > div:hover,
.recommendation-trust-grid > div:focus-within {
  box-shadow: 0 18px 38px rgba(16, 37, 38, 0.12);
}

/* Unified dark proof/trust/value box system */
:root {
  --dark-proof-bg: #102526;
  --dark-proof-bg-hover: #0f766e;
  --dark-proof-border: rgba(154, 240, 192, 0.16);
  --dark-proof-border-hover: rgba(154, 240, 192, 0.34);
  --dark-proof-accent: #9af0c0;
  --dark-proof-text: rgba(255, 255, 255, 0.86);
  --dark-proof-muted: rgba(255, 255, 255, 0.72);
  --dark-proof-shadow: 0 14px 34px rgba(16, 37, 38, 0.12);
  --dark-proof-shadow-hover: 0 18px 38px rgba(15, 118, 110, 0.22);
}

.proof-band {
  gap: 10px;
  background: #eef4ef;
}

.proof-item,
.portfolio-flow span,
.story-panel,
.experience-context a,
.market-map article,
.recommendation-trust-grid > div {
  background:
    linear-gradient(145deg, rgba(154, 240, 192, 0.08), rgba(255, 255, 255, 0.025)),
    var(--dark-proof-bg);
  border: 1px solid var(--dark-proof-border);
  border-radius: var(--ui-radius-card, 10px);
  box-shadow: var(--dark-proof-shadow);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease,
    background-color 160ms ease;
}

.proof-item:hover,
.proof-item:focus-within,
.portfolio-flow span:hover,
.portfolio-flow span:focus-visible,
.story-panel:hover,
.story-panel:focus-within,
.experience-context a:hover,
.experience-context a:focus-visible,
.market-map article:hover,
.market-map article:focus-within,
.recommendation-trust-grid > div:hover,
.recommendation-trust-grid > div:focus-within {
  transform: translateY(-2px);
  background:
    linear-gradient(145deg, rgba(154, 240, 192, 0.11), rgba(255, 255, 255, 0.035)),
    var(--dark-proof-bg-hover);
  border-color: var(--dark-proof-border-hover);
  box-shadow: var(--dark-proof-shadow-hover);
}

.proof-item span,
.experience-context strong,
.market-map strong,
.recommendation-trust-grid strong {
  color: var(--dark-proof-accent);
}

.proof-item p,
.story-panel p,
.experience-context span,
.market-map p,
.reputation-strip span {
  color: var(--dark-proof-muted);
}

.proof-item strong,
.portfolio-flow span,
.story-panel,
.experience-context a,
.market-map article,
.recommendation-trust-grid > div {
  color: #ffffff;
}

.portfolio-flow {
  gap: 10px;
  border: 0;
  background: transparent;
  overflow: visible;
}

.portfolio-flow span {
  overflow: visible;
}

.portfolio-flow span:not(:last-child)::after {
  display: none;
  content: none;
}

.market-map article > span {
  color: #06201d;
  background: var(--dark-proof-accent);
  border: 1px solid rgba(154, 240, 192, 0.28);
}

.recommendation-trust-grid > div::before {
  background: var(--dark-proof-accent);
}

@media (max-width: 760px) {
  .proof-band,
  .portfolio-flow {
    gap: 8px;
  }
}

/* Leadership story box left accent line - matched to trust boxes */
.story-panel {
  position: relative;
  overflow: hidden;
  border-left: 1px solid var(--dark-proof-border);
  padding-left: clamp(22px, 2.6vw, 28px);
}

.story-panel::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--dark-proof-accent);
  content: "";
  opacity: 0.82;
}

.story-panel > * {
  position: relative;
  z-index: 1;
}

/* Final icon alignment audit: consistent centering and sizing across site */
.card-icon,
.impact-grid .card-icon,
.capability-board .card-icon,
.approach-step,
.portfolio-number,
.brand-home,
.carousel-button,
.mobile-carousel-button,
.pause-button {
  display: inline-grid;
  place-items: center;
  align-items: center;
  justify-items: center;
}

.impact-grid .card-icon,
.approach-step {
  position: relative;
}

.impact-grid .card-icon::before,
.approach-step::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 23px;
  height: 23px;
  margin: 0;
  transform: translate(-50%, -50%);
}

.portfolio-number svg,
.brand-home svg,
.action-icon,
.carousel-button svg,
.mobile-carousel-button svg,
.pause-button svg {
  display: block;
  margin: 0;
  flex: 0 0 auto;
}

.portfolio-number svg {
  width: 23px;
  height: 23px;
}

.brand-home svg,
.carousel-button svg,
.mobile-carousel-button svg,
.pause-button svg {
  transform: none;
}

.action-icon {
  width: 18px;
  height: 18px;
}

.market-orbit {
  display: grid;
  place-items: center;
}


/* Portfolio outage process note */
.portfolio-grid .portfolio-note {
  grid-column: 1 / -1;
  grid-row: 4;
  margin-top: 10px;
  padding: 10px 12px;
  color: #26343d;
  background: rgba(226, 244, 236, 0.52);
  border: 1px solid rgba(15, 118, 110, 0.12);
  border-left: 4px solid rgba(15, 118, 110, 0.72);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 650;
  line-height: 1.5;
}


/* Small-screen title balance refinement */
.capability-board h3 {
  min-height: 50px;
}

.portfolio-grid h3 {
  min-height: 2.45em;
}

@media (max-width: 680px) {
  .hero .eyebrow {
    font-size: 0.68rem;
    line-height: 1.35;
    letter-spacing: 0.05em;
    max-width: 100%;
  }

  .hero-profile .profile-tag-desktop {
    display: flex;
  }

  .hero-profile .profile-tag-mobile {
    display: none;
  }

  .capability-board h3,
  .portfolio-grid h3 {
    font-size: 1.08rem;
    line-height: 1.18;
  }

  .capability-board h3 {
    min-height: 0;
  }

  .portfolio-grid h3 {
    min-height: 0;
  }
}

/* Hero profile tag UI refinement: keep all tag text, improve wrapping */
.hero-profile .profile-tag-line {
  gap: 6px 7px;
  margin-top: 8px;
}

.hero-profile .profile-tag-line b {
  display: none;
}

.hero-profile .profile-tag-line span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 3px 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.hero-profile .profile-tag-line + .profile-tag-line {
  margin-top: 7px;
}

@media (max-width: 680px) {
  .hero-profile {
    gap: 13px;
    padding: 16px;
  }

  .hero-profile img {
    width: 104px;
    height: 104px;
  }

  .hero-profile strong {
    font-size: 1.02rem;
  }

  .hero-profile > div > span:not(.profile-tag-line) {
    font-size: 0.84rem;
  }

  .hero-profile .profile-tag-line {
    gap: 5px 6px;
    margin-top: 8px;
  }

  .hero-profile .profile-tag-line span {
    min-height: 23px;
    padding: 3px 7px;
    font-size: 0.7rem;
    letter-spacing: -0.01em;
  }
}

@media (max-width: 430px) {
  .hero-profile {
    padding: 14px;
  }

  .hero-profile .profile-tag-line span {
    font-size: 0.68rem;
    padding-inline: 6px;
  }
}

/* Hero profile tag distribution refinement: use one responsive tag flow */
.hero-profile > div {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 7px;
  min-width: 0;
}

.hero-profile > div > strong,
.hero-profile > div > span:not(.profile-tag-line) {
  flex: 0 0 100%;
}

.hero-profile .profile-tag-line.profile-tag-desktop {
  display: contents;
}

.hero-profile .profile-tag-mobile {
  display: none !important;
}

.hero-profile .profile-tag-line + .profile-tag-line {
  margin-top: 0;
}

.hero-profile .profile-tag-line span {
  margin-top: 0;
}

@media (max-width: 680px) {
  .hero-profile > div {
    gap: 5px 6px;
  }

  .hero-profile .profile-tag-line.profile-tag-desktop {
    display: contents;
  }

  .hero-profile .profile-tag-mobile {
    display: none !important;
  }
}

/* Hero role line width refinement: use available space before wrapping */
.hero-content {
  max-width: min(1180px, 100%);
}

.hero .eyebrow {
  max-width: none;
  text-wrap: balance;
}

@media (max-width: 1120px) and (min-width: 681px) {
  .hero .eyebrow {
    font-size: 0.74rem;
    line-height: 1.32;
    letter-spacing: 0.055em;
  }
}

@media (min-width: 1280px) {
  .hero .eyebrow {
    letter-spacing: 0.065em;
  }
}

/* Hero role line: use available desktop width before wrapping */
.hero-content > .eyebrow {
  max-width: min(1560px, calc(100vw - (var(--page-x) * 2)));
  width: max-content;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .hero-content > .eyebrow {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }
}


/* Hero profile tag row balance: three intentional rows, text unchanged */
.hero-profile > div {
  display: block;
}

.hero-profile > div > strong,
.hero-profile > div > span:not(.profile-tag-line) {
  display: block;
}

.hero-profile .profile-tag-line.profile-tag-desktop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  gap: 6px 7px;
  margin-top: 8px;
}

.hero-profile .profile-tag-line.profile-tag-desktop + .profile-tag-line.profile-tag-desktop {
  margin-top: 7px;
}

.hero-profile .profile-tag-mobile {
  display: none !important;
}

@media (max-width: 680px) {
  .hero-profile > div {
    display: block;
  }

  .hero-profile .profile-tag-line.profile-tag-desktop {
    display: flex;
    gap: 5px 6px;
    margin-top: 8px;
  }

  .hero-profile .profile-tag-line.profile-tag-desktop + .profile-tag-line.profile-tag-desktop {
    margin-top: 6px;
  }
}


/* Final visual balance fixes: hero profile rows and Transformation tag spacing */
.hero-profile .profile-tag-line.profile-tag-desktop {
  gap: 6px 8px;
}

.hero-profile .profile-tag-line span {
  padding: 3px 9px;
  font-size: 0.75rem;
}

@media (max-width: 900px) {
  .hero-profile .profile-tag-line span {
    padding: 3px 8px;
    font-size: 0.72rem;
  }
}

@media (max-width: 680px) {
  .hero-profile .profile-tag-line.profile-tag-desktop {
    gap: 5px 6px;
  }

  .hero-profile .profile-tag-line span {
    padding: 3px 7px;
    font-size: 0.7rem;
  }
}

.portfolio-grid h3 {
  min-height: 0;
  margin-bottom: 0;
}

.portfolio-outcome {
  margin-top: 2px;
}

.portfolio-grid p {
  margin-top: 12px;
}

/* On-brand but distinct Transformation Portfolio icon accents */
.portfolio-grid article:nth-child(1) { --portfolio-accent: #0f766e; --portfolio-soft: rgba(15, 118, 110, 0.10); --portfolio-border: rgba(15, 118, 110, 0.18); }
.portfolio-grid article:nth-child(2) { --portfolio-accent: #2f9e44; --portfolio-soft: rgba(47, 158, 68, 0.10); --portfolio-border: rgba(47, 158, 68, 0.18); }
.portfolio-grid article:nth-child(3) { --portfolio-accent: #d99a21; --portfolio-soft: rgba(217, 154, 33, 0.12); --portfolio-border: rgba(217, 154, 33, 0.20); }
.portfolio-grid article:nth-child(4) { --portfolio-accent: #256f82; --portfolio-soft: rgba(37, 111, 130, 0.10); --portfolio-border: rgba(37, 111, 130, 0.18); }
.portfolio-grid article:nth-child(5) { --portfolio-accent: #102526; --portfolio-soft: rgba(16, 37, 38, 0.08); --portfolio-border: rgba(16, 37, 38, 0.16); }
.portfolio-grid article:nth-child(6) { --portfolio-accent: #285c52; --portfolio-soft: rgba(40, 92, 82, 0.10); --portfolio-border: rgba(40, 92, 82, 0.18); }
.portfolio-grid article:nth-child(7) { --portfolio-accent: #4f8d44; --portfolio-soft: rgba(79, 141, 68, 0.10); --portfolio-border: rgba(79, 141, 68, 0.18); }
.portfolio-grid article:nth-child(8) { --portfolio-accent: #0b5f56; --portfolio-soft: rgba(11, 95, 86, 0.10); --portfolio-border: rgba(11, 95, 86, 0.18); }


/* Final UI refinement: capability/portfolio tag spacing and icon consistency */
.capability-board h3 {
  min-height: 42px;
  margin-bottom: 0;
}

.capability-board .value-chips.compact {
  margin: 6px 0 14px;
}

.portfolio-grid article {
  row-gap: 0;
}

.portfolio-grid h3 {
  margin-bottom: 2px;
}

.portfolio-outcome {
  margin-top: 0;
}

.card-icon,
.impact-grid .card-icon,
.capability-board .card-icon,
.portfolio-number,
.approach-step {
  box-sizing: border-box;
  display: inline-grid;
  place-items: center;
  align-items: center;
  justify-items: center;
  line-height: 1;
  text-align: center;
}

.impact-grid .card-icon,
.capability-board .card-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
}

.impact-grid .card-icon::before,
.approach-step::before {
  top: 50%;
  left: 50%;
  margin: 0;
  transform: translate(-50%, -50%);
}

.portfolio-number {
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
}

.portfolio-number svg {
  display: block;
  width: 23px;
  height: 23px;
  margin: 0;
  transform: none;
}

.portfolio-grid article:nth-child(1) { --portfolio-accent: #0f766e; --portfolio-soft: rgba(15, 118, 110, 0.10); --portfolio-border: rgba(15, 118, 110, 0.18); }
.portfolio-grid article:nth-child(2) { --portfolio-accent: #2f9e44; --portfolio-soft: rgba(47, 158, 68, 0.10); --portfolio-border: rgba(47, 158, 68, 0.18); }
.portfolio-grid article:nth-child(3) { --portfolio-accent: #d99a21; --portfolio-soft: rgba(217, 154, 33, 0.12); --portfolio-border: rgba(217, 154, 33, 0.20); }
.portfolio-grid article:nth-child(4) { --portfolio-accent: #24746f; --portfolio-soft: rgba(36, 116, 111, 0.10); --portfolio-border: rgba(36, 116, 111, 0.18); }
.portfolio-grid article:nth-child(5) { --portfolio-accent: #102526; --portfolio-soft: rgba(16, 37, 38, 0.08); --portfolio-border: rgba(16, 37, 38, 0.16); }
.portfolio-grid article:nth-child(6) { --portfolio-accent: #1f6f68; --portfolio-soft: rgba(31, 111, 104, 0.10); --portfolio-border: rgba(31, 111, 104, 0.18); }
.portfolio-grid article:nth-child(7) { --portfolio-accent: #315c49; --portfolio-soft: rgba(49, 92, 73, 0.10); --portfolio-border: rgba(49, 92, 73, 0.18); }
.portfolio-grid article:nth-child(8) { --portfolio-accent: #4c8f45; --portfolio-soft: rgba(76, 143, 69, 0.10); --portfolio-border: rgba(76, 143, 69, 0.18); }

/* Hero profile tag balance: shorter Service Delivery label helps keep tags to three rows */
.hero-profile {
  max-width: min(940px, 100%);
}

.hero-profile .profile-tag-line.profile-tag-desktop {
  gap: 6px 7px;
}

.hero-profile .profile-tag-line span {
  padding: 3px 8px;
}

@media (max-width: 900px) {
  .hero-profile .profile-tag-line span {
    padding: 3px 7px;
    font-size: 0.7rem;
  }
}

@media (max-width: 680px) {
  .capability-board h3 {
    min-height: 0;
  }

  .capability-board .value-chips.compact {
    margin: 6px 0 12px;
  }

  .portfolio-number {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
  }

  .portfolio-number svg {
    width: 22px;
    height: 22px;
  }
}

/* Transformation Portfolio tag spacing restored closer to original */
.portfolio-grid article {
  row-gap: 4px;
}

.portfolio-grid h3 {
  margin-bottom: 8px;
}

.portfolio-outcome {
  margin-top: 0;
}

@media (max-width: 680px) {
  .portfolio-grid h3 {
    margin-bottom: 7px;
  }
}


/* Final original-spacing and hero tag balance check */
.hero-profile {
  width: min(1040px, calc(100vw - (var(--page-x) * 2)));
  max-width: none;
}

.hero-profile .profile-tag-line.profile-tag-desktop {
  display: flex;
  flex-wrap: nowrap;
  width: fit-content;
  max-width: 100%;
}

.hero-profile .profile-tag-line.profile-tag-desktop span {
  white-space: nowrap;
}

.capability-board .value-chips.compact {
  margin: 10px 0 14px;
}

.portfolio-grid h3 {
  margin-bottom: 4px;
}

.portfolio-outcome {
  margin-top: 4px;
}

@media (max-width: 760px) {
  .hero-profile {
    width: 100%;
    max-width: 100%;
  }

  .hero-profile .profile-tag-line.profile-tag-desktop {
    flex-wrap: wrap;
    width: 100%;
  }

  .capability-board .value-chips.compact {
    margin: 9px 0 12px;
  }

  .portfolio-grid h3 {
    margin-bottom: 5px;
  }

  .portfolio-outcome {
    margin-top: 3px;
  }
}

/* Hero profile card width correction: extend only slightly and keep clear gap from stat cards */
.hero-profile {
  width: fit-content;
  max-width: min(860px, 100%);
}

@media (max-width: 1120px) {
  .hero-profile {
    width: 100%;
    max-width: 100%;
  }
}


/* Focused fix: hero profile tags on medium/small screens */
@media (max-width: 1120px) {
  .hero-profile > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px 7px;
    min-width: 0;
  }

  .hero-profile > div > strong,
  .hero-profile > div > span:not(.profile-tag-line) {
    flex: 0 0 100%;
  }

  .hero-profile .profile-tag-line.profile-tag-desktop {
    display: contents !important;
  }

  .hero-profile .profile-tag-line.profile-tag-desktop span {
    margin-top: 0;
  }

  .hero-profile .profile-tag-mobile {
    display: none !important;
  }
}

@media (max-width: 760px) {
  .hero-profile > div {
    gap: 5px 6px;
  }

  .hero-profile .profile-tag-line span {
    padding: 3px 7px;
    font-size: 0.69rem;
    line-height: 1.05;
  }
}

@media (max-width: 420px) {
  .hero-profile {
    padding: 14px;
  }

  .hero-profile > div {
    gap: 5px 5px;
  }

  .hero-profile .profile-tag-line span {
    padding: 3px 6px;
    font-size: 0.66rem;
  }
}


/* Focused fix: prevent hero profile tag overflow on medium/small screens */
.hero-profile {
  overflow: hidden;
}

.hero-profile > div {
  min-width: 0;
}

.hero-profile .profile-tag-line.profile-tag-desktop {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  min-width: 0;
  overflow: visible;
}

.hero-profile .profile-tag-line.profile-tag-desktop span {
  max-width: 100%;
  white-space: nowrap;
}

@media (min-width: 761px) and (max-width: 1320px) {
  .hero-profile .profile-tag-line.profile-tag-desktop {
    gap: 5px 6px;
  }

  .hero-profile .profile-tag-line.profile-tag-desktop span {
    padding: 3px 6px;
    font-size: 0.68rem;
  }
}

@media (max-width: 1120px) {
  .hero-profile > div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 6px;
    min-width: 0;
  }

  .hero-profile > div > strong,
  .hero-profile > div > span:not(.profile-tag-line) {
    flex: 0 0 100%;
    min-width: 0;
  }

  .hero-profile .profile-tag-line.profile-tag-desktop {
    display: contents !important;
  }

  .hero-profile .profile-tag-line.profile-tag-desktop span {
    max-width: 100%;
    white-space: nowrap;
  }
}

@media (max-width: 760px) {
  .hero-profile > div {
    gap: 5px 6px;
  }

  .hero-profile .profile-tag-line span {
    padding: 3px 7px;
    font-size: 0.68rem;
    line-height: 1.05;
  }
}

@media (max-width: 420px) {
  .hero-profile .profile-tag-line span {
    padding: 3px 6px;
    font-size: 0.65rem;
  }
}

/* Focused check: Transformation Portfolio border/icon/tag color match */
.portfolio-grid article::before {
  background: var(--portfolio-accent, #0f766e);
}

.portfolio-number {
  background: var(--portfolio-accent, #0f766e);
}

.portfolio-outcome {
  color: color-mix(in srgb, var(--portfolio-accent, #0f766e) 68%, #102526);
  background: var(--portfolio-soft, rgba(15, 118, 110, 0.10));
  border-color: var(--portfolio-border, rgba(15, 118, 110, 0.18));
}

/* Final Transformation Portfolio unique accent palette: each card has a distinct color, with matching top bar, icon and tag */
.portfolio-grid article:nth-child(1) { --portfolio-accent: #0f766e; --portfolio-soft: rgba(15, 118, 110, 0.10); --portfolio-border: rgba(15, 118, 110, 0.18); }
.portfolio-grid article:nth-child(2) { --portfolio-accent: #2f9e44; --portfolio-soft: rgba(47, 158, 68, 0.10); --portfolio-border: rgba(47, 158, 68, 0.18); }
.portfolio-grid article:nth-child(3) { --portfolio-accent: #d99a21; --portfolio-soft: rgba(217, 154, 33, 0.12); --portfolio-border: rgba(217, 154, 33, 0.20); }
.portfolio-grid article:nth-child(4) { --portfolio-accent: #256f82; --portfolio-soft: rgba(37, 111, 130, 0.10); --portfolio-border: rgba(37, 111, 130, 0.18); }
.portfolio-grid article:nth-child(5) { --portfolio-accent: #102526; --portfolio-soft: rgba(16, 37, 38, 0.08); --portfolio-border: rgba(16, 37, 38, 0.16); }
.portfolio-grid article:nth-child(6) { --portfolio-accent: #1b8a5a; --portfolio-soft: rgba(27, 138, 90, 0.10); --portfolio-border: rgba(27, 138, 90, 0.18); }
.portfolio-grid article:nth-child(7) { --portfolio-accent: #5b7f2a; --portfolio-soft: rgba(91, 127, 42, 0.10); --portfolio-border: rgba(91, 127, 42, 0.18); }
.portfolio-grid article:nth-child(8) { --portfolio-accent: #405577; --portfolio-soft: rgba(64, 85, 119, 0.10); --portfolio-border: rgba(64, 85, 119, 0.18); }
