:root {
  --ink: oklch(0.18 0.02 250);
  --paper: oklch(0.975 0.012 85);
  --paper-2: oklch(0.945 0.018 85);
  --rule: oklch(0.82 0.02 80);
  --forest: oklch(0.34 0.07 155);
  --cobalt: oklch(0.48 0.18 258);
  --lime: oklch(0.86 0.19 130);
  --coral: oklch(0.68 0.2 27);
  --amber: oklch(0.83 0.16 85);
  --shadow-pop: 4px 4px 0 0 var(--ink);
  --shadow-pop-lg: 8px 8px 0 0 var(--ink);
  --radius: 16px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  letter-spacing: -0.025em;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-feature-settings: "ss01", "ss02";
}

p {
  margin: 0;
}

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

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.site-main {
  min-height: 60vh;
}

.section {
  padding: 80px 0;
  border-bottom: 2px solid var(--ink);
}

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

.section--paper-2 {
  background: var(--paper-2);
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}

.hero__grid,
.bp-grid-soft,
.bp-grid,
.bp-grid-dark {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__grid,
.bp-grid-soft {
  background-color: var(--paper);
  background-image: linear-gradient(rgba(24, 28, 40, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 28, 40, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.bp-grid {
  background-color: var(--paper-2);
  background-image: linear-gradient(var(--ink) 1px, transparent 1px),
    linear-gradient(90deg, var(--ink) 1px, transparent 1px);
  background-size: 56px 56px;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.bp-grid-dark {
  background-color: var(--forest);
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero__inner {
  position: relative;
  z-index: 1;
  padding: 64px 0;
}

.hero__inner--frontpage {
  padding: 80px 0 72px;
}

.hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  gap: 42px;
  align-items: start;
}

.hero__main {
  min-width: 0;
}

.hero__aside {
  min-width: 0;
}

.hero-card--mobile {
  display: none;
}

.hero-headline__line {
  display: block;
}

.home .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(180deg, rgba(248, 245, 238, 0) 0%, rgba(248, 245, 238, 0.92) 100%);
  pointer-events: none;
  z-index: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 600;
  color: color-mix(in oklab, var(--ink) 60%, white);
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--forest);
}

.eyebrow--paper {
  color: color-mix(in oklab, var(--paper) 75%, transparent);
}

.eyebrow--paper::before {
  background: var(--lime);
}

.display-xl {
  margin-top: 20px;
  max-width: 760px;
  font-size: clamp(2.35rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.01;
}

.display-lg {
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
}

.display-md {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1.08;
}

.hero__lead {
  margin-top: 24px;
  max-width: 760px;
  font-size: 1.0625rem;
  color: color-mix(in oklab, var(--ink) 76%, white);
}

.hero__lead--home {
  max-width: 680px;
}

.hero__hint {
  margin-top: 18px;
  font-size: 0.8rem;
  font-weight: 600;
  color: color-mix(in oklab, var(--ink) 58%, white);
}

.hero__actions {
  margin-top: 30px;
}

.hero-stats {
  display: grid;
  max-width: 640px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 34px;
  border: 2px solid var(--ink);
  border-radius: 22px;
  overflow: hidden;
  background: color-mix(in oklab, var(--paper) 94%, white);
  box-shadow: var(--shadow-pop);
}

.hero-stats--aside {
  max-width: none;
  margin-top: 34px;
  margin-left: 0;
}

.hero-stats__item {
  padding: 18px 22px 20px;
}

.hero-stats__item + .hero-stats__item {
  border-left: 1px solid color-mix(in oklab, var(--ink) 24%, transparent);
}

.hero-stats__item dt {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.hero-stats__item dd {
  margin: 10px 0 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: color-mix(in oklab, var(--ink) 60%, white);
}

.hero-card {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-pop-lg);
}

.hero-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 2px solid var(--ink);
  background: var(--paper-2);
}

.hero-card__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 70%, white);
}

.hero-card__label span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--coral);
}

.hero-card__body {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.hero-card__row {
  display: grid;
  gap: 6px;
}

.hero-card__row-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-card__delta {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-card__delta--coral {
  color: var(--coral);
}

.hero-card__delta--cobalt,
.hero-card__delta--forest {
  color: color-mix(in oklab, var(--ink) 62%, white);
}

.hero-card__barline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-card__track {
  flex: 1;
  height: 9px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--paper-2);
}

.hero-card__fill {
  height: 100%;
}

.hero-card__fill--coral {
  background: var(--coral);
}

.hero-card__fill--cobalt {
  background: var(--cobalt);
}

.hero-card__fill--forest {
  background: var(--forest);
}

.hero-card__facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border-top: 2px solid var(--ink);
  background: var(--ink);
}

.hero-card__fact {
  padding: 14px 14px 16px;
  background: var(--paper);
}

.hero-card__fact div {
  font-size: 0.7rem;
  font-weight: 500;
  color: color-mix(in oklab, var(--ink) 58%, white);
}

.hero-card__fact strong {
  display: block;
  margin-top: 6px;
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.business-map__head {
  align-items: flex-start;
  padding: 20px 24px 18px;
}

.business-map__heading {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.business-map__label {
  gap: 12px;
  font-size: clamp(1.05rem, 2.4vw, 1.18rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--ink);
}

.business-map__label .business-map__status {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: currentColor;
}

.business-map__status--forest,
.business-map__fill--forest,
.business-map__icon--forest {
  color: var(--forest);
}

.business-map__status--good,
.business-map__fill--good,
.business-map__icon--good {
  color: color-mix(in oklab, var(--forest) 45%, var(--lime));
}

.business-map__status--amber,
.business-map__fill--amber,
.business-map__icon--amber {
  color: var(--amber);
}

.business-map__status--coral,
.business-map__fill--coral,
.business-map__icon--coral {
  color: var(--coral);
}

.business-map__status--cobalt,
.business-map__fill--cobalt,
.business-map__icon--cobalt {
  color: var(--cobalt);
}

.business-map__status--forest,
.business-map__status--good,
.business-map__status--amber,
.business-map__status--coral,
.business-map__status--cobalt {
  background: currentColor;
}

.business-map__subtitle {
  font-size: 0.9rem;
  font-weight: 500;
  color: color-mix(in oklab, var(--ink) 56%, white);
}

.business-map__body {
  gap: 0;
  padding: 0;
}

.business-map__summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 16%, transparent);
}

.business-map__summary-item {
  padding: 24px;
}

.business-map__summary-item + .business-map__summary-item {
  border-left: 1px solid color-mix(in oklab, var(--ink) 16%, transparent);
}

.business-map__summary-label-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.business-map__summary-label {
  font-size: 0.98rem;
  font-weight: 600;
}

.business-map__summary-info,
.business-map__footer-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: color-mix(in oklab, var(--ink) 44%, white);
  cursor: help;
}

.business-map__summary-info-icon,
.business-map__footer-info-icon,
.business-map__note-icon-svg {
  width: 16px;
  height: 16px;
}

.business-map__footer-info-wrap {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-self: start;
  margin-top: 1px;
}

.business-map__footer-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 6;
  width: min(240px, 24vw);
  padding: 10px 12px;
  border: 1px solid color-mix(in oklab, var(--ink) 14%, transparent);
  border-radius: 12px;
  background: color-mix(in oklab, var(--paper) 96%, white);
  box-shadow: 0 16px 32px rgba(16, 21, 35, 0.12);
  font-size: 0.78rem;
  line-height: 1.4;
  color: color-mix(in oklab, var(--ink) 74%, white);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-20%) translateY(4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.business-map__footer-info-wrap:hover .business-map__footer-tooltip,
.business-map__footer-info-wrap:focus-within .business-map__footer-tooltip {
  opacity: 1;
  transform: translateX(-20%) translateY(0);
}

.business-map__summary-value {
  margin-top: 10px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.business-map__summary-value--forest {
  color: var(--forest);
}

.business-map__summary-value--good {
  color: color-mix(in oklab, var(--forest) 45%, var(--lime));
}

.business-map__summary-value--amber {
  color: var(--amber);
}

.business-map__summary-value--coral {
  color: var(--coral);
}

.business-map__summary-value--cobalt {
  color: var(--cobalt);
}

.business-map__summary-note {
  margin-top: 4px;
  font-size: 0.95rem;
  color: color-mix(in oklab, var(--ink) 60%, white);
}

.business-map__rows {
  padding: 8px 24px 0;
}

.business-map__row {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(120px, 0.36fr) minmax(112px, 0.3fr);
  gap: 18px;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid color-mix(in oklab, var(--ink) 14%, transparent);
}

.business-map__row-main {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.business-map__icon {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border: 1px solid color-mix(in oklab, currentColor 25%, white);
  border-radius: 14px;
  background: color-mix(in oklab, currentColor 10%, white);
}

.business-map__icon-svg {
  width: 28px;
  height: 28px;
}

.business-map__row-copy {
  min-width: 0;
}

.business-map__row-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.business-map__row-title {
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.15;
}

.business-map__row-info-wrap {
  position: relative;
  display: none;
  flex-shrink: 0;
}

.business-map__row-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  color: color-mix(in oklab, var(--ink) 42%, white);
  cursor: help;
}

.business-map__row-info-icon {
  width: 14px;
  height: 14px;
}

.business-map__row-tooltip {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  z-index: 6;
  width: min(260px, 28vw);
  padding: 10px 12px;
  border: 1px solid color-mix(in oklab, var(--ink) 14%, transparent);
  border-radius: 12px;
  background: color-mix(in oklab, var(--paper) 96%, white);
  box-shadow: 0 16px 32px rgba(16, 21, 35, 0.12);
  font-size: 0.78rem;
  line-height: 1.4;
  color: color-mix(in oklab, var(--ink) 74%, white);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-18%) translateY(4px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.business-map__row-info-wrap:hover .business-map__row-tooltip,
.business-map__row-info-wrap:focus-within .business-map__row-tooltip {
  opacity: 1;
  transform: translateX(-18%) translateY(0);
}

.business-map__row-description {
  margin-top: 6px;
  font-size: 0.92rem;
  color: color-mix(in oklab, var(--ink) 60%, white);
}

.business-map__track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: color-mix(in oklab, var(--ink) 8%, white);
}

.business-map__track--wide {
  margin-top: 16px;
}

.business-map__fill {
  height: 100%;
  background: currentColor;
  border-radius: inherit;
}

.business-map__row-side {
  text-align: center;
}

.business-map__row-realized {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
}

.business-map__row-realized--forest {
  color: var(--forest);
}

.business-map__row-realized--good {
  color: color-mix(in oklab, var(--forest) 45%, var(--lime));
}

.business-map__row-realized--amber {
  color: var(--amber);
}

.business-map__row-realized--coral {
  color: var(--coral);
}

.business-map__row-realized--cobalt {
  color: var(--cobalt);
}

.business-map__row-realized-note {
  margin-top: 4px;
  font-size: 0.84rem;
  color: color-mix(in oklab, var(--ink) 58%, white);
}

.business-map__row-potential {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
}

.business-map__row-potential--forest {
  background: color-mix(in oklab, var(--forest) 12%, white);
  color: var(--forest);
}

.business-map__row-potential--good {
  background: color-mix(in oklab, var(--lime) 28%, white);
  color: color-mix(in oklab, var(--forest) 45%, var(--lime));
}

.business-map__row-potential--amber {
  background: color-mix(in oklab, var(--amber) 18%, white);
  color: color-mix(in oklab, var(--amber) 82%, var(--ink));
}

.business-map__row-potential--coral {
  background: color-mix(in oklab, var(--coral) 14%, white);
  color: var(--coral);
}

.business-map__row-money {
  text-align: right;
}

.business-map__row-money-value {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}

.business-map__row-money-suffix {
  margin-top: 6px;
  font-size: 0.82rem;
  color: color-mix(in oklab, var(--ink) 58%, white);
}

.business-map__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 24px;
  padding: 14px 16px;
  border: 1px solid color-mix(in oklab, var(--ink) 10%, transparent);
  border-radius: 14px;
  background: color-mix(in oklab, var(--paper-2) 75%, white);
}

.business-map__legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: color-mix(in oklab, var(--ink) 68%, white);
}

.business-map__legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: currentColor;
}

.business-map__legend-dot--forest {
  color: var(--forest);
}

.business-map__legend-dot--good {
  color: color-mix(in oklab, var(--forest) 45%, var(--lime));
}

.business-map__legend-dot--amber {
  color: var(--amber);
}

.business-map__legend-dot--coral {
  color: var(--coral);
}

.business-map__legend-dot--cobalt {
  color: var(--cobalt);
}

.business-map__legend-range {
  font-weight: 700;
  color: var(--ink);
}

.business-map__footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid color-mix(in oklab, var(--ink) 14%, transparent);
}

.business-map__footer-card {
  display: grid;
  grid-template-rows: auto auto 1fr;
  align-content: start;
  min-width: 0;
  padding: 24px;
}

.business-map__footer-card + .business-map__footer-card {
  border-left: 1px solid color-mix(in oklab, var(--ink) 14%, transparent);
}

.business-map__footer-label-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 8px;
}

.business-map__footer-label {
  font-size: 0.9rem;
  font-weight: 500;
  color: color-mix(in oklab, var(--ink) 64%, white);
}

.business-map__footer-value-row {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
}

.business-map__footer-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid color-mix(in oklab, var(--cobalt) 22%, white);
  border-radius: 999px;
  background: color-mix(in oklab, var(--cobalt) 10%, white);
  color: var(--cobalt);
  flex-shrink: 0;
}

.business-map__footer-icon-svg {
  width: 20px;
  height: 20px;
}

.business-map__footer-value {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  align-self: center;
}

.business-map__footer-description {
  margin-top: 12px;
  font-size: 0.9rem;
  color: color-mix(in oklab, var(--ink) 62%, white);
}

.business-map__note {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
  margin: 0 24px 24px;
  padding: 16px 18px;
  border: 1px solid color-mix(in oklab, var(--ink) 12%, transparent);
  border-radius: 14px;
  background: color-mix(in oklab, var(--paper-2) 85%, white);
}

.business-map__note-icon {
  color: color-mix(in oklab, var(--ink) 50%, white);
}

.business-map__note-text {
  font-size: 0.9rem;
  line-height: 1.5;
  color: color-mix(in oklab, var(--ink) 64%, white);
}

@media (min-width: 1024px) {
  .hero__inner--frontpage.container {
    width: min(1320px, calc(100% - 40px));
  }

  .hero__inner--frontpage {
    padding: 48px 0 28px;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(560px, 1fr);
    gap: 32px;
  }

  .display-xl {
    max-width: 620px;
    font-size: clamp(2.08rem, 4.35vw, 3.28rem);
    line-height: 0.95;
  }

  .hero__lead {
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.48;
  }

  .hero__lead--home {
    max-width: 580px;
  }

  .hero__actions {
    margin-top: 22px;
  }

  .hero__actions .button {
    min-height: 50px;
    padding: 13px 22px;
    font-size: 0.92rem;
  }

  .hero-stats--intro {
    max-width: 660px;
  }

  .hero-stats--intro .hero-stats__item {
    padding: 18px 20px;
  }

  .hero-stats--intro .hero-stats__item dt {
    font-size: clamp(1.8rem, 3vw, 2.36rem);
  }

  .hero-stats--intro .hero-stats__item dd {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .business-map__head {
    padding: 14px 18px 10px;
  }

  .business-map__label {
    font-size: clamp(0.94rem, 1.55vw, 1.08rem);
  }

  .business-map__summary-item {
    padding: 14px 18px;
  }

  .business-map__summary-label {
    font-size: 0.86rem;
  }

  .business-map__summary-value {
    margin-top: 6px;
    font-size: clamp(1.55rem, 2.8vw, 2.08rem);
  }

  .business-map__summary-note {
    font-size: 0.74rem;
  }

  .business-map__rows {
    padding: 2px 18px 0;
  }

  .business-map__row {
    grid-template-columns: minmax(0, 1.72fr) minmax(108px, 0.32fr) minmax(98px, 0.28fr);
    gap: 14px;
    padding: 9px 0;
  }

  .business-map__row-main {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 10px;
  }

  .business-map__icon {
    width: 36px;
    height: 36px;
    border-radius: 9px;
  }

  .business-map__icon-svg {
    width: 17px;
    height: 17px;
  }

  .business-map__row-title {
    font-size: 0.84rem;
    line-height: 1.1;
  }

  .hero-card--desktop .business-map__row-info-wrap {
    display: inline-flex;
  }

  .hero-card--desktop .business-map__row-description {
    display: none;
  }

  .business-map__track {
    height: 5px;
  }

  .business-map__track--wide {
    margin-top: 6px;
  }

  .business-map__row-realized {
    font-size: 1.26rem;
  }

  .business-map__row-realized-note {
    font-size: 0.64rem;
  }

  .business-map__row-potential {
    margin-top: 6px;
    padding: 2px 6px;
    font-size: 0.62rem;
  }

  .business-map__row-money-value {
    font-size: 1rem;
  }

  .business-map__row-money-suffix {
    margin-top: 2px;
    font-size: 0.63rem;
  }

  .business-map__legend {
    margin: 10px 18px;
    padding: 7px 10px;
    gap: 6px 10px;
  }

  .business-map__legend-item {
    font-size: 0.6rem;
  }

  .business-map__footer-card {
    padding: 11px 14px;
  }

  .business-map__footer-label {
    font-size: 0.72rem;
  }

  .business-map__footer-value-row {
    gap: 8px;
    margin-top: 6px;
  }

  .business-map__footer-icon {
    width: 24px;
    height: 24px;
  }

  .business-map__footer-icon-svg {
    width: 12px;
    height: 12px;
  }

  .business-map__footer-value {
    font-size: 0.94rem;
  }

  .business-map__footer-description {
    margin-top: 6px;
    font-size: 0.68rem;
    line-height: 1.18;
  }

  .hero-card--desktop .business-map__footer-description {
    display: none;
  }

  .business-map__note {
    margin: 0 18px 16px;
    padding: 8px 10px;
  }

  .business-map__note-text {
    font-size: 0.66rem;
    line-height: 1.16;
  }
}

@media (min-width: 1024px) and (max-height: 920px) {
  .hero__inner--frontpage.container {
    width: min(1320px, calc(100% - 36px));
  }

  .hero__inner--frontpage {
    padding: 34px 0 18px;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 0.96fr) minmax(560px, 1.04fr);
    gap: 24px;
  }

  .display-xl {
    max-width: 560px;
    font-size: clamp(1.94rem, 3.75vw, 3rem);
    line-height: 0.92;
  }

  .hero__lead {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.42;
  }

  .hero__lead--home {
    max-width: 520px;
  }

  .hero__actions {
    margin-top: 18px;
  }

  .hero__actions .button {
    min-height: 46px;
    padding: 11px 18px;
    font-size: 0.86rem;
  }

  .hero-stats--intro {
    margin-top: 24px;
    max-width: 620px;
  }

  .hero-stats--intro .hero-stats__item {
    padding: 16px 18px;
  }

  .hero-stats--intro .hero-stats__item dt {
    font-size: clamp(1.64rem, 2.8vw, 2.04rem);
  }

  .hero-stats--intro .hero-stats__item dd {
    margin-top: 8px;
    font-size: 0.76rem;
    line-height: 1.4;
  }

  .business-map__head {
    padding: 14px 16px 12px;
  }

  .business-map__summary-item {
    padding: 14px 16px;
  }

  .business-map__rows {
    padding: 0 16px 0;
  }

  .business-map__row {
    padding: 8px 0;
  }

  .business-map__legend {
    margin: 10px 16px;
    padding: 8px 10px;
  }

  .business-map__footer-card {
    padding: 11px 14px;
  }

  .business-map__note {
    margin: 0 16px 14px;
    padding: 9px 10px;
  }
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 14px 22px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  box-shadow: var(--shadow-pop);
  transition: transform 0.18s ease;
}

.button:hover {
  transform: translate(-2px, -2px);
}

.button:focus-visible,
.primary-nav a:focus-visible,
.text-link:focus-visible,
.menu-toggle:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 3px;
}

.button--primary {
  background: var(--forest);
  color: var(--paper);
}

.button--hero {
  min-width: 220px;
}

.button--secondary {
  background: var(--paper);
  color: var(--ink);
}

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

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

.button--paper-shadow {
  box-shadow: 4px 4px 0 0 var(--paper);
}

.button--compact {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.875rem;
}

.header-cta {
  min-width: 132px;
  padding-left: 18px;
  padding-right: 18px;
}

.header-cta__label--mobile {
  display: none;
}

.button--stretch {
  width: 100%;
  margin-top: auto;
}

.underline-accent {
  background-image: linear-gradient(180deg, transparent 62%, var(--lime) 62%, var(--lime) 92%, transparent 92%);
  padding: 0 0.08em;
}

.stack-lg {
  display: grid;
  gap: 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 2px solid var(--ink);
  background: color-mix(in oklab, var(--paper) 95%, transparent);
  backdrop-filter: blur(12px);
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  color: var(--forest);
}

.brand-mark__icon {
  width: 24px;
  height: 24px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.brand-copy__title {
  display: grid;
  font-family: "Press Start 2P", "IBM Plex Sans", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.1;
  white-space: normal;
}

.brand-copy__title-line {
  display: block;
}

.site-header .brand--sync .brand-copy {
  gap: 0;
}

.site-header .brand--sync .brand-copy__title {
  max-width: 154px;
  line-height: 1.04;
}

.site-header .brand--sync .brand-copy__subtitle {
  display: none;
}

.brand-copy__title--footer {
  font-size: clamp(20px, 4vw, 28px);
}

.brand-copy__subtitle {
  font-size: 11px;
  font-weight: 500;
  color: color-mix(in oklab, var(--ink) 55%, white);
}

.primary-nav {
  margin-left: auto;
}

.primary-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 18px;
}

.primary-nav a {
  display: inline-flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 500;
  white-space: nowrap;
}

.primary-nav .current-menu-item > a,
.primary-nav a:hover {
  color: var(--forest);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 9px;
  border: 2px solid transparent;
  border-radius: 10px;
  background: transparent;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
  font-size: 0.75rem;
  font-weight: 600;
  color: color-mix(in oklab, var(--ink) 56%, white);
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.breadcrumbs__item a:hover {
  color: var(--forest);
}

.section-header {
  display: grid;
  gap: 24px;
  margin-bottom: 40px;
}

.section-header--split {
  grid-template-columns: 1.4fr 1fr;
  align-items: end;
}

.section-intro {
  font-size: 1.05rem;
  color: color-mix(in oklab, var(--ink) 76%, white);
}

.card-grid {
  display: grid;
  gap: 24px;
}

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

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

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

.card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
}

.card--service,
.card--case,
.card--article {
  height: 100%;
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.card__title {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.12;
  text-wrap: balance;
}

.card__node,
.card__summary {
  color: color-mix(in oklab, var(--ink) 74%, white);
}

.card__summary {
  font-size: 0.95rem;
  line-height: 1.62;
}

.card__node {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--forest);
}

.mono-label {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.75rem;
  font-weight: 700;
}

.mono-label--muted {
  color: color-mix(in oklab, var(--ink) 55%, white);
}

.tag {
  padding: 5px 10px;
  border: 2px solid var(--ink);
  border-radius: 6px;
  background: var(--paper-2);
  font-size: 0.72rem;
  font-weight: 700;
}

.info-box,
.highlight-box {
  padding: 14px 16px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--paper-2);
}

.card__microcopy {
  display: grid;
  gap: 4px;
  font-size: 0.84rem;
  line-height: 1.5;
  color: color-mix(in oklab, var(--ink) 68%, white);
}

.card__microcopy strong {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--ink) 54%, white);
}

.info-box__label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  color: color-mix(in oklab, var(--ink) 56%, white);
}

.info-box__label--coral {
  color: var(--coral);
}

.info-box__label--forest {
  color: var(--forest);
}

.highlight-box {
  background: var(--forest);
  color: var(--paper);
  font-weight: 600;
}

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

.list-points {
  display: grid;
  gap: 8px;
  font-size: 0.95rem;
}

.list-points li,
.metric-list li,
.ordered-steps li,
.simple-list li {
  display: flex;
  gap: 10px;
}

.list-points li::before {
  content: "";
  width: 12px;
  height: 4px;
  margin-top: 11px;
  background: var(--forest);
  flex-shrink: 0;
}

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

.stat-grid {
  display: grid;
  gap: 1px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  overflow: hidden;
  background: var(--ink);
  box-shadow: var(--shadow-pop);
}

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

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

.stat-grid__item {
  padding: 24px;
  background: var(--paper);
}

.stat-grid__value {
  font-size: 2.25rem;
  font-weight: 800;
}

.metric-band {
  background: var(--forest);
  color: var(--paper);
}

.metric-band .stat-grid__item {
  background: transparent;
}

.dashed-rule {
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(90deg, currentColor 0 8px, transparent 8px 16px);
  opacity: 0.28;
}

.cta-band {
  background: var(--ink);
  color: var(--paper);
}

.cta-band__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  padding: 64px 0;
}

.cta-band__copy {
  display: grid;
  gap: 16px;
  max-width: 720px;
}

.ecomnav-answer-block {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
}

.ecomnav-answer-block__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 72px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.ecomnav-answer-block__summary::-webkit-details-marker {
  display: none;
}

.ecomnav-answer-block__summary:hover {
  background: color-mix(in oklab, var(--forest) 6%, var(--paper));
}

.ecomnav-answer-block__summary:focus-visible {
  outline: 3px solid color-mix(in oklab, var(--cobalt) 55%, white);
  outline-offset: -3px;
}

.ecomnav-answer-block[open] .ecomnav-answer-block__summary {
  border-bottom: 2px solid color-mix(in oklab, var(--ink) 18%, white);
}

.ecomnav-answer-block__summary-copy {
  display: grid;
  gap: 4px;
}

.ecomnav-answer-block__title {
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.15;
}

.ecomnav-answer-block__summary-text {
  color: color-mix(in oklab, var(--ink) 62%, white);
  font-size: 0.94rem;
  line-height: 1.45;
}

.ecomnav-answer-block__indicator {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border: 2px solid var(--ink);
  border-radius: 10px;
}

.ecomnav-answer-block__indicator::before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
}

.ecomnav-answer-block[open] .ecomnav-answer-block__indicator::before {
  transform: rotate(225deg) translateY(-1px);
}

.ecomnav-answer-block__body {
  padding: 20px;
}

.ecomnav-answer-list {
  display: grid;
  gap: 16px;
}

.ecomnav-answer-item {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid color-mix(in oklab, var(--ink) 18%, white);
  border-radius: 16px;
  background: color-mix(in oklab, var(--paper) 92%, white);
}

.ecomnav-answer-item__question {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.35;
}

.ecomnav-answer-item__answer {
  margin: 0;
  color: color-mix(in oklab, var(--ink) 77%, white);
  font-size: 0.97rem;
  line-height: 1.62;
}

.ecomnav-answer-item__link {
  width: fit-content;
}

.image-frame {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 18px;
  box-shadow: var(--shadow-pop);
}

.image-caption {
  padding: 12px 16px;
  border-top: 2px solid var(--ink);
  background: var(--paper);
  font-size: 0.78rem;
  color: color-mix(in oklab, var(--ink) 65%, white);
}

.site-footer {
  background: var(--paper-2);
  color: var(--ink);
}

.footer-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  padding: 56px 0;
}

.footer-heading {
  margin-bottom: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 55%, white);
}

.footer-copy {
  max-width: 360px;
  margin-top: 18px;
  font-size: 0.95rem;
  color: color-mix(in oklab, var(--ink) 72%, white);
}

.footer-brand .brand {
  align-items: flex-start;
}

.footer-brand .brand-copy {
  gap: 8px;
}

.footer-links--contact {
  align-content: start;
}

.footer-links__cta {
  padding-top: 6px;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 500;
}

.footer-links a:hover {
  color: var(--forest);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0 28px;
  border-top: 2px solid var(--ink);
  font-size: 0.78rem;
  color: color-mix(in oklab, var(--ink) 60%, white);
}

.text-link {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--forest);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.text-link:hover,
.text-link:focus-visible {
  color: color-mix(in oklab, var(--forest) 78%, black);
  text-decoration-thickness: 2px;
}

.article-content a,
.section-intro a,
.contacts-page--sync a:not(.button):not(.case-link-card),
.about-section--sync a:not(.button),
.about-deliverables-section a:not(.button),
.about-team-section a:not(.button) {
  color: var(--forest);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
}

.article-content a:hover,
.article-content a:focus-visible,
.section-intro a:hover,
.section-intro a:focus-visible,
.contacts-page--sync a:not(.button):not(.case-link-card):hover,
.contacts-page--sync a:not(.button):not(.case-link-card):focus-visible,
.about-section--sync a:not(.button):hover,
.about-section--sync a:not(.button):focus-visible,
.about-deliverables-section a:not(.button):hover,
.about-deliverables-section a:not(.button):focus-visible,
.about-team-section a:not(.button):hover,
.about-team-section a:not(.button):focus-visible,
.article-toc li a:hover,
.article-toc li a:focus-visible {
  color: color-mix(in oklab, var(--forest) 78%, black);
  text-decoration-thickness: 2px;
}

.archive-section--sync .card__title a,
.single-service .card__title a,
.journal-editorial__body h3 a,
.case-editorial__footer h3 a,
.article-spotlight__title a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: color-mix(in oklab, var(--forest) 50%, white);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.16em;
}

.archive-section--sync .card__title a:hover,
.archive-section--sync .card__title a:focus-visible,
.single-service .card__title a:hover,
.single-service .card__title a:focus-visible,
.journal-editorial__body h3 a:hover,
.journal-editorial__body h3 a:focus-visible,
.case-editorial__footer h3 a:hover,
.case-editorial__footer h3 a:focus-visible,
.article-spotlight__title a:hover,
.article-spotlight__title a:focus-visible {
  color: var(--forest);
}

.article-toc li a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: color-mix(in oklab, var(--forest) 38%, white);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.form-shell,
.contact-form {
  display: grid;
  gap: 16px;
}

.split-layout--editorial {
  align-items: start;
}

.about-principles-grid,
.about-industries-grid,
.about-team-grid,
.about-deliverables-grid,
.contacts-process {
  display: grid;
  gap: 16px;
}

.about-principles-grid {
  gap: 1px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--ink);
  box-shadow: var(--shadow-pop);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-principle-card,
.about-industry-card,
.about-team-card,
.about-deliverables-grid li,
.contacts-process__item,
.contacts-direct,
.contact-panel {
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
}

.about-principle-card {
  padding: 20px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-principle-card h3,
.about-team-card h3,
.contacts-process__item h3 {
  margin-top: 12px;
  font-size: 1.15rem;
  line-height: 1.16;
}

.about-principle-card p,
.about-team-card p,
.contacts-process__item p,
.contacts-direct p,
.contact-panel .field label,
.contact-panel .field input,
.contact-panel .field textarea {
  color: color-mix(in oklab, var(--ink) 74%, white);
}

.about-principle-card p,
.about-team-card p,
.contacts-process__item p,
.contacts-direct p {
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.58;
}

.about-stats-grid .stat-grid__item {
  min-height: 160px;
}

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

.about-industry-card {
  padding: 18px;
  background: var(--paper-2);
}

.about-industry-card p {
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}

.about-team-grid {
  gap: 1px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--ink);
  box-shadow: var(--shadow-pop);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-team-card {
  padding: 20px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.about-team-aside {
  display: grid;
  gap: 16px;
}

.about-deliverables-grid {
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-deliverables-grid li {
  padding: 14px;
  background: var(--paper-2);
}

.about-deliverables-grid strong {
  display: block;
  font-size: 1rem;
}

.about-deliverables-grid span {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: color-mix(in oklab, var(--ink) 60%, white);
}

.contacts-page__grid {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
}

.contacts-process__item,
.contacts-direct {
  padding: 20px;
}

.contacts-process__head {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.contacts-process__head span,
.contacts-direct__label,
.contact-panel__head {
  font-size: 0.74rem;
  font-weight: 700;
}

.contacts-process__head span {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  color: var(--forest);
}

.contacts-direct {
  margin-top: 24px;
}

.contacts-direct__label {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in oklab, var(--ink) 56%, white);
}

.contacts-direct a {
  color: var(--forest);
  font-weight: 700;
}

.contact-panel {
  display: grid;
  gap: 18px;
  padding: 28px;
}

.contact-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}

.contact-panel__head strong {
  color: color-mix(in oklab, var(--ink) 56%, white);
}

.contact-panel .display-md {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.contact-panel__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 2px dashed rgba(24, 28, 40, 0.18);
}

.contact-panel__actions p {
  margin: 0;
  font-size: 0.82rem;
  color: color-mix(in oklab, var(--ink) 60%, white);
}

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

.field label,
.field-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 64%, white);
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: white;
  font: inherit;
  outline: 0;
}

.field input:focus,
.field textarea:focus {
  outline: 3px solid var(--cobalt);
}

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

.notice {
  padding: 16px;
  border: 2px solid var(--forest);
  border-radius: 12px;
  background: var(--paper-2);
}

.post-content,
.article-layout {
  display: grid;
  gap: 32px;
}

.article-layout {
  grid-template-columns: 260px minmax(0, 1fr);
}

.article-toc {
  position: sticky;
  top: 100px;
  align-self: start;
  padding: 20px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
}

.article-toc ul {
  display: grid;
  gap: 10px;
  margin-top: 12px;
  font-size: 0.92rem;
}

.article-toc__label,
.article-feature-meta {
  font-size: 0.74rem;
  font-weight: 700;
}

.article-toc__label {
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in oklab, var(--ink) 56%, white);
}

.article-toc li a {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.article-toc li a span {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  color: color-mix(in oklab, var(--ink) 55%, white);
}

.article-content {
  display: grid;
  gap: 34px;
}

.article-content h2 {
  font-size: 1.7rem;
  font-weight: 800;
}

.article-content p {
  color: color-mix(in oklab, var(--ink) 78%, white);
  font-size: 1rem;
  line-height: 1.72;
}

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

.article-feature-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  color: color-mix(in oklab, var(--ink) 56%, white);
}

.article-section-index {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: 0.04em;
}

.article-spotlight {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
}

.article-spotlight__label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in oklab, var(--ink) 56%, white);
}

.article-spotlight__title,
.case-link-card__title {
  font-size: 1.22rem;
  font-weight: 800;
  line-height: 1.18;
}

.case-hero-panels,
.case-link-grid,
.case-story-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--ink);
  box-shadow: var(--shadow-pop);
}

.case-hero-panels {
  margin-top: 32px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-hero-panels__item,
.case-link-card,
.case-story-card {
  padding: 20px;
  background: var(--paper);
}

.case-hero-panels__item p,
.case-link-card p,
.case-story-card p {
  margin-top: 10px;
  font-size: 0.94rem;
  line-height: 1.6;
  color: color-mix(in oklab, var(--ink) 76%, white);
}

.case-hero-panels__item--accent {
  background: var(--forest);
  color: var(--paper);
}

.case-hero-panels__item--accent .info-box__label,
.case-hero-panels__item--accent p {
  color: rgba(248, 244, 237, 0.86);
}

.detail-list {
  display: grid;
  gap: 12px;
}

.detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
}

.detail-list li span {
  width: 12px;
  height: 4px;
  margin-top: 11px;
  flex-shrink: 0;
  background: var(--forest);
}

.detail-list--cobalt li span {
  background: var(--cobalt);
}

.detail-list li p {
  margin: 0;
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.48;
}

.case-metrics-grid {
  margin-top: 24px;
}

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

.case-story-card h3 {
  font-size: 1.24rem;
  line-height: 1.18;
}

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

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

.case-link-grid--one {
  grid-template-columns: minmax(0, 1fr);
  max-width: 480px;
}

.case-link-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.case-link-card:hover,
.case-link-card:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0 color-mix(in oklab, var(--ink) 96%, white);
}

.case-link-card span:last-child {
  margin-top: auto;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--forest);
}

.hero__inner--page {
  padding-top: 64px;
  padding-bottom: 72px;
}

.case-answers-section .section-intro {
  max-width: 42rem;
}

.archive-answer-block {
  margin-top: 18px;
  max-width: 980px;
}

.page-hero__title {
  max-width: 840px;
}

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

.page-hero__actions {
  margin-top: 30px;
}

.service-module-panel {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-pop-lg);
}

.service-module-panel__head {
  padding: 14px 18px;
  border-bottom: 2px solid var(--ink);
  background: var(--paper-2);
  font-size: 0.74rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 62%, white);
}

.service-module-panel__list {
  display: grid;
}

.service-module-panel__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
}

.service-module-panel__list li + li {
  border-top: 1px solid rgba(24, 28, 40, 0.12);
}

.service-module-panel__list li span,
.detail-list--symptoms li span {
  width: 10px;
  height: 10px;
  margin-top: 6px;
  flex-shrink: 0;
  border-radius: 999px;
  background: var(--forest);
}

.service-module-panel__list li p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.5;
}

.service-module-panel__meta {
  display: grid;
  gap: 1px;
  border-top: 2px solid var(--ink);
  background: var(--ink);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-module-panel__meta > div {
  padding: 16px 18px;
  background: var(--paper);
}

.service-module-panel__meta > div div {
  font-size: 0.72rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 56%, white);
}

.service-module-panel__meta > div strong {
  display: block;
  margin-top: 6px;
  font-size: 1rem;
  line-height: 1.2;
}

.detail-list__count {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--forest);
  color: var(--paper);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 700;
}

.detail-list--symptoms li span {
  background: var(--coral);
}

.service-analyze-grid,
.service-deliverables-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--ink);
  box-shadow: var(--shadow-pop);
}

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

.service-analyze-grid__item,
.service-deliverables-grid li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--paper);
}

.service-analyze-grid__item span,
.service-deliverables-grid li span {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.74rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 50%, white);
}

.service-analyze-grid__item p,
.service-deliverables-grid li p {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.45;
}

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

.home-ticker--sync {
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.home-ticker__track {
  display: inline-flex;
  width: max-content;
  padding: 11px 0;
  white-space: nowrap;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  animation: homeTickerScroll 26s linear infinite;
  will-change: transform;
}

.home-ticker__segment {
  display: flex;
  flex-shrink: 0;
  gap: 28px;
  padding-right: 28px;
}

.home-ticker__track span {
  color: rgba(248, 244, 237, 0.86);
}

@keyframes homeTickerScroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-33.3333%, 0, 0);
  }
}

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

.testimonials-grid--quote-cards {
  align-items: stretch;
}

.testimonials-grid--stories {
  align-items: stretch;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
}

.testimonial-card--editorial {
  min-height: 100%;
}

.testimonial-card__quote {
  padding: 24px;
  border-bottom: 2px solid var(--ink);
}

.testimonial-card__quote-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.testimonial-card__mark {
  display: block;
  font-size: 3.4rem;
  line-height: 0.75;
  color: var(--forest);
}

.testimonial-card__eyebrow {
  padding-top: 6px;
  font-size: 0.72rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 56%, white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonial-card__quote p {
  margin-top: -8px;
  font-size: 1rem;
  line-height: 1.7;
  color: color-mix(in oklab, var(--ink) 84%, white);
}

.testimonial-card__facts {
  display: grid;
  gap: 1px;
  background: var(--ink);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonial-card__fact {
  min-height: 104px;
  padding: 16px;
  background: var(--paper);
}

.testimonial-card__fact--editorial {
  min-height: 112px;
}

.testimonial-card__fact div {
  font-size: 0.74rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 56%, white);
}

.testimonial-card__fact p {
  margin-top: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-top: 2px solid var(--ink);
  background: var(--paper-2);
}

.testimonial-card__author > span {
  display: grid;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--forest);
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 800;
}

.testimonial-card__author--editorial {
  margin-top: auto;
}

.testimonial-card__author strong {
  display: block;
  font-size: 1rem;
}

.testimonial-card__author p {
  margin-top: 2px;
  font-size: 0.78rem;
  color: color-mix(in oklab, var(--ink) 58%, white);
}

.testimonial-story {
  display: grid;
  align-content: start;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
}

.testimonial-story__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 2px solid var(--ink);
  background: var(--paper-2);
  font-size: 0.72rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 58%, white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonial-story__top strong {
  color: color-mix(in oklab, var(--ink) 72%, white);
}

.testimonial-story__title {
  padding: 22px 20px 0;
  font-size: 1.32rem;
  font-weight: 800;
  line-height: 1.14;
}

.testimonial-story__quote {
  padding: 14px 20px 0;
  font-size: 0.96rem;
  line-height: 1.62;
  color: color-mix(in oklab, var(--ink) 80%, white);
}

.testimonial-story__grid {
  display: grid;
  gap: 1px;
  margin-top: 20px;
  background: var(--ink);
}

.testimonial-story__cell {
  padding: 16px 20px;
  background: var(--paper);
}

.testimonial-story__cell div {
  font-size: 0.72rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 56%, white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.testimonial-story__cell p {
  margin-top: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.48;
}

.testimonial-story__cell--accent {
  background: var(--forest);
  color: var(--paper);
}

.testimonial-story__cell--accent div,
.testimonial-story__cell--accent p {
  color: var(--paper);
}

.testimonial-story__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-top: 2px solid var(--ink);
  background: color-mix(in oklab, var(--paper-2) 92%, white);
}

.testimonial-story__footer span {
  display: grid;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--forest);
  color: var(--paper);
  font-size: 0.92rem;
  font-weight: 800;
}

.testimonial-story__footer strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.2;
}

.testimonial-story__footer p {
  margin-top: 2px;
  font-size: 0.78rem;
  color: color-mix(in oklab, var(--ink) 58%, white);
}

.case-editorials {
  display: grid;
  gap: 24px;
}

.case-editorial {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--ink);
  box-shadow: var(--shadow-pop);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.case-editorial--sync {
  align-items: stretch;
}

.case-editorial__media {
  background: var(--paper);
}

.case-editorial__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-editorial__grid {
  display: grid;
  gap: 1px;
  background: var(--ink);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-editorial__head,
.case-editorial__cell,
.case-editorial__footer {
  padding: 18px 20px;
  background: var(--paper);
}

.case-editorial__head,
.case-editorial__footer {
  grid-column: 1 / -1;
}

.case-editorial__head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px 16px;
}

.case-editorial__head span,
.case-editorial__cell div {
  font-size: 0.74rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 56%, white);
}

.case-editorial__head strong {
  color: var(--forest);
  font-size: 0.94rem;
}

.case-editorial__cell {
  min-height: 136px;
}

.case-editorial__cell--scenario {
  background: var(--paper);
}

.case-editorial__cell--muted {
  background: var(--paper-2);
}

.case-editorial__cell--accent {
  background: var(--forest);
  color: var(--paper);
}

.case-editorial__cell--accent div {
  color: rgba(248, 244, 237, 0.72);
}

.case-editorial__cell p {
  margin-top: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.55;
}

.case-editorial__footer h3 {
  font-size: 1.24rem;
  line-height: 1.2;
}

.case-editorial__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.case-editorial__footer-copy {
  min-width: 0;
}

.case-editorial__footer-label {
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 56%, white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.archive-filters {
  display: grid;
  gap: 18px;
}

.archive-filters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.archive-filter-chip {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 14px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.18s ease;
}

.archive-filter-chip:hover {
  transform: translate(-2px, -2px);
}

.archive-filter-chip.is-active {
  background: var(--ink);
  color: var(--paper);
}

.archive-list-note {
  max-width: 840px;
  margin: 22px 0 34px;
}

.archive-list-note p {
  font-size: 1rem;
  line-height: 1.65;
  color: color-mix(in oklab, var(--ink) 74%, white);
}

.archive-empty {
  padding: 22px 24px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
  font-size: 0.98rem;
  font-weight: 500;
  color: color-mix(in oklab, var(--ink) 72%, white);
}

.team-stats {
  display: grid;
  gap: 1px;
  margin-top: 20px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--ink);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.team-stats__item {
  padding: 20px;
  background: var(--paper);
}

.team-stats__item strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.team-stats__item p {
  margin-top: 8px;
  font-size: 0.9rem;
  color: color-mix(in oklab, var(--ink) 62%, white);
}

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

.journal-editorial {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
}

.journal-editorial__cover {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-bottom: 2px solid var(--ink);
  background: var(--paper-2);
}

.journal-editorial__cover-label {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 54%, white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.journal-editorial__cover-grid {
  position: absolute;
  inset: 0;
  background-color: var(--paper);
  background-image: linear-gradient(rgba(24, 28, 40, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 28, 40, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
}

.journal-editorial__cover-top,
.journal-editorial__bars {
  position: absolute;
  left: 20px;
  right: 20px;
  z-index: 1;
}

.journal-editorial__cover-top {
  top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.journal-editorial__cover-top span {
  padding: 4px 8px;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
}

.journal-editorial__cover-top strong {
  font-size: 0.74rem;
  color: color-mix(in oklab, var(--ink) 56%, white);
}

.journal-editorial__bars {
  bottom: 42px;
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.journal-editorial__bars span {
  width: 12px;
  border-radius: 2px 2px 0 0;
}

.journal-editorial__bars span.is-ink {
  background: var(--ink);
}

.journal-editorial__bars span.is-forest {
  background: var(--forest);
}

.journal-editorial__bars em {
  margin-left: auto;
  font-style: normal;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 0.9;
  color: rgba(24, 28, 40, 0.12);
}

.journal-editorial__body {
  display: grid;
  gap: 12px;
  padding: 18px 18px 20px;
}

.journal-editorial__body h3 {
  font-size: 1.24rem;
  line-height: 1.16;
}

.journal-editorial__body p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: color-mix(in oklab, var(--ink) 74%, white);
}

.journal-editorial__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 2px dashed rgba(24, 28, 40, 0.18);
  font-size: 0.76rem;
  color: color-mix(in oklab, var(--ink) 56%, white);
}

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

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

.ecosystem-panel {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
}

.ecosystem-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  border-bottom: 2px solid var(--ink);
  background: var(--paper-2);
  font-size: 0.74rem;
  font-weight: 700;
}

.ecosystem-panel__head strong {
  color: color-mix(in oklab, var(--ink) 56%, white);
  font-weight: 700;
}

.ecosystem-panel__footer {
  padding: 12px 16px;
  border-top: 2px solid var(--ink);
  background: var(--paper-2);
  font-size: 0.76rem;
  color: color-mix(in oklab, var(--ink) 60%, white);
}

.ecosystem-card {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
}

.ecosystem-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 2px solid var(--ink);
  background: var(--paper-2);
  font-size: 0.74rem;
  font-weight: 700;
}

.ecosystem-card__head strong {
  color: color-mix(in oklab, var(--ink) 56%, white);
  font-weight: 700;
}

.ecosystem-card__footer {
  padding: 14px 18px;
  border-top: 2px solid var(--ink);
  background: var(--paper-2);
  font-size: 0.76rem;
  color: color-mix(in oklab, var(--ink) 60%, white);
}

.rating-list li {
  display: grid;
  align-items: center;
  gap: 16px;
  padding: 18px;
  grid-template-columns: auto 1fr 120px;
}

.ecosystem-rating-row {
  grid-template-columns: auto 1fr 120px;
}

.ecosystem-rating-row__copy {
  min-width: 0;
}

.rating-list li + li,
.glossary-list div + div {
  border-top: 1px solid rgba(24, 28, 40, 0.14);
}

.rating-list li > span {
  display: grid;
  width: 48px;
  height: 40px;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--forest);
  color: var(--paper);
  font-weight: 800;
}

.rating-list strong,
.glossary-list dt {
  display: block;
  font-size: 1.02rem;
  line-height: 1.18;
}

.rating-list p,
.glossary-list dd {
  margin-top: 4px;
  font-size: 0.82rem;
  line-height: 1.55;
  color: color-mix(in oklab, var(--ink) 62%, white);
}

.rating-list__bar {
  display: block;
  height: 8px;
  overflow: hidden;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--paper-2);
}

.rating-list__bar i {
  display: block;
  height: 100%;
  background: var(--forest);
}

.glossary-list div {
  display: grid;
  gap: 20px;
  padding: 18px;
  grid-template-columns: minmax(140px, 0.8fr) minmax(0, 1.2fr);
}

.ecosystem-glossary-row {
  display: grid;
  gap: 20px;
  padding: 18px;
  grid-template-columns: minmax(140px, 0.8fr) minmax(0, 1.2fr);
}

.why-list--forest span {
  background: var(--forest);
  color: var(--paper);
}

.why-list--editorial {
  gap: 14px;
}

.why-note p {
  font-size: 1.12rem;
  line-height: 1.38;
}

.sync-split,
.team-shell {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.sync-split--wide {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.section-copy {
  display: grid;
  align-content: start;
  gap: 24px;
}

.editorial-note {
  padding: 22px 24px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
}

.editorial-note--paper {
  background: var(--paper-2);
}

.editorial-note__label {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: color-mix(in oklab, var(--ink) 58%, white);
}

.editorial-note p {
  margin-top: 10px;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1.45rem;
  font-weight: 800;
  line-height: 1.18;
}

.editorial-frame {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
}

.editorial-frame img,
.process-editorial__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.editorial-frame__caption {
  padding: 11px 16px;
  border-top: 2px solid var(--ink);
  background: var(--paper-2);
  font-size: 0.76rem;
  color: color-mix(in oklab, var(--ink) 64%, white);
}

.conflict-list,
.why-list {
  display: grid;
  gap: 12px;
}

.conflict-list {
  align-content: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.conflict-list li,
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 18px 18px 16px;
  border: 2px solid var(--ink);
  border-radius: 16px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
}

.market-conflict--sync .conflict-list li {
  align-content: start;
  min-height: 124px;
}

.conflict-list span,
.why-list span {
  display: grid;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: color-mix(in oklab, var(--coral) 12%, var(--paper));
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--coral);
}

.conflict-list p,
.why-list p {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.35;
}

.problem-table {
  align-self: start;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
}

.problem-table__head,
.problem-table__row {
  display: grid;
  grid-template-columns: 1.05fr 1.35fr 1.4fr;
}

.problem-table__head {
  padding: 13px 18px;
  background: var(--ink);
  color: rgba(248, 244, 237, 0.86);
  font-size: 0.74rem;
  font-weight: 700;
}

.problem-table__row {
  gap: 18px;
  padding: 16px 18px;
  border-top: 1px solid rgba(24, 28, 40, 0.12);
}

.problem-table__row:nth-child(odd) {
  background: var(--paper-2);
}

.problem-table__row > div {
  font-size: 0.92rem;
  line-height: 1.45;
  color: color-mix(in oklab, var(--ink) 78%, white);
}

.problem-table__row > div:first-child {
  display: flex;
  gap: 10px;
  color: var(--ink);
  font-weight: 700;
}

.problem-table__row > div:first-child span {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  color: color-mix(in oklab, var(--ink) 48%, white);
}

.problem-table__footer {
  padding: 18px;
  border-top: 2px solid var(--ink);
  background: var(--paper-2);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.system-section--sync {
  position: relative;
  overflow: hidden;
}

.system-section__inner {
  position: relative;
}

.system-shell {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-pop-lg);
}

.system-shell__top,
.home-cta__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 2px solid var(--ink);
  background: var(--paper-2);
  font-size: 0.74rem;
  font-weight: 700;
}

.system-shell__top span:last-child,
.home-cta__panel-head strong {
  color: color-mix(in oklab, var(--ink) 56%, white);
}

.system-flow {
  padding: 24px 24px 22px;
  border-bottom: 2px solid var(--ink);
}

.system-flow__label {
  margin-bottom: 12px;
  font-size: 0.76rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 55%, white);
}

.system-flow__steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 8px;
}

.system-flow__step {
  padding: 8px 12px;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: var(--paper-2);
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 800;
}

.system-flow__arrow {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  color: color-mix(in oklab, var(--ink) 44%, white);
}

.system-flow__note {
  margin-top: 12px;
  font-size: 0.82rem;
  color: color-mix(in oklab, var(--ink) 65%, white);
}

.system-grid {
  display: grid;
  gap: 1px;
  background: var(--ink);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.system-grid__item {
  padding: 20px 18px 18px;
  background: var(--paper);
}

.system-grid__item--accent {
  background: var(--paper-2);
}

.system-grid__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 50%, white);
}

.system-grid__meta strong {
  padding: 3px 6px;
  border: 1px solid var(--coral);
  border-radius: 6px;
  background: color-mix(in oklab, var(--coral) 10%, var(--paper));
  color: var(--coral);
  font-size: 0.64rem;
}

.system-grid__item h3 {
  margin-top: 10px;
  font-size: 1.35rem;
  font-weight: 800;
}

.system-grid__item p {
  margin-top: 8px;
  font-size: 0.88rem;
  line-height: 1.45;
  color: color-mix(in oklab, var(--ink) 70%, white);
}

.system-grid__bars {
  display: flex;
  gap: 6px;
  margin-top: 16px;
}

.system-grid__bars span {
  height: 6px;
  flex: 1;
  border-radius: 999px;
  background: color-mix(in oklab, var(--ink) 10%, white);
}

.system-grid__bars .is-active {
  background: var(--forest);
}

.system-grid__item--accent .is-active {
  background: var(--coral);
}

.system-legend {
  display: grid;
  gap: 1px;
  border-top: 2px solid var(--ink);
  background: var(--ink);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.system-legend > div {
  padding: 16px 18px;
  background: var(--paper);
}

.system-legend > div div {
  font-size: 0.76rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 55%, white);
}

.system-legend > div p {
  margin-top: 6px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.4;
}

.growth-map {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--ink);
  box-shadow: var(--shadow-pop);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.growth-map__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  background: var(--paper);
}

.growth-map__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.growth-map__meta span {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 48%, white);
}

.growth-map__meta strong {
  padding: 3px 6px;
  border: 1px solid var(--coral);
  border-radius: 6px;
  background: color-mix(in oklab, var(--coral) 10%, var(--paper));
  font-size: 0.64rem;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.growth-map__item h3 {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.12;
}

.growth-map__money {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.94rem;
  font-weight: 700;
  color: var(--coral);
}

.growth-map__item p,
.outcomes-grid__item p,
.journal-shell__cta p,
.team-shell__item p,
.process-shell__item p,
.process-editorial__copy p,
.home-cta__copy p,
.home-cta__panel p {
  color: color-mix(in oklab, var(--ink) 74%, white);
}

.growth-map__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 20px 24px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--paper-2);
}

.growth-map__cta p {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.25;
}

.services-shell,
.cases-shell,
.journal-shell,
.outcomes-grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--ink);
  box-shadow: var(--shadow-pop);
}

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

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

.service-editorial-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  background: var(--paper);
}

.service-editorial-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
}

.service-editorial-card__meta span {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  color: color-mix(in oklab, var(--ink) 48%, white);
}

.service-editorial-card__meta strong {
  padding: 4px 8px;
  border: 1px solid rgba(24, 28, 40, 0.16);
  border-radius: 8px;
  background: var(--paper-2);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 700;
}

.service-editorial-card__title {
  font-size: 1.56rem;
  line-height: 1.12;
}

.service-editorial-card__summary {
  font-size: 0.96rem;
  line-height: 1.62;
  color: color-mix(in oklab, var(--ink) 74%, white);
}

.service-editorial-card__outcome {
  padding: 14px 14px 15px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--paper-2);
}

.service-editorial-card__outcome div {
  font-size: 0.72rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 58%, white);
}

.service-editorial-card__outcome p {
  margin-top: 6px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.42;
}

.service-editorial-card__bullets {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: color-mix(in oklab, var(--ink) 76%, white);
}

.service-editorial-card__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.service-editorial-card__bullets li::before {
  content: "";
  width: 12px;
  height: 2px;
  margin-top: 0.7em;
  flex-shrink: 0;
  background: var(--forest);
}

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

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

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

.services-shell .card,
.cases-shell .card,
.journal-shell .card {
  height: 100%;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: var(--paper);
}

.services-section--sync .card--service {
  gap: 18px;
}

.services-section--sync .card--service .card__title {
  font-size: 1.42rem;
  line-height: 1.16;
}

.services-section--sync .card--service .info-box {
  padding: 13px 14px;
  border-radius: 12px;
}

.services-section--sync .card--service .list-points {
  font-size: 0.9rem;
  line-height: 1.48;
}

.services-section--sync .card--service .text-link {
  margin-top: auto;
}

.process-shell {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-shell--editorial {
  gap: 18px;
}

.process-shell__item {
  display: flex;
  flex-direction: column;
  padding: 20px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
}

.process-shell__item--editorial {
  position: relative;
}

.process-shell__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  color: color-mix(in oklab, var(--ink) 52%, white);
}

.process-shell__head span,
.process-shell__head strong {
  font-weight: 700;
}

.process-shell__item h3 {
  margin-top: 14px;
  font-size: 1.28rem;
  font-weight: 800;
}

.process-shell__item p {
  margin-top: 10px;
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.5;
}

.process-shell__artifact {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 2px dashed rgba(24, 28, 40, 0.22);
}

.process-shell__artifact--editorial {
  margin-top: 18px;
}

.process-shell__artifact div {
  font-size: 0.72rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 56%, white);
}

.process-shell__artifact strong {
  display: block;
  margin-top: 6px;
  font-size: 0.92rem;
  line-height: 1.35;
}

.process-editorial {
  display: grid;
  gap: 0;
  margin-top: 32px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.process-editorial--sync {
  align-items: stretch;
}

.process-editorial__media img {
  height: 100%;
  min-height: 100%;
}

.process-editorial__copy {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 28px;
}

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

.process-editorial__list li {
  padding: 14px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  background: var(--paper-2);
}

.process-editorial__list strong {
  display: block;
  font-size: 1rem;
  font-weight: 800;
}

.process-editorial__list span {
  display: block;
  margin-top: 4px;
  font-size: 0.78rem;
  color: color-mix(in oklab, var(--ink) 64%, white);
}

.outcomes-section--sync {
  background: var(--forest);
  color: var(--paper);
}

.outcomes-section__intro,
.outcomes-note {
  color: rgba(248, 244, 237, 0.76);
}

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

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

.outcomes-grid__item {
  padding: 20px;
  background: transparent;
}

.outcomes-grid__item--editorial {
  padding: 22px 20px;
}

.outcomes-grid__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.outcomes-grid__head span {
  font-size: 1.1rem;
  font-weight: 800;
}

.outcomes-grid__head strong {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(248, 244, 237, 0.56);
}

.outcomes-grid__eyebrow {
  margin-top: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(248, 244, 237, 0.48);
}

.outcomes-grid__value {
  margin-top: 14px;
  font-size: 2.3rem;
  font-weight: 800;
  line-height: 1;
}

.outcomes-grid__item .dashed-rule {
  margin-top: 14px;
  color: rgba(248, 244, 237, 0.42);
}

.outcomes-grid__item p {
  margin-top: 14px;
  font-size: 0.86rem;
  line-height: 1.45;
  color: rgba(248, 244, 237, 0.78);
}

.outcomes-note {
  margin-top: 18px;
  font-size: 0.76rem;
}

.team-shell {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
}

.team-shell--editorial {
  align-items: start;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
}

.team-shell__main {
  display: grid;
  gap: 20px;
}

.team-shell__grid {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 20px;
  background: var(--ink);
  box-shadow: var(--shadow-pop);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.team-practice-card {
  padding: 18px 18px 20px;
  background: var(--paper);
}

.team-practice-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.team-practice-card__head h3 {
  font-size: 1.16rem;
  font-weight: 800;
  line-height: 1.14;
}

.team-practice-card__head strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--forest);
}

.team-practice-card p {
  margin-top: 8px;
  font-size: 0.88rem;
  line-height: 1.44;
  color: color-mix(in oklab, var(--ink) 74%, white);
}

.team-stats--editorial {
  margin-top: 0;
}

.team-shell__item {
  padding: 20px;
  background: var(--paper);
}

.team-shell__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.team-shell__head h3 {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.1;
}

.team-shell__head strong {
  font-size: 2rem;
  font-weight: 800;
  color: var(--forest);
}

.team-shell__item p {
  margin-top: 10px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.team-shell__aside {
  display: grid;
  align-content: start;
  gap: 18px;
}

.team-shell__aside--editorial {
  gap: 18px;
}

.editorial-frame--team img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.team-note p {
  font-size: 1.1rem;
  line-height: 1.38;
}

.journal-shell__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  padding: 20px 24px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
}

.journal-shell__title {
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.2;
}

.journal-shell__eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 58%, white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.journal-shell__cta p {
  margin-top: 8px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.journal-shell__cta--subscribe {
  align-items: center;
}

.journal-shell__cta--editorial {
  padding: 22px 24px;
  background: var(--paper);
}

.journal-shell__copy {
  max-width: 520px;
}

.journal-shell__subscribe {
  display: flex;
  width: 100%;
  max-width: 420px;
  gap: 10px;
  margin-left: auto;
}

.journal-shell__subscribe input {
  flex: 1 1 auto;
  min-height: 48px;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--paper);
  padding: 0 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
}

.journal-shell__subscribe input::placeholder {
  color: color-mix(in oklab, var(--ink) 46%, white);
}

.journal-shell__subscribe .button {
  min-width: 132px;
  justify-content: center;
}

.faq-section--sync .faq-list {
  border-radius: 20px;
}

.faq-section--sync .faq-item summary {
  padding: 22px;
  font-size: 1.02rem;
}

.faq-note {
  display: grid;
  gap: 14px;
}

.faq-note .button {
  justify-self: end;
}

.home-faq-list {
  display: grid;
  gap: 10px;
}

.home-faq-item {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow-pop);
}

.home-faq-item__summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
}

.home-faq-item__summary::-webkit-details-marker {
  display: none;
}

.home-faq-item__meta {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.home-faq-item__index {
  display: grid;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 10px;
  background: color-mix(in oklab, var(--paper-2) 84%, white);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  color: color-mix(in oklab, var(--ink) 54%, white);
}

.home-faq-item__question {
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.home-faq-item__icon {
  display: grid;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  place-items: center;
  border: 2px solid var(--ink);
  border-radius: 8px;
  background: var(--paper-2);
  font-size: 1rem;
  font-weight: 800;
  transition: transform 0.18s ease;
}

.home-faq-item[open] .home-faq-item__icon {
  transform: rotate(45deg);
}

.home-faq-item__answer {
  padding: 0 20px 18px 66px;
  border-top: 2px dashed rgba(24, 28, 40, 0.16);
}

.home-faq-item__answer p {
  margin: 14px 0 0;
  font-size: 0.94rem;
  line-height: 1.62;
  color: color-mix(in oklab, var(--ink) 74%, white);
}

.home-cta--sync {
  border-top: 2px solid var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.home-cta__inner {
  display: grid;
  align-items: start;
  gap: 40px;
  padding: 52px 0 56px;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
}

.home-cta__copy {
  display: grid;
  align-content: start;
  gap: 16px;
  max-width: 620px;
  padding-top: 6px;
}

.home-cta__headline {
  max-width: 680px;
  font-size: clamp(2.7rem, 4.15vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.home-cta__headline-accent {
  display: inline-block;
  padding: 0 0.12em;
  background: var(--lime);
  color: var(--ink);
}

.home-cta__headline-line {
  display: block;
}

.home-cta__copy p {
  max-width: 560px;
  font-size: 0.98rem;
  line-height: 1.6;
  color: rgba(248, 244, 237, 0.78);
}

.home-cta__steps {
  display: grid;
  gap: 10px;
  margin-top: 2px;
  max-width: 560px;
}

.home-cta__steps li {
  display: grid;
  align-items: center;
  gap: 14px;
  padding: 13px 16px;
  border: 1px solid rgba(248, 244, 237, 0.24);
  border-radius: 16px;
  background: rgba(248, 244, 237, 0.06);
  grid-template-columns: auto auto 1fr;
}

.home-cta__steps span,
.home-cta__steps strong {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 700;
}

.home-cta__steps strong {
  padding: 5px 10px;
  border: 1px solid rgba(248, 244, 237, 0.22);
  border-radius: 10px;
  background: rgba(248, 244, 237, 0.08);
  color: var(--paper);
}

.home-cta__steps p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(248, 244, 237, 0.78);
}

.home-cta__panel {
  display: grid;
  align-content: start;
  gap: 12px;
  align-self: start;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 6px 8px 0 0 rgba(248, 244, 237, 0.72);
}

.home-cta__form {
  min-height: 0;
}

.home-cta__fields {
  padding: 2px 18px 0;
}

.home-cta__form .field label {
  margin-bottom: 8px;
  color: color-mix(in oklab, var(--ink) 62%, white);
}

.home-cta__form .field input,
.home-cta__form .field textarea {
  min-height: 48px;
  border-radius: 16px;
  background: color-mix(in oklab, var(--paper) 82%, white);
}

.home-cta__form .field--full {
  padding: 2px 18px 0;
}

.home-cta__form .field--full label {
  margin-bottom: 10px;
}

.home-cta__form .field textarea {
  min-height: 126px;
  padding: 16px 18px;
  line-height: 1.55;
  resize: vertical;
}

.home-cta__notice {
  margin: 0 20px;
}

.home-cta__notice--error {
  border-color: var(--coral);
}

.home-cta__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px 18px;
  border-top: 2px dashed rgba(24, 28, 40, 0.22);
}

.home-cta__actions p {
  margin: 0;
  padding: 0;
  max-width: 320px;
  font-size: 0.74rem;
  line-height: 1.45;
  color: color-mix(in oklab, var(--ink) 56%, white);
}

.home-cta__actions .button {
  width: auto;
  min-width: 194px;
  min-height: 58px;
}

@media (max-width: 1279px) {
  .hero__layout {
    gap: 36px;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  }

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

  .process-shell,
  .services-shell,
  .cases-shell,
  .journal-shell,
  .system-grid,
  .service-analyze-grid,
  .service-deliverables-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-grid,
  .journal-editorials,
  .case-link-grid,
  .case-story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .problem-table__head,
  .problem-table__row,
  .system-legend {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .case-editorial,
  .ecosystem-grid,
  .ecosystem-shell {
    grid-template-columns: 1fr;
  }

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

  .contacts-page__grid {
    grid-template-columns: 1fr;
  }

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

  .card-grid--articles,
  .post-nav-grid,
  .footer-grid,
  .article-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 1023px) {
  .hero__layout,
  .hero-card__facts {
    grid-template-columns: 1fr;
  }

  .hero__aside {
    display: none;
  }

  .home .hero-card--mobile {
    display: block;
    margin-top: 24px;
  }

  .hero-stats {
    max-width: none;
  }

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

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

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

  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 14px 20px 22px;
    border-bottom: 2px solid var(--ink);
    background: var(--paper);
    box-shadow: 0 16px 32px rgba(24, 28, 40, 0.08);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .primary-nav a {
    width: 100%;
    padding: 10px 0;
  }

  .header-cta {
    display: none;
  }

  .section-header--split,
  .split-layout,
  .sync-split,
  .sync-split--wide,
  .team-shell,
  .process-editorial,
  .home-cta__inner,
  .case-hero-panels,
  .card-grid--services,
  .card-grid--cases,
  .card-grid--articles,
  .stat-grid--three,
  .field-grid,
  .footer-grid,
  .article-layout,
  .post-nav-grid,
  .split-boxes,
  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .about-principles-grid,
  .about-team-grid,
  .about-industries-grid,
  .about-deliverables-grid {
    grid-template-columns: 1fr;
  }

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

  .growth-map__cta,
  .journal-shell__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-panel__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .problem-table__head {
    display: none;
  }

  .problem-table__row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .problem-table__row > div {
    padding-right: 0;
  }

  .business-map__row {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .business-map__row-side,
  .business-map__row-money {
    text-align: left;
  }

  .business-map__row-side {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 12px;
  }

  .business-map__row-realized-note {
    margin-top: 0;
  }

  .business-map__row-potential {
    margin-top: 0;
  }

  .business-map__footer {
    grid-template-columns: 1fr;
  }

  .business-map__footer-card + .business-map__footer-card {
    border-left: 0;
    border-top: 1px solid color-mix(in oklab, var(--ink) 14%, transparent);
  }

  .article-toc {
    position: static;
  }
}

@media (max-width: 767px) {
  .section,
  .hero__inner {
    padding: 44px 0;
  }

  .home .hero__inner {
    padding: 26px 0 24px;
  }

  .home-ticker__track {
    padding: 10px 0;
    font-size: 0.96rem;
  }

  .home-ticker__segment {
    gap: 24px;
    padding-right: 24px;
  }

  .header-bar {
    min-height: 88px;
    gap: 12px;
    padding: 14px 0 12px;
  }

  .brand-copy__title {
    font-size: 11px;
    line-height: 1.16;
    white-space: normal;
  }

  .brand-copy__subtitle {
    display: block;
    max-width: 112px;
    font-size: 8.25px;
    line-height: 1.18;
  }

  .brand-mark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .brand-mark__icon {
    width: 28px;
    height: 28px;
  }

  .brand {
    gap: 10px;
    flex: 1;
    min-width: 0;
  }

  .home .menu-toggle {
    display: none;
  }

  .home .header-cta {
    display: inline-flex;
    width: auto;
    min-width: 108px;
    min-height: 62px;
    padding: 12px 13px;
    border-radius: 16px;
    box-shadow: none;
    font-size: 0.8rem;
    align-self: stretch;
  }

  .home .header-cta__label--desktop {
    display: none;
  }

  .home .header-cta__label--mobile {
    display: inline;
    line-height: 1.15;
    text-align: left;
  }

  .display-xl {
    margin-top: 14px;
    max-width: none;
    font-size: clamp(2.1rem, 11vw, 3.28rem);
    line-height: 0.98;
    letter-spacing: -0.045em;
  }

  .display-lg,
  .display-md {
    line-height: 1.08;
  }

  .hero__lead {
    margin-top: 18px;
    max-width: none;
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .button-row {
    gap: 10px;
    margin-top: 20px;
  }

  .button {
    width: 100%;
    min-height: 46px;
    padding: 12px 18px;
    font-size: 0.9rem;
  }

  .button--hero {
    min-width: 0;
  }

  .home .hero__actions,
  .home .hero-stats {
    display: none;
  }

  .home .hero__aside {
    display: none;
  }

  .home .hero__main {
    max-width: 100%;
  }

  .home .hero .eyebrow {
    font-size: 0.82rem;
  }

  .home .hero .eyebrow::before {
    width: 46px;
  }

  .hero__hint {
    margin-top: 10px;
    font-size: 0.72rem;
  }

  .business-map__head {
    padding: 16px 16px 14px;
  }

  .business-map__label {
    font-size: 0.98rem;
    line-height: 1.12;
  }

  .business-map__subtitle,
  .business-map__summary-label,
  .business-map__summary-note,
  .business-map__row-description,
  .business-map__footer-description,
  .business-map__note-text {
    font-size: 0.82rem;
  }

  .business-map__summary {
    grid-template-columns: 1fr;
  }

  .business-map__summary-item {
    padding: 18px 16px;
  }

  .business-map__summary-item + .business-map__summary-item {
    border-left: 0;
    border-top: 1px solid color-mix(in oklab, var(--ink) 16%, transparent);
  }

  .business-map__summary-value {
    font-size: 2.2rem;
  }

  .business-map__rows {
    padding: 8px 16px 0;
  }

  .business-map__row {
    padding: 18px 0;
  }

  .business-map__row-main {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 12px;
  }

  .business-map__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .business-map__icon-svg {
    width: 22px;
    height: 22px;
  }

  .business-map__row-title {
    font-size: 0.96rem;
  }

  .business-map__track--wide {
    margin-top: 12px;
  }

  .business-map__row-realized {
    font-size: 1.56rem;
  }

  .business-map__row-money-value {
    font-size: 1.25rem;
  }

  .business-map__legend {
    margin: 20px 16px;
    padding: 12px 14px;
    gap: 10px 14px;
  }

  .business-map__legend-item {
    font-size: 0.74rem;
  }

  .business-map__footer-card {
    padding: 18px 16px;
  }

  .business-map__footer-value {
    font-size: 1.2rem;
  }

  .business-map__note {
    grid-template-columns: 18px 1fr;
    gap: 10px;
    margin: 0 16px 16px;
    padding: 14px 14px 15px;
  }

  .home .hero .button--secondary:hover {
    transform: translate(-2px, -2px);
  }

  .card {
    gap: 14px;
    padding: 20px;
  }

  .card__title {
    font-size: 1.35rem;
  }

  .section-header {
    gap: 18px;
    margin-bottom: 28px;
  }

  .market-conflict--sync .editorial-note,
  .market-conflict--sync .conflict-list li {
    border-width: 1px;
    border-radius: 14px;
    box-shadow: 4px 4px 0 0 rgba(24, 28, 40, 0.04);
  }

  .market-conflict--sync .editorial-note {
    padding: 18px 20px;
  }

  .market-conflict--sync .editorial-note p {
    font-size: 1.04rem;
    line-height: 1.3;
  }

  .market-conflict--sync .conflict-list li {
    gap: 12px;
    padding: 16px 16px 16px 14px;
  }

  .market-conflict--sync .conflict-list span {
    width: 38px;
    height: 38px;
    border-width: 1px;
    border-radius: 11px;
  }

  .market-conflict--sync .conflict-list p {
    font-size: 0.95rem;
    line-height: 1.34;
  }

  .sync-split,
  .team-shell {
    gap: 28px;
  }

  .section-copy {
    gap: 18px;
  }

  .editorial-note,
  .growth-map__cta,
  .journal-shell__cta,
  .home-cta__panel,
  .problem-table__footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .editorial-note p,
  .growth-map__cta p {
    font-size: 1.18rem;
  }

  .problem-table__row {
    padding: 14px 16px;
  }

  .system-shell__top,
  .home-cta__panel-head,
  .system-flow,
  .system-grid__item,
  .system-legend > div,
  .growth-map__item,
  .outcomes-grid__item,
  .team-shell__item,
  .process-shell__item,
  .home-cta__panel h3,
  .home-cta__panel p,
  .home-cta__actions,
  .process-editorial__copy {
    padding-left: 18px;
    padding-right: 18px;
  }

  .system-grid,
  .services-shell,
  .services-shell--editorial,
  .cases-shell,
  .journal-shell,
  .growth-map,
  .outcomes-grid,
  .team-shell__grid,
  .team-shell__grid--editorial,
  .testimonials-grid,
  .testimonials-grid--stories,
  .journal-editorials,
  .process-editorial__list {
    grid-template-columns: 1fr;
  }

  .case-editorial__grid,
  .team-stats,
  .ecosystem-grid,
  .testimonial-card__facts,
  .case-story-grid,
  .case-link-grid {
    grid-template-columns: 1fr;
  }

  .archive-filters__list {
    gap: 8px;
  }

  .archive-filter-chip {
    min-height: 38px;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 0.84rem;
  }

  .about-principle-card,
  .about-industry-card,
  .about-team-card,
  .about-deliverables-grid li,
  .contacts-process__item,
  .contacts-direct,
  .contact-panel {
    padding: 18px;
  }

  .case-editorial__cell,
  .testimonial-card__fact,
  .testimonial-story__cell {
    min-height: auto;
  }

  .case-editorial__head,
  .case-editorial__cell,
  .case-editorial__footer {
    padding: 16px 18px;
  }

  .case-editorial__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .journal-editorial__body {
    padding: 18px;
  }

  .testimonial-story__title,
  .testimonial-story__quote,
  .testimonial-story__cell,
  .testimonial-story__footer {
    padding-left: 18px;
    padding-right: 18px;
  }

  .article-feature-meta {
    gap: 8px;
  }

  .article-spotlight,
  .service-module-panel__meta > div,
  .case-hero-panels__item,
  .case-link-card,
  .case-story-card {
    padding: 18px;
  }

  .service-module-panel__meta,
  .service-analyze-grid,
  .service-deliverables-grid {
    grid-template-columns: 1fr;
  }

  .glossary-list div,
  .rating-list li {
    grid-template-columns: 1fr;
  }

  .ecosystem-rating-row,
  .ecosystem-glossary-row {
    grid-template-columns: 1fr;
  }

  .rating-list__bar {
    width: 100%;
  }

  .system-flow__steps {
    gap: 8px 6px;
  }

  .system-flow__step {
    font-size: 0.84rem;
  }

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

  .process-editorial {
    margin-top: 24px;
  }

  .process-editorial__media img {
    aspect-ratio: 4 / 3;
  }

  .process-editorial__list li {
    padding: 12px;
  }

  .outcomes-grid__value {
    font-size: 2rem;
  }

  .journal-shell__cta,
  .growth-map__cta {
    gap: 16px;
  }

  .journal-shell__subscribe {
    max-width: none;
    margin-left: 0;
  }

  .journal-editorial__cover-label {
    left: 18px;
    bottom: 16px;
  }

  .home-cta__inner {
    gap: 30px;
    padding: 46px 0 50px;
  }

  .home-cta__headline {
    max-width: none;
    font-size: clamp(2.25rem, 10vw, 3.2rem);
    line-height: 1;
  }

  .home-cta__steps li {
    grid-template-columns: auto 1fr;
  }

  .home-cta__steps strong {
    justify-self: start;
  }

  .home-cta__steps p {
    grid-column: 1 / -1;
  }

  .home-cta__panel h3 {
    font-size: 1.42rem;
    line-height: 1.12;
  }

  .conflict-list {
    grid-template-columns: 1fr;
  }

  .home-cta__fields {
    padding: 0 18px;
  }

  .home-cta__actions {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
  }

  .home-cta__actions .button {
    width: 100%;
  }

  .service-editorial-card {
    padding: 20px 18px;
    gap: 16px;
  }

  .service-editorial-card__title {
    font-size: 1.36rem;
  }

  .team-practice-card {
    padding: 18px;
  }

  .team-practice-card__head h3 {
    font-size: 1.06rem;
  }

  .team-practice-card__head strong {
    font-size: 1.7rem;
  }

  .team-note p {
    font-size: 1rem;
    line-height: 1.4;
  }

  .why-note p {
    font-size: 1rem;
    line-height: 1.42;
  }

  .journal-shell__subscribe {
    flex-direction: column;
  }

  .journal-shell__subscribe .button {
    width: 100%;
  }

  .home-faq-item__summary {
    padding: 16px 18px;
  }

  .home-faq-item__meta {
    gap: 12px;
  }

  .home-faq-item__question {
    font-size: 0.94rem;
    line-height: 1.34;
  }

  .home-faq-item__answer {
    padding: 0 18px 16px 18px;
  }

  .ecomnav-answer-block__summary {
    min-height: 64px;
    padding: 16px 18px;
  }

  .ecomnav-answer-block__summary-text {
    font-size: 0.9rem;
  }

  .ecomnav-answer-block__body {
    padding: 18px;
  }

  .ecomnav-answer-item {
    padding: 16px;
  }

  .ecomnav-answer-item__question {
    font-size: 0.96rem;
  }

  .ecomnav-answer-item__answer {
    font-size: 0.94rem;
    line-height: 1.56;
  }

  .testimonial-story__top,
  .testimonial-story__footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .stat-grid__value {
    font-size: 1.8rem;
  }
}
