:root {
  --navy: #12253b;
  --slate: #4f6275;
  --mist: #f2f6f8;
  --teal: #2f7f8c;
  --ink: #1f2a33;
  --site-header-offset: 68px;
}

html {
  margin: 0;
  padding: 0;
  background: #004a4a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background: #ffffff;
  overflow-x: hidden;
  padding-top: var(--site-header-offset);
}

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

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: transparent;
  border-bottom: 0;
}

.site-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.62rem 0;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding-left: 2.2rem;
  padding-right: 2.2rem;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
}

.logo {
  position: relative;
  z-index: 12;
  color: #111821;
  font-size: clamp(1.55rem, 2.1vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  margin-left: auto;
  position: relative;
  z-index: 12;
}

.header-login {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #111821;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.header-login-secondary {
  gap: 0.32rem;
}

.header-login-download {
  position: relative;
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
}

.header-login-download::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 1px;
  width: 2px;
  height: 7px;
  background: currentColor;
}

.header-login-download::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 5px;
  width: 6px;
  height: 6px;
  border-right: 1.6px solid currentColor;
  border-bottom: 1.6px solid currentColor;
  transform: rotate(45deg);
}

.header-login-download span {
  display: none;
}

.header-login-arrow {
  position: relative;
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
}

.header-login-arrow::before {
  content: "";
  position: absolute;
  left: 1px;
  bottom: 2px;
  width: 9px;
  border-top: 1.6px solid currentColor;
  transform: rotate(-45deg);
  transform-origin: left center;
}

.header-login-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 1px;
  width: 5px;
  height: 5px;
  border-top: 1.6px solid currentColor;
  border-right: 1.6px solid currentColor;
}


.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: #111821;
}

.menu-toggle-box {
  display: inline-flex;
  flex-direction: column;
  gap: 0.5rem;
}

.menu-toggle-line {
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  border-radius: 99px;
}

.menu-toggle-text {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.mobile-nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-signup {
  display: none;
}

.site-nav {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: #163f38;
  color: #f5f7fb;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.site-nav-shell {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding: 1.45rem 3.5rem 2rem;
  display: flex;
  flex-direction: column;
  background: #163f38;
}

.mobile-nav-brand {
  color: #ffffff;
  font-size: clamp(1.55rem, 2.1vw, 2.4rem);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.mobile-nav-close {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  border: 0;
  background: transparent;
  color: #ffffff;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.nav-close-icon {
  position: relative;
  width: 28px;
  height: 28px;
}

.nav-close-icon::before,
.nav-close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 32px;
  height: 2px;
  background: currentColor;
}

.nav-close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-close-text {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 4rem;
  align-items: start;
  padding: 5rem 0 2rem;
  flex: 1;
}

.site-nav-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(3rem, 5vw, 5.1rem);
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: -0.03em;
  position: relative;
  display: inline-block;
  padding-bottom: 0.12em;
  transition: color 180ms ease, transform 180ms ease, opacity 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.04em;
  width: 100%;
  border-top: 2px solid rgba(244, 247, 243, 0.96);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.nav-link:hover {
  transform: translateX(8px);
}

.nav-link:hover::after,
.nav-link:focus-visible::after,
.nav-link.is-active::after {
  transform: scaleX(1);
}

.nav-link.is-active {
  opacity: 1;
  color: #ffffff;
}

.site-nav-utility {
  margin-top: 0.2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-nav-utility-link {
  color: #f4a62a;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 0.18rem;
}

.site-nav-utility-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-top: 2px solid currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.site-nav-utility-link:hover::after,
.site-nav-utility-link:focus-visible::after {
  transform: scaleX(1);
}

.site-nav-info {
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.site-nav-info h2 {
  margin: 0 0 2rem;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 300;
}

.site-nav-info-block + .site-nav-info-block {
  margin-top: 1.75rem;
}

.site-nav-info-label {
  margin-bottom: 0.65rem;
  color: #44bee2;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.15rem;
  line-height: 1.45;
}

.site-nav-info-block p + .site-nav-info-label {
  margin-top: 1.35rem;
}

.site-nav-info-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.site-nav-copyright {
  margin-top: 5rem;
  padding-top: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.3;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-header {
  z-index: 50;
}

body.menu-open .site-header-bar {
  width: 100%;
  max-width: none;
  margin: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
}

body.menu-open .site-header > .site-header-bar > .logo,
body.menu-open .site-header > .site-header-bar > .header-actions {
  opacity: 0;
  pointer-events: none;
}

body.menu-open .site-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.menu-open .menu-toggle-text {
  display: none;
}

.video-home {
  position: relative;
  min-height: 680px;
  width: 100vw;
  margin: 1rem 0 0;
  border-radius: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: #112638;
}

.video-home-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.5) saturate(1.12);
}

.video-home-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 35, 0.06);
}

.video-home-content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
}

.video-home-content h1 {
  margin: 0;
  font-size: clamp(2.4rem, 5.2vw, 5.4rem);
  font-weight: 300;
  line-height: 1.05;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.video-home-content p {
  margin-top: 1rem;
  max-width: 40ch;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  color: #eef3f7;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.video-home-cta {
  display: inline-block;
  margin-top: 1.35rem;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  color: #ffffff;
  background: rgba(10, 24, 35, 0.3);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.video-home.video-fallback {
  background: url('/site/images/hero-background.webp') center / cover no-repeat;
}

.overlap-slider-section {
  margin-top: -100px;
  position: relative;
  z-index: 3;
  padding: 0;
}

.overlap-slider-section .container {
  width: min(1240px, 92vw);
  padding: 0;
}

.overlap-slider {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #dce6ee;
}

.overlap-slides {
  position: relative;
  height: clamp(320px, 48vw, 560px);
}

.overlap-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  opacity: 0;
  transform: scale(1.02);
  transition: opacity 450ms ease, transform 850ms ease;
}

.overlap-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.overlap-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlap-slide-message {
  position: absolute;
  left: 1.2rem;
  bottom: 2rem;
  margin: 0;
  max-width: 22ch;
  color: #ffffff;
  font-size: clamp(1.4rem, 3.4vw, 3.5rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  text-align: left;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.52);
}

.slider-arrow {
  position: static;
  border: 0;
  width: 54px;
  height: 38px;
  border-radius: 0;
  background: transparent;
  color: #2d4a50;
  font-size: 1.6rem;
  font-weight: 200;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}

.slider-controls {
  position: static;
  background: #ffffff;
  padding: 1rem 0 1.15rem;
  padding-left: 0.9rem;
  display: flex;
  gap: 0.2rem;
  align-items: center;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}

.hero {
  padding: 4.5rem 0 4rem;
  min-height: 700px;
  margin: 1rem auto 0;
  width: min(1400px, 97vw);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background: url('/site/images/hero-background.webp') center / cover no-repeat;
}

.hero-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  text-align: center;
}

.hero-copy {
  max-width: 980px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: #eef4f8;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  margin-bottom: 0.7rem;
}

.hero h1 {
  margin: 0;
  line-height: 1.08;
  color: #ffffff;
  font-size: clamp(2.1rem, 4.2vw, 4.3rem);
  font-weight: 300;
  letter-spacing: 0;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.hero p {
  max-width: 48ch;
  margin: 0 auto;
  color: #eef3f7;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.8rem;
  justify-content: center;
}

.hero .btn-primary {
  background: #d7f341;
  color: #0e2435;
  border-radius: 999px;
  font-weight: 600;
  padding: 0.9rem 1.9rem;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.75);
  color: #ffffff;
  background: rgba(7, 20, 30, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.btn {
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.btn-primary {
  background: linear-gradient(125deg, var(--navy), #183e62);
  color: #fff;
}

.btn-ghost {
  border-color: #b8c4ce;
  color: var(--navy);
  background: #fff;
}

.stats-card {
  background: #fff;
  border-radius: 18px;
  padding: 1.2rem;
  border: 1px solid #d7e1e8;
  box-shadow: 0 10px 25px rgba(18, 37, 59, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.stats-section {
  padding-top: 2.4rem;
  text-align: center;
}

.stats-card-standalone {
  max-width: 900px;
  margin: 0 auto;
}

.stats-title {
  margin: 0;
  font-size: clamp(2rem, 3.6vw, 3rem);
  color: #182838;
  font-weight: 400;
}

.stats-subtitle {
  margin: 0.9rem auto 2rem;
  max-width: 62ch;
  color: #6a7a87;
  line-height: 1.45;
}

.stats-card-wide {
  max-width: 1220px;
  padding: 0;
  overflow: hidden;
}

.stats-brand {
  padding: 1.2rem 1rem;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 600;
  color: #1d2a35;
  border-bottom: 1px solid #dee7ed;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding: 2rem 1.2rem 2.2rem;
}

.stats-item {
  padding: 0 0.7rem;
  transition: transform 220ms ease;
}

.stats-number {
  color: #111f2f;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1;
  font-weight: 500;
}

.stats-item-label {
  margin-top: 0.4rem;
  color: #677684;
  font-size: 1.05rem;
}

.stat {
  padding: 0.8rem 0;
  border-bottom: 1px solid #e6edf2;
}

.stat:last-child {
  border-bottom: 0;
}

.stat-label {
  color: var(--slate);
  font-size: 0.85rem;
}

.stat-value {
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 700;
}

.section {
  padding: 3.4rem 0;
}

.section-title {
  margin: 0 0 1rem;
  color: var(--navy);
  font-size: 1.6rem;
}

.offerings-chip {
  display: block;
  width: fit-content;
  padding: 0.35rem 0.9rem;
  border: 1px solid #c7d2da;
  border-radius: 999px;
  color: #515f6d;
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
  margin-left: auto;
  margin-right: auto;
}

.offerings-heading {
  margin: 0 0 1.4rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.05;
  font-weight: 400;
  color: #0f1e2c;
  text-align: center;
}

.offerings-heading span {
  color: #b786af;
  font-weight: 300;
}

.offerings-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.offering-tile {
  position: relative;
  height: clamp(320px, 38vw, 540px);
  border-radius: 18px;
  overflow: hidden;
  transform: translateZ(0);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.offering-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 650ms ease;
}

.offering-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 20, 30, 0.08) 35%, rgba(8, 20, 30, 0.76) 100%);
  transition: background 320ms ease;
}

.offering-content {
  position: absolute;
  left: 1.05rem;
  right: 1.05rem;
  bottom: 1rem;
  color: #fff;
  text-align: center;
}

.offering-content h3 {
  margin: 0 0 0.45rem;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 400;
}

.offering-content p {
  margin: 0;
  color: #edf3f6;
  font-size: 0.95rem;
  line-height: 1.4;
}

.strategy-section {
  background: linear-gradient(145deg, #6f8d92 0%, #537277 100%);
  padding: 3.8rem 0 4.1rem;
}

.strategy-heading {
  margin: 0 0 1.9rem;
  color: #ecf2f3;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1.04;
  font-weight: 300;
  max-width: 12ch;
}

.strategy-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.strategy-card {
  background: #f3f6f8;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(199, 214, 220, 0.6);
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.strategy-media {
  position: relative;
  height: 290px;
}

.strategy-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 650ms ease;
}

.strategy-icon-wrap {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
}

.strategy-icon-wrap img {
  width: 28px;
  height: 28px;
}

.strategy-body {
  padding: 1rem 1rem 1.25rem;
}

.strategy-body h3 {
  margin: 0 0 0.55rem;
  color: #2e3f46;
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 500;
}

.strategy-body p {
  margin: 0;
  color: #425762;
  font-size: 1rem;
  line-height: 1.45;
}

.get-started-section {
  background: #f4f6f8;
  text-align: center;
}

.get-started-title {
  margin: 0;
  color: #111b24;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 400;
}

.get-started-subtitle {
  margin: 0.8rem auto 1.8rem;
  max-width: 58ch;
  color: #6a757f;
  font-size: 1.1rem;
  line-height: 1.4;
}

.get-started-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.get-started-card {
  background: #ebedf0;
  border-radius: 18px;
  text-align: left;
  padding: 1.45rem 1.3rem;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

.step-number {
  color: #0f1b25;
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.get-started-card h3 {
  margin: 0 0 0.7rem;
  color: #13212e;
  font-size: 2rem;
  line-height: 1.05;
  font-weight: 500;
}

.get-started-card p {
  margin: 0;
  color: #626f7a;
  font-size: 1.05rem;
  line-height: 1.45;
}

.get-started-button {
  margin-top: 1.8rem;
  display: inline-block;
  background: #98e8c4;
  color: #0f2a33;
  padding: 0.75rem 1.7rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
}

.about-section {
  padding-top: 3.8rem;
}

.about-top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: center;
  margin-bottom: 1.7rem;
}

.about-heading {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.05rem);
  line-height: 1.05;
  color: #111d27;
  font-weight: 400;
}

.about-heading span {
  color: #2e7070;
  font-weight: 400;
}

.about-subtext {
  margin: 0.85rem 0 0;
  max-width: 60ch;
  color: #677582;
  font-size: 1.15rem;
  line-height: 1.4;
}

.about-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid #89a0a5;
  color: #163f46;
  border-radius: 999px;
  padding: 0.75rem 1.35rem;
  font-size: 1.05rem;
  font-weight: 500;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

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

.about-card {
  border: 1px solid #d4dde4;
  border-radius: 20px;
  padding: 1.5rem 1.3rem 1.4rem;
  background: #fff;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.about-icon-wrap {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  background: #2f7777;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.about-icon-wrap img {
  width: 34px;
  height: 34px;
}

.about-card h3 {
  margin: 0 0 0.55rem;
  color: #162430;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.05;
}

.about-card p {
  margin: 0;
  color: #5f6e7d;
  font-size: 1.05rem;
  line-height: 1.45;
}

.team-showcase {
  background: #f1f2f0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dde2e0;
}

.team-photo-wrap {
  aspect-ratio: 16 / 6.2;
  overflow: hidden;
  background: #d8ddd9;
}

.team-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms ease;
}

.team-showcase:hover .team-photo,
.team-showcase:focus-within .team-photo {
  transform: scale(1.03);
}

.team-copy {
  padding: 2.1rem 2rem 2.3rem;
  max-width: 760px;
}

.team-copy h2 {
  margin: 0;
  color: #23303a;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 600;
  line-height: 1.04;
}

.team-copy p {
  margin: 1rem 0 0;
  color: #3d4953;
  font-size: 1.12rem;
  line-height: 1.45;
  max-width: 34ch;
}

.team-actions {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 1.55rem;
  flex-wrap: wrap;
}

.team-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #28343e;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  position: relative;
  padding-bottom: 0.16rem;
}

.team-action-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  border-top: 1.5px solid currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease;
}

.team-action-btn:hover::after,
.team-action-btn:focus-visible::after {
  transform: scaleX(1);
}

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

.card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d9e4eb;
  padding: 1rem;
}

.card h3 {
  margin-top: 0;
  color: var(--navy);
}

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

.team-directory-main {
  padding-top: 0;
}

.team-directory-hero {
  background: #eceeeb;
  padding: 3.8rem 0 2.8rem;
}

.team-directory-hero-inner h1 {
  margin: 0;
  color: #050608;
  font-size: clamp(3.2rem, 6vw, 5.2rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.team-directory-toolbar {
  margin-top: 3.3rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}

.team-directory-tabs,
.team-directory-filters {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
}

.team-directory-tab,
.team-filter-button {
  border: 0;
  background: transparent;
  color: #264033;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.team-directory-tab {
  position: relative;
  font-size: 1.15rem;
  line-height: 1.2;
}

.team-directory-tab.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.75rem;
  width: 100%;
  border-top: 2px solid #264033;
}

.team-directory-filters {
  gap: 0;
  border: 1px solid #314935;
}

.team-filter-button {
  min-width: 140px;
  padding: 0.9rem 1.35rem;
  font-size: 1rem;
  line-height: 1.1;
}

.team-filter-button + .team-filter-button {
  border-left: 1px solid #314935;
}

.team-filter-button.is-active {
  background: #314935;
  color: #f2f5ef;
}

.team-directory-section {
  padding-top: 4.1rem;
  padding-bottom: 4.5rem;
}

.team-directory-group h2 {
  margin: 0 0 2rem;
  color: #050608;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.team-directory-group + .team-directory-group {
  margin-top: 4rem;
}

.team-directory-group {
  scroll-margin-top: 120px;
}

.team-directory-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem 1.35rem;
}

.team-directory-grid-advisors {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-member-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.team-member-photo {
  aspect-ratio: 1 / 1.06;
  background: #d8cec2;
  overflow: hidden;
}

.team-member-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-member-card h3 {
  margin: 1rem 0 0.3rem;
  color: #0a1013;
  font-size: 1.15rem;
  line-height: 1.15;
  font-weight: 500;
}

.team-member-card p {
  margin: 0;
  color: #4a5756;
  font-size: 0.98rem;
  line-height: 1.4;
}

.team-member-card:hover .team-member-photo img {
  transform: scale(1.02);
}

.team-member-photo img {
  transition: transform 220ms ease;
}

.team-profile-main {
  padding-top: 2.4rem;
  padding-bottom: 4.8rem;
  background: #f1f1ee;
}

.team-profile-layout {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1fr);
  gap: 3.8rem;
  align-items: start;
}

.team-profile-image-wrap {
  background: #d8cec2;
  overflow: hidden;
}

.team-profile-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 780px;
  object-fit: cover;
  display: block;
}

.team-profile-content {
  padding-top: 0.35rem;
}

.team-profile-back {
  display: inline-block;
  margin-bottom: 1.1rem;
  color: #355047;
  font-size: 0.95rem;
}

.team-profile-eyebrow {
  margin-bottom: 0.95rem;
  color: #355047;
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-profile-content h1 {
  margin: 0;
  color: #060708;
  font-size: clamp(3rem, 5vw, 4.7rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.team-profile-meta {
  margin: 0.45rem 0 0;
  color: #141718;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.35;
}

.team-profile-divider {
  margin: 3rem 0 2.2rem;
  border-top: 1px solid #cbd0cb;
}

.team-profile-bio p {
  margin: 0 0 1.8rem;
  color: #111416;
  font-size: clamp(1.15rem, 1.55vw, 1.42rem);
  line-height: 1.55;
  max-width: 32ch;
}

@media (max-width: 1200px) {
  .team-directory-hero {
    padding: 3rem 0 2.25rem;
  }

  .team-directory-toolbar {
    margin-top: 2.4rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .team-directory-filters {
    flex-wrap: wrap;
  }

  .team-filter-button {
    min-width: 124px;
    padding-inline: 1.1rem;
  }

  .team-directory-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.7rem 1.15rem;
  }

  .team-profile-layout {
    grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
    gap: 2.2rem;
  }

  .team-profile-image-wrap img {
    min-height: 680px;
  }

  .contact-hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
    gap: 2.2rem;
    padding: 3rem 2.2rem 3.2rem;
  }

  .contact-form-card {
    width: min(100%, 520px);
    padding: 2rem 1.6rem 1.7rem;
  }
}

.benefits-section {
  background: linear-gradient(180deg, #f8fbfd 0%, #f3f7fa 100%);
  text-align: center;
}

.benefits-chip {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  border: 1px solid #cfd9e0;
  border-radius: 999px;
  color: #556676;
  font-size: 0.8rem;
  margin-bottom: 0.75rem;
}

.benefits-heading {
  margin: 0 0 1.4rem;
  font-size: clamp(1.8rem, 4.2vw, 3rem);
  font-weight: 400;
  color: #0f1f30;
}

.benefits-heading span {
  color: #7c8a96;
  font-weight: 300;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: left;
}

.benefit-card {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #d9e4eb;
  background: #fff;
  transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.benefit-image {
  display: block;
  width: 100%;
  height: 270px;
  object-fit: cover;
  transition: transform 650ms ease;
}

.benefit-body {
  padding: 1rem 1rem 1.1rem;
}

.benefit-body h3 {
  margin: 0 0 0.55rem;
  color: #152435;
  font-size: 1.18rem;
  font-weight: 500;
}

.benefit-body p {
  margin: 0;
  color: #5c6d7c;
  line-height: 1.45;
}

.cta-section {
  background: #e9edf1;
  padding: 5.5rem 0 5.8rem;
  text-align: center;
}

.cta-inner h2 {
  margin: 0;
  color: #2f6e99;
  font-size: clamp(2rem, 4.8vw, 4.2rem);
  font-weight: 400;
  line-height: 1.05;
  max-width: 15ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-inner p {
  margin: 1.4rem auto 0;
  color: #173a56;
  font-size: 1.05rem;
  line-height: 1.45;
  max-width: 33ch;
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  background: #2f77a4;
  color: #fff;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

[data-hero-item] {
  opacity: 0;
  transform: translateY(22px);
}

.page-ready [data-hero-item] {
  animation: homeHeroRise 700ms cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

.page-ready [data-hero-item]:nth-child(1) {
  animation-delay: 80ms;
}

.page-ready [data-hero-item]:nth-child(2) {
  animation-delay: 180ms;
}

.page-ready [data-hero-item]:nth-child(3) {
  animation-delay: 280ms;
}

.page-ready [data-hero-item]:nth-child(4) {
  animation-delay: 380ms;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 650ms cubic-bezier(0.2, 0.7, 0.2, 1), transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}

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

.offering-tile:hover,
.offering-tile:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(18, 37, 59, 0.18);
}

.offering-tile:hover img,
.offering-tile:focus-within img {
  transform: scale(1.06);
}

.offering-tile:hover .offering-overlay,
.offering-tile:focus-within .offering-overlay {
  background: linear-gradient(180deg, rgba(8, 20, 30, 0.02) 28%, rgba(8, 20, 30, 0.82) 100%);
}

.stats-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(18, 37, 59, 0.12);
}

.stats-item:hover {
  transform: translateY(-2px);
}

.strategy-card:hover,
.strategy-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 18px 34px rgba(17, 33, 38, 0.18);
  border-color: rgba(167, 195, 202, 0.85);
}

.strategy-card:hover .strategy-photo,
.strategy-card:focus-within .strategy-photo {
  transform: scale(1.05);
}

.about-card:hover,
.about-card:focus-within,
.benefit-card:hover,
.benefit-card:focus-within,
.get-started-card:hover,
.get-started-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(18, 37, 59, 0.1);
}

.benefit-card:hover .benefit-image,
.benefit-card:focus-within .benefit-image {
  transform: scale(1.04);
}

.about-cta:hover,
.about-cta:focus-visible,
.cta-button:hover,
.cta-button:focus-visible,
.hero .btn:hover,
.hero .btn:focus-visible,
.get-started-button:hover,
.get-started-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(18, 37, 59, 0.16);
}

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

@media (prefers-reduced-motion: reduce) {
  [data-hero-item],
  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }

  .offering-tile,
  .offering-tile img,
  .strategy-card,
  .strategy-photo,
  .about-card,
  .about-belief-panel,
  .about-belief-item,
  .about-team-banner,
  .about-team-banner-btn,
  .about-process-card,
  .about-process-cta,
  .about-bottom-cta-btn,
  .strategy-metric,
  .strategy-benefit-item,
  .strategy-circle-card,
  .strategy-platform-card,
  .strategy-platform-video-card,
  .strategy-platform-video,
  .strategy-pillar-card,
  .strategy-pillar-card img,
  .strategy-team-contact-inner a,
  .strategy-approach-card,
  .strategy-essentials-panel,
  .strategy-essential-item,
  .strategy-footer-cta-card,
  .strategy-footer-cta-card img,
  .strategy-footer-cta-content a,
  .benefit-card,
  .benefit-image,
  .get-started-card,
  .stats-card,
  .stats-item,
  .about-cta,
  .cta-button,
  .btn,
  .get-started-button {
    transition: none !important;
    transform: none !important;
  }
}

.panel {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #d8e4eb;
  padding: 1.2rem;
}

.muted {
  color: var(--slate);
}

.site-footer {
  margin-top: 0;
  background: #004a4a;
  color: #e9f0f4;
  padding: 3.6rem 0 calc(2.1rem + env(safe-area-inset-bottom));
  min-height: 700px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.footer-kicker {
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: #aebbc4;
  font-size: 0.78rem;
  margin-bottom: 0.8rem;
}

.footer-intro h3 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  font-weight: 400;
  line-height: 1.2;
}

.footer-button {
  display: inline-block;
  background: #355261;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 2px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}

.footer-links-compact {
  display: flex !important;
  flex-direction: column;
  gap: 0.5rem !important;
  align-self: start;
}

.footer-links-compact li {
  margin: 0;
  padding: 0;
}

.footer-links-compact a {
  display: inline-block;
  line-height: 1.3;
}

.footer-links a {
  color: #f0f5f8;
  font-size: 1rem;
}

.footer-contact p {
  margin: 0 0 0.7rem;
  color: #e5edf2;
  line-height: 1.4;
}

.footer-social {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  margin-top: 0.4rem;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #ffffff;
}

.footer-bottom {
  margin-top: 9rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
  color: #d4e2e8;
  font-size: 0.9rem;
}

.footer-policy-links {
  display: flex;
  gap: 1rem;
}

.footer-policy-links a {
  color: #e5eff4;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.inner-page-main {
  padding: 2rem 0 3.6rem;
}

.companies-page-main {
  padding-top: 0;
  margin-top: -1px;
}

.strategy-page-main {
  padding-bottom: 0;
  overflow-x: clip;
}

.about-page .inner-page-main {
  overflow-x: clip;
}

.page-hero {
  background: linear-gradient(140deg, #173a56 0%, #0f2e44 60%, #0a2537 100%);
  border-radius: 22px;
  padding: 3.2rem 2rem 2.9rem;
  color: #eef4f8;
}

.about-hero-shell {
  width: min(1460px, 97vw);
}

.about-page-hero {
  min-height: 700px;
  border-radius: 42px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 19, 30, 0.58) 0%, rgba(8, 19, 30, 0.24) 52%, rgba(8, 19, 30, 0.05) 100%),
    url('/site/images/hero.webp') center / cover no-repeat;
}

.about-hero-content {
  max-width: 760px;
  margin-left: clamp(1rem, 6vw, 9rem);
}

.about-hero-title {
  font-size: clamp(2.5rem, 4.8vw, 5.4rem);
  font-weight: 300;
  line-height: 1.05;
  color: #f2f7fb;
  max-width: 16ch;
}

.about-hero-subtitle {
  margin-top: 1.5rem;
  max-width: 40ch;
  font-size: 1.2rem;
  color: #e4edf4;
  line-height: 1.4;
}

.about-belief-intro {
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.about-belief-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  color: #667a89;
}

.about-belief-title {
  margin: 0.85rem 0 0;
  font-size: clamp(1.85rem, 3.5vw, 3rem);
  line-height: 1.12;
  color: #1a2a3a;
  font-weight: 400;
}

.about-belief-copy {
  margin: 1rem auto 0;
  max-width: 72ch;
  color: #596d7b;
  font-size: 1.2rem;
  line-height: 1.45;
}

.about-belief-panel {
  margin-top: 2.5rem;
  padding: 3rem 2.8rem 2.8rem;
  border-radius: 20px;
  border: 1px solid #d2dbe3;
  background: #eef1f4;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.about-belief-panel-title {
  margin: 0 0 2.1rem;
  color: #172735;
  font-size: clamp(1.75rem, 2.7vw, 2.6rem);
  font-weight: 400;
}

.about-belief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem 1.4rem;
}

.about-belief-item {
  padding: 0.2rem 0.35rem;
  transition: transform 220ms ease;
}

.about-belief-icon {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid #8fa0ad;
  border-radius: 999px;
  color: #243646;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.about-belief-item h4 {
  margin: 0 0 0.45rem;
  color: #1d2f3f;
  font-size: clamp(1.2rem, 1.85vw, 1.65rem);
  line-height: 1.15;
  font-weight: 500;
}

.about-belief-item p {
  margin: 0;
  color: #475d6f;
  font-size: 1.05rem;
  line-height: 1.45;
}

.about-team-banner {
  min-height: 520px;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background:
    linear-gradient(100deg, rgba(28, 85, 68, 0.56) 0%, rgba(16, 41, 53, 0.44) 36%, rgba(10, 28, 40, 0.62) 100%),
    url('/site/images/meet_team.jpg.webp') center / cover no-repeat;
  transition: transform 320ms ease, box-shadow 320ms ease, background-size 600ms ease;
  background-size: cover;
}

.about-team-banner-content {
  padding: 2.3rem 2.2rem 2.2rem;
  max-width: 640px;
}

.about-team-banner-content h2 {
  margin: 0;
  color: #f3f8fb;
  font-size: clamp(2.1rem, 4.4vw, 4.2rem);
  line-height: 1.06;
  font-weight: 300;
  max-width: 13ch;
}

.about-team-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
  border: 1px solid rgba(233, 242, 248, 0.82);
  color: #eff5f9;
  border-radius: 999px;
  padding: 0.72rem 1.15rem;
  font-size: 1rem;
  background: rgba(9, 24, 35, 0.16);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.about-values-section {
  max-width: 1220px;
  margin: 0 auto;
  text-align: center;
}

.about-values-kicker {
  margin: 0;
  color: #2e7070;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(0.8rem, 0.95vw, 1.25rem);
  font-weight: 700;
}

.about-values-title {
  margin: 1.4rem 0 0;
  color: #162838;
  font-size: clamp(1.5rem, 2.6vw, 3rem);
  line-height: 1.2;
  font-weight: 400;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}

.about-values-core {
  margin: 2.1rem 0 0;
  color: #2e7070;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: clamp(0.82rem, 0.95vw, 1.2rem);
  font-weight: 700;
}

.about-values-cards {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  text-align: left;
}

.about-values-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #e3e8ed;
  background: #eceef0;
}

.about-values-card-main {
  min-height: 72px;
  padding: 0.52rem 0.62rem;
  color: #141f29;
  font-size: clamp(0.88rem, 1.1vw, 1.05rem);
  line-height: 1.2;
  font-weight: 500;
}

.about-values-card-sub {
  border-top: 1px solid #dfe5ea;
  padding: 0.36rem 0.62rem 0.4rem;
  color: #2e3f4c;
  font-size: 0.74rem;
}

.about-bottom-cta {
  border-radius: 14px;
  background: linear-gradient(95deg, #141d2a 0%, #2a3343 50%, #141d2a 100%);
  padding: 4.2rem 1.4rem 4.1rem;
  text-align: center;
}

.about-bottom-cta h2 {
  margin: 0;
  color: #f1f6f9;
  font-size: clamp(1.8rem, 3.1vw, 3.3rem);
  line-height: 1.12;
  font-weight: 300;
}

.about-bottom-cta p {
  margin: 0.9rem auto 0;
  max-width: 56ch;
  color: #c7d2dc;
  font-size: clamp(0.96rem, 1.1vw, 1.2rem);
  line-height: 1.45;
}

.about-bottom-cta-btn {
  display: inline-block;
  margin-top: 1.25rem;
  background: #9cead4;
  color: #0f2f35;
  border-radius: 999px;
  padding: 0.62rem 1.45rem;
  font-size: 0.98rem;
  font-weight: 600;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.about-process-top {
  display: grid;
  grid-template-columns: 1.3fr auto;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1.2rem;
}

.about-page .page-section {
  padding-top: 2.8rem;
}

.about-page .about-bottom-cta {
  margin-top: 0.8rem;
}

.about-process-top h2 {
  margin: 0;
  color: #131f2a;
  font-size: clamp(1.9rem, 3.8vw, 4rem);
  line-height: 1.08;
  font-weight: 400;
  max-width: 16ch;
}

.about-process-top h2 span {
  color: #a47f21;
}

.about-process-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid #8ba0aa;
  border-radius: 999px;
  color: #1f3d4a;
  padding: 0.62rem 1.15rem;
  font-size: 0.95rem;
  font-weight: 500;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.about-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.about-process-card {
  border: 1px solid #e5d8b1;
  border-radius: 20px;
  background: #fff;
  padding: 1.2rem 1.05rem 1.15rem;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.about-process-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #dbc071;
  display: grid;
  place-items: center;
}

.about-process-icon img {
  width: 28px;
  height: 28px;
}

.about-process-card h3 {
  margin: 0.85rem 0 0.35rem;
  color: #1d2831;
  font-size: 1.9rem;
  line-height: 1.05;
  font-weight: 500;
}

.about-process-card p {
  margin: 0;
  color: #596d79;
  font-size: 1rem;
  line-height: 1.45;
}

.about-belief-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(17, 33, 38, 0.08);
}

.about-belief-item:hover {
  transform: translateY(-3px);
}

.about-team-banner:hover,
.about-team-banner:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(17, 33, 38, 0.14);
}

.about-team-banner-btn:hover,
.about-team-banner-btn:focus-visible,
.about-process-cta:hover,
.about-process-cta:focus-visible,
.about-bottom-cta-btn:hover,
.about-bottom-cta-btn:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(18, 37, 59, 0.14);
}

.about-process-card:hover,
.about-process-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 18px 30px rgba(17, 33, 38, 0.08);
  border-color: #d8c07b;
}

.page-eyebrow {
  margin: 0 0 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #b2c4d2;
}

.page-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
  font-weight: 400;
}

.page-subtitle {
  margin: 0.85rem 0 0;
  max-width: 52ch;
  color: #d9e4ec;
  line-height: 1.45;
}

.page-section {
  padding-top: 2rem;
}

.page-section-title {
  margin: 0 0 0.9rem;
  color: #12283a;
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  font-weight: 400;
}

.page-section-copy {
  margin: 0;
  color: #4d6172;
  max-width: 64ch;
  line-height: 1.5;
}

.terms-page-hero {
  min-height: 360px;
  border-radius: 36px;
  display: flex;
  align-items: end;
  background:
    linear-gradient(115deg, rgba(12, 34, 49, 0.82) 0%, rgba(12, 34, 49, 0.48) 45%, rgba(18, 62, 65, 0.28) 100%),
    linear-gradient(140deg, #173a56 0%, #1d4f59 55%, #768f88 100%);
}

.terms-hero-content {
  max-width: 760px;
  padding: clamp(1.5rem, 4vw, 3rem);
}

.terms-layout {
  display: grid;
  grid-template-columns: minmax(230px, 280px) minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}

.terms-meta-card {
  position: sticky;
  top: 110px;
  padding: 1.3rem 1.15rem;
  border: 1px solid #d5dfe7;
  border-radius: 20px;
  background: #f5f8fa;
  color: #284052;
}

.terms-meta-label {
  margin-top: 1rem;
  margin-bottom: 0.28rem;
  color: #607585;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.terms-meta-label:first-child {
  margin-top: 0;
}

.terms-meta-card strong {
  display: block;
  font-size: 1.05rem;
  color: #152a39;
}

.terms-meta-card p {
  margin: 0 0 0.5rem;
  line-height: 1.45;
}

.terms-content {
  display: grid;
  gap: 1rem;
}

.terms-section {
  padding: 1.45rem 1.4rem;
  border: 1px solid #dbe4eb;
  border-radius: 20px;
  background: #ffffff;
}

.terms-section h2 {
  margin: 0 0 0.7rem;
  color: #142a39;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  font-weight: 500;
}

.terms-section p {
  margin: 0;
  color: #526676;
  line-height: 1.65;
  font-size: 1rem;
}

.terms-section a {
  color: #17485a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.page-card {
  border: 1px solid #d7e2ea;
  border-radius: 16px;
  padding: 1.15rem 1.1rem;
  background: #fff;
}

.page-card h3 {
  margin: 0 0 0.45rem;
  color: #13273a;
  font-size: 1.12rem;
  font-weight: 500;
}

.page-card p {
  margin: 0;
  color: #597082;
  line-height: 1.45;
}

.companies-intro {
  padding: 0;
  margin-top: calc(-1 * var(--site-header-offset));
}

.companies-intro-panel {
  min-height: 780px;
  background: #eceeeb;
  border: 1px solid #d6dbd5;
  display: flex;
  align-items: center;
  width: 100%;
}

.companies-intro-inner {
  padding: clamp(2rem, 6vw, 4.8rem) 0;
}

.companies-intro-panel h1 {
  margin: 0;
  max-width: 10.8ch;
  color: #050608;
  font-size: clamp(2.8rem, 5.4vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.055em;
  font-weight: 400;
  white-space: pre-line;
}

.portfolio-directory-section {
  background: #ffffff;
  padding: 2.45rem 0 4.5rem;
}

.portfolio-directory-controls {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  margin-bottom: 2.3rem;
}

.portfolio-select {
  position: relative;
}

.portfolio-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.15rem;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid #181818;
  border-bottom: 1.5px solid #181818;
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.portfolio-select select {
  min-width: 132px;
  padding: 1rem 3rem 1rem 1.15rem;
  border: 1px solid #222;
  border-radius: 0;
  background: transparent;
  font: inherit;
  font-size: 1rem;
  color: #121212;
  appearance: none;
}

.portfolio-directory-head {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 0.5fr 0.7fr 0.7fr 64px;
  gap: 1rem;
  padding: 0.95rem 0;
  border-top: 1px solid #bdc4bb;
  border-bottom: 1px solid #bdc4bb;
  color: #151515;
  font-size: 0.92rem;
}

.portfolio-item {
  border-bottom: 1px solid #bdc4bb;
}

.portfolio-item-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) 0.5fr 0.7fr 0.7fr 64px;
  gap: 1rem;
  align-items: center;
  padding: 2rem 0;
  border: 0;
  background: transparent;
  color: #0f0f10;
  text-align: left;
  cursor: pointer;
}

.portfolio-item-name {
  font-size: clamp(2rem, 3vw, 2.55rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.portfolio-item-year,
.portfolio-item-strategy,
.portfolio-item-status {
  font-size: 1rem;
}

.portfolio-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.35rem 1rem;
  border: 1px solid #232323;
  font-size: 0.9rem;
  line-height: 1;
}

.portfolio-item-icon {
  position: relative;
  width: 38px;
  height: 38px;
  justify-self: end;
}

.portfolio-item-icon::before,
.portfolio-item-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 38px;
  height: 1px;
  background: #111;
  transform: translate(-50%, -50%);
}

.portfolio-item-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.portfolio-item-toggle[aria-expanded="true"] .portfolio-item-icon::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.portfolio-item-toggle[aria-expanded="true"] .portfolio-item-icon::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.portfolio-item-details {
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr) 260px;
  gap: 2rem;
  align-items: start;
  padding: 0 0 2.3rem;
}

.portfolio-item-details[hidden] {
  display: none;
}

.portfolio-detail-logo {
  aspect-ratio: 1 / 0.75;
  display: grid;
  place-items: center;
  padding: 2rem;
  background: #f3f4f1;
  border: 1px solid #d9ddd6;
}

.portfolio-detail-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.portfolio-detail-copy p {
  margin: 0;
  max-width: 22ch;
  color: #161616;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.45;
}

.portfolio-detail-meta {
  display: flex;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: start;
}

.portfolio-meta-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #1b1b1b;
}

.portfolio-detail-meta strong {
  font-size: 1.15rem;
  font-weight: 500;
}

.portfolio-detail-meta a {
  color: #111;
  text-decoration: underline;
  text-underline-offset: 5px;
  white-space: nowrap;
}

.portfolio-detail-meta a::after {
  content: " \2197";
  font-size: 0.9em;
}

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

.contact-page-main {
  padding: 0;
}

.contact-hero {
  min-height: calc(100vh - var(--site-header-offset));
  background:
    linear-gradient(90deg, rgba(29, 18, 14, 0.04) 0%, rgba(29, 18, 14, 0.04) 100%),
    url('/site/images/contact_bkg.png') center / cover no-repeat;
}

.contact-hero-inner {
  min-height: calc(100vh - var(--site-header-offset));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 630px);
  gap: 3rem;
  align-items: start;
  padding: 3.8rem 3.5rem 4rem;
}

.contact-hero-copy {
  padding-top: 1.2rem;
}

.contact-hero-copy h1 {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(3.4rem, 6.2vw, 5.6rem);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 7.6ch;
}

.contact-form-shell {
  display: flex;
  justify-content: flex-end;
}

.contact-form-card {
  width: min(100%, 630px);
  background: rgba(247, 247, 245, 0.96);
  border-radius: 22px;
  padding: 2.35rem 2.2rem 1.9rem;
  box-shadow: 0 18px 40px rgba(51, 31, 20, 0.12);
}

.contact-form-card h2 {
  margin: 0 0 1.35rem;
  color: #34504a;
  font-size: clamp(2.1rem, 3vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -0.03em;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1.5px solid #556560;
  border-radius: 22px;
  background: transparent;
  color: #465652;
  font: inherit;
  font-size: 1rem;
  line-height: 1.4;
  padding: 1rem 1.35rem;
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #52625d;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #2f4842;
}

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

.contact-submit {
  margin-top: 0.55rem;
  width: 100%;
  border: 0;
  border-radius: 18px;
  background: #35504d;
  color: #ffffff;
  padding: 1rem 1.4rem;
  font: inherit;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-submit:hover,
.contact-submit:focus-visible {
  background: #28413d;
  transform: translateY(-1px);
}

.strategy-first-section {
  width: min(1540px, 97vw);
}

.strategy-intro-wrap {
  background: #f2f4f6;
  padding: 3.2rem 2rem 2.4rem;
}

.strategy-intro-copy {
  display: flex;
  justify-content: flex-end;
}

.strategy-intro-copy p {
  margin: 0;
  max-width: 31ch;
  color: #2b2f34;
  font-size: clamp(1.35rem, 2vw, 2.05rem);
  line-height: 1.45;
  font-weight: 400;
}

.strategy-metrics-row {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.strategy-metric {
  text-align: center;
  transition: transform 220ms ease;
}

.strategy-metric-number {
  color: #2e7070;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.95;
  font-weight: 700;
}

.strategy-metric-label {
  margin-top: 0.7rem;
  color: #7a7d7c;
  font-size: clamp(1rem, 1.8vw, 2.1rem);
  font-weight: 600;
}

.strategy-benefits-section {
  background: #345353;
  padding: 6.2rem 0 6.6rem;
}

.strategy-benefits-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr 1fr;
  grid-template-areas:
    "title item1 item2"
    "title item3 item4";
  gap: 2.1rem 2.4rem;
  align-items: start;
}

.strategy-benefits-title-wrap {
  grid-area: title;
  align-self: start;
}

.strategy-benefits-title-wrap h2 {
  margin: 0;
  color: #eef4f1;
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.15;
  font-weight: 500;
  max-width: 11ch;
}

.strategy-benefit-item {
  color: #e9f1ee;
  transition: transform 220ms ease;
}

.strategy-benefit-item:nth-of-type(1) {
  grid-area: item1;
}

.strategy-benefit-item:nth-of-type(2) {
  grid-area: item2;
}

.strategy-benefit-item:nth-of-type(3) {
  grid-area: item3;
}

.strategy-benefit-item:nth-of-type(4) {
  grid-area: item4;
}

.strategy-benefit-icon {
  width: 82px;
  height: 82px;
  border: 1px solid #69e0d0;
  border-radius: 999px;
  display: grid;
  place-items: center;
}

.strategy-benefit-icon img {
  width: 38px;
  height: 38px;
}

.strategy-benefit-item h3 {
  margin: 1rem 0 0.55rem;
  color: #edf4f1;
  font-size: clamp(1.2rem, 1.6vw, 1.95rem);
  line-height: 1.2;
  font-weight: 600;
}

.strategy-benefit-item p {
  margin: 0;
  color: #d4dfda;
  font-size: clamp(1rem, 1.2vw, 1.35rem);
  line-height: 1.4;
}

.strategy-circles-section {
  padding-top: 3rem;
  padding-bottom: 1.8rem;
}

.strategy-circles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
  align-items: start;
}

.strategy-circle-card {
  display: flex;
  justify-content: center;
  transition: transform 240ms ease;
}

.strategy-circle {
  --pct: 75;
  width: min(290px, 100%);
  aspect-ratio: 1 / 1;
  border-radius: 999px;
  position: relative;
  background:
    conic-gradient(from -90deg, #2e7070 calc(var(--pct) * 1%), #d8dce0 0);
  display: grid;
  place-items: center;
}

.strategy-circle::before {
  content: "";
  position: absolute;
  inset: 14%;
  border-radius: 999px;
  background: #f5f6f8;
}

.strategy-circle-content {
  position: relative;
  z-index: 1;
  width: 68%;
  text-align: center;
  color: #415866;
}

.strategy-circle-content p {
  margin: 0;
  font-size: clamp(0.88rem, 0.98vw, 1.05rem);
  line-height: 1.35;
}

.strategy-circle-content strong {
  display: block;
  margin: 0.35rem 0;
  color: #2e7070;
  font-size: clamp(2.1rem, 3vw, 2.8rem);
  line-height: 1;
  font-weight: 700;
}

.strategy-circle-content span {
  display: block;
  font-size: clamp(0.82rem, 0.92vw, 0.98rem);
  line-height: 1.35;
}

.strategy-circles-note {
  margin: 2.2rem 0 0;
  color: #4a525a;
  font-size: clamp(0.9rem, 1vw, 1.05rem);
  line-height: 1.45;
  text-align: center;
}

.strategy-platform-section {
  background: #8d4a33;
  margin-top: 1.8rem;
  padding: 6.2rem 0 10rem;
}

.strategy-platform-title {
  margin: 0 0 1.5rem;
  color: #f6ede7;
  font-size: clamp(1.8rem, 2.4vw, 3rem);
  line-height: 1.12;
  font-weight: 500;
}

.strategy-platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.strategy-platform-card {
  border-top: 2px solid rgba(246, 237, 231, 0.9);
  padding-top: 0.85rem;
  transition: transform 240ms ease, border-color 240ms ease;
}

.strategy-platform-card h3 {
  margin: 0 0 0.5rem;
  color: #f6ede7;
  font-size: clamp(1.12rem, 1.35vw, 1.55rem);
  line-height: 1.24;
  font-weight: 600;
}

.strategy-platform-card p {
  margin: 0;
  color: #f0dfd6;
  font-size: clamp(0.95rem, 1vw, 1.15rem);
  line-height: 1.4;
  max-width: 44ch;
}

.strategy-platform-video-overlap {
  margin-top: -5.6rem;
  margin-bottom: 2.2rem;
  position: relative;
  z-index: 3;
}

.strategy-platform-video-card {
  position: relative;
  min-height: 520px;
  border-radius: 16px;
  overflow: hidden;
  background: #c59b86;
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.strategy-platform-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 750ms ease;
}

.strategy-platform-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, rgba(255, 238, 223, 0.2) 0%, rgba(88, 40, 26, 0.34) 68%, rgba(58, 23, 14, 0.42) 100%);
}

.strategy-platform-video-copy {
  position: absolute;
  left: 3rem;
  right: 3rem;
  bottom: 2.6rem;
  max-width: 780px;
  z-index: 1;
}

.strategy-platform-video-copy h2 {
  margin: 0;
  color: #fff7f2;
  font-size: clamp(2rem, 4.2vw, 4.55rem);
  line-height: 1.04;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.strategy-pillars-section {
  padding-top: 1.2rem;
}

.strategy-pillars-title {
  margin: 0 0 1.35rem;
  color: #142c3f;
  font-size: clamp(2rem, 3.4vw, 4rem);
  line-height: 1.05;
  font-weight: 500;
  text-align: center;
}

.strategy-pillars-title span {
  color: #b081c1;
  font-weight: 300;
}

.strategy-pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.strategy-pillar-card {
  position: relative;
  min-height: 560px;
  border-radius: 22px;
  overflow: hidden;
  background: #203241;
  transition: transform 280ms ease, box-shadow 280ms ease;
}

.strategy-pillar-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 700ms ease;
}

.strategy-pillar-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 22, 35, 0.66) 12%, rgba(9, 22, 35, 0.2) 46%, rgba(9, 22, 35, 0.05) 78%);
}

.strategy-pillar-copy {
  position: absolute;
  left: 1.45rem;
  right: 1.45rem;
  bottom: 1.3rem;
  color: #eff6fb;
  z-index: 1;
  text-align: center;
}

.strategy-pillar-copy h3 {
  margin: 0 0 0.48rem;
  font-size: clamp(1.45rem, 2.2vw, 3rem);
  line-height: 1.1;
  font-weight: 400;
}

.strategy-pillar-copy p {
  margin: 0;
  font-size: clamp(1rem, 1.05vw, 1.3rem);
  line-height: 1.35;
  color: #e9eff4;
}

.strategy-team-contact {
  margin-top: 1.8rem;
  background: #edf2f6;
  padding: 4.6rem 0 4.8rem;
}

.strategy-team-contact-inner {
  text-align: center;
}

.strategy-team-contact-inner h2 {
  margin: 0;
  color: #2f78a3;
  font-size: clamp(1.25rem, 2.4vw, 2.95rem);
  line-height: 1.08;
  font-weight: 400;
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}

.strategy-team-contact-inner p {
  margin: 1.1rem auto 0;
  color: #1d425d;
  font-size: clamp(1rem, 1.25vw, 1.7rem);
  line-height: 1.42;
  max-width: 42ch;
}

.strategy-team-contact-inner a {
  display: inline-block;
  margin-top: 1.45rem;
  background: #2f78a3;
  color: #ffffff;
  border-radius: 999px;
  padding: 0.7rem 1.4rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.strategy-approach-section {
  background: #edf2f6;
  padding: 4.4rem 0 4.8rem;
}

.strategy-approach-inner {
  text-align: center;
}

.strategy-approach-inner h2 {
  margin: 0;
  color: #0f1d29;
  font-size: clamp(1.7rem, 3.1vw, 3.5rem);
  line-height: 1.1;
  font-weight: 400;
}

.strategy-approach-intro {
  margin: 0.95rem auto 0;
  max-width: 50ch;
  color: #4d5358;
  font-size: clamp(0.98rem, 1.15vw, 1.35rem);
  line-height: 1.45;
}

.strategy-approach-grid {
  margin-top: 2.6rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.strategy-approach-card {
  text-align: center;
  transition: transform 240ms ease;
}

.strategy-approach-icon {
  width: 62px;
  height: 62px;
  margin: 0 auto 1rem;
  border-radius: 12px;
  background: #e6e6e4;
  display: grid;
  place-items: center;
}

.strategy-approach-icon img {
  width: 26px;
  height: 26px;
}

.strategy-approach-card h3 {
  margin: 0;
  color: #101821;
  font-size: clamp(1.1rem, 1.5vw, 1.85rem);
  line-height: 1.25;
  font-weight: 600;
}

.strategy-approach-card p {
  margin: 0.55rem auto 0;
  max-width: 29ch;
  color: #4f565d;
  font-size: clamp(0.95rem, 1.02vw, 1.2rem);
  line-height: 1.45;
}

.strategy-essentials-section {
  margin-top: 4.4rem;
  margin-bottom: 4.4rem;
}

.strategy-essentials-panel {
  background: #f0ecef;
  border-radius: 32px;
  padding: 4.5rem 2.3rem 3.2rem;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.strategy-essentials-panel h2 {
  margin: 0 0 1.65rem;
  color: #111820;
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  line-height: 1.08;
  font-weight: 500;
}

.strategy-essentials-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}

.strategy-essential-item h3 {
  margin: 0 0 0.55rem;
  color: #121b24;
  font-size: clamp(1.05rem, 1.4vw, 1.55rem);
  line-height: 1.2;
  font-weight: 600;
}

.strategy-essential-item {
  padding: 0.65rem 0;
  transition: transform 220ms ease;
}

.strategy-essential-item p {
  margin: 0;
  color: #5b6167;
  font-size: clamp(0.95rem, 1.02vw, 1.15rem);
  line-height: 1.45;
}

.strategy-essentials-note {
  margin: 1.8rem 0 0;
  color: #8f9196;
  font-size: clamp(0.82rem, 0.9vw, 0.98rem);
  line-height: 1.45;
  text-align: center;
}

.strategy-footer-cta {
  margin-top: 1.6rem;
  margin-bottom: 0;
  width: 100%;
}

.strategy-footer-cta-card {
  position: relative;
  min-height: 560px;
  border-radius: 0;
  overflow: hidden;
  background: #1f4448;
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.strategy-footer-cta-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 750ms ease;
}

.strategy-footer-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(95deg, rgba(13, 52, 56, 0.84) 0%, rgba(13, 52, 56, 0.62) 38%, rgba(13, 52, 56, 0.38) 62%, rgba(13, 52, 56, 0.25) 100%);
}

.strategy-footer-cta-content {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 5rem 4rem 3rem;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}

.strategy-footer-cta-content h2 {
  margin: 0;
  color: #f3f8f7;
  font-size: clamp(1.95rem, 3.6vw, 4rem);
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.strategy-footer-cta-content a {
  margin-top: 1.2rem;
  color: #f3f8f7;
  border: 1px solid rgba(243, 248, 247, 0.88);
  border-radius: 999px;
  padding: 0.58rem 1.1rem;
  font-size: 0.96rem;
  line-height: 1;
  font-weight: 300;
  letter-spacing: 0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.strategy-footer-cta-content a span {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 12px;
  font-size: 0;
  line-height: 0;
}

.strategy-footer-cta-content a span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  border-top: 1px solid currentColor;
  transform: translateY(-50%);
}

.strategy-footer-cta-content a span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.strategy-metric:hover,
.strategy-benefit-item:hover,
.strategy-circle-card:hover,
.strategy-approach-card:hover,
.strategy-essential-item:hover {
  transform: translateY(-4px);
}

.strategy-platform-card:hover,
.strategy-platform-card:focus-within {
  transform: translateY(-6px);
  border-color: #fff7f2;
}

.strategy-platform-video-card:hover,
.strategy-platform-video-card:focus-within,
.strategy-footer-cta-card:hover,
.strategy-footer-cta-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(17, 33, 38, 0.16);
}

.strategy-platform-video-card:hover .strategy-platform-video,
.strategy-platform-video-card:focus-within .strategy-platform-video,
.strategy-footer-cta-card:hover img,
.strategy-footer-cta-card:focus-within img {
  transform: scale(1.04);
}

.strategy-pillar-card:hover,
.strategy-pillar-card:focus-within {
  transform: translateY(-8px);
  box-shadow: 0 20px 38px rgba(17, 33, 38, 0.14);
}

.strategy-pillar-card:hover img,
.strategy-pillar-card:focus-within img {
  transform: scale(1.05);
}

.strategy-essentials-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 36px rgba(17, 33, 38, 0.08);
}

.strategy-team-contact-inner a:hover,
.strategy-team-contact-inner a:focus-visible,
.strategy-footer-cta-content a:hover,
.strategy-footer-cta-content a:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(18, 37, 59, 0.14);
}

@media (max-width: 1024px) {
  :root {
    --site-header-offset: 70px;
  }

  .site-header {
    background: rgba(239, 241, 242, 0.96);
    border-bottom: 1px solid #d8dde2;
  }

  .site-header-bar {
    justify-content: space-between;
    gap: 0.8rem;
    width: min(1120px, 92vw);
    margin: 0 auto;
    padding: 1.15rem 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
  }

  .logo {
    color: #101821;
    font-size: clamp(1.4rem, 4.4vw, 2rem);
  }

  .header-actions {
    gap: 1.1rem;
  }

  .header-login,
  .menu-toggle {
    color: #101821;
  }

  .menu-toggle-box {
    gap: 0.38rem;
  }

  .menu-toggle-line {
    width: 24px;
  }

  .mobile-nav-top {
    width: 100%;
    padding: 0 0 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #cbd2d7;
  }

  .mobile-nav-brand {
    color: #ffffff;
    font-size: clamp(1.4rem, 5vw, 1.95rem);
  }

  .mobile-nav-close {
    color: #ffffff;
  }

  .site-nav {
    background: #163f38;
    overflow-y: auto;
  }

  .site-nav-shell {
    width: 100%;
    padding: 1.2rem 1.4rem 2rem;
    background: #163f38;
  }

  .site-nav-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1rem 0 2rem;
  }

  .site-nav-links {
    gap: 0.9rem;
  }

  .nav-link {
    width: 100%;
    display: block;
    font-size: clamp(2.3rem, 8vw, 3.6rem);
    color: rgba(255, 255, 255, 0.96);
    line-height: 1;
    padding: 0 0 0.4rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .nav-link:hover {
    transform: none;
  }

  .nav-link.is-active {
    opacity: 0.72;
  }

  .site-nav-utility {
    margin-top: 1.5rem;
  }

  .site-nav-utility-link {
    font-size: 1rem;
  }

  .site-nav-info {
    padding-top: 0;
    min-height: auto;
  }

  .site-nav-info h2 {
    margin-bottom: 1.2rem;
    font-size: 1.8rem;
  }

  .site-nav-info p {
    font-size: 1rem;
  }

  .site-nav-info-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.2rem;
  }

  .site-nav-copyright {
    margin-top: 1.8rem;
    padding-top: 0;
  }

  body.menu-open {
    overflow: hidden;
  }

  .hero {
    min-height: 610px;
    padding: 3.6rem 0 3rem;
  }

  .offerings-heading,
  .strategy-heading,
  .about-heading,
  .benefits-heading,
  .get-started-title,
  .cta-inner h2 {
    line-height: 1.1;
  }

  .video-home {
    min-height: 560px;
  }

  .video-home-content h1 {
    font-size: clamp(2rem, 4.8vw, 3.4rem);
  }

  .video-home-content p {
    font-size: 1rem;
  }

  .team-copy {
    padding: 1.7rem 1.45rem 1.85rem;
  }

  .team-copy p {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  :root {
    --site-header-offset: 62px;
  }

  .site-header {
    position: fixed;
  }

  .site-header-bar {
    padding: 0.55rem 1rem;
  }

  .logo {
    font-size: clamp(1.2rem, 4.8vw, 1.6rem);
  }

  .header-actions {
    gap: 0.8rem;
  }

  .header-login {
    display: none;
  }

  .menu-toggle {
    gap: 0.45rem;
  }

  .menu-toggle-text {
    font-size: 0.74rem;
  }

  .site-nav-shell {
    padding: 0.95rem 1rem 1.6rem;
  }

  .site-nav-grid {
    gap: 1.5rem;
    padding: 0.75rem 0 1.4rem;
  }

  .nav-link {
    font-size: clamp(2rem, 7vw, 2.9rem);
  }

  .site-nav-info h2 {
    font-size: 1.55rem;
  }

  .hero,
  .section,
  .strategy-section,
  .cta-section {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-grid,
  .cards,
  .benefits-grid,
  .offerings-cards,
  .strategy-cards,
  .get-started-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

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

  .hero p {
    font-size: 0.98rem;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .hero .btn {
    width: 100%;
    text-align: center;
  }

  .hero .btn-primary,
  .hero .btn-ghost {
    padding-inline: 1.2rem;
  }

  .stats-section {
    padding-top: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.2rem;
    padding-bottom: 1.6rem;
  }

  .stats-item {
    padding-inline: 0.5rem;
  }

  .about-top {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .about-heading {
    font-size: clamp(1.7rem, 8vw, 2.5rem);
  }

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

  .video-home {
    min-height: 480px;
    margin-top: 0.8rem;
  }

  .video-home-content h1 {
    font-size: clamp(1.8rem, 7.5vw, 2.8rem);
  }

  .video-home-content p {
    max-width: 32ch;
    font-size: 0.98rem;
  }

  .overlap-slider-section {
    margin-top: -55px;
  }

  .overlap-slides {
    height: clamp(280px, 62vw, 420px);
  }

  .overlap-slide-message {
    font-size: clamp(1.15rem, 4vw, 1.9rem);
    left: 0.95rem;
    right: 0.95rem;
    bottom: 1.2rem;
    max-width: 20ch;
  }

  .slider-controls {
    padding-top: 0.8rem;
    padding-bottom: 0.95rem;
  }

  .slider-arrow {
    width: 44px;
    height: 34px;
    font-size: 1.2rem;
  }

  .team-directory-hero {
    padding: 2.6rem 0 2.1rem;
  }

  .team-directory-hero-inner h1 {
    max-width: 9ch;
  }

  .team-directory-toolbar {
    margin-top: 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.4rem;
  }

  .team-directory-tabs {
    gap: 1.1rem;
  }

  .team-directory-tab {
    font-size: 1.05rem;
  }

  .team-directory-tab.is-active::after {
    bottom: -0.55rem;
  }

  .team-directory-filters {
    width: 100%;
    flex-wrap: wrap;
    border: 0;
    gap: 0.7rem;
  }

  .team-filter-button {
    min-width: 0;
    border: 1px solid #314935;
    padding: 0.8rem 1rem;
  }

  .team-filter-button + .team-filter-button {
    border-left: 1px solid #314935;
  }

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

  .team-directory-grid-advisors {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-profile-main {
    padding-top: 2rem;
    padding-bottom: 3.6rem;
  }

  .team-profile-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .team-profile-image-wrap img {
    min-height: 560px;
  }

  .team-profile-bio p {
    max-width: 100%;
  }

  .contact-hero {
    min-height: auto;
  }

  .contact-hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.4rem 1.4rem 2.8rem;
  }

  .contact-hero-copy {
    padding-top: 0;
  }

  .contact-hero-copy h1 {
    max-width: 8.5ch;
  }

  .contact-form-shell {
    justify-content: stretch;
  }

  .contact-form-card {
    width: 100%;
  }

  .footer-top,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    margin-top: 2.6rem;
    flex-direction: column;
    align-items: flex-start;
  }


  .footer-policy-links {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .strategy-intro-wrap {
    padding: 2.2rem 1.1rem 1.8rem;
  }

  .strategy-first-section,
  .strategy-platform-video-overlap,
  .strategy-pillars-section,
  .strategy-essentials-section {
    width: min(100%, 96vw);
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero-shell,
  .about-page .page-section {
    width: min(100%, 96vw);
    margin-left: auto;
    margin-right: auto;
  }

  .strategy-intro-copy {
    justify-content: flex-start;
  }

  .strategy-intro-copy p {
    max-width: 100%;
    font-size: clamp(1rem, 3.2vw, 1.3rem);
  }

  .strategy-metrics-row {
    margin-top: 2rem;
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .strategy-metric-number {
    font-size: clamp(2.4rem, 11vw, 4.4rem);
  }

  .strategy-metric-label {
    font-size: clamp(0.95rem, 3.2vw, 1.2rem);
  }

  .strategy-benefits-section {
    padding: 2.2rem 0 2.5rem;
  }

  .strategy-benefits-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "title"
      "item1"
      "item2"
      "item3"
      "item4";
    gap: 1.4rem;
  }

  .strategy-benefits-title-wrap h2 {
    max-width: 100%;
    font-size: clamp(1.7rem, 6.8vw, 2.5rem);
  }

  .strategy-benefit-icon {
    width: 64px;
    height: 64px;
  }

  .strategy-benefit-icon img {
    width: 28px;
    height: 28px;
  }

  .strategy-benefit-item h3 {
    font-size: clamp(1.08rem, 4.8vw, 1.45rem);
  }

  .strategy-benefit-item p {
    font-size: 0.98rem;
  }

  .strategy-circles-section {
    padding-top: 2.1rem;
  }

  .strategy-circles-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .strategy-circle {
    width: min(240px, 84vw);
  }

  .strategy-circle-content {
    width: 72%;
  }

  .strategy-circle-content p {
    font-size: 0.8rem;
  }

  .strategy-circle-content strong {
    font-size: clamp(1.7rem, 7vw, 2.2rem);
  }

  .strategy-circle-content span {
    font-size: 0.78rem;
  }

  .strategy-circles-note {
    margin-top: 1.4rem;
    font-size: 0.88rem;
  }

  .strategy-platform-section {
    margin-top: 1rem;
    padding: 2rem 0 5.4rem;
  }

  .strategy-platform-title {
    margin-bottom: 1rem;
    font-size: clamp(1.55rem, 7vw, 2.35rem);
  }

  .strategy-platform-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .strategy-platform-card h3 {
    font-size: clamp(1.06rem, 4.2vw, 1.3rem);
  }

  .strategy-platform-card p {
    font-size: 0.92rem;
    max-width: 100%;
  }

  .strategy-platform-video-overlap {
    margin-top: -3rem;
    margin-bottom: 1.5rem;
  }

  .strategy-platform-video-card {
    min-height: 320px;
    border-radius: 12px;
  }

  .strategy-platform-video-copy {
    left: 1.1rem;
    right: 1.1rem;
    bottom: 1.2rem;
    max-width: 92%;
  }

  .strategy-platform-video-copy h2 {
    font-size: clamp(1.35rem, 7.2vw, 2.15rem);
    line-height: 1.08;
  }

  .strategy-pillars-title {
    margin-bottom: 1rem;
    text-align: left;
    font-size: clamp(1.7rem, 7.2vw, 2.5rem);
  }

  .strategy-pillars-grid {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .strategy-pillar-card {
    min-height: 380px;
    border-radius: 14px;
  }

  .strategy-pillar-copy {
    left: 1rem;
    right: 1rem;
    bottom: 0.95rem;
  }

  .strategy-pillar-copy h3 {
    font-size: clamp(1.25rem, 5.8vw, 1.8rem);
  }

  .strategy-pillar-copy p {
    font-size: 0.94rem;
  }

  .strategy-team-contact {
    margin-top: 1.1rem;
    padding: 2.4rem 0 2.5rem;
  }

  .strategy-team-contact-inner h2 {
    font-size: clamp(1.05rem, 4.4vw, 1.5rem);
    max-width: 24ch;
  }

  .strategy-team-contact-inner p {
    margin-top: 0.8rem;
    font-size: 0.95rem;
    max-width: 34ch;
  }

  .strategy-team-contact-inner a {
    margin-top: 1rem;
    padding: 0.62rem 1.15rem;
    font-size: 0.92rem;
  }

  .strategy-approach-section {
    padding: 2.4rem 0 2.6rem;
  }

  .strategy-approach-inner h2 {
    font-size: clamp(1.35rem, 6.4vw, 2.1rem);
  }

  .strategy-approach-intro {
    margin-top: 0.72rem;
    font-size: 0.93rem;
    max-width: 35ch;
  }

  .strategy-approach-grid {
    margin-top: 1.45rem;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .strategy-essentials-section {
    margin-top: 2.6rem;
    margin-bottom: 2.6rem;
  }

  .strategy-essentials-panel {
    border-radius: 16px;
    padding: 2.3rem 1rem 1.8rem;
  }

  .strategy-essentials-panel h2 {
    margin-bottom: 1rem;
    font-size: clamp(1.45rem, 6.2vw, 2.1rem);
  }

  .strategy-essentials-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .strategy-essential-item h3 {
    font-size: 1.03rem;
  }

  .strategy-essential-item p {
    font-size: 0.92rem;
  }

  .strategy-essentials-note {
    margin-top: 1.2rem;
    font-size: 0.82rem;
    text-align: left;
  }

  .strategy-footer-cta {
    margin-top: 1.1rem;
    margin-bottom: 0;
  }

  .strategy-footer-cta-card {
    min-height: 360px;
    border-radius: 0;
  }

  .strategy-footer-cta-content {
    padding: 2rem 1.1rem 1.2rem;
    max-width: 100%;
  }

  .strategy-footer-cta-content h2 {
    font-size: clamp(1.35rem, 7vw, 2.15rem);
    line-height: 1.08;
  }

  .strategy-footer-cta-content a {
    margin-top: 0.85rem;
    font-size: 0.9rem;
    padding: 0.5rem 0.95rem;
  }

  .page-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .companies-intro-panel {
    min-height: 460px;
  }

  .companies-intro-inner {
    padding: 1.6rem 0;
  }

  .companies-intro-panel h1 {
    max-width: 10.8ch;
    font-size: clamp(2rem, 7.4vw, 3rem);
  }

  .team-directory-hero-inner h1 {
    font-size: clamp(2.4rem, 8vw, 4rem);
  }

  .team-directory-group h2 {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }

  .portfolio-directory-controls {
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 1.7rem;
  }

  .portfolio-directory-head {
    display: none;
  }

  .portfolio-item-toggle {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "name icon"
      "status icon"
      "meta icon";
    row-gap: 0.7rem;
    padding: 1.35rem 0;
  }

  .portfolio-item-name {
    grid-area: name;
    font-size: clamp(1.75rem, 8vw, 2.4rem);
  }

  .portfolio-item-status {
    grid-area: status;
  }

  .portfolio-item-year {
    grid-area: meta;
  }

  .portfolio-item-strategy {
    grid-area: meta;
    justify-self: end;
  }

  .portfolio-item-icon {
    grid-area: icon;
  }

  .portfolio-item-details {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding-bottom: 1.6rem;
  }

  .portfolio-detail-copy p {
    max-width: 100%;
    font-size: 1.1rem;
  }

  .portfolio-detail-meta {
    flex-direction: column;
  }

  .about-belief-panel {
    padding: 2rem 1.3rem 1.8rem;
  }

  .about-belief-grid {
    grid-template-columns: 1fr;
    gap: 1.35rem;
  }

  .about-belief-panel-title {
    margin-bottom: 1.3rem;
  }
}

@media (max-width: 680px) {
  :root {
    --site-header-offset: 54px;
  }

  .site-header-bar {
    gap: 0.55rem;
    padding: 0.45rem 0.85rem;
  }

  .logo {
    width: auto;
    text-align: left;
    font-size: clamp(1.05rem, 6.4vw, 1.35rem);
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    gap: 0;
  }

  .menu-toggle-line {
    width: 20px;
    height: 2px;
    margin: 0;
  }

  .menu-toggle-text {
    display: none;
  }

  .mobile-nav-top {
    padding-bottom: 0.8rem;
    margin-bottom: 0.85rem;
  }

  .site-nav-shell {
    padding: 0.85rem 0.9rem 1.35rem;
  }

  .mobile-nav-brand {
    font-size: 1.2rem;
  }

  .mobile-nav-close {
    gap: 0.65rem;
  }

  .nav-link {
    font-size: clamp(1.75rem, 8.5vw, 2.35rem);
  }

  .site-nav-utility {
    gap: 0.8rem;
  }

  .site-nav-utility-link {
    font-size: 0.88rem;
  }

  .team-directory-hero {
    padding: 2rem 0 1.7rem;
  }

  .team-directory-toolbar {
    gap: 1.2rem;
  }

  .team-directory-tabs {
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .team-directory-tab {
    font-size: 1rem;
  }

  .team-directory-filters {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    border: 1px solid #314935;
  }

  .team-filter-button {
    min-width: 0;
    padding: 0.78rem 0.85rem;
    font-size: 0.92rem;
  }

  .team-filter-button + .team-filter-button {
    border-top: 0;
    border-left: 1px solid #314935;
  }

  .team-directory-section {
    padding-top: 2.4rem;
    padding-bottom: 3rem;
  }

  .team-profile-main {
    padding-top: 1.25rem;
    padding-bottom: 2.8rem;
  }

  .team-profile-image-wrap img {
    min-height: 420px;
  }

  .team-profile-content h1 {
    font-size: clamp(2.3rem, 11vw, 3.2rem);
  }

  .team-profile-meta {
    font-size: 1.08rem;
  }

  .team-profile-divider {
    margin: 2rem 0 1.5rem;
  }

  .team-profile-bio p {
    margin-bottom: 1.35rem;
    font-size: 1rem;
    line-height: 1.6;
  }

  .contact-hero-inner {
    gap: 1.4rem;
    padding: 1.4rem 0.85rem 2rem;
  }

  .contact-hero-copy h1 {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
    max-width: 9ch;
  }

  .contact-form-card {
    border-radius: 18px;
    padding: 1.5rem 1rem 1.25rem;
  }

  .contact-form-card h2 {
    margin-bottom: 1.2rem;
    font-size: 1.9rem;
  }

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

  .contact-form {
    gap: 1rem;
  }

  .contact-form input,
  .contact-form textarea {
    border-radius: 18px;
    padding: 0.92rem 1rem;
    font-size: 0.98rem;
  }

  .contact-form textarea {
    min-height: 150px;
  }

  .contact-submit {
    margin-top: 0.4rem;
    border-radius: 16px;
  }

  .team-directory-group + .team-directory-group {
    margin-top: 3rem;
  }

  .team-directory-grid,
  .team-directory-grid-advisors {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .team-photo-wrap {
    aspect-ratio: 16 / 8.8;
  }

  .team-copy {
    padding: 1.4rem 1.1rem 1.55rem;
  }

  .team-copy p {
    font-size: 1rem;
  }

  .team-actions {
    gap: 1rem;
    margin-top: 1.1rem;
  }

  .team-member-card h3 {
    font-size: 1.05rem;
  }

  .team-member-card p {
    font-size: 0.92rem;
  }

  .hero {
    margin-top: 0;
    border-radius: 18px;
    width: calc(100vw - 0.8rem);
    min-height: 540px;
    padding: 3rem 0.9rem;
  }

  .hero .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    width: 100%;
  }

  .hero h1,
  .video-home-content h1,
  .strategy-heading,
  .get-started-title,
  .cta-inner h2,
  .about-heading,
  .benefits-heading,
  .offerings-heading,
  .team-copy h2 {
    line-height: 1.08;
  }

  .hero h1,
  .video-home-content h1,
  .strategy-heading,
  .get-started-title,
  .cta-inner h2,
  .about-heading,
  .benefits-heading,
  .offerings-heading,
  .team-copy h2 {
    font-weight: 400;
  }

  .stats-card-standalone {
    border-radius: 16px;
  }

  .stats-brand,
  .benefit-body h3,
  .about-card h3,
  .strategy-body h3,
  .offering-content h3,
  .get-started-card h3,
  .team-copy h2 {
    white-space: normal;
  }

  .overlap-slider {
    border-radius: 12px;
  }

  .footer-bottom {
    font-size: 0.84rem;
    margin-top: 2.2rem;
  }

  .footer-policy-links {
    gap: 0.6rem;
  }

  .footer-policy-links a {
    line-height: 1.4;
  }

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

  .terms-meta-card {
    position: static;
  }

  .strategy-platform-video-card {
    min-height: 280px;
    border-radius: 10px;
  }

  .strategy-platform-video-copy h2 {
    font-size: clamp(1.15rem, 7vw, 1.7rem);
  }

  .strategy-pillars-title {
    text-align: center;
  }

  .strategy-footer-cta-card {
    min-height: 300px;
  }

  .strategy-footer-cta-content {
    padding: 1.6rem 0.9rem 1rem;
  }

  .strategy-footer-cta-content h2 {
    max-width: 12ch;
    font-size: clamp(1.18rem, 7.8vw, 1.65rem);
  }

  .about-hero-shell,
  .about-page .page-section {
    width: min(100%, 97vw);
  }

  .about-page-hero,
  .about-team-banner {
    border-radius: 14px;
  }
}

@media (max-width: 420px) {
  :root {
    --site-header-offset: 50px;
  }

  .site-header-bar {
    gap: 0.4rem;
    padding: 0.38rem 0.7rem;
  }

  .logo {
    font-size: 1rem;
  }

  .mobile-nav-brand {
    font-size: 1.05rem;
  }

  .nav-close-text {
    font-size: 0.75rem;
  }

  .hero {
    width: calc(100vw - 0.4rem);
    min-height: 500px;
  }

  .hero h1 {
    font-size: clamp(1.85rem, 9.3vw, 2.35rem);
  }

  .hero p {
    font-size: 0.94rem;
  }

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

  .video-home {
    min-height: 430px;
  }

  .video-home-content p {
    font-size: 0.93rem;
  }

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

  .overlap-slides {
    height: 250px;
  }

  .overlap-slide-message {
    font-size: 1.1rem;
    line-height: 1.2;
    bottom: 1rem;
  }

  .site-footer {
    margin-top: 0;
  }

  .page-hero {
    border-radius: 16px;
    padding: 2.4rem 1.1rem 2.2rem;
  }

  .about-page-hero {
    min-height: 560px;
    border-radius: 28px;
    padding: 2rem 1.2rem;
  }

  .about-hero-content {
    margin-left: 0;
  }

  .about-hero-title {
    font-size: clamp(2rem, 8vw, 3.1rem);
    max-width: 15ch;
  }

  .about-hero-subtitle {
    font-size: 1rem;
    max-width: 32ch;
    margin-top: 1rem;
  }

  .about-belief-kicker {
    font-size: 0.72rem;
  }

  .about-belief-title {
    font-size: clamp(1.55rem, 7.2vw, 2.2rem);
  }

  .about-belief-copy {
    font-size: 1rem;
  }

  .about-belief-item h4 {
    font-size: 1.3rem;
  }

  .about-team-banner {
    min-height: 430px;
    border-radius: 16px;
  }

  .about-team-banner-content {
    padding: 1.4rem 1.15rem 1.3rem;
  }

  .about-team-banner-content h2 {
    font-size: clamp(1.7rem, 7.2vw, 2.6rem);
    max-width: 14ch;
  }

  .about-team-banner-btn {
    font-size: 0.95rem;
    padding: 0.65rem 1rem;
  }

  .about-values-title {
    max-width: 100%;
    margin-top: 1rem;
    line-height: 1.18;
  }

  .about-values-core {
    margin-top: 1.9rem;
  }

  .about-values-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .about-values-card {
    border-radius: 18px;
  }

  .about-values-card-main {
    min-height: 112px;
    font-size: clamp(1.25rem, 5vw, 1.6rem);
    padding: 1rem;
  }

  .about-values-card-sub {
    font-size: 0.92rem;
    padding: 0.7rem 1rem 0.8rem;
  }

  .about-bottom-cta {
    padding: 2.6rem 1rem;
  }

  .about-process-top {
    grid-template-columns: 1fr;
    gap: 0.8rem;
    margin-bottom: 0.9rem;
  }

  .about-page .page-section {
    padding-top: 2.1rem;
  }

  .about-process-top h2 {
    max-width: 100%;
    font-size: clamp(1.6rem, 7vw, 2.5rem);
  }

  .about-process-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .about-process-card {
    border-radius: 16px;
    padding: 1rem;
  }

  .about-process-card h3 {
    font-size: 1.5rem;
  }

  .about-process-card p {
    font-size: 0.95rem;
  }

  .about-bottom-cta h2 {
    font-size: clamp(1.45rem, 6vw, 2rem);
  }

  .about-bottom-cta p {
    font-size: 0.92rem;
  }

  .about-bottom-cta-btn {
    margin-top: 1rem;
    font-size: 0.9rem;
    padding: 0.56rem 1.2rem;
  }

  .about-belief-item p {
    font-size: 0.98rem;
  }

  .inner-page-main {
    padding-top: 1.2rem;
  }
}
