:root {
  color-scheme: light;
  --color-ink: #182024;
  --color-ink-soft: #43515a;
  --color-muted: #68757d;
  --color-primary: #21557b;
  --color-primary-deep: #153f61;
  --color-teal: #3d6d95;
  --color-teal-soft: #dcebf0;
  --color-green: #43664d;
  --color-green-soft: #dfece2;
  --color-surface: #f8f8f3;
  --color-surface-alt: #eef1f0;
  --color-card: rgba(255, 255, 255, 0.88);
  --color-line: rgba(61, 109, 149, 0.18);
  --shadow-soft: 0 24px 70px rgba(21, 63, 97, 0.13);
  --shadow-card: 0 18px 44px rgba(39, 55, 63, 0.08);
  --container: 1180px;
  --radius-card: 18px;
  --radius-ui: 999px;
  --font-sans: Inter, Avenir Next, Avenir, Helvetica Neue, Helvetica, Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body::selection {
  background: rgba(61, 109, 149, 0.22);
}

body.modal-open {
  overflow: hidden;
}

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

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

img,
svg {
  display: block;
}

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

.section {
  padding-block: 76px;
}

#top,
#tools,
#intelligence,
#platform,
#contact,
#footer {
  scroll-margin-top: 88px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  border-bottom: 1px solid rgba(33, 85, 123, 0.1);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 12px 32px rgba(26, 32, 36, 0.035);
  backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.logo {
  display: inline-flex;
  align-items: center;
  color: var(--color-ink);
  white-space: nowrap;
}

.logo__wordmark {
  display: block;
  width: 148px;
  height: auto;
}

.site-header .logo__wordmark {
  width: 170px;
  height: auto;
}

.site-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.icon {
  width: 1.15em;
  height: 1.15em;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius-ui);
  padding: 0.76rem 1.1rem;
  font-size: 0.92rem;
  font-weight: 720;
  line-height: 1;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button span {
  white-space: nowrap;
}

.button:focus-visible {
  outline: 3px solid rgba(61, 109, 149, 0.32);
  outline-offset: 3px;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--color-primary);
  color: #ffffff;
  box-shadow: 0 15px 36px rgba(33, 85, 123, 0.22);
}

.button--primary:hover {
  background: var(--color-primary-deep);
}

.button--secondary {
  border-color: rgba(33, 85, 123, 0.26);
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-primary);
}

.button--secondary:hover {
  border-color: rgba(33, 85, 123, 0.42);
  background: #ffffff;
}

.button--ghost {
  min-height: 38px;
  padding: 0.62rem 0.86rem;
  background: rgba(61, 109, 149, 0.08);
  color: var(--color-primary);
  box-shadow: none;
}

.site-header__login.button,
.site-header__marketplace-login.button {
  min-height: 36px;
  padding: 0.58rem 0.88rem;
  border: 1px solid rgba(33, 85, 123, 0.08);
  background: rgba(244, 248, 249, 0.92);
  font-size: 0.88rem;
}

.site-header__marketplace-login.button {
  background: rgba(223, 236, 226, 0.72);
  color: var(--color-green);
}

.site-header__merge-os.button {
  min-height: 36px;
  padding: 0.58rem 0.82rem;
  border: 1px solid rgba(33, 85, 123, 0.08);
  background: rgba(244, 248, 249, 0.92);
  font-size: 0.88rem;
}

.button--ghost:hover {
  background: rgba(61, 109, 149, 0.14);
}

.button--light {
  background: #ffffff;
  color: var(--color-primary);
  box-shadow: 0 15px 36px rgba(0, 0, 0, 0.16);
}

.button--light:hover {
  background: #f2fbfb;
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.button--outline-light:hover {
  background: rgba(255, 255, 255, 0.14);
}

.button--text {
  min-height: 42px;
  padding-inline: 0;
  border-radius: 0;
  color: var(--color-primary);
}

.button--text:hover {
  transform: none;
  color: var(--color-teal);
}

.button__icon {
  width: 1.05rem;
  height: 1.05rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--color-teal);
  font-size: 0.72rem;
  font-weight: 820;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(740px, calc(100svh - 84px));
  align-items: center;
  overflow: hidden;
  padding: 106px 0 88px;
  isolation: isolate;
}

.hero__image,
.hero__scrim,
.hero__fields,
.hero__grid,
.hero__overlay,
.hero__flow {
  position: absolute;
  inset: 0;
}

.hero__image {
  z-index: -4;
  background-image: url("../assets/hero-fields.jpg");
  background-position: center 46%;
  background-size: cover;
  filter: saturate(1.14) contrast(1.02) brightness(1.01);
  transform: scale(1.045);
}

.hero__scrim {
  z-index: -3;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.22), transparent 30%),
    linear-gradient(90deg, rgba(248, 248, 243, 0.16), rgba(248, 248, 243, 0.04));
}

.hero__fields {
  z-index: -2;
  overflow: hidden;
  opacity: 0.34;
}

.hero__field {
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.14)
  );
  box-shadow: inset 0 0 0 1px rgba(61, 109, 149, 0.03);
}

.hero__field--one {
  top: 28%;
  left: -8%;
  width: 34%;
  height: 14%;
  transform: rotate(-12deg);
}

.hero__field--two {
  top: 44%;
  left: 16%;
  width: 36%;
  height: 16%;
  transform: rotate(-8deg);
}

.hero__field--three {
  top: 57%;
  right: -10%;
  width: 40%;
  height: 18%;
  transform: rotate(-11deg);
}

.hero__grid {
  z-index: -1;
  opacity: 0.11;
  background-image: radial-gradient(
    circle at 2px 2px,
    rgba(33, 85, 123, 0.75) 1px,
    transparent 0
  );
  background-size: 34px 34px;
  mix-blend-mode: multiply;
}

.hero__overlay {
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(248, 248, 243, 0.72) 80%),
    linear-gradient(90deg, rgba(248, 248, 243, 0.08), rgba(248, 248, 243, 0.03)),
    radial-gradient(circle at 52% 40%, rgba(255, 255, 255, 0.06), transparent 34%),
    radial-gradient(circle at 82% 46%, rgba(255, 255, 255, 0.3), transparent 15%);
}

.hero__flow {
  z-index: 1;
  width: min(1040px, 110vw);
  height: auto;
  margin: auto;
  color: var(--color-teal);
  opacity: 0.22;
  overflow: visible;
  filter: drop-shadow(0 6px 18px rgba(61, 109, 149, 0.08));
  transform: scale(0.74) translateX(7%);
}

.hero__flow path {
  fill: none;
  stroke: currentColor;
  stroke-dasharray: 9 16;
  stroke-width: 1.8;
}

.hero__flow circle {
  fill: currentColor;
  stroke: rgba(255, 255, 255, 0.86);
  stroke-width: 3;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  max-width: 830px;
  padding-inline: 10px;
  text-align: center;
}

.hero h1,
.section-heading h2,
.ecosystem__intro h2,
.cta h2 {
  margin: 0;
  color: var(--color-ink);
  font-weight: 620;
  line-height: 1.05;
  text-wrap: balance;
}

.hero h1 {
  max-width: 850px;
  font-size: 2.32rem;
  overflow-wrap: normal;
}

.hero h1 span {
  color: var(--color-primary);
  font-style: italic;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero__subhead {
  margin: 24px 0 0;
  color: var(--color-ink);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.26;
  text-wrap: balance;
}

.hero__body {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--color-ink);
  font-size: 1.04rem;
  font-weight: 520;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.hero__actions .button,
.cta__actions .button {
  width: 100%;
}

.deliverables {
  background:
    linear-gradient(180deg, var(--color-surface-alt), #f4f6f4 70%),
    var(--color-surface-alt);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2,
.ecosystem__intro h2,
.cta h2 {
  font-size: 1.95rem;
}

.deliverables__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.deliverable-card {
  position: relative;
  display: flex;
  min-height: 270px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(33, 85, 123, 0.13);
  border-radius: var(--radius-card);
  background: var(--color-card);
  box-shadow: var(--shadow-card);
  padding: 28px;
  backdrop-filter: blur(16px);
}

.deliverable-card--interactive {
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.deliverable-card--interactive:hover {
  border-color: rgba(33, 85, 123, 0.26);
  box-shadow: 0 24px 54px rgba(39, 55, 63, 0.12);
  transform: translateY(-2px);
}

.deliverable-card__trigger {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.deliverable-card__trigger:focus-visible {
  outline: 3px solid rgba(61, 109, 149, 0.42);
  outline-offset: 4px;
}

.deliverable-card--verification {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 252, 251, 0.88)),
    var(--color-card);
}

.deliverable-card::before {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.deliverable-card__tag {
  position: absolute;
  top: 18px;
  right: 18px;
  border: 1px solid rgba(33, 85, 123, 0.11);
  border-radius: 999px;
  background: rgba(238, 244, 242, 0.8);
  color: var(--color-muted);
  font-size: 0.64rem;
  font-weight: 820;
  line-height: 1;
  padding: 0.45rem 0.56rem;
  text-transform: uppercase;
}

.deliverable-card__icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(61, 109, 149, 0.18);
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff, var(--color-teal-soft));
  color: var(--color-primary);
}

.deliverable-card__icon .icon {
  width: 22px;
  height: 22px;
}

.deliverable-card__content {
  display: grid;
  gap: 9px;
  margin-top: 22px;
}

.deliverable-card h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.12rem;
  font-weight: 610;
  line-height: 1.2;
}

.deliverable-card p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 0.96rem;
  text-wrap: pretty;
}

.artifact {
  position: relative;
  min-height: 100px;
  margin-top: auto;
  padding: 16px 18px 14px;
  overflow: hidden;
  border: 1px solid rgba(33, 85, 123, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(61, 109, 149, 0.1), rgba(67, 102, 77, 0.08)),
    rgba(244, 247, 246, 0.88);
}

.artifact__label,
.artifact__artifact-note {
  position: relative;
  z-index: 1;
  color: var(--color-muted);
  font-size: 0.63rem;
  font-weight: 780;
  line-height: 1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.artifact__artifact-note {
  position: absolute;
  right: 16px;
  bottom: 12px;
}

.artifact__svg {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 12px;
}

.artifact__image {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 0;
  border-radius: 10px;
}

.artifact__panel {
  fill: rgba(255, 255, 255, 0.34);
  stroke: rgba(33, 85, 123, 0.12);
}

.artifact__grid,
.artifact__line,
.artifact__seal-ring,
.artifact__meter-ring {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.artifact__grid {
  stroke: rgba(33, 85, 123, 0.12);
  stroke-width: 1;
}

.artifact__line {
  stroke: rgba(33, 85, 123, 0.34);
  stroke-width: 2;
}

.artifact__line--bold {
  stroke: rgba(61, 109, 149, 0.72);
  stroke-width: 3;
}

.artifact__line--doc {
  stroke: rgba(33, 85, 123, 0.26);
  stroke-width: 4;
}

.artifact__line--trail {
  stroke: rgba(67, 102, 77, 0.52);
  stroke-width: 2.5;
  stroke-dasharray: 4 8;
}

.artifact__point {
  fill: rgba(61, 109, 149, 0.92);
}

.artifact__point--soft {
  fill: rgba(67, 102, 77, 0.78);
}

.artifact__document {
  fill: rgba(255, 255, 255, 0.48);
  stroke: rgba(33, 85, 123, 0.14);
}

.artifact__document--soft {
  fill: rgba(255, 255, 255, 0.42);
}

.artifact__seal-ring {
  stroke: rgba(61, 109, 149, 0.78);
  stroke-width: 2.5;
}

.artifact__checkmark {
  fill: none;
  stroke: rgba(67, 102, 77, 0.88);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.artifact__pill {
  fill: rgba(33, 85, 123, 0.14);
}

.artifact__pill--two {
  fill: rgba(67, 102, 77, 0.18);
}

.artifact__meter-track {
  fill: rgba(33, 85, 123, 0.08);
}

.artifact__meter-fill-shape {
  fill: url(#artifact-signal-fill);
}

.artifact__meter-core {
  fill: rgba(61, 109, 149, 0.94);
}

.artifact__meter-ring {
  stroke: rgba(125, 66, 0, 0.3);
  stroke-width: 2;
}

.artifact__bar-shape {
  fill: rgba(33, 85, 123, 0.18);
}

.artifact__bar-shape--mid {
  fill: rgba(67, 102, 77, 0.24);
}

.artifact__parcel,
.artifact__huc,
.artifact__watershed-boundary,
.artifact__verification-badge {
  stroke: rgba(33, 85, 123, 0.12);
  stroke-linejoin: round;
  stroke-width: 1;
}

.artifact__parcel--one {
  fill: rgba(67, 102, 77, 0.2);
}

.artifact__parcel--two {
  fill: rgba(33, 85, 123, 0.14);
}

.artifact__parcel--three {
  fill: rgba(61, 109, 149, 0.18);
}

.artifact__stream {
  fill: none;
  stroke: rgba(61, 109, 149, 0.78);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 5;
}

.artifact__stream--tributary {
  stroke: rgba(61, 109, 149, 0.36);
  stroke-width: 1.8;
}

.artifact__stream--halo {
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 8;
}

.artifact__watershed-boundary {
  fill: rgba(255, 255, 255, 0.2);
  stroke: rgba(255, 255, 255, 0.94);
  stroke-width: 2.6;
}

.artifact__huc {
  stroke: rgba(255, 255, 255, 0.9);
  stroke-width: 1.6;
}

.artifact__huc--one,
.artifact__huc--six,
.artifact__huc--nine {
  fill: rgba(67, 102, 77, 0.16);
}

.artifact__huc--two,
.artifact__huc--four,
.artifact__huc--eight {
  fill: rgba(33, 85, 123, 0.13);
}

.artifact__huc--three,
.artifact__huc--five,
.artifact__huc--seven {
  fill: rgba(61, 109, 149, 0.16);
}

.artifact__contour {
  fill: none;
  stroke: rgba(33, 85, 123, 0.08);
  stroke-linecap: round;
  stroke-width: 0.8;
}

.artifact__verification-badge {
  fill: rgba(255, 255, 255, 0.92);
  stroke: rgba(61, 109, 149, 0.88);
  stroke-width: 2.4;
}

.artifact__verification-badge-core {
  fill: rgba(255, 255, 255, 0.78);
}


.deliverables__action {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

.ecosystem {
  border-top: 1px solid rgba(33, 85, 123, 0.1);
  background: #ffffff;
}

.ecosystem__intro {
  max-width: 760px;
  margin: 0 auto 32px;
  text-align: center;
}

.ecosystem__intro p {
  margin: 16px 0 0;
  color: var(--color-ink-soft);
  font-size: 1.04rem;
}

.ecosystem__intro .eyebrow {
  margin-bottom: 10px;
}

.ecosystem__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.ecosystem-panel {
  border: 1px solid rgba(33, 85, 123, 0.12);
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, #f7faf9, #eef4f2);
  padding: 26px;
}

.ecosystem-panel h3 {
  margin: 0 0 20px;
  border-bottom: 1px solid rgba(33, 85, 123, 0.13);
  color: var(--color-teal);
  font-size: 0.75rem;
  font-weight: 640;
  padding-bottom: 15px;
  text-transform: uppercase;
}

.partner-list,
.step-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.partner-list {
  list-style: none;
}

.partner-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--color-ink);
  font-weight: 650;
}

.partner-list .icon {
  width: 17px;
  height: 17px;
  color: var(--color-green);
}

.step-list {
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 13px;
  align-items: start;
}

.step-list__number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(61, 109, 149, 0.12);
  color: var(--color-primary);
  font-size: 0.86rem;
  font-weight: 700;
}

.step-list strong,
.step-list span span {
  display: block;
}

.step-list strong {
  color: var(--color-ink);
  font-weight: 610;
  line-height: 1.2;
}

.step-list span span {
  margin-top: 4px;
  color: var(--color-ink-soft);
  font-size: 0.94rem;
}

.ecosystem__powered {
  max-width: 860px;
  margin: 30px auto 0;
  border-top: 1px solid rgba(33, 85, 123, 0.12);
  color: var(--color-muted);
  font-size: 0.75rem;
  font-weight: 760;
  line-height: 1.6;
  padding-top: 24px;
  text-align: center;
  text-transform: uppercase;
}

.cta-section {
  background: linear-gradient(180deg, #ffffff, var(--color-surface));
}

.cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 24px;
  background: var(--color-primary);
  box-shadow: var(--shadow-soft);
  isolation: isolate;
}

.cta__image,
.cta__overlay {
  position: absolute;
  inset: 0;
}

.cta__image {
  z-index: -2;
  background-image: url("../assets/cta-field.png");
  background-position: center;
  background-size: cover;
  opacity: 0.7;
}

.cta__overlay {
  z-index: -1;
  background:
    radial-gradient(circle at 84% 20%, rgba(61, 109, 149, 0.54), transparent 36%),
    linear-gradient(105deg, rgba(18, 62, 91, 0.98), rgba(30, 94, 113, 0.84));
}

.cta__content {
  display: grid;
  gap: 28px;
  padding: 34px;
}

.cta h2 {
  color: #ffffff;
}

.cta h2 span {
  display: inline-block;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 500;
}

.cta p {
  max-width: 650px;
  margin: 16px 0 0;
  color: rgba(240, 249, 249, 0.82);
  font-size: 1rem;
}

.cta__actions {
  display: grid;
  gap: 12px;
}

.site-footer {
  border-top: 1px solid rgba(33, 85, 123, 0.12);
  background: #ffffff;
  padding-block: 38px;
}

.site-footer__inner {
  display: grid;
  gap: 25px;
}

.site-footer__inner > div {
  display: grid;
  gap: 2px;
}

.site-footer p {
  margin: 10px 0 0;
  color: var(--color-muted);
  font-size: 0.9rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.site-footer__links a {
  color: var(--color-ink-soft);
  font-size: 0.92rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.site-footer__links a:hover {
  color: var(--color-primary);
}

.site-footer strong {
  font-weight: inherit;
}

.marketplace-page {
  background:
    linear-gradient(180deg, rgba(220, 235, 240, 0.52), transparent 560px),
    linear-gradient(180deg, var(--color-surface), #ffffff 68%, var(--color-surface));
}

.market-hero {
  padding: 126px 0 76px;
}

.market-hero__inner {
  display: grid;
  gap: 34px;
  align-items: start;
}

.market-hero__copy {
  max-width: 690px;
}

.market-hero h1,
.market-section h2,
.market-cta h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2.35rem, 6.3vw, 4.75rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

.market-hero__headline {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--color-primary);
  font-size: clamp(1.28rem, 2.4vw, 2.05rem);
  font-weight: 620;
  line-height: 1.15;
  text-wrap: balance;
}

.market-hero__body {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--color-ink-soft);
  font-size: 1.04rem;
}

.market-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.market-hero-media {
  display: grid;
  grid-template-columns: minmax(150px, 1.2fr) minmax(92px, 0.78fr);
  grid-template-rows: 88px 88px;
  gap: 10px;
  width: min(430px, 100%);
  margin-top: 34px;
}

.market-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.market-hero-media img {
  overflow: hidden;
  border: 1px solid rgba(33, 85, 123, 0.12);
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(21, 63, 97, 0.1);
}

.market-hero-media img:first-child {
  grid-row: 1 / span 2;
}

.market-console {
  display: grid;
  gap: 18px;
  min-width: 0;
  border: 1px solid rgba(33, 85, 123, 0.13);
  border-radius: 22px;
  padding: clamp(18px, 2.6vw, 28px);
  background:
    linear-gradient(rgba(33, 85, 123, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 85, 123, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.84);
  background-size: 36px 36px;
  box-shadow:
    0 28px 74px rgba(21, 63, 97, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.market-console__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(33, 85, 123, 0.1);
  padding-bottom: 16px;
}

.market-console__toolbar div {
  display: grid;
  gap: 2px;
}

.market-console__title {
  display: grid;
}

.market-console__utility {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.market-console__utility img {
  width: 92px;
  height: 36px;
  object-fit: contain;
}

.market-console__toolbar span,
.market-detail__head span,
.market-field__icon {
  color: var(--color-teal);
}

.market-console__toolbar span {
  font-size: 0.72rem;
  font-weight: 820;
  line-height: 1;
  text-transform: uppercase;
}

.market-console__toolbar strong {
  color: var(--color-ink);
  font-size: 1.18rem;
  line-height: 1.1;
}

.market-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.market-filter-row button {
  min-height: 34px;
  border: 1px solid rgba(33, 85, 123, 0.12);
  border-radius: 999px;
  padding: 0.42rem 0.68rem;
  background: rgba(255, 255, 255, 0.72);
  color: var(--color-ink-soft);
  cursor: pointer;
  font: inherit;
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1;
}

.market-filter-row button.is-active {
  border-color: rgba(176, 122, 58, 0.34);
  background: rgba(176, 122, 58, 0.11);
  color: #7a4c1f;
}

.market-console__grid {
  display: grid;
  gap: 16px;
}

.market-record-list {
  display: grid;
  gap: 10px;
}

.market-record {
  position: relative;
  display: grid;
  gap: 9px;
  border: 1px solid rgba(33, 85, 123, 0.12);
  border-radius: 14px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.82);
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.market-record:hover,
.market-record:focus-visible,
.market-record.is-active {
  border-color: rgba(33, 85, 123, 0.28);
  box-shadow: 0 16px 34px rgba(33, 85, 123, 0.1);
  transform: translateY(-1px);
}

.market-record:focus-visible,
.market-filter-row button:focus-visible {
  outline: 3px solid rgba(61, 109, 149, 0.32);
  outline-offset: 3px;
}

.market-record.is-active {
  background:
    linear-gradient(90deg, rgba(220, 235, 240, 0.72), rgba(255, 255, 255, 0.9)),
    #ffffff;
}

.market-record__crop {
  width: fit-content;
  border-radius: 999px;
  background: rgba(67, 102, 77, 0.11);
  color: var(--color-green);
  font-size: 0.66rem;
  font-weight: 820;
  line-height: 1;
  padding: 0.34rem 0.48rem;
  text-transform: uppercase;
}

.market-record strong {
  color: var(--color-ink);
  font-size: 1rem;
  line-height: 1.1;
}

.market-record > span:not(.market-record__crop) {
  color: var(--color-ink-soft);
  font-size: 0.84rem;
}

.market-record__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.market-record__meta > span {
  border: 1px solid rgba(33, 85, 123, 0.1);
  border-radius: 999px;
  padding: 0.34rem 0.48rem;
  background: rgba(248, 248, 243, 0.78);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 740;
  line-height: 1;
}

.market-data-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.market-data-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(33, 85, 123, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
}

.market-data-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.market-detail {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  border: 1px solid rgba(33, 85, 123, 0.14);
  border-radius: 18px;
  padding: clamp(18px, 2.4vw, 24px);
  background:
    radial-gradient(circle at 100% 0, rgba(176, 122, 58, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 250, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.market-detail__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  align-items: start;
  gap: 14px;
  min-height: 128px;
}

.market-detail__head h2 {
  margin: 6px 0 0;
  color: var(--color-ink);
  font-size: clamp(1.75rem, 2.6vw, 2.32rem);
  line-height: 1.02;
  max-width: 8.8em;
}

.market-detail__head p,
.market-detail__body {
  margin: 8px 0 0;
  color: var(--color-ink-soft);
}

.market-detail__ci {
  display: grid;
  width: 104px;
  min-height: 76px;
  place-items: center;
  align-self: start;
  border-radius: 18px;
  padding: 10px 12px;
  background: var(--color-primary);
  color: #ffffff;
  font-size: 0.92rem;
  line-height: 1.08;
  text-align: center;
}

.market-detail__ci span {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.62rem;
  font-weight: 860;
  line-height: 1;
  text-transform: uppercase;
}

.market-detail__signals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.market-detail__signals div {
  display: grid;
  grid-template-columns: minmax(88px, 0.38fr) minmax(0, 1fr);
  align-content: start;
  align-items: center;
  gap: 8px;
  min-height: 0;
  border: 1px solid rgba(33, 85, 123, 0.1);
  border-radius: 12px;
  padding: 11px 12px;
  background: rgba(255, 255, 255, 0.74);
}

.market-detail__signals div:has(.market-data-stack) {
  grid-template-columns: 1fr;
  min-height: 128px;
}

.market-detail__signals div > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--color-muted);
  font-size: 0.66rem;
  font-weight: 820;
  text-transform: uppercase;
}

.market-detail__signals strong {
  display: block;
  color: var(--color-primary);
  font-size: 0.9rem;
  line-height: 1.12;
}

.market-detail__signals .market-data-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  margin-top: 12px;
  grid-column: 1;
}

.market-detail__signals .market-data-stack .market-data-icon {
  width: 34px;
  height: 34px;
  justify-self: center;
}

.market-signal__origin,
.market-signal__check {
  width: 14px;
  height: 14px;
}

.market-signal__origin {
  color: var(--color-primary);
}

.market-signal__check {
  color: var(--color-green);
}

.market-section {
  padding-block: 72px;
}

.market-section__heading {
  max-width: 780px;
  margin: 0 auto 32px;
  text-align: center;
}

.market-section__heading--left {
  margin: 0;
  text-align: left;
}

.market-section h2 {
  font-size: clamp(2rem, 4.6vw, 3.85rem);
}

.market-fields {
  border-top: 1px solid rgba(33, 85, 123, 0.1);
  background: #ffffff;
}

.market-fields__grid {
  display: grid;
  gap: 14px;
}

.market-field,
.market-lane {
  border: 1px solid rgba(33, 85, 123, 0.12);
  border-radius: var(--radius-card);
  background: rgba(248, 251, 250, 0.86);
  padding: 22px;
}

.market-layer-graphic {
  position: relative;
  display: grid;
  min-height: 202px;
  align-content: center;
  overflow: hidden;
  border: 1px solid rgba(33, 85, 123, 0.12);
  border-radius: var(--radius-card);
  padding: 22px;
  background:
    linear-gradient(rgba(33, 85, 123, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 85, 123, 0.04) 1px, transparent 1px),
    linear-gradient(135deg, rgba(220, 235, 240, 0.46), rgba(255, 255, 255, 0.92));
  background-size:
    32px 32px,
    32px 32px,
    100% 100%;
  box-shadow: 0 18px 36px rgba(21, 63, 97, 0.08);
}

.market-layer-graphic__layers div > span {
  color: var(--color-muted);
  font-size: 0.68rem;
  font-weight: 820;
  line-height: 1;
  text-transform: uppercase;
}

.market-layer-graphic__layers {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.market-layer-graphic__layers div {
  display: grid;
  min-width: 0;
  justify-items: center;
  gap: 12px;
  border: 1px solid rgba(33, 85, 123, 0.1);
  border-radius: 14px;
  padding: 18px 10px;
  background: rgba(255, 255, 255, 0.74);
}

.market-layer-graphic__layers .market-data-icon {
  width: 56px;
  height: 56px;
}

.market-layer-graphic__layers div > span {
  line-height: 1.16;
  text-align: center;
}

.market-field__icon {
  width: 24px;
  height: 24px;
  margin-bottom: 18px;
}

.market-field h3,
.market-lane h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.13rem;
  line-height: 1.14;
}

.market-field p,
.market-lane p {
  margin: 10px 0 0;
  color: var(--color-ink-soft);
  font-size: 0.96rem;
}

.market-lanes {
  background: linear-gradient(180deg, var(--color-surface), rgba(220, 235, 240, 0.28));
}

.market-lanes__inner {
  display: grid;
  gap: 30px;
}

.market-lanes__grid {
  display: grid;
  gap: 14px;
}

.market-lane {
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.market-lane:nth-child(2) {
  border-color: rgba(176, 122, 58, 0.18);
}

.contribution-flow {
  border-top: 1px solid rgba(33, 85, 123, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 248, 243, 0.82)),
    #ffffff;
}

.contribution-flow__heading p:not(.eyebrow) {
  max-width: 790px;
  margin: 18px auto 0;
  color: var(--color-ink-soft);
  font-size: 1.04rem;
}

.contribution-flow__steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 190px), 1fr));
  gap: 14px;
}

.contribution-step {
  position: relative;
  display: grid;
  min-width: 0;
  align-content: start;
  gap: 14px;
  border: 1px solid rgba(33, 85, 123, 0.12);
  border-radius: var(--radius-card);
  padding: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.contribution-step__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.contribution-step__number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: rgba(61, 109, 149, 0.12);
  color: var(--color-primary);
  font-size: 0.84rem;
  font-weight: 800;
}

.contribution-step__icon {
  width: 24px;
  height: 24px;
  color: var(--color-green);
}

.contribution-step h3,
.contribution-flow__model h3,
.contribution-flow__principles h3,
.contribution-model-card h4 {
  margin: 0;
  color: var(--color-ink);
  line-height: 1.14;
}

.contribution-step h3 {
  font-size: 1.06rem;
}

.contribution-step p,
.contribution-model-card p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 0.94rem;
}

.contribution-flow__model,
.contribution-flow__principles {
  margin-top: 18px;
  border: 1px solid rgba(33, 85, 123, 0.12);
  border-radius: var(--radius-card);
  background: rgba(248, 251, 250, 0.86);
}

.contribution-flow__model {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
}

.contribution-flow__model-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(33, 85, 123, 0.1);
  padding-bottom: 16px;
}

.contribution-flow__model h3,
.contribution-flow__principles h3 {
  font-size: clamp(1.36rem, 2vw, 1.78rem);
  font-weight: 650;
}

.contribution-flow__model-grid {
  display: grid;
  gap: 14px;
}

.contribution-model-card {
  border: 1px solid rgba(33, 85, 123, 0.1);
  border-radius: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.contribution-model-card:first-child {
  border-color: rgba(67, 102, 77, 0.22);
  background:
    linear-gradient(180deg, rgba(223, 236, 226, 0.48), rgba(255, 255, 255, 0.86)),
    #ffffff;
}

.contribution-model-card h4 {
  font-size: 1.04rem;
}

.contribution-model-card p {
  margin-top: 10px;
}

.contribution-flow__principles {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 3vw, 28px);
}

.contribution-flow__principles ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contribution-flow__principles li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: var(--color-ink-soft);
  font-size: 0.95rem;
}

.contribution-principle__icon {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  color: var(--color-green);
}

.contribution-flow__note {
  margin: 18px 0 0;
  border-left: 3px solid rgba(61, 109, 149, 0.38);
  border-radius: 0 12px 12px 0;
  padding: 14px 16px;
  background: rgba(220, 235, 240, 0.34);
  color: var(--color-muted);
  font-size: 0.9rem;
}

.market-cta {
  padding-block: 46px 88px;
  background: #ffffff;
}

.market-cta__inner {
  display: grid;
  gap: 24px;
  align-items: center;
  border-radius: 24px;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(110deg, rgba(18, 62, 91, 0.98), rgba(33, 85, 123, 0.9) 58%, rgba(67, 102, 77, 0.88)),
    var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.market-cta h2 {
  color: #ffffff;
  font-size: clamp(1.9rem, 4.2vw, 3.45rem);
}

.market-cta .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.planet-portfolio-page {
  background:
    linear-gradient(180deg, rgba(220, 235, 240, 0.54), transparent 600px),
    linear-gradient(180deg, var(--color-surface), #ffffff 62%, var(--color-surface));
}

.portfolio-header {
  background: rgba(255, 255, 255, 0.72);
}

.portfolio-header__inner {
  gap: 18px;
}

.portfolio-logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.portfolio-logo-art,
.portfolio-logo__image {
  display: block;
  width: 218px;
  height: auto;
}

.portfolio-logo-art__text {
  font-family: var(--font-sans);
  font-size: 86px;
  font-weight: 900;
  letter-spacing: 0;
}

.portfolio-logo-art__icons circle {
  fill: #2fa894;
  stroke: rgba(255, 255, 255, 0.96);
  stroke-width: 7;
  filter: drop-shadow(0 3px 4px rgba(24, 32, 36, 0.16));
}

.portfolio-logo-art__icon {
  fill: none;
  stroke: #ffffff;
  stroke-width: 6.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.portfolio-logo__mark {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  border: 1px solid rgba(33, 85, 123, 0.14);
  border-radius: 50%;
  padding: 7px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 26px rgba(33, 85, 123, 0.1);
}

.portfolio-logo__mark span {
  display: block;
  border-radius: 50%;
  background: #2ca891;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.92);
}

.portfolio-logo__text {
  display: grid;
  gap: 0;
  color: var(--color-primary);
  font-size: clamp(1.36rem, 2vw, 1.82rem);
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.86;
}

.portfolio-header__right,
.portfolio-powered {
  display: inline-flex;
  align-items: center;
}

.portfolio-header__right {
  gap: 14px;
}

.portfolio-powered {
  gap: 9px;
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 820;
  line-height: 1;
  text-transform: uppercase;
}

.portfolio-powered img {
  width: 104px;
  height: auto;
}

.portfolio-header__login.button {
  background: rgba(223, 236, 226, 0.72);
  color: var(--color-green);
}

.portfolio-hero {
  padding: 126px 0 76px;
}

.portfolio-hero__inner {
  display: grid;
  gap: 34px;
  align-items: center;
}

.portfolio-hero__copy {
  max-width: 710px;
}

.portfolio-hero h1,
.portfolio-section h2,
.portfolio-cta h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2.35rem, 5.2vw, 4.12rem);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.02;
  text-wrap: balance;
}

.portfolio-hero__lead {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--color-primary);
  font-size: clamp(1.24rem, 2.3vw, 1.92rem);
  font-weight: 620;
  line-height: 1.16;
  text-wrap: balance;
}

.portfolio-hero__copy > p:not(.eyebrow, .portfolio-hero__lead) {
  max-width: 650px;
  margin: 18px 0 0;
  color: var(--color-ink-soft);
  font-size: 1.04rem;
}

.portfolio-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.portfolio-preview {
  display: grid;
  min-width: 0;
  gap: 16px;
  border: 1px solid rgba(33, 85, 123, 0.13);
  border-radius: 22px;
  padding: clamp(18px, 2.6vw, 28px);
  background:
    linear-gradient(rgba(33, 85, 123, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 85, 123, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.86);
  background-size: 34px 34px;
  box-shadow:
    0 28px 74px rgba(21, 63, 97, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.portfolio-preview__toolbar,
.portfolio-preview__metrics,
.portfolio-preview__journey {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio-preview__toolbar {
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(33, 85, 123, 0.1);
  padding-bottom: 14px;
}

.portfolio-preview__toolbar div {
  display: grid;
  gap: 2px;
}

.portfolio-preview__toolbar span,
.portfolio-preview__hero-card span,
.portfolio-preview__metrics span {
  color: var(--color-teal);
  font-size: 0.7rem;
  font-weight: 830;
  line-height: 1;
  text-transform: uppercase;
}

.portfolio-preview__toolbar strong {
  color: var(--color-ink);
  font-size: 1.18rem;
  line-height: 1.1;
}

.portfolio-preview__status {
  border: 1px solid rgba(67, 102, 77, 0.16);
  border-radius: 999px;
  padding: 0.52rem 0.68rem;
  background: rgba(223, 236, 226, 0.72);
  color: var(--color-green) !important;
}

.portfolio-preview__hero-card {
  display: grid;
  gap: 14px;
  overflow: hidden;
  border: 1px solid rgba(33, 85, 123, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.portfolio-planning-map,
.portfolio-project-photo {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: visible;
}

.portfolio-project-photo {
  margin: 10px 10px 0;
  width: calc(100% - 20px);
  height: clamp(190px, 24vw, 260px);
  object-fit: cover;
  object-position: 50% 50%;
  overflow: hidden;
  border: 1px solid rgba(33, 85, 123, 0.1);
  border-radius: 14px;
}

.portfolio-preview__hero-card div {
  padding: 0 18px 18px;
}

.portfolio-planning-map__panel {
  fill: url("#portfolio-map-panel");
  stroke: rgba(33, 85, 123, 0.1);
}

.portfolio-planning-map__contours path {
  fill: none;
  stroke: rgba(33, 85, 123, 0.055);
  stroke-linecap: round;
  stroke-width: 1.4;
}

.portfolio-planning-map__shadow path {
  fill: rgba(255, 255, 255, 0.7);
  filter: drop-shadow(0 16px 16px rgba(21, 63, 97, 0.16));
}

.portfolio-planning-map__boundary path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.98);
  stroke-linejoin: round;
  stroke-width: 7;
}

.portfolio-planning-map__parcels {
  animation: portfolio-map-fade 900ms ease 700ms both;
}

.portfolio-planning-map__parcels path {
  stroke: rgba(255, 255, 255, 0.9);
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.parcel--one,
.parcel--five,
.parcel--seven {
  fill: rgba(67, 102, 77, 0.22);
}

.parcel--two,
.parcel--six,
.parcel--nine {
  fill: rgba(33, 85, 123, 0.15);
}

.parcel--three,
.parcel--four,
.parcel--eight {
  fill: rgba(61, 109, 149, 0.18);
}

.portfolio-planning-map__lines {
  animation: portfolio-map-fade 900ms ease 1.1s both;
}

.portfolio-planning-map__lines path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.92);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.portfolio-planning-map__water path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.water-halo {
  stroke: rgba(255, 255, 255, 0.94);
  stroke-width: 18;
}

.water-main {
  stroke: rgba(61, 109, 149, 0.86);
  stroke-width: 13;
  stroke-dasharray: 900;
  animation: portfolio-water-draw 1.25s ease both;
}

.water-branch {
  stroke: rgba(61, 109, 149, 0.5);
  stroke-width: 5;
  stroke-dasharray: 220;
  animation: portfolio-water-draw 900ms ease 260ms both;
}

.portfolio-planning-map__labels {
  animation: portfolio-map-fade 800ms ease 1.35s both;
}

.portfolio-planning-map__labels text:first-child {
  fill: var(--color-primary);
  font-size: 19px;
  font-weight: 840;
  text-transform: uppercase;
}

.portfolio-planning-map__labels text:last-child {
  fill: var(--color-muted);
  font-size: 15px;
  font-weight: 680;
}

@keyframes portfolio-water-draw {
  from {
    stroke-dashoffset: 900;
    opacity: 0.24;
  }
  to {
    stroke-dashoffset: 0;
    opacity: 1;
  }
}

@keyframes portfolio-map-fade {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.portfolio-qr-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(33, 85, 123, 0.1);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.78);
}

.portfolio-qr {
  position: relative;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  gap: 2px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(33, 85, 123, 0.1);
  border-radius: 14px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(239, 247, 245, 0.9)),
    #ffffff;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, 0.68);
}

.portfolio-qr span:not(.portfolio-qr__badge) {
  border-radius: 2px;
  background: rgba(33, 85, 123, 0.08);
}

.portfolio-qr span.is-dark {
  background: var(--color-primary);
}

.portfolio-qr span.is-anchor {
  background: #2fa894;
}

.portfolio-qr__badge {
  position: absolute;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 3px solid #ffffff;
  border-radius: 50%;
  background: linear-gradient(145deg, #2fa894, #1d7e83);
  color: #ffffff;
  inset: 50% auto auto 50%;
  box-shadow: 0 8px 18px rgba(21, 63, 97, 0.2);
  transform: translate(-50%, -50%);
}

.portfolio-qr__badge .icon {
  width: 18px;
  height: 18px;
}

.portfolio-qr-card > div:last-child span {
  color: var(--color-teal);
  font-size: 0.68rem;
  font-weight: 830;
  text-transform: uppercase;
}

.portfolio-qr-card strong {
  display: block;
  margin-top: 5px;
  color: var(--color-ink);
  font-size: 1.2rem;
  line-height: 1.05;
}

.portfolio-qr-card p {
  margin: 6px 0 0;
  color: var(--color-ink-soft);
  font-size: 0.9rem;
}

.portfolio-preview__hero-card h2 {
  margin: 8px 0 0;
  color: var(--color-ink);
  font-size: clamp(1.64rem, 3vw, 2.24rem);
  line-height: 1.02;
}

.portfolio-preview__hero-card p {
  margin: 10px 0 0;
  color: var(--color-ink-soft);
}

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

.portfolio-preview__metrics div {
  border: 1px solid rgba(33, 85, 123, 0.1);
  border-radius: 14px;
  padding: 14px;
  background: rgba(248, 248, 243, 0.82);
}

.portfolio-preview__metrics strong {
  display: block;
  margin-top: 7px;
  color: var(--color-primary);
  font-size: 1.24rem;
  line-height: 1;
}

.portfolio-preview__journey {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  border: 1px solid rgba(33, 85, 123, 0.1);
  border-radius: 16px;
  padding: 12px;
  background: rgba(220, 235, 240, 0.36);
}

.portfolio-preview__journey span {
  display: grid;
  min-height: 42px;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.portfolio-preview__arrow {
  width: 15px;
  height: 15px;
  color: var(--color-green);
}

.portfolio-section {
  padding-block: 72px;
}

.portfolio-paths__inner h2,
.portfolio-consumer__inner h2,
.portfolio-outputs__inner h2 {
  font-size: clamp(2rem, 4vw, 3.24rem);
  overflow-wrap: anywhere;
}

.portfolio-section .market-section__heading > p:not(.eyebrow) {
  max-width: 780px;
  margin: 18px auto 0;
  color: var(--color-ink-soft);
  font-size: 1.04rem;
}

.portfolio-paths,
.portfolio-consumer,
.portfolio-outputs {
  border-top: 1px solid rgba(33, 85, 123, 0.1);
}

.portfolio-paths {
  background: #ffffff;
}

.portfolio-paths__inner,
.portfolio-consumer__inner,
.portfolio-outputs__inner {
  display: grid;
  gap: 30px;
}

.portfolio-paths__grid,
.portfolio-workspace__grid,
.portfolio-flow__grid,
.portfolio-model-grid {
  display: grid;
  gap: 14px;
}

.portfolio-path-card,
.portfolio-step-card,
.portfolio-consumer__panel,
.portfolio-flow-card,
.portfolio-model-card,
.portfolio-outputs__list {
  border: 1px solid rgba(33, 85, 123, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.84);
  padding: 22px;
  box-shadow: var(--shadow-card);
}

.portfolio-path-card h3,
.portfolio-step-card h3,
.portfolio-consumer__panel h3,
.portfolio-flow-card h3,
.portfolio-model-card h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.13rem;
  line-height: 1.14;
}

.portfolio-path-card p,
.portfolio-step-card p,
.portfolio-consumer__inner p,
.portfolio-flow-card p,
.portfolio-model-card p {
  margin: 10px 0 0;
  color: var(--color-ink-soft);
  font-size: 0.96rem;
}

.portfolio-path-card .chip-list {
  margin-top: 18px;
}

.portfolio-workspace {
  background: linear-gradient(180deg, var(--color-surface), rgba(220, 235, 240, 0.28));
}

.portfolio-step-card span,
.portfolio-flow-card span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  margin-bottom: 18px;
  background: rgba(61, 109, 149, 0.12);
  color: var(--color-primary);
  font-size: 0.84rem;
  font-weight: 800;
}

.portfolio-consumer {
  background: #ffffff;
}

.portfolio-consumer__inner > div:first-child,
.portfolio-outputs__inner > div:first-child {
  max-width: 680px;
}

.portfolio-consumer__panel h3 {
  margin-bottom: 16px;
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.portfolio-funding {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 248, 243, 0.82)),
    #ffffff;
  padding-block: 52px;
}

.portfolio-flow-card {
  box-shadow: none;
}

.portfolio-model-grid {
  margin-top: 18px;
}

.portfolio-model-card:first-child {
  border-color: rgba(67, 102, 77, 0.22);
  background:
    linear-gradient(180deg, rgba(223, 236, 226, 0.48), rgba(255, 255, 255, 0.86)),
    #ffffff;
}

.portfolio-note {
  margin: 18px 0 0;
  border-left: 3px solid rgba(61, 109, 149, 0.38);
  border-radius: 0 12px 12px 0;
  padding: 14px 16px;
  background: rgba(220, 235, 240, 0.34);
  color: var(--color-muted);
  font-size: 0.9rem;
}

.portfolio-outputs {
  background: linear-gradient(180deg, var(--color-surface), #ffffff);
}

.portfolio-outputs__list {
  box-shadow: none;
}

.portfolio-cta {
  padding-block: 46px 88px;
  background: #ffffff;
}

.portfolio-cta__inner {
  display: grid;
  gap: 24px;
  align-items: center;
  border-radius: 24px;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(110deg, rgba(18, 62, 91, 0.98), rgba(33, 85, 123, 0.9) 58%, rgba(67, 102, 77, 0.88)),
    var(--color-primary);
  color: #ffffff;
  box-shadow: var(--shadow-soft);
}

.portfolio-cta h2 {
  color: #ffffff;
  font-size: clamp(1.9rem, 4.2vw, 3.45rem);
}

.portfolio-cta .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.merge-os-page {
  background:
    linear-gradient(180deg, rgba(220, 235, 240, 0.48), transparent 520px),
    var(--color-surface);
}

.merge-os-hero {
  padding: 138px 0 70px;
}

.merge-os-hero__inner {
  display: grid;
  gap: 32px;
  align-items: end;
}

.merge-os-hero__inner--solo {
  max-width: 860px;
}

.merge-os-hero__copy {
  max-width: 780px;
}

.merge-os-hero h1,
.merge-os-hub h2,
.merge-tools h2,
.merge-subscribe h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2.2rem, 6vw, 4.9rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.merge-os-hero__title-os {
  font-size: clamp(3.2rem, 7.8vw, 6.8rem);
  font-weight: 520;
}

.merge-os-hero__kicker {
  color: var(--color-ink);
  font-weight: 560;
}

.merge-os-hero__copy > p:not(.eyebrow),
.merge-os-hub__intro p,
.merge-tools__heading > p,
.merge-subscribe__copy > p {
  margin: 20px 0 0;
  max-width: 670px;
  color: var(--color-ink-soft);
  font-size: 1.06rem;
}

.merge-os-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.merge-os-hero__panel {
  display: grid;
  gap: 14px;
  max-width: 430px;
  border: 1px solid rgba(33, 85, 123, 0.14);
  border-radius: var(--radius-card);
  padding: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-card);
}

.merge-os-hero__panel > span {
  color: var(--color-teal);
  font-size: 0.72rem;
  font-weight: 820;
  text-transform: uppercase;
}

.merge-os-hero__panel strong {
  font-size: 1.35rem;
  line-height: 1.1;
}

.merge-os-hero__panel p {
  margin: 0;
  color: var(--color-muted);
}

.merge-os-hero__panel > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.merge-tool-logo {
  display: inline-grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(33, 85, 123, 0.14);
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(220, 235, 240, 0.82)),
    #ffffff;
  color: var(--color-primary);
  box-shadow: 0 10px 22px rgba(33, 85, 123, 0.08);
}

.merge-tool-logo span {
  font-size: 0.82rem;
  font-weight: 850;
  line-height: 1;
}

.merge-tool-logo--image {
  background: rgba(255, 255, 255, 0.9);
}

.merge-tool-logo--image img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.merge-os-hub.section {
  padding-top: 126px;
}

.merge-os-hub__inner {
  display: block;
}

.hub-map {
  position: relative;
  display: grid;
  min-height: 760px;
  align-items: center;
  border: 1px solid rgba(33, 85, 123, 0.12);
  border-radius: calc(var(--radius-card) + 4px);
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(rgba(33, 85, 123, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 85, 123, 0.055) 1px, transparent 1px),
    rgba(255, 255, 255, 0.66);
  background-size: 42px 42px;
  box-shadow: var(--shadow-card);
}

.hub-spokes {
  position: absolute;
  inset: 44px;
  z-index: 1;
  width: calc(100% - 88px);
  height: calc(100% - 88px);
  overflow: visible;
  pointer-events: none;
}

.hub-spokes line {
  stroke: rgba(33, 85, 123, 0.34);
  stroke-width: 0.5;
  vector-effect: non-scaling-stroke;
}

.hub-spokes__network {
  fill: none;
  stroke: rgba(67, 102, 77, 0.32);
  stroke-dasharray: 5 6;
  stroke-linecap: round;
  stroke-width: 0.46;
  vector-effect: non-scaling-stroke;
}

.hub-map::before,
.hub-map::after {
  content: "";
  position: absolute;
  inset: 90px;
  border: 1px solid rgba(61, 109, 149, 0.18);
  border-radius: 999px;
  pointer-events: none;
}

.hub-map::after {
  inset: 170px;
  border-style: dashed;
}

.hub-map__center {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 220px;
  min-height: 220px;
  place-items: center;
  gap: 8px;
  border: 1px solid rgba(33, 85, 123, 0.18);
  border-radius: 50%;
  padding: 28px;
  background: #ffffff;
  box-shadow: 0 26px 70px rgba(33, 85, 123, 0.16);
  text-align: center;
  transform: translate(-50%, -50%);
}

.hub-map__center img {
  width: 52px;
  height: 52px;
}

.hub-map__center strong {
  font-size: 1.35rem;
  line-height: 1;
}

.hub-map__center span {
  color: var(--color-muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.hub-node {
  position: absolute;
  z-index: 4;
  display: grid;
  width: min(266px, calc(100% - 48px));
  gap: 8px;
  border: 1px solid rgba(33, 85, 123, 0.14);
  border-radius: var(--radius-card);
  padding: 18px 18px 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 36px rgba(33, 85, 123, 0.09);
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.hub-node:hover,
.hub-node:focus-visible {
  border-color: rgba(33, 85, 123, 0.28);
  box-shadow: 0 22px 44px rgba(33, 85, 123, 0.13);
  transform: translateY(-2px);
}

.hub-node:focus-visible,
.merge-tool-card__trigger:focus-visible,
.individual-strip button:focus-visible,
.product-modal__close:focus-visible {
  outline: 3px solid rgba(61, 109, 149, 0.32);
  outline-offset: 3px;
}

.hub-node__name {
  display: block;
  color: var(--color-primary);
  font-size: 1.18rem;
  font-weight: 780;
  line-height: 1.08;
  text-align: center;
}

.hub-node__headline {
  display: block;
  color: var(--color-ink-soft);
  font-size: 0.86rem;
  font-weight: 520;
  line-height: 1.32;
  text-align: center;
}

.hub-node--1 {
  left: 8%;
  top: 9%;
}

.hub-node--2 {
  right: 8%;
  top: 10%;
}

.hub-node--3 {
  left: 4%;
  top: 35%;
}

.hub-node--4 {
  right: 4%;
  top: 35%;
}

.hub-node--5 {
  left: 8%;
  bottom: 13%;
}

.hub-node--6 {
  right: 8%;
  bottom: 13%;
}

.hub-node--7 {
  left: 50%;
  bottom: 5%;
  transform: translateX(-50%);
}

.hub-node--7:hover,
.hub-node--7:focus-visible {
  transform: translateX(-50%) translateY(-2px);
}

.pipeline-map {
  display: grid;
  gap: clamp(30px, 3.8vw, 46px);
  min-height: 0;
  padding: clamp(32px, 4.8vw, 58px);
  background:
    radial-gradient(circle at 50% 48%, rgba(220, 235, 240, 0.46), transparent 38%),
    linear-gradient(rgba(33, 85, 123, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33, 85, 123, 0.032) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 251, 250, 0.76));
  background-size:
    100% 100%,
    44px 44px,
    44px 44px,
    100% 100%;
  box-shadow:
    0 22px 54px rgba(21, 63, 97, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.pipeline-map::before,
.pipeline-map::after {
  display: none;
}

.pipeline-layer,
.pipeline-core {
  position: relative;
  z-index: 2;
}

.pipeline-heading {
  width: 100%;
  min-width: 0;
  max-width: 760px;
}

.os-line {
  display: inline-flex;
  flex-wrap: nowrap;
  column-gap: 0.14em;
  row-gap: 0.12em;
  align-items: baseline;
  margin: 0;
  color: var(--color-ink);
  font-weight: 520;
  letter-spacing: 0;
  line-height: 1.04;
  text-wrap: balance;
}

.os-line__word {
  box-sizing: content-box;
  position: relative;
  display: inline-block;
  width: var(--os-word-width, auto);
  min-width: 0;
  overflow: hidden;
  padding-inline: 0.08em;
  padding-block: 0.08em 0.14em;
  color: var(--color-primary);
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 720;
  text-align: center;
  transition: width 260ms cubic-bezier(0.22, 1, 0.36, 1);
  vertical-align: bottom;
  white-space: nowrap;
}

.os-line__word span {
  display: block;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 180ms ease,
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
  will-change: opacity, transform;
}

.os-line__word[data-phase="out"] span {
  opacity: 0;
  transform: translateY(-0.08em);
}

.os-line__word[data-phase="in"] span {
  opacity: 0;
  transform: translateY(0.08em);
}

.pipeline-heading h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2.25rem, 4.3vw, 4.15rem);
  font-weight: 760;
  line-height: 1.06;
}

.pipeline-heading .pipeline-title-os {
  font-size: clamp(2.65rem, 5.2vw, 4.65rem);
  font-weight: 520;
}

.pipeline-heading > p:not(.eyebrow) {
  max-width: min(690px, 100%);
  margin: 15px 0 0;
  color: var(--color-ink-soft);
  font-size: clamp(1rem, 1.32vw, 1.12rem);
  font-weight: 440;
  line-height: 1.58;
  overflow-wrap: break-word;
}

.pipeline-flow {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.82fr) minmax(405px, 1.12fr) minmax(250px, 0.82fr);
  gap: clamp(32px, 4vw, 58px);
  align-items: center;
  padding: 8px 0 2px;
}

.pipeline-flow::before {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  top: 50%;
  z-index: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(61, 109, 149, 0),
    rgba(61, 109, 149, 0.24) 24%,
    rgba(67, 102, 77, 0.28) 74%,
    rgba(67, 102, 77, 0)
  );
  transform: translateY(-50%);
}

.pipeline-label {
  margin: 0 0 15px;
  color: var(--color-primary);
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.25;
}

.pipeline-layer--intake {
  min-width: 0;
}

.pipeline-fragmented-data {
  position: relative;
  display: grid;
  gap: 17px;
  max-width: 300px;
}

.pipeline-fragmented-data::after {
  content: "";
  position: absolute;
  top: 52px;
  right: -18px;
  bottom: 9px;
  width: 1px;
  background: linear-gradient(
    180deg,
    rgba(61, 109, 149, 0),
    rgba(61, 109, 149, 0.13) 18%,
    rgba(61, 109, 149, 0.13) 82%,
    rgba(61, 109, 149, 0)
  );
  pointer-events: none;
}

.pipeline-fragmented-data h3 {
  margin: 0;
  border-top: 1px solid rgba(33, 85, 123, 0.12);
  padding-top: 13px;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 760;
  line-height: 1.25;
}

.pipeline-fragmented-data ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pipeline-fragmented-data li {
  position: relative;
  display: flex;
  width: min(228px, 78%);
  min-height: 30px;
  align-items: center;
  border-bottom: 1px solid rgba(33, 85, 123, 0.075);
}

.pipeline-fragmented-data li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(100% + 16px);
  width: clamp(90px, 12vw, 170px);
  height: 1px;
  background: linear-gradient(90deg, rgba(61, 109, 149, 0.08), rgba(61, 109, 149, 0.3));
  transform: translateY(-50%);
  pointer-events: none;
}

.pipeline-fragmented-data li:nth-child(2) {
  width: min(244px, 83%);
}

.pipeline-fragmented-data li:nth-child(3) {
  width: min(258px, 88%);
}

.pipeline-fragmented-data li:nth-child(4),
.pipeline-fragmented-data li:nth-child(5),
.pipeline-fragmented-data li:nth-child(6),
.pipeline-fragmented-data li:nth-child(7) {
  width: min(274px, 94%);
}

.pipeline-fragmented-data li:nth-child(8) {
  width: min(258px, 88%);
}

.pipeline-fragmented-data li:nth-child(9) {
  width: min(244px, 83%);
}

.pipeline-fragmented-data li:nth-child(10) {
  width: min(228px, 78%);
}

.pipeline-fragmented-data span {
  display: block;
  color: rgba(24, 32, 36, 0.72);
  font-size: 0.82rem;
  font-weight: 560;
  line-height: 1.22;
}

.pipeline-node {
  display: grid;
  gap: 5px;
  width: 100%;
  border: 1px solid rgba(33, 85, 123, 0.14);
  border-radius: 14px;
  padding: 15px 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 32px rgba(33, 85, 123, 0.075);
  color: inherit;
  font: inherit;
  text-align: left;
}

.pipeline-node--button {
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.pipeline-node--button:hover,
.pipeline-node--button:focus-visible {
  border-color: rgba(33, 85, 123, 0.28);
  box-shadow: 0 18px 40px rgba(33, 85, 123, 0.12);
  transform: translateY(-2px);
}

.pipeline-node--button:focus-visible {
  outline: 3px solid rgba(61, 109, 149, 0.32);
  outline-offset: 3px;
}

.pipeline-node strong {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 760;
  line-height: 1.15;
}

.pipeline-node span {
  color: var(--color-ink-soft);
  font-size: 0.86rem;
  font-weight: 520;
  line-height: 1.3;
}

.pipeline-node--intake {
  border-color: rgba(61, 109, 149, 0.18);
}

.pipeline-node--product {
  border-color: rgba(67, 102, 77, 0.18);
}

.pipeline-chip-row,
.pipeline-core__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pipeline-chip-row {
  margin-top: 14px;
}

.pipeline-chip-row span,
.pipeline-core__labels span,
.pipeline-use-list span {
  border: 1px solid rgba(33, 85, 123, 0.12);
  border-radius: 999px;
  padding: 0.42rem 0.64rem;
  background: rgba(255, 255, 255, 0.74);
  color: var(--color-ink-soft);
  font-size: 0.74rem;
  font-weight: 680;
  line-height: 1;
  white-space: nowrap;
}

.pipeline-core {
  position: relative;
  display: grid;
  gap: 19px;
  justify-items: center;
  min-height: 336px;
  border: 1px solid rgba(33, 85, 123, 0.16);
  border-radius: 18px;
  padding: 36px 28px 31px;
  background:
    radial-gradient(circle at 50% 4%, rgba(220, 235, 240, 0.86), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 251, 250, 0.95));
  box-shadow:
    0 34px 78px rgba(33, 85, 123, 0.14),
    0 12px 30px rgba(33, 85, 123, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  isolation: isolate;
  text-align: center;
}

.pipeline-core::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(33, 85, 123, 0.06);
  border-radius: 13px;
  z-index: 1;
  pointer-events: none;
}

.pipeline-core::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(-1 * clamp(36px, 4.6vw, 66px));
  width: clamp(36px, 4.6vw, 66px);
  height: 1px;
  background: linear-gradient(90deg, rgba(67, 102, 77, 0.26), rgba(67, 102, 77, 0.1));
  transform: translateY(-50%);
  pointer-events: none;
}

.pipeline-core__projection {
  position: absolute;
  top: 50%;
  right: calc(100% - 8px);
  z-index: 0;
  width: clamp(220px, 25vw, 340px);
  height: 270px;
  overflow: hidden;
  border-right: 1px solid rgba(61, 109, 149, 0.11);
  background:
    radial-gradient(ellipse at 100% 50%, rgba(220, 235, 240, 0.3), transparent 48%),
    linear-gradient(90deg, rgba(61, 109, 149, 0.01), rgba(61, 109, 149, 0.055));
  clip-path: polygon(0 9%, 100% 30%, 100% 70%, 0 91%);
  opacity: 0.62;
  pointer-events: none;
  transform: translateY(-50%);
}

.pipeline-core__projection::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(18deg, transparent 45%, rgba(61, 109, 149, 0.1) 45.5%, transparent 46.3%),
    linear-gradient(8deg, transparent 48%, rgba(61, 109, 149, 0.075) 48.5%, transparent 49.2%),
    linear-gradient(-8deg, transparent 50%, rgba(61, 109, 149, 0.075) 50.5%, transparent 51.2%),
    linear-gradient(-18deg, transparent 53%, rgba(61, 109, 149, 0.1) 53.5%, transparent 54.3%);
}

.pipeline-core__projection span {
  position: absolute;
  right: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(61, 109, 149, 0), rgba(61, 109, 149, 0.14));
  transform-origin: right center;
}

.pipeline-core__projection span:nth-child(1) {
  top: 23%;
  transform: rotate(9deg);
}

.pipeline-core__projection span:nth-child(2) {
  top: 36%;
  transform: rotate(4deg);
}

.pipeline-core__projection span:nth-child(3) {
  top: 50%;
}

.pipeline-core__projection span:nth-child(4) {
  top: 64%;
  transform: rotate(-4deg);
}

.pipeline-core__projection span:nth-child(5) {
  top: 77%;
  transform: rotate(-9deg);
}

.pipeline-core > img,
.pipeline-core > div:not(.pipeline-core__projection) {
  position: relative;
  z-index: 2;
}

.pipeline-core img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow:
    0 16px 32px rgba(21, 63, 97, 0.12),
    0 0 0 8px rgba(255, 255, 255, 0.76),
    0 0 0 9px rgba(33, 85, 123, 0.04);
}

.pipeline-core strong {
  display: block;
  color: var(--color-ink);
  font-size: clamp(1.75rem, 2.3vw, 2.08rem);
  font-weight: 780;
  line-height: 1.04;
}

.pipeline-core > div > span {
  display: block;
  max-width: 315px;
  margin-top: 11px;
  color: var(--color-ink-soft);
  font-size: 0.95rem;
  font-weight: 430;
  line-height: 1.52;
}

.pipeline-core__labels {
  display: grid;
  grid-template-columns: auto 12px auto 12px auto;
  align-items: center;
  justify-content: center;
  gap: 4px;
  max-width: 100%;
  margin-top: 1px;
}

.pipeline-core__labels span {
  border-color: rgba(61, 109, 149, 0.16);
  padding: 0.42rem 0.52rem;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-primary);
  box-shadow: 0 8px 16px rgba(33, 85, 123, 0.045);
  font-size: 0.69rem;
  font-weight: 720;
}

.pipeline-core__arrow {
  width: 12px;
  height: 12px;
  color: rgba(67, 102, 77, 0.72);
}

.pipeline-outcome-stack {
  display: grid;
  gap: 0;
  overflow: visible;
  border-radius: 16px;
  filter: drop-shadow(0 24px 34px rgba(21, 63, 97, 0.13));
  transform: perspective(840px) rotateY(-3deg);
  transform-origin: left center;
}

.pipeline-outcome-stack span {
  position: relative;
  display: flex;
  min-height: 56px;
  align-items: center;
  margin-left: calc(var(--stack-index, 0) * 7px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0;
  padding: 0.95rem 1.12rem;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 710;
  line-height: 1.22;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 12px 0 24px rgba(255, 255, 255, 0.035);
}

.pipeline-outcome-stack span:nth-child(1) {
  --stack-index: 0;
  border-radius: 14px 14px 0 0;
  background: #329e8e;
}

.pipeline-outcome-stack span:nth-child(2) {
  --stack-index: 1;
  background: #486b51;
}

.pipeline-outcome-stack span:nth-child(3) {
  --stack-index: 2;
  background: #3d6d95;
}

.pipeline-outcome-stack span:nth-child(4) {
  --stack-index: 3;
  background: #21557b;
}

.pipeline-outcome-stack span:nth-child(5) {
  --stack-index: 4;
  background: #153f61;
}

.pipeline-outcome-stack span:nth-child(6) {
  --stack-index: 5;
  background: #123650;
}

.pipeline-outcome-stack span:nth-child(7) {
  --stack-index: 6;
  border-radius: 0 0 16px 16px;
  background: #102f48;
}

.pipeline-outcome-stack span + span {
  margin-top: -1px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.pipeline-caption {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--color-muted);
  font-size: 0.88rem;
  font-weight: 540;
  line-height: 1.35;
  text-align: center;
}

.merge-use-cases.section {
  padding-top: 54px;
}

.merge-use-cases .section-heading {
  max-width: 840px;
}

.merge-use-cases .deliverables__grid {
  align-items: start;
}

.merge-use-cases .deliverable-card {
  min-height: 320px;
}

.merge-use-cases .deliverable-card .artifact {
  margin-top: 30px;
}

.merge-use-cases .deliverable-card--signal .artifact {
  min-height: 168px;
  margin-top: 26px;
  padding: 18px 16px 14px;
}

.merge-use-cases .deliverable-card--signal .artifact__svg {
  margin-top: 16px;
}

.outcome-paths.section {
  padding-top: 36px;
}

.outcome-paths__intro {
  max-width: 820px;
}

.outcome-paths__intro h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.05;
}

.outcome-paths__intro > p:not(.eyebrow) {
  margin: 18px 0 0;
  max-width: 760px;
  color: var(--color-ink-soft);
  font-size: 1.05rem;
}

.outcome-paths__label {
  margin-top: 34px;
  color: var(--color-muted);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
}

.outcome-paths__grid {
  display: grid;
  gap: 16px;
  margin-top: 14px;
}

.outcome-card {
  display: grid;
  gap: 18px;
  min-height: 100%;
  border: 1px solid rgba(33, 85, 123, 0.13);
  border-radius: var(--radius-card);
  padding: 22px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-card);
}

.outcome-card h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.28rem;
  line-height: 1.14;
}

.outcome-card p {
  margin: 12px 0 0;
  color: var(--color-ink-soft);
  font-size: 0.96rem;
}

.outcome-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.outcome-card__chips span {
  border: 1px solid rgba(61, 109, 149, 0.16);
  border-radius: 999px;
  padding: 0.42rem 0.64rem;
  background: rgba(220, 235, 240, 0.48);
  color: var(--color-primary);
  font-size: 0.76rem;
  font-weight: 720;
  line-height: 1;
}

.outcome-card__link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 760;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.outcome-card__link .icon {
  width: 16px;
  height: 16px;
}

.outcome-card__link:hover {
  color: var(--color-teal);
  transform: translateX(2px);
}

.merge-tools.section {
  padding-top: 74px;
}

.merge-tools__heading {
  max-width: 760px;
}

.merge-tools__grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.merge-tool-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  border: 1px solid rgba(33, 85, 123, 0.13);
  border-radius: var(--radius-card);
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
}

.merge-tool-card__trigger {
  display: grid;
  gap: 18px;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.merge-tool-card__trigger:hover .merge-tool-logo {
  border-color: rgba(33, 85, 123, 0.3);
  transform: translateY(-1px);
}

.merge-tool-card__top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.merge-tool-card__top p {
  margin: 0 0 4px;
  color: var(--color-teal);
  font-size: 0.7rem;
  font-weight: 820;
  text-transform: uppercase;
}

.merge-tool-card h3,
.pack-card h3 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1.28rem;
  line-height: 1.12;
}

.merge-tool-card__summary {
  margin: 0;
  color: var(--color-ink-soft);
}

.mini-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(61, 109, 149, 0.16);
  border-radius: 12px;
  padding: 9px;
  background: rgba(220, 235, 240, 0.34);
}

.mini-flow span {
  display: grid;
  min-height: 32px;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--color-primary);
  font-size: 0.66rem;
  font-weight: 780;
  line-height: 1;
  min-width: 0;
  overflow: hidden;
  padding: 4px 5px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-flow__icon {
  width: 14px;
  height: 14px;
  color: var(--color-green);
}

.merge-tool-card__meta {
  display: grid;
  gap: 12px;
  margin: 0;
}

.merge-tool-card__preview {
  border-top: 1px solid rgba(33, 85, 123, 0.1);
  padding-top: 12px;
}

.merge-tool-card__preview span {
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 820;
  text-transform: uppercase;
}

.merge-tool-card__preview p {
  margin: 4px 0 0;
  color: var(--color-ink);
  font-size: 0.93rem;
}

.merge-tool-card__meta div {
  border-top: 1px solid rgba(33, 85, 123, 0.1);
  padding-top: 12px;
}

.merge-tool-card dt {
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 820;
  text-transform: uppercase;
}

.merge-tool-card dd {
  margin: 4px 0 0;
  color: var(--color-ink);
  font-size: 0.93rem;
}

.merge-tool-card .button,
.pack-card .button {
  width: 100%;
  margin-top: auto;
}

.merge-subscribe {
  background: linear-gradient(180deg, transparent, rgba(220, 235, 240, 0.42));
}

.merge-subscribe__inner {
  display: grid;
  gap: 28px;
}

.merge-contact__inner {
  align-items: center;
}

.merge-subscribe__copy {
  max-width: 560px;
}

.merge-subscribe__copy .button {
  margin-top: 28px;
}

.merge-contact__panel {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(33, 85, 123, 0.12);
  border-radius: var(--radius-card);
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
}

.merge-contact__panel span {
  border-bottom: 1px solid rgba(33, 85, 123, 0.1);
  padding: 0 0 10px;
  color: var(--color-primary);
  font-size: 0.94rem;
  font-weight: 720;
}

.merge-contact__panel span:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

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

.pack-card {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(33, 85, 123, 0.14);
  border-radius: var(--radius-card);
  padding: 22px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-card);
}

.pack-card p {
  margin: 8px 0 0;
  color: var(--color-muted);
}

.pack-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pack-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-ink-soft);
  font-weight: 650;
}

.pack-card li .icon {
  width: 18px;
  height: 18px;
  color: var(--color-green);
}

.individual-strip {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.individual-strip a,
.individual-strip button {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(33, 85, 123, 0.12);
  border-radius: 14px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.78);
  color: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.individual-strip a:hover,
.individual-strip button:hover {
  border-color: rgba(33, 85, 123, 0.26);
  background: #ffffff;
  transform: translateY(-1px);
}

.product-modal[hidden] {
  display: none;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 22px;
}

.product-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 32, 38, 0.54);
  backdrop-filter: blur(10px);
}

.product-modal__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 1120px);
  max-height: calc(100svh - 56px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: calc(var(--radius-card) + 6px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 248, 243, 0.96)),
    #ffffff;
  box-shadow: 0 34px 90px rgba(10, 25, 32, 0.32);
}

.product-modal__panel:focus {
  outline: none;
}

.product-modal__content {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.product-modal__close {
  position: sticky;
  top: 16px;
  left: calc(100% - 58px);
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(33, 85, 123, 0.12);
  border-radius: 50%;
  margin: 16px 16px -58px auto;
  background: rgba(255, 255, 255, 0.92);
  color: var(--color-primary);
  cursor: pointer;
  font: inherit;
  font-size: 1.7rem;
  line-height: 1;
  box-shadow: 0 12px 26px rgba(33, 85, 123, 0.12);
}

.product-modal__hero {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding-right: 52px;
}

.product-modal__hero .merge-tool-logo {
  width: 64px;
  height: 64px;
  border-radius: 16px;
}

.product-modal__hero h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.04;
}

.product-modal__hero p:not(.eyebrow),
.product-modal__short {
  margin: 8px 0 0;
  color: var(--color-ink-soft);
  font-size: 1rem;
}

.product-modal__short {
  max-width: 780px;
}

.mini-flow--modal {
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  padding: 12px;
}

.mini-flow--modal span {
  min-height: 42px;
  font-size: 0.82rem;
}

.product-modal__grid {
  display: grid;
  gap: 16px;
}

.product-modal__section {
  border: 1px solid rgba(33, 85, 123, 0.12);
  border-radius: var(--radius-card);
  padding: 16px;
  background: rgba(255, 255, 255, 0.76);
}

.product-modal__section h3 {
  margin: 0 0 10px;
  color: var(--color-ink);
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-modal__section p {
  margin: 0;
  color: var(--color-ink-soft);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-list span {
  border: 1px solid rgba(67, 102, 77, 0.18);
  border-radius: 999px;
  padding: 0.46rem 0.72rem;
  background: rgba(223, 236, 226, 0.62);
  color: var(--color-green);
  font-size: 0.84rem;
  font-weight: 740;
}

.output-list {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.output-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--color-ink-soft);
}

.output-list .icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--color-green);
  transform: translateY(2px);
}

.product-modal__actions {
  display: flex;
  justify-content: flex-start;
}

.deliverable-modal__panel {
  width: min(100%, 1180px);
}

.product-modal__content.deliverable-modal__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  padding: 28px;
}

.deliverable-modal__hero {
  display: grid;
  gap: 8px;
  padding-right: 52px;
}

.deliverable-modal__hero h2 {
  margin: 0;
  color: var(--color-ink);
  font-size: clamp(2rem, 5vw, 3.65rem);
  line-height: 1.02;
}

.deliverable-modal__hero p {
  margin: 0;
}

.deliverable-modal__hero p:not(.eyebrow) {
  color: var(--color-primary);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  font-weight: 760;
}

.deliverable-modal__short {
  max-width: 820px;
  color: var(--color-ink-soft);
  font-size: 1.02rem;
  font-weight: 450;
}

.deliverable-modal__section,
.deliverable-modal__phase,
.deliverable-modal__example {
  border: 1px solid rgba(33, 85, 123, 0.12);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 34px rgba(39, 55, 63, 0.06);
}

.deliverable-modal__section {
  padding: 16px;
}

.deliverable-modal__section--wide {
  background:
    linear-gradient(135deg, rgba(220, 235, 240, 0.58), rgba(223, 236, 226, 0.48)),
    rgba(255, 255, 255, 0.82);
}

.deliverable-modal__section h3,
.deliverable-modal__section h4,
.deliverable-modal__phase h3,
.deliverable-modal__example-head h3 {
  margin: 0;
  color: var(--color-ink);
  letter-spacing: 0;
}

.deliverable-modal__section h3,
.deliverable-modal__section h4 {
  margin-bottom: 10px;
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.deliverable-modal__section p,
.deliverable-modal__phase p,
.deliverable-modal__example-head p {
  margin: 0;
  color: var(--color-ink-soft);
}

.deliverable-modal__phases {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.deliverable-modal__phase {
  position: relative;
  display: grid;
  gap: 12px;
  overflow: hidden;
  padding: 18px;
}

.deliverable-modal__phase::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-green));
  content: "";
}

.deliverable-modal__phase-number {
  width: fit-content;
  border: 1px solid rgba(61, 109, 149, 0.18);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  background: rgba(220, 235, 240, 0.56);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
}

.deliverable-modal__phase h3 {
  font-size: 1.32rem;
  line-height: 1.12;
}

.deliverable-modal__list {
  gap: 8px;
}

.deliverable-modal__list li {
  font-size: 0.93rem;
}

.deliverable-modal__chips span {
  background: rgba(248, 248, 243, 0.72);
  color: var(--color-ink-soft);
}

.deliverable-modal__example {
  display: grid;
  gap: 16px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(248, 248, 243, 0.74)),
    rgba(255, 255, 255, 0.8);
}

.deliverable-modal__example-head {
  max-width: 820px;
}

.deliverable-modal__example-head h3 {
  font-size: clamp(1.35rem, 3vw, 2.1rem);
  line-height: 1.08;
}

.deliverable-modal__example-head p:not(.eyebrow) {
  margin-top: 8px;
}

.deliverable-modal__example-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.deliverable-modal__report-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.deliverable-modal__report-group {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(33, 85, 123, 0.1);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.deliverable-modal__report-group h4 {
  margin: 0;
  color: var(--color-ink);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.deliverable-modal__workflow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.deliverable-modal__workflow-step {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(33, 85, 123, 0.1);
  border-radius: 14px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.72);
}

.deliverable-modal__workflow-step span {
  width: fit-content;
  border: 1px solid rgba(61, 109, 149, 0.18);
  border-radius: 999px;
  padding: 0.28rem 0.55rem;
  background: rgba(220, 235, 240, 0.56);
  color: var(--color-primary);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1;
}

.deliverable-modal__workflow-step h4 {
  margin: 0;
  color: var(--color-ink);
  font-size: 1rem;
  font-weight: 850;
  letter-spacing: 0;
}

.deliverable-modal__workflow-step p {
  margin: 0;
  color: var(--color-ink-soft);
  font-size: 0.93rem;
}

.deliverable-modal__actions {
  flex-wrap: wrap;
  gap: 10px;
}

.deliverable-modal__table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(33, 85, 123, 0.12);
  border-radius: 12px;
  background: #ffffff;
}

.deliverable-modal__table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  color: var(--color-ink-soft);
  font-size: 0.92rem;
}

.deliverable-modal__table th,
.deliverable-modal__table td {
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.deliverable-modal__table th {
  background: rgba(220, 235, 240, 0.58);
  color: var(--color-ink);
  font-size: 0.75rem;
  font-weight: 850;
  text-transform: uppercase;
}

.deliverable-modal__table tr + tr td {
  border-top: 1px solid rgba(33, 85, 123, 0.09);
}

.deliverable-modal__table td:first-child {
  color: var(--color-ink);
  font-weight: 760;
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .site-header__inner {
    min-height: 70px;
    gap: 12px;
  }

  .logo__wordmark {
    width: 126px;
  }

  .site-header .logo__wordmark {
    width: 128px;
    height: auto;
  }

  .button--ghost {
    padding-inline: 0.72rem;
  }

  .button--ghost .button__icon {
    display: none;
  }
}

@media (max-width: 520px) {
  .site-header__brand {
    gap: 8px;
  }

  .site-header__actions {
    gap: 8px;
  }

  .site-header__merge-os.button {
    padding-inline: 0.66rem;
  }

  .site-header__merge-os {
    display: none;
  }

  .site-header__merge-os .button__icon,
  .site-header__login .button__icon,
  .site-header__marketplace-login .button__icon {
    display: none;
  }

  .site-header__login.button,
  .site-header__marketplace-login.button {
    padding-inline: 0.66rem;
    font-size: 0.78rem;
  }

  .site-header__login span,
  .site-header__marketplace-login span {
    font-size: 0;
  }

  .site-header__login span::after {
    content: "Partner";
    font-size: 0.78rem;
  }

  .site-header__marketplace-login span::after {
    content: "Marketplace";
    font-size: 0.78rem;
  }

  .portfolio-header__login span::after {
    content: "App Login";
  }
}

@media (max-width: 639px) {
  .section {
    padding-block: 68px;
  }

  .hero {
    min-height: min(710px, calc(100svh - 78px));
    padding: 104px 0 76px;
  }

  .hero__image {
    background-position: center 36%;
  }

  .hero__fields {
    opacity: 0.28;
  }

  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(248, 248, 243, 0.68) 80%),
      linear-gradient(90deg, rgba(248, 248, 243, 0.06), rgba(248, 248, 243, 0.02)),
      radial-gradient(circle at 50% 38%, rgba(255, 255, 255, 0.08), transparent 34%),
      radial-gradient(circle at 82% 46%, rgba(255, 255, 255, 0.22), transparent 13%);
  }

  .hero__flow {
    width: 128vw;
    opacity: 0.16;
    transform: scale(0.9) translateX(16%) translateY(-3%);
  }

  .hero h1 {
    font-size: clamp(2rem, 10.2vw, 2.7rem);
  }

  .hero__subhead {
    margin-top: 20px;
    font-size: 1.02rem;
  }

  .hero__body {
    margin-top: 16px;
    font-size: 0.98rem;
  }

  .hero__actions {
    gap: 10px;
    margin-top: 28px;
  }

  .deliverables.section {
    padding-top: 64px;
  }

  .deliverable-card {
    min-height: 248px;
    padding: 24px;
  }

  .deliverable-card__tag {
    top: 16px;
    right: 16px;
  }

  .artifact {
    min-height: 94px;
    padding: 14px 16px 13px;
  }

  .ecosystem.section {
    padding-bottom: 56px;
  }

  .ecosystem-panel {
    padding: 22px;
  }

  .cta-section.section {
    padding-top: 28px;
  }

  .cta__content {
    gap: 24px;
    padding: 28px 24px;
  }

  .site-footer {
    padding-block: 34px;
  }

  .site-footer__inner {
    gap: 20px;
  }

  .site-footer__links {
    gap: 12px 18px;
  }

  .portfolio-header__inner {
    align-items: center;
  }

  .portfolio-logo__mark {
    width: 46px;
    height: 46px;
  }

  .portfolio-logo__text {
    font-size: 1.24rem;
  }

  .portfolio-powered {
    display: none;
  }

  .portfolio-header__login.button {
    min-height: 36px;
    padding-inline: 0.82rem;
  }

  .market-hero {
    padding: 112px 0 58px;
  }

  .market-hero__actions .button,
  .portfolio-hero__actions .button,
  .portfolio-cta .button,
  .market-cta .button {
    width: 100%;
  }

  .market-console {
    border-radius: 18px;
    padding: 16px;
  }

  .market-hero-media {
    grid-template-rows: 76px 76px;
    margin-top: 26px;
  }

  .market-console__toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .market-console__utility {
    width: 100%;
    justify-content: space-between;
  }

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

  .market-detail__signals {
    grid-template-columns: 1fr;
  }

  .market-section {
    padding-block: 62px;
  }

  .portfolio-hero {
    padding: 112px 0 58px;
  }

  .portfolio-preview {
    border-radius: 18px;
    padding: 16px;
  }

  .portfolio-preview__toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .portfolio-preview__status {
    width: fit-content;
  }

  .portfolio-preview__metrics {
    grid-template-columns: 1fr;
  }

  .portfolio-preview__journey {
    grid-template-columns: 1fr;
  }

  .portfolio-preview__arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .portfolio-section {
    padding-block: 62px;
  }

  .portfolio-cta {
    padding-block: 34px 64px;
  }

  .market-cta {
    padding-block: 34px 64px;
  }

  .merge-os-hero {
    padding: 114px 0 44px;
  }

  .merge-os-hub.section {
    padding-top: 112px;
  }

  .os-line {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }

  .merge-os-hero__actions .button {
    width: 100%;
  }

  .hub-map {
    min-height: 0;
    gap: 14px;
    padding: 18px;
  }

  .hub-map::before,
  .hub-map::after,
  .hub-spokes {
    display: none;
  }

  .hub-map__center,
  .hub-node {
    position: static;
    width: 100%;
    transform: none;
  }

  .hub-map__center {
    min-height: 0;
    border-radius: var(--radius-card);
  }

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

  .mini-flow span {
    white-space: normal;
  }

  .mini-flow__icon {
    justify-self: center;
    transform: rotate(90deg);
  }

  .product-modal {
    align-items: end;
    padding: 0;
  }

  .product-modal__panel {
    width: 100%;
    max-height: 94svh;
    border-radius: 22px 22px 0 0;
  }

  .product-modal__content {
    gap: 18px;
    padding: 24px 18px 22px;
  }

  .product-modal__close {
    top: 10px;
    width: 38px;
    height: 38px;
    margin: 12px 12px -50px auto;
  }

  .product-modal__hero {
    grid-template-columns: 1fr;
    padding-right: 46px;
  }

  .product-modal__hero .merge-tool-logo {
    width: 58px;
    height: 58px;
  }

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

  .product-modal__actions .button {
    width: 100%;
  }

  .product-modal__content.deliverable-modal__content {
    padding: 24px 18px 22px;
  }

  .deliverable-modal__hero {
    padding-right: 46px;
  }

  .deliverable-modal__table {
    min-width: 460px;
  }
}

@media (max-width: 919px) {
  .pipeline-map {
    gap: 22px;
    padding: 24px;
  }

  .pipeline-flow {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pipeline-flow::before {
    display: none;
  }

  .pipeline-heading {
    width: 100%;
    max-width: calc(100vw - 84px);
  }

  .pipeline-heading h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .pipeline-heading .pipeline-title-os {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2rem, 11.5vw, 2.82rem);
  }

  .pipeline-heading > p:not(.eyebrow) {
    width: 100%;
    max-width: 100%;
  }

  .pipeline-fragmented-data {
    gap: 15px;
    max-width: none;
  }

  .pipeline-fragmented-data::after {
    top: auto;
    right: 50%;
    bottom: -20px;
    width: 2px;
    height: 22px;
    background: linear-gradient(180deg, rgba(61, 109, 149, 0.2), rgba(61, 109, 149, 0.6));
    transform: translateX(50%);
  }

  .pipeline-fragmented-data li {
    width: 100%;
    min-height: 32px;
  }

  .pipeline-fragmented-data li:nth-child(n) {
    width: 100%;
  }

  .pipeline-fragmented-data li::after {
    left: auto;
    right: 0;
    width: 24%;
  }

  .pipeline-core {
    min-height: 0;
    padding: 32px 24px 28px;
  }

  .pipeline-core__projection {
    display: none;
  }

  .pipeline-core::after {
    top: auto;
    right: 50%;
    bottom: -20px;
    width: 2px;
    height: 22px;
    background: linear-gradient(180deg, rgba(67, 102, 77, 0.24), rgba(67, 102, 77, 0.7));
    transform: translateX(50%);
  }

  .pipeline-core img {
    width: 82px;
    height: 82px;
  }

  .pipeline-core__labels {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
  }

  .pipeline-core__labels span {
    padding: 0.42rem 0.54rem;
    font-size: 0.68rem;
  }

  .pipeline-core__arrow {
    display: none;
    width: 10px;
    height: 10px;
    justify-self: center;
  }

  .pipeline-outcome-stack {
    transform: none;
  }

  .pipeline-outcome-stack span {
    margin-left: calc(var(--stack-index, 0) * 4px);
  }
}

@media (min-width: 640px) {
  .section {
    padding-block: 92px;
  }

  .hero h1 {
    font-size: 4rem;
  }

  .hero__subhead {
    font-size: 1.52rem;
  }

  .hero__body {
    font-size: 1.12rem;
  }

  .section-heading h2,
  .ecosystem__intro h2,
  .cta h2 {
    font-size: 2.72rem;
  }

  .deliverables__grid,
  .ecosystem__grid,
  .market-fields__grid,
  .market-lanes__grid,
  .contribution-flow__model-grid,
  .portfolio-paths__grid,
  .portfolio-workspace__grid,
  .portfolio-flow__grid,
  .portfolio-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-layer-graphic {
    grid-column: 1 / -1;
  }

  .artifact {
    min-height: 108px;
  }

  .cta__actions {
    display: flex;
    flex-wrap: wrap;
  }

  .hero__actions .button,
  .cta__actions .button {
    width: auto;
  }

  .merge-tools__grid,
  .outcome-paths__grid,
  .individual-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-console__grid {
    grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
    align-items: stretch;
  }

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

  .product-modal__section--wide {
    grid-column: 1 / -1;
  }

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

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

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

  .deliverable-modal__phases--two .deliverable-modal__section--table {
    grid-column: 1 / -1;
  }

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

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

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

  .deliverable-modal__section--table {
    grid-column: span 2;
  }
}

@media (min-width: 920px) {
  .container {
    width: min(100% - 80px, 1120px);
  }

  .site-header__inner {
    min-height: 82px;
  }

  .logo__wordmark {
    width: 168px;
  }

  .site-header .logo__wordmark {
    width: 184px;
    height: auto;
  }

  .site-header__login.button,
  .site-header__marketplace-login.button {
    padding-inline: 0.96rem;
  }

  .hero {
    min-height: min(750px, calc(100svh - 92px));
    padding-block: 128px 108px;
  }

  #top,
  #tools,
  #intelligence,
  #platform,
  #contact,
  #footer {
    scroll-margin-top: 92px;
  }

  .hero h1 {
    font-size: 4.75rem;
  }

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

  .deliverable-card:nth-child(5) {
    grid-column: span 2;
  }

  .ecosystem__grid {
    gap: 24px;
  }

  .deliverables.section {
    padding-block: 86px 82px;
  }

  .ecosystem.section {
    padding-block: 82px 68px;
  }

  .cta-section.section {
    padding-block: 42px 90px;
  }

  .cta__content {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 58px;
  }

  .cta__actions {
    min-width: 254px;
    flex-direction: column;
  }

  .site-footer__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 36px;
  }

  .site-footer {
    padding-block: 48px 44px;
  }

  .site-footer__inner > div {
    max-width: 340px;
    gap: 4px;
  }

  .site-footer p {
    margin-top: 8px;
  }

  .site-footer__links {
    justify-content: flex-end;
    gap: 14px 28px;
  }

  .site-footer__links a {
    font-size: 0.9rem;
  }

  .merge-os-hero__inner,
  .merge-subscribe__inner,
  .market-hero__inner,
  .portfolio-hero__inner,
  .market-lanes__inner,
  .portfolio-paths__inner,
  .portfolio-consumer__inner,
  .portfolio-outputs__inner,
  .market-cta__inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  }

  .market-hero__inner {
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
    align-items: start;
  }

  .portfolio-hero__inner {
    grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
    align-items: center;
  }

  .market-lanes__inner {
    grid-template-columns: minmax(0, 0.75fr) minmax(420px, 1fr);
    align-items: start;
  }

  .portfolio-paths__inner,
  .portfolio-consumer__inner,
  .portfolio-outputs__inner {
    grid-template-columns: minmax(0, 0.72fr) minmax(420px, 1fr);
    align-items: start;
  }

  .market-cta__inner,
  .portfolio-cta__inner {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .contribution-flow__principles {
    grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
    align-items: start;
  }

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

  .merge-os-hero__inner--solo {
    grid-template-columns: 1fr;
  }

  .merge-tools__grid,
  .outcome-paths__grid,
  .market-fields__grid,
  .market-lanes__grid,
  .portfolio-workspace__grid,
  .portfolio-flow__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .market-layer-graphic {
    grid-column: 2 / span 2;
  }

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

  .product-modal__content {
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }

  .product-modal__hero,
  .product-modal__short,
  .mini-flow--modal,
  .product-modal__actions {
    grid-column: 1;
  }

  .product-modal__grid {
    grid-column: 2;
    grid-row: 1 / span 4;
  }

  .product-modal__actions {
    align-self: end;
  }

  .product-modal__content.deliverable-modal__content,
  .deliverable-modal__hero,
  .deliverable-modal__short,
  .deliverable-modal__phases,
  .deliverable-modal__example,
  .deliverable-modal__section {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (min-width: 1200px) {
  .section {
    padding-block: 96px;
  }

  .site-header {
    background: rgba(255, 255, 255, 0.68);
    box-shadow: 0 14px 38px rgba(26, 32, 36, 0.032);
  }

  .hero {
    padding-bottom: 108px;
  }

  .deliverables.section {
    padding-top: 88px;
  }

  .ecosystem.section {
    padding-top: 84px;
    padding-bottom: 70px;
  }

  .cta-section.section {
    padding-top: 44px;
    padding-bottom: 96px;
  }
}

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

  .hero__image {
    transform: none;
  }
}
