:root {
  --navy: #00305a;
  --teal: #00a6a6;
  --teal-dark: #007f83;
  --ink: #25313b;
  --muted: #5f6b76;
  --line: #dde2e5;
  --surface: #f3f5f6;
  --white: #fff;
  --shadow: 0 18px 45px rgba(0, 48, 90, .1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--navy); text-underline-offset: 3px; }
a:hover { color: var(--teal-dark); }
button, input, textarea { font: inherit; }

.navbar {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(221, 226, 229, .9);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
}
.nav-container {
  width: min(1160px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.logo img { width: 176px; max-height: 64px; object-fit: contain; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.nav-menu a {
  display: block;
  padding: 10px 15px;
  border-radius: 8px;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--teal-dark); background: #eef8f8; }
.menu-toggle {
  display: none;
  position: relative;
  z-index: 101;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.hamburger-bar { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--navy); transition: .2s; }

.hero-section {
  overflow: hidden;
  background: linear-gradient(135deg, #f3f5f6 0%, #fff 52%, #eaf8f7 100%);
}
.hero-container {
  width: min(1320px, calc(100% - 40px));
  min-height: 500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 78px 0 94px;
}
.hero-content { width: 100%; text-align: center; }
.hero-content h1 {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  color: var(--navy);
  font-family: Manrope, Inter, sans-serif;
  font-size: clamp(2.45rem, calc(5vw - 2.667px), 4.48rem);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.highlight { color: var(--teal-dark); }

.features-section { padding: 0 20px 88px; background: linear-gradient(#fff, var(--surface)); }
.features-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.feature-card {
  min-height: 188px;
  padding: 30px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 48, 90, .06);
  text-align: center;
}
.feature-icon { width: 48px; height: 48px; margin: 0 auto 18px; color: var(--teal-dark); }
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 { margin: 0; color: var(--navy); font-family: Manrope, sans-serif; font-size: 1rem; line-height: 1.35; }

.details-section { padding: 92px 20px; }
.details-container { width: min(880px, 100%); margin: 0 auto; }
.details-container h2 {
  margin: 0 0 28px;
  color: var(--navy);
  font-family: Manrope, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: -.025em;
}
.details-lead, .details-text { font-size: 1.12rem; color: var(--muted); }
.details-quote {
  margin: 42px 0;
  padding: 24px 30px;
  border-left: 5px solid var(--teal);
  border-radius: 0 12px 12px 0;
  background: var(--surface);
  color: var(--navy);
  font-family: Manrope, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.container { width: min(1080px, calc(100% - 40px)); min-height: 55vh; margin: 0 auto; }
.page-title, .category-title, .connect-page-title {
  color: var(--navy);
  font-family: Manrope, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.18;
  letter-spacing: -.03em;
}
.resources-section, .category-header, .author-section, .team-page-section, .connect-page-section { padding: 70px 0 90px; }
.articles-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.article-card {
  display: flex;
  flex-direction: column;
  min-height: 250px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(0, 48, 90, .06);
}
.article-card h2, .article-card h3 { margin: 0 0 12px; color: var(--navy); font-family: Manrope, sans-serif; line-height: 1.3; }
.article-card p { color: var(--muted); }
.ch-read-more, .author-read-more { margin-top: auto; font-weight: 700; text-decoration: none; }

.article-page { width: min(850px, 100%); margin: 0 auto; padding: 62px 0 90px; }
.back-link { display: inline-block; margin-bottom: 28px; font-weight: 700; text-decoration: none; }
.article-title { margin: 0 0 18px; color: var(--navy); font-family: Manrope, sans-serif; font-size: clamp(2.1rem, 4.5vw, 3.6rem); line-height: 1.15; letter-spacing: -.035em; }
.article-meta { margin: 0 0 40px; color: var(--muted); font-size: .93rem; }
.meta-sep { margin: 0 8px; color: #aab1b7; }
.article-body { font-size: 1.06rem; }
.article-body h2, .article-body h3 { margin-top: 2em; color: var(--navy); font-family: Manrope, sans-serif; line-height: 1.3; }
.article-body p { margin: 0 0 1.25em; }
.article-body ul, .article-body ol { padding-left: 1.4em; }
.article-body-img { margin: 36px auto; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow); }
.article-cta-group { display: flex; flex-wrap: wrap; gap: 14px; margin: 36px 0; }
.article-cta-btn, .publications-btn, .post-nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid var(--teal-dark);
  border-radius: 9px;
  background: var(--teal-dark);
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}
.article-cta-btn:hover, .publications-btn:hover, .post-nav-btn:hover { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn-outlined { background: transparent; color: var(--teal-dark); }
.article-post-nav { margin: 45px 0; padding-top: 28px; border-top: 1px solid var(--line); }
.post-nav-label { font-size: 1.25rem; }
.article-resources { margin: 38px 0; padding: 24px 28px; border-radius: 12px; background: var(--surface); }
.article-resources-label { margin-top: 0; color: var(--navy); font-family: Manrope, sans-serif; font-size: 1.25rem; font-weight: 700; }
.article-resources-list { margin-bottom: 0; }

.comment-section { margin-top: 50px; padding-top: 36px; border-top: 1px solid var(--line); }
.comment-section-title { color: var(--navy); font-family: Manrope, sans-serif; }
.comment-section-subtitle { color: var(--muted); }
.required-star { color: #b42318; }
.comment-form textarea, .comment-form input, .connect-form textarea, .connect-form input {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #bfc6cc;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}
.comment-form textarea, .connect-form textarea { min-height: 150px; resize: vertical; }
.comment-form-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin: 14px 0; }
.comment-form-consent { display: flex; align-items: flex-start; gap: 9px; margin: 18px 0; color: var(--muted); font-size: .9rem; }
.comment-form-consent input { width: auto; margin-top: 5px; }
.comment-form-submit, .connect-submit-btn {
  padding: 13px 23px;
  border: 0;
  border-radius: 8px;
  background: var(--teal-dark);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}
.comment-form-submit:hover, .connect-submit-btn:hover { background: var(--navy); }
.comment-form-submit:disabled, .connect-submit-btn:disabled { opacity: .65; cursor: wait; }
.form-status { margin-top: 14px; padding: 12px 14px; border-radius: 8px; }
.form-status.success, .connect-success-msg { color: #176b39; background: #eaf8ef; }
.form-status.error, .connect-error-msg { color: #9b2721; background: #fff0ee; }

.team-profiles-alt { display: grid; gap: 65px; }
.profile-row { display: grid; grid-template-columns: 1fr 280px; align-items: start; gap: 52px; }
.profile-row.img-left { grid-template-columns: 280px 1fr; }
.profile-image-outer { overflow: hidden; border-radius: 18px; box-shadow: var(--shadow); }
.profile-photo { width: 100%; aspect-ratio: 1 / 1.12; object-fit: cover; }
.profile-content h2 { margin-top: 0; color: var(--navy); font-family: Manrope, sans-serif; font-size: 2rem; }
.profile-name-highlight { color: var(--teal-dark); }
.profile-bio { color: var(--muted); }
.profile-links { display: flex; flex-wrap: wrap; gap: 12px; }

.author-profile-header { display: grid; grid-template-columns: 130px 1fr; align-items: center; gap: 28px; margin-bottom: 46px; }
.author-avatar-outer { width: 120px; height: 120px; display: grid; place-items: center; border-radius: 50%; background: var(--surface); color: var(--navy); }
.author-avatar-icon { width: 64px; height: 64px; }
.author-name-title { margin: 0; color: var(--navy); font-family: Manrope, sans-serif; }
.author-articles-list { display: grid; gap: 22px; }
.author-post-item { padding: 26px; border: 1px solid var(--line); border-radius: 14px; }
.author-post-title { margin: 0 0 8px; font-family: Manrope, sans-serif; }
.author-post-metadata { color: var(--muted); font-size: .9rem; }

.connect-page-hero { text-align: center; }
.connect-form-card { width: min(720px, 100%); margin: 30px auto; padding: 34px; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
.connect-name-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.connect-field { margin-bottom: 17px; }
.connect-field label { display: block; margin-bottom: 6px; color: var(--navy); font-weight: 700; }
.connect-forum-text { text-align: center; }

.connect-section { padding: 48px 20px; background: var(--navy); color: #fff; }
.connect-container { width: min(1080px, 100%); margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 20px; }
.connect-container h2 { margin: 0; font-family: Manrope, sans-serif; font-size: 1.7rem; }
.linkedin-btn { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 9px; background: #fff; color: var(--navy); }
.linkedin-btn:hover { background: var(--teal); color: #fff; }
.site-footer { padding: 26px 20px; background: var(--navy); color: #f1f3f4; text-align: center; font-size: .9rem; }
.footer-container { width: min(1080px, 100%); margin: 0 auto; }
.site-footer p { margin: 0; }

@media (max-width: 850px) {
  .menu-toggle { display: block; }
  .nav-menu {
    position: absolute;
    z-index: 100;
    top: 100%; left: 0; right: 0;
    display: none;
    padding: 12px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 12px 24px rgba(0, 48, 90, .1);
  }
  .nav-menu.is-open { display: block; }
  .nav-menu a { padding: 12px; }
  .hero-container { min-height: auto; padding: 64px 0 72px; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .profile-row { grid-template-columns: 1fr 220px; gap: 30px; }
  .profile-row.img-left { grid-template-columns: 220px 1fr; }
}

@media (max-width: 620px) {
  .nav-container, .hero-container, .container { width: min(100% - 28px, 1160px); }
  .logo img { width: 145px; }
  .features-grid, .articles-grid { grid-template-columns: 1fr; }
  .details-section { padding: 68px 16px; }
  .feature-card { min-height: 0; }
  .profile-row, .profile-row.img-left, .author-profile-header { grid-template-columns: 1fr; }
  .profile-image-container { max-width: 270px; }
  .comment-form-row, .connect-name-row { grid-template-columns: 1fr; }
  .connect-form-card { padding: 24px 18px; }
  .article-title { overflow-wrap: anywhere; }
}

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

/* Solutions page */
.solutions-shell { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }
.solutions-kicker {
  margin: 0 0 16px;
  color: var(--teal-dark);
  font-family: "JetBrains Mono", monospace;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.solutions-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 104px;
  background:
    radial-gradient(circle at 78% 28%, rgba(0, 166, 166, .14), transparent 25rem),
    linear-gradient(135deg, #f8fbfb 0%, #fff 52%, #eef8f7 100%);
}
.solutions-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0, 48, 90, .035) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 48, 90, .035) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to right, transparent, #000 65%);
}
.solutions-hero-grid { position: relative; display: grid; grid-template-columns: 1.06fr .94fr; align-items: center; gap: 72px; }
.solutions-hero-copy h1 {
  margin: 0 0 28px;
  color: var(--navy);
  font-family: Manrope, sans-serif;
  font-size: clamp(3rem, 5.3vw, 5rem);
  line-height: 1.02;
  letter-spacing: -.052em;
}
.solutions-hero-copy h1 span { color: var(--teal-dark); }
.solutions-intro { max-width: 660px; margin: 0; color: var(--muted); font-size: 1.13rem; line-height: 1.75; }
.solutions-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.solutions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 21px;
  border: 2px solid var(--navy);
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.solutions-btn:hover { transform: translateY(-2px); }
.solutions-btn-primary { background: var(--navy); color: #fff; }
.solutions-btn-primary:hover { border-color: var(--teal-dark); background: var(--teal-dark); color: #fff; }
.solutions-btn-secondary { background: transparent; color: var(--navy); }
.solutions-btn-secondary:hover { background: #fff; color: var(--teal-dark); }
.decision-map {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(0, 48, 90, .1);
  border-radius: 20px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 28px 70px rgba(0, 48, 90, .13);
  backdrop-filter: blur(8px);
}
.decision-map-label { margin: 0 0 26px; color: var(--navy); font-family: "JetBrains Mono", monospace; font-size: .68rem; letter-spacing: .11em; text-transform: uppercase; }
.decision-row, .decision-output { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; text-align: center; }
.decision-row span { padding: 8px 2px; border-radius: 6px; background: #eef5f5; color: var(--navy); font-size: .73rem; font-weight: 700; }
.decision-line { position: relative; height: 48px; margin: 0 10%; border-bottom: 1px solid rgba(0, 127, 131, .45); }
.decision-line::after { position: absolute; bottom: -7px; left: calc(50% - 6px); width: 12px; height: 12px; border-right: 1px solid var(--teal-dark); border-bottom: 1px solid var(--teal-dark); background: #fff; content: ""; transform: rotate(45deg); }
.decision-line i { display: inline-block; width: 25%; height: 100%; border-left: 1px solid rgba(0, 127, 131, .4); }
.decision-core { margin: 26px 0 20px; padding: 20px; border-radius: 12px; background: var(--navy); color: #fff; text-align: center; }
.decision-core small { display: block; margin-bottom: 5px; color: #83d7d4; font-family: "JetBrains Mono", monospace; font-size: .64rem; letter-spacing: .15em; }
.decision-core strong { font-family: Manrope, sans-serif; font-size: 1.02rem; letter-spacing: .02em; }
.decision-output span { position: relative; padding-top: 20px; color: var(--teal-dark); font-size: .72rem; font-weight: 700; }
.decision-output span::before { position: absolute; top: 0; left: calc(50% - 3px); width: 6px; height: 6px; border-radius: 50%; background: var(--teal); content: ""; }
.solutions-proof { padding: 32px 0; background: var(--navy); color: #fff; }
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.proof-grid div { padding: 6px 28px; border-left: 1px solid rgba(255, 255, 255, .18); }
.proof-grid div:first-child { padding-left: 0; border-left: 0; }
.proof-grid strong { display: block; margin-bottom: 5px; color: #7dd6d3; font-family: Manrope, sans-serif; font-size: 1rem; line-height: 1.25; }
.proof-grid span { color: rgba(255, 255, 255, .72); font-size: .76rem; line-height: 1.4; }
.solutions-section { padding: 104px 0; background: #fff; }
.solutions-heading { max-width: 690px; margin-bottom: 48px; }
.solutions-heading-wide { max-width: 850px; }
.solutions-heading h2, .solutions-cta h2 {
  margin: 0 0 20px;
  color: var(--navy);
  font-family: Manrope, sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.35rem);
  line-height: 1.12;
  letter-spacing: -.035em;
}
.solutions-heading > p:last-child { margin: 0; color: var(--muted); font-size: 1.08rem; }
.decision-section { background: #fff; }
.decision-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.decision-cards article {
  min-height: 250px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff, #f4f8f8);
  box-shadow: 0 12px 30px rgba(0, 48, 90, .05);
}
.decision-card-number { color: var(--teal-dark); font-family: "JetBrains Mono", monospace; font-size: .7rem; }
.decision-cards h3 { margin: 42px 0 14px; color: var(--navy); font-family: Manrope, sans-serif; font-size: 1.42rem; line-height: 1.3; }
.decision-cards p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.7; }
.solution-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.solution-card {
  display: flex;
  flex-direction: column;
  min-height: 650px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 15px 38px rgba(0, 48, 90, .055);
}
.solution-card-featured { border-top: 4px solid var(--teal); }
.solution-card-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; }
.solution-number { color: #9aa5ae; font-family: "JetBrains Mono", monospace; font-size: .75rem; }
.solution-tag { padding: 5px 9px; border-radius: 4px; background: #eef8f8; color: var(--teal-dark); font-family: "JetBrains Mono", monospace; font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; }
.solution-card h3 { margin: 0; color: var(--navy); font-family: Manrope, sans-serif; font-size: clamp(2rem, 4vw, 3.2rem); line-height: 1; letter-spacing: -.04em; }
.solution-subtitle { min-height: 48px; margin: 12px 0 24px; color: var(--teal-dark); font-weight: 700; line-height: 1.5; }
.solution-card > p:not(.solution-subtitle) { margin: 0 0 20px; color: var(--muted); }
.solution-card ul { margin: 0 0 30px; padding: 0; list-style: none; }
.solution-card li { position: relative; padding: 8px 0 8px 22px; border-bottom: 1px solid #edf0f2; font-size: .92rem; }
.solution-card li::before { position: absolute; top: 17px; left: 1px; width: 7px; height: 7px; border: 2px solid var(--teal-dark); border-radius: 50%; content: ""; }
.solution-outcome { margin-top: auto; padding: 18px 20px; border-radius: 10px; background: var(--surface); }
.solution-outcome span { color: var(--teal-dark); font-family: "JetBrains Mono", monospace; font-size: .62rem; font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }
.solution-outcome p { margin: 5px 0 0; color: var(--navy); font-size: .86rem; font-weight: 600; line-height: 1.55; }
.solution-card-dark { border-color: var(--navy); background: var(--navy); color: #fff; }
.solution-card-dark h3 { color: #fff; }
.solution-card-dark .solution-number { color: rgba(255, 255, 255, .5); }
.solution-card-dark .solution-tag { background: rgba(125, 214, 211, .13); color: #7dd6d3; }
.solution-card-dark .solution-subtitle { color: #7dd6d3; }
.solution-card-dark > p:not(.solution-subtitle) { color: rgba(255, 255, 255, .72); }
.therapy-list { margin-top: 10px; }
.therapy-list > div { display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 13px 0; border-top: 1px solid rgba(255, 255, 255, .14); }
.therapy-list > div > span { display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(125, 214, 211, .55); border-radius: 50%; color: #7dd6d3; font-family: "JetBrains Mono", monospace; font-size: .62rem; }
.therapy-list p { margin: 0; color: rgba(255, 255, 255, .62); font-size: .78rem; line-height: 1.5; }
.therapy-list strong { display: block; color: #fff; font-size: .9rem; }
.solutions-section-tinted { background: #eef2f3; }
.engagement-steps { display: grid; grid-template-columns: repeat(5, 1fr); margin: 0; padding: 0; counter-reset: none; list-style: none; }
.engagement-steps li { position: relative; padding: 0 24px; border-left: 1px solid #cdd6d9; }
.engagement-steps li:first-child { padding-left: 0; border-left: 0; }
.engagement-steps > li > span { color: var(--teal-dark); font-family: "JetBrains Mono", monospace; font-size: .7rem; }
.engagement-steps h3 { margin: 28px 0 12px; color: var(--navy); font-family: Manrope, sans-serif; font-size: 1.35rem; }
.engagement-steps p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.65; }
.nam-section .solutions-heading { margin-bottom: 54px; }
.nam-pathway {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nam-pathway li {
  min-height: 285px;
  padding: 28px 24px;
  border: 1px solid #d6dfe1;
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
}
.nam-pathway li > span {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-family: "JetBrains Mono", monospace;
  font-size: .64rem;
}
.nam-pathway h3 { margin: 34px 0 12px; color: var(--navy); font-family: Manrope, sans-serif; font-size: 1.12rem; line-height: 1.3; }
.nam-pathway p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.65; }
.tox-focus {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 48px;
  margin-top: 68px;
  padding: 42px;
  border-radius: 18px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 22px 55px rgba(0, 48, 90, .14);
}
.tox-focus .solutions-kicker { color: #7dd6d3; }
.tox-focus-intro h3 { margin: 0 0 16px; font-family: Manrope, sans-serif; font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.18; letter-spacing: -.025em; }
.tox-focus-intro > p:last-child { margin: 0; color: rgba(255, 255, 255, .68); font-size: .9rem; }
.tox-focus-summary { align-self: center; margin: 0; color: rgba(255, 255, 255, .72); font-size: .9rem; line-height: 1.75; }
.tox-focus-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.tox-focus-grid > div { padding: 4px 22px; border-left: 1px solid rgba(255, 255, 255, .16); }
.tox-focus-grid > div:first-child { padding-left: 0; border-left: 0; }
.tox-focus-grid span { color: #7dd6d3; font-family: "JetBrains Mono", monospace; font-size: .65rem; }
.tox-focus-grid h4 { margin: 18px 0 10px; font-family: Manrope, sans-serif; font-size: .95rem; }
.tox-focus-grid p { margin: 0; color: rgba(255, 255, 255, .63); font-size: .75rem; line-height: 1.62; }
.nam-caveat { max-width: 920px; margin: 34px auto 0; color: var(--muted); font-size: .86rem; text-align: center; }
.nam-caveat strong { color: var(--navy); }
.capabilities-section { background: #fff; }
.capability-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.capability-card {
  display: flex;
  flex-direction: column;
  min-height: 500px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(0, 48, 90, .055);
}
.capability-card:first-child { border-top: 4px solid var(--teal); }
.capability-card h3 { margin: 0; color: var(--navy); font-family: Manrope, sans-serif; font-size: 2.45rem; line-height: 1; letter-spacing: -.04em; }
.capability-card > p:not(.solution-subtitle) { margin: 0 0 20px; color: var(--muted); font-size: .9rem; }
.capability-card ul { margin: auto 0 0; padding: 0; list-style: none; }
.capability-card li { position: relative; padding: 11px 0 11px 22px; border-bottom: 1px solid #edf0f2; font-size: .84rem; }
.capability-card li::before { position: absolute; top: 19px; left: 1px; width: 6px; height: 6px; border: 2px solid var(--teal-dark); border-radius: 50%; content: ""; }
.outputs-panel {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 48px;
  margin-top: 26px;
  padding: 40px;
  border: 1px solid #cfe0e0;
  border-radius: 16px;
  background: #edf7f6;
}
.outputs-intro h3 { margin: 0 0 12px; color: var(--navy); font-family: Manrope, sans-serif; font-size: 1.55rem; line-height: 1.25; }
.outputs-intro > p:last-child { margin: 0; color: var(--muted); font-size: .84rem; }
.outputs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.outputs-grid > div { display: grid; grid-template-columns: 28px 1fr; gap: 10px; padding: 14px 20px; border-left: 1px solid #c9dcdc; border-bottom: 1px solid #c9dcdc; }
.outputs-grid > div:nth-child(3), .outputs-grid > div:nth-child(4) { border-bottom: 0; }
.outputs-grid span { color: var(--teal-dark); font-family: "JetBrains Mono", monospace; font-size: .63rem; }
.outputs-grid p { margin: 0; color: var(--navy); font-size: .79rem; font-weight: 600; line-height: 1.5; }
.therapeutic-credibility-section { background: #eef2f3; }
.therapeutic-credibility-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
.therapy-panel, .credibility-panel { padding: 38px; border-radius: 18px; }
.therapy-panel { background: var(--navy); color: #fff; }
.therapy-panel .therapy-list { margin: 0; }
.credibility-panel { display: flex; flex-direction: column; justify-content: center; border: 1px solid var(--line); background: #fff; }
.credibility-panel h3 { margin: 0 0 18px; color: var(--navy); font-family: Manrope, sans-serif; font-size: clamp(1.7rem, 3vw, 2.35rem); line-height: 1.18; }
.credibility-panel > p:not(.solutions-kicker) { margin: 0; color: var(--muted); }
.evidence-section { background: #fff; }
.evidence-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.evidence-grid .solutions-heading { position: sticky; top: 125px; margin-bottom: 0; }
.profile-links { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 30px; }
.profile-links a { color: var(--navy); font-size: .85rem; font-weight: 700; text-decoration: none; }
.profile-links a:hover { color: var(--teal-dark); }
.evidence-list { border-top: 1px solid var(--line); }
.evidence-list article { padding: 31px 0; border-bottom: 1px solid var(--line); }
.evidence-list article > span { color: var(--teal-dark); font-family: "JetBrains Mono", monospace; font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
.evidence-list h3 { margin: 9px 0 10px; color: var(--navy); font-family: Manrope, sans-serif; font-size: 1.28rem; }
.evidence-list p { margin: 0; color: var(--muted); font-size: .9rem; }
.solutions-cta { padding: 78px 0; background: var(--teal-dark); }
.solutions-cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 45px; }
.solutions-cta .solutions-kicker { color: #c7f4f1; }
.solutions-cta h2 { max-width: 760px; margin: 0; color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.solutions-btn-light { flex: 0 0 auto; border-color: #fff; background: #fff; color: var(--navy); }
.solutions-btn-light:hover { border-color: var(--navy); background: var(--navy); color: #fff; }

@media (max-width: 950px) {
  .solutions-hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .decision-map { width: min(620px, 100%); }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 22px 0; }
  .proof-grid div:nth-child(3) { padding-left: 0; border-left: 0; }
  .engagement-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .engagement-steps li:nth-child(3), .engagement-steps li:nth-child(5) { padding-left: 0; border-left: 0; }
  .nam-pathway { grid-template-columns: repeat(2, 1fr); }
  .nam-pathway li { min-height: 255px; }
  .tox-focus { grid-template-columns: 1fr; }
  .decision-cards, .capability-cards { grid-template-columns: 1fr; }
  .decision-cards article, .capability-card { min-height: 0; }
  .capability-card ul { margin-top: 10px; }
  .outputs-panel, .therapeutic-credibility-grid { grid-template-columns: 1fr; }
  .evidence-grid { grid-template-columns: 1fr; gap: 50px; }
  .evidence-grid .solutions-heading { position: static; }
}

@media (max-width: 700px) {
  .solutions-shell { width: min(100% - 28px, 1160px); }
  .solutions-hero { padding: 70px 0 76px; }
  .solutions-hero-copy h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .solutions-section { padding: 76px 0; }
  .solution-cards { grid-template-columns: 1fr; }
  .solution-card { min-height: 0; padding: 28px 24px; }
  .solution-subtitle { min-height: 0; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid div, .proof-grid div:nth-child(3) { padding: 3px 0 18px; border-left: 0; border-bottom: 1px solid rgba(255, 255, 255, .14); }
  .proof-grid div:last-child { padding-bottom: 3px; border-bottom: 0; }
  .engagement-steps { grid-template-columns: 1fr; gap: 0; }
  .engagement-steps li, .engagement-steps li:nth-child(3), .engagement-steps li:nth-child(5) { display: grid; grid-template-columns: 38px 1fr; gap: 12px; padding: 20px 0; border-left: 0; border-bottom: 1px solid #cdd6d9; }
  .engagement-steps h3 { margin: 0 0 6px; }
  .nam-pathway { grid-template-columns: 1fr; }
  .nam-pathway li { min-height: 0; }
  .nam-pathway h3 { margin-top: 24px; }
  .tox-focus { gap: 36px; margin-top: 48px; padding: 30px 24px; }
  .tox-focus-grid { grid-template-columns: 1fr; }
  .tox-focus-grid > div, .tox-focus-grid > div:first-child { padding: 20px 0; border-top: 1px solid rgba(255, 255, 255, .16); border-left: 0; }
  .tox-focus-grid h4 { margin: 10px 0 7px; }
  .decision-cards article { min-height: 0; padding: 26px 24px; }
  .decision-cards h3 { margin-top: 26px; }
  .capability-card { padding: 28px 24px; }
  .outputs-panel { gap: 30px; padding: 28px 22px; }
  .outputs-grid { grid-template-columns: 1fr; }
  .outputs-grid > div, .outputs-grid > div:nth-child(3), .outputs-grid > div:nth-child(4) { padding: 14px 0; border-left: 0; border-bottom: 1px solid #c9dcdc; }
  .outputs-grid > div:last-child { border-bottom: 0; }
  .therapy-panel, .credibility-panel { padding: 28px 24px; }
  .solutions-cta-inner { display: block; }
  .solutions-cta .solutions-btn { margin-top: 28px; }
}

@media (max-width: 430px) {
  .decision-map { padding: 20px 14px; }
  .decision-row span, .decision-output span { font-size: .61rem; }
  .decision-core strong { font-size: .86rem; }
  .solutions-actions { display: grid; }
}
