:root {
  --yh-ink: #15181b;
  --yh-ink-soft: #24292e;
  --yh-paper: #f5f2ea;
  --yh-paper-deep: #ebe7dc;
  --yh-white: #fff;
  --yh-signal: #f6e32e;
  --yh-mist: #d8d6ce;
  --yh-slate: #56606a;
  --yh-aqua: #9ee8de;
  --yh-cobalt: #4054d8;
  --yh-plum: #7b4a78;
  --yh-radius: 1.25rem;
  --yh-radius-small: 0.8rem;
  --yh-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --yh-shadow: 0 2rem 5rem rgba(21, 24, 27, 0.14);
  --yh-shell: min(1320px, calc(100vw - 3rem));
  --yh-display: "Yhello Display", Arial, sans-serif;
  --yh-body: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@font-face {
  font-family: "Yhello Display";
  src: url("../fonts/raleway-semibold-webfont.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 600;
}

@font-face {
  font-family: "Yhello Display";
  src: url("../fonts/raleway-extrabold-webfont.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 800;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--yh-paper);
  color: var(--yh-ink);
  font-family: var(--yh-body);
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body[aria-busy="true"] {
  cursor: progress;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

:focus-visible {
  outline: 2px solid var(--yh-signal);
  outline-offset: 4px;
}

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

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

h1,
h2,
h3 {
  font-family: var(--yh-display);
  font-weight: 600;
  letter-spacing: -0.045em;
}

h1,
h2 {
  line-height: 0.98;
}

h3 {
  line-height: 1.08;
}

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

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  background: var(--yh-signal);
  color: var(--yh-ink);
}

.site-shell {
  width: var(--yh-shell);
  margin-inline: auto;
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 0.73rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.055em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.button {
  position: relative;
  overflow: hidden;
  min-height: 3.15rem;
  padding: 0.2rem 1.35rem;
  border: 1px solid transparent;
  border-radius: 999px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 280ms var(--yh-ease), background-color 220ms ease, color 220ms ease, box-shadow 280ms var(--yh-ease);
}

.button:hover,
.button:focus-visible {
  box-shadow: 0 0.9rem 2rem rgba(0, 0, 0, 0.16);
  transform: translateY(-3px);
}

.button:active {
  box-shadow: none;
  transform: translateY(0) scale(0.98);
}

.button svg,
.text-link svg,
.work-card__link svg,
.case-next svg {
  width: 1.08rem;
  height: 1.08rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button--signal {
  background: var(--yh-signal);
  color: var(--yh-ink);
}

.button--signal:hover,
.button--signal:focus-visible {
  background: var(--yh-white);
}

.button svg,
.text-link svg {
  transition: transform 260ms var(--yh-ease);
}

.button:hover svg,
.text-link:hover svg {
  transform: translate(0.18rem, -0.08rem);
}

.button--light {
  background: var(--yh-white);
  color: var(--yh-ink);
}

.button--large {
  min-height: 4.35rem;
  padding-inline: 1.8rem;
  font-size: 0.92rem;
}

.text-link {
  position: relative;
  padding-block: 0.45rem;
  border-bottom: 1px solid currentColor;
}

.text-link--arrow {
  border: 0;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.site-header {
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(21, 24, 27, 0.68);
  color: var(--yh-white);
  transition: background-color 300ms ease, box-shadow 300ms ease, backdrop-filter 300ms ease;
  backdrop-filter: blur(10px);
}

body.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

@media screen and (max-width: 600px) {
  body.admin-bar #wpadminbar {
    position: fixed;
  }
}

.site-header.is-scrolled,
.nav-open .site-header {
  background: rgba(21, 24, 27, 0.94);
  box-shadow: 0 0.75rem 2.5rem rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(135%);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 6.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: min-height 300ms var(--yh-ease), border-color 300ms ease;
}

.site-header.is-scrolled .site-header__inner {
  min-height: 4.8rem;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.site-brand {
  display: inline-flex;
  align-items: center;
  width: 9.75rem;
  transition: width 300ms var(--yh-ease), transform 300ms var(--yh-ease);
}

.site-header.is-scrolled .site-brand {
  width: 8.2rem;
}

.site-brand:hover {
  transform: scale(1.025);
}
.site-brand__image {
  display: block;
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.site-nav__list a {
  position: relative;
  display: block;
  color: inherit;
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.035em;
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav__list a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: var(--yh-signal);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav__list a:hover::after,
.site-nav__list a:focus-visible::after,
.site-nav__list a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav__list a.is-current {
  color: var(--yh-signal);
}

.language-switcher {
  display: flex;
  align-items: center;
  padding: 0.22rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  gap: 0.12rem;
}

.language-switcher__item {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  place-items: center;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.language-switcher__item:hover,
.language-switcher__item:focus-visible,
.language-switcher__item.is-active {
  background: var(--yh-white);
  color: var(--yh-ink);
}

.site-nav__cta {
  transition: min-height 300ms var(--yh-ease), padding 300ms var(--yh-ease), font-size 300ms var(--yh-ease), transform 280ms var(--yh-ease), background-color 220ms ease, color 220ms ease, box-shadow 280ms var(--yh-ease);
}

.site-header.is-scrolled .site-nav__cta {
  min-height: 2.35rem;
  padding-inline: 0.9rem;
  font-size: 0.65rem;
}

.page-progress {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--yh-signal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 90ms linear;
}

.is-page-loading .page-progress {
  animation: yh-loading-progress 1.1s var(--yh-ease) infinite;
}

@keyframes yh-loading-progress {
  0% { transform: scaleX(0); transform-origin: left; }
  55% { transform: scaleX(0.72); transform-origin: left; }
  100% { transform: scaleX(0); transform-origin: right; }
}

.site-nav-toggle {
  display: none;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
}

.site-nav-toggle svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-width: 1.6;
}

.site-nav-toggle__close {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 10.5rem 0 6rem;
  background:
    radial-gradient(circle at 76% 22%, rgba(76, 89, 216, 0.3), transparent 34%),
    radial-gradient(circle at 20% 90%, rgba(158, 232, 222, 0.11), transparent 30%),
    var(--yh-ink);
  color: var(--yh-white);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 5rem 5rem;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(32rem, 1.16fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.hero__copy h1 {
  max-width: 12ch;
  margin-bottom: 2rem;
  font-size: clamp(3.1rem, 4.4vw, 5.15rem);
}

.hero__copy h1 em {
  color: var(--yh-signal);
  font-style: normal;
}

.js .hero-title {
  animation: yh-title-arrive 900ms var(--yh-ease) 80ms both;
}

.js .hero-title em {
  animation: yh-title-accent-settle 1100ms cubic-bezier(0.2, 0.75, 0.2, 1) 220ms both;
}

@keyframes yh-title-arrive {
  from {
    opacity: 0;
    letter-spacing: -0.065em;
    transform: translateY(0.18em) scaleX(0.985);
  }
}

@keyframes yh-title-accent-settle {
  0% {
    font-weight: 800;
    letter-spacing: -0.075em;
  }
  100% {
    font-weight: 600;
    letter-spacing: -0.045em;
  }
}

.hero__intro {
  max-width: 43rem;
  margin-bottom: 2.3rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.08rem, 1.7vw, 1.36rem);
  line-height: 1.5;
}

.hero-showcase {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: calc(var(--yh-radius) + 0.35rem);
  background: #1d2229;
  box-shadow: 0 2.7rem 7rem rgba(0, 0, 0, 0.38);
  flex-direction: column;
  transform: rotate(0.6deg);
  backdrop-filter: blur(18px);
}

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

.hero-demo__browserbar,
.hero-demo__sitebar,
.hero-demo__footer {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
}

.hero-demo__browserbar {
  min-height: 2.65rem;
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a1f25;
  color: rgba(255, 255, 255, 0.56);
  gap: 0.75rem;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-demo__window-controls {
  display: flex;
  gap: 0.28rem;
}

.hero-demo__window-controls i {
  display: block;
  width: 0.43rem;
  height: 0.43rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.hero-demo__window-controls i:first-child { background: #ff776d; }
.hero-demo__window-controls i:nth-child(2) { background: #f7cf55; }
.hero-demo__window-controls i:last-child { background: var(--yh-aqua); }

.hero-demo__address {
  display: flex;
  min-width: 0;
  padding: 0.32rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  align-items: center;
  gap: 0.35rem;
  flex: 1;
  letter-spacing: 0.01em;
  text-transform: none;
}

.hero-demo__address svg,
.hero-demo__search svg {
  width: 0.72rem;
  min-width: 0.72rem;
  height: 0.72rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-demo__address span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hero-demo__live {
  display: flex;
  align-items: center;
  gap: 0.36rem;
  color: var(--yh-aqua);
  white-space: nowrap;
}

.hero-demo__live i {
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0 rgba(158, 232, 222, 0.55);
  animation: yh-demo-live 2.2s ease-out infinite;
}

@keyframes yh-demo-live {
  60% { box-shadow: 0 0 0 0.32rem rgba(158, 232, 222, 0); }
  100% { box-shadow: 0 0 0 0 rgba(158, 232, 222, 0); }
}

.hero-demo__sitebar {
  min-height: 3.9rem;
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(24, 29, 35, 0.98);
  gap: 0.7rem;
}

.hero-demo__brand {
  display: flex;
  min-width: 7.2rem;
  align-items: center;
  gap: 0.42rem;
}

.hero-demo__brand > i {
  display: grid;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 0.38rem;
  background: var(--yh-signal);
  color: var(--yh-ink);
  font-family: var(--yh-display);
  font-size: 0.57rem;
  font-style: normal;
  font-weight: 800;
  place-items: center;
}

.hero-demo__brand > span {
  color: var(--yh-white);
  font-family: var(--yh-display);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.02;
}

.hero-demo__brand small {
  display: block;
  margin-top: 0.15rem;
  color: rgba(255, 255, 255, 0.52);
  font-family: var(--yh-body);
  font-size: 0.46rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-demo__tabs {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.18rem;
  flex: 1;
  justify-content: center;
}

.hero-demo__tabs button,
.hero-demo__taxonomy button {
  border: 0;
  color: inherit;
  cursor: pointer;
}

.hero-demo__tabs button {
  position: relative;
  padding: 0.48rem 0.5rem;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.52rem;
  font-weight: 700;
  line-height: 1;
  transition: background-color 220ms ease, color 220ms ease, transform 250ms var(--yh-ease);
}

.hero-demo__tabs button:hover,
.hero-demo__tabs button:focus-visible {
  color: var(--yh-white);
}

.hero-demo__tabs button[aria-selected="true"] {
  background: var(--yh-signal);
  color: var(--yh-ink);
  transform: translateY(-1px);
}

.hero-demo__utility {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.48rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-demo__viewport {
  position: relative;
  overflow: hidden;
  min-height: clamp(25rem, 39vw, 32rem);
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    #20262d;
  background-size: 3.5rem 3.5rem;
}

.hero-demo__panel {
  position: absolute;
  inset: 0;
  overflow: hidden;
  padding: 1.15rem;
}

.hero-demo__panel[hidden] {
  display: none;
}

.hero-demo__panel.is-active {
  animation: yh-demo-panel-in 480ms var(--yh-ease) both;
}

@keyframes yh-demo-panel-in {
  from { opacity: 0; transform: translateY(0.65rem) scale(0.99); }
}

.hero-demo__panel--overview {
  padding: 0;
}

.hero-demo__concept {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 25%, rgba(158, 232, 222, 0.34), transparent 18%),
    radial-gradient(circle at 35% 48%, rgba(78, 94, 211, 0.72), transparent 34%),
    linear-gradient(138deg, #20294c 0%, #172434 52%, #182126 100%);
  transition: transform 900ms var(--yh-ease), filter 500ms ease;
}

.hero-demo__concept::before,
.hero-demo__concept::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  content: "";
}

.hero-demo__concept::before {
  top: 14%;
  right: 12%;
  width: 8rem;
  height: 8rem;
  box-shadow: 0 0 0 2rem rgba(158, 232, 222, 0.035), 0 0 0 4rem rgba(158, 232, 222, 0.02);
}

.hero-demo__concept::after {
  top: 42%;
  right: 34%;
  width: 2.2rem;
  height: 2.2rem;
  background: rgba(246, 227, 46, 0.16);
  border-color: rgba(246, 227, 46, 0.62);
  box-shadow: 4.5rem -5rem 0 -0.35rem rgba(158, 232, 222, 0.5), 7.8rem 1.5rem 0 -0.55rem rgba(246, 227, 46, 0.68), -4rem -2rem 0 -0.55rem rgba(255, 255, 255, 0.42);
}

.hero-demo__panel--overview:hover .hero-demo__concept {
  filter: saturate(1.08);
  transform: scale(1.018);
}

.hero-demo__concept-orbit {
  position: absolute;
  border: 1px solid rgba(158, 232, 222, 0.22);
  border-radius: 50%;
  transform: rotate(-18deg);
}

.hero-demo__concept-orbit--one {
  top: 12%;
  right: 7%;
  width: 15rem;
  height: 7.5rem;
}

.hero-demo__concept-orbit--two {
  top: 27%;
  right: 20%;
  width: 11rem;
  height: 5.5rem;
  transform: rotate(42deg);
}

.hero-demo__concept-orbit i {
  position: absolute;
  width: 0.62rem;
  height: 0.62rem;
  border: 2px solid #20262d;
  border-radius: 50%;
  background: var(--yh-aqua);
}

.hero-demo__concept-orbit i:first-child { top: 2%; left: 42%; }
.hero-demo__concept-orbit i:nth-child(2) { right: 8%; bottom: 14%; background: var(--yh-signal); }
.hero-demo__concept-orbit i:nth-child(3) { bottom: 2%; left: 28%; background: #7f8cff; }

.hero-demo__concept-label {
  position: absolute;
  z-index: 1;
  top: 1.2rem;
  left: 1.35rem;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-demo__concept-stats {
  position: absolute;
  z-index: 1;
  top: 5.4rem;
  left: 1.35rem;
  display: flex;
  gap: 1.2rem;
}

.hero-demo__concept-stats span,
.hero-demo__concept-stats strong {
  display: block;
}

.hero-demo__concept-stats span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.42rem;
  font-weight: 650;
}

.hero-demo__concept-stats strong {
  margin-bottom: 0.12rem;
  color: var(--yh-white);
  font-family: var(--yh-display);
  font-size: 1.05rem;
  letter-spacing: -0.04em;
}

/* Legacy image support remains available for project panels outside this demo. */
.hero-demo__panel--overview > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(1.03);
  transition: transform 900ms var(--yh-ease), filter 500ms ease;
}

.hero-demo__panel--overview:hover > img {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.025);
}

.hero-demo__image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(12, 15, 18, 0.82) 4%, rgba(12, 15, 18, 0.2) 65%), linear-gradient(to top, rgba(12, 15, 18, 0.82), transparent 50%);
  pointer-events: none;
}

.hero-demo__overview-copy {
  position: absolute;
  z-index: 2;
  bottom: 4.4rem;
  left: 1.4rem;
  max-width: 72%;
}

.hero-demo__overview-copy > span,
.hero-demo__panel-heading > div > span,
.hero-demo__feature-story > span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--yh-aqua);
  font-size: 0.53rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-demo__overview-copy > strong {
  display: block;
  color: var(--yh-white);
  font-family: var(--yh-display);
  font-size: clamp(1.5rem, 3vw, 2.45rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero-demo__overview-copy > a,
.hero-demo__overview-copy > button {
  display: inline-flex;
  margin-top: 0.9rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--yh-white);
  align-items: center;
  gap: 0.35rem;
  font-size: 0.54rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-demo__overview-copy > a svg,
.hero-demo__overview-copy > button svg,
.hero-demo__directory-grid article > svg {
  width: 0.85rem;
  height: 0.85rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 220ms var(--yh-ease);
}

.hero-demo__overview-copy > a:hover svg,
.hero-demo__overview-copy > button:hover svg,
.hero-demo__overview-copy > button:focus-visible svg {
  transform: translateX(0.18rem);
}

.hero-demo__quicklinks {
  position: absolute;
  z-index: 2;
  right: 0.85rem;
  bottom: 0.8rem;
  left: 0.85rem;
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.65rem;
  background: rgba(20, 24, 29, 0.74);
  grid-template-columns: repeat(3, 1fr);
  backdrop-filter: blur(12px);
}

.hero-demo__quicklinks span {
  padding: 0.65rem;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.48rem;
  font-weight: 700;
  text-align: center;
}

.hero-demo__quicklinks span:last-child {
  border-right: 0;
}

.hero-demo__panel-heading {
  display: flex;
  min-height: 4.3rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  align-items: flex-start;
  gap: 1rem;
  justify-content: space-between;
}

.hero-demo__panel-heading > div > strong {
  display: block;
  color: var(--yh-white);
  font-family: var(--yh-display);
  font-size: clamp(1.1rem, 2.2vw, 1.55rem);
  line-height: 1.05;
}

.hero-demo__search,
.hero-demo__counter {
  display: inline-flex;
  min-height: 2rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.55);
  align-items: center;
  gap: 0.35rem;
  font-size: 0.48rem;
  line-height: 1.2;
}

.hero-demo__counter {
  border-color: rgba(158, 232, 222, 0.3);
  color: var(--yh-aqua);
}

.hero-demo__directory-grid {
  display: grid;
  gap: 0.5rem;
}

.hero-demo__directory-grid article {
  display: grid;
  min-height: 4rem;
  padding: 0.58rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.55);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  transition: background-color 220ms ease, border-color 220ms ease, transform 260ms var(--yh-ease);
}

.hero-demo__directory-grid article:hover {
  border-color: rgba(246, 227, 46, 0.42);
  background: rgba(246, 227, 46, 0.065);
  transform: translateX(0.18rem);
}

.hero-demo__avatar {
  display: grid;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--yh-signal);
  color: var(--yh-ink);
  font-family: var(--yh-display);
  font-size: 0.56rem;
  font-weight: 800;
  place-items: center;
}

.hero-demo__directory-grid article div > * {
  display: block;
}

.hero-demo__directory-grid small {
  color: var(--yh-aqua);
  font-size: 0.43rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-demo__directory-grid strong {
  margin-block: 0.04rem;
  color: var(--yh-white);
  font-family: var(--yh-display);
  font-size: 0.76rem;
}

.hero-demo__directory-grid article div > span {
  font-size: 0.47rem;
}

.hero-demo__taxonomy {
  display: flex;
  margin-top: 0.75rem;
  align-items: center;
  gap: 0.35rem;
}

.hero-demo__taxonomy > span {
  margin-right: 0.15rem;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.46rem;
}

.hero-demo__taxonomy button {
  padding: 0.36rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.44rem;
}

.hero-demo__service-map {
  display: grid;
  gap: 0.55rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-demo__service-map article {
  position: relative;
  min-height: 13.5rem;
  padding: 0.9rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0.8rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  transition: border-color 250ms ease, transform 300ms var(--yh-ease);
}

.hero-demo__service-map article:hover {
  border-color: rgba(158, 232, 222, 0.45);
  transform: translateY(-0.25rem);
}

.hero-demo__service-map article > span {
  display: grid;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 2.7rem;
  border: 1px solid rgba(158, 232, 222, 0.35);
  border-radius: 50%;
  color: var(--yh-aqua);
  place-items: center;
}

.hero-demo__service-map svg,
.hero-demo__feature-story svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.hero-demo__service-map small {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.48rem;
}

.hero-demo__service-map strong,
.hero-demo__service-map p {
  display: block;
}

.hero-demo__service-map strong {
  color: var(--yh-white);
  font-family: var(--yh-display);
  font-size: 0.88rem;
  line-height: 1.05;
}

.hero-demo__service-map p {
  margin: 0.45rem 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.49rem;
  line-height: 1.45;
}

.hero-demo__activity-layout {
  display: grid;
  gap: 0.65rem;
  grid-template-columns: 0.9fr 1.1fr;
}

.hero-demo__feature-story {
  position: relative;
  display: flex;
  min-height: 15.5rem;
  padding: 1rem;
  overflow: hidden;
  border-radius: 0.8rem;
  background:
    radial-gradient(circle at 75% 25%, rgba(158, 232, 222, 0.34), transparent 24%),
    linear-gradient(145deg, #4054d8, #222b63);
  flex-direction: column;
  justify-content: flex-end;
}

.hero-demo__feature-story::before {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 5.5rem;
  height: 5.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 1.4rem rgba(255, 255, 255, 0.04), 0 0 0 2.8rem rgba(255, 255, 255, 0.025);
  content: "";
}

.hero-demo__feature-story > span,
.hero-demo__feature-story > strong,
.hero-demo__feature-story > i {
  position: relative;
  z-index: 1;
}

.hero-demo__feature-story > strong {
  color: var(--yh-white);
  font-family: var(--yh-display);
  font-size: 1.05rem;
  line-height: 1.08;
}

.hero-demo__feature-story > i {
  position: absolute;
  top: 1rem;
  left: 1rem;
  color: var(--yh-white);
}

.hero-demo__feed {
  display: grid;
  gap: 0.5rem;
}

.hero-demo__feed article {
  display: flex;
  min-height: 4.8rem;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 0.7rem;
  background: rgba(255, 255, 255, 0.045);
  flex-direction: column;
  justify-content: center;
  transition: background-color 220ms ease, transform 260ms var(--yh-ease);
}

.hero-demo__feed article:hover {
  background: rgba(255, 255, 255, 0.085);
  transform: translateX(0.18rem);
}

.hero-demo__feed small {
  color: var(--yh-aqua);
  font-size: 0.42rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-demo__feed strong {
  margin-block: 0.12rem;
  color: var(--yh-white);
  font-family: var(--yh-display);
  font-size: 0.72rem;
  line-height: 1.05;
}

.hero-demo__feed span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.45rem;
}

.hero-demo__footer {
  min-height: 2.8rem;
  padding: 0.55rem 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #1a1f25;
  color: rgba(255, 255, 255, 0.42);
  gap: 0.85rem;
  justify-content: flex-end;
  font-size: 0.46rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-demo__footer span:not(.hero-demo__status) {
  white-space: nowrap;
}

.hero-demo__status {
  margin-right: auto;
  color: var(--yh-aqua);
}

.platform-strip {
  border-bottom: 1px solid rgba(21, 24, 27, 0.12);
  background: var(--yh-paper-deep);
}

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

.platform-strip__inner > span {
  display: flex;
  min-height: 5.4rem;
  padding: 1rem 1.25rem;
  border-left: 1px solid rgba(21, 24, 27, 0.12);
  align-items: center;
  gap: 0.7rem;
  font-size: 0.71rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  line-height: 1.25;
  text-transform: uppercase;
}

.platform-strip__inner > span:last-child {
  border-right: 1px solid rgba(21, 24, 27, 0.12);
}

.platform-strip svg {
  width: 1.15rem;
  min-width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.client-line {
  padding-block: 1.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: var(--yh-ink-soft);
  color: var(--yh-white);
}

.client-line__inner {
  display: grid;
  grid-template-columns: minmax(8rem, 0.55fr) minmax(0, 3.45fr);
  align-items: center;
  gap: 2rem;
}

.client-line .eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
}

.client-line__logos {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

.client-line__logos a {
  display: grid;
  min-height: 4.8rem;
  padding: 0.85rem 1.15rem;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  place-items: center;
  transition: background-color 220ms ease, opacity 220ms ease;
}

.client-line__logos a:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.client-line__logos a:hover,
.client-line__logos a:focus-visible {
  background: rgba(255, 255, 255, 0.05);
}

.client-line__logos img {
  width: auto;
  height: auto;
  max-width: 7.5rem;
  max-height: 2.8rem;
  opacity: 0.68;
  filter: grayscale(1) brightness(0) invert(1);
  transition: opacity 220ms ease, transform 260ms var(--yh-ease);
}

.client-line__logos a:hover img,
.client-line__logos a:focus-visible img {
  opacity: 1;
  transform: translateY(-0.12rem);
}

.section {
  padding-block: clamp(5.5rem, 10vw, 9rem);
}

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

.section--ink {
  background: var(--yh-ink);
  color: var(--yh-white);
}

.section--signal {
  background: var(--yh-signal);
  color: var(--yh-ink);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 3rem;
  align-items: end;
  margin-bottom: clamp(3.5rem, 7vw, 6.5rem);
}

.section-heading h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 4.2vw, 4.8rem);
}

.section-heading--light > p {
  max-width: 28rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.work-grid--featured .work-card:first-child {
  grid-column: 1 / -1;
}

.work-grid--featured .work-card:first-child > a {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
}

.work-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(21, 24, 27, 0.14);
  border-radius: var(--yh-radius);
  background: var(--yh-white);
  transition: transform 450ms var(--yh-ease), box-shadow 450ms var(--yh-ease), border-color 220ms ease;
}

.work-card:hover,
.work-card:focus-within {
  border-color: rgba(21, 24, 27, 0.25);
  box-shadow: var(--yh-shadow);
  transform: translateY(-8px);
}

.work-card[hidden] {
  display: none;
}

.work-card > a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.work-card__visual {
  position: relative;
  display: grid;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  min-height: 0;
  place-items: center;
  background: var(--yh-ink-soft);
}

.work-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: saturate(0.92);
  transition: transform 850ms var(--yh-ease), filter 450ms ease;
}

.work-card:hover .work-card__visual img {
  filter: saturate(1.06);
  transform: scale(1.045);
}

.work-card__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 18, 20, 0.22), transparent 42%);
  content: "";
  pointer-events: none;
}

.work-card__view {
  position: absolute;
  z-index: 3;
  right: 1.2rem;
  bottom: 1.2rem;
  display: grid;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--yh-signal);
  color: var(--yh-ink);
  place-items: center;
  transform: translateY(0.6rem) rotate(-8deg);
  opacity: 0;
  transition: transform 300ms var(--yh-ease), background-color 220ms ease, opacity 220ms ease;
}

.work-card__view svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.work-card:hover .work-card__view,
.work-card:focus-within .work-card__view {
  transform: none;
  opacity: 1;
}

.work-card__visual > span {
  position: relative;
  z-index: 2;
  color: var(--yh-white);
  font-family: var(--yh-display);
  font-size: clamp(4rem, 9vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.08em;
}

.work-card__visual > i,
.work-card__visual > i::before,
.work-card__visual > i::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  content: "";
}

.work-card__visual > i {
  width: 16rem;
  height: 16rem;
}

.work-card__visual > i::before {
  inset: 2.7rem;
}

.work-card__visual > i::after {
  inset: 5.2rem;
  background: rgba(255, 255, 255, 0.08);
}

.work-card--cobalt .work-card__visual { background: var(--yh-cobalt); }
.work-card--aqua .work-card__visual { background: #236b64; }
.work-card--plum .work-card__visual { background: var(--yh-plum); }

.work-card__content {
  display: flex;
  flex-direction: column;
  min-height: 19rem;
  padding: clamp(1.6rem, 3vw, 2.6rem);
}

.work-card__meta {
  margin-bottom: 1.25rem;
  color: var(--yh-slate);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-card__content h2,
.work-card__content h3 {
  margin-bottom: 1rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.work-card__content > p:not(.work-card__meta) {
  max-width: 38rem;
  color: var(--yh-slate);
}

.work-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 2rem;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.work-card__link svg {
  transition: transform 260ms var(--yh-ease);
}

.work-card:hover .work-card__link svg {
  transform: translate(0.18rem, -0.18rem);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.capability {
  min-height: 30rem;
  padding: 2.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.capability:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.capability > span {
  display: grid;
  width: 3.25rem;
  height: 3.25rem;
  margin-bottom: 4rem;
  border: 1px solid rgba(246, 227, 46, 0.45);
  border-radius: 50%;
  background: rgba(246, 227, 46, 0.08);
  color: var(--yh-signal);
  place-items: center;
  transition: background-color 260ms ease, color 260ms ease, transform 350ms var(--yh-ease);
}

.capability:hover > span {
  background: var(--yh-signal);
  color: var(--yh-ink);
  transform: rotate(8deg) scale(1.06);
}

.capability__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.capability h3 {
  max-width: 9ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 3vw, 3.2rem);
}

.capability p {
  color: rgba(255, 255, 255, 0.65);
}

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

.capability li {
  padding-block: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.approach-grid,
.about-grid,
.proposal-bridge__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 8vw, 8rem);
}

.approach-copy {
  position: sticky;
  top: 2rem;
  align-self: start;
}

.approach-copy h2,
.about-statement h2,
.proposal-bridge h2 {
  margin-bottom: 2rem;
  font-size: clamp(2.4rem, 4.3vw, 4.9rem);
}

.approach-copy p:last-child {
  max-width: 34rem;
  font-size: 1.1rem;
}

.approach-steps {
  padding: 0;
  margin: 0;
  list-style: none;
}

.approach-steps li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(21, 24, 27, 0.32);
}

.approach-steps li:last-child {
  border-bottom: 1px solid rgba(21, 24, 27, 0.32);
}

.approach-steps span {
  font-family: var(--yh-display);
  font-size: 0.78rem;
  font-weight: 800;
}

.approach-steps h3 {
  margin-bottom: 0.5rem;
  font-size: 1.65rem;
}

.approach-steps p {
  margin-bottom: 0;
  color: rgba(21, 24, 27, 0.7);
}

.about-statement h2 {
  max-width: 11ch;
}

.about-body > p {
  max-width: 39rem;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.55;
}

.founder-note {
  display: grid;
  padding: 1.4rem;
  margin-top: 2.5rem;
  border: 1px solid var(--yh-mist);
  border-radius: var(--yh-radius);
  background: var(--yh-white);
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.founder-note__portrait {
  width: 4.25rem;
  height: 4.25rem;
  border-radius: 50%;
  object-fit: cover;
}

.founder-note .eyebrow { margin-bottom: 0.35rem; }
.founder-note strong { display: block; max-width: 28rem; font-family: var(--yh-display); font-size: 1.1rem; line-height: 1.25; }
.founder-note div > p:not(.eyebrow) { max-width: 32rem; margin: 0.65rem 0 1rem; color: var(--yh-slate); font-size: 0.86rem; line-height: 1.55; }
.founder-note .text-link { font-size: 0.72rem; }

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 4rem;
}

.proof-row__source {
  display: flex;
  margin-top: 4rem;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
}

.proof-row__source .eyebrow {
  margin-bottom: 0;
}

.proof-row__source + .proof-row {
  margin-top: 1.25rem;
}

.proof-row div {
  padding-top: 1.2rem;
  border-top: 1px solid var(--yh-mist);
}

.proof-row strong,
.proof-row span {
  display: block;
}

.proof-row strong {
  margin-bottom: 0.4rem;
  font-family: var(--yh-display);
  font-size: 1.3rem;
}

.proof-row span {
  color: var(--yh-slate);
  font-size: 0.75rem;
  line-height: 1.45;
}

.proposal-bridge {
  background: var(--yh-paper-deep);
}

.proposal-bridge h2 {
  max-width: 10ch;
  margin-bottom: 0;
}

.proposal-bridge__inner > div:last-child {
  align-self: end;
  max-width: 35rem;
}

.proposal-bridge__inner > div:last-child p {
  margin-bottom: 2rem;
  color: var(--yh-slate);
  font-size: 1.1rem;
}

.contact-section {
  background: var(--yh-cobalt);
  color: var(--yh-white);
}

.contact-section__inner {
  display: flex;
  min-height: 38rem;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.contact-section h2 {
  max-width: 13ch;
  margin-bottom: 3rem;
  font-size: clamp(2.6rem, 5.4vw, 5.6rem);
}

.contact-section__response {
  max-width: 42rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  line-height: 1.55;
}

.site-footer {
  padding-block: clamp(5rem, 9vw, 8rem) 2.2rem;
  background: var(--yh-ink);
  color: var(--yh-white);
}

.site-footer__top {
  display: grid;
  grid-template-columns: minmax(15rem, 0.72fr) minmax(25rem, 1.28fr);
  gap: clamp(4rem, 10vw, 10rem);
  align-items: end;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__brand {
  max-width: 24rem;
}

.site-footer__logo {
  display: inline-block;
  width: clamp(8.5rem, 12vw, 11.5rem);
  margin-bottom: 2rem;
}

.site-footer__brand p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
  line-height: 1.65;
}

.site-footer__lead .eyebrow {
  color: var(--yh-signal);
}

.site-footer__lead > a {
  display: inline-flex;
  max-width: 11ch;
  color: var(--yh-white);
  align-items: flex-end;
  gap: 0.7rem;
  font-family: var(--yh-display);
  font-size: clamp(3.1rem, 6.6vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.92;
  text-decoration-color: var(--yh-signal);
  text-decoration-thickness: 0.06em;
}

.site-footer__lead svg {
  width: 0.68em;
  min-width: 0.68em;
  height: 0.68em;
  margin-bottom: 0.05em;
  fill: none;
  stroke: var(--yh-signal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 260ms var(--yh-ease);
}

.site-footer__lead > a:hover svg {
  transform: translate(0.18rem, -0.18rem);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: clamp(2.5rem, 8vw, 8rem);
  padding-block: 3.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.7rem;
}

.site-footer__label {
  margin-bottom: 0.8rem;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer__column a,
.site-footer__column span,
.site-footer__bottom {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.site-footer__column a {
  text-decoration-color: rgba(255, 255, 255, 0.24);
  transition: color 180ms ease, transform 220ms var(--yh-ease);
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible,
.site-footer__column a.is-active {
  color: var(--yh-signal);
  transform: translateX(0.18rem);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
}

.site-footer__bottom a {
  color: inherit;
}

.site-footer .yhello-privacy-settings__button {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.24);
  text-underline-offset: 0.14em;
}

.site-footer .yhello-privacy-settings__button:hover,
.site-footer .yhello-privacy-settings__button:focus-visible {
  color: var(--yh-signal);
}

body .yh-privacy-manage {
  display: none;
}

.site-footer__bottom > div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.25rem;
}

.page-main,
.work-archive,
.case-study,
.error-page {
  min-height: 70vh;
  background: var(--yh-paper);
}

.page-main,
.error-page {
  padding-block: 11rem 7rem;
}

.content-shell {
  max-width: 900px;
}

.entry-header {
  margin-bottom: 4rem;
}

.entry-header h1 {
  font-size: clamp(2.7rem, 5.4vw, 5.6rem);
}

.entry-content {
  font-size: 1.08rem;
}

.entry-content > * {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}

.entry-content > .alignwide {
  max-width: 1120px;
}

.entry-content > .alignfull {
  max-width: none;
}

.entry-content h2 {
  margin-top: 4rem;
  font-size: clamp(2rem, 3.3vw, 3.6rem);
}

.entry-content h3 {
  margin-top: 2.5rem;
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
}

.entry-list {
  display: grid;
  gap: 1px;
  background: var(--yh-mist);
}

.entry-summary {
  padding: 2rem;
  background: var(--yh-paper);
}

.entry-summary h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.archive-hero,
.case-hero {
  padding-block: 12rem 6rem;
  background: var(--yh-ink);
  color: var(--yh-white);
}

.archive-hero__grid,
.case-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  gap: 5rem;
  align-items: end;
}

.archive-hero__grid {
  grid-template-columns: minmax(0, 0.82fr) minmax(32rem, 1.18fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.archive-hero h1,
.case-hero h1 {
  max-width: 11ch;
  margin-bottom: 0;
  font-size: clamp(3rem, 5.9vw, 6.2rem);
}

.archive-hero h1 {
  font-size: clamp(3rem, 4.9vw, 5.4rem);
}

.archive-hero__grid > p,
.case-hero__summary {
  max-width: 32rem;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
}

.archive-hero__copy > p {
  max-width: 38rem;
  margin: 2rem 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1.05rem, 1.55vw, 1.3rem);
}

.case-hero__summary p {
  margin-bottom: 2rem;
}

.case-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--yh-mist);
  border-left: 1px solid var(--yh-mist);
}

.case-facts > div {
  min-height: 12rem;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  border-right: 1px solid var(--yh-mist);
  border-bottom: 1px solid var(--yh-mist);
}

.case-facts > div p:last-child {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--yh-slate);
}

.case-facts a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.case-facts a svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 3rem;
}

.work-filters button {
  padding: 0.65rem 1rem;
  border: 1px solid var(--yh-mist);
  border-radius: 999px;
  background: transparent;
  color: var(--yh-slate);
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 700;
  transition: background-color 200ms ease, color 200ms ease, border-color 200ms ease, transform 220ms var(--yh-ease);
}

.work-filters button:hover,
.work-filters button:focus-visible,
.work-filters button.is-active {
  border-color: var(--yh-ink);
  background: var(--yh-ink);
  color: var(--yh-white);
  transform: translateY(-2px);
}

.case-featured-media {
  position: relative;
  overflow: hidden;
  margin-top: -2rem;
  border-radius: calc(var(--yh-radius) + 0.15rem);
  background: var(--yh-ink-soft);
  box-shadow: var(--yh-shadow);
}

.case-featured-media img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top center;
}

.case-content {
  padding-block: clamp(6rem, 10vw, 10rem);
}

.case-story__lead {
  display: grid;
  max-width: none !important;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.75fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: start;
  padding-bottom: clamp(4rem, 8vw, 7rem);
  border-bottom: 1px solid var(--yh-mist);
}

.case-story__lead h2 {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(2.5rem, 4.6vw, 5.1rem);
  line-height: 0.94;
}

.case-story__lead p {
  margin-bottom: 0;
  color: var(--yh-slate);
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  line-height: 1.65;
}

.case-story__chapters {
  display: grid;
  max-width: none !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(3rem, 8vw, 8rem);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.case-story__chapters h3,
.case-story__closing h3 {
  margin: 0 0 1.4rem;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.case-story__chapters p,
.case-story__closing p {
  color: var(--yh-slate);
  line-height: 1.75;
}

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

.case-story__chapters li {
  position: relative;
  padding: 0.85rem 0 0.85rem 1.5rem;
  border-top: 1px solid var(--yh-mist);
  color: var(--yh-slate);
}

.case-story__chapters li::before {
  position: absolute;
  top: 1.45rem;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--yh-cobalt);
  content: "";
}

.case-story__closing {
  display: grid;
  max-width: none !important;
  grid-template-columns: minmax(0, 0.65fr) minmax(22rem, 1fr);
  gap: clamp(3rem, 9vw, 9rem);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--yh-radius);
  background: var(--yh-paper-deep);
}

.case-story__closing h3,
.case-story__closing p {
  margin-bottom: 0;
}

.case-screens {
  padding-block: clamp(5rem, 9vw, 9rem);
  background: var(--yh-ink);
  color: var(--yh-white);
}

.case-screens__heading {
  display: grid;
  grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: 4rem;
  align-items: end;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}

.case-screens__heading h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
}

.case-screens__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(15rem, 0.7fr) minmax(10rem, 0.36fr);
  gap: 1rem;
  align-items: start;
}

.case-screen {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--yh-radius-small);
  background: #fff;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.22);
}

.case-screen figcaption {
  display: flex;
  height: 3rem;
  padding-inline: 1rem;
  background: #252a2f;
  color: rgba(255, 255, 255, 0.7);
  align-items: center;
  gap: 0.55rem;
  font-size: 0.65rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-screen figcaption svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: none;
  stroke: var(--yh-signal);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.case-screen img {
  width: 100%;
  height: auto;
}

.case-screen--tablet,
.case-screen--mobile {
  margin-top: clamp(4rem, 8vw, 8rem);
}

.case-product--france-bioimaging .case-story__chapters li::before { background: #19a88e; }
.case-product--editions-gabelire .case-story__chapters li::before { background: #cf7b77; }
.case-product--sbcf .case-story__chapters li::before { background: #94c11f; }
.case-product--french-society-immunology .case-story__chapters li::before { background: #1c64c7; }
.case-product--ciml .case-story__chapters li::before { background: #af9451; }
.case-product--icy .case-story__chapters li::before { background: #1771b8; }
.case-product--recherche-upf .case-story__chapters li::before { background: #0b8f93; }
.case-product--editions-metailie .case-story__chapters li::before { background: #f26023; }

.agency-page {
  background: var(--yh-paper);
}

.agency-page__hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(10rem, 14vw, 13rem) clamp(5rem, 8vw, 7rem);
  background: var(--yh-ink);
  color: var(--yh-white);
}

.agency-page__hero::after {
  position: absolute;
  right: -12rem;
  bottom: -18rem;
  width: 42rem;
  height: 42rem;
  border: 1px solid rgba(246, 227, 46, 0.28);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(246, 227, 46, 0.025), 0 0 0 12rem rgba(246, 227, 46, 0.02);
  content: "";
}

.agency-page__hero-grid,
.agency-system__intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(32rem, 1.18fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.agency-system__intro {
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.65fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: end;
}

.agency-page__hero h1 {
  max-width: 14ch;
  margin-bottom: 0;
  font-size: clamp(2.9rem, 4.8vw, 5.4rem);
}

.agency-page__hero-copy > p,
.agency-system__intro > p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(1.08rem, 1.65vw, 1.35rem);
  line-height: 1.65;
}

.agency-page__hero-copy > p {
  max-width: 40rem;
  margin-top: 2rem;
}

.agency-visual {
  position: relative;
  min-height: 35rem;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: calc(var(--yh-radius) + 0.5rem);
  background: #1d2229;
  box-shadow: 0 2.5rem 6rem rgba(0, 0, 0, 0.3);
}

.agency-visual button {
  appearance: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.agency-visual__bar,
.agency-visual__footer {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 4rem;
  padding: 0.9rem 1.3rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.agency-visual__bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.agency-visual__bar small {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--yh-aqua);
  font: inherit;
}

.agency-visual__bar small i {
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 0.35rem rgba(158, 232, 222, 0.09);
}

.agency-visual__footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 3.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.5);
  justify-content: space-around;
}

.agency-product-map {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 47%, rgba(78, 94, 211, 0.3), transparent 35%),
    #17202a;
  background-size: 4rem 4rem, 4rem 4rem, auto, auto;
}

.agency-product-map__canvas {
  position: absolute;
  inset: 4rem 0 3.5rem;
}

.agency-product-map__canvas > svg {
  position: absolute;
  inset: 9% 7%;
  width: 86%;
  height: 82%;
  fill: none;
  stroke: rgba(158, 232, 222, 0.25);
  stroke-dasharray: 5 8;
  stroke-width: 1.5;
}

.agency-product-map__node,
.agency-product-map__core {
  position: absolute;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(27, 33, 40, 0.88);
  flex-direction: column;
  backdrop-filter: blur(14px);
}

.agency-product-map__node {
  width: 11.2rem;
  min-height: 6rem;
  padding: 0.9rem 0.8rem 0.8rem 3.15rem;
  border-radius: 1rem;
  justify-content: center;
  transition: border-color 240ms ease, transform 320ms var(--yh-ease), background-color 240ms ease;
}

.agency-product-map__node:hover {
  border-color: rgba(246, 227, 46, 0.65);
  background: rgba(246, 227, 46, 0.07);
  transform: translateY(-0.25rem);
}

.agency-product-map__node.is-active {
  border-color: var(--yh-signal);
  background: rgba(246, 227, 46, 0.1);
  transform: translateY(-0.22rem);
}

.agency-product-map__node > svg {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 1.3rem;
  height: 1.3rem;
  fill: none;
  stroke: var(--yh-aqua);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transform: translateY(-50%);
}

.agency-product-map__node strong {
  color: var(--yh-white);
  font-family: var(--yh-display);
  font-size: 0.9rem;
  line-height: 1.05;
}

.agency-product-map__node small {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.54rem;
}

.agency-product-map__node--people { top: 9%; left: 5%; }
.agency-product-map__node--services { top: 9%; right: 5%; }
.agency-product-map__node--knowledge { bottom: 9%; left: 5%; }
.agency-product-map__node--operations { right: 5%; bottom: 9%; }

.agency-product-map__core {
  top: 50%;
  left: 50%;
  width: 11.5rem;
  height: 11.5rem;
  border-color: rgba(246, 227, 46, 0.75);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 0 1rem rgba(246, 227, 46, 0.025), 0 0 0 2.5rem rgba(246, 227, 46, 0.015);
}

.agency-product-map__core small,
.agency-product-map__core i {
  color: var(--yh-aqua);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.agency-product-map__core strong {
  max-width: 7ch;
  margin: 0.45rem 0 0.6rem;
  font-family: var(--yh-display);
  font-size: 1.65rem;
  line-height: 0.9;
}

.agency-product-map__core i {
  max-width: 15ch;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.4;
}

.agency-rhythm {
  min-height: 31rem;
  border-color: rgba(21, 24, 27, 0.55);
  background:
    linear-gradient(rgba(21, 24, 27, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 24, 27, 0.07) 1px, transparent 1px),
    var(--yh-signal);
  background-size: 4rem 4rem;
  color: var(--yh-ink);
}

.agency-rhythm .agency-visual__bar {
  border-bottom-color: rgba(21, 24, 27, 0.22);
}

.agency-rhythm .agency-visual__bar small {
  color: var(--yh-ink);
}

.agency-rhythm .agency-visual__bar small i {
  box-shadow: 0 0 0 0.35rem rgba(21, 24, 27, 0.08);
}

.agency-rhythm__timeline {
  position: relative;
  display: grid;
  padding: 5rem 2.2rem 0;
  margin: 0;
  list-style: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.agency-rhythm__timeline::before {
  position: absolute;
  top: 7.2rem;
  right: 8%;
  left: 8%;
  height: 2px;
  background: var(--yh-ink);
  content: "";
}

.agency-rhythm__timeline li {
  position: relative;
  min-width: 0;
}

.agency-rhythm__timeline li > button {
  display: flex;
  width: 100%;
  min-height: 11rem;
  padding-inline: 1rem;
  border: 0;
  background: transparent;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.agency-rhythm__timeline li > button > span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 4.4rem;
  height: 4.4rem;
  margin-bottom: 1.35rem;
  border: 2px solid var(--yh-ink);
  border-radius: 50%;
  background: var(--yh-signal);
  font-family: var(--yh-display);
  font-weight: 800;
  place-items: center;
  transition: background-color 220ms ease, color 220ms ease, transform 300ms var(--yh-ease);
}

.agency-rhythm__timeline li:hover > button > span,
.agency-rhythm__timeline li > button.is-active > span {
  background: var(--yh-ink);
  color: var(--yh-signal);
  transform: rotate(calc((var(--agency-step) - 1.5) * 4deg)) scale(1.08);
}

.agency-rhythm__timeline strong {
  font-family: var(--yh-display);
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1;
}

.agency-rhythm__timeline button.is-active strong {
  text-decoration: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.agency-rhythm__timeline small {
  margin-top: 0.55rem;
  color: rgba(21, 24, 27, 0.62);
  font-size: 0.72rem;
}

.agency-rhythm__signal {
  display: flex;
  width: fit-content;
  padding: 0.65rem 0.8rem;
  margin: 1rem auto 0;
  border: 1px solid rgba(21, 24, 27, 0.3);
  border-radius: 999px;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.agency-rhythm__signal i {
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: currentColor;
}

.agency-studio-map {
  min-height: 36rem;
  background:
    radial-gradient(circle at 50% 54%, rgba(158, 232, 222, 0.28), transparent 28%),
    linear-gradient(135deg, #263071, #171e42 60%, #162329);
}

.agency-studio-map__orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30rem;
  height: 22rem;
  border: 1px solid rgba(158, 232, 222, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -51%) rotate(-8deg);
}

.agency-studio-map__orbit::before,
.agency-studio-map__orbit::after {
  position: absolute;
  inset: 12%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.agency-studio-map__orbit::after {
  inset: 28%;
}

.agency-studio-map__core,
.agency-studio-map__satellite {
  position: absolute;
  display: grid;
  border-radius: 50%;
  place-items: center;
  text-align: center;
}

.agency-studio-map__core {
  top: 50%;
  left: 50%;
  width: 10rem;
  height: 10rem;
  background: var(--yh-signal);
  color: var(--yh-ink);
  align-content: center;
  transform: translate(-50%, -50%) rotate(8deg);
}

.agency-studio-map__core strong {
  font-family: var(--yh-display);
  font-size: 2.2rem;
  line-height: 1;
}

.agency-studio-map__core small {
  margin-top: 0.3rem;
  font-size: 0.62rem;
  font-weight: 700;
}

.agency-studio-map__satellite {
  width: 6.2rem;
  height: 6.2rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(21, 24, 27, 0.8);
  color: var(--yh-white);
  font-family: var(--yh-display);
  font-size: 0.86rem;
  font-weight: 700;
  transform: rotate(8deg);
  backdrop-filter: blur(12px);
  transition: background-color 220ms ease, transform 300ms var(--yh-ease);
}

.agency-studio-map__satellite:hover {
  background: var(--yh-cobalt);
  transform: rotate(8deg) scale(1.08);
}

.agency-studio-map__satellite.is-active {
  border-color: var(--yh-signal);
  background: var(--yh-cobalt);
  box-shadow: 0 0 0 0.45rem rgba(246, 227, 46, 0.08);
  transform: rotate(8deg) scale(1.08);
}

.agency-studio-map__satellite--strategy { top: -2rem; left: 5rem; }
.agency-studio-map__satellite--design { top: 2rem; right: -1.5rem; }
.agency-studio-map__satellite--engineering { right: 4rem; bottom: -2.4rem; }
.agency-studio-map__satellite--care { bottom: 1rem; left: -1.5rem; }

.agency-studio-map__places {
  position: absolute;
  z-index: 3;
  right: 1.5rem;
  bottom: 1.2rem;
  left: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.agency-studio-map__places span {
  display: flex;
  flex-direction: column;
}

.agency-studio-map__places small {
  color: var(--yh-aqua);
  font-size: 0.52rem;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.agency-studio-map__places strong {
  font-family: var(--yh-display);
  font-size: 1.05rem;
}

.agency-studio-map__places > svg {
  width: 2.2rem;
  height: 2.2rem;
  fill: none;
  stroke: var(--yh-signal);
  stroke-width: 1.5;
}

.agency-studio-map__places em {
  padding: 0.55rem 0.8rem;
  margin-left: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.62rem;
  font-style: normal;
  font-weight: 750;
  letter-spacing: 0.08em;
}

.agency-brief-demo {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 75% 20%, rgba(64, 84, 216, 0.32), transparent 34%),
    #182027;
  background-size: 3.4rem 3.4rem, 3.4rem 3.4rem, auto, auto;
}

.agency-brief-demo__canvas {
  position: absolute;
  inset: 4rem 0 3.5rem;
  display: grid;
  padding: clamp(1.3rem, 3vw, 2.4rem);
  align-content: center;
  gap: 2rem;
}

.agency-brief-demo__prompt small,
.agency-brief-demo__prompt strong {
  display: block;
}

.agency-brief-demo__prompt small {
  margin-bottom: 0.6rem;
  color: var(--yh-aqua);
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.agency-brief-demo__prompt strong {
  max-width: 16ch;
  font-family: var(--yh-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.agency-brief-demo__choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.agency-brief-demo__choices button {
  position: relative;
  display: flex;
  min-height: 10rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 1rem;
  background: rgba(21, 24, 27, 0.72);
  color: var(--yh-white);
  align-items: flex-start;
  flex-direction: column;
  text-align: left;
  transition: border-color 220ms ease, background-color 220ms ease, transform 300ms var(--yh-ease);
}

.agency-brief-demo__choices button:hover,
.agency-brief-demo__choices button.is-active {
  border-color: var(--yh-signal);
  background: rgba(64, 84, 216, 0.35);
  transform: translateY(-0.25rem);
}

.agency-brief-demo__choices button > span {
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  place-items: center;
}

.agency-brief-demo__choices svg,
.work-index-demo__routes svg {
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.agency-brief-demo__choices button > small {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.58rem;
  font-weight: 750;
}

.agency-brief-demo__choices strong {
  margin-top: 1rem;
  font-family: var(--yh-display);
  font-size: 1rem;
}

.agency-brief-demo__choices em {
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.58rem;
  font-style: normal;
  line-height: 1.35;
}

.work-index-demo {
  min-height: 35rem;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(158, 232, 222, 0.19), transparent 34%),
    #192028;
  background-size: 3.4rem 3.4rem, 3.4rem 3.4rem, auto, auto;
}

.work-index-demo__canvas {
  position: absolute;
  inset: 4rem 0 3.5rem;
  display: grid;
  padding: 2rem;
  grid-template-columns: minmax(9rem, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: 1.3rem;
}

.work-index-demo__signal {
  display: flex;
  min-height: 15rem;
  border: 1px solid rgba(246, 227, 46, 0.65);
  border-radius: 50%;
  background: rgba(246, 227, 46, 0.055);
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.work-index-demo__signal span {
  color: var(--yh-signal);
  font-family: var(--yh-display);
  font-size: clamp(4rem, 7vw, 6rem);
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.work-index-demo__signal small {
  max-width: 8rem;
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.58rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.work-index-demo__routes {
  display: grid;
  gap: 0.65rem;
}

.work-index-demo__routes button {
  position: relative;
  display: grid;
  min-height: 5.7rem;
  padding: 0.9rem 1rem 0.9rem 4.6rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.025);
  color: var(--yh-white);
  align-content: center;
  text-align: left;
  transition: border-color 220ms ease, background-color 220ms ease, transform 300ms var(--yh-ease);
}

.work-index-demo__routes button:hover,
.work-index-demo__routes button.is-active {
  border-color: var(--yh-aqua);
  background: rgba(158, 232, 222, 0.08);
  transform: translateX(0.25rem);
}

.work-index-demo__routes button > span {
  position: absolute;
  top: 50%;
  left: 1.15rem;
  display: grid;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  place-items: center;
  transform: translateY(-50%);
}

.work-index-demo__routes strong {
  font-family: var(--yh-display);
  font-size: 1.05rem;
}

.work-index-demo__routes small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.57rem;
}

.agency-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--yh-mist);
  border-left: 1px solid var(--yh-mist);
}

.agency-card {
  min-height: 28rem;
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border-right: 1px solid var(--yh-mist);
  border-bottom: 1px solid var(--yh-mist);
  transition: background-color 300ms ease, transform 450ms var(--yh-ease);
}

.agency-card:hover {
  background: var(--yh-white);
  transform: translateY(-0.45rem);
}

.agency-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: clamp(3rem, 5vw, 5rem);
}

.agency-card__top > span {
  display: grid;
  width: 3.3rem;
  height: 3.3rem;
  border: 1px solid var(--yh-mist);
  border-radius: 50%;
  place-items: center;
}

.agency-card__top svg,
.agency-card li svg {
  width: 1.15rem;
  height: 1.15rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.agency-card__top small {
  color: var(--yh-slate);
  font-weight: 750;
}

.agency-card h2 {
  max-width: 11ch;
  font-size: clamp(1.8rem, 2.6vw, 3rem);
}

.agency-card > p {
  max-width: 34rem;
  color: var(--yh-slate);
}

.agency-card ul {
  padding: 0;
  margin: 2.4rem 0 0;
  list-style: none;
}

.agency-card li {
  display: flex;
  padding-block: 0.72rem;
  border-top: 1px solid var(--yh-mist);
  color: var(--yh-slate);
  align-items: center;
  gap: 0.7rem;
  font-size: 0.84rem;
}

.agency-card li svg {
  width: 0.9rem;
  min-width: 0.9rem;
  height: 0.9rem;
  color: var(--yh-cobalt);
}

.agency-system__intro {
  margin-bottom: clamp(4rem, 8vw, 7rem);
}

.agency-system__intro h2 {
  max-width: 11ch;
  margin-bottom: 0;
  font-size: clamp(2.4rem, 4.4vw, 5.1rem);
}

.agency-system__layers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

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

.agency-system__layers--partnership article {
  position: relative;
}

.agency-system__layers--partnership article::before {
  position: absolute;
  top: 3.05rem;
  right: -0.45rem;
  z-index: 2;
  width: 0.8rem;
  height: 0.8rem;
  border: 2px solid var(--yh-ink);
  border-radius: 50%;
  background: var(--yh-signal);
  content: "";
}

.agency-system__layers--partnership article:last-child::before {
  display: none;
}

.agency-system__layers--platforms article:nth-child(2) {
  background: rgba(78, 94, 211, 0.16);
}

.agency-system__layers--studio article:nth-child(2) {
  background: rgba(158, 232, 222, 0.08);
}

.agency-system__layers article {
  min-height: 22rem;
  padding: clamp(1.6rem, 3vw, 2.7rem);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.agency-system__layers span {
  display: inline-block;
  margin-bottom: clamp(4rem, 8vw, 7rem);
  color: var(--yh-signal);
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.1em;
}

.agency-system__layers h3 {
  font-size: clamp(1.7rem, 2.5vw, 2.7rem);
}

.agency-system__layers p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
}

.agency-page__cta a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--yh-display);
  font-size: clamp(2.8rem, 7vw, 7.5rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.95;
  text-decoration: none;
}

.agency-page__cta svg {
  width: 0.75em;
  height: 0.75em;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 260ms var(--yh-ease);
}

.agency-page__cta a:hover svg {
  transform: translateX(0.35rem);
}

.studio-profile {
  background: var(--yh-cobalt);
  color: var(--yh-white);
}

.studio-profile__grid,
.engagement-fit__intro {
  display: grid;
  grid-template-columns: minmax(16rem, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(3rem, 9vw, 9rem);
  align-items: center;
}

.studio-profile__identity {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--yh-radius);
  background: rgba(21, 24, 27, 0.18);
}

.studio-profile__identity > img {
  display: block;
  width: clamp(5.5rem, 9vw, 8rem);
  height: clamp(5.5rem, 9vw, 8rem);
  margin-bottom: clamp(3rem, 7vw, 6rem);
  border-radius: 50%;
  object-fit: cover;
}

.studio-profile__identity .eyebrow { color: var(--yh-aqua); }
.studio-profile__identity strong { display: block; max-width: 22rem; font-family: var(--yh-display); font-size: clamp(1.2rem, 2vw, 1.65rem); line-height: 1.25; }
.studio-profile__copy h2,
.engagement-fit__intro h2 { max-width: 11ch; font-size: clamp(2.4rem, 4.4vw, 5.1rem); }
.studio-profile__copy > p:not(.eyebrow) { max-width: 42rem; color: rgba(255, 255, 255, 0.72); font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.65; }
.studio-profile__copy .text-link { display: inline-flex; margin-top: 0.5rem; color: var(--yh-white); }

.engagement-fit {
  background: var(--yh-paper-deep);
}

.engagement-fit__intro {
  grid-template-columns: minmax(0, 1.15fr) minmax(18rem, 0.7fr);
  align-items: end;
}

.engagement-fit__intro .eyebrow { grid-column: 1 / -1; margin-bottom: -1rem; }
.engagement-fit__intro h2 { margin-bottom: 0; }
.engagement-fit__intro > p:last-child { margin-bottom: 0; color: var(--yh-slate); font-size: 1.1rem; line-height: 1.65; }
.engagement-fit__items { display: grid; margin-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--yh-mist); grid-template-columns: repeat(2, minmax(0, 1fr)); }
.engagement-fit__items article { padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 3vw, 2.5rem) 0 0; }
.engagement-fit__items article:nth-child(2n) { padding-right: 0; padding-left: clamp(1rem, 3vw, 2.5rem); border-left: 1px solid var(--yh-mist); }
.engagement-fit__items article:nth-child(n+3) { margin-top: clamp(1.5rem, 3vw, 2.5rem); border-top: 1px solid var(--yh-mist); }
.engagement-fit__items h3 { font-size: clamp(1.5rem, 2.5vw, 2.4rem); }
.engagement-fit__items p { max-width: 37rem; margin-bottom: 0; color: var(--yh-slate); line-height: 1.65; }

.project-inquiry {
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 10rem);
}

.project-inquiry::before {
  position: absolute;
  top: -15rem;
  right: -8rem;
  width: 38rem;
  height: 38rem;
  border: 1px solid rgba(78, 94, 211, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 5rem rgba(78, 94, 211, 0.025), 0 0 0 10rem rgba(78, 94, 211, 0.02);
  content: "";
}

.project-inquiry__shell {
  position: relative;
  z-index: 1;
}

.project-inquiry__notice {
  padding: 1rem 1.2rem;
  margin: 0 0 2rem;
  border: 1px solid #a43b35;
  border-radius: .75rem;
  background: rgba(164,59,53,.05);
  color: #7d2925;
}

.project-inquiry__notice--success {
  border-color: var(--yh-cobalt);
  background: rgba(78,94,211,.06);
  color: var(--yh-ink);
}

.project-inquiry__intro {
  display: grid;
  margin-bottom: clamp(3rem, 7vw, 6rem);
  grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.55fr);
  gap: clamp(2rem, 8vw, 8rem);
  align-items: end;
}

.project-inquiry__intro h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(2.5rem, 4.8vw, 5.3rem);
}

.project-inquiry__intro > p {
  margin: 0;
  color: var(--yh-slate);
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.65;
}

.project-inquiry__app {
  display: grid;
  min-height: 46rem;
  overflow: hidden;
  border: 1px solid rgba(21, 24, 27, 0.18);
  border-radius: calc(var(--yh-radius) + 0.55rem);
  background: var(--yh-white);
  box-shadow: 0 2.2rem 6rem rgba(21, 24, 27, 0.11);
  grid-template-columns: minmax(14rem, 0.32fr) minmax(0, 1fr);
}

.project-inquiry__app [hidden] {
  display: none !important;
}

.project-inquiry__rail {
  display: flex;
  padding: clamp(1.8rem, 3vw, 3rem);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--yh-ink);
  background-size: 3rem 3rem;
  color: var(--yh-white);
  flex-direction: column;
}

.project-inquiry__counter {
  display: flex;
  margin-bottom: 4rem;
  align-items: baseline;
  gap: 0.25rem;
  font-family: var(--yh-display);
}

.project-inquiry__counter span { color: var(--yh-signal); font-size: 4rem; line-height: 0.8; }
.project-inquiry__counter small { color: rgba(255,255,255,.35); font-size: 1rem; }

.project-inquiry__rail ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.project-inquiry__rail li {
  position: relative;
  display: flex;
  min-height: 3.65rem;
  color: rgba(255,255,255,.38);
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.72rem;
  font-weight: 750;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 250ms ease;
}

.project-inquiry__rail li::after {
  position: absolute;
  top: 0.75rem;
  bottom: -0.2rem;
  left: 0.25rem;
  width: 1px;
  background: rgba(255,255,255,.12);
  content: "";
}

.project-inquiry__rail li:last-child::after { display: none; }
.project-inquiry__rail li i { position: relative; z-index: 1; width: .55rem; height: .55rem; border: 1px solid currentColor; border-radius: 50%; background: var(--yh-ink); }
.project-inquiry__rail li[aria-current="step"] { color: var(--yh-white); }
.project-inquiry__rail li[aria-current="step"] i { border-color: var(--yh-signal); background: var(--yh-signal); box-shadow: 0 0 0 .35rem rgba(246,227,46,.09); }
.project-inquiry__rail li.is-complete { color: var(--yh-aqua); }
.project-inquiry__rail > p { margin: auto 0 0; color: var(--yh-aqua); font-size: .68rem; font-weight: 750; letter-spacing: .06em; text-transform: uppercase; }
.project-inquiry__rail > p small { color: rgba(255,255,255,.42); font-size: .62rem; font-weight: 500; letter-spacing: 0; text-transform: none; }

.project-inquiry__form {
  display: flex;
  min-width: 0;
  padding: clamp(2rem, 5vw, 5rem);
  flex-direction: column;
}

.project-inquiry__steps { flex: 1; }
.project-inquiry__step { padding: 0; margin: 0; border: 0; animation: yh-inquiry-step 440ms var(--yh-ease) both; }
.project-inquiry__step[hidden] { display: none; }

@keyframes yh-inquiry-step {
  from { opacity: 0; transform: translateY(1rem); }
  to { opacity: 1; transform: translateY(0); }
}

.project-inquiry__step legend {
  display: flex;
  max-width: 14ch;
  padding: 0;
  margin-bottom: 1rem;
  font-family: var(--yh-display);
  font-size: clamp(2.4rem, 4.5vw, 4.6rem);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 0.98;
  flex-direction: column;
}

.project-inquiry__step legend span {
  margin-bottom: 1rem;
  color: var(--yh-cobalt);
  font-family: var(--yh-body);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.project-inquiry__step > p { max-width: 42rem; margin-bottom: 2rem; color: var(--yh-slate); }
.project-choice-grid { display: grid; gap: .75rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.project-choice-grid--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }

.project-choice {
  position: relative;
  display: flex;
  min-height: 5.4rem;
  padding: 1rem;
  border: 1px solid var(--yh-mist);
  border-radius: .9rem;
  cursor: pointer;
  align-items: center;
  gap: .9rem;
  transition: border-color 180ms ease, background-color 180ms ease, transform 240ms var(--yh-ease);
}

.project-choice:hover { border-color: rgba(78,94,211,.5); transform: translateY(-.1rem); }
.project-choice:has(input:checked) { border-color: var(--yh-cobalt); background: rgba(78,94,211,.06); }
.project-choice input, .project-consent input { position: absolute; width: 1px; height: 1px; opacity: 0; }

.project-choice__mark {
  display: grid;
  width: 1.55rem;
  min-width: 1.55rem;
  height: 1.55rem;
  border: 1px solid var(--yh-mist);
  border-radius: 50%;
  place-items: center;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.project-choice__mark svg { width: .8rem; height: .8rem; fill: none; stroke: var(--yh-white); stroke-width: 2.2; opacity: 0; }
.project-choice input:checked + .project-choice__mark, .project-consent input:checked + .project-choice__mark { border-color: var(--yh-cobalt); background: var(--yh-cobalt); }
.project-choice input:checked + .project-choice__mark svg, .project-consent input:checked + .project-choice__mark svg { opacity: 1; }
.project-choice input:focus-visible + .project-choice__mark, .project-consent input:focus-visible + .project-choice__mark { outline: 3px solid rgba(78,94,211,.25); outline-offset: 3px; }
.project-choice strong { display: block; font-family: var(--yh-display); font-size: 1rem; line-height: 1.1; }
.project-choice small { display: block; margin-top: .35rem; color: var(--yh-slate); font-size: .7rem; line-height: 1.35; }

.project-field-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.project-field, .project-field-grid label { display: flex; margin-bottom: 1rem; flex-direction: column; gap: .5rem; }
.project-field > span, .project-field-grid label > span { font-size: .68rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.project-field span small { color: var(--yh-slate); font: inherit; font-weight: 500; }
.project-field input, .project-field textarea, .project-field-grid input, .project-field-grid select {
  width: 100%;
  min-height: 3.7rem;
  padding: .85rem 1rem;
  border: 1px solid var(--yh-mist);
  border-radius: .7rem;
  background: var(--yh-paper);
  color: var(--yh-ink);
  font: inherit;
}
.project-field textarea { resize: vertical; }
.project-field input:focus, .project-field textarea:focus, .project-field-grid input:focus, .project-field-grid select:focus { border-color: var(--yh-cobalt); outline: 3px solid rgba(78,94,211,.12); }

.project-consent { display: flex; max-width: 43rem; margin-top: 1.3rem; cursor: pointer; align-items: flex-start; gap: .8rem; color: var(--yh-slate); font-size: .75rem; line-height: 1.45; }
.project-inquiry__validation { min-height: 1.5rem; margin-top: 1rem; color: #a43b35; font-size: .75rem; font-weight: 650; }
.project-inquiry__actions { display: flex; padding-top: 1.25rem; border-top: 1px solid var(--yh-mist); align-items: center; justify-content: flex-end; gap: .75rem; }
.project-inquiry__actions [data-inquiry-back], .project-inquiry__actions [data-inquiry-next] { display: none; }
.js .project-inquiry__actions [data-inquiry-back]:not([hidden]), .js .project-inquiry__actions [data-inquiry-next]:not([hidden]) { display: inline-flex; }
.project-inquiry__actions .button { border: 1px solid var(--yh-ink); cursor: pointer; }
.project-inquiry__actions [data-inquiry-back] { margin-right: auto; }
.project-inquiry__actions [data-inquiry-back] svg { transform: rotate(180deg); }
.project-inquiry__actions button[hidden] { display: none; }
.project-inquiry__actions button:disabled { cursor: wait; opacity: .55; }
.project-inquiry__trap { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

.project-inquiry__success {
  min-height: 46rem;
  padding: clamp(3rem, 8vw, 8rem);
  background: var(--yh-signal);
  color: var(--yh-ink);
  grid-column: 1 / -1;
  align-content: center;
}
.project-inquiry__success[hidden] { display: none; }
.project-inquiry__success > span { display: grid; width: 4.5rem; height: 4.5rem; margin-bottom: 3rem; border: 1px solid currentColor; border-radius: 50%; place-items: center; }
.project-inquiry__success svg { width: 2rem; height: 2rem; fill: none; stroke: currentColor; }
.project-inquiry__success h2 { max-width: 11ch; font-size: clamp(2.8rem, 5.5vw, 5.8rem); }
.project-inquiry__success > p:not(.eyebrow) { max-width: 42rem; font-size: 1.15rem; }
.project-inquiry__success small { display: inline-block; padding: .65rem .9rem; margin-top: 2rem; border: 1px solid rgba(21,24,27,.28); border-radius: 999px; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 760px) {
  .project-inquiry__intro, .project-inquiry__app { grid-template-columns: 1fr; }
  .project-inquiry__rail { padding: 1.3rem; }
  .project-inquiry__counter, .project-inquiry__rail > p, .project-inquiry__rail li span { display: none; }
  .project-inquiry__rail ol { display: grid; grid-template-columns: repeat(5, 1fr); }
  .project-inquiry__rail li { min-height: 1rem; align-items: center; }
  .project-inquiry__rail li::after { top: .25rem; right: -.2rem; bottom: auto; left: .25rem; width: auto; height: 1px; }
  .project-inquiry__form { padding: 1.5rem; }
  .project-choice-grid, .project-choice-grid--compact, .project-field-grid { grid-template-columns: 1fr; }
  .project-choice { min-height: 4.6rem; }
  .project-inquiry__actions { align-items: stretch; flex-direction: column-reverse; }
  .project-inquiry__actions .button, .project-inquiry__actions [data-inquiry-back] { width: 100%; margin: 0; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  .project-inquiry__step { animation: none; }
}

.case-next {
  padding-block: 6rem;
  background: var(--yh-signal);
}

.case-next a {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--yh-display);
  font-size: clamp(2.5rem, 6vw, 6rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1;
  text-decoration: none;
}

.case-next svg {
  width: 0.8em;
  height: 0.8em;
}

.error-page__inner {
  display: flex;
  min-height: 55vh;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.error-page h1 {
  max-width: 13ch;
  font-size: clamp(2.7rem, 5.4vw, 5.6rem);
}

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

.js [data-reveal] {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 720ms ease calc(var(--reveal-order, 0) * 45ms), transform 720ms var(--yh-ease) calc(var(--reveal-order, 0) * 45ms);
}

.js [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: 260ms var(--yh-ease) both yh-page-out;
}

::view-transition-new(root) {
  animation: 520ms var(--yh-ease) both yh-page-in;
}

@keyframes yh-page-out {
  to { opacity: 0; transform: translateY(-0.4rem); }
}

@keyframes yh-page-in {
  from { opacity: 0; transform: translateY(0.8rem); }
}

@media (max-width: 1000px) {
  :root {
    --yh-shell: min(1320px, calc(100% - 2rem));
  }

  .site-header__inner {
    min-height: 5.3rem;
  }

  .site-brand {
    width: 7.5rem;
  }

  .site-nav-toggle {
    position: relative;
    z-index: 102;
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    display: flex;
    visibility: hidden;
    width: 100vw;
    height: 100dvh;
    min-height: 100vh;
    padding: 8rem 1.5rem 2rem;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: var(--yh-ink);
    opacity: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    transform: translateY(-0.75rem);
    transition: opacity 240ms ease, visibility 240ms ease, transform 420ms var(--yh-ease);
  }

  .nav-open .site-nav {
    visibility: visible;
    opacity: 1;
    transform: none;
  }

  .nav-open .site-nav-toggle__open {
    display: none;
  }

  .nav-open .site-nav-toggle__close {
    display: block;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .site-nav__list a {
    font-family: var(--yh-display);
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.04em;
  }

  .site-nav__list a::after {
    bottom: 0;
  }

  .site-nav__cta {
    align-self: flex-start;
  }

  .language-switcher {
    align-self: flex-start;
    margin-top: auto;
  }

  .language-switcher__item {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.68rem;
  }

  .hero__grid,
  .archive-hero__grid,
  .case-hero__grid {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    width: 100%;
    max-width: 48rem;
    transform: none;
  }

  .client-line__inner {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

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

  .client-line__logos a:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

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

  .platform-strip__inner > span:nth-child(2) {
    border-right: 1px solid rgba(21, 24, 27, 0.12);
  }

  .platform-strip__inner > span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(21, 24, 27, 0.12);
  }

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

  .capability-grid {
    grid-template-columns: 1fr;
    border-bottom: 0;
  }

  .capability,
  .capability:first-child {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .capability > span {
    margin-bottom: 2rem;
  }

  .about-grid,
  .proposal-bridge__inner,
  .studio-profile__grid,
  .engagement-fit__intro,
  .agency-page__hero-grid,
  .agency-system__intro,
  .case-story__lead {
    grid-template-columns: 1fr;
  }

  .agency-page__hero-grid,
  .archive-hero__grid {
    grid-template-columns: 1fr;
  }

  .case-screens__grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(13rem, 0.55fr);
  }

  .case-screen--mobile {
    grid-column: 2;
    margin-top: 1rem;
  }

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

@media (min-width: 783px) and (max-width: 1000px) {
  body.admin-bar .site-nav {
    height: calc(100dvh - 32px);
    min-height: calc(100vh - 32px);
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-nav {
    height: calc(100dvh - 46px);
    min-height: calc(100vh - 46px);
  }
}

@media (max-width: 720px) {
  .hero {
    min-height: auto;
    padding: 8.5rem 0 6rem;
  }

  .hero__grid {
    gap: 2.5rem;
  }

  .hero__copy h1 {
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .hero-showcase {
    border-radius: var(--yh-radius);
  }

  .hero-demo__browserbar {
    padding-inline: 0.65rem;
  }

  .hero-demo__live {
    font-size: 0;
  }

  .hero-demo__live i {
    width: 0.45rem;
    height: 0.45rem;
  }

  .hero-demo__sitebar {
    padding: 0.6rem 0.65rem;
    flex-wrap: wrap;
  }

  .hero-demo__brand {
    min-width: 0;
    flex: 1;
  }

  .hero-demo__utility {
    display: none;
  }

  .hero-demo__tabs {
    width: 100%;
    padding-top: 0.48rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    flex-basis: 100%;
    justify-content: space-between;
  }

  .hero-demo__tabs button {
    padding-inline: 0.62rem;
  }

  .hero-demo__viewport {
    min-height: 24rem;
  }

  .hero-demo__panel {
    padding: 0.85rem;
  }

  .hero-demo__panel--overview {
    padding: 0;
  }

  .hero-demo__overview-copy {
    bottom: 5rem;
    left: 1rem;
    max-width: 88%;
  }

  .hero-demo__overview-copy > strong {
    font-size: 1.65rem;
  }

  .hero-demo__quicklinks {
    right: 0.6rem;
    bottom: 0.6rem;
    left: 0.6rem;
  }

  .hero-demo__quicklinks span {
    padding: 0.58rem 0.3rem;
    font-size: 0.42rem;
  }

  .hero-demo__panel-heading {
    min-height: 6.1rem;
    flex-direction: column;
    gap: 0.55rem;
  }

  .hero-demo__panel-heading > div > strong {
    font-size: 1.25rem;
  }

  .hero-demo__search,
  .hero-demo__counter {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-demo__directory-grid article {
    min-height: 4.2rem;
  }

  .hero-demo__taxonomy {
    overflow-x: auto;
  }

  .hero-demo__service-map {
    overflow-x: auto;
    padding-bottom: 0.45rem;
    grid-template-columns: repeat(3, minmax(13rem, 78%));
    scroll-snap-type: x mandatory;
  }

  .hero-demo__service-map article {
    min-height: 17.2rem;
    scroll-snap-align: start;
  }

  .hero-demo__service-map article > span {
    margin-bottom: 5.5rem;
  }

  .hero-demo__activity-layout {
    grid-template-columns: 1fr;
  }

  .hero-demo__feature-story {
    min-height: 8.2rem;
  }

  .hero-demo__feed {
    gap: 0.4rem;
  }

  .hero-demo__feed article {
    min-height: 3.7rem;
  }

  .hero-demo__footer {
    gap: 0.6rem;
  }

  .hero-demo__footer span:not(.hero-demo__status):not(:last-child) {
    display: none;
  }

  .platform-strip__inner {
    grid-template-columns: 1fr;
  }

  .platform-strip__inner > span,
  .platform-strip__inner > span:nth-child(2),
  .platform-strip__inner > span:last-child {
    min-height: 4.25rem;
    border-right: 1px solid rgba(21, 24, 27, 0.12);
    border-bottom: 1px solid rgba(21, 24, 27, 0.12);
  }

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

  .client-line__logos a:nth-child(odd) {
    border-left: 1px solid rgba(255, 255, 255, 0.12);
  }

  .section {
    padding-block: 5rem;
  }

  .founder-note { grid-template-columns: 1fr; }
  .founder-note__portrait { width: 3.6rem; height: 3.6rem; }
  .proof-row__source { align-items: flex-start; flex-direction: column; }
  .engagement-fit__items { grid-template-columns: 1fr; }
  .engagement-fit__items article:nth-child(2n),
  .engagement-fit__items article:nth-child(n+3) { padding-right: 0; padding-left: 0; margin-top: 0; border-left: 0; }
  .engagement-fit__items article + article { border-top: 1px solid var(--yh-mist); }

  .work-grid,
  .work-grid--featured .work-card:first-child > a {
    grid-template-columns: 1fr;
  }

  .work-grid--featured .work-card:first-child {
    grid-column: auto;
  }

  .work-card__visual {
    aspect-ratio: 4 / 3;
  }

  .work-card__content {
    min-height: 18rem;
  }

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

  .approach-copy {
    position: static;
  }

  .proof-row {
    grid-template-columns: 1fr;
  }

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

  .site-footer__top {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .site-footer__grid {
    gap: 2.5rem;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.7rem;
  }

  .archive-hero,
  .case-hero {
    padding-block: 9rem 4rem;
  }

  .case-facts {
    grid-template-columns: 1fr;
  }

  .case-story__lead,
  .case-story__chapters,
  .case-story__closing,
  .case-screens__heading,
  .case-screens__grid,
  .agency-card-grid,
  .agency-system__layers {
    grid-template-columns: 1fr;
  }

  .case-story__closing {
    gap: 1.5rem;
  }

  .case-screen--tablet,
  .case-screen--mobile {
    grid-column: auto;
    width: min(100%, 30rem);
    margin-top: 1rem;
  }

  .case-screen--mobile {
    width: min(72%, 18rem);
  }

  .agency-card {
    min-height: auto;
  }

  .agency-card__top {
    margin-bottom: 3rem;
  }

  .agency-system__layers article {
    min-height: auto;
  }

  .agency-system__layers span {
    margin-bottom: 3rem;
  }

  .agency-page__hero {
    padding-block: 9rem 5rem;
  }

  .agency-page__hero h1 {
    font-size: clamp(2.8rem, 12vw, 4.25rem);
  }

  .agency-visual {
    min-height: 39rem;
    border-radius: var(--yh-radius);
  }

  .agency-visual__bar,
  .agency-visual__footer {
    padding-inline: 0.9rem;
    font-size: 0.56rem;
  }

  .agency-visual__footer {
    gap: 0.4rem;
  }

  .agency-product-map__canvas {
    inset: 4rem 0 3.5rem;
    display: grid;
    padding: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: center;
    gap: 0.7rem;
  }

  .agency-product-map__canvas > svg {
    display: none;
  }

  .agency-product-map__node,
  .agency-product-map__core {
    position: relative;
    inset: auto;
    width: auto;
    height: auto;
    transform: none;
  }

  .agency-product-map__core {
    grid-column: 1 / -1;
    grid-row: 1;
    min-height: 9.5rem;
    border-radius: 1.2rem;
    box-shadow: none;
  }

  .agency-product-map__core strong {
    max-width: none;
    font-size: 1.85rem;
  }

  .agency-product-map__node {
    min-height: 8rem;
    padding: 1rem;
    align-items: flex-start;
  }

  .agency-product-map__node > svg {
    position: static;
    width: 1.2rem;
    height: 1.2rem;
    margin-bottom: 0.75rem;
    transform: none;
  }

  .agency-product-map__node strong {
    font-size: 0.88rem;
  }

  .agency-product-map__node small {
    font-size: 0.54rem;
  }

  .agency-rhythm {
    min-height: 38rem;
  }

  .agency-rhythm__timeline {
    padding: 2rem 1rem 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  .agency-rhythm__timeline::before {
    display: none;
  }

  .agency-rhythm__timeline li > button {
    min-height: 11.5rem;
    padding: 1rem 0.6rem;
    border: 1px solid rgba(21, 24, 27, 0.22);
    border-radius: 1rem;
  }

  .agency-rhythm__timeline li > button > span {
    width: 3.3rem;
    height: 3.3rem;
    margin-bottom: 0.8rem;
  }

  .agency-rhythm__signal {
    max-width: calc(100% - 2rem);
    margin-top: 0.8rem;
    gap: 0.4rem;
    font-size: 0.5rem;
    text-align: center;
  }

  .agency-studio-map {
    min-height: 42rem;
  }

  .agency-studio-map__orbit {
    top: 47%;
    width: 21rem;
    height: 20rem;
  }

  .agency-studio-map__core {
    width: 8.2rem;
    height: 8.2rem;
  }

  .agency-studio-map__satellite {
    width: 5.2rem;
    height: 5.2rem;
    font-size: 0.72rem;
  }

  .agency-studio-map__satellite--strategy { top: -1.5rem; left: 2rem; }
  .agency-studio-map__satellite--design { top: 1.5rem; right: -0.8rem; }
  .agency-studio-map__satellite--engineering { right: 1.5rem; bottom: -1.5rem; }
  .agency-studio-map__satellite--care { bottom: 1rem; left: -0.8rem; }

  .agency-studio-map__places {
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0.5rem;
  }

  .agency-studio-map__places strong {
    font-size: 0.82rem;
  }

  .agency-studio-map__places em {
    grid-column: 1 / -1;
    margin: 0.4rem auto 0;
  }

  .agency-brief-demo {
    min-height: 43rem;
  }

  .agency-brief-demo__choices {
    grid-template-columns: 1fr;
  }

  .agency-brief-demo__choices button {
    min-height: 6.5rem;
    padding-left: 4.2rem;
    justify-content: center;
  }

  .agency-brief-demo__choices button > span {
    position: absolute;
    top: 50%;
    left: 1rem;
    margin: 0;
    transform: translateY(-50%);
  }

  .agency-brief-demo__choices strong {
    margin-top: 0;
  }

  .work-index-demo {
    min-height: 43rem;
  }

  .work-index-demo__canvas {
    padding: 1rem;
    grid-template-columns: 1fr;
  }

  .work-index-demo__signal {
    min-height: 8.5rem;
    border-radius: 1rem;
  }

  .work-index-demo__signal span {
    font-size: 3.5rem;
  }

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

  .agency-system__layers--partnership article::before {
    display: none;
  }

  .case-next a {
    align-items: flex-start;
  }
}

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

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

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