:root {
  --ink: #17211c;
  --ink-soft: #536159;
  --green-950: #102b21;
  --green-900: #173f31;
  --green-800: #1f523e;
  --green-700: #2c684f;
  --leaf: #9ed388;
  --leaf-light: #d9efcd;
  --white: #fff;
  --soft: #f3f6f1;
  --soft-2: #e9efe8;
  --line: #d5ded6;
  --danger: #9b2929;
  --danger-soft: #fff0ef;
  --success: #1f6845;
  --focus: #d2f064;
  --focus-ring: #25513c;
  --shadow: 0 24px 70px rgba(20, 47, 36, .12);
  --shadow-small: 0 12px 30px rgba(20, 47, 36, .08);
  --radius: 14px;
  --radius-lg: 24px;
  --header-h: 82px;
  --shell: 1240px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
}

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

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: .08em;
  text-underline-offset: .16em;
}

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

button,
select {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: .6;
}

[hidden] {
  display: none !important;
}

:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.section--dark :focus-visible,
.audience-section :focus-visible,
.cta-panel :focus-visible,
.holding-page :focus-visible,
.site-footer :focus-visible {
  outline-color: var(--focus);
}

::selection {
  background: var(--leaf-light);
  color: var(--green-950);
}

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

h1,
h2,
h3,
h4 {
  color: var(--ink);
  font-weight: 680;
  letter-spacing: -.035em;
  line-height: 1.06;
}

h1 {
  max-width: 17ch;
  margin-bottom: 28px;
  font-size: clamp(3rem, 6.1vw, 6.1rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
}

h4 {
  font-size: 1.1rem;
}

.shell,
.container {
  width: min(var(--shell), calc(100% - 56px));
  margin-inline: auto;
}

.shell--article {
  width: min(820px, calc(100% - 56px));
}

.section {
  padding-block: clamp(72px, 8vw, 128px);
}

.section--soft {
  background: var(--soft);
}

.section--dark {
  position: relative;
  overflow: hidden;
  background: var(--green-950);
  color: rgba(255, 255, 255, .78);
}

.section--dark::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 52px 52px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, #000 45%, #000);
}

.section--dark > * {
  position: relative;
}

.section--dark h2,
.section--dark h3 {
  color: var(--white);
}

.section--cta {
  padding-block: 0 clamp(72px, 8vw, 128px);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--green-700);
  font-size: .76rem;
  font-weight: 760;
  letter-spacing: .13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.section--dark .eyebrow,
.cta-panel .eyebrow,
.holding-page .eyebrow {
  color: var(--leaf);
}

.lead {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: clamp(1.2rem, 2vw, 1.52rem);
  line-height: 1.45;
}

.section-heading {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 64px);
}

.section-heading--wide {
  max-width: 940px;
}

.section-heading--with-link {
  display: flex;
  max-width: none;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
}

.section-heading--with-link > div {
  max-width: 780px;
}

.section-heading--with-link h2 {
  margin-bottom: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button,
.btn {
  display: inline-flex;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid var(--green-900);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--green-900);
  color: var(--white);
  font-size: .92rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.button:hover,
.btn:hover {
  border-color: var(--green-800);
  background: var(--green-800);
  transform: translateY(-1px);
}

.button--small {
  min-height: 42px;
  padding: 9px 17px;
  font-size: .84rem;
}

.button--outline,
.btn--ghost,
.btn:not(.btn--primary) {
  background: transparent;
  color: var(--green-900);
}

.button--outline:hover,
.btn--ghost:hover,
.btn:not(.btn--primary):hover {
  background: var(--soft-2);
  color: var(--green-950);
}

.button--light {
  border-color: var(--white);
  background: var(--white);
  color: var(--green-950);
}

.button--light:hover {
  border-color: var(--leaf-light);
  background: var(--leaf-light);
  color: var(--green-950);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, .55);
  background: transparent;
  color: var(--white);
}

.button--outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, .1);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-800);
  font-weight: 720;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--focus);
  color: var(--green-950);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: none;
}

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

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  min-height: var(--header-h);
  border-bottom: 1px solid rgba(23, 63, 49, .09);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 26px rgba(16, 43, 33, .08);
}

.header-row {
  position: relative;
  display: flex;
  min-height: var(--header-h);
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 130px;
  height: auto;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: clamp(18px, 2vw, 30px);
}

.desktop-nav > a,
.nav-group > a,
.nav-group__trigger > a {
  position: relative;
  padding-block: 28px;
  color: #35423b;
  font-size: .88rem;
  font-weight: 650;
  text-decoration: none;
}

.desktop-nav > a::after,
.nav-group > a::after,
.nav-group__trigger > a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--green-700);
  content: "";
  transform: scaleX(0);
  transition: transform .18s ease;
}

.desktop-nav > a:hover::after,
.desktop-nav > a[aria-current="page"]::after,
.nav-group:hover > a::after,
.nav-group:focus-within > a::after,
.nav-group__trigger > a:hover::after,
.nav-group__trigger > a[aria-current="page"]::after,
.nav-group--mega:hover .nav-group__trigger > a::after,
.nav-group--mega.is-open .nav-group__trigger > a::after {
  transform: scaleX(1);
}

.nav-group {
  position: relative;
}

.nav-group--mega {
  position: static;
}

.nav-group__trigger {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown-toggle {
  display: inline-grid;
  width: 25px;
  height: 34px;
  margin-left: -3px;
  padding: 0;
  border: 0;
  place-items: center;
  background: transparent;
  color: var(--green-800);
}

.nav-chevron,
.mobile-nav__chevron {
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .16s ease;
}

.nav-dropdown-toggle[aria-expanded="true"] .nav-chevron {
  transform: translateY(2px) rotate(225deg);
}

.nav-popover {
  position: absolute;
  top: calc(100% - 10px);
  right: -24px;
  display: grid;
  width: 240px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-small);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  visibility: hidden;
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
}

.nav-group:not(.nav-group--mega):hover .nav-popover,
.nav-group:not(.nav-group--mega):focus-within .nav-popover,
.nav-group--mega:hover .nav-popover,
.nav-group--mega.is-open .nav-popover {
  opacity: 1;
  pointer-events: auto;
  transform: none;
  visibility: visible;
}

.nav-popover a {
  padding: 9px 11px;
  border-radius: 8px;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 620;
  text-decoration: none;
}

.nav-popover a:hover,
.nav-popover a:focus-visible {
  background: var(--soft);
}

.nav-popover--mega {
  top: calc(100% - 7px);
  right: 0;
  left: 0;
  width: auto;
  padding: 24px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 24px 54px rgba(16, 43, 33, .15);
}

.nav-mega__intro {
  display: flex;
  padding: 0 2px 19px;
  border-bottom: 1px solid var(--line);
  grid-column: 1 / -1;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
}

.nav-mega__intro p {
  margin: 0;
}

.nav-mega__eyebrow {
  color: var(--green-700);
  font-size: .66rem;
  font-weight: 760;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.nav-mega__title {
  padding-top: 2px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.nav-popover .nav-mega__all {
  padding: 8px 11px;
  color: var(--green-800);
  font-weight: 730;
  white-space: nowrap;
}

.nav-mega__group h2 {
  margin: 0 0 8px;
  color: var(--green-700);
  font-size: .69rem;
  font-weight: 760;
  letter-spacing: .09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.nav-mega__group a {
  display: block;
  padding: 7px 8px;
  color: var(--ink);
  font-size: .82rem;
  font-weight: 620;
  line-height: 1.3;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-hub {
  font-size: .84rem;
}

.holding-header-contact {
  margin-left: auto;
}

.menu-toggle {
  display: none;
  min-width: 48px;
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  align-items: center;
  gap: 8px;
  background: var(--white);
  font-size: .8rem;
  font-weight: 730;
}

.menu-toggle__icon {
  display: grid;
  width: 16px;
  gap: 5px;
}

.menu-toggle__icon span {
  display: block;
  height: 2px;
  background: var(--green-950);
  transition: transform .18s ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle__icon span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
}

/* Breadcrumbs */
.breadcrumbs {
  margin-bottom: 48px;
}

.breadcrumbs ol {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  color: var(--ink-soft);
  font-size: .78rem;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.breadcrumbs li:not(:last-child)::after {
  color: #9aa69f;
  content: "/";
}

.breadcrumbs a {
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

/* Page heroes */
.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: 52px clamp(82px, 9vw, 142px);
  background:
    radial-gradient(circle at 90% 22%, rgba(158, 211, 136, .24), transparent 22rem),
    linear-gradient(180deg, var(--soft), #fff);
}

.page-hero::after {
  position: absolute;
  right: -12vw;
  bottom: -18vw;
  width: 52vw;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 63, 49, .08);
  border-radius: 50%;
  box-shadow: 0 0 0 6vw rgba(23, 63, 49, .025), 0 0 0 12vw rgba(23, 63, 49, .02);
  content: "";
}

.page-hero .shell {
  position: relative;
  z-index: 1;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: end;
}

.page-hero h1 {
  margin-bottom: 0;
}

.page-hero__summary {
  padding-bottom: 8px;
}

.page-hero__summary > :last-child {
  margin-bottom: 0;
}

.page-hero--compact h1 {
  margin-bottom: 36px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

/* Home */
.home-hero {
  padding-block: clamp(48px, 7vw, 104px) clamp(84px, 9vw, 140px);
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 18%, rgba(158, 211, 136, .19), transparent 30rem),
    var(--soft);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .93fr) minmax(420px, .8fr);
  gap: clamp(54px, 7vw, 104px);
  align-items: center;
}

.home-hero__content h1 {
  max-width: 12ch;
  font-size: clamp(3.5rem, 6.2vw, 6.7rem);
}

.home-hero__content .lead {
  max-width: 35rem;
  margin-bottom: 32px;
}

.hero-signposts {
  display: flex;
  margin: 42px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(23, 63, 49, .17);
  flex-wrap: wrap;
  gap: 10px 24px;
  list-style: none;
  color: var(--green-800);
  font-size: .82rem;
  font-weight: 680;
}

.hero-signposts li {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-signposts li::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--leaf);
  content: "";
}

.home-hero__media {
  position: relative;
  max-width: 580px;
  margin-left: auto;
}

.home-hero__media::before {
  position: absolute;
  z-index: 0;
  inset: -20px 38px 46px -34px;
  border: 1px solid rgba(23, 63, 49, .22);
  border-radius: 42% 42% 24px 24px;
  content: "";
}

.home-hero__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 560px;
  border-radius: 48% 48% 22px 22px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: -28px;
  bottom: 44px;
  display: flex;
  max-width: 310px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius);
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 255, 255, .94);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(12px);
}

.hero-note p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .84rem;
  line-height: 1.45;
}

.hero-note strong {
  color: var(--ink);
}

.hero-note__marker {
  width: 12px;
  height: 12px;
  margin-top: 5px;
  border: 3px solid var(--green-900);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--leaf-light);
  flex: 0 0 auto;
}

.section--manifesto {
  background: var(--white);
}

.section--manifesto .section-heading h2 {
  font-size: clamp(2.15rem, 3.8vw, 4rem);
  line-height: 1.18;
}

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

.feature-card {
  padding: 28px 6px 0;
  border-top: 1px solid var(--line);
}

.feature-card__line {
  display: block;
  width: 54px;
  height: 4px;
  margin: -30px 0 26px;
  border-radius: 2px;
  background: var(--green-700);
}

.feature-card h3 {
  font-size: 1.45rem;
}

.feature-card p {
  color: var(--ink-soft);
}

.integrated-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(460px, 1fr);
  gap: clamp(70px, 9vw, 150px);
  align-items: center;
}

.integrated-grid .section-heading {
  margin: 0;
}

.integrated-grid .section-heading p:not(.eyebrow) {
  margin-bottom: 30px;
}

.systems-map {
  position: relative;
  min-height: 500px;
}

.systems-map__core,
.systems-map__item {
  position: absolute;
  display: grid;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  place-items: center;
  color: var(--white);
  font-weight: 700;
  text-align: center;
}

.systems-map__core {
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 190px;
  aspect-ratio: 1;
  border-color: var(--leaf);
  background: var(--green-800);
  box-shadow: 0 0 0 34px rgba(158, 211, 136, .07), 0 0 0 86px rgba(158, 211, 136, .04);
  transform: translate(-50%, -50%);
}

.systems-map__item {
  width: 116px;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, .055);
  color: var(--leaf-light);
  font-size: .86rem;
}

.systems-map__item::after {
  position: absolute;
  z-index: -1;
  width: 92px;
  height: 1px;
  background: rgba(158, 211, 136, .34);
  content: "";
  transform-origin: left;
}

.systems-map__item--one { top: 8%; left: 8%; }
.systems-map__item--one::after { top: 85%; left: 84%; transform: rotate(41deg); }
.systems-map__item--two { top: 6%; right: 7%; }
.systems-map__item--two::after { top: 92%; left: 14%; transform: rotate(139deg); }
.systems-map__item--three { right: 4%; bottom: 4%; }
.systems-map__item--three::after { top: 5%; left: 7%; transform: rotate(220deg); }
.systems-map__item--four { bottom: 5%; left: 4%; }
.systems-map__item--four::after { top: 8%; left: 91%; transform: rotate(317deg); }

.service-grid,
.tool-grid,
.article-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.tool-card,
.article-card,
.project-card {
  position: relative;
  display: flex;
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  flex-direction: column;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.service-card:hover,
.tool-card:hover,
.article-card:hover,
.project-card:hover {
  border-color: #a9bbae;
  box-shadow: var(--shadow-small);
  transform: translateY(-4px);
}

.service-card__eyebrow,
.article-card > span,
.project-card > span {
  margin-bottom: 44px;
  color: var(--green-700);
  font-size: .72rem;
  font-weight: 740;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.service-card h2,
.service-card h3,
.tool-card h2,
.tool-card h3,
.article-card h2,
.article-card h3,
.project-card h2 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.service-card p,
.tool-card p,
.article-card p,
.project-card p {
  color: var(--ink-soft);
  font-size: .95rem;
}

.service-card__arrow {
  position: absolute;
  right: 28px;
  bottom: 24px;
  color: var(--green-700);
  font-size: 1.35rem;
}

.service-grid--catalogue,
.tool-grid--catalogue,
.article-grid--catalogue {
  margin-top: 52px;
}

.service-grid--catalogue .service-card {
  min-height: 330px;
}

.service-catalogue__intro {
  max-width: 880px;
  margin-bottom: clamp(58px, 7vw, 92px);
}

.service-catalogue__groups {
  display: grid;
  gap: clamp(68px, 8vw, 112px);
}

.service-category + .service-category {
  padding-top: clamp(58px, 7vw, 88px);
  border-top: 1px solid var(--line);
}

.service-category__header {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(300px, 1fr);
  gap: clamp(30px, 7vw, 90px);
  align-items: end;
}

.service-category__header h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.2vw, 3.2rem);
}

.service-category__header > p {
  max-width: 620px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.service-grid--category {
  margin-top: clamp(30px, 4vw, 48px);
}

.service-grid--category .service-card {
  min-height: 310px;
}

@media (max-width: 900px) {
  .service-grid--category {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.status-pill {
  display: inline-flex;
  width: fit-content;
  min-height: 27px;
  margin-bottom: 38px;
  padding: 5px 10px;
  border: 1px solid #bad2b6;
  border-radius: 999px;
  align-items: center;
  background: #edf7e9;
  color: var(--green-800);
  font-size: .7rem;
  font-weight: 750;
  letter-spacing: .06em;
  line-height: 1;
  text-transform: uppercase;
}

.tool-card .text-link,
.article-card small,
.project-card small {
  margin-top: auto;
  padding-top: 24px;
  color: var(--green-700);
  font-weight: 730;
}

.tool-card > small {
  color: var(--ink-soft);
}

.process-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.process-list li {
  display: grid;
  padding: 30px 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 28px;
}

.process-list > li > span,
.step-number {
  color: var(--green-700);
  font-size: .78rem;
  font-weight: 760;
  letter-spacing: .1em;
}

.process-list h3 {
  margin-bottom: 8px;
  font-size: 1.55rem;
}

.process-list p {
  max-width: 760px;
  margin: 0;
  color: var(--ink-soft);
}

.process-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.process-strip article {
  padding: 32px;
  background: var(--white);
}

.process-strip article > span {
  display: block;
  margin-bottom: 44px;
  color: var(--green-700);
  font-size: .76rem;
  font-weight: 760;
}

.process-strip h2 {
  font-size: 1.4rem;
}

.process-strip p {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.audience-section {
  background: var(--green-900);
  color: rgba(255, 255, 255, .76);
}

.audience-section h2 {
  color: var(--white);
}

.audience-links {
  border-top: 1px solid rgba(255, 255, 255, .18);
}

.audience-links a {
  display: grid;
  padding: 24px 4px;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  grid-template-columns: minmax(190px, .55fr) minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  color: var(--white);
  text-decoration: none;
}

.audience-links a:hover {
  background: rgba(255, 255, 255, .04);
}

.audience-links span {
  font-size: 1.3rem;
  font-weight: 680;
}

.audience-links small {
  color: rgba(255, 255, 255, .7);
  font-size: .9rem;
}

.audience-links b {
  color: var(--leaf);
}

.client-proof {
  border-block: 1px solid var(--line);
}

.client-proof .section-heading {
  margin-bottom: clamp(30px, 4vw, 48px);
}

.client-logo-grid {
  display: grid;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  grid-template-columns: repeat(6, minmax(0, 1fr));
  list-style: none;
}

.client-logo-grid li {
  display: grid;
  min-height: 118px;
  padding: 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  place-items: center;
}

.client-logo-grid img {
  width: min(100%, 150px);
  height: 54px;
  opacity: .72;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter .18s ease, opacity .18s ease;
}

.client-logo-grid li:hover img {
  opacity: 1;
  filter: grayscale(0);
}

/* Content, FAQs and CTAs */
.prose {
  color: var(--ink-soft);
}

.prose--wide {
  max-width: 900px;
  margin-bottom: 58px;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.7vw, 1.32rem);
  line-height: 1.65;
}

.prose--article {
  color: var(--ink);
}

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

.prose a {
  color: var(--green-700);
  font-weight: 620;
}

.prose ul,
.prose ol {
  padding-left: 1.25em;
}

.prose li + li {
  margin-top: .4em;
}

.info-card {
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.info-card h2 {
  font-size: 1.5rem;
}

.info-card .step-number {
  display: block;
  margin-bottom: 34px;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: start;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  padding: 24px 0;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 690;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-list summary span::before,
.faq-list summary span::after {
  position: absolute;
  top: 8px;
  left: 1px;
  width: 16px;
  height: 2px;
  background: var(--green-700);
  content: "";
}

.faq-list summary span::after {
  transform: rotate(90deg);
  transition: transform .16s ease;
}

.faq-list details[open] summary span::after {
  transform: none;
}

.faq-list details .prose {
  padding: 0 44px 24px 0;
}

.cta-panel {
  display: flex;
  min-height: 290px;
  padding: clamp(36px, 6vw, 76px);
  border-radius: var(--radius-lg);
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  background:
    radial-gradient(circle at 92% 12%, rgba(158, 211, 136, .24), transparent 19rem),
    var(--green-900);
  color: rgba(255, 255, 255, .76);
}

.cta-panel > div {
  max-width: 760px;
}

.cta-panel h2 {
  color: var(--white);
}

.cta-panel p:last-child {
  margin-bottom: 0;
}

.cta-panel .button {
  flex: 0 0 auto;
}

/* Articles */
.article-filter,
.tool-filter {
  max-width: 680px;
}

.article-filter label,
.tool-filter label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: .88rem;
  font-weight: 690;
}

.article-hero {
  padding-block: 52px 90px;
  background: var(--soft);
}

.article-hero h1 {
  max-width: 15ch;
  font-size: clamp(3rem, 6vw, 5.7rem);
}

.article-meta {
  display: flex;
  margin: 44px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 16px 36px;
}

.article-meta div {
  display: grid;
  gap: 2px;
}

.article-meta dt {
  color: var(--ink-soft);
  font-size: .72rem;
  font-weight: 670;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.article-meta dd {
  margin: 0;
  font-size: .9rem;
  font-weight: 630;
}

.article-body {
  padding-block: 72px 120px;
}

.article-standfirst {
  margin-bottom: 42px;
  color: var(--green-800);
  font-size: 1.45rem;
  font-weight: 560;
  line-height: 1.5;
}

.article-body .prose--article {
  font-size: 1.08rem;
}

.article-body .prose--article h2,
.article-section h2,
.source-list h2 {
  margin-top: 2.2em;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
}

.article-body .prose--article h3 {
  margin-top: 1.8em;
  font-size: 1.45rem;
}

.article-section {
  padding-top: 10px;
}

.article-section .step-number {
  display: block;
  margin-top: 48px;
}

.source-list {
  margin-top: 64px;
  padding: 30px;
  border-radius: var(--radius);
  background: var(--soft);
}

.source-list h2 {
  margin-top: 0;
  font-size: 1.5rem;
}

.source-list li + li {
  margin-top: 10px;
}

/* Tools */
.tool-status-bar {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.tool-status-bar .shell {
  display: flex;
  min-height: 64px;
  align-items: center;
  gap: 18px;
}

.tool-status-bar .status-pill {
  margin: 0;
}

.tool-status-bar p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .88rem;
}

.tool-shell {
  max-width: 1040px;
}

.tool-shell--narrow {
  max-width: 840px;
}

.tool-intro {
  max-width: 820px;
  margin-bottom: 42px;
  font-size: 1.05rem;
}

.interactive-tool,
.data-tool,
.checklist-tool {
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--soft);
}

.tool-step + .tool-step {
  margin-top: 42px;
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.tool-step fieldset,
.checklist-tool fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.tool-step legend,
.checklist-tool legend {
  margin-bottom: 22px;
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 690;
}

.tool-step legend > span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  margin-right: 8px;
  border-radius: 50%;
  place-items: center;
  background: var(--green-900);
  color: var(--white);
  font-size: .75rem;
}

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

.choice-grid--three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice {
  position: relative;
  display: flex;
  min-height: 108px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  cursor: pointer;
}

.choice:has(input:checked) {
  border-color: var(--green-700);
  box-shadow: inset 0 0 0 1px var(--green-700);
  background: #f2faef;
}

.choice input {
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--green-800);
  flex: 0 0 auto;
}

.choice span {
  display: grid;
  gap: 4px;
}

.choice strong {
  line-height: 1.35;
}

.choice small {
  color: var(--ink-soft);
  line-height: 1.4;
}

.interactive-tool > .button {
  margin-top: 36px;
}

.tool-result {
  margin-top: 28px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid #a6c59f;
  border-radius: var(--radius-lg);
  background: #edf7e9;
}

.tool-result h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.tool-result ul {
  margin-bottom: 28px;
  padding-left: 1.25em;
}

.tool-result dl {
  display: grid;
  margin: 28px 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #bdd4b8;
  border-radius: 10px;
  background: #bdd4b8;
}

.tool-result dl div {
  padding: 16px;
  background: var(--white);
}

.tool-result dt {
  color: var(--ink-soft);
  font-size: .74rem;
  font-weight: 680;
  text-transform: uppercase;
}

.tool-result dd {
  margin: 3px 0 0;
  font-weight: 680;
}

.data-tool__controls {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(220px, 1fr);
  gap: 16px;
}

.data-table-wrap {
  max-height: 660px;
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .88rem;
}

.data-table th,
.data-table td {
  padding: 13px 15px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  position: sticky;
  z-index: 1;
  top: 0;
  background: var(--green-900);
  color: var(--white);
  font-size: .72rem;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.data-table tbody tr:nth-child(even) {
  background: #f8faf7;
}

.result-count {
  margin: 24px 0 12px;
  color: var(--ink-soft);
  font-size: .84rem;
}

.pagination-row {
  display: flex;
  min-height: 48px;
  margin-top: 18px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: .85rem;
  font-weight: 680;
}

.input-action {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.compact-tool {
  padding: 34px;
}

.checklist-progress {
  margin-bottom: 30px;
}

.checklist-progress > div:first-child {
  display: flex;
  margin-bottom: 12px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: .85rem;
}

.checklist-progress strong {
  color: var(--green-800);
}

.progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 99px;
  background: #d8e0d8;
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--green-700);
  transition: width .2s ease;
}

.checklist {
  display: grid;
  margin-bottom: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.check-item {
  display: flex;
  min-height: 82px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  cursor: pointer;
  font-size: .9rem;
  line-height: 1.45;
}

.check-item:has(input:checked) {
  border-color: #9bc092;
  background: #edf7e9;
}

.check-item input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--green-700);
  flex: 0 0 auto;
}

.notice {
  padding: 16px 18px;
  border-left: 4px solid var(--green-700);
  background: var(--soft);
  color: var(--ink-soft);
  font-size: .9rem;
}

.empty-state {
  padding: 34px;
  border: 1px dashed #aab9ae;
  border-radius: var(--radius);
  color: var(--ink-soft);
  text-align: center;
}

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

.form-field,
.field {
  display: grid;
  align-content: start;
  gap: 8px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label,
.field label {
  color: var(--ink);
  font-size: .86rem;
  font-weight: 690;
}

.form-field label > span,
.field label > span {
  color: var(--ink-soft);
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #aebbb1;
  border-radius: 9px;
  background: var(--white);
  font-size: 1rem;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #778a7c;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green-700);
  outline: 3px solid rgba(158, 211, 136, .42);
  outline-offset: 1px;
}

input[type="file"] {
  min-height: auto;
  padding: 11px;
}

.field-hint,
.hint,
.calc-hint {
  margin: 0;
  color: var(--ink-soft);
  font-size: .78rem;
  line-height: 1.45;
}

.field-error {
  margin: 0;
  color: var(--danger);
  font-size: .8rem;
  font-weight: 660;
}

.has-error input,
.has-error select,
.has-error textarea {
  border-color: var(--danger);
  background: var(--danger-soft);
}

.consent {
  display: flex !important;
  align-items: flex-start;
  gap: 12px;
  font-size: .9rem !important;
  font-weight: 500 !important;
}

.consent input {
  width: 21px;
  min-height: 21px;
  margin-top: 2px;
  padding: 0;
  accent-color: var(--green-700);
  flex: 0 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(240px, .55fr) minmax(0, 1fr);
  gap: clamp(52px, 8vw, 120px);
  align-items: start;
}

.contact-aside {
  position: sticky;
  top: calc(var(--header-h) + 30px);
}

.contact-aside h2 {
  font-size: 2.2rem;
}

.contact-form-wrap {
  padding: clamp(25px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--soft);
}

.contact-form > .button {
  margin-top: 28px;
}

.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.error-summary {
  margin-bottom: 28px;
  padding: 22px;
  border: 1px solid #e4a7a1;
  border-radius: 10px;
  background: var(--danger-soft);
}

.error-summary h2 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.error-summary ul {
  margin: 0;
  padding-left: 1.2em;
}

.error-summary a {
  color: var(--danger);
}

.success-panel {
  padding-block: 40px;
}

.success-panel > span {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 50%;
  place-items: center;
  background: var(--green-700);
  color: var(--white);
  font-size: 1.4rem;
}

.success-panel h2 {
  font-size: 2.4rem;
}

.site-search {
  display: grid;
  max-width: 760px;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.search-results {
  display: grid;
  border-top: 1px solid var(--line);
}

.search-results a {
  display: grid;
  padding: 30px 4px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(120px, .25fr) minmax(220px, .55fr) minmax(260px, 1fr) auto;
  gap: 24px;
  align-items: baseline;
  text-decoration: none;
}

.search-results a:hover h2 {
  color: var(--green-700);
}

.search-results span,
.search-results small {
  color: var(--green-700);
  font-size: .76rem;
  font-weight: 700;
}

.search-results h2 {
  margin: 0;
  font-size: 1.35rem;
}

.search-results p {
  margin: 0;
  color: var(--ink-soft);
  font-size: .9rem;
}

.error-page {
  min-height: 66vh;
  padding-block: 110px;
  background: var(--soft);
}

/* Coming soon / maintenance */
.template-coming-soon .site-header {
  position: relative;
}

.holding-page {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  padding-block: clamp(70px, 10vw, 150px);
  overflow: hidden;
  background: var(--green-950);
  color: rgba(255, 255, 255, .78);
}

.holding-page--maintenance {
  background: #202a25;
}

.holding-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: radial-gradient(circle at 70% 50%, #000, transparent 70%);
}

.holding-page__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, .48fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: center;
}

.holding-copy h1 {
  max-width: 12ch;
  color: var(--white);
}

.holding-copy .lead {
  max-width: 700px;
  color: rgba(255, 255, 255, .73);
}

.countdown {
  display: grid;
  max-width: 620px;
  margin: 42px 0 20px;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid rgba(255, 255, 255, .17);
}

.countdown div {
  padding: 20px 8px 18px;
  border-right: 1px solid rgba(255, 255, 255, .17);
}

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

.countdown strong,
.countdown span {
  display: block;
}

.countdown strong {
  color: var(--white);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

.countdown span {
  margin-top: 8px;
  color: var(--leaf);
  font-size: .7rem;
  font-weight: 720;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.launch-date {
  margin-bottom: 32px;
  font-size: .88rem;
}

.holding-card {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .07);
  backdrop-filter: blur(10px);
}

.holding-card h2 {
  color: var(--white);
  font-size: 2rem;
}

.holding-card a {
  color: var(--leaf);
}

.holding-card nav {
  display: grid;
  margin-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .16);
}

.holding-card nav a {
  display: flex;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  align-items: center;
  justify-content: space-between;
  font-weight: 660;
  text-decoration: none;
}

/* Calculator compatibility */
.calc-hero {
  background: var(--soft);
}

.calc-hero .breadcrumbs {
  margin-bottom: 38px;
}

.section-head {
  max-width: 920px;
}

.section-head h1 {
  font-size: clamp(3rem, 6vw, 5.4rem);
}

.calc-actions {
  margin-top: 28px;
}

.alert {
  padding: 14px 16px;
  border-radius: 8px;
  font-size: .9rem;
}

.alert--success {
  border: 1px solid #a5c99c;
  background: #edf7e9;
}

.alert--error {
  border: 1px solid #e0a29c;
  background: var(--danger-soft);
}

.note-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.note-card--light {
  background: var(--soft);
}

.note-card__title {
  font-size: 1.25rem;
}

.note-card__text {
  margin-bottom: 0;
  color: var(--ink-soft);
}

.calc-callout {
  margin-top: 24px;
  padding: 18px;
  border-left: 4px solid var(--green-700);
  background: rgba(255, 255, 255, .78);
}

.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}

/* Footer */
.site-footer {
  padding-top: 76px;
  background: #0e241b;
  color: rgba(255, 255, 255, .68);
}

.footer-grid {
  display: grid;
  padding-bottom: 70px;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, .6fr));
  gap: clamp(36px, 6vw, 80px);
}

.footer-brand {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 8px;
  background: var(--white);
}

.footer-brand img {
  width: 118px;
  height: auto;
}

.footer-intro > p {
  max-width: 360px;
  margin: 24px 0;
  font-size: .9rem;
}

.footer-contact {
  display: block;
  width: fit-content;
  margin-top: 8px;
  color: var(--leaf);
  font-weight: 670;
  text-decoration: none;
}

.footer-intro address {
  margin-top: 18px;
  font-size: .82rem;
  font-style: normal;
}

.footer-column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}

.footer-heading {
  margin-bottom: 12px;
  color: var(--white);
  font-size: .75rem;
  font-weight: 740;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.footer-column a {
  color: rgba(255, 255, 255, .72);
  font-size: .84rem;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  min-height: 84px;
  padding-block: 22px;
  border-top: 1px solid rgba(255, 255, 255, .13);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  font-size: .74rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom nav {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, .68);
}

.company-disclosure {
  max-width: 760px;
  margin-top: 5px !important;
  color: rgba(255, 255, 255, .52);
}

.site-footer--compact {
  padding: 0;
}

.compact-footer {
  display: flex;
  min-height: 112px;
  padding-block: 22px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: .76rem;
}

.compact-footer p {
  margin: 0;
}

.compact-footer .footer-contact {
  margin: 0;
  flex: 0 0 auto;
}

/* Wide displays */
@media (min-width: 1600px) {
  :root {
    --shell: 1380px;
  }

  body {
    font-size: 18px;
  }

  .home-hero__grid {
    grid-template-columns: minmax(0, 1fr) 590px;
  }

  .home-hero__media {
    max-width: 620px;
  }
}

/* Tablet and compact desktop */
@media (max-width: 1180px) {
  .desktop-nav {
    gap: 16px;
  }

  .nav-popover--mega {
    padding: 20px;
    gap: 16px;
  }

  .nav-mega__group a {
    padding-inline: 6px;
    font-size: .78rem;
  }

  .header-hub {
    display: none;
  }

  .home-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(380px, .74fr);
    gap: 54px;
  }

  .home-hero__media img {
    min-height: 510px;
  }

  .search-results a {
    grid-template-columns: 110px minmax(200px, .6fr) 1fr;
  }

  .search-results small {
    display: none;
  }
}

@media (max-width: 1024px) {
  :root {
    --header-h: 72px;
  }

  .client-logo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

  .desktop-nav,
  .header-actions > .button,
  .header-hub {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .no-js .menu-toggle {
    display: none;
  }

  .mobile-nav {
    display: block;
    border-top: 1px solid var(--line);
    background: var(--white);
  }

  .js .mobile-nav {
    position: fixed;
    z-index: 999;
    inset: var(--header-h) 0 0;
    overflow-y: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: transform .24s ease, opacity .2s ease;
  }

  .js .mobile-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .mobile-nav__inner {
    display: grid;
    padding-block: 30px 48px;
    grid-template-columns: 1fr 1fr;
    gap: 28px 50px;
  }

  .mobile-nav nav,
  .mobile-nav__group {
    display: grid;
    align-content: start;
  }

  .mobile-nav nav a,
  .mobile-nav__group a {
    min-height: 48px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 680;
    text-decoration: none;
  }

  .mobile-nav__disclosure {
    border-bottom: 1px solid var(--line);
  }

  .mobile-nav__disclosure summary {
    display: flex;
    min-height: 48px;
    padding: 10px 0;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--ink);
    cursor: pointer;
    font-size: 1.05rem;
    font-weight: 680;
    list-style: none;
  }

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

  .mobile-nav__disclosure summary[aria-current="page"] {
    color: var(--green-700);
  }

  .mobile-nav__disclosure[open] .mobile-nav__chevron {
    transform: translateY(2px) rotate(225deg);
  }

  .mobile-nav__services {
    display: grid;
    padding: 8px 0 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px 20px;
  }

  .mobile-nav nav .mobile-nav__all-services {
    min-height: 40px;
    padding: 7px 9px;
    grid-column: 1 / -1;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--soft);
    color: var(--green-800);
    font-size: .88rem;
  }

  .mobile-nav__service-group p {
    margin: 0 0 5px;
    color: var(--green-700);
    font-size: .65rem;
    font-weight: 760;
    letter-spacing: .08em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .mobile-nav nav .mobile-nav__service-group a {
    min-height: 38px;
    padding: 7px 0;
    font-size: .86rem;
    font-weight: 610;
    line-height: 1.35;
  }

  .mobile-nav__group p {
    margin-bottom: 5px;
    color: var(--green-700);
    font-size: .72rem;
    font-weight: 760;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .mobile-nav__actions {
    display: flex;
    grid-column: 1 / -1;
    gap: 12px;
  }

  .page-hero__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .page-hero__summary {
    max-width: 720px;
  }

  .home-hero__grid {
    grid-template-columns: 1fr;
  }

  .home-hero__content {
    max-width: 790px;
  }

  .home-hero__media {
    width: min(100%, 720px);
    margin: 0;
  }

  .home-hero__media img {
    height: 580px;
    min-height: 0;
    object-position: center 55%;
  }

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

  .systems-map {
    width: min(100%, 620px);
    margin-inline: auto;
  }

  .service-grid,
  .tool-grid,
  .article-grid,
  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .feature-grid > :last-child:nth-child(odd),
  .card-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

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

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

  .contact-aside {
    position: static;
    max-width: 680px;
  }

  .holding-page__inner {
    grid-template-columns: 1fr;
  }

  .holding-card {
    max-width: 700px;
  }

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

  .footer-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .client-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .client-logo-grid li {
    min-height: 104px;
  }

  body {
    font-size: 16px;
  }

  .section {
    padding-block: 72px;
  }

  .section--cta {
    padding-block: 0 72px;
  }

  .breadcrumbs {
    margin-bottom: 34px;
  }

  .page-hero {
    padding-block: 36px 82px;
  }

  .service-category__header {
    grid-template-columns: 1fr;
    gap: 16px;
    align-items: start;
  }

  .service-category__header h2 {
    max-width: none;
  }

  .home-hero {
    padding-block: 54px 88px;
  }

  .home-hero__content h1 {
    font-size: clamp(3rem, 12vw, 5.2rem);
  }

  .home-hero__media img {
    height: 460px;
  }

  .hero-note {
    right: 16px;
    bottom: 18px;
    left: 16px;
    max-width: none;
  }

  .feature-grid,
  .card-grid,
  .service-grid,
  .tool-grid,
  .article-grid,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid > :last-child:nth-child(odd),
  .card-grid > :last-child:nth-child(odd) {
    grid-column: auto;
  }

  .service-card,
  .tool-card,
  .article-card,
  .project-card {
    min-height: 260px;
  }

  .integrated-grid {
    gap: 50px;
  }

  .systems-map {
    min-height: 420px;
  }

  .systems-map__core {
    width: 154px;
  }

  .systems-map__item {
    width: 98px;
  }

  .systems-map__item::after {
    width: 65px;
  }

  .section-heading--with-link {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .audience-links a {
    grid-template-columns: 1fr auto;
    gap: 5px 18px;
  }

  .audience-links small {
    grid-column: 1;
  }

  .audience-links b {
    grid-row: 1 / span 2;
    grid-column: 2;
  }

  .split-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-panel {
    min-height: 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .article-hero {
    padding-block: 36px 72px;
  }

  .article-body {
    padding-block: 56px 82px;
  }

  .choice-grid,
  .choice-grid--three,
  .data-tool__controls,
  .checklist {
    grid-template-columns: 1fr;
  }

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

  .form-field--full {
    grid-column: auto;
  }

  .checklist-progress > div:first-child {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .search-results a {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .search-results small {
    display: block;
  }

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

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

  .compact-footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
  }
}

@media (max-width: 520px) {
  .client-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-logo-grid li {
    min-height: 94px;
    padding: 18px;
  }

  :root {
    --header-h: 68px;
  }

  .shell,
  .container,
  .shell--article {
    width: calc(100% - 32px);
  }

  h1 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.6rem);
  }

  .brand img {
    width: 105px;
  }

  .menu-toggle__label {
    display: none;
  }

  .menu-toggle {
    width: 46px;
    padding-inline: 14px;
  }

  .mobile-nav__inner {
    grid-template-columns: 1fr;
  }

  .mobile-nav__services {
    grid-template-columns: 1fr;
  }

  .mobile-nav__actions {
    grid-column: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .mobile-nav__actions .button {
    width: 100%;
  }

  .home-hero__content h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

  .home-hero__content .button-row,
  .holding-copy .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .home-hero__content .button,
  .holding-copy .button {
    width: 100%;
  }

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

  .home-hero__media::before {
    display: none;
  }

  .home-hero__media img {
    height: 390px;
    border-radius: 22px;
  }

  .systems-map {
    min-height: 360px;
  }

  .systems-map__core {
    width: 130px;
    font-size: .84rem;
  }

  .systems-map__item {
    width: 80px;
    font-size: .7rem;
  }

  .systems-map__item::after {
    width: 48px;
  }

  .service-card,
  .tool-card,
  .article-card,
  .project-card {
    min-height: 240px;
  }

  .process-list li {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 15px;
  }

  .tool-status-bar .shell {
    padding-block: 14px;
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .interactive-tool,
  .data-tool,
  .checklist-tool,
  .contact-form-wrap {
    padding: 20px;
    border-radius: 14px;
  }

  .choice {
    min-height: 96px;
  }

  .input-action,
  .site-search {
    grid-template-columns: 1fr;
  }

  .input-action .button,
  .site-search .button {
    width: 100%;
  }

  .tool-result dl {
    grid-template-columns: 1fr;
  }

  .data-table {
    min-width: 700px;
  }

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

  .countdown div:nth-child(2) {
    border-right: 0;
  }

  .countdown div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, .17);
  }

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

  .footer-intro {
    grid-column: auto;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
  }
}

@media (max-width: 390px) {
  .shell,
  .container,
  .shell--article {
    width: calc(100% - 24px);
  }

  .section {
    padding-block: 60px;
  }

  .section--cta {
    padding-block: 0 60px;
  }

  .page-hero {
    padding-bottom: 66px;
  }

  .home-hero {
    padding-bottom: 72px;
  }

  .home-hero__media img {
    height: 350px;
  }

  .hero-note {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 14px;
  }

  .service-card,
  .tool-card,
  .article-card,
  .project-card,
  .info-card {
    padding: 21px;
  }

  .cta-panel {
    padding: 28px 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .breadcrumbs,
  .calc-actions,
  .button-row {
    display: none !important;
  }

  body {
    color: #000;
    font-size: 11pt;
  }

  .section {
    padding-block: 20px;
  }
}
