@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&display=swap");

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/draft/assets/fonts/ibm-plex-sans/IBMPlexSans-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/draft/assets/fonts/ibm-plex-sans/IBMPlexSans-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("/draft/assets/fonts/ibm-plex-sans/IBMPlexSans-SemiBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: light;
  --blueprint: #102a43;
  --process-blue: #146c94;
  --cyan: #4bb3c3;
  --orange: #f26b3a;
  --paper: #f7faf9;
  --white: #ffffff;
  --ink: #17211f;
  --muted: #677571;
  --font: "IBM Plex Sans", Arial, sans-serif;
  --intro-copy-size: clamp(0.8125rem, min(1.65vw, 2.5vh), 1.25rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
input:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 4px;
}

.shell {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

.hero-scroll {
  height: 160vh;
  min-height: 1080px;
  position: relative;
  background: var(--blueprint);
}

.hero-sticky {
  height: 100vh;
  min-height: 680px;
  position: sticky;
  top: 0;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.system-plan {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -2;
}

.ambient-grid {
  fill: none;
  stroke: rgba(75, 179, 195, 0.085);
  stroke-width: 1;
}

.start-network,
.end-network {
  fill: none;
}

.track > path {
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.track-rails {
  stroke: rgba(220, 245, 248, 0.7);
  stroke-width: 7;
}

.track-belt {
  stroke: rgba(8, 30, 48, 0.94);
  stroke-width: 3.8;
}

.start-network .track:nth-child(3n + 2) .track-rails {
  stroke: rgba(75, 179, 195, 0.76);
}

.end-network--secondary .track-rails {
  stroke: rgba(75, 179, 195, 0.82);
  stroke-width: 7;
}

.end-network--primary .track-rails {
  stroke: rgba(230, 250, 252, 0.94);
  stroke-width: 9;
}

.end-network--primary .track-belt {
  stroke-width: 5;
}

.end-network--primary .track-rails {
  filter: drop-shadow(0 0 8px rgba(75, 179, 195, 0.2));
}

.module {
  will-change: transform;
}

.product {
  fill: var(--white);
  stroke: var(--cyan);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.22));
}

.start-constraints > g > circle:first-child {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.constraint-core {
  fill: var(--orange);
}

.end-status circle {
  fill: var(--cyan);
  filter: url(#soft-glow);
}

.title-calm {
  pointer-events: none;
}

.mobile-system {
  display: none;
}

.site-nav {
  --site-nav-offset: 0px;
  width: 100%;
  height: 73px;
  min-height: 73px;
  position: fixed;
  inset: 0 0 auto;
  z-index: 4;
  overflow: hidden;
  border-bottom: 1px solid rgba(75, 179, 195, 0.28);
  background: rgba(8, 30, 48, 0.94);
  box-shadow: 0 8px 30px rgba(8, 30, 48, 0.22);
  transform: translateY(var(--site-nav-offset));
  will-change: transform;
}

.site-nav::before {
  content: "";
  position: absolute;
  inset: -80% -2% -80% 48%;
  pointer-events: none;
  background: radial-gradient(ellipse at right, rgba(75, 179, 195, 0.22), transparent 64%);
}

.site-nav.is-hidden {
  transform: translateY(-105%);
}

.site-nav__inner {
  width: min(1240px, calc(100% - 64px));
  height: 100%;
  position: relative;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: center;
}

.site-nav__brand {
  width: clamp(126px, 12vw, 154px);
  grid-column: 1;
  justify-self: start;
}

.site-nav__brand img {
  width: 100%;
  height: auto;
  display: block;
}

.site-nav__links {
  min-width: 0;
  width: 100%;
  height: 100%;
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(92px, 1fr));
  align-items: stretch;
}

.site-nav__links a {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 12px;
  color: var(--cyan);
  font-size: clamp(13px, 1.22vw, 17px);
  font-weight: 400;
  letter-spacing: 0.045em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.site-nav__links a:hover {
  color: var(--white);
  background: rgba(75, 179, 195, 0.08);
}

.site-nav__links .site-nav__contact {
  color: var(--orange);
}

.hero-brand {
  width: 260px;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.hero-brand strong {
  width: 100%;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.hero-brand__descriptor {
  width: 100%;
  color: rgba(255, 255, 255, 0.68);
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-copy {
  min-height: calc(100vh - 73px);
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px 0 124px;
  text-align: center;
  will-change: opacity, transform;
}

.hero-copy h1 {
  max-width: 1120px;
  margin: 0;
  font-size: clamp(58px, 6.5vw, 98px);
  font-weight: 700;
  letter-spacing: -0.06em;
  line-height: 0.92;
  text-wrap: balance;
}

.title-line {
  display: block;
  white-space: nowrap;
}

.hero-deck {
  max-width: 690px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.55;
  text-wrap: balance;
}

.button {
  min-height: 54px;
  margin-top: 34px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  color: var(--white);
  background: #c94a22;
  box-shadow: 0 14px 32px rgba(64, 25, 10, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: #b9401d;
}

.scrubber {
  height: 42px;
  position: absolute;
  right: 32px;
  bottom: 76px;
  z-index: 5;
  display: grid;
  grid-template-columns: auto minmax(170px, 23vw) 40px;
  align-items: center;
  gap: 12px;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(8, 24, 39, 0.72);
  backdrop-filter: blur(10px);
}

.scrubber label,
.scrubber output {
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.scrubber output {
  text-align: right;
}

.scrubber input {
  width: 100%;
  accent-color: var(--cyan);
  cursor: ew-resize;
}

.sr-only {
  width: 1px;
  height: 1px;
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.experience-conveyor {
  height: 185px;
  position: relative;
  z-index: 8;
  margin-top: -18vh;
  overflow: hidden;
  isolation: isolate;
  color: var(--white);
  background: #0c2237;
  border-top: 1px solid rgba(75, 179, 195, 0.36);
  border-bottom: 1px solid rgba(75, 179, 195, 0.3);
  box-shadow: 0 -28px 80px rgba(7, 29, 46, 0.26), 0 22px 60px rgba(7, 29, 46, 0.18);
}

.conveyor-machine {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: -1;
}

.conveyor-assembly {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.conveyor-top-rail {
  stroke: rgba(75, 179, 195, 0.94);
  stroke-width: 3;
  filter: drop-shadow(0 0 8px rgba(75, 179, 195, 0.2));
}

.conveyor-belt-bed {
  fill: rgba(7, 27, 44, 0.82);
  stroke: rgba(75, 179, 195, 0.34);
  stroke-width: 1;
}

.conveyor-lower-rail {
  stroke: rgba(75, 179, 195, 0.84);
  stroke-width: 2;
}

.conveyor-supports,
.conveyor-base-line {
  stroke: rgba(75, 179, 195, 0.36);
  stroke-width: 1.25;
  vector-effect: non-scaling-stroke;
}

.conveyor-flow {
  position: absolute;
  inset: 0;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.experience-conveyor.is-dragging .conveyor-flow {
  cursor: grabbing;
}

.logo-stream {
  width: max-content;
  position: absolute;
  top: 48px;
  left: 0;
  display: flex;
  will-change: transform;
  animation: conveyor-flow 38s linear infinite;
}

.logo-set {
  display: flex;
  align-items: flex-end;
  gap: clamp(38px, 4vw, 72px);
  padding-right: clamp(38px, 4vw, 72px);
}

.logo-load {
  width: clamp(156px, 14vw, 196px);
  height: 102px;
  position: relative;
  display: grid;
  place-items: center;
  flex: none;
  padding: 14px 18px 24px;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, rgba(20, 108, 148, 0.13), rgba(20, 108, 148, 0.03));
}

.logo-load::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 12px;
  background:
    linear-gradient(rgba(75, 179, 195, 0.9), rgba(75, 179, 195, 0.9)) 0 100% / 100% 2px no-repeat,
    linear-gradient(rgba(75, 179, 195, 0.68), rgba(75, 179, 195, 0.68)) 10px 100% / 1px 11px no-repeat,
    linear-gradient(rgba(75, 179, 195, 0.68), rgba(75, 179, 195, 0.68)) calc(100% - 10px) 100% / 1px 11px no-repeat;
  pointer-events: none;
}

.logo-load img {
  max-width: 100%;
  max-height: 48px;
  display: block;
  object-fit: contain;
  opacity: 0.94;
  pointer-events: none;
  transform-origin: center;
  filter: brightness(0) invert(1) drop-shadow(0 0 9px rgba(255, 255, 255, 0.12));
}

.logo-load--coca-cola img {
  transform: scale(1.5);
}

.logo-load--mondelez img {
  transform: scale(1.3);
}

.logo-load--nutricia img {
  transform: scale(0.7);
}

.logo-load--tall img {
  max-width: 96px;
  max-height: 64px;
}

@keyframes conveyor-flow {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.page-sequence {
  --section-inset: clamp(40px, 6.6vw, 96px);
  --flow-top: 1040px;
  --page-background: #eef5f8;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--page-background);
}

.particle-hero-copy h1 > span {
  display: block;
}

.proof-section {
  position: relative;
  z-index: 2;
  padding: clamp(76px, 7.5vw, 112px) 0 clamp(52px, 5vw, 72px);
  background: var(--page-background);
}

.proof-panel {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
  padding: 0;
}

.proof-panel .section-intro h2 {
  font-size: clamp(28px, 5.7vw, 76px);
  text-wrap: balance;
}

.proof-metrics {
  margin-top: clamp(30px, 3.2vw, 46px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 1px solid rgba(16, 42, 67, 0.16);
}

.proof-metrics article {
  min-width: 0;
  padding: clamp(24px, 2.4vw, 34px) clamp(20px, 2.8vw, 40px) clamp(28px, 2.8vw, 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.proof-metrics article + article {
  border-left: 1px solid rgba(16, 42, 67, 0.16);
}

.proof-metric__label {
  display: block;
  color: var(--process-blue);
  font-size: clamp(11px, 1.28vw, 17px);
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  white-space: nowrap;
}

.proof-metrics strong {
  min-height: 0.95em;
  margin-top: clamp(20px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: var(--blueprint);
  font-size: clamp(56px, 6vw, 84px);
  font-weight: 750;
  letter-spacing: -0.08em;
  line-height: 0.9;
  white-space: nowrap;
}

.proof-metrics strong em {
  color: var(--orange);
  font-size: 1em;
  font-style: normal;
  letter-spacing: -0.08em;
}

.proof-metrics strong small {
  margin: 0.28em 0 0;
  font-size: 0.24em;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
}

.proof-metrics .proof-metric__unit--accent {
  color: var(--orange);
}

.proof-metric__number {
  display: flex;
  align-items: baseline;
}

.proof-metrics .proof-metric__value--wide {
  font-size: clamp(48px, 5.15vw, 72px);
  flex-direction: row;
  align-items: baseline;
  letter-spacing: -0.075em;
}

.proof-metrics p {
  max-width: 34ch;
  margin: clamp(24px, 2.4vw, 34px) auto 0;
  color: #4e625e;
  font-size: clamp(13px, 1.02vw, 15px);
  line-height: 1.55;
  text-align: center;
}

@media (min-width: 761px) {
  .proof-metrics article {
    display: grid;
    grid-template-rows: 24px 118px minmax(84px, 1fr);
    row-gap: 8px;
    align-items: center;
  }

  .proof-metrics strong,
  .proof-metrics p {
    margin-top: 0;
    align-self: center;
  }

  .proof-metrics strong {
    justify-self: center;
    text-align: center;
  }
}

.pressure-section {
  --pressure-progress: 0;
  position: relative;
  z-index: 2;
  padding-bottom: clamp(92px, 9vw, 138px);
  isolation: isolate;
}

.pressure-housing {
  width: min(calc(100% - 48px), 1040px);
  position: relative;
  z-index: 2;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(75, 179, 195, 0.24);
  border-radius: 30px;
  color: var(--white);
  background: #102f4a;
  box-shadow: 0 0 58px rgba(20, 108, 148, 0.14);
}

.pressure-housing::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 24%, rgba(75, 179, 195, 0.18), transparent 28%),
    radial-gradient(circle at 68% 88%, rgba(20, 108, 148, 0.2), transparent 34%);
}

.pressure-housing__inner {
  padding: clamp(48px, 5vw, 68px) clamp(44px, 6vw, 82px) clamp(52px, 5.4vw, 74px);
  text-align: center;
}

.pressure-housing h2 {
  max-width: 920px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(46px, 5.6vw, 76px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.pressure-housing h2 > span {
  display: block;
}

.pressure-housing p {
  max-width: 500px;
  margin: 28px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.65;
  text-wrap: pretty;
}

.pressure-stage {
  position: relative;
  z-index: 1;
}

.pressure-machine {
  width: min(760px, 76vw);
  height: 180px;
  position: relative;
  z-index: 1;
  margin: -14px auto -60px;
  transform: translateY(calc(var(--pressure-progress) * -94px));
  transform-origin: center top;
  will-change: transform;
}

.pressure-machine__stem,
.pressure-machine__platen {
  position: absolute;
  display: block;
}

.pressure-machine__stem {
  width: 66%;
  top: -2px;
  bottom: 28px;
  left: 17%;
  border: 2px solid rgba(20, 108, 148, 0.56);
  border-bottom: 0;
  background: linear-gradient(90deg, rgba(16, 42, 67, 0.94), rgba(20, 108, 148, 0.84), rgba(16, 42, 67, 0.94));
  box-shadow: 0 8px 18px rgba(16, 42, 67, 0.13);
}

.pressure-machine__platen {
  height: 28px;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid rgba(20, 108, 148, 0.62);
  border-radius: 8px;
  background: #102f4a;
  box-shadow: 0 8px 0 rgba(75, 179, 195, 0.13), 0 14px 26px rgba(16, 42, 67, 0.16);
}

.pressure-payoff {
  position: relative;
  z-index: 1;
  margin-top: -10px;
  padding: 0 var(--section-inset);
}

#rogerio {
  scroll-margin-top: 82px;
}

#cases-title {
  scroll-margin-top: clamp(88px, 11vh, 116px);
}

.pressure-payoff__heading {
  max-width: 980px;
  margin: 0 auto;
  color: var(--blueprint);
  font-size: clamp(44px, 5.7vw, 78px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-align: center;
  text-wrap: balance;
  transform: scaleY(calc(0.58 + (var(--pressure-progress) * 0.42)));
  transform-origin: center bottom;
  will-change: transform;
}

.pressure-outcomes {
  margin-top: clamp(42px, 5vw, 68px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid rgba(23, 33, 31, 0.14);
}

.pressure-outcomes article {
  min-width: 0;
  min-height: 300px;
  padding: 30px clamp(22px, 3vw, 42px) 36px;
}

.pressure-outcomes article + article {
  border-left: 1px solid rgba(23, 33, 31, 0.14);
}

.pressure-outcomes span {
  display: block;
  color: var(--orange);
  font-size: clamp(64px, 6.4vw, 88px);
  font-weight: 760;
  letter-spacing: -0.07em;
  line-height: 0.84;
}

.pressure-outcomes h3 {
  margin: 28px 0 0;
  color: var(--blueprint);
  font-size: clamp(24px, 2.3vw, 34px);
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.pressure-outcomes p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .proof-section {
    padding: 56px 0 68px;
  }

  .proof-panel {
    width: min(100% - 36px, 540px);
    padding: 0;
  }

  .proof-panel .section-intro h2 {
    font-size: clamp(26px, 8.4vw, 48px);
  }

  .proof-metrics {
    margin-top: 28px;
    grid-template-columns: 1fr;
  }

  .proof-metrics article {
    padding: 28px 4px 30px;
  }

  .proof-metrics article + article {
    border-top: 1px solid rgba(16, 42, 67, 0.16);
    border-left: 0;
  }

  .proof-metrics strong,
  .proof-metrics .proof-metric__value--wide {
    font-size: clamp(48px, 16vw, 66px);
  }

  .proof-metrics p {
    max-width: 38ch;
    font-size: 14px;
  }

  .pressure-section {
    padding-bottom: 72px;
  }

  .pressure-housing {
    width: calc(100% - 20px);
    border-radius: 24px;
  }

  .pressure-housing__inner {
    width: min(100% - 36px, 540px);
    padding: 42px 0 48px;
  }

  .pressure-housing h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .pressure-housing p {
    margin-top: 22px;
    font-size: 15px;
  }

  .pressure-machine {
    width: calc(100vw - 48px);
    height: 112px;
    margin-top: -10px;
    margin-bottom: -44px;
    transform: translateY(calc(var(--pressure-progress) * -54px));
  }

  .pressure-machine__stem {
    bottom: 23px;
  }

  .pressure-machine__platen {
    height: 23px;
  }

  .pressure-payoff {
    width: min(100% - 36px, 540px);
    margin-top: -8px;
    padding: 0;
  }

  .pressure-payoff__heading {
    font-size: clamp(38px, 11vw, 54px);
    transform: scaleY(calc(0.64 + (var(--pressure-progress) * 0.36)));
  }

  .pressure-outcomes {
    margin-top: 46px;
    grid-template-columns: 1fr;
  }

  .pressure-outcomes article {
    min-height: 0;
    padding: 28px 20px 34px;
  }

  .pressure-outcomes article + article {
    border-top: 1px solid rgba(23, 33, 31, 0.14);
    border-left: 0;
  }

  .pressure-outcomes span {
    font-size: 68px;
  }

  .pressure-outcomes h3 {
    margin-top: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-nav {
    transition: none;
  }

  .pressure-machine {
    transform: translateY(-94px);
  }

  .pressure-payoff__heading {
    transform: none;
  }
}

@media (max-width: 760px) and (prefers-reduced-motion: reduce) {
  .pressure-machine {
    transform: translateY(-54px);
  }
}

.page-flow {
  width: 100%;
  height: calc(100% - var(--flow-top));
  position: absolute;
  inset: var(--flow-top) 0 auto;
  z-index: -1;
  pointer-events: none;
}

.page-flow__rail {
  fill: none;
  vector-effect: non-scaling-stroke;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.page-flow__rail--outer {
  stroke: rgba(20, 108, 148, 0.24);
  stroke-width: 20;
}

.page-flow__rail--gap {
  stroke: var(--page-background);
  stroke-width: 12;
}

.page-sequence > .content-section > .shell,
.principle-quote > .shell {
  padding-inline: var(--section-inset);
}

.content-section {
  position: relative;
  z-index: 1;
  padding: clamp(96px, 10vw, 156px) 0;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 24px;
  height: 1px;
  display: inline-block;
  flex: none;
  background: currentColor;
}

.eyebrow--dark { color: var(--process-blue); }
.eyebrow--light { color: rgba(255, 255, 255, 0.66); }

.section-intro h2,
.final-cta h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(44px, 5.7vw, 78px);
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-intro h2 { color: var(--blueprint); }

.section-intro > p:not(.eyebrow),
.section-intro--split > p {
  max-width: 670px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.section-intro--split {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  align-items: end;
  gap: clamp(48px, 8vw, 120px);
}

.section-intro--split > p { margin: 0; }

.evidence-note {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: right;
  text-transform: uppercase;
}

.testimonials { padding-top: clamp(76px, 8vw, 118px); }

.testimonial-intro-card {
  position: relative;
  z-index: 3;
  padding: clamp(42px, 6vw, 78px);
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 22px 66px rgba(16,42,67,.08);
}

.testimonial-machine {
  position: relative;
  padding-top: 104px;
  margin-top: -24px;
}

.testimonial-rig {
  height: 112px;
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  pointer-events: none;
}

.testimonial-arm {
  width: 30px;
  height: var(--pusher-height, 0px);
  position: relative;
  justify-self: center;
  opacity: var(--arm-opacity, 0);
  border-inline: 2px solid rgba(20,108,148,.42);
  background: linear-gradient(90deg,transparent 45%,rgba(75,179,195,.28) 45% 55%,transparent 55%);
}

.testimonial-arm::before {
  content:"";
  width: 14px;
  height: 8px;
  position: absolute;
  top: 0;
  left: 50%;
  border: 1px solid rgba(20,108,148,.4);
  border-top: 0;
  transform: translateX(-50%);
  background: var(--page-background);
}

.testimonial-arm i {
  width: 64px;
  height: 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  border: 2px solid rgba(20,108,148,.55);
  border-radius: 5px 5px 2px 2px;
  transform: translateX(-50%);
  background: var(--page-background);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-card {
  min-height: 390px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(20, 108, 148, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(16, 42, 67, 0.06);
}

.mechanics-ready .testimonial-card {
  opacity: var(--card-opacity, 0);
  transform: translateY(var(--card-offset, -96px));
}

.testimonial-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-card__head > span:last-child { min-width: 0; }
.testimonial-card__head strong { display: block; font-size: 14px; }
.testimonial-card__head small { margin-top: 4px; display: block; color: var(--muted); font-size: 10px; line-height: 1.35; }

.testimonial-avatar {
  width: 52px;
  height: 52px;
  position: relative;
  flex: none;
  overflow: hidden;
  border-radius: 50%;
  background: linear-gradient(145deg, #b9dce1, #eef5f4);
  box-shadow: inset 0 0 0 1px rgba(20, 108, 148, 0.2);
}

.testimonial-avatar::before {
  content: "";
  width: 17px;
  height: 17px;
  position: absolute;
  top: 10px;
  left: 18px;
  border-radius: 50%;
  background: rgba(16, 42, 67, 0.54);
}

.testimonial-avatar::after {
  content: "";
  width: 38px;
  height: 26px;
  position: absolute;
  bottom: -8px;
  left: 7px;
  border-radius: 50% 50% 0 0;
  background: rgba(16, 42, 67, 0.54);
}

.testimonial-avatar--two { background: linear-gradient(145deg, #d1e3ea, #f6f8f7); }
.testimonial-avatar--three { background: linear-gradient(145deg, #a8cfd7, #edf5f3); }

.testimonial-card > p {
  margin: 58px 0 34px;
  color: var(--ink);
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.42;
}

.testimonial-topic {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(23, 33, 31, 0.12);
  color: var(--process-blue);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.recognition {
  margin-inline: 24px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(16, 42, 67, 0.08);
}

.situation-grid {
  margin-top: clamp(56px, 7vw, 90px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(23, 33, 31, 0.14);
}

.situation-grid article { padding: 34px 28px 0; }
.situation-grid article + article { border-left: 1px solid rgba(23, 33, 31, 0.14); }
.situation-grid h3 { margin: 34px 0 0; font-size: clamp(22px, 2vw, 30px); letter-spacing: -0.035em; }
.situation-grid p { margin: 16px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

.situation-signal {
  height: 64px;
  display: flex;
  align-items: end;
  gap: 8px;
}

.situation-signal i { width: 28%; height: 38%; display: block; background: rgba(20, 108, 148, 0.18); border-top: 2px solid var(--cyan); }
.situation-signal i:nth-child(2) { height: 64%; }
.situation-signal i:nth-child(3) { height: 48%; }
.situation-signal--offset i:nth-child(1) { height: 70%; }
.situation-signal--offset i:nth-child(2) { height: 34%; }
.situation-signal--rise i:nth-child(1) { height: 28%; }
.situation-signal--rise i:nth-child(2) { height: 48%; }
.situation-signal--rise i:nth-child(3) { height: 82%; border-color: var(--orange); }

.change-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(56px, 9vw, 130px);
}

.change-system {
  padding: 28px;
  border: 1px solid rgba(20, 108, 148, 0.16);
  border-radius: 22px;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 26px 70px rgba(16,42,67,0.08);
}

.change-system__head { display: flex; justify-content: space-between; color: var(--process-blue); font-size: 9px; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; }
.change-system__route { height: 94px; position: relative; margin: 32px 0; }
.change-system__route::before,
.change-system__route::after { content:""; position:absolute; top:45px; height:2px; background:var(--cyan); }
.change-system__route::before { left:0; width:34%; transform:rotate(7deg); transform-origin:right; opacity:.46; }
.change-system__route::after { right:0; width:66%; box-shadow:0 5px 0 rgba(255,255,255,.8); }
.change-system__route i { width:18px; height:18px; position:absolute; top:37px; border:2px solid var(--cyan); border-radius:50%; background:#fff; }
.change-system__route i:nth-child(1){left:3%}.change-system__route i:nth-child(2){left:31%}.change-system__route i:nth-child(3){left:65%}.change-system__route i:nth-child(4){right:3%;border-color:var(--orange)}
.change-system__states { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.change-system__states article { padding:22px; border-radius:14px; background:rgba(20,108,148,.06); }
.change-system__states article:last-child { background:var(--blueprint); color:#fff; }
.change-system__states small { color:var(--process-blue); font-size:9px; font-weight:800; letter-spacing:.11em; text-transform:uppercase; }
.change-system__states article:last-child small { color:var(--cyan); }
.change-system__states strong { margin-top:24px; display:block; font-size:18px; }
.change-system__states p { margin:10px 0 0; color:var(--muted); font-size:13px; line-height:1.5; }
.change-system__states article:last-child p { color:rgba(255,255,255,.62); }

.approach-section {
  position: relative;
  width: 100vw;
  margin-inline: 0;
  overflow: hidden;
  border-radius: 0;
  color: #fff;
  background: #102f4a;
}

.approach-section::before,
.evidence-context::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.approach-section::before {
  background:
    radial-gradient(circle at 16% 24%, rgba(75, 179, 195, 0.18), transparent 28%),
    radial-gradient(circle at 68% 88%, rgba(20, 108, 148, 0.2), transparent 34%);
}

.approach-section > .shell,
.evidence-context > .shell { position: relative; z-index: 1; }

.approach-section .section-intro h2 { color:#fff; }
.approach-section .section-intro--split > p { color:rgba(255,255,255,.64); }

.route-map {
  --route-bleed: calc(var(--section-inset) + 32px);
  width: calc(100% + (var(--route-bleed) * 2));
  height: 158px;
  position: relative;
  margin: 62px 0 8px calc(-1 * var(--route-bleed));
}
.route-map svg { width: 100%; height: 130px; display: block; overflow: visible; }
.route-map path { fill: none; vector-effect: non-scaling-stroke; stroke-linecap: round; stroke-linejoin: round; }
.route-map__progress { stroke: var(--cyan); stroke-width: 2; }
.route-map__dot {
  width: 16px;
  height: 16px;
  position: absolute;
  top: var(--y);
  left: var(--x);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  transform: translate(-50%,-50%);
  background: #102f4a;
}
.route-map__dot small {
  position:absolute;
  top:22px;
  left:50%;
  color:rgba(255,255,255,.55);
  font-size:9px;
  font-weight:750;
  letter-spacing:.08em;
  white-space:nowrap;
  text-transform:uppercase;
  transform:translateX(-50%);
}
.route-map__dot--label-above small {
  top: auto;
  bottom: 22px;
}
.route-map__end { width:18px;height:18px;border-color:var(--orange);transition:background 260ms ease; }
.route-map.is-complete .route-map__end { background:var(--orange); }

.offer-grid { display:grid; grid-template-columns:1fr 1fr; align-items:stretch; gap:18px; }
.offer-card { min-height:430px; padding:clamp(30px,4vw,54px); display:grid; grid-template-rows:auto minmax(100px,auto) 1fr auto; border:1px solid rgba(75,179,195,.28); border-radius:18px; background:rgba(8,30,48,.46); }
.offer-card--signal { background:rgba(20,108,148,.18); color:#fff; }
.offer-card__label { color:var(--cyan); font-size:9px; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.offer-card--signal .offer-card__label { color:var(--cyan); }
.offer-card h3 { max-width:490px; margin:48px 0 0; font-size:clamp(30px,3.1vw,46px); letter-spacing:-.05em; line-height:1; }
.offer-card p { max-width:520px; margin:22px 0 0; color:rgba(255,255,255,.62); font-size:15px; line-height:1.65; }
.offer-card--signal p { color:rgba(255,255,255,.68); }
.offer-card ul { align-self:end; margin:42px 0 0; padding:0; list-style:none; border-top:1px solid rgba(75,179,195,.24); }
.offer-card li { padding:13px 0; border-bottom:1px solid rgba(75,179,195,.18); font-size:12px; }

.principle-quote {
  min-height: 0;
  position: relative;
  z-index: 1;
  margin: clamp(54px, 7vw, 96px) 24px;
  padding: clamp(52px, 6vw, 88px) 0 clamp(44px, 5vw, 72px);
  overflow: hidden;
  border-radius: 30px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 24px 70px rgba(16,42,67,.07);
}

.principle-quote__grid { position:absolute; inset:0; background-image:linear-gradient(rgba(75,179,195,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(75,179,195,.08) 1px,transparent 1px); background-size:72px 72px; mask-image:linear-gradient(90deg,#000,transparent 55%); }
.principle-quote__layout { position:relative; display:grid; grid-template-columns:minmax(300px,.8fr) minmax(0,1.2fr); align-items:start; gap:clamp(60px,10vw,150px); }
.principle-portrait { width:min(100%,460px); aspect-ratio:4/5; margin:0; position:relative; overflow:hidden; }
.principle-portrait img { width:100%; height:100%; display:block; object-fit:cover; object-position:center top; filter:drop-shadow(0 24px 40px rgba(16,42,67,.08)); }
.principle-quote blockquote { margin:0; }
.principle-quote blockquote p { margin:0; color:var(--blueprint); font-size:clamp(42px,5.1vw,74px); font-weight:650; letter-spacing:-.055em; line-height:1.02; text-wrap:balance; }
.principle-quote blockquote footer { margin-top:30px; color:var(--muted); font-size:13px; line-height:1.5; }
.principle-quote cite { font-style:normal; }

.practitioner-layout { display:grid; grid-template-columns:minmax(310px,.85fr) minmax(0,1.15fr); gap:clamp(60px,9vw,130px); align-items:start; }
.practitioner-grid { display:grid; grid-template-columns:1fr 1fr; border-top:1px solid rgba(23,33,31,.14); }
.practitioner-grid article { min-height:220px; padding:28px; border-bottom:1px solid rgba(23,33,31,.14); }
.practitioner-grid article:nth-child(even){border-left:1px solid rgba(23,33,31,.14)}
.practitioner-grid span { color:var(--process-blue); font-size:13px; font-weight:800; }
.practitioner-grid p { margin:60px 0 0; color:var(--muted); font-size:14px; line-height:1.55; }

.evidence-context { position:relative; margin-inline:24px; padding-bottom:clamp(54px,6vw,88px); overflow:hidden; border-radius:30px; color:#fff; background:#0d2942; }
.evidence-context::before { background:radial-gradient(circle at 18% 26%,rgba(75,179,195,.16),transparent 30%),radial-gradient(circle at 82% 82%,rgba(20,108,148,.18),transparent 34%); }
.evidence-context .section-intro h2{color:#fff}.evidence-context .section-intro--split>p{color:rgba(255,255,255,.62)}
.evidence-route { margin-top:70px; display:grid; grid-template-columns:repeat(3,1fr); border-block:1px solid rgba(75,179,195,.28); }
.evidence-route article { min-height:300px; padding:32px; position:relative; }
.evidence-route article+article{border-left:1px solid rgba(75,179,195,.22)}
.evidence-route small { color:var(--cyan); font-size:9px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.evidence-route strong{margin-top:72px;display:block;font-size:22px}.evidence-route p{margin:16px 0 0;color:rgba(255,255,255,.6);font-size:14px;line-height:1.55}

.founder-section { padding-top:clamp(54px,6vw,88px); }
.founder-layout { display:grid; grid-template-columns:minmax(300px,.75fr) minmax(0,1.25fr); gap:clamp(60px,10vw,150px); align-items:start; }
.founder-portrait { width:100%; min-height:0; aspect-ratio:4/5; position:relative; display:grid; place-items:center; overflow:hidden; border-radius:28px; color:#fff; background:linear-gradient(145deg,#0c2237,#146c94); box-shadow:0 28px 80px rgba(16,42,67,.16); }
.founder-portrait::before { content:""; position:absolute; inset:0; background-image:linear-gradient(rgba(75,179,195,.12) 1px,transparent 1px),linear-gradient(90deg,rgba(75,179,195,.12) 1px,transparent 1px);background-size:64px 64px; }
.founder-portrait::after { content:""; width:280px;height:360px;position:absolute;bottom:-110px;border:1px solid rgba(255,255,255,.22);border-radius:50% 50% 0 0;box-shadow:0 0 0 40px rgba(75,179,195,.05); }
.founder-portrait span { position:relative; z-index:1; font-size:88px; font-weight:800; letter-spacing:-.08em; }
.founder-portrait small { position:absolute; bottom:26px; z-index:1; font-size:9px;font-weight:800;letter-spacing:.12em;text-transform:uppercase; }
.founder-content-map { margin-top:42px; display:grid; grid-template-columns:1fr 1fr; border-top:1px solid rgba(23,33,31,.14); }
.founder-content-map span { padding:18px 0; border-bottom:1px solid rgba(23,33,31,.14); color:var(--process-blue); font-size:11px; font-weight:750; }
.founder-content-map span:nth-child(even){padding-left:18px;border-left:1px solid rgba(23,33,31,.14)}

.final-cta { min-height:720px; position:relative; z-index:1; display:grid; place-items:center; overflow:hidden; color:#fff; background:linear-gradient(135deg,#0b2136 0%,#102f4a 54%,#123a56 100%); text-align:center; }
.final-cta::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 18% 30%,rgba(75,179,195,.2),transparent 30%),radial-gradient(circle at 84% 72%,rgba(20,108,148,.22),transparent 34%); }
.final-cta__grid { position:absolute; inset:0;background-image:linear-gradient(rgba(75,179,195,.16) 1px,transparent 1px),linear-gradient(90deg,rgba(75,179,195,.16) 1px,transparent 1px);background-size:72px 72px;mask-image:linear-gradient(to bottom,rgba(0,0,0,.82),rgba(0,0,0,.4)); }
.final-cta__inner { position:relative; display:flex; flex-direction:column; align-items:center; }
.final-cta__inner::before { content:""; position:absolute; inset:-86px -120px; z-index:-1; border-radius:50%; background:radial-gradient(ellipse at center,rgba(7,29,46,.78),rgba(7,29,46,.32) 56%,transparent 74%); }
.final-cta h2 { max-width:980px; color:#fff; }
.final-cta p:not(.eyebrow) { max-width:650px; margin:28px 0 0; color:rgba(255,255,255,.64); font-size:17px; line-height:1.65; }
.final-cta .button { min-width:min(100%,390px); margin-top:38px; padding-inline:32px; }

.site-footer { position:relative; z-index:1; padding:34px 0; background:#fff; }
.site-footer__inner { display:flex; align-items:center; justify-content:space-between; gap:30px; }
.hero-brand--footer { width:auto; margin:0; display:block; }
.hero-brand--footer strong { display:block; color:var(--blueprint); font-size:16px; letter-spacing:.16em; }
.hero-brand--footer span { margin-top:5px; display:block; color:var(--muted); font-size:8px; text-transform:uppercase; }
.site-footer p,.site-footer>a,.site-footer__inner>a:last-child { margin:0;color:var(--muted);font-size:10px; }

.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease var(--reveal-delay, 0ms), transform 700ms cubic-bezier(.2,.8,.2,1) var(--reveal-delay, 0ms);
}

.reveal-ready [data-reveal].is-visible { opacity:1; transform:none; }

@media (max-width: 760px) {
  .shell {
    width: min(100% - 36px, 540px);
  }

  .hero-scroll {
    height: 150vh;
    min-height: 1050px;
  }

  .hero-sticky {
    min-height: 620px;
  }

  .desktop-system {
    display: none;
  }

  .mobile-system {
    display: block;
  }

  .site-nav {
    height: 62px;
    min-height: 62px;
  }

  .site-nav__inner {
    width: calc(100% - 20px);
  }

  .site-nav__brand {
    width: clamp(58px, 19vw, 90px);
  }

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

  .site-nav__links a {
    padding-inline: 4px;
    font-size: clamp(10px, 3.2vw, 14px);
    font-weight: 600;
    letter-spacing: 0.02em;
  }

  .hero-copy {
    min-height: calc(100vh - 62px);
    padding: 56px 0 156px;
  }

  .hero-brand {
    width: 260px;
    max-width: 300px;
    margin-bottom: 19px;
  }

  .hero-brand strong {
    font-size: 19px;
  }

  .hero-brand__descriptor {
    font-size: 7.5px;
  }

  .hero-copy h1 {
    max-width: 540px;
    font-size: clamp(32px, 9.5vw, 52px);
    line-height: 0.95;
  }

  .hero-deck {
    max-width: 430px;
    margin-top: 22px;
    font-size: 15px;
  }

  .button {
    min-height: 50px;
    margin-top: 26px;
    padding-inline: 17px;
    font-size: 12px;
  }

  .scrubber {
    height: 36px;
    right: 18px;
    bottom: 22px;
    left: 18px;
    grid-template-columns: minmax(0, 1fr) 36px;
  }

  .scrubber label {
    display: none;
  }

  .experience-conveyor {
    height: 161px;
    margin-top: -15vh;
  }

  .logo-stream {
    top: 34px;
    animation-duration: 30s;
  }

  .conveyor-assembly {
    transform: translateY(-28px);
  }

  .logo-set {
    gap: 32px;
    padding-right: 32px;
  }

  .logo-load {
    width: 148px;
    height: 88px;
    padding: 12px 15px 21px;
  }

  .logo-load img {
    max-height: 40px;
  }

  .logo-load--tall img {
    max-width: 80px;
    max-height: 52px;
  }

  .page-flow {
    height: calc(100% - var(--flow-top));
    inset: var(--flow-top) 0 auto;
    opacity: 0.68;
  }

  .page-flow__rail--outer { stroke-width: 14; }
  .page-flow__rail--gap { stroke-width: 8; }

  .page-sequence > .content-section > .shell,
  .principle-quote > .shell {
    padding-inline: 0;
  }

  .content-section {
    padding: 78px 0;
  }

  .section-intro h2,
  .final-cta h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .section-intro--split,
  .change-layout,
  .principle-quote__layout,
  .practitioner-layout,
  .founder-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .section-intro--split > p {
    margin-top: 0;
  }

  .testimonial-grid,
  .situation-grid,
  .offer-grid,
  .evidence-route {
    grid-template-columns: 1fr;
  }

  .situation-grid article + article,
  .evidence-route article + article {
    border-top: 1px solid rgba(23, 33, 31, 0.14);
    border-left: 0;
  }

  .testimonial-card {
    min-height: 340px;
  }

  .testimonial-intro-card {
    padding: 34px 24px;
    border-radius: 24px;
  }

  .testimonial-machine {
    padding-top: 32px;
    margin-top: 0;
  }

  .testimonial-rig { display:none; }

  .mechanics-ready .testimonial-card {
    opacity: 1 !important;
    transform: none !important;
  }

  .recognition,
  .approach-section,
  .evidence-context {
    margin-inline: 10px;
    border-radius: 24px;
  }

  .situation-grid article {
    padding: 32px 0;
  }

  .change-system {
    padding: 20px;
  }

  .change-system__states {
    grid-template-columns: 1fr;
  }

  .route-map {
    --route-bleed: 12px;
    width: calc(100% + 24px);
    height: 138px;
    margin: 36px 0 10px -12px;
  }

  .route-map svg { height: 130px; }
  .route-map__dot { width:12px;height:12px; }
  .route-map__end { width:14px;height:14px; }
  .route-map__dot small { display:none; }

  .offer-card {
    grid-template-rows: auto auto auto auto;
  }

  .offer-card {
    min-height: 0;
  }

  .principle-quote {
    min-height: 0;
    margin: 54px 10px;
    padding: 54px 0 48px;
    border-radius: 24px;
  }

  .principle-portrait { width:100%;max-width:360px;margin-inline:auto; }
  .principle-portrait img { max-height:none;margin:0; }

  .principle-quote blockquote p {
    font-size: clamp(38px, 11vw, 54px);
  }

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

  .practitioner-grid article:nth-child(even) {
    border-left: 0;
  }

  .evidence-route {
    margin-top: 48px;
  }

  .evidence-route article {
    min-height: 240px;
    padding-inline: 0;
  }

  .evidence-route article + article {
    border-color: rgba(75, 179, 195, 0.22);
  }

  .founder-portrait {
    max-width: 420px;
    min-height: 0;
    margin-inline: auto;
  }

  .founder-content-map {
    grid-template-columns: 1fr;
  }

  .founder-content-map span:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .final-cta {
    min-height: 650px;
    padding: 80px 0;
  }

  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .hero-scroll {
    height: 110vh;
    min-height: 760px;
  }

  .scrubber {
    display: none;
  }

  .logo-stream {
    animation: none;
    transform: translateX(-4%);
  }

  .logo-set + .logo-set {
    display: none;
  }

  .page-flow__rail {
    stroke-dashoffset: 0 !important;
  }

  .route-map__end { background:var(--orange) !important; }

  .testimonial-rig { display:none; }
  .mechanics-ready .testimonial-card { opacity:1;transform:none; }

  .reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Signed-off particle hero — V12, 28 August 2026. */
.system-plan {
  display: none;
}

.hero-sticky {
  background:
    radial-gradient(circle at 50% 45%, rgba(20, 108, 148, 0.11), transparent 40%),
    linear-gradient(180deg, #102a43 0%, #0d263d 100%);
}

#particle-canvas,
.particle-ambient-grid,
.particle-field-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

#particle-canvas {
  z-index: 1;
  display: block;
}

.particle-ambient-grid {
  z-index: 0;
  background-image:
    linear-gradient(rgba(75, 179, 195, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 179, 195, 0.075) 1px, transparent 1px);
  background-size: clamp(72px, 8.333vw, 120px) clamp(72px, 10vh, 90px);
}

.particle-field-shade {
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 42% 48% at 50% 47%, rgba(8, 30, 48, 0.86), rgba(8, 30, 48, 0.3) 62%, transparent 82%),
    linear-gradient(90deg, rgba(8, 30, 48, 0.06), transparent 18%, transparent 82%, rgba(8, 30, 48, 0.06));
}

.particle-hero-brand {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: flex-start;
  padding-top: 34px;
  transform: translateX(-50%);
}

.particle-hero-brand a {
  display: block;
  width: min(194px, 18vw);
}

.particle-hero-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.particle-hero-copy {
  position: absolute;
  top: calc(48% - 32px);
  left: 50%;
  z-index: 3;
  width: min(760px, 56vw);
  margin: 0;
  text-align: center;
  transform: translate(-50%, -50%);
}

.particle-eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.particle-hero-copy h1 {
  margin: 0;
  color: var(--paper);
  font-size: clamp(38px, min(5.3vw, 9vh), 80px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 0.96;
  text-wrap: balance;
}

.particle-hero-copy h1 span {
  display: block;
}

.particle-hero-deck {
  width: 100%;
  max-width: 680px;
  margin: 20px auto 0;
  color: rgba(247, 250, 249, 0.78);
  font-size: var(--intro-copy-size);
  line-height: 1.5;
  text-wrap: balance;
}

@media (min-width: 761px) {
  .particle-hero-copy h1 span {
    white-space: nowrap;
  }
}

.particle-hero-cta {
  display: inline-flex;
  width: clamp(320px, 32vw, 390px);
  min-height: 54px;
  margin-top: 26px;
  align-items: center;
  justify-content: center;
  gap: 0.35em;
  padding: 12px 18px;
  border: 1px solid rgba(247, 250, 249, 0.16);
  border-radius: 6px;
  background: var(--orange);
  box-shadow: 0 0 24px rgba(242, 107, 58, 0.18);
  color: var(--paper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.045em;
  line-height: 1.15;
  text-transform: uppercase;
}

.particle-hero-cta span {
  white-space: nowrap;
}

.particle-inspection {
  position: absolute;
  right: 24px;
  bottom: 22px;
  z-index: 5;
  width: min(286px, calc(100% - 48px));
  padding: 13px 15px 11px;
  border: 1px solid rgba(75, 179, 195, 0.3);
  background: rgba(8, 30, 48, 0.78);
  backdrop-filter: blur(14px);
}

.particle-inspection__label {
  display: flex;
  justify-content: space-between;
  color: rgba(247, 250, 249, 0.75);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.particle-inspection output {
  color: var(--orange);
}

.particle-inspection input {
  width: 100%;
  margin: 10px 0 4px;
  accent-color: var(--orange);
}

.particle-inspection p {
  margin: 0;
  color: rgba(247, 250, 249, 0.46);
  font-size: 10px;
  letter-spacing: 0.03em;
}

.particle-fallback {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--blueprint) url("/draft/assets/hero/Hero-End-Desktop-v1.jpeg") center / cover no-repeat;
}

.particle-fallback p {
  position: absolute;
  left: 24px;
  bottom: 24px;
  margin: 0;
  padding: 8px 10px;
  background: rgba(8, 30, 48, 0.84);
  color: var(--paper);
  font-size: 12px;
}

.particle-hero-cta:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 5px;
}

@media (max-width: 760px) {
  .particle-hero-brand {
    padding-top: 22px;
  }

  .particle-hero-brand a {
    width: min(123px, 32.25vw);
  }

  .particle-hero-copy.shell {
    top: 46%;
    width: min(680px, 56vw);
  }

  .particle-hero-copy h1 {
    font-size: clamp(32px, 5.3vw, 40px);
  }

  .particle-hero-deck {
    font-size: clamp(12px, 1.65vw, 14px);
  }

  .particle-inspection {
    right: 18px;
    bottom: 16px;
    width: calc(100% - 36px);
  }
}

@media (max-width: 600px) {
  .particle-hero-copy.shell {
    top: calc(50% - 16px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    width: min(68vw, 420px);
    height: auto;
  }

  .particle-eyebrow {
    margin: 0 0 12px;
    font-size: clamp(9px, 2.55vw, 11px);
  }

  .particle-hero-copy h1 {
    font-size: clamp(36px, 11vw, 46px);
    line-height: 0.9;
  }

  .particle-hero-deck {
    width: min(78%, 224px);
    margin: 16px 0 0;
    font-size: clamp(14px, 3.9vw, 16px);
    line-height: 1.4;
  }

  .particle-hero-cta {
    width: min(82vw, 320px);
    min-height: 50px;
    margin-top: 20px;
    padding: 11px 14px;
    font-size: clamp(11px, 2.9vw, 13px);
  }

  .particle-fallback {
    background-image: url("/draft/assets/hero/Hero-End-Mobile-v1.jpeg");
  }
}

@media (prefers-reduced-motion: reduce) {
  .particle-inspection {
    display: none;
  }
}

/* Approved content structure — September 2026. */

.approach-section .section-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.66);
}

.offer-grid {
  margin-top: clamp(56px, 7vw, 88px);
  grid-template-columns: repeat(3, 1fr);
}

.offer-card {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 44px);
}

.offer-card h3 {
  min-height: 2em;
  margin-top: 44px;
  font-size: clamp(28px, 2.65vw, 40px);
}

.offer-card p {
  font-size: 14px;
  line-height: 1.55;
}

.offer-card .offer-card__promise {
  margin-top: 24px;
  color: var(--white);
  font-size: clamp(17px, 1.45vw, 21px);
  font-weight: 720;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.offer-card ul {
  width: 100%;
  margin-top: auto;
}

.framework-intro {
  max-width: 900px;
  margin-top: clamp(110px, 13vw, 180px);
}

.framework-intro h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 5.1vw, 70px);
  font-weight: 660;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.framework-intro > p:not(.eyebrow) {
  max-width: 720px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.65;
}

.route-map__base {
  stroke: rgba(75, 179, 195, 0.2);
  stroke-width: 2;
}

.framework-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid rgba(75, 179, 195, 0.26);
}

.framework-grid article {
  min-height: 168px;
  padding: 26px 24px;
  border-bottom: 1px solid rgba(75, 179, 195, 0.18);
}

.framework-grid article:not(:nth-child(4n + 1)) {
  border-left: 1px solid rgba(75, 179, 195, 0.18);
}

.framework-grid strong {
  color: var(--white);
  font-size: 16px;
}

.framework-grid p {
  margin: 38px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.5;
}

.cases-section {
  padding: clamp(92px, 10vw, 148px) 0 clamp(76px, 9vw, 128px);
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid rgba(75, 179, 195, 0.28);
}

.case-study-grid article {
  min-height: 570px;
  display: flex;
  flex-direction: column;
  padding: clamp(30px, 3.4vw, 48px);
}

.case-study-grid article + article {
  border-left: 1px solid rgba(75, 179, 195, 0.24);
}

.case-study-grid h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 3.4vw, 50px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.case-study-grid p {
  margin: 42px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.68;
}

.case-study-grid > article > strong {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(75, 179, 195, 0.24);
  color: var(--cyan);
  font-size: 16px;
  line-height: 1.35;
}

.case-study-grid > article > strong span {
  margin-top: 7px;
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.cases-section .testimonial-machine {
  margin-top: 34px;
}

.cases-section .testimonial-arm::before,
.cases-section .testimonial-arm i {
  background: #0d2942;
}

.testimonial-name-card {
  min-height: 178px;
  justify-content: flex-end;
  padding: 28px;
  color: var(--blueprint);
}

.testimonial-name-card > strong {
  display: block;
  font-size: clamp(20px, 2vw, 28px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.testimonial-name-card > small {
  min-height: 2.7em;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.founder-heading {
  max-width: 1040px;
}

.founder-layout--content {
  margin-top: clamp(58px, 7vw, 92px);
  align-items: center;
}

.founder-portrait--photo {
  margin: 0;
  display: block;
  background: var(--blueprint);
}

.founder-portrait--photo::after {
  display: none;
}

.founder-portrait--photo::before {
  z-index: 1;
  background-image:
    linear-gradient(rgba(75, 179, 195, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 179, 195, 0.08) 1px, transparent 1px);
  background-size: 64px 64px;
  mix-blend-mode: screen;
}

.founder-portrait--photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.founder-bio h3 {
  margin: 0;
  color: var(--blueprint);
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.05em;
  line-height: 1;
}

.founder-bio p {
  max-width: 660px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.principle-value {
  max-width: 680px;
  margin: 38px 0 0;
  padding-top: 30px;
  border-top: 1px solid rgba(20, 108, 148, 0.16);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.68;
}

.faq-section {
  padding-block: clamp(108px, 12vw, 180px);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: clamp(60px, 9vw, 130px);
}

.faq-list {
  border-top: 1px solid rgba(23, 33, 31, 0.16);
}

.faq-list details {
  border-bottom: 1px solid rgba(23, 33, 31, 0.16);
}

.faq-list summary {
  position: relative;
  padding: 26px 46px 26px 0;
  color: var(--blueprint);
  cursor: pointer;
  font-size: 17px;
  font-weight: 760;
  line-height: 1.38;
  list-style: none;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 23px;
  right: 4px;
  color: var(--process-blue);
  font-size: 24px;
  font-weight: 400;
  transition: transform 180ms ease;
}

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

.faq-list p {
  margin: -5px 46px 26px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.final-cta {
  min-height: 650px;
}

@media (max-width: 1100px) {
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card {
    min-height: 0;
  }

  .offer-card h3 {
    min-height: 0;
  }

  .offer-card ul {
    margin-top: 36px;
  }
}

@media (max-width: 900px) {
  .case-study-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .case-study-grid article {
    min-height: 0;
  }

  .case-study-grid article + article {
    border-top: 1px solid rgba(23, 33, 31, 0.14);
    border-left: 0;
  }

  .case-study-grid article + article {
    border-top-color: rgba(75, 179, 195, 0.24);
  }

  .case-study-grid > article > strong {
    margin-top: 48px;
  }

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

  .framework-grid article:not(:nth-child(4n + 1)) {
    border-left: 0;
  }

  .framework-grid article:nth-child(even) {
    border-left: 1px solid rgba(75, 179, 195, 0.18);
  }

  .faq-layout {
    gap: 54px;
  }
}

@media (max-width: 760px) {

  .offer-grid {
    margin-top: 46px;
  }

  .framework-intro {
    margin-top: 100px;
  }

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

  .framework-grid article,
  .framework-grid article:nth-child(even) {
    min-height: 0;
    padding-inline: 0;
    border-left: 0;
  }

  .framework-grid p {
    margin-top: 20px;
  }

  .case-study-grid article {
    padding-inline: 0;
  }

  .testimonial-name-card {
    min-height: 148px;
  }

  .founder-heading {
    padding-inline: 0;
  }

  .founder-bio p {
    font-size: 16px;
  }

  .faq-section {
    padding-block: 92px;
  }
}

/* V2 typography comparison: Montserrat with IBM Plex Sans. */
body,
p,
li,
summary,
small {
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-weight: 400;
}

h2,
h3,
.section-intro h2,
.framework-intro h2,
.founder-bio h3,
.case-study-grid h3 {
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-weight: 600;
}

h1,
.particle-hero-copy h1,
.button,
.particle-hero-cta {
  font-family: "Montserrat", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
}

.particle-hero-brand,
.prototype-label,
.offer-card__label,
.route-map__dot small,
.framework-number,
.framework-grid strong,
.testimonial-name-card > strong,
.case-study-grid > article > strong,
.particle-inspection,
.site-footer {
  font-family: "IBM Plex Sans", Arial, sans-serif;
  font-weight: 500;
}

/* Annotation refinements — September 2026. */
.particle-hero-cta {
  font-size: 15px;
  font-weight: 900;
}

.logo-stream {
  top: 34px;
}

.conveyor-assembly {
  transform: translateY(-14px);
}

.metric-operator {
  margin-left: 0.09em;
  color: var(--orange);
  font-size: 1em;
  font-style: normal;
  letter-spacing: -0.08em;
}

.approach-section {
  padding-bottom: clamp(82px, 9vw, 126px);
}

.approach-section .offer-grid {
  width: calc(100% + (var(--section-inset) * 2));
  margin-left: calc(-1 * var(--section-inset));
}

.offer-card {
  min-height: 500px;
}

.offer-card:nth-child(1) {
  background: rgba(7, 28, 45, 0.64);
}

.offer-card:nth-child(2) {
  background: rgba(20, 108, 148, 0.22);
}

.offer-card:nth-child(3) {
  background: rgba(52, 100, 113, 0.22);
}

.offer-card__label {
  min-height: 2.8em;
}

.offer-card h3 {
  min-height: 2em;
}

.offer-card .offer-card__promise {
  min-height: 5em;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
}

.offer-card ul {
  margin-top: auto;
}

.framework-section {
  background: var(--page-background);
}

.framework-intro {
  max-width: 900px;
  margin-top: 0;
}

.framework-intro h2 {
  margin: 0;
  color: var(--blueprint);
  font-size: clamp(40px, 5.1vw, 70px);
  font-weight: 660;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.framework-intro > p:not(.eyebrow) {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

.route-map {
  --route-top-space: 46px;
  width: 100%;
  height: 222px;
  margin: clamp(46px, 5vw, 68px) 0 26px;
  padding-top: var(--route-top-space);
  overflow: hidden;
  border-radius: 22px;
  background: #102f4a;
  box-shadow: 0 20px 54px rgba(16, 42, 67, 0.1);
}

.route-map__dot {
  top: calc(var(--y) + var(--route-top-space));
}

.route-map__dot small {
  display: flex;
  align-items: center;
  gap: 0.55em;
}

.route-map__dot small b {
  color: var(--orange);
  font-size: 0.92em;
  font-weight: 850;
}

.framework-grid {
  margin-top: 0;
  border-color: rgba(16, 42, 67, 0.18);
}

.framework-grid article {
  border-color: rgba(16, 42, 67, 0.12);
}

.framework-grid article:not(:nth-child(4n + 1)) {
  border-left-color: rgba(16, 42, 67, 0.12);
}

.framework-number {
  margin-right: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.framework-grid strong {
  color: var(--blueprint);
}

.framework-grid p {
  color: var(--muted);
}

.testimonials-section {
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(86px, 9vw, 132px);
}

.testimonials-section .testimonial-machine {
  margin-top: 0;
}

.cases-section {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .approach-section .offer-grid {
    width: 100%;
    margin-left: 0;
  }

  .offer-card {
    min-height: 0;
  }

  .offer-card__label,
  .offer-card h3,
  .offer-card .offer-card__promise {
    min-height: 0;
  }
}

@media (max-width: 900px) {
  .framework-grid article:nth-child(even) {
    border-left-color: rgba(16, 42, 67, 0.12);
  }
}

@media (max-width: 760px) {
  .particle-hero-cta {
    font-size: 14px;
  }

  .logo-stream {
    top: 24px;
  }

  .conveyor-assembly {
    transform: translateY(-38px);
  }

  .approach-section .offer-grid {
    width: 100%;
    margin-left: 0;
  }

  .route-map {
    --route-top-space: 38px;
    width: calc(100% + 24px);
    height: 184px;
    margin: 38px 0 18px -12px;
  }

  .route-map__dot small {
    display: flex;
  }

  .route-map__dot small span {
    display: none;
  }

  .framework-grid article,
  .framework-grid article:nth-child(even) {
    padding-inline: 18px;
  }
}

/* Browser review refinements — 3 September 2026. */
.particle-hero-brand {
  justify-content: center;
}

.approach-section .offer-grid {
  margin-top: clamp(38px, 4.5vw, 58px);
}

.offer-card {
  min-height: 0;
  padding: clamp(28px, 2.7vw, 38px);
}

.offer-card__label {
  min-height: 0;
}

.offer-card h3 {
  min-height: 0;
  margin-top: 28px;
}

.offer-card .offer-card__promise {
  min-height: 0;
  margin-top: 16px;
}

.offer-card ul {
  margin-top: 32px;
}

.framework-section {
  padding-bottom: clamp(64px, 7vw, 96px);
  overflow: hidden;
}

.route-map {
  --route-top-space: 46px;
  width: 100vw;
  height: 222px;
  margin: clamp(46px, 5vw, 68px) 0 0 calc(50% - 50vw);
  padding: var(--route-top-space) 0 0;
  overflow-x: auto;
  overflow-y: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  scrollbar-color: rgba(16, 42, 67, 0.25) transparent;
  scrollbar-width: thin;
}

.route-map__track {
  width: 100%;
  min-width: 920px;
  height: 156px;
  position: relative;
}

.route-map svg {
  height: 130px;
}

.route-map__base,
.route-map__progress {
  stroke-width: 7;
}

.route-map__base {
  stroke: rgba(16, 42, 67, 0.14);
}

.route-map__progress {
  stroke: var(--blueprint);
}

.route-map__dot,
.route-map__end {
  width: 24px;
  height: 24px;
  top: var(--y);
  z-index: 1;
  border-width: 3px;
  background: var(--page-background);
  transition: background-color 220ms ease, box-shadow 280ms ease, transform 220ms ease;
}

.route-map__dot.is-hit {
  background: var(--cyan);
  box-shadow: 0 0 0 7px rgba(75, 179, 195, 0.15), 0 0 28px 5px rgba(75, 179, 195, 0.58);
}

.route-map__end {
  border-color: var(--orange);
}

.route-map__end.is-hit,
.route-map.is-complete .route-map__end {
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(242, 107, 58, 0.15), 0 0 28px 5px rgba(242, 107, 58, 0.58);
}

.route-map__dot small {
  top: 30px;
  display: flex;
  align-items: center;
  gap: 0.55em;
  color: var(--blueprint);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.055em;
}

.route-map__dot--label-above small {
  bottom: 30px;
}

.principle-quote__layout {
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  align-items: center;
  gap: clamp(48px, 7vw, 108px);
}

.principle-portrait img {
  object-position: center center;
}

.principle-quote blockquote p {
  font-size: clamp(28px, 3.8vw, 56px);
  line-height: 0.98;
}

.principle-quote blockquote p > span {
  display: block;
  text-wrap: balance;
}

.principle-quote blockquote p > span + span {
  margin-top: 0.2em;
}

.founder-heading {
  overflow: hidden;
}

.founder-heading__line {
  display: block;
  transition: opacity 700ms ease, transform 850ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-ready .founder-heading:not(.is-visible) .founder-heading__line--left {
  opacity: 0;
  transform: translateX(-72px);
}

.reveal-ready .founder-heading:not(.is-visible) .founder-heading__line--right {
  opacity: 0;
  transform: translateX(72px);
}

.founder-layout--content {
  margin-top: clamp(34px, 4vw, 52px);
  padding: clamp(22px, 3vw, 42px);
  position: relative;
  z-index: 3;
  gap: clamp(36px, 6vw, 82px);
  border: 1px solid rgba(20, 108, 148, 0.1);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(16, 42, 67, 0.09);
}

.founder-testimonials {
  margin-top: -30px;
  padding: 0 0 clamp(82px, 9vw, 126px);
  position: relative;
  z-index: 1;
}

.founder-testimonials .testimonial-machine {
  margin-top: 0;
  padding-top: 118px;
}

.founder-testimonials .testimonial-rig {
  height: 126px;
}

.cases-section {
  padding: clamp(82px, 9vw, 132px) 0 clamp(76px, 9vw, 126px);
}

.cases-section h2 {
  max-width: 760px;
  margin: 0 0 clamp(38px, 5vw, 66px);
  color: #fff;
  font-size: clamp(40px, 5.1vw, 70px);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.case-study-grid {
  align-items: start;
  gap: 18px;
  border: 0;
}

.case-study-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(75, 179, 195, 0.68);
  border-radius: 20px;
  background: rgba(20, 108, 148, 0.22);
  box-shadow: inset 0 0 26px rgba(75, 179, 195, 0.05), 0 0 18px rgba(75, 179, 195, 0.1);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.case-study-card:hover,
.case-study-card:focus-within {
  border-color: var(--cyan);
  background: rgba(20, 108, 148, 0.3);
  box-shadow: inset 0 0 34px rgba(75, 179, 195, 0.08), 0 0 28px rgba(75, 179, 195, 0.26);
  transform: translateY(-6px) scale(1.012);
}

.case-study-card summary {
  min-height: 290px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3vw, 38px);
  cursor: pointer;
  list-style: none;
}

.case-study-card summary::-webkit-details-marker {
  display: none;
}

.case-study-card summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: -3px;
}

.case-study-card summary::after {
  content: "↘";
  width: 38px;
  height: 38px;
  position: absolute;
  right: clamp(24px, 2.8vw, 36px);
  bottom: clamp(24px, 2.8vw, 34px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(75, 179, 195, 0.7);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 19px;
  transition: transform 220ms ease, background-color 220ms ease, color 220ms ease;
}

.case-study-card[open] summary::after {
  background: var(--cyan);
  color: var(--blueprint);
  transform: rotate(180deg);
}

.case-study-card__identity {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.case-study-card__identity img {
  width: min(190px, 78%);
  height: 96px;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.case-study-card__identity small {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-study-card__prompt {
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-study-card__details {
  padding: 0 clamp(26px, 3vw, 38px) clamp(30px, 3.5vw, 44px);
}

.case-study-card__details p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.68;
}

.case-study-card__details strong {
  margin-top: 34px;
  padding-top: 22px;
  display: block;
  border-top: 1px solid rgba(75, 179, 195, 0.32);
  color: var(--cyan);
  font-size: 16px;
  line-height: 1.35;
}

.case-study-card__details strong span {
  margin-top: 7px;
  display: block;
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-brand--footer {
  width: min(258px, 42vw);
}

.hero-brand--footer img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .route-map__track {
    min-width: 840px;
  }

  .case-study-grid {
    gap: 16px;
  }

  .case-study-card summary {
    min-height: 230px;
  }

  .case-study-card:hover,
  .case-study-card:focus-within {
    transform: translateY(-3px);
  }
}

@media (max-width: 760px) {
  .particle-hero-brand {
    justify-content: center;
  }

  .offer-card {
    padding: 30px 24px;
  }

  .route-map {
    --route-top-space: 42px;
    width: 100vw;
    height: 206px;
    margin: 38px 0 0 calc(50% - 50vw);
    padding-top: var(--route-top-space);
  }

  .route-map__track {
    min-width: 820px;
  }

  .route-map__dot,
  .route-map__end {
    width: 22px;
    height: 22px;
  }

  .route-map__dot small,
  .route-map__dot small span {
    display: flex;
    font-size: 10px;
  }

  .principle-quote__layout {
    grid-template-columns: 1fr;
    align-items: center;
  }

  .principle-quote blockquote p {
    font-size: clamp(28px, 7.6vw, 38px);
  }

  .founder-layout--content {
    padding: 20px;
    gap: 34px;
  }

  .founder-testimonials {
    margin-top: 18px;
    padding-bottom: 82px;
  }

  .founder-testimonials .testimonial-machine {
    padding-top: 0;
  }

  .cases-section {
    margin-inline: 10px;
    border-radius: 24px;
  }

  .cases-section h2 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .case-study-card summary {
    min-height: 220px;
  }

  .site-footer__inner {
    align-items: flex-start;
  }

  .hero-brand--footer {
    width: min(238px, 74vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .route-map__dot {
    background: var(--cyan);
    box-shadow: none;
  }

  .route-map__end {
    background: var(--orange) !important;
  }

  .founder-heading__line,
  .case-study-card {
    transition: none;
  }
}

/* Selected review directions — 3 September 2026. */
.page-sequence section h2 {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  text-wrap: balance;
}

.founder-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.founder-section > .shell {
  position: relative;
  z-index: 1;
}

.founder-particles {
  width: 100%;
  height: clamp(560px, 58vw, 760px);
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  display: block;
  pointer-events: none;
}

.founder-heading {
  position: relative;
  z-index: 1;
}

.cases-section h2 {
  margin-right: auto;
  margin-left: auto;
}

@media (max-width: 760px) {

  .founder-particles {
    height: 640px;
  }
}

@media (prefers-reduced-motion: reduce) {
}

/* Browser review refinements — 3 September 2026, pass two. */
.page-sequence section h2 + p {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  text-wrap: pretty;
}

#faq-title {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
  text-wrap: balance;
}

.approach-section {
  padding-bottom: 32px;
}

.offer-card:nth-child(2) {
  background: rgba(52, 100, 113, 0.22);
}

.offer-card:nth-child(3) {
  background: rgba(20, 108, 148, 0.22);
}

.route-map__dot small {
  top: 32px;
  bottom: auto;
  justify-content: center;
}

.route-map__dot--label-above small {
  top: auto;
  bottom: 32px;
}

/* Desktop label stacks keep the compact mobile wording unchanged. */
.route-map__dot small .route-map__label-stack {
  display: none;
}

@media (min-width: 761px) {
  .route-map__dot small {
    flex-direction: column;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
  }

  .route-map__dot small b {
    font-size: 1.84em;
    font-weight: 600;
    line-height: 1;
  }

  .route-map__dot small .route-map__label-short {
    display: none;
  }

  .route-map__dot small .route-map__label-stack {
    display: grid;
    justify-items: center;
  }
}

.principle-quote {
  padding-block: clamp(38px, 4vw, 54px);
}

.principle-quote > .shell {
  padding-inline: clamp(32px, 5vw, 64px);
}

.principle-quote__layout {
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(38px, 5vw, 72px);
}

.principle-portrait {
  width: min(100%, 300px);
  justify-self: center;
  border-radius: 22px;
}

.principle-quote blockquote footer {
  margin-top: 18px;
  color: var(--process-blue);
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 600;
}

.principle-value {
  margin-top: 24px;
  padding-top: 22px;
}

.founder-section {
  padding-bottom: clamp(28px, 4vw, 52px);
}

.founder-testimonials {
  padding-bottom: 0;
}

.founder-testimonials .testimonial-machine {
  padding-top: 76px;
}

.founder-testimonials .testimonial-rig {
  height: 76px;
}

@media (max-width: 1100px) {
  .approach-section {
    padding-bottom: clamp(58px, 9.8vw, 98px);
  }
}

@media (max-width: 760px) {
  .approach-section {
    padding-bottom: 18px;
  }

  .principle-quote > .shell {
    padding-inline: 18px;
  }

  .principle-quote__layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .principle-portrait {
    width: min(100%, 280px);
  }

  .founder-testimonials .testimonial-machine {
    padding-top: 0;
  }

  .founder-heading::before {
    content: "";
    position: absolute;
    inset: -32px -18px;
    z-index: -1;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(238, 245, 248, 0.96) 0 46%, rgba(238, 245, 248, 0.8) 64%, transparent 82%);
    pointer-events: none;
  }
}

@media (prefers-reduced-motion: reduce) {
}

/* Browser review refinements — 3 September 2026, pass three. */
.particle-hero-copy {
  top: calc(48% + 6px);
}

.particle-hero-copy h1,
.particle-hero-copy h1 span {
  white-space: nowrap;
}

.section-intro,
.framework-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-intro > p:not(.eyebrow),
.framework-intro > p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.faq-layout .section-intro {
  align-items: flex-start;
  text-align: left;
}

.framework-section {
  padding-bottom: clamp(24px, 3vw, 38px);
}

.route-map {
  --route-top-space: 40px;
  height: 174px;
  margin-top: clamp(34px, 4vw, 52px);
}

.route-map__track {
  min-width: 920px;
  height: 122px;
}

.route-map svg {
  height: 110px;
}

.principle-quote {
  margin-top: clamp(28px, 3vw, 42px);
  margin-bottom: clamp(24px, 2.8vw, 38px);
  padding-bottom: clamp(32px, 3.4vw, 44px);
}

.principle-quote blockquote p > span + span {
  margin-top: 0;
}

.principle-quote blockquote p > .principle-quote__sentence-two {
  margin-top: 0.2em;
}

.founder-section {
  padding-top: clamp(150px, 13vw, 190px);
}

.founder-particles {
  height: 100%;
  inset: 0;
}

.cases-section {
  padding-top: clamp(48px, 5vw, 72px);
  padding-bottom: clamp(42px, 5vw, 68px);
}

.case-study-card summary {
  min-height: 280px;
}

.case-study-card__identity {
  display: grid;
  grid-template-rows: 1fr auto;
  justify-items: center;
  text-align: center;
}

.case-study-card__identity img {
  align-self: center;
  object-position: center;
}

.case-study-card__identity small {
  text-align: center;
}

.case-study-card__prompt {
  height: 38px;
  display: flex;
  align-items: center;
}

.hero-brand--footer {
  width: min(181px, 29.4vw);
}

@media (max-width: 760px) {
  .particle-hero-copy.shell {
    top: calc(46% + 20px);
    width: min(90vw, 520px);
  }

  .route-map {
    --route-top-space: 38px;
    height: 168px;
    margin-top: 30px;
  }

  .route-map__track {
    min-width: 820px;
    height: 118px;
  }

  .founder-section {
    padding-top: 118px;
  }

  .cases-section {
    padding-top: 44px;
    padding-bottom: 38px;
  }

  .hero-brand--footer {
    width: min(167px, 52vw);
  }
}

@media (max-width: 600px) {
  .particle-hero-copy.shell {
    top: calc(50% + 4px);
    width: min(90vw, 520px);
  }

  .particle-hero-copy h1 {
    font-size: clamp(28px, 9vw, 40px);
  }
}

@media (prefers-reduced-motion: reduce) {
}

/* Browser review refinements — 3 September 2026, pass four. */
.particle-hero-cta {
  width: min(390px, 100%);
  padding-inline: clamp(18px, 2.2vw, 28px);
  font-size: clamp(12px, 1.22vw, 15px);
}

.approach-section {
  padding-top: clamp(64px, 6vw, 88px);
}

.route-map svg {
  height: 120px;
}

.principle-quote {
  width: min(66vw, 1040px);
  margin-right: auto;
  margin-left: auto;
}

.principle-quote > .shell {
  padding-inline: clamp(24px, 3vw, 36px);
}

.principle-quote__layout {
  grid-template-columns: minmax(190px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(26px, 3vw, 42px);
}

.principle-portrait {
  width: min(100%, 240px);
}

.principle-quote blockquote p {
  font-size: clamp(28px, 2.7vw, 38px);
}

@media (max-width: 900px) {
  .principle-quote {
    width: calc(100% - 32px);
  }
}

@media (max-width: 760px) {
  .particle-hero-cta {
    width: min(100%, 390px);
    padding-inline: clamp(14px, 5vw, 22px);
    font-size: clamp(10.5px, 3.35vw, 13px);
  }

  .approach-section {
    padding-top: 52px;
  }

  .principle-quote {
    width: calc(100% - 20px);
  }

  .principle-quote > .shell {
    padding-inline: 18px;
  }

  .principle-quote__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .principle-portrait {
    width: min(100%, 220px);
  }

  .principle-quote blockquote p {
    font-size: clamp(22px, 6.5vw, 28px);
  }
}

@media (prefers-reduced-motion: reduce) {
}

/* Desktop review refinements — 3 September 2026, pass six. */
.case-study-card__topics {
  display: none;
}

@media (min-width: 1101px) {
  .approach-section {
    padding-top: 58px;
  }

  .principle-quote {
    padding-block: 34px;
  }

  .principle-quote > .shell {
    padding-inline: 36px;
  }

  body .principle-quote__layout {
    grid-template-columns: minmax(240px, 0.64fr) minmax(0, 1.36fr);
    align-items: stretch;
    gap: 44px;
  }

  body .principle-portrait {
    width: 100%;
    height: 100%;
    min-height: 0;
    position: relative;
    justify-self: stretch;
    border-radius: 20px;
  }

  body .principle-portrait img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    object-position: center 42%;
  }

  .principle-quote blockquote {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    column-gap: 24px;
  }

  .principle-quote blockquote footer {
    margin: 0 0 0.12em;
    justify-self: end;
    white-space: nowrap;
    text-align: right;
  }

  .principle-value {
    margin-top: 18px;
    padding-top: 18px;
  }

  .founder-particles {
    filter:
      drop-shadow(0 0 3px rgba(16, 47, 74, 0.28))
      drop-shadow(0 0 7px rgba(242, 107, 58, 0.12));
  }

  .founder-testimonials .testimonial-arm {
    width: calc(100% - 48px);
    max-width: 250px;
    overflow: visible;
    border: 0;
    background: none;
  }

  .founder-testimonials .testimonial-arm::before {
    width: 66%;
    height: auto;
    top: 0;
    bottom: 14px;
    left: 17%;
    border: 2px solid rgba(20, 108, 148, 0.56);
    border-bottom: 0;
    border-radius: 0;
    background: linear-gradient(90deg, rgba(16, 42, 67, 0.92), rgba(20, 108, 148, 0.82), rgba(16, 42, 67, 0.92));
    box-shadow: 0 6px 16px rgba(16, 42, 67, 0.12);
    transform: none;
  }

  .founder-testimonials .testimonial-arm i {
    width: 100%;
    height: 16px;
    border: 2px solid rgba(20, 108, 148, 0.62);
    border-radius: 7px;
    background: #102f4a;
    box-shadow: 0 6px 0 rgba(75, 179, 195, 0.11), 0 10px 22px rgba(16, 42, 67, 0.14);
  }

  .case-study-card summary {
    min-height: 326px;
    padding: 24px 26px;
  }

  .case-study-card__identity {
    flex: none;
    justify-content: center;
    min-height: 76px;
  }

  .case-study-card__identity img {
    width: min(176px, 76%);
    height: 64px;
  }

  .case-study-card__topics {
    margin: 8px 0 0;
    padding: 0;
    display: block;
    list-style: none;
    border-top: 1px solid rgba(200, 214, 220, 0.3);
  }

  .case-study-card__topics li {
    padding: 9px 0;
    border-bottom: 1px solid rgba(200, 214, 220, 0.3);
    color: var(--cyan);
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
  }

  .case-study-card__prompt {
    height: 38px;
    margin-top: auto;
    display: flex;
    align-items: center;
  }

  .case-study-card summary::after {
    right: 26px;
    bottom: 24px;
  }
}

@media (min-width: 1101px) and (prefers-reduced-motion: reduce) {
}

/* Browser review refinements — 3 September 2026, pass five. */

.framework-intro {
  width: min(100%, 900px);
  margin-right: auto;
  margin-left: auto;
}

.route-map svg {
  height: 130px;
}

.principle-quote {
  width: min(80vw, 1180px);
}

.principle-quote__layout {
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
}

.principle-portrait {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  align-self: stretch;
}

.principle-portrait img {
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 900px) {
  .principle-quote {
    width: calc(100% - 32px);
  }
}

@media (max-width: 760px) {

  .principle-quote {
    width: calc(100% - 20px);
  }

  .principle-quote__layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .principle-portrait {
    width: min(100%, 220px);
    height: auto;
    aspect-ratio: 4 / 5;
    align-self: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
}

/* Desktop review refinements — 4 September 2026. */
@media (min-width: 1101px) {
  .particle-hero-brand::before {
    content: "";
    width: min(208px, 19vw);
    height: 30px;
    position: absolute;
    top: 31px;
    left: 50%;
    z-index: 0;
    border-radius: 50%;
    background: rgba(8, 30, 48, 0.76);
    filter: blur(25px);
    transform: translateX(-50%);
    pointer-events: none;
  }

  .particle-hero-brand a {
    position: relative;
    z-index: 1;
  }

  .faq-section {
    padding-block: clamp(96px, 10vw, 150px);
  }

  .faq-layout {
    align-items: start;
  }

  .framework-section {
    padding-top: clamp(67px, 7vw, 109px);
  }

  .approach-section {
    padding-bottom: 72px;
  }

  body .principle-quote__layout {
    grid-template-columns: auto minmax(0, 1fr);
    align-items: start;
    gap: clamp(48px, 5vw, 70px);
  }

  .principle-quote {
    width: min(76vw, 1015px);
    margin-inline: auto;
    padding-block: clamp(46px, 4vw, 56px);
    border-radius: clamp(38px, 4vw, 52px);
  }

  .principle-quote > .shell {
    padding-left: clamp(48px, 4.4vw, 60px);
    padding-right: clamp(22px, 2.3vw, 30px);
  }

  body .principle-portrait {
    width: clamp(250px, 21vw, 288px);
    height: auto;
    aspect-ratio: 0.72;
    align-self: start;
    border-radius: 22px;
  }

  .principle-quote blockquote {
    display: block;
  }

  .principle-quote blockquote footer {
    margin: 22px 0 0;
    justify-self: auto;
    text-align: left;
  }

  .founder-layout--content {
    padding-right: clamp(56px, 5vw, 68px);
  }

  .founder-layout--content .founder-portrait--photo {
    left: clamp(16px, 1.4vw, 20px);
  }

  .principle-quote blockquote p {
    font-size: clamp(42px, 3.7vw, 52px);
  }

  .principle-quote blockquote p > span {
    white-space: nowrap;
  }

  .principle-value {
    max-width: 540px;
    padding-right: 0;
  }

  .case-study-card__prompt {
    justify-content: center;
    text-align: center;
  }

  .case-study-card summary {
    min-height: 285px;
  }

  .case-study-card--award .case-study-card__identity img {
    width: 150px;
    height: 64px;
  }

  .case-study-card--jipm .case-study-card__identity img,
  .case-study-card--wef .case-study-card__identity img {
    width: 150px;
    height: 64px;
  }

  .case-study-card__identity img {
    transform-origin: center;
  }

  .case-study-card--danone .case-study-card__identity img,
  .case-study-card--barry .case-study-card__identity img {
    scale: 1.2;
  }

  .case-study-card--mondelez .case-study-card__identity img {
    scale: 1.4;
  }

  .case-study-card--award .case-study-card__identity img {
    scale: 0.9;
  }

  .case-study-card--jipm .case-study-card__identity img {
    scale: 0.7;
  }

  .case-study-card--wef .case-study-card__identity img {
    scale: 0.85;
  }

  .cases-section {
    padding-bottom: 92px;
  }
}

/* Section introduction typography — 7 September 2026. */
.approach-reassurance {
  max-width: 760px;
  margin: 32px auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  text-wrap: pretty;
}

@media (min-width: 761px) {
  [data-heading-copy] > p[data-heading-deck] {
    width: var(--heading-deck-width, 80%);
    max-width: 100%;
    margin-inline: auto;
    font-size: var(--intro-copy-size);
    line-height: 1.5;
  }

  .route-map {
    --route-top-space: 80px;
    height: 280px;
  }
}

/* Wide-screen proportion refinements — 7 September 2026. */
@media (min-width: 761px) {
  .pressure-housing__inner {
    width: 100%;
  }

  .pressure-housing h2 {
    font-size: clamp(44px, 5vw, 70px);
  }

  .pressure-housing h2 > span {
    white-space: nowrap;
  }
}

@media (min-width: 1101px) {
  .offer-card h3 {
    font-size: clamp(26px, 2.05vw, 32px);
    white-space: nowrap;
  }

  .principle-quote > .shell {
    padding-right: clamp(46px, 4vw, 60px);
  }

  .principle-quote blockquote p {
    font-size: clamp(38px, 3.1vw, 46px);
  }

  .founder-layout--content {
    padding-top: clamp(30px, 3.5vw, 50px);
    padding-bottom: clamp(30px, 3.5vw, 50px);
  }
}
