
:root {
  --ink: #0a2537;
  --ink-soft: #365466;
  --navy-950: #041c2d;
  --navy-900: #08283d;
  --navy-800: #0b3952;
  --teal-700: #087e83;
  --teal-600: #0a9da1;
  --teal-500: #15b8b5;
  --teal-300: #78d9d3;
  --mint-100: #daf3ef;
  --paper: #f2f5f1;
  --cream: #fbfaf6;
  --white: #ffffff;
  --line: #ced9d9;
  --line-dark: rgba(190, 222, 221, .20);
  --shadow: 0 28px 70px rgba(4, 28, 45, .14);
  --wrap: min(1180px, calc(100% - 48px));
  --radius: 18px;
  --sans: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
  --display: "Aptos Display", "Segoe UI Variable Display", Inter, "Segoe UI", Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img, svg { max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
::selection { color: var(--navy-950); background: var(--teal-300); }
:focus-visible { outline: 3px solid var(--teal-500); outline-offset: 4px; }
.skip-link {
  position: fixed;
  z-index: 999;
  left: 16px;
  top: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform .2s ease;
}
.skip-link:focus { transform: translateY(0); }
.wrap { width: var(--wrap); margin-inline: auto; }
.section { padding: 112px 0; }
.kicker {
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--teal-700);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .17em;
  line-height: 1.2;
  text-transform: uppercase;
}
.kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}
.kicker.light { color: var(--teal-300); }
h1, h2, h3 {
  margin: 0;
  color: inherit;
  font-family: var(--display);
  font-weight: 650;
  letter-spacing: -.04em;
  line-height: 1.04;
}
h1 { font-size: clamp(3.35rem, 6.7vw, 6.25rem); }
h2 { font-size: clamp(2.35rem, 4.8vw, 4.45rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); line-height: 1.2; letter-spacing: -.025em; }
p { margin: 0 0 1.15em; }
.lede { color: var(--ink-soft); font-size: clamp(1.12rem, 1.7vw, 1.35rem); line-height: 1.55; }
.overline {
  color: var(--teal-700);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.muted { color: var(--ink-soft); }
.label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 9px;
  color: var(--teal-700);
  background: rgba(21, 184, 181, .10);
  border: 1px solid rgba(21, 184, 181, .22);
  border-radius: 999px;
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .11em;
  line-height: 1;
  text-transform: uppercase;
}
.button {
  min-height: 52px;
  padding: 13px 19px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  color: var(--navy-950);
  background: var(--teal-300);
  border: 1px solid var(--teal-300);
  border-radius: 9px;
  font-size: .88rem;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}
.button:hover { transform: translateY(-2px); background: #9be5df; border-color: #9be5df; }
.button.dark { color: var(--white); background: var(--navy-950); border-color: var(--navy-950); }
.button.dark:hover { color: var(--navy-950); background: var(--teal-300); border-color: var(--teal-300); }
.button.ghost { color: var(--white); background: transparent; border-color: rgba(255,255,255,.35); }
.button.ghost:hover { color: var(--navy-950); background: var(--white); border-color: var(--white); }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--teal-700);
  font-size: .9rem;
  font-weight: 800;
  text-decoration: none;
}
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }
.text-link.light { color: var(--teal-300); }
.cta-row { margin-top: 34px; display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }

/* Header */
.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  color: var(--ink);
  background: rgba(251, 250, 246, .94);
  border-bottom: 1px solid rgba(206, 217, 217, .82);
  backdrop-filter: blur(14px);
}
.nav-shell {
  width: var(--wrap);
  min-height: 84px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 42px;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-type { display: flex; flex-direction: column; line-height: 1; }
.brand-type strong {
  color: #07345b;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: .095em;
}
.brand-type small {
  margin-top: 7px;
  color: var(--teal-600);
  font-size: .54rem;
  font-weight: 900;
  letter-spacing: .34em;
}
.main-nav { display: flex; align-items: center; gap: 27px; }
.main-nav a {
  position: relative;
  color: #385365;
  font-size: .82rem;
  font-weight: 760;
  text-decoration: none;
}
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  inset: auto 0 -9px;
  height: 2px;
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}
.main-nav > a:hover::after,
.main-nav > a[aria-current="page"]::after { transform: scaleX(1); }
.main-nav .nav-cta {
  padding: 11px 15px;
  color: var(--white);
  background: var(--navy-950);
  border: 1px solid var(--navy-950);
  border-radius: 8px;
}
.main-nav .nav-cta:hover { color: var(--navy-950); background: var(--teal-300); border-color: var(--teal-300); }
.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 0;
  color: var(--navy-950);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  width: 20px;
  height: 2px;
  margin: 4px auto;
  display: block;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 18%, rgba(21,184,181,.24), transparent 30%),
    radial-gradient(circle at 18% 110%, rgba(33,117,146,.30), transparent 37%),
    var(--navy-950);
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(rgba(255,255,255,.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent, #000 45%, #000);
}
.hero-shell {
  width: var(--wrap);
  min-height: 720px;
  margin-inline: auto;
  padding: 104px 0 110px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  align-items: center;
  gap: 90px;
}
.hero-copy h1 { max-width: 760px; }
.hero-copy h1 span { color: var(--teal-300); }
.hero-copy .lede { max-width: 760px; margin-top: 30px; color: #c5d5dc; }
.hero-note { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 18px 28px; color: #9cb3bd; font-size: .78rem; }
.hero-note span { display: inline-flex; align-items: center; gap: 8px; }
.hero-note span::before { content: ""; width: 5px; height: 5px; background: var(--teal-300); border-radius: 50%; }
.operating-view {
  position: relative;
  padding: 26px;
  color: var(--ink);
  background: rgba(255,255,255,.97);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: var(--radius);
  box-shadow: 0 34px 100px rgba(0,0,0,.28);
}
.operating-view::before {
  content: "";
  position: absolute;
  inset: -12px 16px auto;
  height: 12px;
  background: rgba(255,255,255,.18);
  border-radius: 12px 12px 0 0;
}
.view-head {
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}
.view-head strong { font-size: .9rem; letter-spacing: -.01em; }
.signal { display: inline-flex; align-items: center; gap: 7px; color: var(--teal-700); font-size: .66rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.signal::before { content: ""; width: 7px; height: 7px; background: var(--teal-500); border-radius: 50%; box-shadow: 0 0 0 5px rgba(21,184,181,.13); }
.outcome-card { padding: 22px 0; border-bottom: 1px solid var(--line); }
.outcome-card .overline { margin-bottom: 8px; display: block; }
.outcome-card h3 { font-size: 1.55rem; }
.control-list { margin-top: 20px; display: grid; gap: 9px; }
.control-row {
  padding: 13px 14px;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 11px;
  background: #f4f7f5;
  border: 1px solid #e0e8e5;
  border-radius: 10px;
}
.control-row b {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  color: var(--teal-700);
  background: var(--mint-100);
  border-radius: 50%;
  font-size: .65rem;
}
.control-row span { font-size: .79rem; font-weight: 750; }
.control-row small { color: var(--ink-soft); font-size: .66rem; }
.view-footer { margin-top: 19px; display: flex; justify-content: space-between; align-items: center; gap: 20px; color: var(--ink-soft); font-size: .7rem; }
.avatar-stack { display: flex; }
.avatar-stack i {
  width: 25px;
  height: 25px;
  margin-left: -5px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy-800);
  border: 2px solid var(--white);
  border-radius: 50%;
  font-style: normal;
  font-size: .54rem;
  font-weight: 800;
}
.avatar-stack i:first-child { margin-left: 0; background: var(--teal-600); }

/* Capability rail */
.capability-rail { color: var(--white); background: var(--navy-900); border-top: 1px solid var(--line-dark); }
.capability-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.capability-grid div { min-height: 128px; padding: 27px 26px; border-right: 1px solid var(--line-dark); }
.capability-grid div:first-child { border-left: 1px solid var(--line-dark); }
.capability-grid span { color: var(--teal-300); font-size: .64rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.capability-grid p { margin: 12px 0 0; color: #d2dfe4; font-size: .92rem; line-height: 1.45; }

/* Recognition */
.recognition { background: var(--cream); }
.split { display: grid; grid-template-columns: .84fr 1.16fr; gap: 90px; align-items: start; }
.sticky-copy { position: sticky; top: 124px; }
.sticky-copy .lede { max-width: 520px; margin-top: 26px; }
.pattern-list { border-top: 1px solid var(--ink); }
.pattern {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
}
.pattern > span { color: var(--teal-700); font-size: .66rem; font-weight: 850; letter-spacing: .12em; }
.pattern h3 { font-size: 1.28rem; }
.pattern p { margin: 10px 0 0; color: var(--ink-soft); }

/* Representative engagement */
.case-section { position: relative; overflow: hidden; color: var(--white); background: var(--navy-800); }
.case-section::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(120,217,211,.18);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(120,217,211,.04), 0 0 0 120px rgba(120,217,211,.025);
}
.case-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .44fr 1fr; gap: 80px; }
.case-side p:last-child { margin-top: 18px; color: #9fb7c2; font-size: .78rem; }
.case-story h2 { max-width: 790px; }
.case-story > p { max-width: 790px; margin-top: 24px; color: #d5e2e7; font-size: 1.05rem; }
.impact-grid { margin-top: 32px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.impact-stat { padding: 24px; background: rgba(255,255,255,.05); border: 1px solid var(--line-dark); border-radius: 12px; }
.impact-stat strong { display: block; color: var(--teal-300); font-size: clamp(2.8rem, 5vw, 4.4rem); line-height: .9; letter-spacing: -.055em; }
.impact-stat span { max-width: 230px; margin-top: 12px; display: block; color: #d5e2e7; font-size: .83rem; line-height: 1.45; }
.case-stages { margin-top: 36px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); }
.case-stages div { padding: 22px 22px 0 0; border-right: 1px solid var(--line-dark); }
.case-stages div + div { padding-left: 22px; }
.case-stages div:last-child { border-right: 0; }
.case-stages span { color: var(--teal-300); font-size: .66rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.case-stages p { margin: 10px 0 0; color: #c1d3da; font-size: .87rem; line-height: 1.5; }
.case-story > .evidence-note { margin-top: 22px; color: #8da8b3; font-size: .72rem; line-height: 1.5; }

/* Services */
.services { background: var(--paper); }
.section-head { max-width: 830px; }
.section-head .lede { max-width: 700px; margin-top: 25px; }
.service-cards { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  min-height: 465px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 28px rgba(4,28,45,.04);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: #a8cbc9; box-shadow: 0 22px 45px rgba(4,28,45,.09); }
.service-card .number { color: var(--teal-700); font-size: .68rem; font-weight: 850; letter-spacing: .13em; }
.service-card h3 { margin-top: 54px; font-size: 1.75rem; }
.service-card > p { margin-top: 17px; color: var(--ink-soft); }
.card-detail { margin-top: 16px; padding-top: 18px; border-top: 1px solid var(--line); }
.card-detail span { color: var(--teal-700); font-size: .64rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.card-detail p { margin: 8px 0 0; color: var(--ink); font-size: .87rem; line-height: 1.5; }
.service-card .text-link { margin-top: auto; padding-top: 28px; }

/* Delivery model */
.model { color: var(--white); background: var(--navy-950); }
.model-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 92px; align-items: start; }
.model-intro .lede { max-width: 580px; margin-top: 26px; color: #aec3cc; }
.model-map { position: relative; display: grid; gap: 12px; }
.model-node {
  position: relative;
  padding: 23px 24px;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 19px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line-dark);
  border-radius: 13px;
}
.model-node + .model-node::before {
  content: "";
  position: absolute;
  left: 42px;
  top: -13px;
  width: 1px;
  height: 13px;
  background: var(--teal-300);
}
.model-node > span { color: var(--teal-300); font-size: .66rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.model-node h3 { font-size: 1.34rem; }
.model-node p { margin: 8px 0 0; color: #a8bec8; font-size: .9rem; }

/* Method */
.method { background: var(--white); }
.method-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
.method-grid article { position: relative; min-height: 255px; padding: 28px 27px 28px 0; border-right: 1px solid var(--line); }
.method-grid article + article { padding-left: 27px; }
.method-grid article:last-child { border-right: 0; }
.method-grid span { color: var(--teal-700); font-size: .66rem; font-weight: 850; letter-spacing: .12em; }
.method-grid h3 { margin-top: 58px; }
.method-grid p { margin: 12px 0 0; color: var(--ink-soft); font-size: .9rem; }

/* Close CTA */
.close-section { position: relative; overflow: hidden; padding: 92px 0; color: var(--white); background: var(--navy-800); }
.close-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .14;
  background: linear-gradient(115deg, transparent 25%, rgba(120,217,211,.35) 25.2%, transparent 25.5%, transparent 72%, rgba(120,217,211,.25) 72.2%, transparent 72.5%);
}
.close-grid { position: relative; display: grid; grid-template-columns: .38fr 1fr; gap: 24px 70px; align-items: end; }
.close-grid h2 { max-width: 900px; }
.close-grid .cta-row { grid-column: 2; margin-top: 2px; }

/* Inner page hero */
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 10%, rgba(21,184,181,.20), transparent 30%),
    var(--navy-950);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .10;
  background-image: linear-gradient(rgba(255,255,255,.2) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.2) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent 15%, #000);
}
.page-hero-inner { position: relative; z-index: 1; width: var(--wrap); margin-inline: auto; padding: 100px 0 105px; }
.page-hero h1 { max-width: 980px; font-size: clamp(3.2rem, 6vw, 5.65rem); }
.page-hero .lede { max-width: 820px; margin-top: 28px; color: #c1d2d9; }

/* Services page */
.offerings { background: var(--cream); }
.offer-list { border-top: 1px solid var(--ink); }
.offer { padding: 86px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 106px; }
.offer-head { display: grid; grid-template-columns: 66px .95fr 1.05fr; gap: 20px 48px; align-items: start; }
.offer-number { grid-row: 1 / 4; padding-top: 5px; color: var(--teal-700); font-size: .68rem; font-weight: 850; letter-spacing: .13em; }
.offer-head .overline { grid-column: 2 / -1; }
.offer-head h2 { grid-column: 2; font-size: clamp(2.4rem, 4.5vw, 4rem); }
.offer-head .lede { grid-column: 3; font-size: 1.08rem; }
.offer-details { margin: 46px 0 0 66px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); }
.offer-details.two-column { grid-template-columns: repeat(2, 1fr); }
.offer-details > div { padding: 27px 27px 0 0; border-right: 1px solid var(--line); }
.offer-details > div + div { padding-left: 27px; }
.offer-details > div:last-child { border-right: 0; }
.offer-details h3 { color: var(--teal-700); font-size: .69rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.offer-details ul { margin: 17px 0 0; padding-left: 18px; color: var(--ink-soft); font-size: .92rem; }
.offer-details li { margin: 9px 0; }
.proof-strip {
  margin: 44px 0 0 66px;
  padding: 28px;
  display: grid;
  grid-template-columns: .72fr 1fr 1fr;
  gap: 22px;
  align-items: start;
  color: var(--white);
  background: var(--navy-800);
  border-radius: var(--radius);
}
.proof-strip > .overline { color: var(--teal-300); }
.proof-strip strong { display: block; color: var(--teal-300); font-size: clamp(2.25rem, 4vw, 3.4rem); line-height: .9; letter-spacing: -.045em; }
.proof-strip p { max-width: 230px; margin: 10px 0 0; color: #d5e2e7; font-size: .84rem; line-height: 1.45; }
.proof-strip small { grid-column: 2 / -1; color: #8da8b3; font-size: .7rem; line-height: 1.45; }
.engagement-shape { background: var(--paper); }
.shape-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 90px; }
.shape-list { border-top: 1px solid var(--ink); }
.shape-row { padding: 25px 0; display: grid; grid-template-columns: 50px 1fr; gap: 18px; border-bottom: 1px solid var(--line); }
.shape-row span { color: var(--teal-700); font-size: .68rem; font-weight: 850; }
.shape-row p { margin: 7px 0 0; color: var(--ink-soft); }
.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 92px; align-items: start; }
.faq-list { border-top: 1px solid var(--ink); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { position: relative; padding: 25px 45px 25px 0; list-style: none; font-size: 1.1rem; font-weight: 780; cursor: pointer; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; top: 21px; color: var(--teal-700); font-size: 1.5rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 720px; padding: 0 45px 22px 0; color: var(--ink-soft); }

/* About */
.about-story { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 92px; }
.about-copy .lede { margin-bottom: 28px; }
.about-copy p:not(.lede) { color: var(--ink-soft); }
.principles { background: var(--paper); }
.principle-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--ink); border-left: 1px solid var(--line); }
.principle-grid.three-up { grid-template-columns: repeat(3, 1fr); }
.principle-grid article { min-height: 280px; padding: 30px; background: rgba(255,255,255,.45); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.principle-grid span { color: var(--teal-700); font-size: .66rem; font-weight: 850; letter-spacing: .13em; }
.principle-grid h3 { margin-top: 56px; font-size: 1.48rem; }
.principle-grid p { margin: 13px 0 0; color: var(--ink-soft); }
.team-model { color: var(--white); background: var(--navy-950); }
.team-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 92px; }
.team-intro .lede { margin-top: 26px; color: #aec3cc; }
.team-roles { display: grid; gap: 12px; }
.team-role { padding: 24px; display: grid; grid-template-columns: 44px 1fr; gap: 16px; background: rgba(255,255,255,.045); border: 1px solid var(--line-dark); border-radius: 12px; }
.team-role > span { width: 34px; height: 34px; display: grid; place-items: center; color: var(--navy-950); background: var(--teal-300); border-radius: 8px; font-size: .64rem; font-weight: 900; }
.team-role h3 { font-size: 1.28rem; }
.team-role p { margin: 8px 0 0; color: #a8bec8; font-size: .9rem; }
.leadership { background: var(--white); }
.leadership-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 92px; }
.leadership-card { padding: 30px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); }
.leadership-card h3 { margin-top: 8px; font-size: 1.65rem; }
.leadership-card p { margin: 10px 0 0; color: var(--ink-soft); }
.leadership-copy p { color: var(--ink-soft); }
.fit-section { background: var(--cream); }
.fit-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 92px; }
.check-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.check-list li { position: relative; padding: 23px 0 23px 36px; color: var(--ink-soft); border-bottom: 1px solid var(--line); }
.check-list li::before { content: "→"; position: absolute; left: 0; color: var(--teal-700); font-weight: 900; }

/* Insights */
.insights-intro { background: var(--cream); }
.insights-intro-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 92px; }
.insight-index { background: var(--paper); }
.insight-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.insight-card-grid.three-up { margin-top: 50px; grid-template-columns: repeat(3, 1fr); }
.insight-card {
  min-height: 350px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.insight-card:hover { transform: translateY(-5px); border-color: #a8cbc9; box-shadow: 0 22px 45px rgba(4,28,45,.09); }
.insight-card .meta { display: flex; align-items: center; justify-content: space-between; gap: 15px; color: var(--teal-700); font-size: .65rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.insight-card h2 { margin-top: 56px; font-size: clamp(1.8rem, 3vw, 2.5rem); }
.insight-card > p { margin-top: 18px; color: var(--ink-soft); }
.insight-card .card-detail { margin-top: auto; padding-top: 24px; }
.insight-card .text-link { margin-top: auto; padding-top: 24px; }
.article-list { background: var(--cream); }
.article { padding: 98px 0; border-bottom: 1px solid var(--line); scroll-margin-top: 94px; }
.article-grid { display: grid; grid-template-columns: 170px 1fr; gap: 62px; }
.article-meta span { color: var(--teal-700); font-size: .68rem; font-weight: 850; letter-spacing: .12em; }
.article-meta p { margin-top: 15px; color: var(--teal-700); font-size: .68rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.article-body { max-width: 860px; }
.article-body h2 { font-size: clamp(2.3rem, 4.5vw, 4rem); }
.article-body > p { margin-top: 23px; color: var(--ink-soft); font-size: 1.02rem; }
.diagnostic { margin-top: 32px; padding: 27px 29px; background: var(--mint-100); border-left: 3px solid var(--teal-600); border-radius: 0 12px 12px 0; }
.diagnostic h3 { color: var(--teal-700); font-size: .69rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.diagnostic ul { margin: 16px 0 0; padding-left: 20px; }
.diagnostic li { margin: 8px 0; }
.first-move { margin-top: 27px !important; padding: 22px 24px; color: var(--ink) !important; background: var(--white); border: 1px solid var(--line); border-radius: 10px; }

/* Contact */
.contact-main { background: var(--cream); }
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.contact-copy { position: sticky; top: 122px; }
.contact-copy .lede { margin-top: 25px; }
.contact-points { margin-top: 34px; border-top: 1px solid var(--ink); }
.contact-point { padding: 19px 0; display: grid; grid-template-columns: 38px 1fr; gap: 12px; border-bottom: 1px solid var(--line); }
.contact-point span { color: var(--teal-700); font-size: .65rem; font-weight: 850; }
.contact-point p { margin: 0; color: var(--ink-soft); font-size: .91rem; }
.inquiry-form { padding: 40px; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.inquiry-form h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
.form-note { margin-top: 13px; color: var(--ink-soft); font-size: .86rem; }
.form-grid { margin-top: 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field.full { grid-column: 1 / -1; }
.field label { margin-bottom: 7px; display: block; font-size: .78rem; font-weight: 800; }
.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 50px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcfa;
  border: 1px solid #aebfc2;
  border-radius: 8px;
}
.field textarea { min-height: 128px; resize: vertical; }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--teal-600); outline: 3px solid rgba(21,184,181,.16); }
.website-field {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form-actions { margin-top: 23px; display: flex; flex-wrap: wrap; align-items: center; gap: 17px; }
.form-status { margin: 0; color: var(--teal-700); font-size: .8rem; font-weight: 750; }
.form-status[data-state="error"] { color: #9b2f2f; }
.inquiry-form button[disabled] { cursor: wait; opacity: .7; }
.privacy-note { margin: 16px 0 0; color: var(--ink-soft); font-size: .72rem; }
.expectation { color: var(--white); background: var(--navy-800); }
.expectation-grid { display: grid; grid-template-columns: .42fr 1fr; gap: 70px; }
.expectation-steps { margin-top: 35px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line-dark); }
.expectation-steps div { padding: 23px 24px 0 0; border-right: 1px solid var(--line-dark); }
.expectation-steps div + div { padding-left: 24px; }
.expectation-steps div:last-child { border-right: 0; }
.expectation-steps span { color: var(--teal-300); font-size: .66rem; font-weight: 850; letter-spacing: .12em; }
.expectation-steps h3 { margin-top: 12px; font-size: 1.18rem; }
.expectation-steps p { margin: 9px 0 0; color: #bfd1d8; font-size: .86rem; }

/* 404 */
.not-found { min-height: calc(100vh - 84px); display: grid; place-items: center; color: var(--white); background: var(--navy-950); }
.not-found-inner { width: var(--wrap); padding: 80px 0; }
.not-found .code { color: var(--teal-300); font-size: .72rem; font-weight: 850; letter-spacing: .16em; text-transform: uppercase; }
.not-found h1 { max-width: 900px; margin-top: 20px; }
.not-found .lede { max-width: 680px; margin-top: 26px; color: #b8cad2; }

/* Footer */
.site-footer { color: #aec1ca; background: var(--navy-950); border-top: 1px solid var(--line-dark); }
.footer-shell { width: var(--wrap); margin-inline: auto; padding: 54px 0 28px; display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.footer-brand .brand-type strong { color: var(--white); }
.footer-brand .brand-type small { color: var(--teal-300); }
.footer-shell > p { margin: 0; max-width: 520px; justify-self: end; color: #91a9b4; text-align: right; }
.footer-shell nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-shell nav a { color: #aec1ca; font-size: .82rem; text-decoration: none; }
.footer-shell nav a:hover { color: var(--teal-300); }
.footer-shell > small { color: #708995; text-align: right; }

/* Motion */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 1020px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 84px 0 auto;
    max-height: calc(100vh - 84px);
    padding: 28px 32px 34px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    overflow-y: auto;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 24px 50px rgba(4,28,45,.15);
  }
  .main-nav.open { display: flex; }
  .main-nav .nav-cta { text-align: center; }
  .hero-shell { grid-template-columns: 1fr; min-height: auto; gap: 66px; }
  .hero-copy { max-width: 860px; }
  .operating-view { max-width: 620px; }
  .split, .model-grid, .shape-grid, .faq-grid, .about-grid, .team-grid, .leadership-grid, .fit-grid, .insights-intro-grid, .contact-layout { grid-template-columns: 1fr; gap: 54px; }
  .sticky-copy, .contact-copy { position: static; }
  .case-grid, .expectation-grid { grid-template-columns: 1fr; gap: 42px; }
  .service-cards { grid-template-columns: 1fr; }
  .service-card { min-height: 0; }
  .service-card h3 { margin-top: 35px; }
  .offer-head { grid-template-columns: 54px 1fr; }
  .offer-head .overline, .offer-head h2, .offer-head .lede { grid-column: 2; }
  .offer-details { margin-left: 54px; }
  .proof-strip { margin-left: 54px; grid-template-columns: 1fr 1fr; }
  .proof-strip > .overline, .proof-strip small { grid-column: 1 / -1; }
  .principle-grid.three-up, .insight-card-grid.three-up { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  :root { --wrap: min(100% - 32px, 1180px); }
  body { font-size: 16px; }
  .section { padding: 80px 0; }
  .nav-shell { min-height: 76px; }
  .main-nav { inset: 76px 0 auto; max-height: calc(100vh - 76px); }
  .brand-type small { display: none; }
  .hero-shell { padding: 76px 0 82px; gap: 48px; }
  h1 { font-size: clamp(3rem, 15vw, 4.5rem); }
  h2 { font-size: clamp(2.2rem, 11vw, 3.5rem); }
  .operating-view { padding: 20px; border-radius: 14px; }
  .control-row { grid-template-columns: 30px 1fr; }
  .control-row small { grid-column: 2; }
  .capability-grid { grid-template-columns: 1fr 1fr; }
  .capability-grid div { min-height: 0; border-bottom: 1px solid var(--line-dark); }
  .pattern { grid-template-columns: 35px 1fr; }
  .case-stages, .method-grid, .expectation-steps { grid-template-columns: 1fr; }
  .case-stages div, .case-stages div + div, .method-grid article, .method-grid article + article, .expectation-steps div, .expectation-steps div + div {
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }
  .method-grid article, .method-grid article + article { min-height: 0; border-bottom-color: var(--line); }
  .method-grid h3 { margin-top: 30px; }
  .close-grid { grid-template-columns: 1fr; gap: 24px; }
  .close-grid .cta-row { grid-column: 1; }
  .page-hero-inner { padding: 76px 0 82px; }
  .offer { padding: 62px 0; }
  .offer-head { grid-template-columns: 1fr; gap: 14px; }
  .offer-number, .offer-head .overline, .offer-head h2, .offer-head .lede { grid-column: 1; grid-row: auto; }
  .offer-details, .offer-details.two-column { margin: 35px 0 0; grid-template-columns: 1fr; }
  .offer-details > div, .offer-details > div + div { padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip { margin: 34px 0 0; grid-template-columns: 1fr; }
  .proof-strip > .overline, .proof-strip small { grid-column: 1; }
  .impact-grid { grid-template-columns: 1fr; }
  .principle-grid, .principle-grid.three-up, .insight-card-grid, .insight-card-grid.three-up { grid-template-columns: 1fr; }
  .principle-grid article { min-height: 0; }
  .principle-grid h3 { margin-top: 35px; }
  .article-grid { grid-template-columns: 1fr; gap: 26px; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: 1; }
  .inquiry-form { padding: 27px 22px; }
  .footer-shell { grid-template-columns: 1fr; }
  .footer-shell > p, .footer-shell > small { justify-self: start; text-align: left; }
}
@media (max-width: 480px) {
  .cta-row { align-items: stretch; flex-direction: column; }
  .cta-row .button, .cta-row .text-link { width: 100%; justify-content: center; }
  .capability-grid { grid-template-columns: 1fr; }
  .capability-grid div { border-left: 1px solid var(--line-dark); }
  .view-head { flex-direction: column; gap: 10px; }
  .hero-note { flex-direction: column; gap: 10px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}
