:root {
  color-scheme: light;
  --canvas: #ffffff;
  --surface: #ffffff;
  --ink: #0b0d10;
  --muted: #62676f;
  --rule: #dfe2e6;
  --rule-strong: #aeb4bc;
  --action: #2563eb;
  --mint: #43d6b2;
  --mint-tint: #e9fbf6;
  --grid-line: rgba(11, 13, 16, 0.045);
  --accent: var(--action);
  --service-tint: #f4e4de;
  --market-tint: #e5eee6;
  --process-tint: #e5edf0;
  --blue-tint: var(--process-tint);
  --insight-tint: #f2ead8;
  --partner-tint: #dfe9df;
  --career-tint: #f6e4d7;
  --neutral-tint: #ecebe5;
  --sans: 'Instrument Sans', sans-serif;
  --content: 1240px;
  --copy: 76ch;
  --gutter: clamp(18px, 2.5vw, 32px);
  --section: clamp(22px, 2.4vw, 32px);
  --radius: 14px;
  --radius-large: 22px;
}

.page-family-home {
  --family-tint: var(--surface);
}

.page-family-company,
.page-family-contact,
.page-family-legal {
  --family-tint: var(--neutral-tint);
}

.page-family-build-index,
.page-family-build-detail {
  --family-tint: var(--service-tint);
}

.page-family-market-index,
.page-family-market-detail {
  --family-tint: var(--market-tint);
}

.page-family-process {
  --family-tint: var(--process-tint);
}

.page-family-editorial {
  --family-tint: var(--insight-tint);
}

.page-family-partners {
  --family-tint: var(--partner-tint);
}

.page-family-careers,
.page-family-role {
  --family-tint: var(--career-tint);
}

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

html {
  scroll-behavior: auto;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--canvas);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

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

::selection {
  color: var(--surface);
  background: var(--ink);
}

.page-shell {
  overflow: clip;
}

.site-header,
main,
.site-footer,
.route-trail {
  width: min(calc(100% - (2 * var(--gutter))), var(--content));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  min-height: 44px;
  padding: 10px 14px;
  color: var(--surface);
  background: var(--ink);
  transform: translateY(-160%);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 38px);
  min-height: 64px;
  border-bottom: 1px solid var(--rule);
  background: var(--surface);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  margin-left: clamp(18px, 3vw, 40px);
  min-height: 44px;
  color: var(--ink);
  text-decoration: none;
}

.brand-name {
  display: inline-flex;
  align-items: baseline;
  font-size: 0.98rem;
  letter-spacing: -0.035em;
  line-height: 1;
}

.brand-product {
  font-weight: 500;
}

.brand-build {
  font-weight: 600;
}

.brand-cube-mark {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  min-width: 0;
  margin-left: auto;
  font-size: 16px;
  white-space: nowrap;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--muted);
  font-weight: 500;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current='page'] {
  color: var(--ink);
}

.nav-links a[aria-current='page'] {
  font-weight: 600;
}

.nav-links a.nav-home {
  min-width: 44px;
  color: var(--accent);
  font-weight: 600;
}

.nav-links > a[aria-current='page']::after {
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  margin-left: 2px;
  border-radius: 50%;
  background: var(--accent);
  content: '';
}

.nav-dropdown {
  position: static;
}

.nav-dropdown > summary {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 14px;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
}

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

.nav-dropdown > summary::after {
  width: 7px;
  height: 7px;
  margin: -4px 0 0 9px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: '';
  transform: rotate(45deg);
  transition: transform 140ms ease;
}

.nav-dropdown[open] > summary,
.nav-dropdown > summary:hover,
.nav-dropdown > summary:focus-visible,
.nav-dropdown > summary[aria-current='page'] {
  color: var(--ink);
}

.nav-dropdown[open] > summary::after {
  margin-top: 3px;
  transform: rotate(225deg);
}

.nav-dropdown-panel {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
  width: calc(100vw - (2 * var(--gutter)));
  max-width: 1240px;
  padding: 18px;
  border: 1px solid var(--rule);
  border-top: 3px solid var(--accent);
  border-radius: 0 0 18px 18px;
  background: var(--surface);
  box-shadow: 0 24px 46px -36px var(--ink);
  white-space: normal;
  transform: translateX(-50%);
}

.nav-dropdown-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 10px;
  min-height: 44px;
  padding: 9px 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--ink);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}

.nav-dropdown-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
}

.nav-dropdown-cluster {
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: var(--surface);
}

.nav-dropdown-label {
  margin: 0 0 6px;
  color: var(--accent);
  font-size: 16px;
  font-weight: 600;
}

.nav-dropdown-items {
  display: grid;
  gap: 2px;
}

.nav-dropdown-items a {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 6px 0;
  margin: 0;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.35;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.nav-dropdown-items a:hover,
.nav-dropdown-items a:focus-visible,
.nav-dropdown-all:hover,
.nav-dropdown-all:focus-visible {
  color: var(--accent);
}

.nav-menu {
  display: none;
  margin-left: auto;
}

.nav-menu summary {
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 76px;
  min-height: 44px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 600;
  list-style: none;
}

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

.nav-menu:not([open]) .mobile-nav {
  display: none;
}

.header-cta {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 8px;
  margin-right: clamp(18px, 3vw, 40px);
  padding: 0 14px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: var(--surface);
  background: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  transform: translateY(-2px);
  text-decoration: none;
}

.header-cta:hover {
  color: var(--ink);
  background: var(--surface);
}

.route-trail {
  position: sticky;
  top: 65px;
  z-index: 40;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding-left: clamp(18px, 3vw, 40px);
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--rule);
  background: var(--surface);
}

.route-trail a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-width: 44px;
  min-height: 44px;
  color: var(--muted);
  text-decoration: none;
}

.route-trail a:first-child {
  width: 44px;
  flex-basis: 44px;
}

.route-trail a:hover {
  color: var(--ink);
}

.route-trail a:focus-visible {
  color: var(--ink);
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.route-trail [aria-current='page'] {
  color: var(--ink);
}

.site-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
}

.hero {
  align-items: center;
  padding: var(--section) 0;
}

.hero,
.interior-hero,
.page-family-process .hero {
  min-height: 0;
}

body:not(.page-family-home) .hero {
  margin-top: 14px;
  padding-block: clamp(28px, 4vw, 44px);
  padding-inline: clamp(20px, 3vw, 38px);
  border: 1px solid var(--rule);
  border-radius: var(--radius-large);
  background: var(--family-tint);
}

.page-family-build-index .hero {
  background: var(--service-tint);
}

.page-family-build-detail .hero,
.page-family-market-detail .hero {
  background: var(--process-tint);
}

.page-family-market-index .hero {
  background: var(--market-tint);
}

.page-family-process .hero {
  background: var(--process-tint);
}

.page-family-editorial .hero {
  background: var(--insight-tint);
}

.page-family-careers .hero,
.page-family-role .hero {
  background: var(--career-tint);
}

.home-motto {
  position: relative;
  width: fit-content;
  margin: 18px 0 0;
  padding-left: 14px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.home-motto::before {
  position: absolute;
  top: 0.48em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  content: '';
}

body.page-family-build-detail .hero-build-detail {
  border-radius: var(--radius-large) var(--radius-large) var(--radius) var(--radius-large);
  color: var(--ink);
  background: var(--process-tint);
}

body.page-family-market-detail .hero-market-detail {
  color: var(--ink);
  background: var(--process-tint);
}

.hero-market-index,
.hero-market-detail {
  border-radius: var(--radius) var(--radius-large) var(--radius-large) var(--radius-large);
}

.hero-market-detail .hero-main {
  grid-column: 1 / span 5;
}

.hero-market-detail .hero-aside {
  grid-column: 8 / -1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 3vw, 32px);
  background: var(--surface);
}

.hero-process {
  border-radius: var(--radius-large) var(--radius) var(--radius-large) var(--radius-large);
}

.hero-process .hero-aside ul {
  counter-reset: principle;
}

.hero-process .hero-aside li {
  grid-template-columns: 30px 1fr;
  counter-increment: principle;
}

.hero-process .hero-aside li::before {
  content: counter(principle, decimal-leading-zero);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 600;
}

.hero-process .hero-aside li > span {
  display: none;
}

.process-loop .process-step > span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 52px;
  color: var(--surface);
  background: var(--ink);
}

.process-loop .process-step:nth-child(3) > span {
  color: var(--ink);
  background: var(--accent);
}

.hero-editorial {
  align-items: start;
  min-height: 0;
  padding-block: clamp(56px, 7vw, 84px);
  border-radius: var(--radius-large) var(--radius-large) var(--radius-large) var(--radius);
}

.hero-editorial .hero-main {
  grid-column: 2 / span 8;
}

.hero-editorial .hero-display {
  max-width: 24ch;
}

.hero-editorial .hero-aside {
  grid-column: 10 / -1;
  align-self: start;
  margin-top: 34px;
}

.editorial-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-family-editorial .article-section,
.page-family-editorial .article-sources {
  width: min(100%, 900px);
  margin-inline: auto;
}

.hero-careers .hero-aside li,
.hero-role .hero-aside li {
  grid-template-columns: 14px 1fr;
}

.hero-careers .hero-aside li span,
.hero-role .hero-aside li span {
  color: var(--accent);
}

.hero-role {
  border-radius: var(--radius) var(--radius-large) var(--radius-large) var(--radius-large);
}

.hero-partners {
  border-radius: var(--radius-large) var(--radius) var(--radius-large) var(--radius-large);
}

.hero-contact {
  border-radius: var(--radius-large) var(--radius-large) var(--radius) var(--radius-large);
}

.hero-contact .hero-main {
  grid-column: 1 / span 7;
}

.hero-contact .hero-aside {
  grid-column: 8 / -1;
}

.hero-legal {
  min-height: 0;
  padding-block: clamp(56px, 7vw, 84px);
}

.hero-legal .hero-main {
  grid-column: 2 / span 7;
}

.hero-legal .hero-aside {
  grid-column: 9 / -1;
  align-self: start;
}

.story-relationship .hero {
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
}

.story-working-beliefs .hero {
  grid-template-columns: minmax(0, 1fr);
}

.story-relationship .hero-main {
  grid-column: 1;
  max-width: none;
}

.story-working-beliefs .hero-main,
.story-working-beliefs .hero-aside {
  grid-column: 1;
}

.story-relationship .hero-aside {
  grid-column: 2;
  width: 100%;
  margin-top: 0;
}

.story-working-beliefs .hero-aside {
  width: min(100%, 720px);
  margin-top: 12px;
}

.story-conversion-choice .hero {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}

.story-conversion-choice .hero-main,
.story-conversion-choice .hero-aside {
  grid-column: 1 / -1;
}

.story-conversion-choice .hero-intro {
  margin-inline: auto;
}

.story-conversion-choice .hero-actions {
  justify-content: center;
}

.story-conversion-choice .hero-aside {
  width: min(100%, 560px);
  margin-inline: auto;
  text-align: left;
}

.story-practical-standards .hero {
  background: var(--process-tint);
}

.story-practical-standards .hero-main {
  grid-column: 1 / span 7;
}

.story-practical-standards .hero-aside {
  grid-column: 9 / -1;
  margin-top: 0;
  padding: clamp(20px, 3vw, 30px);
  background: var(--surface);
}

.story-decision-lens .hero {
  background: var(--service-tint);
}

.story-decision-lens .hero-main {
  grid-column: 1 / span 7;
}

.story-decision-lens .hero-aside {
  grid-column: 9 / -1;
  margin-top: 0;
  padding: clamp(20px, 3vw, 30px);
  background: var(--surface);
}

.story-decision-lens .split-list {
  width: min(100%, 880px);
}

.story-decision-lens .insight-card {
  min-height: 0;
  background: var(--surface);
}

.story-decision-lens .insight-card > .insight-category {
  margin-bottom: 24px;
}

.story-field-notes .hero {
  background: var(--insight-tint);
}

.story-field-notes .hero-main {
  grid-column: 1 / span 7;
}

.story-field-notes .hero-aside {
  grid-column: 9 / -1;
  margin-top: 0;
  padding: clamp(20px, 3vw, 30px);
  background: var(--surface);
}

.story-field-notes .insight-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.story-field-notes .insight-card {
  min-height: 260px;
  background: var(--surface);
}

.home-hero {
  position: relative;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  margin-top: 20px;
  padding: clamp(36px, 5vw, 60px);
  padding-bottom: clamp(96px, 8vw, 116px);
  border-radius: var(--radius-large);
  background: var(--surface);
}

.hero-main {
  grid-column: 1 / span 8;
  min-width: 0;
}

.home-hero .hero-main {
  grid-column: 1 / span 6;
  align-self: center;
}

.home-hero .eyebrow {
  margin-bottom: 8px;
}

.hero-promise {
  max-width: var(--copy);
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.eyebrow,
.micro-label {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.35;
  font-style: italic;
  text-transform: uppercase;
}

.hero:not(.hero-home) .hero-display {
  max-width: 36ch;
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(28px, 2.5vw, 36px);
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.035em;
}

.hero-intro {
  max-width: 76ch;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1vw, 1.08rem);
  line-height: 1.5;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 18px;
}

.home-credibility {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
}

.home-credibility span + span {
  padding-left: 16px;
  border-left: 1px solid var(--ink);
}

.home-hero-links {
  position: absolute;
  left: clamp(36px, 5vw, 60px);
  bottom: clamp(28px, 3vw, 40px);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.route-home .home-follow-link,
.route-home .home-share-button,
.route-home .home-copy-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 44px;
  padding: 0 14px 0 10px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
}

.home-share-button {
  padding-right: 14px;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.home-copy-button {
  padding-right: 14px;
  background: transparent;
  font-family: inherit;
  cursor: pointer;
}

.home-follow-link .social-icon,
.home-share-button .share-icon,
.home-copy-button .copy-icon {
  width: 16px;
  height: 16px;
}

.home-follow-link:hover,
.home-follow-link:focus-visible,
.home-share-button:hover,
.home-share-button:focus-visible,
.home-copy-button:hover,
.home-copy-button:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--surface);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
}

.button:hover {
  color: var(--surface);
  background: var(--ink);
}

.button-primary {
  min-height: 44px;
  padding: 11px 17px;
  background: var(--accent);
  color: var(--surface);
  border: 1px solid var(--ink);
}

.button-secondary {
  min-height: 44px;
  padding: 11px 17px;
  color: var(--ink);
  border: 1px solid var(--ink);
  background: var(--surface);
}

.button-primary:hover,
.button-primary:focus-visible {
  color: var(--surface);
  background: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--surface);
  background: var(--ink);
}

.button-primary:focus-visible,
.button-secondary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.button-dark {
  color: var(--surface);
  background: var(--ink);
}

.button-dark:hover {
  color: var(--ink);
  background: var(--surface);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--muted);
}

.capability-line {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  max-width: var(--copy);
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.capability-line span {
  color: var(--rule);
}

.home-hero-visual {
  position: relative;
  grid-column: 7 / -1;
  align-self: center;
  min-width: 0;
  margin: 0;
  padding: clamp(16px, 2vw, 28px);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: var(--canvas);
  overflow: hidden;
}

.home-hero-visual::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: '';
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 18px 18px;
}

.home-hero-visual img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border-radius: calc(var(--radius) - 4px);
  object-fit: cover;
  object-position: 38% center;
}

.route-home .page-anchor#what-we-can-do > .home-capabilities,
.route-home .page-anchor#partnerships > .home-partnership {
  margin-block: 18px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--rule);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 24px 60px -54px var(--ink);
}

.route-home .page-sections > .page-anchor {
  margin-block: clamp(34px, 5vw, 68px);
}

.home-hero-visual figcaption {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 3px 8px;
  margin-top: 10px;
  padding-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.home-hero-visual figcaption strong {
  color: var(--ink);
  font-weight: 600;
}

.hero-aside {
  grid-column: 9 / -1;
  align-self: end;
  min-width: 0;
  padding: clamp(18px, 2vw, 24px);
  border-radius: var(--radius);
  background: var(--surface);
}

.hero-aside > ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-aside > ul > li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  padding: 9px 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-aside > ul > li > span {
  color: var(--ink);
  font-weight: 600;
}

.hero-list-marker {
  width: 6px;
  height: 6px;
  align-self: center;
  background: var(--accent);
}

.hero-build-detail .hero-main,
.hero-market-detail .hero-main {
  grid-column: 1 / span 5;
}


.common-starting-point {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 40px);
  padding: clamp(40px, 5vw, 64px) 0;
}

.common-starting-point > .micro-label {
  grid-column: 1 / span 3;
  margin: 5px 0 0;
}

.conversation-list {
  grid-column: 4 / span 7;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.conversation-card {
  max-width: 560px;
  margin: 0;
  padding: 18px 20px;
  background: var(--neutral-tint);
  border-radius: var(--radius);
}

.conversation-card p {
  margin-bottom: 10px;
}

.conversation-card cite {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.conversation-card-1 {
  margin-right: clamp(18px, 5vw, 64px);
}

.conversation-card-2 {
  margin-left: clamp(18px, 5vw, 64px);
  background: var(--ink);
  color: var(--surface);
}

.conversation-card-2 cite {
  color: var(--rule);
}

.section-block,
.faq-section,
.article-section {
  padding: var(--section) 0;
}

.page-layout {
  display: grid;
  grid-template-columns: minmax(170px, 0.16fr) minmax(0, 1fr);
  gap: clamp(20px, 2vw, 30px);
  align-items: start;
  margin-top: clamp(18px, 2vw, 26px);
}

.page-sections {
  min-width: 0;
}

.page-index {
  position: sticky;
  top: 116px;
  padding: 0;
}

.page-index > p {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-index nav {
  display: grid;
  gap: 2px;
  padding-top: 8px;
  border-top: 1px solid var(--rule);
}

.page-index a {
  min-height: 44px;
  padding: 10px 12px;
  border-left: 2px solid transparent;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.25;
  text-decoration: none;
}

.page-index a:hover,
.page-index a:focus-visible {
  border-left-color: var(--accent);
  background: var(--neutral-tint);
  color: var(--ink);
  text-decoration: none;
}

.page-anchor {
  position: relative;
  scroll-margin-top: 24px;
}

.page-anchor + .page-anchor {
  margin-top: 10px;
}

.section-block {
  scroll-margin-top: 24px;
}

.buyer-answer-profile [id] {
  scroll-margin-top: 128px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 6px;
  max-width: 1000px;
  margin-bottom: clamp(14px, 1.6vw, 20px);
}

.section-heading .eyebrow {
  grid-column: auto;
  margin: 0;
  color: var(--accent);
  font-style: italic;
}

.section-heading h2,
.cta-panel h2,
.article-heading h2 {
  font-family: var(--sans);
  font-size: clamp(24px, 2.2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.section-heading h2 {
  grid-column: auto;
  max-width: 48ch;
  margin: 0;
  font-weight: 500;
}

.section-heading > p:last-child {
  grid-column: auto;
  max-width: var(--copy);
  margin: 2px 0 0;
  color: var(--muted);
}

.section-actions {
  margin-top: 24px;
}

.innovation-profile {
  display: grid;
  gap: clamp(12px, 1.5vw, 18px);
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin-bottom: clamp(18px, 2.5vw, 28px);
}

.innovation-profile > .section-block {
  min-width: 0;
  padding: clamp(20px, 2.5vw, 30px);
  border-top: 1px solid var(--rule-strong);
  background: var(--surface);
}

.innovation-profile > .section-block > h2 {
  max-width: 28ch;
  margin-bottom: clamp(22px, 3vw, 34px);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.hero-text-led .hero-main {
  grid-column: 1 / -1;
  max-width: 820px;
}

.buyer-answer-profile {
  display: grid;
  gap: 0;
}

.buyer-answer-profile > .section-block {
  padding: clamp(20px, 2.5vw, 32px);
  border-top: 1px solid var(--rule-strong);
}

.buyer-help {
  background: var(--process-tint);
}

.buyer-problems ol,
.product-deliverables ul,
.home-engagements > div {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-index {
  display: grid;
  margin: 0;
}

.service-row {
  min-width: 0;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  color: var(--ink);
  text-decoration: none;
}

.service-row h3 {
  margin: 0;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 500;
}

.service-row p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.service-row:hover,
.service-row:focus-visible {
  background: var(--process-tint);
}

.buyer-problems li,
.product-deliverables li,
.home-engagements a {
  min-width: 0;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
}

.responsive-table {
  overflow-x: auto;
}

.buyer-help table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.buyer-help th,
.buyer-help td {
  padding: 22px 18px;
  border-top: 1px solid var(--rule-strong);
  text-align: left;
  vertical-align: top;
}

.capability-rows > *,
.first-engagement-frame > *,
.innovation-project-details > * {
  min-width: 0;
}
.capability-rows {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 20px);
  background: var(--process-tint);
}

.capability-rows > div {
  min-width: 0;
  border: 1px solid var(--rule);
  border-radius: 18px;
  background: var(--surface);
  overflow: hidden;
}

.capability-rows h2 {
  margin: 0;
  padding: 17px 18px;
  border-bottom: 1px solid var(--rule);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 500;
  line-height: 1.3;
}

.capability-rows ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-rows li {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 16px;
  min-width: 0;
  padding: 14px 18px;
}

.capability-rows li + li {
  border-top: 1px solid var(--rule);
}

.capability-rows li strong {
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.buyer-help td span,
.capability-rows li span,
.product-deliverables p {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.compact-workflow {
  align-self: center;
  min-width: 0;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--rule-strong);
  border-radius: 24px 24px 24px 7px;
  background: var(--surface);
}

.hero-build-detail .compact-workflow,
.hero-market-detail .compact-workflow {
  grid-column: 7 / -1;
}

.compact-workflow ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--rule);
}

.compact-workflow li {
  display: grid;
  gap: 8px;
  align-content: start;
  min-width: 0;
  padding: 16px;
  background: var(--surface);
}

.compact-workflow li span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.compact-workflow li strong {
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.compact-workflow li .workflow-state {
  color: var(--ink);
  letter-spacing: 0;
}

.compact-workflow li.is-selected {
  box-shadow: inset 3px 0 0 var(--mint);
  background: var(--mint-tint);
}

.compact-workflow figcaption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1rem;
}

.home-partnership {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  background: var(--process-tint);
}

.first-engagement-frame {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(22px, 3vw, 38px);
  align-items: center;
  max-width: 100%;
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--rule);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 20px 48px -44px var(--ink);
}

.first-engagement-frame > div:first-child {
  grid-column: 1;
  grid-row: 1;
}

.first-engagement-frame > div:first-child .eyebrow {
  margin-bottom: 10px;
  color: var(--muted);
  font-style: normal;
}

.first-engagement-frame h2 {
  max-width: 22ch;
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.14;
}

.first-engagement-frame > div:first-child > p:last-child {
  max-width: 44ch;
  color: var(--muted);
}

.innovation-project-details {
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  min-width: 0;
  padding-left: clamp(20px, 3vw, 34px);
  border-left: 1px solid var(--rule);
}

.innovation-project-details h3 {
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.innovation-project-details ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.86rem;
}

.home-engagements small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.home-engagements small,
.innovation-project-details li {
  font-size: 1rem;
  line-height: 1.5;
}

.first-engagement-frame > .button {
  grid-column: 1;
  grid-row: 2;
  min-height: 44px;
  justify-self: start;
  border-color: var(--action);
  color: var(--surface);
  background: var(--action);
  white-space: nowrap;
}

.first-engagement-frame > .button:hover,
.first-engagement-frame > .button:focus-visible {
  border-color: var(--ink);
  color: var(--surface);
  background: var(--ink);
}

.page-family-build-detail .page-anchor > .section-block,
.page-family-market-detail .page-anchor > .section-block {
  padding-inline: clamp(22px, 3vw, 38px);
  border-top: 1px solid var(--ink);
  background: var(--surface);
}

.page-family-build-detail .page-anchor + .page-anchor,
.page-family-market-detail .page-anchor + .page-anchor {
  margin-top: 14px;
  border-top: 0;
}

.inline-directory-groups,
.capability-directory-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(32px, 6vw, 80px);
}

.inline-directory-groups {
  row-gap: clamp(30px, 4vw, 48px);
}

.inline-directory-group {
  min-width: 0;
}

.inline-directory-group h3 {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inline-directory-links {
  display: grid;
}

.inline-directory-link,
.capability-directory-link {
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 12px 14px;
  border-top: 1px solid var(--rule);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.35;
  text-decoration: none;
}

.inline-directory-links > :last-child,
.capability-directory-links > :nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--rule);
}

.inline-directory-link:hover,
.inline-directory-link:focus-visible,
.capability-directory-link:hover,
.capability-directory-link:focus-visible {
  background: var(--family-tint);
}

.capability-directory .section-heading {
  margin-bottom: 28px;
}

.technology-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(28px, 5vw, 72px);
}

.technology-group {
  display: grid;
  grid-template-columns: minmax(130px, 0.75fr) minmax(0, 1.25fr);
  gap: 20px;
  padding: 28px 0;
  border-top: 1px solid var(--rule);
}

.technology-group:nth-last-child(-n + 2) {
  border-bottom: 1px solid var(--rule);
}

.technology-group h3,
.technology-entry h4 {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
}

.technology-group h3 {
  font-size: 1rem;
}

.technology-group p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.technology-entries {
  display: grid;
  gap: 14px;
}

.technology-entry h4 {
  font-size: 0.78rem;
}

.technology-entry ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 14px;
  margin: 6px 0 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.4;
  list-style: none;
}

.technology-entry li::after {
  margin-left: 14px;
  color: var(--rule);
  content: ' /';
}

.technology-entry li:last-child::after {
  content: '';
}

.grouped-directory .section-heading {
  margin-bottom: clamp(32px, 5vw, 56px);
}

.directory-clusters {
  display: grid;
  gap: clamp(40px, 6vw, 72px);
}

.directory-cluster {
  display: grid;
  grid-template-columns: minmax(200px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(28px, 5vw, 72px);
}

.directory-cluster-heading h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.directory-cluster-heading p {
  max-width: 38ch;
  color: var(--muted);
}

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

.directory-link {
  display: flex;
  flex-direction: column;
  min-height: 124px;
  padding: 18px 16px;
  border: 1px solid var(--rule);
  border-radius: 18px 18px 18px 5px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
}

.directory-link:hover,
.directory-link:focus-visible {
  border-color: var(--mint);
  background: var(--mint-tint);
}

.directory-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.directory-link strong {
  margin-bottom: 10px;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.25;
}

.directory-link span {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 1rem;
}

.directory-link small {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.market-story-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(32px, 6vw, 80px);
}

.market-story-columns section {
  min-width: 0;
}

.market-story-columns ol {
  display: grid;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: market-story;
}

.market-story-columns li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 6px 14px;
  counter-increment: market-story;
}

.market-story-columns li::before {
  grid-row: 1 / span 2;
  color: var(--muted);
  content: counter(market-story, decimal-leading-zero);
  font-size: 0.72rem;
  font-weight: 600;
}

.market-story-columns li strong,
.market-story-columns li span {
  grid-column: 2;
}

.market-story-columns li strong {
  font-weight: 500;
}

.market-story-columns li span {
  color: var(--muted);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 52px);
}

.audience-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 12px 0 8px;
  color: var(--ink);
  text-decoration: none;
}

.route-home .audience-card {
  min-height: 0;
  padding: 22px 14px;
  border-top: 1px solid var(--rule);
  border-radius: 0;
  background: transparent;
}

.route-home .audience-card:nth-child(1) {
  background: transparent;
}

.route-home .audience-card:nth-child(2) {
  background: transparent;
}

.route-home .audience-card:nth-child(3) {
  background: transparent;
}

.route-home .audience-card:hover,
.route-home .audience-card:focus-visible {
  background: var(--process-tint);
}

.card-marker {
  display: block;
  margin-bottom: clamp(24px, 4vw, 44px);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.audience-card h3 {
  max-width: 22ch;
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 1.5vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.audience-card p {
  max-width: 48ch;
  margin-bottom: 18px;
  color: var(--muted);
}

.card-destination {
  align-self: flex-start;
  margin-top: auto;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-weight: 500;
}

.route-home .section-heading h2 {
  max-width: 38ch;
  font-size: clamp(26px, 2.25vw, 32px);
}

.route-home .section-heading .eyebrow {
  font-size: 1rem;
}

.route-home .hero-display {
  max-width: 18ch;
  font-size: clamp(32px, 3.3vw, 44px);
}

.route-home .page-anchor#how-it-works > .home-process-flow,
.route-home .page-anchor#experience > .proof-panel {
  margin-block: clamp(14px, 2vw, 24px);
  padding: clamp(28px, 4vw, 52px) clamp(22px, 4vw, 64px);
  border-radius: var(--radius);
}

.route-home .page-anchor#how-it-works > .home-process-flow {
  background: var(--surface);
}

.route-home .page-anchor#experience > .proof-panel {
  background: var(--surface);
}

.route-home .page-anchor#how-it-works > .home-process-flow .section-heading h2,
.route-home .page-anchor#experience > .proof-panel .section-heading h2 {
  overflow-wrap: normal;
}

.route-home .home-hero {
  min-height: auto;
  padding: clamp(28px, 4vw, 56px);
}

.route-home .home-hero .hero-main {
  align-self: center;
}

.route-home .home-hero .hero-intro {
  max-width: 38ch;
}

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

.home-capability-card {
  display: flex;
  min-width: 0;
  min-height: 170px;
  flex-direction: column;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid var(--rule);
  border-radius: 18px 18px 18px 7px;
  color: var(--ink);
  background: var(--surface);
  text-decoration: none;
}

.home-delivery-path {
  display: flex;
  min-width: 0;
  min-height: 270px;
  flex-direction: column;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid var(--rule);
  border-radius: var(--radius-large) var(--radius-large) var(--radius-large) 7px;
  color: var(--ink);
  background: var(--surface);
  text-decoration: none;
}

.home-capability-card > span,
.home-delivery-path > span,
.home-story-step > span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.home-capability-card h3,
.home-delivery-path h3,
.home-story-step h3 {
  margin: 18px 0 10px;
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.home-capability-card p,
.home-delivery-path p,
.home-story-step p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1rem;
}

.home-delivery-path .home-delivery-fit {
  margin-bottom: 12px;
  color: var(--muted);
}

.home-delivery-label,
.home-delivery-model strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-delivery-path small {
  display: block;
  margin-top: 2px;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.35;
}

.home-delivery-path ul {
  display: grid;
  gap: 6px;
  margin: 8px 0 14px;
  padding: 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.35;
  list-style: none;
}

.home-delivery-path li {
  padding-left: 14px;
  position: relative;
}

.home-delivery-path li::before {
  position: absolute;
  top: 0.52em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  content: '';
}

.home-delivery-path .home-delivery-model {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.93rem;
}

.home-capability-card b,
.home-delivery-path b {
  align-self: flex-start;
  margin-top: auto;
  font-size: 1rem;
  font-weight: 600;
}

.home-capability-card:hover,
.home-capability-card:focus-visible,
.home-delivery-path:hover,
.home-delivery-path:focus-visible {
  border-color: var(--rule-strong);
  transform: translateY(-2px);
}

.home-delivery-grid {
  margin-top: clamp(24px, 3vw, 36px);
}

.home-capabilities .section-actions .button,
.home-story-actions .button {
  min-height: 44px;
}

.home-story {
  padding: clamp(28px, 4vw, 52px) clamp(22px, 4vw, 64px);
  border-radius: var(--radius-large);
  background: var(--process-tint);
}

.home-story .section-heading {
  margin-bottom: clamp(24px, 3vw, 36px);
}

.home-story-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--rule-strong);
  background: var(--rule-strong);
}

.home-story-step {
  min-width: 0;
  min-height: 252px;
  padding: clamp(18px, 2vw, 24px);
  background: var(--surface);
}

.home-story-step h3 {
  margin-top: 28px;
}

.home-story-output {
  display: block;
  padding-top: 14px;
  border-top: 1px solid var(--rule);
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

.home-story-step:hover {
  background: var(--mint-tint);
  box-shadow: inset 3px 0 0 var(--mint);
}

.home-story-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 20px;
}

.home-story-actions .section-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin: 0;
}

.home-engagements > div {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.home-engagements a {
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid var(--rule);
  border-radius: var(--radius-large) var(--radius-large) var(--radius-large) 7px;
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
}

.home-engagements a > span {
  color: var(--accent);
  font-size: 1rem;
  font-weight: 600;
}

.home-engagements a > p {
  margin: 22px 0 12px;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.3;
}

.home-engagements a > strong {
  font-size: 1rem;
  font-weight: 500;
}

.home-engagements a:hover,
.home-engagements a:focus-visible {
  border-color: var(--rule-strong);
  background: var(--mint-tint);
  transform: translateY(-2px);
}

.route-home .proof-panel,
.home-partnership {
  align-items: start;
  padding: clamp(28px, 4vw, 52px) clamp(22px, 4vw, 64px);
  border-radius: var(--radius-large);
}

.route-home .proof-panel {
  gap: clamp(28px, 5vw, 64px);
  background: var(--surface);
}

.home-partnership {
  border: 1px solid var(--rule);
}

.home-partnership ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-partnership li {
  display: grid;
  gap: 6px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
}

.home-partnership li span {
  color: var(--muted);
  font-size: 1rem;
}

.home-process-flow .process-rail {
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 56px);
  margin-top: clamp(28px, 4vw, 48px);
}

.home-process-flow .process-step {
  position: relative;
  min-height: 0;
  padding: 0;
}

.home-process-flow .process-step + .process-step::before {
  position: absolute;
  top: 18px;
  right: calc(100% + clamp(12px, 2vw, 28px));
  width: clamp(16px, 3vw, 42px);
  border-top: 1px solid var(--rule-strong);
  content: '';
}

.home-process-flow .process-step > span {
  width: 36px;
  height: 36px;
  margin-bottom: clamp(24px, 3vw, 38px);
  border: 1px solid var(--rule-strong);
  background: var(--surface);
}

.process-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(20px, 3vw, 40px);
}

.story-connected-moves .process-rail {
  counter-reset: process;
}

.story-connected-moves .process-step {
  counter-increment: process;
}

.story-opportunity-paths .split-item {
  background: var(--surface);
}

.process-step {
  min-width: 0;
  min-height: 200px;
  padding: 20px 0;
}

.process-step > span {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: clamp(32px, 4vw, 48px);
  border-radius: 50%;
  color: var(--ink);
  background: var(--process-tint);
  font-size: 0.76rem;
  font-weight: 600;
}

.process-step h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 500;
}

.process-step p {
  color: var(--muted);
  font-size: 0.95rem;
}

:where(.process-loop) .process-step {
  min-height: 220px;
  padding: 22px 12px;
}

.process-timeline .process-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  counter-reset: timeline;
}

.process-timeline .process-step {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr);
  gap: 8px 14px;
  min-height: 0;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid var(--rule);
  border-radius: 16px 16px 16px 6px;
  background: var(--surface);
  counter-increment: timeline;
}

.process-timeline .process-step > span {
  width: auto;
  height: auto;
  margin: 0;
  border-radius: 0;
  color: var(--muted);
  background: transparent;
}

.process-timeline .process-step h3,
.process-timeline .process-step p {
  margin: 0;
}

.process-step-detail {
  display: grid;
  grid-column: 1 / -1;
  gap: 10px;
}

.process-output,
.process-decision {
  font-size: 0.86rem !important;
  line-height: 1.45;
}

.process-output strong,
.process-decision strong {
  color: var(--ink);
  font-weight: 600;
}

.commercial-clarity-models {
  background: var(--process-tint);
}

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

.commercial-clarity-models .commercial-clarity-card,
.commercial-clarity-milestones .commercial-clarity-card {
  background: var(--surface);
}

.commercial-clarity-milestones .commercial-clarity-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.section-link {
  margin-top: 24px;
}

.proof-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(40px, 7vw, 88px);
  padding: var(--section) 0;
  color: var(--ink);
  background: transparent;
}

.proof-copy {
  min-width: 0;
}

.proof-panel .section-heading {
  display: block;
  margin-bottom: 24px;
}

.proof-panel .section-heading .eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-style: italic;
}

.proof-panel .section-heading h2 {
  max-width: 24ch;
  margin-bottom: 14px;
  color: var(--ink);
}

.proof-panel .section-heading > p:last-child {
  max-width: 56ch;
  margin: 0;
  color: var(--muted);
}

.proof-panel .text-link {
  color: var(--ink);
}

.proof-list article {
  padding: 20px 0;
}

.proof-list h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  font-weight: 500;
}

.proof-list p {
  color: var(--muted);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}

.insight-card {
  display: flex;
  flex-direction: column;
  min-height: 240px;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--insight-tint);
  text-decoration: none;
}

.insight-card:hover,
.insight-card:focus-visible {
  background: var(--surface);
}

.insight-card > .insight-category {
  margin-bottom: auto;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-style: italic;
  text-transform: uppercase;
}

.insight-card h3 {
  margin: 36px 0 10px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.25;
}

.insight-card p {
  margin-bottom: 20px;
  color: var(--muted);
}

.insight-card > .insight-reading-time {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.8rem;
}

.insight-card b {
  font-size: 0.9rem;
  font-weight: 600;
}

.split-section .section-heading {
  margin-bottom: 28px;
}

.commercial-clarity {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--rule);
  border-radius: var(--radius-large) var(--radius-large) var(--radius-large) 8px;
  background: var(--surface);
}

.commercial-clarity .section-heading {
  margin-bottom: clamp(22px, 3vw, 32px);
}

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

.commercial-clarity-card {
  min-width: 0;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid var(--rule);
  border-radius: 16px 16px 16px 6px;
  background: var(--surface);
}

.commercial-clarity-card h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.commercial-clarity-card p,
.commercial-clarity-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.commercial-clarity-deliverables .commercial-clarity-card:nth-child(3n + 2) {
  background: var(--process-tint);
}

.commercial-clarity-ownership {
  background: var(--process-tint);
}

.commercial-clarity-ownership .commercial-clarity-card {
  background: var(--surface);
}

.commercial-clarity-note {
  max-width: 82ch;
  margin-top: 16px;
}

.split-item {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: clamp(14px, 2vw, 24px);
  margin-bottom: 8px;
  padding: 16px clamp(12px, 1.5vw, 20px);
  border-radius: var(--radius);
}

.split-item:hover {
  background: var(--family-tint);
}

.split-item > span {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
}

.split-item > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(280px, 1.3fr);
  gap: clamp(20px, 3vw, 44px);
}

.split-item h3 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 500;
}

.split-item-status {
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 8px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--family-tint);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.split-item p {
  max-width: var(--copy);
  color: var(--muted);
}

.split-item-copy .text-link {
  margin-top: 12px;
}

.comparison-page .hero {
  border-radius: var(--radius-large) var(--radius) var(--radius-large) var(--radius-large);
}

.comparison-page .split-list {
  width: 100%;
}

.comparison-page .split-item {
  grid-template-columns: 48px minmax(0, 1fr);
  margin: 0;
  padding: 22px 12px;
  border-top: 1px solid var(--rule);
  border-radius: 0;
}

.comparison-page .split-item:hover,
.comparison-page .split-item:focus-within {
  background: transparent;
}

.comparison-page .split-item > div {
  grid-template-columns: minmax(180px, 0.8fr) minmax(260px, 1.2fr);
}

.comparison-page .article-section {
  padding-block: clamp(36px, 5vw, 64px);
  border-top: 1px solid var(--rule);
}

.fit-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: clamp(40px, 7vw, 88px);
  margin: var(--section) 0;
  padding: clamp(32px, 5vw, 56px);
  border-radius: var(--radius-large);
  background: var(--family-tint);
}

.fit-panel .section-heading {
  display: block;
  margin: 0;
}

.fit-panel .section-heading .eyebrow {
  margin-bottom: 16px;
}

.fit-panel .section-heading h2 {
  max-width: 24ch;
  margin-bottom: 14px;
}

.fit-panel .section-heading > p:last-child {
  max-width: 58ch;
  margin: 0;
}

.fit-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-panel li {
  position: relative;
  padding: 15px 8px 15px 28px;
}

.fit-panel li::before {
  position: absolute;
  top: 15px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: '';
}

.article-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(40px, 7vw, 88px);
}

.article-heading,
.article-copy {
  min-width: 0;
}

.article-heading h2 {
  max-width: 24ch;
  margin: 0;
  font-weight: 500;
  overflow-wrap: anywhere;
}

.article-copy {
  max-width: var(--copy);
}

.article-copy p {
  margin-bottom: 18px;
  color: var(--muted);
}

.article-copy a,
.page-family-legal main p a,
.workflow-note a,
.frame-fallback a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-copy .article-lede {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 500;
}

.article-sources {
  padding: var(--section) 0;
}

.article-sources .section-heading {
  margin-bottom: 24px;
}

.article-sources ul {
  max-width: var(--copy);
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-sources a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 8px 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.article-sources a:hover,
.article-sources a:focus-visible {
  color: var(--ink);
  text-decoration-color: currentColor;
}

.cta-panel {
  margin: var(--section) 0;
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--radius-large);
  background: var(--family-tint);
}

.page-family-build-detail .cta-panel,
.page-family-market-detail .cta-panel {
  border: 1px solid var(--rule);
  background: var(--surface);
}

.route-home .cta-panel {
  border: 1px solid var(--rule);
  background: var(--surface);
}

.cta-panel .eyebrow {
  margin-bottom: 14px;
}

.cta-panel h2 {
  max-width: 44ch;
  margin: 0;
  font-weight: 500;
}

.cta-panel > p:not(.eyebrow) {
  max-width: var(--copy);
  margin: 14px 0 0;
  color: var(--muted);
}

.cta-actions {
  margin-top: 22px;
}

.contact-choice {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin: var(--section) 0 0;
  padding: clamp(24px, 4vw, 40px);
  border-radius: var(--radius-large);
  background: var(--blue-tint);
}

.contact-choice h2 {
  max-width: 22ch;
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.contact-choice .cta-actions {
  margin: 0;
}

.workflow-section,
.hosted-form-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 6vw, 80px);
  padding: var(--section) 0;
  scroll-margin-top: 24px;
}

.booking-workflow {
  grid-template-columns: minmax(0, 1fr);
  margin: 24px 0;
  padding: 24px 0;
  border-top: 1px solid var(--rule);
  border-radius: 0;
  background: transparent;
}

.contact-calendar {
  align-items: start;
  margin-top: 16px;
}

.contact-calendar .workflow-copy .eyebrow {
  margin-bottom: 16px;
}

.project-brief-workflow {
  padding-top: calc(var(--section) / 2);
  border-top: 1px solid var(--rule);
}

.workflow-copy,
.hosted-form-copy {
  min-width: 0;
}

.workflow-copy h2,
.hosted-form-copy h2 {
  max-width: 24ch;
  margin: 0;
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.workflow-copy > p:not(.eyebrow, .workflow-note),
.hosted-form-copy > p:not(.eyebrow, .workflow-note) {
  max-width: 54ch;
  margin-top: 16px;
  color: var(--muted);
}

.workflow-copy .section-heading {
  display: block;
  margin: 0;
}

.workflow-copy .section-heading .eyebrow {
  margin-bottom: 16px;
}

.workflow-copy .section-heading h2,
.workflow-copy .section-heading > p:last-child {
  max-width: 54ch;
  margin-left: 0;
}

.workflow-copy .section-heading > p:last-child {
  margin-top: 16px;
}

.workflow-note,
.frame-fallback {
  color: var(--muted);
  font-size: 0.85rem;
}

.workflow-note {
  max-width: 54ch;
  margin-top: 18px;
}

.workflow-note a,
.frame-fallback a {
  color: var(--ink);
  font-weight: 600;
  text-underline-offset: 4px;
}

.enquiry-intent {
  width: fit-content;
  margin-top: 16px;
  padding: 8px 10px;
  border: 1px solid var(--rule);
  color: var(--ink);
  font-size: 0.85rem;
}

.workflow-copy > .text-link {
  display: flex;
  width: fit-content;
  margin-top: 14px;
}

.brief-prompts {
  display: grid;
  gap: 8px;
  max-width: 42ch;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: brief;
}

.brief-prompts li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 8px;
  align-items: baseline;
  color: var(--ink);
}

.brief-prompts li::before {
  counter-increment: brief;
  content: counter(brief, decimal-leading-zero);
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 600;
}

.workflow-copy .button.workflow-direct {
  width: fit-content;
  margin-top: 22px;
}

@media (max-width: 980px) {
  .hero-build-detail .hero-main,
  .hero-market-detail .hero-main {
    grid-column: 1 / -1;
  }

  .hero-build-detail .compact-workflow,
  .hero-market-detail .compact-workflow {
    grid-column: 1 / -1;
  }


  .page-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 24px;
  }

  .page-layout > .page-index,
  .page-layout > .page-sections {
    min-width: 0;
  }

  .page-index {
    position: static;
    display: grid;
    grid-template-columns: minmax(110px, auto) minmax(0, 1fr);
    gap: 12px 20px;
    padding: 18px 0;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
  }

  .page-index > p {
    margin: 8px 0 0;
  }

  .page-index nav {
    grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
    padding-top: 0;
    border-top: 0;
  }

  .page-index a {
    min-height: 44px;
    padding: 12px 8px;
    border-bottom: 1px solid var(--rule);
  }
}

.contact-launcher {
  position: fixed;
  right: max(clamp(12px, 2vw, 28px), calc(env(safe-area-inset-right, 0px) + 12px));
  bottom: max(clamp(12px, 2vw, 28px), calc(env(safe-area-inset-bottom, 0px) + 12px));
  z-index: 40;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  color: var(--surface);
  background: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
}

.contact-launcher:hover,
.contact-launcher:focus-visible {
  color: var(--ink);
  background: var(--surface);
}

body:has(.nav-menu[open]) .contact-launcher {
  display: none;
}

.workflow-embed {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-large);
  background: var(--surface);
}

.workflow-frame {
  display: block;
  width: 100%;
  max-width: 100%;
  border: 0;
  background: var(--surface);
}

.booking-frame {
  min-height: 680px;
}

.tally-frame {
  min-height: 240px;
}

.frame-fallback {
  margin: 0;
  padding: 14px 18px;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 48px);
}

.faq-section .section-heading {
  display: block;
  margin: 0;
}

.faq-section .section-heading .eyebrow {
  margin-bottom: 16px;
}

.faq-section .section-heading h2 {
  max-width: 28ch;
  font-size: clamp(1.4rem, 1.7vw, 1.65rem);
  line-height: 1.12;
}

.faq-list details {
  margin-bottom: 6px;
  border-radius: var(--radius);
  border: 1px solid transparent;
}

.faq-list details:hover,
.faq-list details[open] {
  background: var(--family-tint);
  border-color: var(--rule);
}

.page-family-build-detail .fit-panel,
.page-family-market-detail .fit-panel,
.page-family-build-detail .split-item,
.page-family-market-detail .split-item,
.page-family-build-detail .split-item-status,
.page-family-market-detail .split-item-status {
  border: 1px solid var(--rule);
  background: var(--surface);
}

.page-family-build-detail .split-item:hover,
.page-family-build-detail .split-item:focus-within,
.page-family-market-detail .split-item:hover,
.page-family-market-detail .split-item:focus-within,
.page-family-build-detail .faq-list details:hover,
.page-family-build-detail .faq-list details[open],
.page-family-market-detail .faq-list details:hover,
.page-family-market-detail .faq-list details[open] {
  border-color: var(--rule);
  background: var(--surface);
}

.page-family-build-detail .header-cta,
.page-family-market-detail .header-cta,
.page-family-build-detail .site-footer-compact .footer-links a,
.page-family-market-detail .site-footer-compact .footer-links a,
.page-family-build-detail .site-footer-compact .footer-meta a,
.page-family-market-detail .site-footer-compact .footer-meta a {
  min-width: 44px;
  min-height: 44px;
}

.page-family-build-detail .site-footer-compact .social-link,
.page-family-market-detail .site-footer-compact .social-link {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
}

.faq-list summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 56px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

.faq-list summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: -3px;
}

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

.faq-question {
  min-width: 0;
}

.faq-affordance {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 76px;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-close-label {
  display: none;
}

.faq-icon {
  font-size: 1rem;
  line-height: 1;
}

.faq-list details[open] .faq-open-label {
  display: none;
}

.faq-list details[open] .faq-close-label {
  display: inline;
}

.faq-list details[open] .faq-affordance {
  color: var(--accent);
  border-color: var(--accent);
}

.faq-list details[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: var(--copy);
  padding: 0 56px 20px 18px;
  color: var(--muted);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(310px, 1.35fr) repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 4vw, 56px);
  margin-bottom: 20px;
  padding: var(--section) clamp(20px, 3vw, 40px) 32px;
  border-radius: var(--radius-large) var(--radius-large) var(--radius) var(--radius-large);
  background: var(--neutral-tint);
}

.site-footer.site-footer-compact {
  display: block;
  margin-top: clamp(24px, 3vw, 40px);
  padding: 24px clamp(22px, 3vw, 34px) 18px;
  border: 1px solid var(--rule);
  border-radius: 18px;
  background: var(--neutral-tint);
}

.footer-close {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}

.footer-close .eyebrow {
  margin-bottom: 8px;
}

.footer-close h2 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.footer-email {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--ink);
  font-size: 0.9rem;
  text-underline-offset: 4px;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(180px, 0.8fr);
  gap: clamp(18px, 3vw, 36px);
  padding: 16px 0 10px;
}

.site-footer-compact .footer-links,
.footer-community {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.site-footer-compact .footer-links p,
.footer-community > p {
  margin-bottom: 5px;
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer-compact .footer-links a {
  min-width: 44px;
  min-height: 44px;
  color: var(--muted);
  font-size: 0.86rem;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.site-footer-compact .footer-links a:hover,
.site-footer-compact .footer-links a:focus-visible {
  color: var(--ink);
  text-decoration-color: currentColor;
}

.site-footer-compact .footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer-compact .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface);
}

.site-footer-compact .social-link:hover,
.site-footer-compact .social-link:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
}

.site-footer-compact .footer-meta {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  padding-top: 8px;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.75rem;
}

.site-footer-compact .footer-meta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: inherit;
}

.site-footer.contact-footer {
  position: relative;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.65fr);
  grid-template-areas:
    "heading heading"
    "connect connect"
    "offer markets";
  gap: 0 clamp(40px, 5vw, 72px);
  margin-top: clamp(20px, 2.5vw, 34px);
  min-height: clamp(620px, 68vh, 820px);
  padding: clamp(24px, 3vw, 40px) clamp(28px, 4vw, 56px) 48px;
  overflow: visible;
}

.contact-directory-heading {
  position: relative;
  display: flex;
  grid-area: heading;
  align-items: end;
  justify-content: center;
  gap: clamp(16px, 3vw, 36px);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}

.contact-directory-brand {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: clamp(72px, 7vw, 96px);
  pointer-events: none;
  transform: translate(-42px, 34px);
}

.contact-brand-mark {
  display: block;
  width: 100%;
  height: auto;
}

.contact-directory-title {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.contact-directory-heading h1 {
  margin: 0;
  font-size: clamp(1.5rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.04em;
}

.contact-directory-actions {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
  transform: translateY(-4px);
}

.contact-footer > section {
  min-width: 0;
}

.contact-footer-connect {
  display: grid;
  grid-area: connect;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(24px, 3vw, 36px) 0;
  border-bottom: 1px solid var(--rule);
}

.contact-footer-offer {
  grid-area: offer;
  padding-top: clamp(30px, 4vw, 52px);
}

.contact-footer-markets {
  grid-area: markets;
  padding-top: clamp(30px, 4vw, 52px);
  padding-left: clamp(28px, 4vw, 56px);
  border-left: 1px solid var(--rule);
}

.contact-footer .eyebrow {
  margin-bottom: 6px;
}

.contact-footer-connect .eyebrow {
  margin: 0;
}

.contact-footer-offer > p:not(.eyebrow),
.contact-footer-markets > p:not(.eyebrow, .contact-footer-list-title) {
  max-width: 24ch;
  color: var(--ink);
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.contact-footer-markets .contact-footer-list-title {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.contact-footer-directory {
  display: grid;
  gap: 12px 28px;
  margin-top: 16px;
}

.contact-footer-directory a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  width: fit-content;
  max-width: 100%;
  padding: 1px 0;
  color: var(--muted);
  font-size: clamp(0.82rem, 0.9vw, 0.95rem);
  font-weight: 500;
  line-height: 1.45;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.contact-footer-directory a:hover,
.contact-footer-directory a:focus-visible {
  color: var(--ink);
  text-decoration-color: currentColor;
}

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

.contact-footer-market-list {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr) minmax(0, 1.25fr);
}

.contact-footer-markets > p:not(.eyebrow, .contact-footer-list-title) {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0;
}

.contact-footer-email {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  white-space: nowrap;
  overflow-wrap: normal;
  font-weight: 500;
  text-underline-offset: 5px;
}

.contact-footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  margin: 0;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 7px 10px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--surface);
  font-size: 0.9rem;
  text-decoration: none;
}

.contact-social-link .social-icon {
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
}

.contact-social-label {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-social-link:hover,
.contact-social-link:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--surface);
}

.contact-meta-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  width: min(calc(100% - (2 * var(--gutter))), var(--content));
  margin: 0 auto 20px;
  padding: 18px 0 0;
  border-top: 1px solid var(--rule);
  color: var(--muted);
  font-size: 0.82rem;
}

.contact-meta-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  color: inherit;
  text-decoration-color: transparent;
}

.contact-meta-footer a:hover,
.contact-meta-footer a:focus-visible {
  color: var(--ink);
  text-decoration-color: currentColor;
}

.footer-lead p {
  margin-bottom: 10px;
  color: var(--muted);
}

.footer-lead a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  max-width: 100%;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  overflow-wrap: normal;
  white-space: nowrap;
  text-underline-offset: 6px;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-links p {
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  font-style: italic;
  text-transform: uppercase;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-width: 44px;
  min-height: 44px;
  color: var(--muted);
  font-weight: 400;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--ink);
  text-decoration-color: currentColor;
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 18px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--rule);
  border-radius: 50%;
  color: var(--ink);
  text-decoration: none;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--surface);
  background: var(--ink);
}

.social-icon {
  width: 17px;
  height: 17px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.footer-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 24px;
  padding-top: 24px;
  color: var(--muted);
  font-size: 0.78rem;
}

.footer-meta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  text-underline-offset: 3px;
}

.not-found {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 64svh;
  padding: var(--section) 0;
}

.not-found h1 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.not-found p:not(.eyebrow) {
  max-width: var(--copy);
  margin: 18px 0 24px;
  color: var(--muted);
}

.hero-home .hero-display {
  font-size: clamp(32px, 3.3vw, 44px);
  line-height: 1.02;
}

@media (min-width: 1280px) {
  .home-hero .hero-main {
    grid-column: 1 / span 7;
  }

  .home-hero-visual {
    grid-column: 8 / -1;
  }

  .route-home .hero-display {
    max-width: 30ch;
    font-size: clamp(30px, 2.1vw, 34px);
    white-space: normal;
    text-wrap: balance;
  }

  .route-home .hero-intro {
    max-width: 58ch;
    white-space: normal;
    text-wrap: balance;
  }
}

@media (max-width: 980px) {
  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    font-size: 0.84rem;
  }

  .header-cta {
    padding-inline: 12px;
  }

  .hero-main {
    grid-column: 1 / span 7;
  }

  .hero-aside {
    grid-column: 8 / -1;
  }

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

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

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

@media (max-width: 1120px) {
  .site-header {
    gap: 16px;
    padding: 8px 0;
  }

  .desktop-nav,
  .header-cta {
    display: none;
  }

  .nav-menu {
    display: block;
  }

  .nav-menu summary {
    display: flex;
  }

  .mobile-nav {
    position: absolute;
    top: calc(100% - 1px);
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    width: min(360px, calc(100vw - 20px));
    max-height: calc(100svh - 64px);
    gap: 8px;
    padding: 12px 16px 16px;
    border-radius: 0 0 var(--radius) var(--radius);
    background: var(--neutral-tint);
    box-shadow: 0 24px 48px -36px var(--ink);
    overflow-y: auto;
    white-space: normal;
  }

  .mobile-nav a {
    min-height: 44px;
    padding-inline: 8px;
    justify-content: flex-start;
    color: var(--ink);
    font-size: 0.9rem;
    font-weight: 600;
  }

  .mobile-nav .mobile-nav-cta {
    justify-content: center;
    margin: 8px 0;
    padding: 0 12px;
    color: var(--surface);
    background: var(--ink);
  }

  .mobile-nav .mobile-nav-cta:hover,
  .mobile-nav .mobile-nav-cta:focus-visible {
    color: var(--surface);
  }

  .home-hero {
    gap: 32px;
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .home-hero .hero-main,
  .home-hero-visual {
    grid-column: 1 / -1;
  }

  .home-hero-visual {
    width: min(100%, 720px);
    padding-left: 0;
  }
}

@media (max-width: 1020px) {
  .home-capability-grid,
  .home-engagements > div,
  .commercial-clarity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 820px) {
  .workflow-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 760px) {

  .home-capability-grid,
  .home-delivery-grid,
  .home-story-rail,
  .home-engagements > div,
  .commercial-clarity-grid {
    grid-template-columns: 1fr;
  }

  .commercial-clarity-models .commercial-clarity-grid,
  .commercial-clarity-milestones .commercial-clarity-grid {
    grid-template-columns: 1fr;
  }

  .home-capability-card,
  .home-delivery-path,
  .home-story-step {
    min-height: 0;
    padding: 20px;
  }

  .home-delivery-next {
    align-items: stretch;
    flex-direction: column;
  }

  .route-home .home-delivery-next {
    padding-right: 0;
  }

  .home-delivery-next .button {
    width: 100%;
  }

  .home-story-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .home-story-actions .button {
    width: 100%;
  }

  .home-engagements a {
    min-height: 0;
    padding: 20px;
  }

  .buyer-help thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .buyer-help tr,
  .buyer-help th,
  .buyer-help td {
    display: block;
    width: 100%;
  }

  .buyer-help td {
    border-top: 0;
    padding-top: 0;
  }

  .compact-workflow ol {
    grid-template-columns: 1fr;
  }

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

  .site-footer.site-footer-compact {
    padding: 22px 18px 16px;
  }

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

  .footer-actions {
    justify-content: flex-start;
  }

  .footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .site-footer-compact .footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 8px;
  }

  .site-footer-compact .footer-links p {
    grid-column: 1 / -1;
  }

  .footer-community {
    grid-column: 1 / -1;
  }
  :root {
    --gutter: 16px;
    --section: 32px;
  }

  .site-header {
    min-height: 58px;
    padding-block: 6px;
  }

  .wordmark {
    margin-left: 8px;
  }

  .brand-cube-mark {
    width: 26px;
    height: 26px;
  }

  .nav-menu summary {
    min-width: 72px;
  }

  .route-trail {
    top: 59px;
    min-height: 44px;
    gap: 6px;
    padding-inline: 12px;
    font-size: 0.7rem;
  }

  .route-trail a {
    min-height: 44px;
  }

  .hero,
  .proof-panel,
  .article-section,
  .hosted-form-section {
    grid-template-columns: 1fr;
  }

  .hero-main,
  .hero-aside,
  .workflow-copy,
  .workflow-embed,
  .hosted-form-copy,
  .inline-directory-group {
    min-width: 0;
  }

  .hosted-form-section {
    gap: 24px;
  }

  .hero {
    min-height: 0;
    padding-block: 30px;
  }

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

  .story-relationship .hero-main,
  .story-relationship .hero-aside {
    grid-column: 1;
  }

  .home-hero {
    gap: 24px;
    padding: 24px 20px;
  }

  .route-home .page-anchor#how-it-works > .home-process-flow,
  .route-home .page-anchor#experience > .proof-panel {
    margin-block: 10px;
    padding: 28px 20px;
  }

  .hero-intro {
    margin-top: 12px;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .hero-actions,
  .cta-actions {
    gap: 10px 14px;
    margin-top: 20px;
  }

  .home-credibility {
    display: grid;
    gap: 6px;
    margin-top: 14px;
    font-size: 0.78rem;
  }

  .home-credibility span + span {
    padding-left: 0;
    border-left: 0;
  }

  .home-hero-links {
    position: static;
    margin: 0 2px;
  }

  .home-hero-visual {
    width: 100%;
    padding: 10px;
    background: var(--surface);
    overflow: hidden;
  }

  .home-hero-visual figcaption {
    margin: 8px 2px 0;
    padding: 0;
    font-size: 0.76rem;
  }

  .home-process-flow .process-rail {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .home-process-flow .process-step {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 0 16px;
    padding: 18px 0;
  }

  .home-process-flow .process-step + .process-step::before {
    top: -18px;
    left: 18px;
    width: 0;
    height: 18px;
    border-top: 0;
    border-left: 1px solid var(--rule-strong);
  }

  .home-process-flow .process-step > span {
    grid-row: 1 / span 2;
    margin: 0;
  }

  .home-process-flow .process-step p {
    grid-column: 2;
    margin: 0;
  }

  .contact-launcher {
    display: none;
  }

  body:not(.page-family-home) .hero {
    padding: 40px 18px;
  }

  .hero-market-detail .hero-main,
  .hero-market-detail .hero-aside,
  .hero-editorial .hero-main,
  .hero-editorial .hero-aside,
  .hero-contact .hero-main,
  .hero-contact .hero-aside,
  .hero-legal .hero-main,
  .hero-legal .hero-aside {
    grid-column: auto;
  }

  .hero-market-detail .hero-aside {
    display: block;
  }

  .hero-main,
  .home-hero .hero-main,
  .home-hero-visual,
  .hero-aside {
    grid-column: auto;
  }

  .story-practical-standards .hero-main,
  .story-practical-standards .hero-aside,
  .story-decision-lens .hero-main,
  .story-decision-lens .hero-aside {
    grid-column: auto;
  }

  .hero-display {
    max-width: 16ch;
  }

  .hero-aside {
    margin-top: 8px;
    padding: 18px;
  }

  .innovation-profile,
  .capability-rows,
  .first-engagement-frame {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }



  .innovation-profile > .section-block {
    padding: 28px 18px;
  }

  .capability-rows,
  .capability-rows li,
  .first-engagement-frame,
  .innovation-project-details {
    grid-template-columns: minmax(0, 1fr);
  }

  .capability-rows li {
    gap: 6px;
  }

  .first-engagement-frame {
    align-items: start;
    padding: 28px 20px;
  }

  .first-engagement-frame > div:first-child,
  .innovation-project-details,
  .first-engagement-frame > .button {
    grid-column: auto;
    grid-row: auto;
  }

  .innovation-project-details {
    gap: 20px;
    padding: 20px 0 0;
    border-top: 1px solid var(--rule);
    border-left: 0;
  }

  .first-engagement-frame > .button {
    justify-self: stretch;
    width: 100%;
    min-height: 44px;
  }

  .capability-rows > *,
  .capability-rows li > *,
  .first-engagement-frame > *,
  .innovation-project-details > * {
    min-width: 0;
  }

  .page-family-build-detail .page-anchor > .section-block,
  .page-family-market-detail .page-anchor > .section-block {
    padding-inline: 18px;
  }

  .page-layout {
    gap: 18px;
    margin-top: 24px;
  }

  .page-index {
    display: block;
    padding: 10px 0 12px;
  }

  .page-index > p {
    margin: 0 0 8px;
  }

  .page-index nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .page-index nav::-webkit-scrollbar {
    display: none;
  }

  .page-index a {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 10px 12px;
    border: 1px solid var(--rule);
    border-radius: 999px;
    font-size: 0.72rem;
  }

  .section-block,
  .faq-section,
  .article-section {
    padding-block: 32px;
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .common-starting-point {
    grid-template-columns: 1fr;
  }

  .common-starting-point > .micro-label,
  .conversation-list {
    grid-column: auto;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow,
  .section-heading h2,
  .section-heading > p:last-child {
    grid-column: auto;
  }

  .section-heading .eyebrow {
    margin-top: 0;
  }

  .audience-grid,
  .insight-grid,
  .process-rail {
    grid-template-columns: 1fr;
  }

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

  .inline-directory-groups,
  .capability-directory-links {
    grid-template-columns: 1fr;
  }

  .technology-groups {
    grid-template-columns: 1fr;
  }

  .technology-group,
  .technology-group:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .technology-group:last-child {
    border-bottom: 1px solid var(--rule);
  }

  .technology-group {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px 0;
  }

  .technology-entries {
    gap: 12px;
  }

  .inline-directory-link,
  .capability-directory-link {
    min-height: 48px;
    padding: 10px 8px;
  }

  .capability-directory-links > :nth-last-child(2) {
    border-bottom: 0;
  }

  .directory-cluster,
  .directory-cluster-links,
  .market-story-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .directory-cluster {
    gap: 24px;
  }

  :where(.process-loop) .process-step {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 0 16px;
    padding: 18px 0;
  }

  .process-loop .process-step > span {
    grid-row: 1 / span 2;
    margin-bottom: 0;
  }

  .process-timeline .process-step {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 8px 16px;
  }

  .process-timeline .process-step > span {
    grid-row: 1 / span 2;
  }

  .process-timeline .process-step p {
    grid-column: 2;
  }

  .comparison-page .split-item > div {
    grid-template-columns: 1fr;
  }

  .contact-choice {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .booking-workflow {
    margin: 20px 0;
    padding: 20px 0;
  }

  .booking-frame {
    min-height: 620px;
  }

  .contact-choice .cta-actions {
    justify-content: flex-start;
  }

  .process-step {
    min-height: 0;
  }

  .process-step > span {
    margin-bottom: 32px;
  }

  .proof-panel {
    gap: 24px;
  }

  .split-item > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .fit-panel {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .faq-section {
    grid-template-columns: 1fr;
  }

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

  .site-footer.contact-footer {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "connect"
      "offer"
      "markets";
    gap: 18px;
    min-height: auto;
    padding: 36px 24px 52px;
  }

  .contact-directory-heading {
    align-items: start;
    flex-direction: column;
    padding-top: 0;
  }

  .contact-directory-brand {
    bottom: 0;
    left: 0;
    width: 64px;
    transform: translate(-18px, 24px);
  }

  .contact-directory-title {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .contact-directory-actions {
    width: 100%;
    justify-content: flex-start;
    transform: none;
  }

  .contact-footer-connect {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
    padding: 20px 0 24px;
  }

  .contact-footer-offer,
  .contact-footer-markets {
    padding-top: 20px;
  }

  .contact-footer-markets {
    padding-left: 0;
    border-left: 0;
  }

  .contact-footer-socials {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: stretch;
  }

  .contact-social-link {
    width: 44px;
    height: 44px;
    min-height: 44px;
    padding: 0;
    gap: 0;
    justify-content: center;
  }

  .contact-social-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

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

  .footer-lead,
  .footer-meta {
    grid-column: 1 / -1;
  }
}

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

  .hero-home .hero-display {
    font-size: 30px;
  }

  .hero:not(.hero-home) .hero-display {
    font-size: 28px;
  }

  .section-heading h2,
  .cta-panel h2,
  .article-heading h2,
  .workflow-copy h2,
  .hosted-form-copy h2 {
    font-size: 24px;
  }
}

@media (max-width: 500px) {
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-lead,
  .footer-meta {
    grid-column: auto;
  }

  .contact-choice .cta-actions,
  .contact-choice .button {
    width: 100%;
  }

  .workflow-frame,
  .booking-frame,
  .tally-frame {
    max-width: 100%;
  }

}

@media (max-width: 380px) {
  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-actions .text-link,
  .cta-actions .text-link {
    justify-content: center;
    width: 100%;
  }

  .conversation-card-1,
  .conversation-card-2 {
    margin-inline: 0;
  }

  .split-item {
    grid-template-columns: 38px minmax(0, 1fr);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-dropdown > summary::after {
    transition: none;
  }
}

/* Keep all rendered homepage copy readable without widening shared page typography. */
.route-home .brand-name,
.route-home .nav-links a,
.route-home .mobile-nav a,
.route-home .nav-menu summary,
.route-home .header-cta,
.route-home .home-credibility,
.route-home .home-follow-link,
.route-home .home-share-button,
.route-home .home-copy-button,
.route-home .home-hero-visual figcaption,
.route-home .section-heading .eyebrow,
.route-home .cta-panel .eyebrow,
.route-home .faq-affordance,
.route-home .footer-close .eyebrow,
.route-home .footer-email,
.route-home .site-footer-compact .footer-links p,
.route-home .site-footer-compact .footer-links a,
.route-home .footer-community > p,
.route-home .site-footer-compact .footer-meta,
.route-home .contact-launcher {
  font-size: 1rem;
}

.route-home .hero-intro {
  font-size: 1rem;
}
@font-face {
  font-family: 'Instrument Sans';
  src: url('/instrument-sans-latin.woff2') format('woff2');
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}
