:root {
  --brand: #36a9e0;
  --brand-deep: #1b7fb5;
  --navy: #0a2a46;
  --navy-deep: #07223a;
  --ink: #15233b;
  --warm: #f4a62a;
  --warm-soft: #f8c777;
  --cloud: #eef4fa;
  --paper: #ffffff;
  --slate: #33415c;
  --slate-mute: #5e6e8c;
  --line: rgba(10, 42, 74, 0.12);
  --on-dark: #e8f1fa;
  --on-dark-mute: #9fb6d0;
  --line-dark: rgba(255, 255, 255, 0.14);
  --maxw: 1200px;
  --r: 16px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  color: var(--slate);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 700;
}
a {
  color: inherit;
  text-decoration: none;
}
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.eyebrow {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--brand);
}
.eyebrow.on-dark {
  color: var(--on-dark);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15.5px;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    background 0.25s,
    box-shadow 0.25s,
    color 0.25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand);
  color: var(--navy-deep);
  box-shadow: 0 10px 26px -12px rgba(54, 169, 224, 0.9);
}
.btn-primary:hover {
  transform: translateY(-2px);
}
.btn-ghost {
  border-color: var(--line-dark);
  color: var(--on-dark);
}
.btn-ghost:hover {
  border-color: var(--brand);
  color: #fff;
  transform: translateY(-2px);
}
.btn-light {
  background: #fff;
  color: #0a2a46;
}
.btn-light:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -14px rgba(0, 0, 0, 0.5);
}
.btn-navy {
  background: var(--navy-deep);
  color: #fff;
}
.btn-navy:hover {
  transform: translateY(-2px);
  background: var(--navy);
}
.btn-warm {
  background: var(--warm);
  color: var(--navy-deep);
}
.btn-warm:hover {
  transform: translateY(-2px);
}
.btn .arw {
  transition: transform 0.25s var(--ease);
}
.btn:hover .arw {
  transform: translateX(4px);
}
.dlink {
  font-weight: 600;
  font-size: 15px;
  color: var(--brand-deep);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.dlink .arw {
  transition: transform 0.25s var(--ease);
}
.dlink:hover .arw {
  transform: translateX(4px);
}
.rise {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}
.rise.in {
  opacity: 1;
  transform: none;
}
.rise.d1 {
  transition-delay: 0.08s;
}
.rise.d2 {
  transition-delay: 0.16s;
}
.rise.d3 {
  transition-delay: 0.24s;
}
.rise.d4 {
  transition-delay: 0.32s;
}

/* HEADER + MEGA MENU */
header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 18px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  flex: none;
}
.brand .mk {
  height: 50px;
  width: auto;
  display: block;
}
.brand .wm {
  height: 18px;
  width: auto;
  display: block;
}
.brand .slk {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-deep);
  padding-left: 11px;
  border-left: 1px solid var(--line);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  height: 100%;
}
.nav-links > a:not(.btn),
.nav-dd-btn {
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  font-family: inherit;
}
.nav-links > a:not(.btn):hover {
  color: var(--brand-deep);
}
.nav-mega {
  height: 100%;
  display: flex;
  align-items: center;
  position: static;
}
.nav-dd-btn {
  background: none;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 100%;
}
.nav-dd-btn:hover {
  color: var(--brand-deep);
}
.nav-dd-btn .cev {
  font-size: 10px;
  transition: transform 0.25s var(--ease);
}
.nav-mega:hover .nav-dd-btn .cev,
.nav-mega.open .nav-dd-btn .cev {
  transform: rotate(180deg);
}
.mega {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 30px 50px -24px rgba(10, 42, 74, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition:
    opacity 0.2s var(--ease),
    transform 0.2s var(--ease),
    visibility 0.2s;
  z-index: 70;
}
.nav-mega:hover .mega,
.nav-mega.open .mega {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.mega-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 32px 24px 38px;
  display: grid;
  gap: 40px;
}
.mega-inner.c2 {
  grid-template-columns: 1fr 1.5fr;
}
.mega-inner.c3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.mega-inner.c1 {
  grid-template-columns: 1fr;
  max-width: 320px;
  margin-left: 24px;
}
.mega-col h4 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-deep);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.mega-col a {
  display: block;
  font-size: 14.5px;
  color: var(--slate);
  padding: 7px 0;
  transition: color 0.18s;
}
.mega-col a:hover {
  color: var(--brand-deep);
}
.mega-col.svc-list {
  columns: 2;
  column-gap: 34px;
}
.mega-col.svc-list a {
  break-inside: avoid;
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.3s;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: #08102b;
  color: #fff;
  min-height: clamp(600px, 72vh, 780px);
  display: flex;
  align-items: center;
  padding: 92px 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("/images/hero-background-1.jpg");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    95deg,
    rgba(8, 16, 43, 0.96) 0%,
    rgba(8, 16, 43, 0.86) 26%,
    rgba(8, 16, 43, 0.35) 50%,
    rgba(8, 16, 43, 0) 66%
  );
}
.hero .wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-copy {
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--warm);
}
.hero h1 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(2.3rem, 4.8vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin-bottom: 24px;
}
.hero h1 .hl {
  color: var(--brand);
}
.pillars {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 82px;
  text-align: center;
}
.pillar svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pillar span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
}
.hero .hsub {
  font-size: clamp(1.02rem, 1.6vw, 1.16rem);
  color: var(--on-dark-mute);
  max-width: 60ch;
  margin-bottom: 30px;
}
.hero .hsub b {
  color: #fff;
  font-weight: 600;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-kicker {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
}
.hero-kicker .k {
  color: #fff;
}
.hero-kicker .onefuture {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  letter-spacing: -0.01em;
  text-transform: none;
  color: #8cd2f7;
  margin-top: 4px;
  line-height: 1.05;
}

/* SECTIONS */
.section {
  padding: 100px 0;
}
.section-head {
  max-width: 820px;
  margin-bottom: 50px;
}
.section-head h2 {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  margin: 16px 0 16px;
}
.section-head p {
  color: var(--slate-mute);
  font-size: 1.08rem;
}
.cloud {
  background: var(--cloud);
}

/* WHO WE ARE */
.wwa-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 46px;
  align-items: start;
}
.wwa-text p {
  margin-bottom: 16px;
  color: var(--slate);
}
.wwa-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.wwa-media {
  position: sticky;
  top: 100px;
}

/* placeholders */
.ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: #fff;
  border: 1.5px dashed rgba(10, 42, 74, 0.28);
  border-radius: 14px;
  color: var(--slate-mute);
  text-align: center;
  padding: 26px 20px;
  min-height: 260px;
  height: 100%;
}
.ph svg {
  width: 28px;
  height: 28px;
  stroke: var(--slate-mute);
  fill: none;
  stroke-width: 1.5;
  opacity: 0.75;
}
.ph span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  max-width: 30ch;
}
.cloud .ph {
  background: var(--cloud);
}

/* WHO WE SERVE (sectors) */
.sectors {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.sector {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 30px 26px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s;
  display: flex;
  flex-direction: column;
}
.sector:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 50px -28px rgba(10, 42, 74, 0.4);
  border-color: transparent;
}
.sector .accent {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background: var(--brand);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.3s var(--ease);
}
.sector:hover .accent {
  transform: scaleY(1);
}
.card-ill {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(
    140deg,
    rgba(54, 169, 224, 0.16),
    rgba(54, 169, 224, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.card-ill svg {
  width: 28px;
  height: 28px;
  stroke: var(--brand-deep);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.sector .cnum {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate-mute);
}
.sector#s-gov {
  border-color: rgba(244, 166, 42, 0.5);
}
.sector#s-gov .cnum {
  color: var(--warm);
}
.sector h3 {
  font-size: 1.28rem;
  margin: 8px 0 10px;
}
.sector p {
  color: var(--slate-mute);
  font-size: 0.96rem;
  margin-bottom: 16px;
  flex: 1;
}
.sector-cta {
  background: var(--navy);
  border-color: transparent;
  justify-content: center;
  gap: 6px;
}
.sector-cta h3 {
  color: #fff;
  margin-top: 0;
}
.sector-cta p {
  color: var(--on-dark-mute);
}

/* 2030 vision */
.vision {
  background: var(--cloud);
}
.src-note {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.02em;
  color: var(--slate-mute);
  margin-top: 16px;
}
.src-note a {
  color: var(--brand-deep);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 0 0 46px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat .num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  color: var(--brand-deep);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat .lab {
  font-size: 0.88rem;
  color: var(--slate-mute);
  margin-top: 9px;
  max-width: 22ch;
}
.vrole {
  background: var(--navy);
  border-radius: 20px;
  padding: 44px;
  color: var(--on-dark);
  position: relative;
  overflow: hidden;
}
.vrole::after {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(54, 169, 224, 0.3), transparent 70%);
}
.vrole .eyebrow {
  color: var(--on-dark);
  position: relative;
  z-index: 2;
}
.vrole h3 {
  color: #fff;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 16px 0 14px;
  max-width: 24ch;
  position: relative;
  z-index: 2;
}
.vrole p {
  color: var(--on-dark-mute);
  font-size: 1.05rem;
  max-width: 62ch;
  position: relative;
  z-index: 2;
}
.vrole-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  position: relative;
  z-index: 2;
}
.vrole-chip {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 100px;
  padding: 8px 16px;
}

/* MuniLogic CE+ (tailor) */
.munilogic {
  background: var(--paper);
}
.ml-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 44px;
  align-items: center;
}
.tailor {
  background: linear-gradient(
    120deg,
    rgba(54, 169, 224, 0.11),
    rgba(54, 169, 224, 0.03)
  );
  border: 1px solid rgba(54, 169, 224, 0.28);
  border-radius: 18px;
  padding: 40px;
}
.tailor-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-deep);
  font-weight: 500;
  margin-bottom: 14px;
}
.tailor-tag::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--brand);
}
.tailor h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin-bottom: 12px;
  max-width: 26ch;
}
.tailor p {
  color: var(--slate-mute);
  font-size: 1.02rem;
  margin-bottom: 22px;
}

/* FAMILY (journey) */
.journey {
  background: var(--navy-deep);
  color: var(--on-dark);
}
.journey .section-head h2 {
  color: #fff;
}
.journey .section-head p {
  color: var(--on-dark-mute);
}
.journey .eyebrow {
  color: var(--on-dark);
}
.family {
  position: relative;
  max-width: 900px;
  margin: 6px auto 0;
  height: 520px;
}
.family-links {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.family-links line {
  stroke: var(--line-dark);
  stroke-width: 0.4;
  stroke-dasharray: 2 2;
}
.fhub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(54, 169, 224, 0.24),
    rgba(7, 34, 58, 0.92)
  );
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 22px;
}
.fhub img {
  height: 32px;
  margin-bottom: 8px;
}
.fhub span {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.15rem;
}
.fhub small {
  color: var(--on-dark-mute);
  font-size: 9.5px;
  margin-top: 7px;
  line-height: 1.35;
  max-width: 15ch;
}
.fnode {
  position: absolute;
  z-index: 2;
  width: 250px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  border-radius: 16px;
  padding: 20px 22px;
}
.fnode .flag {
  font-size: 1.7rem;
  line-height: 1;
}
.fnode h3 {
  color: #fff;
  font-size: 1.08rem;
  margin: 8px 0 3px;
}
.fnode .fyr {
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.05em;
  color: var(--brand);
  display: block;
  margin-bottom: 8px;
}
.fnode p {
  color: var(--on-dark-mute);
  font-size: 0.86rem;
}
.fnode.ca {
  top: 0;
  left: 0;
}
.fnode.us {
  top: 0;
  right: 0;
}
.fnode.lk {
  bottom: 0;
  left: 0;
}
.fnode.ici {
  bottom: 0;
  right: 0;
  border-color: rgba(244, 166, 42, 0.45);
  background: linear-gradient(
    160deg,
    rgba(244, 166, 42, 0.1),
    rgba(255, 255, 255, 0.04)
  );
}
.fnode.ici .fyr {
  color: var(--warm-soft);
}

/* CONTACT */
.cta-band {
  background: var(--brand);
  color: var(--navy-deep);
  padding: 76px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-inner h2 {
  color: var(--navy-deep);
  font-size: clamp(1.9rem, 3.4vw, 2.8rem);
  max-width: 18ch;
}
.cta-inner p {
  color: rgba(7, 34, 58, 0.78);
  margin-top: 12px;
  max-width: 46ch;
}
.cta-methods {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin-top: 22px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  color: var(--navy-deep);
}
.cta-methods b {
  opacity: 0.55;
  font-weight: 500;
  margin-right: 7px;
}

/* FOOTER */
footer {
  background: var(--navy-deep);
  color: var(--on-dark-mute);
  padding: 70px 0 32px;
  border-top: 1px solid var(--line-dark);
}
.fgrid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 38px;
  margin-bottom: 44px;
}
.fbrand .fb-lock {
  display: flex;
  align-items: center;
  gap: 11px;
}
.fbrand .mk {
  height: 50px;
}
.fbrand .fname {
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  font-size: 19px;
}
.fbrand .fname span {
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: 3px;
  font-weight: 400;
}
.fbrand p {
  margin-top: 16px;
  font-size: 0.94rem;
  max-width: 34ch;
}
.fcol h4 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
  font-weight: 500;
}
.fcol a,
.fcol span {
  display: block;
  font-size: 0.93rem;
  margin-bottom: 10px;
  color: var(--on-dark-mute);
  transition: color 0.2s;
}
.fcol a:hover {
  color: #fff;
}
.fbar {
  border-top: 1px solid var(--line-dark);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.85rem;
}
.fbar .mission {
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.04em;
  color: var(--brand);
}

/* COMMUNITY IMPACT (ICI) */
.community-sec {
  background: #fff;
}
.ici-card {
  background: var(--navy);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
}
.ici-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--warm), var(--warm-soft));
  z-index: 3;
}
.ici-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -80px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(244, 166, 42, 0.22),
    transparent 70%
  );
  pointer-events: none;
}
.ici-left {
  padding: 50px 46px;
  position: relative;
  z-index: 2;
}
.ici-left .eyebrow {
  color: var(--on-dark);
}
.ici-left h2 {
  color: #fff;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  margin: 16px 0 16px;
  max-width: 16ch;
}
.ici-left p {
  color: var(--on-dark-mute);
  font-size: 1.04rem;
  margin-bottom: 28px;
  max-width: 44ch;
}
.ici-right {
  background: rgba(255, 255, 255, 0.04);
  border-left: 1px solid var(--line-dark);
  padding: 48px 42px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.fact {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.fact .fk {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-soft);
  width: 86px;
  flex: none;
  padding-top: 3px;
}
.fact .fv {
  color: var(--on-dark);
  font-size: 0.97rem;
}
.fact .fv b {
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
}
.eyebrow.warm::before {
  background: var(--warm);
}

/* PROVEN TRACK RECORD */
.credibility {
  background: var(--cloud);
}
.proof-panel {
  background: var(--navy);
  border-radius: 22px;
  padding: 42px 46px;
  display: grid;
  grid-template-columns: 3fr 1.15fr;
  gap: 38px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.proof-panel::after {
  content: "";
  position: absolute;
  left: -60px;
  bottom: -90px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(54, 169, 224, 0.26),
    transparent 70%
  );
  pointer-events: none;
}
.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  position: relative;
  z-index: 2;
}
.pstat .num {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: #fff;
  line-height: 1;
  letter-spacing: -0.02em;
}
.pstat .lab {
  font-size: 0.85rem;
  color: var(--on-dark-mute);
  margin-top: 9px;
  line-height: 1.35;
}
.proof-award {
  border-left: 1px solid var(--line-dark);
  padding-left: 34px;
  position: relative;
  z-index: 2;
}
.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--warm);
  padding: 7px 15px;
  border-radius: 100px;
  font-weight: 500;
}
.proof-award p {
  color: var(--on-dark-mute);
  font-size: 0.9rem;
  margin-top: 14px;
}

/* 2030 FOUR PILLARS */
.vision {
  background: #fff;
}
.np-label {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.np-label::before {
  content: "";
  width: 26px;
  height: 1.5px;
  background: var(--brand);
}
.npillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 50px;
}
.np {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 26px 24px;
  background: var(--cloud);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.np:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -26px rgba(10, 42, 74, 0.35);
}
.np .npn {
  font-family: "IBM Plex Mono", monospace;
  font-size: 13px;
  color: var(--brand-deep);
  letter-spacing: 0.1em;
  font-weight: 500;
}
.np h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  color: var(--ink);
  font-size: 1.08rem;
  margin: 10px 0 10px;
  line-height: 1.16;
}
.np p {
  font-size: 0.9rem;
  color: var(--slate-mute);
}
.munilogic {
  background: var(--cloud);
}

/* DESIGN POLISH */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 100;
  background: linear-gradient(
    90deg,
    var(--brand),
    var(--brand-deep) 55%,
    var(--warm)
  );
}
.sector:hover .card-ill {
  background: linear-gradient(
    140deg,
    rgba(54, 169, 224, 0.3),
    rgba(54, 169, 224, 0.1)
  );
}
.sector {
  box-shadow: 0 1px 2px rgba(10, 42, 74, 0.04);
}
.journey {
  position: relative;
}
.journey::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px
  );
  background-size: 30px 30px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 8%, transparent 68%);
}
.journey .wrap {
  position: relative;
  z-index: 1;
}
.section-head h2 {
  max-width: 26ch;
}
.journey .section-head h2,
.ici-left h2 {
  max-width: none;
}

@media (max-width: 980px) {
  .menu-btn {
    display: block;
  }
  .nav-links {
    position: fixed;
    inset: 74px 0 auto 0;
    height: auto;
    max-height: calc(100vh - 74px);
    overflow-y: auto;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 16px 24px 28px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-140%);
    transition: transform 0.35s var(--ease);
    box-shadow: 0 20px 30px -20px rgba(10, 42, 74, 0.4);
  }
  .nav-links.open {
    transform: translateY(0);
  }
  .nav-links > a:not(.btn) {
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }
  .nav-mega {
    display: block;
    height: auto;
  }
  .nav-dd-btn {
    width: 100%;
    justify-content: space-between;
    height: auto;
    padding: 12px 0;
    font-size: 16px;
    border-bottom: 1px solid var(--line);
  }
  .mega {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    background: transparent;
  }
  .mega-inner {
    grid-template-columns: 1fr !important;
    gap: 14px;
    padding: 8px 0 12px;
    max-width: none;
    margin: 0;
  }
  .mega-col.svc-list {
    columns: 1;
  }
  .mega-col a {
    padding: 6px 0 6px 12px;
    font-size: 14px;
  }
  .nav-links .btn {
    margin-top: 12px;
    justify-content: center;
  }
  .wwa-grid,
  .ml-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .wwa-media {
    position: static;
  }
  .sectors {
    grid-template-columns: 1fr 1fr;
  }
  .npillars {
    grid-template-columns: repeat(2, 1fr);
  }
  .ici-card {
    grid-template-columns: 1fr;
  }
  .ici-right {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }
  .proof-panel {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .proof-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .proof-award {
    border-left: 0;
    border-top: 1px solid var(--line-dark);
    padding-left: 0;
    padding-top: 22px;
  }
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .family {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    max-width: 400px;
  }
  .family-links {
    display: none;
  }
  .fhub,
  .fnode {
    position: static;
    transform: none;
  }
  .fnode {
    width: 100%;
    max-width: 360px;
  }
  .fgrid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .section {
    padding: 72px 0;
  }
  .hero {
    padding: 64px 0;
  }
  .sectors {
    grid-template-columns: 1fr;
  }
  .npillars {
    grid-template-columns: 1fr;
  }
  .ici-left,
  .ici-right {
    padding: 34px 26px;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .fgrid {
    grid-template-columns: 1fr;
  }
  .brand .slk {
    display: none;
  }
  .pillars {
    gap: 18px;
  }
  .pillar {
    width: 74px;
  }
}

/* CENTERED CONTENT + LIGHTER PALETTE (landing) */
.section-head {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head h2 {
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}
.section-head p {
  margin-left: auto;
  margin-right: auto;
  max-width: 64ch;
}
.np-label {
  justify-content: flex-start;
}
.np {
  text-align: left;
}
.sector {
  text-align: left;
  align-items: flex-start;
}
.sector .card-ill {
  margin-left: 0;
  margin-right: 0;
}
.sector .dlink {
  justify-content: flex-start;
}
.src-note {
  text-align: center;
  margin: 2px auto 46px;
}

/* WHO WE ARE (text block) */
.wwa {
  max-width: 820px;
  margin: 0 auto;
  text-align: left;
}
.wwa p {
  margin-bottom: 15px;
  color: var(--slate);
  font-size: 1.04rem;
}
.wwa .wwa-em {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  color: var(--brand-deep);
  font-size: 1.22rem;
  margin: 8px 0 16px;
}
.wwa .wwa-sub {
  font-size: clamp(1.4rem, 2.4vw, 1.7rem);
  color: var(--ink);
  margin: 38px 0 18px;
}
.wwa-banner {
  max-width: 920px;
  margin: 34px auto;
}
.wwa-banner .ph {
  min-height: 300px;
}
.wwa-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: 28px;
}

/* team image + two-column feature sections */
.team-wide {
  max-width: 1080px;
  margin: 0 auto;
}
.team-wide img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 26px 55px -36px rgba(10, 42, 74, 0.5);
}
.feat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  align-items: center;
  max-width: 1120px;
  margin: 0 auto;
}
.feat-grid.rev .feat-media {
  order: -1;
}
.feat-text {
  text-align: left;
}
.feat-text .eyebrow {
  margin-bottom: 2px;
}
.feat-text h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--navy);
  margin: 14px 0 16px;
  max-width: 20ch;
}
.feat-text p {
  color: var(--slate);
  margin-bottom: 14px;
}
.feat-text .feat-em {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  color: var(--brand-deep);
  font-size: 1.2rem;
  margin: 6px 0 14px;
}
.feat-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.feat-media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 24px 50px -34px rgba(10, 42, 74, 0.45);
}
.feat-media .ph {
  min-height: 360px;
}

/* WHERE INVORG FITS — lightened */
.vrole {
  background: linear-gradient(135deg, #eaf4fc, #f5fafe);
  border: 1px solid rgba(54, 169, 224, 0.28);
  color: var(--ink);
  text-align: center;
}
.vrole::after {
  background: radial-gradient(
    circle,
    rgba(54, 169, 224, 0.14),
    transparent 70%
  );
}
.vrole .eyebrow {
  color: var(--brand-deep);
  justify-content: center;
}
.vrole h3 {
  color: var(--ink);
  margin-left: auto;
  margin-right: auto;
}
.vrole p {
  color: var(--slate);
  margin-left: auto;
  margin-right: auto;
}
.vrole-chips {
  justify-content: center;
}
.vrole-chip {
  color: var(--brand-deep);
  border-color: rgba(54, 169, 224, 0.4);
}

/* PROVEN TRACK RECORD — lightened panel */
.proof-panel {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 22px 50px -30px rgba(10, 42, 74, 0.3);
}
.proof-panel::after {
  background: radial-gradient(
    circle,
    rgba(54, 169, 224, 0.12),
    transparent 70%
  );
}
.pstat .num {
  color: var(--brand-deep);
}
.pstat .lab {
  color: var(--slate-mute);
}
.proof-award {
  border-left: 1px solid var(--line);
}
.proof-award p {
  color: var(--slate-mute);
}

/* MUNILOGIC — centered */
.tailor {
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}
.tailor-tag {
  justify-content: center;
}
.tailor h3 {
  margin-left: auto;
  margin-right: auto;
}
.tailor p {
  margin-left: auto;
  margin-right: auto;
}
.tailor .dlink {
  justify-content: center;
}
.ml-media {
  max-width: 920px;
  margin: 34px auto 0;
}
.ml-media .ph {
  min-height: 300px;
}

/* CONTACT — lightened */
.cta-band {
  background: linear-gradient(135deg, #e9f3fc, #d7eaf8);
}
.cta-inner {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
}
.cta-lead {
  max-width: 640px;
}
.cta-inner h2 {
  margin-left: auto;
  margin-right: auto;
}
.cta-inner p {
  margin-left: auto;
  margin-right: auto;
}
.cta-methods {
  justify-content: center;
}

@media (max-width: 980px) {
  .feat-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .feat-grid.rev .feat-media {
    order: 0;
  }
  .feat-text h2 {
    max-width: none;
  }
  .feat-media .ph {
    min-height: 280px;
  }
}

/* ============================================
     PAGE-SPECIFIC STYLES (from template conversion)
     ============================================ */

/* --- Content pages: shared section heading --- */
.shead {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}
.shead .eyebrow {
  justify-content: center;
}
.shead h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  color: var(--navy);
  margin: 14px auto 14px;
  max-width: 22ch;
}
.shead p {
  color: var(--slate-mute);
  font-size: 1.08rem;
  max-width: 60ch;
  margin: 0 auto;
}

/* --- Content pages: CTA band --- */
.jcta {
  background: linear-gradient(135deg, #e9f3fc, #d7eaf8);
  padding: 76px 0;
  text-align: center;
}
.jcta h2 {
  color: var(--navy-deep);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  max-width: 22ch;
  margin: 0 auto 14px;
}
.jcta p {
  color: rgba(7, 34, 58, 0.78);
  max-width: 52ch;
  margin: 0 auto 26px;
}
.jcta .row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.jcta .fine {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: rgba(7, 34, 58, 0.6);
  margin-top: 18px;
  letter-spacing: 0.02em;
}

/* --- WHO WE ARE hero --- */
.whero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(158deg, #07223a, #0a2a46 55%, #0e3f63);
  color: #fff;
  padding: 96px 0 92px;
}
.whero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.14) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: radial-gradient(120% 90% at 80% 0%, #000 12%, transparent 70%);
}
.whero .wrap {
  position: relative;
  z-index: 2;
}
.whero .eyebrow {
  color: var(--on-dark);
}
.whero h1 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  letter-spacing: -0.03em;
  margin: 18px auto 18px;
  max-width: 16ch;
}
.whero h1 .hl {
  color: var(--brand);
}
.whero p {
  color: var(--on-dark-mute);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  max-width: 60ch;
  margin: 0 auto;
}

/* --- WHO WE ARE story --- */
.story p {
  margin-bottom: 14px;
  color: var(--slate);
}
.story .lead {
  font-size: 1.15rem;
  color: var(--navy);
  font-weight: 500;
  margin-bottom: 16px;
}

/* --- WHO WE ARE vision/mission/values --- */
.vm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 820px;
  margin: 0 auto;
}
.vmcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.vmcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -18px rgba(10, 42, 74, 0.35);
}
.vmcard .ico {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}
.vmcard .ico svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--brand);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.vmcard h3 {
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.vmcard p {
  font-size: 0.98rem;
  color: var(--slate-mute);
}
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.val {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  text-align: center;
}
.val h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 5px;
}
.val p {
  font-size: 0.9rem;
  color: var(--slate-mute);
}
.val .vk {
  display: inline-block;
  width: 34px;
  height: 3px;
  border-radius: 3px;
  background: var(--brand);
  margin-bottom: 12px;
}

/* --- WHO WE ARE pledge --- */
.pledge {
  position: relative;
  overflow: hidden;
  background: linear-gradient(150deg, #07223a, #0a2a46 55%, #0e3f63);
  color: #fff;
  text-align: center;
}
.pledge::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    50% 60% at 50% 0%,
    rgba(54, 169, 224, 0.22),
    transparent 65%
  );
}
.pledge .wrap {
  position: relative;
  z-index: 2;
}
.pledge-badge {
  display: inline-block;
  background: #fff;
  color: var(--brand-deep);
  font-family: "IBM Plex Mono", monospace;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 8px;
  margin-bottom: 32px;
}
.pledge p {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.62;
  color: #eaf0fa;
  max-width: 980px;
  margin: 0 auto;
}
.pledge p .hl {
  color: var(--brand);
  font-weight: 600;
}

/* --- WHO WE ARE what sets apart --- */
.apart {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ac {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 0 28px 28px;
  overflow: hidden;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.ac:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 50px -30px rgba(10, 42, 74, 0.4);
}
.ac .bar {
  height: 5px;
  margin: 0 -28px 22px;
  background: var(--brand);
}
.ac .ico {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}
.ac .ico svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ac h3 {
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: 9px;
}
.ac p {
  font-size: 0.94rem;
  color: var(--slate-mute);
}
.ac .award-tag {
  display: inline-block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--warm);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  font-weight: 500;
}

/* --- WHO WE ARE E6 approach --- */
.e6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.estep {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px 24px;
  position: relative;
}
.estep .en {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--brand);
  letter-spacing: 0.1em;
  font-weight: 500;
}
.estep h4 {
  font-size: 1.15rem;
  color: var(--navy);
  margin: 8px 0 8px;
}
.estep p {
  font-size: 0.92rem;
  color: var(--slate-mute);
}
.e6-tag {
  text-align: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: var(--brand-deep);
  margin-top: 26px;
}

/* --- WHO WE ARE one team --- */
.oneteam {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(135deg, #eaf4fc, #f5fafe);
  border: 1px solid rgba(54, 169, 224, 0.28);
  border-radius: 22px;
  padding: 48px 44px;
}
.oneteam .big {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  color: var(--navy);
  margin-bottom: 14px;
}
.oneteam p {
  color: var(--slate);
  max-width: 60ch;
  margin: 0 auto 10px;
}
.leaders {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 26px;
}
.leaders .lp {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 1px dashed rgba(10, 42, 74, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8.5px;
  color: var(--slate-mute);
}

/* --- WHO WE ARE diagram frame --- */
.diagram-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 26px 55px -36px rgba(10, 42, 74, 0.45);
  margin: 0 auto 34px;
  max-width: 600px;
}
.diagram-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
.diagram-frame.wide {
  max-width: 1060px;
}

/* --- OUR JOURNEY hero --- */
.jhero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(158deg, #07223a, #0a2a46 55%, #0e3f63);
  color: #fff;
  padding: 96px 0 92px;
}
.jhero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.14) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: radial-gradient(120% 90% at 80% 0%, #000 12%, transparent 70%);
}
.jhero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(54, 169, 224, 0.28),
    transparent 70%
  );
  pointer-events: none;
}
.jhero .wrap {
  position: relative;
  z-index: 2;
  text-align: center;
}
.jhero .eyebrow {
  color: var(--on-dark);
  justify-content: center;
}
.jhero h1 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  letter-spacing: -0.03em;
  margin: 18px auto 18px;
  max-width: 16ch;
}
.jhero h1 .hl {
  color: var(--brand);
}
.jhero p {
  color: var(--on-dark-mute);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  max-width: 60ch;
  margin: 0 auto;
}

/* --- OUR JOURNEY founder letter --- */
.letter {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 52px 56px;
  position: relative;
  box-shadow: 0 30px 70px -40px rgba(10, 42, 74, 0.4);
}
.letter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 22px 22px 0 0;
  background: linear-gradient(90deg, var(--brand), var(--warm));
}
.letter .quote {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: clamp(1.5rem, 2.8vw, 2.05rem);
  color: var(--navy);
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin-bottom: 26px;
}
.letter p {
  margin-bottom: 15px;
  color: var(--slate);
  font-size: 1.05rem;
}
.letter .sign {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.sign .ph-sig {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cloud);
  border: 1px dashed rgba(10, 42, 74, 0.3);
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono", monospace;
  font-size: 9px;
  color: var(--slate-mute);
  text-align: center;
  line-height: 1.2;
}
.sign .who b {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.15rem;
  color: var(--ink);
  display: block;
}
.sign .who span {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--brand-deep);
  text-transform: uppercase;
}

/* --- OUR JOURNEY timeline --- */
.tl {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}
.tl::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(var(--brand), var(--warm));
}
.tstep {
  position: relative;
  padding: 0 0 34px 52px;
}
.tstep:last-child {
  padding-bottom: 0;
}
.tstep .dot {
  position: absolute;
  left: 4px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--brand);
  z-index: 2;
}
.tstep.home .dot {
  border-color: var(--warm);
  background: var(--warm);
}
.tstep .yr {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  color: var(--brand-deep);
  font-weight: 500;
}
.tstep.home .yr {
  color: var(--warm);
}
.tstep h3 {
  font-size: 1.22rem;
  color: var(--navy);
  margin: 5px 0 8px;
}
.tstep p {
  color: var(--slate);
  font-size: 0.98rem;
}

/* --- OUR JOURNEY family cards --- */
.fam {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.famc {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px 22px;
  background: #fff;
  text-align: center;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.famc:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 50px -30px rgba(10, 42, 74, 0.4);
}
.famc.ici {
  border-color: rgba(244, 166, 42, 0.5);
  background: linear-gradient(160deg, rgba(244, 166, 42, 0.07), #fff);
}
.famc .flag {
  font-size: 2rem;
  line-height: 1;
}
.famc h3 {
  font-size: 1.12rem;
  margin: 10px 0 3px;
  color: var(--navy);
}
.famc .yr {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--brand-deep);
  display: block;
  margin-bottom: 10px;
}
.famc.ici .yr {
  color: #b9791a;
}
.famc p {
  font-size: 0.9rem;
  color: var(--slate-mute);
}
.fam-note {
  text-align: center;
  color: var(--slate-mute);
  max-width: 60ch;
  margin: 30px auto 0;
  font-size: 1rem;
}
.fam-note b {
  color: var(--ink);
  font-weight: 600;
}

/* --- CAREER hero --- */
.chero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(158deg, #07223a, #0a2a46 55%, #0e3f63);
  color: #fff;
  padding: 94px 0 86px;
  text-align: center;
}
.chero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.13) 1px,
    transparent 1px
  );
  background-size: 28px 28px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 10%, transparent 70%);
}
.chero .wrap {
  position: relative;
  z-index: 2;
}
.chero .eyebrow {
  justify-content: center;
}
.chero h1 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(2.3rem, 5vw, 3.9rem);
  letter-spacing: -0.03em;
  margin: 16px auto 18px;
  max-width: 18ch;
}
.chero h1 .hl {
  color: var(--brand);
}
.chero p {
  color: var(--on-dark-mute);
  font-size: clamp(1.05rem, 1.8vw, 1.26rem);
  max-width: 60ch;
  margin: 0 auto;
}

/* --- CAREER image banner --- */
.career-banner {
  max-width: 1000px;
  margin: -40px auto 0;
  position: relative;
  z-index: 5;
  padding: 0 24px;
}
.career-banner .team-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  border: 1px solid var(--line);
  box-shadow: 0 26px 55px -36px rgba(10, 42, 74, 0.5);
}

/* --- CAREER callout --- */
.callout {
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(135deg, #eaf4fc, #f5fafe);
  border: 1px solid rgba(54, 169, 224, 0.3);
  border-radius: 22px;
  padding: 46px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.callout::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--warm));
}
.callout .tag {
  display: inline-block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-deep);
  background: var(--warm);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
  font-weight: 500;
}
.callout h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 14px;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.callout p {
  color: var(--slate);
  max-width: 60ch;
  margin: 0 auto 24px;
  font-size: 1.05rem;
}

/* --- CAREER who we look for cards --- */
.cards3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.lc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 26px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(10, 42, 74, 0.04);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.lc:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 50px -30px rgba(10, 42, 74, 0.4);
}
.lc .ico {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(
    140deg,
    rgba(54, 169, 224, 0.16),
    rgba(54, 169, 224, 0.05)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.lc .ico svg {
  width: 28px;
  height: 28px;
  stroke: var(--brand-deep);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lc h3 {
  font-size: 1.18rem;
  color: var(--navy);
  margin-bottom: 9px;
}
.lc p {
  font-size: 0.95rem;
  color: var(--slate-mute);
}

/* --- CAREER support split --- */
.support {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.sc {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px 32px;
}
.sc .k {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-deep);
  font-weight: 500;
}
.sc h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin: 10px 0 10px;
}
.sc p {
  color: var(--slate-mute);
  font-size: 1rem;
}

/* --- CAREER ways to work --- */
.ways {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.way {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 26px;
  text-align: center;
  min-width: 150px;
  flex: 1;
  box-shadow: 0 1px 2px rgba(10, 42, 74, 0.04);
}
.way .wt {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.05rem;
}
.way .wd {
  font-size: 0.82rem;
  color: var(--slate-mute);
  margin-top: 4px;
}

/* --- LEGAL PAGES: banner --- */
.legal-banner {
  background: linear-gradient(160deg, var(--cloud), #fff);
  border-bottom: 1px solid var(--line);
  padding: 54px 0 40px;
}
.legal-banner h1 {
  font-size: clamp(2rem, 4.4vw, 3rem);
  margin: 14px 0 10px;
  color: var(--navy);
}
.legal-banner .sub {
  color: var(--slate-mute);
  font-size: 1.08rem;
  max-width: 60ch;
}
.updated {
  font-family: "IBM Plex Mono", monospace;
  font-size: 12px;
  color: var(--slate-mute);
  margin-top: 16px;
  letter-spacing: 0.03em;
}
.notice {
  margin-top: 22px;
  background: #fff6e6;
  border: 1px solid rgba(244, 166, 42, 0.5);
  border-left: 4px solid var(--warm);
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 14px;
  color: #6b5015;
  max-width: 76ch;
}
.notice b {
  color: #5a4110;
}

/* --- LEGAL PAGES: layout --- */
.legal {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 56px;
  padding: 52px 0 90px;
  align-items: start;
}
.toc {
  position: sticky;
  top: 96px;
}
.toc h4 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-mute);
  margin-bottom: 14px;
}
.toc a {
  display: block;
  font-size: 13.5px;
  color: var(--slate);
  padding: 6px 0 6px 14px;
  border-left: 2px solid var(--line);
  line-height: 1.4;
}
.toc a:hover {
  color: var(--brand-deep);
  border-color: var(--brand);
  text-decoration: none;
}
.legal .content {
  max-width: 760px;
}
.legal .content section {
  scroll-margin-top: 96px;
  margin-bottom: 34px;
}
.legal .content h2 {
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 12px;
  padding-top: 6px;
}
.legal .content h2 .n {
  color: var(--brand);
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.95rem;
  margin-right: 8px;
  font-weight: 500;
}
.legal .content h3 {
  font-size: 1.08rem;
  margin: 18px 0 8px;
  color: var(--ink);
}
.legal .content p {
  margin-bottom: 13px;
  color: var(--slate);
}
.legal .content ul {
  margin: 0 0 14px 22px;
}
.legal .content li {
  margin-bottom: 7px;
  color: var(--slate);
}
.legal .content .ph-txt {
  color: var(--brand-deep);
  font-weight: 600;
}
table.ck {
  width: 100%;
  border-collapse: collapse;
  margin: 6px 0 16px;
  font-size: 14px;
}
table.ck th,
table.ck td {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
  vertical-align: top;
}
table.ck th {
  background: var(--navy);
  color: #fff;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 600;
  font-size: 13px;
}
table.ck td {
  color: var(--slate);
}
.related {
  margin-top: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.related h4 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--slate-mute);
  margin-bottom: 12px;
}
.related-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.related-links a {
  font-size: 13.5px;
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 7px 15px;
  color: var(--slate);
}
.related-links a:hover {
  border-color: var(--brand);
  color: var(--brand-deep);
  text-decoration: none;
}
.related-links a.here {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

/* --- Responsive: content pages --- */
@media (max-width: 900px) {
  .apart,
  .e6,
  .values {
    grid-template-columns: 1fr 1fr;
  }
  .cards3 {
    grid-template-columns: 1fr;
  }
  .support {
    grid-template-columns: 1fr;
  }
  .fam {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .vm,
  .apart,
  .e6,
  .values {
    grid-template-columns: 1fr;
  }
  .fam {
    grid-template-columns: 1fr;
  }
  .oneteam {
    padding: 34px 24px;
  }
}

/* --- Responsive: legal pages --- */
@media (max-width: 860px) {
  .legal {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .toc {
    position: static;
    margin-bottom: 28px;
    padding: 16px;
    background: var(--cloud);
    border-radius: 12px;
  }
  .toc a {
    border-left: 0;
    padding-left: 0;
    display: inline-block;
    margin-right: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  .rise {
    opacity: 1;
    transform: none;
  }
}
:focus-visible {
  outline: 2.5px solid var(--brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   SERVICE PAGES (from Service_Page_Template_INVORG_SLK.html)
   Namespaced with .sv- to avoid clashing with site-wide styles.
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
.sv-page {
  --sv-navy-900: #0d2a4a; /* footer + darkest headings */
  --sv-navy-800: #123a63; /* accordion headers */
  --sv-navy-700: #1a3d73; /* eyebrow / brand headline */
  --sv-blue-600: #2b7cc4; /* primary action blue */
  --sv-blue-500: #3b8fd4;
  --sv-blue-100: #dceaf6; /* trust bar / section wash */
  --sv-blue-50: #eef5fb; /* card + panel wash */
  --sv-ink-900: #14161a; /* main headlines */
  --sv-ink-600: #4a5561; /* body copy */
  --sv-ink-400: #7c8794; /* muted copy */
  --sv-line: #dbe4ed;
  --sv-white: #ffffff;

  --sv-wrap: 1180px;
  --sv-radius: 8px;
  --sv-radius-lg: 14px;

  --sv-font-body:
    "Segoe UI", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --sv-shadow-sm: 0 1px 3px rgba(13, 42, 74, 0.07);
  --sv-shadow-md: 0 8px 26px rgba(13, 42, 74, 0.1);
  --sv-shadow-lg: 0 18px 48px rgba(13, 42, 74, 0.16);
}

/* ============================================================
   RESET
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  font-family: var(--sv-font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--sv-ink-600);
  background: var(--sv-white);
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  max-width: 100%;
  display: block;
}
a {
  color: var(--sv-blue-600);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
h1,
h2,
h3,
h4 {
  color: var(--sv-ink-900);
  line-height: 1.22;
  margin: 0 0 0.6em;
}
p {
  margin: 0 0 1em;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
button {
  font: inherit;
}
:focus-visible {
  outline: 3px solid var(--sv-blue-500);
  outline-offset: 3px;
  border-radius: 4px;
}

.sv-wrap {
  width: 100%;
  max-width: var(--sv-wrap);
  margin-inline: auto;
  padding-inline: 24px;
}
.sv-section {
  padding: 76px 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.sv-site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--sv-white);
  border-bottom: 1px solid var(--sv-line);
}
.sv-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.sv-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.sv-brand:hover {
  text-decoration: none;
}
.sv-brand-mark {
  width: 38px;
  height: 38px;
  flex: none;
}
.sv-brand-name {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--sv-navy-900);
  text-transform: uppercase;
}

.sv-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.sv-nav a {
  color: var(--sv-ink-900);
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.sv-nav a:hover {
  color: var(--sv-blue-600);
  text-decoration: none;
}
.sv-caret {
  width: 9px;
  height: 9px;
  fill: currentColor;
  opacity: 0.7;
}

.sv-btn {
  display: inline-block;
  border: 0;
  cursor: pointer;
  background: var(--sv-blue-600);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 5px;
  transition:
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}
.sv-btn:hover {
  background: #1f6bad;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--sv-shadow-sm);
}
.sv-btn:active {
  transform: translateY(1px);
}
.sv-btn-lg {
  padding: 13px 30px;
  font-size: 16px;
}

.sv-nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--sv-line);
  border-radius: 5px;
  padding: 8px 10px;
  cursor: pointer;
}
.sv-nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--sv-navy-900);
  margin: 4px 0;
}

/* ============================================================
   HERO
   ============================================================ */
.sv-hero {
  padding: 56px 0 44px;
}
.sv-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 48px;
  align-items: center;
}
.sv-hero-eyebrow {
  font-size: 27px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--sv-navy-700);
  margin: 0 0 14px;
}
.sv-hero h1 {
  font-size: 34px;
  font-weight: 700;
  letter-spacing: -0.4px;
  margin: 0 0 18px;
}
.sv-hero-lede {
  font-size: 15px;
  color: var(--sv-ink-600);
  max-width: 470px;
  margin-bottom: 26px;
}

/* hero collage */
.sv-collage {
  position: relative;
  min-height: 330px;
}
.sv-collage-photo {
  position: absolute;
  left: 22%;
  top: 8%;
  width: 52%;
  aspect-ratio: 4/3.4;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--sv-shadow-md);
}
.sv-hero-media {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: var(--sv-shadow-md);
  border: 1px solid var(--sv-line);
}
.sv-photo-ph {
  width: 100%;
  height: 100%;
  background: radial-gradient(
    120% 90% at 70% 20%,
    #cfe0ee 0%,
    #9fb9d0 55%,
    #7d99b3 100%
  );
  display: flex;
  align-items: flex-end;
  justify-content: center;
  color: #f4f8fb;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px;
  text-align: center;
}
.sv-ui-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--sv-line);
  border-radius: 5px;
  box-shadow: var(--sv-shadow-md);
  overflow: hidden;
}
.sv-ui-a {
  left: 6%;
  top: 0;
  width: 44%;
}
.sv-ui-b {
  left: 0;
  top: 52%;
  width: 40%;
}
.sv-ui-c {
  right: 0;
  bottom: 2%;
  width: 44%;
}
.sv-ui-bar {
  height: 14px;
  background: var(--sv-navy-900);
  display: flex;
  align-items: center;
  padding: 0 6px;
  gap: 3px;
}
.sv-ui-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}
.sv-ui-body {
  padding: 8px;
}
.sv-ui-row {
  height: 6px;
  border-radius: 2px;
  background: #e7eef5;
  margin-bottom: 5px;
}
.sv-ui-row.sv-short {
  width: 55%;
}
.sv-ui-row.sv-accent {
  background: #c9defa;
}
.sv-ui-cols {
  display: flex;
  gap: 4px;
  margin-top: 6px;
}
.sv-ui-cols i {
  display: block;
  width: 100%;
  height: 22px;
  border-radius: 2px;
  background: #e7eef5;
}
.sv-ui-cols i:nth-child(2) {
  height: 32px;
  background: #bcd8f5;
}
.sv-ui-cols i:nth-child(3) {
  height: 16px;
}
.sv-ui-cols i:nth-child(4) {
  height: 28px;
  background: #d6e7f9;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.sv-trust {
  background: var(--sv-blue-100);
  padding: 22px 0 26px;
}
.sv-trust-note {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--sv-navy-900);
  margin: 0 0 16px;
}
.sv-trust-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px 30px;
}
.sv-trust-logos li {
  flex: 0 0 auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.sv-trust-logos li:hover {
  opacity: 1;
}
.sv-logo-chip {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--sv-navy-700);
  white-space: nowrap;
}
.sv-logo-chip small {
  display: block;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--sv-ink-400);
}
.sv-logo-chip.sv-dark {
  background: var(--sv-navy-900);
  color: #fff;
  padding: 6px 14px;
  border-radius: 3px;
  font-size: 13px;
}
.sv-logo-chip.sv-red {
  color: #c8102e;
}
.sv-logo-chip.sv-oval {
  border: 2px solid #c8102e;
  color: #c8102e;
  border-radius: 50%/50%;
  padding: 3px 14px;
}
.sv-logo-chip.sv-grey {
  color: #9aa6b2;
  font-weight: 400;
  font-size: 20px;
  letter-spacing: 0.02em;
}
.sv-logo-chip.sv-rainbow {
  background: linear-gradient(90deg, #e94b35, #f2a03d, #6cb54c, #3b8fd4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 19px;
}

/* ============================================================
   SPLIT SECTIONS
   ============================================================ */
.sv-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.sv-split h2 {
  font-size: 27px;
  font-weight: 700;
  margin-bottom: 18px;
}
.sv-split p {
  font-size: 14.5px;
}
.sv-split strong {
  color: var(--sv-ink-900);
}

.sv-media-ph {
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius);
  background: var(--sv-blue-50);
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sv-ink-400);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.sv-media-ill {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--sv-radius);
  box-shadow: var(--sv-shadow-md);
  border: 1px solid var(--sv-line);
  background: #fff;
}

.sv-feature-list li {
  display: flex;
  gap: 11px;
  font-size: 14.5px;
  margin-bottom: 16px;
}
.sv-feature-list .sv-tick {
  flex: none;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border: 1.5px solid var(--sv-blue-600);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sv-feature-list .sv-tick svg {
  width: 9px;
  height: 9px;
  fill: var(--sv-blue-600);
}

/* ============================================================
   MICROSOFT ADVANTAGE
   ============================================================ */
.sv-advantage-panel {
  background: var(--sv-blue-50);
  border-radius: var(--sv-radius-lg);
  padding: 56px 44px 60px;
  text-align: center;
}
.sv-ms-squares {
  width: 34px;
  height: 34px;
  margin: 0 auto 18px;
}
.sv-advantage-panel h2 {
  font-size: 31px;
  margin-bottom: 8px;
}
.sv-panel-eyebrow {
  font-size: 13px;
  color: var(--sv-ink-400);
  margin-bottom: 10px;
}
.sv-panel-lede {
  max-width: 560px;
  margin: 0 auto 38px;
  font-size: 14.5px;
}

.sv-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  text-align: left;
}
.sv-card {
  background: var(--sv-white);
  border: 1px solid var(--sv-line);
  border-radius: var(--sv-radius);
  padding: 26px 24px 28px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.sv-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sv-shadow-md);
  border-color: #c3d7e9;
}
.sv-card-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 20px;
  fill: var(--sv-ink-900);
}
.sv-card h3 {
  font-size: 16.5px;
  font-weight: 600;
  margin-bottom: 10px;
}
.sv-card p {
  font-size: 13.5px;
  color: var(--sv-ink-600);
  margin: 0;
}

/* ============================================================
   WHY PARTNER
   ============================================================ */
.sv-why {
  background: #f4f7fa;
  padding: 74px 0 84px;
}
.sv-why-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}
.sv-why-badge {
  width: 38px;
  height: 38px;
  margin: 0 auto 16px;
  fill: var(--sv-blue-600);
}
.sv-why-head h2 {
  font-size: 29px;
  margin-bottom: 12px;
}
.sv-why-head p {
  font-size: 14px;
  color: var(--sv-ink-400);
}

.sv-why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.sv-accordion-item + .sv-accordion-item {
  margin-top: 12px;
}
.sv-acc-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--sv-navy-800);
  color: #fff;
  border: 0;
  cursor: pointer;
  padding: 13px 18px;
  border-radius: 5px;
  font-size: 14.5px;
  font-weight: 500;
  text-align: left;
  transition: background 0.18s ease;
}
.sv-acc-trigger:hover {
  background: #17497b;
}
.sv-acc-trigger .sv-chev {
  width: 12px;
  height: 12px;
  fill: #fff;
  flex: none;
  transition: transform 0.25s ease;
}
.sv-acc-trigger[aria-expanded="true"] .sv-chev {
  transform: rotate(180deg);
}
.sv-acc-panel {
  display: none;
  background: #fff;
  border: 1px solid var(--sv-line);
  border-top: 0;
  border-radius: 0 0 5px 5px;
  padding: 16px 18px;
  font-size: 14px;
}
.sv-acc-panel.sv-open {
  display: block;
}
.sv-acc-panel p {
  margin: 0;
}

/* care platform diagram */
.sv-care {
  position: relative;
  aspect-ratio: 1/0.9;
  max-width: 430px;
  margin-inline: auto;
}
.sv-care-mesh {
  position: relative;
  inset: 0;
}
.sv-node {
  position: absolute;
  width: 82px;
  text-align: center;
  transform: translate(-50%, -50%);
}
.sv-node .sv-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  margin: 0 auto 7px;
  border: 3px solid var(--sv-blue-600);
  background: linear-gradient(160deg, #cfe0ee, #8fadc7);
  box-shadow: var(--sv-shadow-sm);
}
.sv-node span {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--sv-navy-900);
  display: block;
  line-height: 1.3;
}
.sv-node-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 132px;
  text-align: center;
}
.sv-node-hub .sv-hub-card {
  background: #fff;
  border: 2px solid var(--sv-blue-600);
  border-radius: 6px;
  padding: 10px;
  box-shadow: var(--sv-shadow-md);
  margin-bottom: 8px;
}
.sv-node-hub .sv-hub-card i {
  display: block;
  height: 5px;
  border-radius: 2px;
  background: #dbe7f4;
  margin-bottom: 4px;
}
.sv-node-hub .sv-hub-card i:first-child {
  background: var(--sv-blue-600);
  width: 60%;
}
.sv-node-hub span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--sv-navy-900);
}

/* ============================================================
   SUCCESS STORIES
   ============================================================ */
.sv-stories {
  padding: 74px 0 80px;
  text-align: center;
}
.sv-pill {
  display: inline-block;
  background: var(--sv-blue-100);
  color: var(--sv-blue-600);
  font-size: 12.5px;
  font-weight: 500;
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.sv-stories h2 {
  font-size: 36px;
  max-width: 760px;
  margin: 0 auto 16px;
  letter-spacing: -0.5px;
}
.sv-stories-lede {
  max-width: 600px;
  margin: 0 auto 50px;
  font-size: 14.5px;
}

.sv-story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: left;
}
.sv-story {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 24px 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,.04), 0 4px 12px rgba(0,0,0,.03);
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s ease, border-color .3s ease;
  position: relative;
  overflow: hidden;
}
.sv-story::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue,#2b7cc4), var(--green,#16A34A));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.4,0,.2,1);
}
.sv-story:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 24px rgba(0,0,0,.08), 0 2px 8px rgba(0,0,0,.04);
  border-color: #cbd5e1;
}
.sv-story:hover::before {
  transform: scaleX(1);
}
.sv-story-logo {
  height: 78px;
  display: flex;
  align-items: center;
  margin-bottom: 26px;
  transition: transform .3s ease;
}
.sv-story:hover .sv-story-logo {
  transform: scale(1.04);
}
.sv-story h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 4px;
  transition: color .2s ease;
}
.sv-story:hover h3 {
  color: var(--blue,#2b7cc4);
}
.sv-story-sub {
  font-size: 13px;
  color: var(--sv-ink-400);
  margin-bottom: 14px;
}
.sv-story p {
  font-size: 13.5px;
}
.sv-story-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 500;
  margin-top: 6px;
  transition: color .2s ease, gap .25s ease;
}
.sv-story-link svg {
  width: 14px;
  height: 10px;
  fill: currentColor;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.sv-story-link:hover {
  text-decoration: none;
  gap: 12px;
}
.sv-story-link:hover svg {
  transform: translateX(4px);
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.sv-cta-panel {
  background: var(--sv-blue-50);
  border-radius: var(--sv-radius-lg);
  padding: 48px 32px 52px;
  text-align: center;
}
.sv-cta-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 16px;
  fill: var(--sv-blue-600);
}
.sv-cta-panel h2 {
  font-size: 27px;
  color: var(--sv-navy-700);
  margin-bottom: 10px;
}
.sv-cta-panel p {
  max-width: 640px;
  margin: 0 auto 26px;
  font-size: 14.5px;
  color: var(--sv-ink-900);
}

/* ============================================================
   FOOTER
   ============================================================ */
.sv-site-footer {
  background: var(--sv-navy-900);
  color: #c3d2e0;
  padding: 58px 0 0;
  font-size: 13.5px;
}
.sv-footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.95fr 0.95fr 1.15fr;
  gap: 34px;
}
.sv-footer h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.sv-footer-brand .sv-brand-name {
  color: #fff;
}
.sv-footer-brand p {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.7;
}
.sv-site-footer a {
  color: #c3d2e0;
}
.sv-site-footer a:hover {
  color: #fff;
}
.sv-footer-links li {
  margin-bottom: 9px;
}
.sv-footer address {
  font-style: normal;
  line-height: 1.8;
}

.sv-newsletter {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 18px;
}
.sv-newsletter p {
  font-size: 12.5px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.sv-newsletter form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.sv-newsletter input {
  flex: 1 1 140px;
  min-width: 0;
  padding: 9px 11px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 13px;
}
.sv-newsletter input::placeholder {
  color: #8fa3b8;
}
.sv-newsletter input:focus {
  border-color: var(--sv-blue-500);
  outline: none;
}

.sv-footer-bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  font-size: 12.5px;
}
.sv-footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .sv-nav-toggle {
    display: block;
  }
  .sv-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--sv-line);
    padding: 8px 24px 18px;
    display: none;
  }
  .sv-nav.sv-open {
    display: flex;
  }
  .sv-nav a {
    padding: 11px 0;
    border-bottom: 1px solid var(--sv-line);
  }
  .sv-nav .sv-btn {
    margin-top: 12px;
    text-align: center;
    border-bottom: 0;
  }
  .sv-hero-grid,
  .sv-split,
  .sv-why-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .sv-split .sv-media-ph {
    order: 2;
  }
  .sv-card-grid,
  .sv-story-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sv-footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .sv-stories h2 {
    font-size: 28px;
  }
}
@media (max-width: 620px) {
  .sv-section,
  .sv-why,
  .sv-stories {
    padding: 52px 0;
  }
  .sv-hero h1 {
    font-size: 27px;
  }
  .sv-hero-eyebrow {
    font-size: 22px;
  }
  .sv-card-grid,
  .sv-story-grid,
  .sv-footer-grid {
    grid-template-columns: 1fr;
  }
  .sv-advantage-panel {
    padding: 40px 20px 44px;
  }
  .sv-advantage-panel h2 {
    font-size: 25px;
  }
  .sv-trust-logos {
    justify-content: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
