@font-face {
  font-family: "Inter";
  src: url("/inter/Inter-VariableFont_opsz,wght.ttf") format("truetype");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("/inter/Inter-Italic-VariableFont_opsz,wght.ttf") format("truetype");
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --deep: #002d2d;
  --deep-2: #073b3b;
  --teal: #27abae;
  --teal-dark: #127f83;
  --ink: #0f172a;
  --body: #334155;
  --muted: #64748b;
  --line: #dce7e7;
  --line-strong: #b9d1d0;
  --soft: #f7f8f9;
  --mist: #eef6fb;
  --mint: #eef9f7;
  --sand: #f8f3e6;
  --gold: #c99b3f;
  --blue: #5f8fbf;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 18px 50px rgba(0, 45, 45, 0.08);
  --shadow-small: 0 8px 24px rgba(0, 45, 45, 0.065);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--body);
  background: var(--white);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(39, 171, 174, 0.42);
  outline-offset: 4px;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--deep);
  font-weight: 700;
  line-height: 1.12;
  text-wrap: balance;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 5.2vw, 4.25rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.6vw, 3.1rem);
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
}

p:last-child,
ul:last-child {
  margin-bottom: 0;
}

.shell {
  width: min(1180px, calc(100% - 80px));
  margin-inline: auto;
}

.section {
  padding: 88px 0;
}

.accent-wash {
  border-block: 1px solid rgba(0, 45, 45, 0.06);
  background:
    radial-gradient(circle at 93% 5%, rgba(39, 171, 174, 0.10), transparent 23%),
    linear-gradient(180deg, #f8fafb 0%, #f5f8f8 100%);
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  color: var(--white);
  background: var(--deep);
  transform: translateY(-180%);
  transition: transform 140ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid rgba(0, 45, 45, 0.10);
  background: rgba(255, 255, 255, 0.98);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 32px;
}

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

.brand img {
  display: block;
  width: 196px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 0.88rem;
  font-weight: 610;
}

.desktop-nav a,
.footer-grid nav a,
.mobile-nav nav a {
  position: relative;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  height: 2px;
  background: var(--teal);
  content: "";
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.desktop-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-nav {
  display: none;
}

.eyebrow,
.card-eyebrow {
  margin: 0 0 13px;
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.card-eyebrow {
  margin-bottom: 10px;
  font-size: 0.68rem;
}

.hero-subhead {
  max-width: 830px;
  margin-bottom: 20px;
  color: var(--teal-dark);
  font-size: clamp(1.2rem, 2vw, 1.48rem);
  font-weight: 560;
  line-height: 1.45;
}

.hero-intro {
  max-width: 790px;
  margin-bottom: 0;
  color: #435859;
  font-size: 1.03rem;
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 19px;
  border: 1px solid var(--deep);
  border-radius: 5px;
  color: var(--white);
  background: var(--deep);
  font-size: 0.92rem;
  font-weight: 760;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  background: var(--deep-2);
  box-shadow: var(--shadow-small);
  transform: translateY(-2px);
}

.button.secondary {
  color: var(--deep);
  background: transparent;
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.72);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--deep);
  font-size: 0.92rem;
  font-weight: 770;
  text-decoration: none;
}

.text-link span {
  transition: transform 160ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link.light {
  color: var(--white);
}

.section-intro {
  max-width: 650px;
}

.section-intro.wide {
  max-width: 840px;
  margin-bottom: 38px;
}

.section-intro.compact {
  max-width: 560px;
}

.section-intro p:not(.eyebrow) {
  font-size: 1.04rem;
}

.sticky-intro {
  position: sticky;
  top: 34px;
  align-self: start;
}

.two-column,
.visual-grid,
.proof-layout,
.family-layout,
.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: start;
  gap: 76px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 0.82rem;
}

.breadcrumbs a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
}

.hub-hero,
.product-hero,
.research-hero,
.work-hero,
.work-detail-hero,
.report-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 45, 45, 0.08);
  background:
    radial-gradient(circle at 88% 8%, rgba(39, 171, 174, 0.15), transparent 27%),
    linear-gradient(135deg, #f3faf9 0%, #ffffff 58%, #faf4e8 100%);
}

.hub-hero::after,
.product-hero::after,
.research-hero::after,
.work-hero::after {
  position: absolute;
  z-index: 0;
  right: -145px;
  bottom: -255px;
  width: 540px;
  height: 540px;
  border: 64px solid rgba(0, 45, 45, 0.035);
  border-radius: 50%;
  content: "";
}

.hub-hero .shell,
.product-hero .shell,
.research-hero .shell,
.work-hero .shell {
  position: relative;
  z-index: 1;
}

.hub-hero {
  padding: 94px 0 82px;
}

.hub-hero h1 {
  max-width: 820px;
}

.hub-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 230px;
  align-items: end;
  gap: 76px;
}

.hero-rail {
  overflow: hidden;
  border: 1px solid rgba(0, 45, 45, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-small);
}

.hero-rail div {
  display: grid;
  grid-template-columns: 42px 1fr;
  align-items: center;
  min-height: 56px;
  border-bottom: 1px solid var(--line);
}

.hero-rail div:last-child {
  border-bottom: 0;
  color: var(--white);
  background: var(--deep);
}

.hero-rail span {
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 800;
  text-align: center;
}

.hero-rail div:last-child span {
  color: #8fdddb;
}

.hero-rail strong {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.chooser-section {
  padding-bottom: 98px;
}

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

.outcome-grid a {
  position: relative;
  display: grid;
  min-height: 130px;
  align-content: start;
  padding: 22px 48px 22px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 6px 18px rgba(0, 45, 45, 0.035);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.outcome-grid a:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-small);
  transform: translateY(-3px);
}

.outcome-grid span {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.77rem;
  font-weight: 670;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.outcome-grid strong {
  color: var(--deep);
  line-height: 1.25;
}

.outcome-grid i {
  position: absolute;
  top: 22px;
  right: 20px;
  color: var(--teal-dark);
  font-size: 1.2rem;
  font-style: normal;
}

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

.flagship-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.flagship-card::before,
.product-card::before,
.work-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  background: linear-gradient(90deg, #9fc7e8, #bfe4d4, #f9dda3, #fac7bc, #ddd1ea);
  content: "";
}

.flagship-card ul,
.bullet-panel ul,
.takeaways ul {
  display: grid;
  gap: 11px;
  margin: 22px 0 25px;
  padding: 0;
  list-style: none;
}

.flagship-card li,
.bullet-panel li,
.takeaways li {
  position: relative;
  padding-left: 23px;
}

.flagship-card li::before,
.bullet-panel li::before,
.takeaways li::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 10px solid var(--teal);
  content: "";
}

.family-layout {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
}

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

.family-products > .product-card:only-child {
  grid-column: 1 / -1;
}

.product-card {
  position: relative;
  display: flex;
  min-height: 260px;
  flex-direction: column;
  overflow: hidden;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 6px 20px rgba(0, 45, 45, 0.045);
}

.product-card p:not(.card-eyebrow) {
  margin-bottom: 24px;
  font-size: 0.92rem;
}

.product-card .text-link {
  margin-top: auto;
}

.product-card.accent-power::before {
  background: linear-gradient(90deg, var(--teal), #9fdedc);
}

.product-card.accent-intelligence::before {
  background: linear-gradient(90deg, var(--blue), var(--teal));
}

.product-card.accent-strategy::before {
  background: linear-gradient(90deg, var(--gold), var(--teal));
}

.product-card.accent-transaction::before {
  background: linear-gradient(90deg, var(--deep), var(--gold));
}

.lifecycle-rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.lifecycle-rail li {
  position: relative;
  min-height: 300px;
  padding: 28px 22px;
  border: 1px solid var(--line-strong);
  border-right: 0;
  background: rgba(255, 255, 255, 0.88);
}

.lifecycle-rail li:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.lifecycle-rail li:last-child {
  border-right: 1px solid var(--deep);
  border-color: var(--deep);
  border-radius: 0 var(--radius) var(--radius) 0;
  color: rgba(255, 255, 255, 0.82);
  background: var(--deep);
}

.lifecycle-rail span,
.engagement-list > div > span {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 820;
}

.lifecycle-rail li:last-child span,
.lifecycle-rail li:last-child h3 {
  color: var(--white);
}

.lifecycle-rail p {
  font-size: 0.86rem;
}

.lifecycle-rail strong {
  position: absolute;
  right: 22px;
  bottom: 25px;
  left: 22px;
  color: var(--teal-dark);
  font-size: 0.75rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.lifecycle-rail li:last-child strong {
  color: #8fdddb;
}

.engagement-list {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.engagement-list > div {
  display: grid;
  grid-template-columns: 42px minmax(150px, 0.65fr) minmax(0, 1.4fr) minmax(120px, 0.55fr);
  align-items: center;
  gap: 14px;
  min-height: 92px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.engagement-list > div:last-child {
  border-bottom: 0;
  color: var(--white);
  background: var(--deep);
}

.engagement-list h3,
.engagement-list p {
  margin: 0;
}

.engagement-list h3 {
  font-size: 1rem;
}

.engagement-list > div:last-child h3 {
  color: var(--white);
}

.engagement-list p {
  font-size: 0.82rem;
}

.engagement-list strong {
  color: var(--teal-dark);
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.engagement-list > div:last-child strong {
  color: #8fdddb;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.pricing-table,
.decision-matrix {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td,
.decision-matrix th,
.decision-matrix td {
  padding: 15px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.pricing-table thead th,
.decision-matrix thead th {
  color: var(--white);
  background: var(--deep);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td,
.decision-matrix tbody tr:last-child th,
.decision-matrix tbody tr:last-child td {
  border-bottom: 0;
}

.pricing-table tbody th {
  color: var(--deep);
  font-weight: 680;
}

.pricing-table a {
  text-decoration-color: rgba(39, 171, 174, 0.4);
  text-underline-offset: 4px;
}

.mini-proof-grid {
  display: grid;
  gap: 13px;
}

.mini-proof-grid a {
  display: grid;
  grid-template-columns: 140px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 21px 23px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-decoration: none;
}

.mini-proof-grid span {
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 790;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-proof-grid strong {
  color: var(--deep);
}

.mini-proof-grid em {
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
}

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

.collaborator-label {
  margin: 34px 0 14px;
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.expertise-grid > div {
  display: grid;
  min-height: 116px;
  place-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--deep);
  background: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.expertise-grid strong {
  align-self: end;
  font-size: 1.12rem;
}

.expertise-grid span {
  align-self: start;
  color: var(--teal-dark);
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.partner-benefit {
  margin: 22px 0 0;
}

.product-hero {
  padding: 68px 0 0;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  gap: 70px;
  padding-bottom: 54px;
}

.product-hero h1 {
  max-width: 860px;
}

.hero-side-panel,
.bullet-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-small);
}

.hero-side-panel h2,
.bullet-panel h2 {
  font-size: 1.35rem;
}

.hero-side-panel ul,
.bullet-panel ul {
  margin: 18px 0 0;
}

.hero-side-panel li,
.bullet-panel li {
  font-size: 0.92rem;
}

.fact-bar {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius) var(--radius) 0 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 -6px 32px rgba(0, 45, 45, 0.06);
}

.fact-bar > div {
  min-height: 112px;
  padding: 23px 27px;
  border-right: 1px solid var(--line);
}

.fact-bar > div:last-child {
  border-right: 0;
}

.fact-bar span,
.fact-bar strong,
.fact-bar small {
  display: block;
}

.fact-bar span {
  margin-bottom: 6px;
  color: var(--teal-dark);
  font-size: 0.68rem;
  font-weight: 810;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.fact-bar strong {
  color: var(--deep);
  font-size: 1rem;
}

.fact-bar small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.75rem;
}

.decision-panel {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  padding: 38px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.80);
  background: var(--deep);
}

.decision-panel::after {
  position: absolute;
  right: -42px;
  bottom: -80px;
  width: 220px;
  height: 220px;
  border: 32px solid rgba(255, 255, 255, 0.055);
  transform: rotate(45deg);
  content: "";
}

.decision-panel .eyebrow {
  color: #86d8d5;
}

.decision-panel h2 {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.modules-section {
  padding-top: 20px;
}

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

.module-card {
  scroll-margin-top: 24px;
  padding: 27px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.module-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.module-number {
  color: var(--teal-dark);
  font-size: 0.74rem;
  font-weight: 820;
}

.status-pill,
.report-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid #c7dcdb;
  border-radius: 999px;
  color: var(--teal-dark);
  background: var(--mint);
  font-size: 0.66rem;
  font-weight: 760;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.module-card dl,
.module-card dd {
  margin: 0;
}

.module-card dl {
  display: grid;
  gap: 18px;
}

.module-card dl div {
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.module-card dt {
  margin-bottom: 5px;
  color: var(--teal-dark);
  font-size: 0.67rem;
  font-weight: 810;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.module-card dd {
  font-size: 0.88rem;
}

.decision-steps,
.record-rows,
.signal-flow,
.state-flow {
  margin: 0;
  padding: 0;
  list-style: none;
}

.decision-steps {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.decision-steps li {
  display: grid;
  grid-template-columns: 66px 1fr;
  min-height: 106px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.90);
}

.decision-steps li:last-child {
  border-bottom: 0;
  color: rgba(255, 255, 255, 0.80);
  background: var(--deep);
}

.step-number {
  display: grid;
  align-self: stretch;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 820;
}

.decision-steps li:last-child .step-number {
  border-color: rgba(255, 255, 255, 0.13);
  color: #8fdddb;
}

.decision-steps li > div {
  padding: 20px 24px;
}

.decision-steps h3,
.decision-steps p {
  margin: 0;
}

.decision-steps h3 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.decision-steps li:last-child h3 {
  color: var(--white);
}

.decision-steps p {
  font-size: 0.88rem;
}

.record-rows {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.record-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 110px;
  align-items: center;
  min-height: 106px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.90);
}

.record-row:last-child {
  border-bottom: 0;
}

.row-number {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 820;
  text-align: center;
}

.record-row > div {
  padding: 18px 22px;
  border-inline: 1px solid var(--line);
}

.record-row h3,
.record-row p {
  margin: 0;
}

.record-row h3 {
  margin-bottom: 5px;
  font-size: 1rem;
}

.record-row p {
  font-size: 0.84rem;
}

.record-row > strong {
  padding: 12px;
  color: var(--teal-dark);
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.spectrum-rows .record-row {
  min-height: 130px;
}

.spectrum-rows .record-row:last-child {
  color: rgba(255, 255, 255, 0.80);
  background: var(--deep);
}

.spectrum-rows .record-row:last-child h3 {
  color: var(--white);
}

.spectrum-rows .record-row:last-child > div {
  border-color: rgba(255, 255, 255, 0.13);
}

.spectrum-rows .record-row:last-child > strong,
.spectrum-rows .record-row:last-child .row-number {
  color: #8fdddb;
}

.investigation-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
}

.investigation-grid > div {
  min-height: 140px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.90);
}

.investigation-grid > div:nth-child(even) {
  border-right: 0;
}

.investigation-grid > div:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.investigation-grid h3,
.investigation-grid p {
  margin: 0;
}

.investigation-grid h3 {
  margin-bottom: 7px;
  font-size: 1rem;
}

.investigation-grid p {
  font-size: 0.84rem;
}

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

.signal-node {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.signal-node:last-child {
  color: rgba(255, 255, 255, 0.80);
  background: var(--deep);
}

.signal-node span {
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 820;
}

.signal-node:last-child span,
.signal-node:last-child h3 {
  color: #8fdddb;
}

.signal-node h3 {
  margin-top: 42px;
  font-size: 1.02rem;
}

.signal-node p {
  font-size: 0.82rem;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: var(--white);
}

.metric-row div {
  padding: 18px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.metric-row div:last-child {
  border-right: 0;
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row strong {
  color: var(--deep);
}

.metric-row span {
  color: var(--muted);
  font-size: 0.72rem;
}

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

.state-card {
  min-height: 220px;
  padding: 25px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
}

.state-card.final {
  color: rgba(255, 255, 255, 0.80);
  background: var(--deep);
}

.state-card span {
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 820;
}

.state-card h3 {
  margin-top: 45px;
}

.state-card.final span,
.state-card.final h3 {
  color: #8fdddb;
}

.state-card p {
  font-size: 0.84rem;
}

.outcome-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 12px;
  border-radius: 7px;
  background: var(--deep);
}

.outcome-strip strong {
  padding: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.10em;
  text-align: center;
  text-transform: uppercase;
}

.outcome-strip strong:last-child {
  border-right: 0;
}

.decision-matrix th,
.decision-matrix td {
  text-align: center;
}

.decision-matrix tbody th {
  color: var(--deep);
  text-align: left;
}

.matrix-status {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.67rem;
  font-weight: 790;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-strong {
  color: #075f4d;
  background: #dff4ed;
}

.status-conditional {
  color: #76540c;
  background: #f9eac2;
}

.status-open {
  color: #4b647d;
  background: #e7eef5;
}

.proof-card {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 34px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: linear-gradient(145deg, #ffffff 0%, #f6faf9 100%);
  box-shadow: var(--shadow-small);
}

.proof-card::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 6px;
  background: linear-gradient(90deg, #9fc7e8, #bfe4d4, #f9dda3, #fac7bc, #ddd1ea);
  content: "";
}

.proof-card .text-link {
  margin-top: 20px;
}

.proof-coming {
  background: linear-gradient(145deg, #fffdf8 0%, #f7f0df 100%);
}

.related-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 34px;
}

.related-grid .product-card {
  min-height: 240px;
}

.cta-band {
  padding: 68px 0;
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 92% 25%, rgba(39, 171, 174, 0.25), transparent 25%),
    var(--deep);
}

.cta-grid {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}

.cta-band .eyebrow {
  color: #8fdddb;
}

.cta-band h2 {
  margin-bottom: 10px;
  color: var(--white);
}

.cta-band .button {
  border-color: var(--white);
  color: var(--deep);
  background: var(--white);
}

.research-hero,
.work-hero {
  padding: 92px 0 80px;
}

.research-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: end;
  gap: 82px;
}

.research-themes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-small);
}

.research-themes span {
  display: grid;
  min-height: 100px;
  place-items: center;
  padding: 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--deep);
  font-size: 0.8rem;
  font-weight: 690;
  text-align: center;
}

.research-themes span:nth-child(even) {
  border-right: 0;
}

.research-themes span:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.report-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.report-card.featured {
  display: grid;
  grid-template-columns: minmax(280px, 0.66fr) minmax(0, 1.34fr);
  align-items: center;
}

.report-cover {
  display: block;
  overflow: hidden;
  background: #f3f5f5;
}

.report-cover img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 0.7727;
  object-fit: cover;
  transition: transform 260ms ease;
}

.report-cover:hover img {
  transform: scale(1.018);
}

.report-card-copy {
  padding: 30px;
}

.report-card.featured .report-card-copy {
  padding: 54px;
}

.report-card h3 a {
  color: inherit;
  text-decoration: none;
}

.report-card.featured h3 {
  font-size: clamp(2rem, 3.7vw, 3rem);
}

.report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 18px;
}

.report-meta.large {
  margin-top: 28px;
}

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

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

.pathway-cards a {
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  text-decoration: none;
}

.pathway-cards span,
.pathway-cards strong {
  display: block;
}

.pathway-cards span {
  margin-bottom: 24px;
  color: var(--teal-dark);
  font-size: 0.67rem;
  font-weight: 790;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pathway-cards strong {
  margin-bottom: 12px;
  color: var(--deep);
  font-size: 1.28rem;
}

.pathway-cards p {
  font-size: 0.9rem;
}

.report-hero,
.work-detail-hero {
  padding: 70px 0;
}

.report-hero-grid,
.work-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  align-items: center;
  gap: 84px;
}

.report-hero-cover,
.work-detail-cover {
  width: min(100%, 365px);
  height: auto;
  justify-self: end;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.report-summary .two-column > div:first-child h2 {
  color: var(--body);
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
  font-weight: 530;
  line-height: 1.48;
}

.takeaways {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.takeaways h2 {
  font-size: 1.35rem;
}

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

.document-toolbar h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.document-frame {
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.document-frame iframe {
  display: block;
  width: 100%;
  height: min(78vh, 940px);
  min-height: 680px;
  border: 0;
}

.document-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.work-hero h1 {
  max-width: 850px;
}

.work-hero .hero-subhead {
  max-width: 760px;
}

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

.work-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
}

.work-art {
  display: block;
  overflow: hidden;
  background: #eef2f2;
}

.work-art > img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1.22;
  object-fit: cover;
  object-position: top;
  transition: transform 240ms ease;
}

.work-art:hover > img {
  transform: scale(1.02);
}

.work-card > div:last-child {
  padding: 27px;
}

.work-card h3 a {
  color: inherit;
  text-decoration: none;
}

.work-card p:not(.card-eyebrow) {
  font-size: 0.9rem;
}

.coming-art {
  display: grid;
  min-height: 300px;
  place-items: center;
  background:
    radial-gradient(circle at 75% 20%, rgba(255, 255, 255, 0.18), transparent 26%),
    linear-gradient(145deg, #5c4c2e 0%, #b48b43 100%);
}

.coming-art span {
  display: inline-flex;
  padding: 9px 13px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coming-page {
  display: grid;
  min-height: 72vh;
  place-items: center;
  padding: 90px 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(39, 171, 174, 0.12), transparent 33%),
    linear-gradient(145deg, #f6fbfa, #ffffff 54%, #faf5e9);
  text-align: center;
}

.coming-inner {
  max-width: 820px;
}

.coming-symbol {
  width: 76px;
  height: 76px;
  margin: 0 auto 28px;
  border: 17px solid var(--teal);
  border-top-color: transparent;
  transform: rotate(45deg);
}

.coming-inner .hero-actions {
  justify-content: center;
}

.site-footer {
  color: rgba(255, 255, 255, 0.70);
  background: #001f1f;
}

.spectrum-line {
  height: 5px;
  background: linear-gradient(90deg, #9fc7e8, #bfe4d4, #f9dda3, #fac7bc, #ddd1ea);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(180px, 0.7fr) minmax(220px, 0.8fr);
  gap: 70px;
  padding-block: 55px 42px;
}

.footer-brand img {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.footer-grid > div:first-child p {
  max-width: 470px;
  margin: 20px 0 0;
  font-size: 0.85rem;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 10px;
  font-size: 0.82rem;
}

.footer-grid nav a:hover,
.footer-grid nav a[aria-current="page"] {
  color: var(--white);
}

.footer-contact .eyebrow {
  color: #8fdddb;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  padding-block: 20px 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.50);
  font-size: 0.75rem;
}

@media (max-width: 1050px) {
  .shell {
    width: min(1180px, calc(100% - 48px));
  }

  .desktop-nav {
    gap: 16px;
    font-size: 0.78rem;
  }

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

  .lifecycle-rail {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .lifecycle-rail li {
    min-height: 160px;
    border-right: 1px solid var(--line-strong);
    border-bottom: 0;
    border-radius: 0;
  }

  .lifecycle-rail li:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .lifecycle-rail li:last-child {
    border-top: 1px solid var(--deep);
    border-radius: 0 0 var(--radius) var(--radius);
  }

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

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

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

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

@media (max-width: 860px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(1180px, calc(100% - 40px));
  }

  .section {
    padding: 68px 0;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    position: relative;
    display: block;
  }

  .mobile-nav summary {
    display: flex;
    min-width: 84px;
    min-height: 46px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    color: var(--deep);
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
  }

  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }

  .mobile-nav summary i,
  .mobile-nav summary i::before,
  .mobile-nav summary i::after {
    display: block;
    width: 16px;
    height: 2px;
    background: var(--deep);
    content: "";
  }

  .mobile-nav summary i {
    position: relative;
  }

  .mobile-nav summary i::before {
    position: absolute;
    top: -5px;
  }

  .mobile-nav summary i::after {
    position: absolute;
    top: 5px;
  }

  .mobile-nav nav {
    position: absolute;
    top: 54px;
    right: 0;
    display: grid;
    width: min(320px, calc(100vw - 40px));
    overflow: hidden;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .mobile-nav nav a {
    min-height: 50px;
    padding: 13px 18px;
    border-bottom: 1px solid var(--line);
    font-size: 0.88rem;
  }

  .mobile-nav nav a:last-child {
    border-bottom: 0;
  }

  .mobile-nav nav a[aria-current="page"] {
    color: var(--teal-dark);
    background: var(--mint);
  }

  .hub-hero-grid,
  .product-hero-grid,
  .research-hero-grid,
  .report-hero-grid,
  .work-detail-grid,
  .two-column,
  .visual-grid,
  .proof-layout,
  .family-layout,
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .hub-hero {
    padding: 72px 0 66px;
  }

  .hero-rail {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .hero-rail div {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 86px;
    padding: 14px 5px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
    text-align: center;
  }

  .hero-rail div:last-child {
    border-right: 0;
  }

  .flagship-grid,
  .family-products,
  .related-grid,
  .module-grid,
  .pathway-cards {
    grid-template-columns: 1fr;
  }

  .sticky-intro {
    position: static;
  }

  .fact-bar {
    grid-template-columns: 1fr;
  }

  .fact-bar > div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .fact-bar > div:last-child {
    border-bottom: 0;
  }

  .engagement-list > div {
    grid-template-columns: 36px 1fr;
    align-items: start;
  }

  .engagement-list p,
  .engagement-list strong {
    grid-column: 2;
  }

  .signal-flow {
    grid-template-columns: 1fr;
  }

  .signal-node {
    min-height: 160px;
  }

  .signal-node h3,
  .state-card h3 {
    margin-top: 24px;
  }

  .state-flow {
    grid-template-columns: 1fr;
  }

  .state-card {
    min-height: 170px;
  }

  .report-card.featured {
    grid-template-columns: 1fr;
  }

  .report-card.featured .report-cover img {
    max-height: 620px;
    object-fit: cover;
    object-position: top;
  }

  .report-card.featured .report-card-copy {
    padding: 30px;
  }

  .report-hero-cover,
  .work-detail-cover {
    justify-self: start;
    width: min(100%, 320px);
  }

  .document-frame iframe {
    min-height: 560px;
  }

  .document-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(1180px, calc(100% - 32px));
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 165px;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .outcome-grid,
  .expertise-grid,
  .report-grid,
  .work-grid,
  .research-themes,
  .investigation-grid,
  .metric-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-rail div {
    grid-template-columns: 40px 1fr;
    min-height: 48px;
    padding: 6px 10px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .flagship-card,
  .decision-panel,
  .hero-side-panel,
  .bullet-panel,
  .proof-card {
    padding: 26px;
  }

  .mini-proof-grid a {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .engagement-list > div {
    padding: 16px;
  }

  .record-row {
    grid-template-columns: 38px 1fr;
  }

  .record-row > strong {
    grid-column: 2;
    padding: 9px 20px 18px;
    text-align: left;
  }

  .record-row > div {
    border-right: 0;
  }

  .investigation-grid > div,
  .research-themes span {
    border-right: 0;
  }

  .investigation-grid > div:nth-last-child(-n + 2),
  .research-themes span:nth-last-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .investigation-grid > div:last-child,
  .research-themes span:last-child {
    border-bottom: 0;
  }

  .outcome-strip {
    grid-template-columns: 1fr;
  }

  .outcome-strip strong {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .outcome-strip strong:last-child {
    border-bottom: 0;
  }

  .report-card.featured .report-cover img {
    max-height: none;
  }

  .document-frame {
    min-height: 0;
    border: 0;
    box-shadow: none;
  }

  .document-frame iframe {
    display: none;
  }

  .document-note {
    padding: 17px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--white);
  }

  .footer-grid {
    gap: 38px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-legal {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
