/* [project]/src/styles/home-redesign.css [app-client] (css) */
:root {
  --ground: #fff;
  --paper: #f5f3ef;
  --paper-2: #efece6;
  --ink: #16130f;
  --ink-soft: #35312b;
  --muted: #6e6a62;
  --faint: #9a958c;
  --hairline: #e5e1da;
  --hairline-strong: #d6d1c8;
  --accent: #a70000;
  --accent-ink: #870000;
  --on-accent: #fff;
  --code-bg: #f0ede7;
  --sans: var(--font-geist-sans), ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --serif: var(--font-geist-sans), ui-sans-serif, system-ui, sans-serif;
  --mono: var(--font-geist-mono), ui-monospace, "SF Mono", "Cascadia Code", "Segoe UI Mono", Consolas, monospace;
  --s1: 8px;
  --s2: 8px;
  --s3: 16px;
  --s4: 16px;
  --s5: 24px;
  --s6: 32px;
  --s7: 48px;
  --s8: 64px;
  --s9: 96px;
  --s10: 128px;
  --section-y: clamp(72px, 9vw, 144px);
  --hx-radius: 0px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

.dark {
  --ground: #040707;
  --paper: #0b0f0f;
  --paper-2: #121717;
  --ink: #f3efe8;
  --ink-soft: #d7d2c8;
  --muted: #9f9a8f;
  --faint: #726d64;
  --hairline: #1b2121;
  --hairline-strong: #2a3131;
  --accent: #e23b34;
  --accent-ink: #f0574f;
  --on-accent: #fff;
  --code-bg: #121717;
}

.hx {
  background: var(--ground);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizelegibility;
  letter-spacing: -.006em;
  transition: background .4s var(--ease), color .4s var(--ease);
  font-size: 17px;
  line-height: 1.6;
  position: relative;
  overflow-x: clip;
}

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

.hx {
  --mock-num: var(--accent);
  --mock-sub: var(--muted);
}

.dark .hx {
  --mock-num: #fff;
  --mock-sub: #ffffffd1;
}

.hx h1, .hx h2, .hx h3, .hx h4 {
  letter-spacing: -.03em;
  text-wrap: balance;
  color: var(--ink);
  margin: 0;
  font-weight: 600;
  line-height: 1.03;
}

.hx p {
  margin: 0;
}

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

.hx img {
  max-width: 100%;
  display: block;
}

.hx button {
  font: inherit;
  cursor: pointer;
}

.hx ::selection {
  background: var(--accent);
  color: var(--on-accent);
}

.hx :focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

.hx .container {
  width: 100%;
  max-width: none;
  margin-inline: auto;
  padding-inline: 12%;
}

.hx .eyebrow {
  font-family: var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  align-items: center;
  gap: var(--s3);
  font-size: 12px;
  font-weight: 500;
  display: flex;
}

.hx .eyebrow .idx {
  color: var(--accent);
}

.hx .eyebrow:after {
  content: "";
  background: var(--hairline-strong);
  flex: 0 0 44px;
  height: 1px;
}

.hx .section {
  padding-block: var(--section-y);
}

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

.hx .section-head {
  max-width: 720px;
}

.hx .section-head h1, .hx .section-head h2 {
  text-wrap: balance;
  margin-top: 0;
  font-size: 44px;
}

.hx .lede {
  font-size: 18px;
}

.hx .section-head .lede {
  color: var(--muted);
  margin-top: var(--s5);
  letter-spacing: -.01em;
  max-width: 60ch;
  font-size: 18px;
}

.hx .em {
  color: var(--accent);
}

.hx .serif {
  font-family: var(--serif);
  letter-spacing: -.02em;
  font-weight: 400;
}

.hx .btn {
  align-items: center;
  gap: var(--s3);
  border-radius: var(--hx-radius);
  letter-spacing: -.01em;
  height: 48px;
  transition: transform .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
  white-space: nowrap;
  border: 1px solid #0000;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
}

.hx .btn .arrow {
  transition: transform .3s var(--ease);
}

.hx .btn:hover .arrow {
  transform: translateX(4px);
}

.hx .btn--primary {
  background: var(--ink);
  color: var(--ground);
}

.hx .btn--primary:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.hx .btn--ghost {
  border-color: var(--hairline-strong);
  color: var(--ink);
  background: none;
}

.hx .btn--ghost:hover {
  border-color: var(--ink);
}

.hx .btn--lg {
  height: 52px;
  padding: 0 28px;
  font-size: 16px;
}

.hx .reveal {
  opacity: 0;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transform: translateY(22px);
}

.hx .reveal.in {
  opacity: 1;
  transform: none;
}

.hx [data-stagger] > * {
  transition-delay: var(--d, 0s);
}

@media (prefers-reduced-motion: reduce) {
  .hx .reveal {
    transition: none;
    opacity: 1 !important;
    transform: none !important;
  }
}

.hx .hero {
  flex-direction: column;
  justify-content: center;
  min-height: 90vh;
  padding-top: clamp(56px, 7vw, 104px);
  padding-bottom: clamp(48px, 6vw, 88px);
  display: flex;
  position: relative;
  overflow: hidden;
}

.hx .hero-field {
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .92;
  background-image: url("/images/hero-home.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: min(44%, 640px);
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(48px, 9vw, 140px);
}

@media (min-width: 1250px) {
  .hx .hero-sub {
    max-width: min(54ch, 44vw);
  }
}

.hx .hero .container {
  z-index: 1;
  width: 100%;
  position: relative;
}

.hx .hero-art {
  display: none;
}

@media (max-width: 1249px) {
  .hx .hero-field {
    display: none;
  }

  .hx .hero-lead {
    max-width: none;
  }

  .hx .hero-art {
    aspect-ratio: 4 / 3;
    background-image: url("/images/hero-home.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    display: block;
  }
}

@media (max-width: 1249px) and (min-width: 761px) {
  .hx .hero .hero-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    align-items: center;
    gap: clamp(20px, 3vw, 44px);
    display: grid;
  }

  .hx .hero-art {
    justify-self: end;
    max-width: 540px;
    margin: 0;
  }
}

@media (max-width: 760px) {
  .hx .hero:before {
    display: none;
  }

  .hx .hero .hero-grid {
    flex-direction: column;
    align-items: stretch;
    display: flex;
  }

  .hx .hero-art {
    aspect-ratio: auto;
    background-image: url("/images/Common%20Background.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    max-width: none;
    margin-top: clamp(20px, 4vw, 32px);
    margin-left: calc(50% - 50vw);
    padding-block: clamp(24px, 6vw, 40px);
  }

  .hx .hero-art:before {
    content: "";
    aspect-ratio: 1;
    background-image: url("/images/hero-home.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: min(94%, 460px);
    margin-inline: auto;
    display: block;
  }
}

.hx .hero-grid {
  align-items: center;
  min-height: auto;
  display: flex;
}

.hx .hero, .hx .svc-hero, .hx .about-hero, .hx .culture-hero, .hx .career-hero, .hx .open-positions-hero, .hx .bym-hero, .hx .blog-hero, .hx .res-hero, .hx .cs-listing-hero, .hx .dsai-hero, .hx .cld-hero, .hx .msft-hero, .hx .sf-hero, .hx .wad-hero, .hx .sol-hero {
  position: relative;
}

.hx .hero:before, .hx .svc-hero:before, .hx .about-hero:before, .hx .culture-hero:before, .hx .career-hero:before, .hx .open-positions-hero:before, .hx .bym-hero:before, .hx .blog-hero:before, .hx .res-hero:before, .hx .cs-listing-hero:before, .hx .dsai-hero:before, .hx .cld-hero:before, .hx .msft-hero:before, .hx .sf-hero:before, .hx .wad-hero:before, .hx .sol-hero:before {
  content: "";
  z-index: 0;
  pointer-events: none;
  background-image: url("/images/Common%20Background.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  inset: 0;
}

@media (max-width: 760px) {
  .hx .svc-hero:before {
    display: none;
  }
}

.hx .sol-hero .container {
  z-index: 1;
  position: relative;
}

@media (min-width: 1151px) {
  .hx .sol-hero.interior-hero {
    min-height: 500px;
  }
}

.hx .sol-hero-field {
  z-index: 0;
  pointer-events: none;
  background-image: url("/images/solutions-page.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: min(40%, 560px);
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(48px, 9vw, 140px);
}

.hx .sol-hero-art {
  display: none;
}

@media (min-width: 1151px) {
  .hx .sol-hero .section-head {
    max-width: clamp(420px, 35vw, 720px);
  }
}

@media (max-width: 1150px) {
  .hx .sol-hero:before {
    display: none;
  }

  .hx .sol-hero {
    padding-bottom: clamp(28px, 7vw, 44px);
  }

  .hx .sol-hero-field {
    display: none;
  }

  .hx .sol-hero-art {
    background-image: url("/images/Common%20Background.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    margin-top: clamp(28px, 7vw, 44px);
    margin-left: calc(50% - 50vw);
    padding-block: clamp(24px, 6vw, 40px);
    display: block;
  }

  .hx .sol-hero-art:before {
    content: "";
    aspect-ratio: 3 / 2;
    background-image: url("/images/solutions-page.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: min(94%, 460px);
    margin-inline: auto;
    display: block;
  }
}

.hx .hero-visual {
  width: 100%;
  position: relative;
}

.hx .hero-media {
  width: 100%;
  max-width: 620px;
  margin-inline: auto;
  position: relative;
}

.hx .hero-media-img {
  width: 100%;
  height: auto;
  display: block;
}

.hx .hero-media-dark, .dark .hx .hero-media-light {
  display: none;
}

.dark .hx .hero-media-dark {
  display: block;
}

.dark .hx .hero-media {
  background: none;
}

.dark .hx .hero-media-dark {
  -webkit-mask-composite: source-in;
  -webkit-mask-image: linear-gradient(to right, #0000, #000 9% 91%, #0000), linear-gradient(#0000, #000 9% 91%, #0000);
  mask-image: linear-gradient(to right, #0000, #000 9% 91%, #0000), linear-gradient(#0000, #000 9% 91%, #0000);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.hx .isohero {
  aspect-ratio: 1;
  touch-action: pan-y;
  --i-top: #fff;
  --i-left: #f1efe9;
  --i-right: #e6e2da;
  --i-line: #17130e;
  --i-soft: #c7c2b8;
  --i-dim: #8b8578;
  --i-dot: #d9d5cc;
  width: 100%;
  max-width: 660px;
  margin-inline: auto;
  position: relative;
}

.dark .hx .isohero {
  --i-top: #17140f;
  --i-left: #1c1915;
  --i-right: #131110;
  --i-line: #f2eee6;
  --i-soft: #4a453d;
  --i-dim: #8f8a7f;
  --i-dot: #2a2620;
}

.hx .isohero-dots {
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(var(--i-dot) 1.3px, transparent 1.3px);
  opacity: .6;
  background-size: 24px 24px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: radial-gradient(70% 70% at 50% 48%, #000 55%, #0000);
  mask-image: radial-gradient(70% 70% at 50% 48%, #000 55%, #0000);
}

.hx .isohero-glow {
  z-index: 0;
  pointer-events: none;
  filter: blur(12px);
  background: radial-gradient(closest-side, #e306131f, #0000);
  width: 52%;
  height: 48%;
  animation: 5s ease-in-out infinite iso-breathe;
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hx .isohero svg {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  overflow: visible;
}

.hx .iso-line {
  stroke: var(--i-line);
}

.hx .iso-ai {
  font-family: var(--sans);
  fill: #fff;
  font-weight: 800;
}

.hx .iso-lbl {
  font-family: var(--mono);
  fill: var(--i-dim);
  letter-spacing: .03em;
  font-size: 10.5px;
}

.hx .iso-flow {
  stroke: #e30613;
  stroke-width: 2.4px;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 2 12;
  animation: 1.1s linear infinite iso-flow;
}

.hx .iso-glowpool {
  transform-box: fill-box;
  transform-origin: center;
  animation: 5s ease-in-out infinite iso-pool;
}

.hx .iso-orb {
  transform-box: fill-box;
  transform-origin: center;
  animation: 4.6s ease-in-out infinite iso-pool;
}

.hx .iso-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: 4.4s ease-out infinite iso-pulsering;
}

.hx .iso-rise {
  transform-box: fill-box;
  transform-origin: center;
  animation: 2.4s ease-in-out infinite iso-rise;
}

.hx .iso-para {
  will-change: transform;
}

.hx .iso-float {
  will-change: transform;
  animation: 8s ease-in-out infinite iso-float;
}

.hx .iso-float.b {
  animation-duration: 9.5s;
  animation-delay: -3s;
}

.hx .iso-float.c {
  animation-duration: 7s;
  animation-delay: -1.5s;
}

@keyframes iso-float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes iso-flow {
  to {
    stroke-dashoffset: -14px;
  }
}

@keyframes iso-breathe {
  0%, 100% {
    opacity: .8;
  }

  50% {
    opacity: 1.1;
  }
}

@keyframes iso-pool {
  0%, 100% {
    opacity: .7;
    transform: scale(.94);
  }

  50% {
    opacity: 1;
    transform: scale(1.06);
  }
}

@keyframes iso-pulsering {
  0% {
    opacity: .55;
    transform: scale(.7);
  }

  75%, 100% {
    opacity: 0;
    transform: scale(1.7);
  }
}

@keyframes iso-rise {
  0% {
    opacity: 0;
    transform: translateY(4px);
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(-6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hx .isohero-glow, .hx .iso-flow, .hx .iso-glowpool, .hx .iso-orb, .hx .iso-pulse, .hx .iso-rise, .hx .iso-float {
    animation: none !important;
  }
}

.hx .hero-pill {
  border: 1px solid var(--hairline-strong);
  font-family: var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: color-mix(in srgb, var(--ground) 55%, transparent);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 100px;
  align-items: center;
  gap: 10px;
  padding: 7px 15px 7px 12px;
  font-size: 11.5px;
  display: inline-flex;
}

.hx .hero-pill .live {
  background: var(--accent);
  border-radius: 50%;
  flex: none;
  width: 7px;
  height: 7px;
  position: relative;
}

.hx .hero-pill .live:after {
  content: "";
  background: var(--accent);
  animation: ping 2.4s var(--ease) infinite;
  border-radius: 50%;
  position: absolute;
  inset: 0;
}

.hx .hero-pill .sep {
  background: var(--hairline-strong);
  width: 1px;
  height: 11px;
}

.hx .hero-pill .since {
  color: var(--muted);
}

@keyframes ping {
  0% {
    opacity: .55;
    transform: scale(1);
  }

  70%, 100% {
    opacity: 0;
    transform: scale(3.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hx .hero-pill .live:after {
    animation: none;
  }
}

.hx .hero-title {
  letter-spacing: -.042em;
  max-width: 30ch;
  margin-top: 0;
  font-size: clamp(28px, 3.3vw, 64px);
  line-height: 1.04;
}

.hx .hero-title .ln {
  margin-bottom: -.06em;
  padding-bottom: .1em;
  display: block;
  overflow: hidden;
}

.hx .hero-title .ln-i {
  animation: lineUp .95s var(--ease) forwards;
  will-change: transform;
  display: block;
  transform: translateY(112%);
}

.hx .hero-title .ln:first-child .ln-i {
  animation-delay: 80ms;
}

.hx .hero-title .ln:nth-child(2) .ln-i {
  animation-delay: .2s;
}

.hx .hero-title .ln:nth-child(3) .ln-i {
  animation-delay: .32s;
}

.hx .hero-title .em {
  color: var(--accent);
  font-style: normal;
}

@keyframes lineUp {
  from {
    transform: translateY(112%);
  }

  to {
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hx .hero-title .ln-i {
    animation: none;
    transform: none;
  }
}

@media (max-width: 760px) {
  .hx .hero-title {
    font-size: 44px;
  }
}

.hx .hero-sub {
  color: var(--muted);
  letter-spacing: -.012em;
  max-width: 54ch;
  margin-top: clamp(24px, 2.6vw, 34px);
  font-size: 16.5px;
  line-height: 1.6;
}

.hx .hero-cta {
  align-items: center;
  gap: var(--s5);
  flex-wrap: wrap;
  margin-top: clamp(28px, 3vw, 40px);
  display: flex;
}

.hx .hero-link {
  color: var(--ink);
  align-items: center;
  gap: 9px;
  padding-block: 4px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
  position: relative;
}

.hx .hero-link .arrow {
  transition: transform .3s var(--ease);
}

.hx .hero-link:after {
  content: "";
  background: var(--ink);
  transform-origin: 0;
  width: 100%;
  height: 1.5px;
  transition: transform .35s var(--ease);
  position: absolute;
  bottom: 0;
  left: 0;
  transform: scaleX(0);
}

.hx .hero-link:hover:after {
  transform: scaleX(1);
}

.hx .hero-link:hover .arrow {
  transform: translateX(4px);
}

.hx .hero-panel {
  border: 1px solid var(--hairline);
  background: color-mix(in srgb, var(--ground) 86%, var(--paper));
  gap: var(--s5);
  animation: panelIn 1s var(--ease) .35s both;
  border-radius: 12px;
  flex-direction: column;
  padding: clamp(20px, 1.6vw, 26px);
  display: flex;
  box-shadow: 0 40px 80px -56px #14100a80;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(20px)scale(.985);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hx .hero-panel {
    animation: none;
  }
}

.hx .tp-head {
  justify-content: space-between;
  align-items: center;
  gap: var(--s4);
  display: flex;
}

.hx .tp-head .tp-title {
  font-family: var(--mono);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 11px;
}

.hx .tp-status {
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  display: inline-flex;
}

.hx .tp-status .d {
  background: #21a366;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  box-shadow: 0 0 0 3px #21a36633;
}

.hx .tp-hero {
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s4);
  padding-bottom: var(--s5);
  border-bottom: 1px solid var(--hairline);
  display: flex;
}

.hx .tp-hero .big {
  letter-spacing: -.04em;
  font-variant-numeric: tabular-nums;
  font-size: clamp(34px, 3.4vw, 46px);
  font-weight: 500;
  line-height: .95;
}

.hx .tp-hero .big .u {
  color: var(--accent);
}

.hx .tp-hero .lab {
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  font-size: 10.5px;
}

.hx .tp-spark {
  flex: none;
  width: 96px;
  height: 40px;
}

.hx .tp-chart {
  position: relative;
}

.hx .tp-chart .cap {
  font-family: var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--faint);
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 10.5px;
  display: flex;
}

.hx .tp-chart svg {
  width: 100%;
  height: 92px;
  display: block;
}

.hx .draw {
  stroke-dasharray: 1;
  stroke-dashoffset: 1px;
  animation: draw 1.8s var(--ease) .7s forwards;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.hx .tp-fill {
  opacity: 0;
  animation: fadeArea 1s var(--ease) 1.5s forwards;
}

.hx .tp-dot {
  opacity: 0;
  animation: fadeDot 1s var(--ease) 1.6s forwards;
}

@keyframes fadeArea {
  to {
    opacity: .09;
  }
}

@keyframes fadeDot {
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hx .draw {
    stroke-dashoffset: 0;
    animation: none;
  }

  .hx .tp-fill {
    opacity: .09;
    animation: none;
  }

  .hx .tp-dot {
    opacity: 1;
    animation: none;
  }
}

.hx .tp-row {
  gap: var(--s4);
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.hx .tp-cell {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 14px 16px;
}

.hx .tp-cell .n {
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
  font-size: 22px;
  font-weight: 500;
}

.hx .tp-cell .n .u {
  color: var(--accent);
}

.hx .tp-cell .l {
  font-family: var(--mono);
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 5px;
  font-size: 10px;
}

.hx .tp-foot {
  font-family: var(--mono);
  letter-spacing: .05em;
  color: var(--faint);
  align-items: center;
  gap: 9px;
  font-size: 10.5px;
  display: flex;
}

.hx .tp-foot .dot {
  background: var(--hairline-strong);
  border-radius: 50%;
  width: 4px;
  height: 4px;
}

.hx .hero-metrics {
  border-top: 1px solid var(--hairline);
  flex-wrap: nowrap;
  gap: clamp(8px, 2.5vw, 64px);
  margin-top: clamp(40px, 5vw, 72px);
  padding-top: clamp(24px, 3vw, 36px);
  display: inline-flex;
  position: relative;
}

.hx .hero-metrics .hm {
  flex-direction: column;
  gap: 6px;
  display: flex;
  position: relative;
}

.hx .hero-metrics .hm + .hm {
  padding-left: clamp(8px, 2.5vw, 64px);
}

.hx .hero-metrics .hm + .hm:before {
  content: "";
  background: var(--hairline);
  width: 1px;
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
}

.hx .hero-metrics .n {
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  font-size: clamp(14px, 2.2vw, 38px);
  font-weight: 500;
  line-height: 1;
}

.hx .hero-metrics .n .suf {
  color: var(--accent);
}

.hx .hero-metrics .l {
  font-family: var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  font-size: clamp(7.5px, .85vw, 11px);
}

@media (min-width: 1250px) {
  .hx .hero-metrics:before {
    content: "";
    background: var(--ground);
    filter: blur(22px);
    z-index: -1;
    position: absolute;
    inset: -20px -32px -12px;
  }
}

.hx .clients {
  border-block: 1px solid var(--hairline);
  padding-block: clamp(24px, 3vw, 40px);
}

.hx .clients .kicker {
  text-align: center;
  font-family: var(--mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: var(--s6);
  font-size: 12px;
}

.hx .marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #0000, #000 8% 92%, #0000);
  mask-image: linear-gradient(90deg, #0000, #000 8% 92%, #0000);
}

.hx .marquee-track {
  gap: clamp(40px, 6vw, 88px);
  width: max-content;
  animation: 42s linear infinite scroll-x;
  display: flex;
}

.hx .marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes scroll-x {
  to {
    transform: translateX(-50%);
  }
}

.hx .logo-word {
  align-items: center;
  display: flex;
}

.hx .logo-word img {
  object-fit: contain;
  opacity: .7;
  width: auto;
  height: 41px;
  transition: opacity .3s var(--ease);
  display: block;
}

.hx .logo-word:hover img {
  opacity: 1;
}

.dark .hx .logo-word img {
  opacity: .82;
}

.hx .logo-word .logo-dark, .dark .hx .logo-word .logo-light {
  display: none;
}

.dark .hx .logo-word .logo-dark {
  height: 41px;
  display: block;
}

.hx .logo-word img[src*="client-5"], .dark .hx .logo-word .logo-dark[src*="darklogo-5"] {
  height: 53px;
}

.hx .client-note {
  text-align: center;
  margin-top: var(--s6);
  color: var(--faint);
  font-size: 12.5px;
  font-family: var(--mono);
  letter-spacing: .04em;
}

.hx .sol-layout {
  grid-template-columns: 1.05fr 1fr;
  align-items: stretch;
  gap: clamp(32px, 5vw, 80px);
  margin-top: clamp(48px, 6vw, 80px);
  display: grid;
}

.hx .sol-list {
  border-top: 1px solid var(--hairline);
  flex-direction: column;
  display: flex;
}

.hx .sol-row {
  flex-direction: column;
  flex: 1 1 0;
  min-height: 0;
  display: flex;
}

.hx .sol-layout--stacked {
  grid-template-columns: 1fr;
}

.hx .sol-layout--stacked .sol-row, .hx .sol-layout--stacked .sol-item {
  flex: none;
}

.hx .sol-accordion {
  padding-bottom: var(--s5);
  animation: fade .4s var(--ease);
}

.hx .sol-accordion .sol-preview {
  margin-top: var(--s4);
}

.hx .sol-item {
  text-align: left;
  border: none;
  border-bottom: 1px solid var(--hairline);
  width: 100%;
  padding: var(--s5) 0;
  gap: var(--s5);
  transition: padding-left .35s var(--ease);
  color: var(--muted);
  background: none;
  flex: 1 1 0;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  display: grid;
}

.hx .sol-item .si-idx {
  font-family: var(--mono);
  color: var(--faint);
  letter-spacing: .05em;
  font-size: 12.5px;
}

.hx .sol-item .si-name {
  letter-spacing: -.025em;
  color: var(--ink-soft);
  transition: color .3s var(--ease);
  font-size: 24px;
  font-weight: 600;
}

.hx .sol-item .si-plus {
  opacity: .4;
  width: 20px;
  height: 20px;
  transition: opacity .3s var(--ease);
  position: relative;
}

.hx .sol-item .si-plus:before, .hx .sol-item .si-plus:after {
  content: "";
  background: currentColor;
  position: absolute;
}

.hx .sol-item .si-plus:before {
  height: 1.5px;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.hx .sol-item .si-plus:after {
  width: 1.5px;
  transition: opacity .3s var(--ease);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.hx .sol-item:hover {
  padding-left: var(--s4);
}

.hx .sol-item:hover .si-name {
  color: var(--ink);
}

.hx .sol-item.active {
  padding-left: var(--s4);
}

.hx .sol-item.active .si-name {
  color: var(--ink);
}

.hx .sol-item.active .si-idx {
  color: var(--accent);
}

.hx .sol-item.active .si-plus {
  opacity: 1;
  color: var(--accent);
}

.hx .sol-item.active .si-plus:after {
  opacity: 0;
}

.hx .sol-preview {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--hx-radius);
  flex-direction: column;
  min-height: 0;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.hx .sol-panel {
  animation: fade .5s var(--ease);
  display: none;
}

.hx .sol-panel.show {
  flex-direction: column;
  height: 100%;
  display: flex;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hx .sol-body {
  background: var(--paper);
  flex-direction: column;
  flex: auto;
  padding: clamp(20px, 2vw, 28px);
  display: flex;
}

.hx .sol-body > * {
  animation: sol-rise .5s var(--ease) both;
}

.hx .sol-heading {
  animation-delay: 20ms;
}

.hx .sol-panel h3 {
  animation-delay: 70ms;
}

.hx .sol-panel .p-desc {
  animation-delay: .12s;
}

.hx .sol-chips {
  animation-delay: .17s;
}

.hx .sol-panel .p-value {
  animation-delay: .22s;
}

.hx .sol-case {
  animation-delay: .27s;
}

.hx .sol-actions {
  animation-delay: .32s;
}

@keyframes sol-rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hx .sol-heading {
  justify-content: space-between;
  align-items: center;
  gap: var(--s4);
  flex-wrap: nowrap;
  display: flex;
}

.hx .sol-panel .p-tag {
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  flex: none;
  font-size: 11px;
}

.hx .sol-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex: none;
}

.hx .sol-panel h3 {
  margin-top: var(--s3);
  font-size: 24px;
}

.hx .sol-panel .p-desc {
  color: var(--muted);
  margin-top: var(--s4);
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  min-height: 4.65em;
  font-size: 16px;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
}

.hx .sol-panel .p-value {
  border-radius: var(--hx-radius);
  background: var(--ground);
  border: 1px solid var(--hairline);
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
  padding: 20px;
  display: flex;
}

.hx .sol-panel .p-value .v-num {
  line-height: 1;
  font-family: var(--serif);
  letter-spacing: -.02em;
  font-size: 32px;
}

.hx .sol-panel .p-value .v-lab {
  color: var(--muted);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  flex: auto;
  max-width: 30ch;
  font-size: 13.5px;
  display: -webkit-box;
  overflow: hidden;
}

.hx .sol-chips {
  margin-top: var(--s5);
  margin-bottom: var(--s5);
  scrollbar-width: none;
  flex-wrap: nowrap;
  gap: 8px;
  display: flex;
  overflow-x: auto;
}

.hx .sol-chips::-webkit-scrollbar {
  display: none;
}

.hx .chip {
  font-family: var(--mono);
  letter-spacing: .04em;
  color: var(--ink-soft);
  border: 1.5px solid var(--hairline-strong);
  border-radius: var(--hx-radius);
  flex: none;
  padding: 5px 12px;
  font-size: 11.5px;
  font-weight: 600;
}

.hx .sol-case {
  margin-top: var(--s5);
  align-items: center;
  gap: var(--s4);
  border-radius: var(--hx-radius);
  border: 1px solid var(--hairline);
  background: var(--ground);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  padding: 12px;
  display: flex;
}

.hx .sol-case:hover {
  border-color: var(--hairline-strong);
  transform: translateY(-2px);
}

.hx .sol-case:hover .arrow {
  transform: translateX(4px);
}

.hx .sol-case-img {
  border-radius: calc(var(--hx-radius) - 4px);
  background: color-mix(in srgb, var(--accent) 12%, var(--ground));
  flex: none;
  justify-content: center;
  align-items: center;
  width: 56px;
  height: 56px;
  display: flex;
  overflow: hidden;
}

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

.hx .sol-case-img svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.hx .sol-case-body {
  flex-direction: column;
  flex: auto;
  gap: 2px;
  min-width: 0;
  display: flex;
}

.hx .sol-case-eyebrow {
  font-family: var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 10px;
}

.hx .sol-case-title {
  color: var(--ink);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
}

.hx .sol-case-metric {
  color: var(--muted);
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 12.5px;
  overflow: hidden;
}

.hx .sol-case .arrow {
  color: var(--ink-soft);
  transition: transform .3s var(--ease);
  flex: none;
}

.hx .sol-actions {
  margin-top: var(--s5);
  align-items: center;
  gap: var(--s5);
  flex-wrap: wrap;
  display: flex;
}

.hx .sol-actions .sol-cta {
  align-self: center;
  margin-top: 0;
}

.hx .sol-cta {
  margin-top: var(--s4);
  color: var(--accent);
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  display: inline-flex;
}

.hx button.sol-cta {
  background: none;
  border: none;
  padding: 0;
}

.hx .sol-cta .arrow {
  transition: transform .3s var(--ease);
}

.hx .sol-cta:hover .arrow {
  transform: translateX(4px);
}

.hx .impact {
  color: var(--ground);
  background: #040707;
}

.dark .hx .impact {
  background: var(--ink);
}

.hx .impact .eyebrow {
  color: color-mix(in srgb, var(--ground) 62%, transparent);
}

.hx .impact .eyebrow:after {
  background: color-mix(in srgb, var(--ground) 26%, transparent);
}

.hx .impact .eyebrow .idx {
  color: var(--accent);
}

.hx .impact h2 {
  color: var(--ground);
  text-wrap: balance;
  max-width: 40ch;
  margin-top: 0;
  font-size: 44px;
}

.hx .impact .lede {
  color: color-mix(in srgb, var(--ground) 66%, transparent);
  margin-top: var(--s5);
  max-width: 56ch;
  font-size: 18px;
}

.hx .impact-grid {
  border-top: 1px solid color-mix(in srgb, var(--ground) 18%, transparent);
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(56px, 7vw, 92px);
  display: grid;
}

.hx .impact-cell {
  padding: var(--s7) var(--s5) 0 var(--s5);
  border-right: 1px solid color-mix(in srgb, var(--ground) 14%, transparent);
}

.hx .impact-cell:first-child {
  padding-left: 0;
}

.hx .impact-cell:last-child {
  border-right: none;
}

.hx .impact-cell .big {
  font-family: var(--serif);
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
  font-size: clamp(48px, 6vw, 82px);
  line-height: .9;
}

.hx .impact-cell .big .suf {
  color: var(--accent);
}

.hx .impact-cell .cap {
  margin-top: var(--s4);
  color: color-mix(in srgb, var(--ground) 60%, transparent);
  max-width: 22ch;
  font-size: 14px;
  line-height: 1.45;
}

.hx .impact-foot {
  margin-top: var(--s8);
  gap: var(--s5) var(--s8);
  padding-top: var(--s6);
  border-top: 1px solid color-mix(in srgb, var(--ground) 18%, transparent);
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.hx .impact-foot .stat-line {
  color: color-mix(in srgb, var(--ground) 72%, transparent);
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  display: flex;
}

.hx .impact-foot .stat-line b {
  color: var(--ground);
  font-weight: 600;
}

.hx .impact-foot .tick {
  background: var(--accent);
  border-radius: 1px;
  width: 6px;
  height: 6px;
}

.hx .ind-grid {
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: clamp(16px, 1.6vw, 24px);
  margin-top: 32px;
  display: grid;
}

.hx .ind-card {
  border: 1px solid var(--hairline);
  border-radius: var(--hx-radius);
  background: var(--paper);
  text-align: left;
  width: 100%;
  transition: background .3s var(--ease), border-color .3s var(--ease);
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hx .ind-card:hover {
  background: var(--paper-2);
  border-color: var(--hairline-strong);
}

.hx .ind-card .c-graphic {
  aspect-ratio: 3 / 2;
  border-bottom: 1px solid var(--hairline);
  background: #fff;
  flex: none;
  place-items: center;
  width: 100%;
  display: grid;
  overflow: hidden;
}

.hx .ind-card .c-graphic svg {
  width: min(72%, 168px);
  height: auto;
  transition: transform .4s var(--ease);
  display: block;
}

.hx .ind-card:hover .c-graphic svg {
  transform: translateY(-4px);
}

.hx .ind-card .c-graphic--img img {
  object-fit: contain;
  width: 100%;
  height: 100%;
  transition: transform .6s var(--ease);
  display: block;
}

.dark .hx .ind-card .c-graphic {
  background: var(--paper-2);
}

.dark .hx .ind-card .c-graphic--img img {
  filter: invert() hue-rotate(180deg);
}

.hx .ind-card:hover .c-graphic--img img {
  transform: scale(1.05);
}

.hx .ind-card .c-body {
  flex-direction: column;
  flex: auto;
  align-items: flex-start;
  gap: 8px;
  padding: clamp(16px, 1.5vw, 22px);
  display: flex;
}

.hx .ind-card .c-idx {
  font-family: var(--mono);
  letter-spacing: .1em;
  color: var(--accent);
  font-size: 11px;
}

.hx .ind-card .c-name {
  letter-spacing: -.025em;
  color: var(--ink);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
}

.hx .ind-card .c-meta {
  color: var(--muted);
  max-width: 30ch;
  font-size: 13px;
  line-height: 1.4;
}

.hx .why-top {
  gap: var(--s5);
  flex-direction: column;
  display: flex;
}

.hx .why-top .section-head {
  max-width: none;
}

.hx .why-principles {
  background: var(--hairline);
  border: 1px solid var(--hairline);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 32px;
  display: grid;
}

.hx .principle {
  background: var(--ground);
  gap: var(--s3);
  min-height: 210px;
  transition: background .3s var(--ease);
  flex-direction: column;
  padding: clamp(24px, 2.6vw, 36px);
  display: flex;
}

.hx .principle:hover {
  background: var(--paper);
}

.hx .principle .p-idx {
  font-family: var(--mono);
  color: var(--accent);
  letter-spacing: .08em;
  font-size: 12px;
}

.hx .principle h4 {
  letter-spacing: -.02em;
  margin-top: var(--s2);
  min-height: 2.06em;
  font-size: 24px;
}

.hx .principle p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
}

.hx .principle .ico {
  width: 26px;
  height: 26px;
  color: var(--ink);
  margin-bottom: auto;
}

.hx .compare {
  border: 1px solid var(--hairline);
  border-radius: var(--hx-radius);
  margin-top: clamp(48px, 6vw, 80px);
  overflow: hidden;
}

.hx .compare-row {
  grid-template-columns: 1.4fr 1fr 1fr;
  display: grid;
}

.hx .compare-row + .compare-row {
  border-top: 1px solid var(--hairline);
}

.hx .compare-cell {
  padding: var(--s5) var(--s6);
  align-items: center;
  gap: 10px;
  font-size: 15px;
  display: flex;
}

.hx .compare-cell.head {
  font-family: var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 12px;
}

.hx .compare-cell.head.us {
  color: var(--ink);
  font-weight: 600;
}

.hx .compare-cell.dim {
  color: var(--faint);
  border-left: 1px solid var(--hairline);
}

.hx .compare-cell.us {
  border-left: 1px solid var(--hairline);
  background: var(--paper);
  font-weight: 500;
}

.hx .compare-cell .lbl {
  color: var(--ink-soft);
  font-weight: 500;
}

.hx .compare-cell .ok {
  color: var(--accent);
}

.hx .compare-cell .no {
  color: var(--faint);
}

.hx .cl2 {
  position: relative;
  overflow: hidden;
}

.hx .cl2-dots {
  z-index: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, color-mix(in srgb, var(--accent) 16%, transparent) 1px, transparent 1px);
  background-size: 32px 32px;
  position: absolute;
  inset: 0;
  -webkit-mask-image: radial-gradient(80% 70%, #000 40%, #0000 100%);
  mask-image: radial-gradient(80% 70%, #000 40%, #0000 100%);
}

.hx .cl2 .container {
  z-index: 2;
  position: relative;
}

.hx .cl2-head {
  text-align: center;
  max-width: none;
  margin: 0 auto clamp(48px, 6vw, 80px);
}

.hx .cl2-badge {
  font-family: var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  border-radius: 100px;
  align-items: center;
  gap: 7px;
  margin-bottom: 16px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  display: inline-flex;
}

.hx .cl2-head h2 {
  font-size: clamp(28px, 3.4vw, 44px);
}

.hx .cl2-head .lede {
  max-width: 46ch;
  margin: 14px auto 0;
}

.hx .cl2-marquee {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  margin-top: clamp(24px, 3vw, 40px);
  padding-block: clamp(20px, 2.4vw, 28px);
}

.hx .cl2-marquee .marquee-track {
  gap: clamp(56px, 7vw, 104px);
  animation-duration: 34s;
}

.hx .cl2-marquee .logo-word img {
  filter: grayscale() brightness(.35);
  opacity: .85;
  width: auto;
  height: auto;
  transition: filter .4s var(--ease), opacity .4s var(--ease), transform .4s var(--ease);
}

.hx .cl2-marquee .logo-word:hover img {
  filter: none;
  opacity: 1;
  transform: translateY(-2px);
}

.dark .hx .cl2-marquee .logo-word img {
  filter: grayscale() brightness(.4) invert();
  opacity: .82;
}

.dark .hx .cl2-marquee .logo-word:hover img {
  filter: grayscale() brightness(.22) invert();
  opacity: 1;
  transform: translateY(-2px);
}

.hx .cs-filters {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(36px, 4vw, 56px);
  display: flex;
}

.hx .filter {
  font-family: var(--mono);
  letter-spacing: .04em;
  border: 1px solid var(--hairline-strong);
  color: var(--muted);
  transition: all .25s var(--ease);
  background: none;
  border-radius: 0;
  padding: 8px 15px;
  font-size: 12.5px;
}

.hx .filter:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.hx .filter.active {
  background: var(--ink);
  color: var(--ground);
  border-color: var(--ink);
}

.hx #cases {
  padding-block: 0;
  overflow: visible;
}

.hx .cs-pin {
  position: relative;
}

.hx .cs-sticky {
  padding-block: var(--section-y);
}

@media (min-width: 861px) {
  .hx .cs-pin {
    min-height: 100dvh;
  }

  .hx .cs-sticky {
    flex-direction: column;
    justify-content: center;
    height: 100dvh;
    padding-block: 68px 0;
    display: flex;
    position: sticky;
    top: 0;
    overflow: hidden;
  }

  .hx .cs-pin .cs-track {
    will-change: transform;
    padding-bottom: 0;
    overflow: visible;
  }
}

.hx .cs-track {
  gap: var(--s5);
  padding-inline: 12%;
  padding-bottom: var(--s4);
  scrollbar-width: thin;
  scrollbar-color: var(--hairline-strong) transparent;
  overscroll-behavior-x: contain;
  margin-top: 32px;
  display: flex;
  overflow: auto hidden;
}

.hx .cs-track::-webkit-scrollbar {
  height: 8px;
}

.hx .cs-track::-webkit-scrollbar-thumb {
  background: var(--hairline-strong);
  border-radius: 100px;
}

.hx .cs-track::-webkit-scrollbar-track {
  background: none;
}

.hx .case {
  border: 1px solid var(--hairline);
  border-radius: var(--hx-radius);
  background: var(--ground);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  flex-direction: column;
  flex: 0 0 clamp(240px, 32%, 368px);
  display: flex;
  overflow: hidden;
}

.hx .case:hover {
  border-color: var(--hairline-strong);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -44px #14100a66;
}

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

.hx .case-cover {
  aspect-ratio: 16 / 10;
  background: var(--paper);
  border-bottom: 1px solid var(--hairline);
  position: relative;
  overflow: hidden;
}

.hx .case-cover svg {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hx .case-cover img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hx .case-cover .tags {
  top: var(--s4);
  left: var(--s4);
  z-index: 2;
  gap: 6px;
  display: flex;
  position: absolute;
}

.hx .case-cover .tags span {
  font-family: var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  background: var(--ground);
  color: var(--ink-soft);
  border: 1px solid var(--hairline);
  border-radius: 100px;
  padding: 5px 9px;
  font-size: 10.5px;
}

.hx .case-body {
  flex-direction: column;
  flex: 1;
  padding: clamp(22px, 2.4vw, 32px);
  display: flex;
}

.hx .case-tags {
  margin-bottom: var(--s4);
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.hx .case-tags span {
  font-family: var(--mono);
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 9px;
}

.hx .case-body h3 {
  letter-spacing: -.025em;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 20px;
  line-height: 1.2;
  display: -webkit-box;
  overflow: hidden;
}

.hx .case-body .challenge {
  color: var(--muted);
  margin-top: var(--s3);
  font-size: 13.5px;
  line-height: 1.5;
}

.hx .case-metrics {
  gap: var(--s6);
  margin-top: var(--s5);
  padding-top: var(--s5);
  border-top: 1px solid var(--hairline);
  display: flex;
}

.hx .case-metrics .m .n {
  font-family: var(--serif);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  font-size: 25px;
}

.hx .case-metrics .m .n .suf {
  color: var(--accent);
}

.hx .case-metrics .m .l {
  color: var(--muted);
  margin-top: 3px;
  font-size: 12px;
}

.hx .case-link {
  padding-top: var(--s5);
  color: var(--ink);
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
}

.hx .case-link .arrow {
  transition: transform .3s var(--ease);
}

.hx .case:hover .case-link .arrow {
  transform: translateX(4px);
}

.hx .case[hidden] {
  display: none;
}

.hx .test-stats {
  background: var(--hairline);
  border: 1px solid var(--hairline);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(28px, 3vw, 40px);
  display: grid;
}

.hx .test-stat {
  background: var(--ground);
  align-items: baseline;
  gap: 10px;
  padding: clamp(20px, 2.2vw, 28px);
  display: flex;
}

.hx .test-stat .n {
  font-family: var(--serif);
  letter-spacing: -.03em;
  color: var(--ink);
  font-size: 30px;
}

.hx .test-stat .l {
  color: var(--muted);
  font-size: 13px;
}

@media (max-width: 640px) {
  .hx .test-stats {
    grid-template-columns: 1fr;
  }
}

.hx .test-layout {
  grid-template-columns: 1.5fr 1fr;
  align-items: stretch;
  gap: clamp(24px, 3vw, 44px);
  margin-top: 32px;
  display: grid;
}

.hx .test-feature {
  border: 1px solid var(--hairline);
  border-radius: var(--hx-radius);
  background: var(--ground);
  animation: fade .45s var(--ease);
  flex-direction: column;
  margin: 0;
  padding: clamp(32px, 4vw, 56px);
  display: flex;
}

.hx .test-feature .quote {
  font-family: var(--serif);
  letter-spacing: -.02em;
  color: var(--ink);
  font-size: 21px;
  line-height: 1.45;
}

.hx .test-feature .quote:before {
  content: "“";
  color: var(--accent);
}

.hx .test-feature .quote:after {
  content: "”";
  color: var(--accent);
}

.hx .test-meta {
  padding-top: var(--s7);
  align-items: center;
  gap: var(--s4);
  margin-top: auto;
  display: flex;
}

.hx .avatar {
  background: var(--paper-2);
  width: 52px;
  height: 52px;
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 50%;
  flex: none;
  place-items: center;
  font-size: 16px;
  font-weight: 600;
  display: grid;
}

.hx .test-meta .who .n {
  letter-spacing: -.01em;
  font-weight: 600;
}

.hx .test-meta .who .r {
  color: var(--muted);
  font-size: 13.5px;
}

.hx .test-meta .score {
  text-align: right;
  margin-left: auto;
}

.hx .test-meta .score .stars {
  color: var(--accent);
  letter-spacing: 3px;
  font-size: 15px;
}

.hx .test-meta .score .sl {
  color: var(--muted);
  font-size: 11px;
  font-family: var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hx .test-side {
  gap: var(--s5);
  flex-direction: column;
  display: flex;
}

.hx .test-video {
  border: 1px solid var(--hairline);
  border-radius: var(--hx-radius);
  background: var(--paper);
  min-height: 200px;
  padding: var(--s5);
  transition: border-color .3s var(--ease);
  flex: 1;
  align-items: flex-end;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hx .test-video:hover {
  border-color: var(--hairline-strong);
}

.hx .test-video .play {
  background: var(--ink);
  width: 56px;
  height: 56px;
  color: var(--ground);
  transition: transform .3s var(--ease);
  border-radius: 50%;
  place-items: center;
  display: grid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hx .test-video:hover .play {
  transform: translate(-50%, -50%)scale(1.08);
}

.hx .test-video .vmeta {
  color: var(--ink-soft);
  z-index: 1;
  font-size: 13px;
}

.hx .test-video .vmeta b {
  font-weight: 600;
  display: block;
}

.hx .test-mini {
  text-align: left;
  cursor: pointer;
  border: 1px solid var(--hairline);
  border-radius: var(--hx-radius);
  width: 100%;
  padding: var(--s5);
  background: var(--ground);
  font: inherit;
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
  display: block;
}

.hx .test-mini:hover {
  border-color: var(--hairline-strong);
  background: var(--paper);
  transform: translateY(-2px);
}

.hx .test-mini p {
  color: var(--ink-soft);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3em;
  font-size: 14.5px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
}

.hx .test-mini .who {
  margin-top: var(--s4);
  color: var(--muted);
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  height: 1.45em;
  font-size: 13px;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
}

.hx .test-mini .who b {
  color: var(--ink);
  font-weight: 600;
}

.hx .test-dots {
  align-items: center;
  gap: 12px;
  margin-top: auto;
  display: flex;
}

.hx .test-dot {
  border: 1px solid var(--hairline-strong);
  cursor: pointer;
  width: 10px;
  height: 10px;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  background: none;
  border-radius: 50%;
  flex: none;
  padding: 0;
}

.hx .test-dot:hover {
  border-color: var(--ink);
  transform: scale(1.2);
}

.hx .test-dot[aria-current="true"] {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

.hx .test-timer {
  background: var(--hairline-strong);
  flex: 1;
  height: 1px;
  margin-left: 4px;
  position: relative;
  overflow: hidden;
}

.hx .test-timer:after {
  content: "";
  background: var(--accent);
  transform-origin: 0;
  transform: scaleX(var(--p, 0));
  transition: transform .18s linear;
  position: absolute;
  inset: 0;
}

.hx .test-dots[data-paused="true"] .test-timer:after {
  background: var(--hairline-strong);
}

@media (max-width: 1024px) {
  .hx .test-side {
    gap: var(--s4);
    flex-flow: wrap;
  }

  .hx .test-mini {
    flex: 240px;
  }

  .hx .test-dots {
    margin-top: var(--s3);
    flex-basis: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hx .test-feature {
    animation: none;
  }

  .hx .test-timer:after, .hx .test-dot {
    transition: none;
  }
}

.hx .vtest-band {
  --vt-bg: #0a0e0d;
  --vt-fg: #f3efe8;
  --vt-accent: #e23b34;
  background: var(--vt-bg);
  color: var(--vt-fg);
}

.hx .vtest-band .section-head h2 {
  color: var(--vt-fg);
}

.hx .vtest-band .section-head h2 .em {
  color: var(--vt-accent);
}

.hx .vtest-band .section-head .lede {
  color: color-mix(in srgb, var(--vt-fg) 66%, transparent);
}

.hx .vtest-wrapper {
  margin-top: clamp(28px, 3vw, 40px);
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, #0000 0%, #000 6% 94%, #0000 100%);
  mask-image: linear-gradient(to right, #0000 0%, #000 6% 94%, #0000 100%);
}

.hx .vtest-row {
  width: max-content;
  padding: 4px 0 8px;
  animation: 42s linear infinite vtestTicker;
  display: flex;
}

@keyframes vtestTicker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-25%);
  }
}

.hx .vtest-card {
  text-align: left;
  cursor: pointer;
  border: 1px solid color-mix(in srgb, var(--vt-fg) 16%, transparent);
  border-radius: var(--hx-radius);
  width: clamp(270px, 30vw, 360px);
  transition: border-color .3s var(--ease), transform .4s cubic-bezier(.16,1,.3,1);
  background: none;
  flex-direction: column;
  flex: none;
  margin-right: 24px;
  padding: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hx .vtest-card:hover {
  border-color: color-mix(in srgb, var(--vt-fg) 34%, transparent);
}

.hx .vtest-card.is-active {
  border-color: var(--vt-accent);
  z-index: 2;
  transform: scale(1.03);
}

.hx .vtest-card-video {
  aspect-ratio: 16 / 9;
  background: var(--vt-bg);
  position: relative;
  overflow: hidden;
}

.hx .vtest-card-video img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s var(--ease);
  display: block;
}

.hx .vtest-card:hover .vtest-card-video img {
  transform: scale(1.05);
}

.hx .vtest-play {
  background: var(--vt-fg);
  width: 56px;
  height: 56px;
  color: var(--vt-bg);
  transition: transform .3s var(--ease);
  border-radius: 50%;
  place-items: center;
  display: grid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hx .vtest-play svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
}

.hx .vtest-card:hover .vtest-play {
  transform: translate(-50%, -50%)scale(1.08);
}

.hx .vtest-card-body {
  padding: var(--s5);
  flex-direction: column;
  gap: 3px;
  display: flex;
}

.hx .vtest-card-name {
  letter-spacing: -.01em;
  color: var(--vt-fg);
  font-size: 18px;
  font-weight: 600;
}

.hx .vtest-card-sub {
  color: color-mix(in srgb, var(--vt-fg) 62%, transparent);
  font-size: 13px;
}

.hx .vtest-dots {
  margin-top: var(--s5);
  justify-content: center;
  gap: 8px;
  display: flex;
}

.hx .vtest-dot {
  border: 1px solid color-mix(in srgb, var(--vt-fg) 30%, transparent);
  width: 8px;
  height: 8px;
  transition: width .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
  background: none;
  border-radius: 50%;
  padding: 0;
}

.hx .vtest-dot.is-active {
  background: var(--vt-accent);
  border-color: var(--vt-accent);
  border-radius: 100px;
  width: 28px;
}

@media (max-width: 640px) {
  .hx .vtest-card {
    width: 82vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hx .vtest-row {
    animation: none;
  }
}

.hx .faq-layout {
  grid-template-columns: .8fr 1.4fr;
  align-items: start;
  gap: clamp(32px, 5vw, 72px);
  margin-top: 0;
  display: grid;
}

.hx .faq-search {
  position: relative;
}

.hx .faq-search input {
  width: 100%;
  font: inherit;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--hx-radius);
  background: var(--ground);
  color: var(--ink);
  transition: border-color .3s var(--ease);
  padding: 14px 16px 14px 42px;
  font-size: 15px;
}

.hx .faq-search input:focus {
  border-color: var(--accent);
  outline: none;
}

.hx .faq-search svg {
  width: 17px;
  height: 17px;
  color: var(--faint);
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
}

.hx .faq-hint {
  margin-top: var(--s4);
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

.hx .faq-list {
  border-top: 1px solid var(--hairline);
}

.hx .faq-item {
  border-bottom: 1px solid var(--hairline);
}

.hx .faq-q {
  text-align: left;
  width: 100%;
  padding: var(--s5) 0;
  align-items: flex-start;
  gap: var(--s4);
  letter-spacing: -.015em;
  color: var(--ink);
  background: none;
  border: none;
  justify-content: space-between;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 500;
  display: flex;
}

.hx .faq-q .qi {
  flex: none;
  width: 18px;
  height: 18px;
  margin-top: 4px;
  position: relative;
}

.hx .faq-q .qi:before, .hx .faq-q .qi:after {
  content: "";
  background: var(--accent);
  transition: transform .3s var(--ease);
  position: absolute;
}

.hx .faq-q .qi:before {
  height: 1.5px;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}

.hx .faq-q .qi:after {
  width: 1.5px;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.hx .faq-item.open .qi:after {
  transform: translateX(-50%)scaleY(0);
}

.hx .faq-a {
  max-height: 0;
  transition: max-height .4s var(--ease);
  overflow: hidden;
}

.hx .faq-a-inner {
  padding-bottom: var(--s6);
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.6;
}

.hx .faq-item[hidden] {
  display: none;
}

.hx .lead {
  background: var(--ground);
  color: var(--ink);
}

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

.hx .lead .eyebrow {
  color: var(--muted);
}

.hx .lead .eyebrow:after {
  background: var(--hairline-strong);
}

.hx .lead-layout {
  grid-template-columns: .9fr 1.1fr;
  align-items: start;
  gap: clamp(40px, 6vw, 88px);
  display: grid;
}

.hx .lead h2 {
  color: var(--ink);
  max-width: 14ch;
  font-size: 44px;
}

.hx .lead .lede {
  color: var(--muted);
  margin-top: var(--s5);
  max-width: 44ch;
  font-size: 18px;
}

.hx .lead-assure {
  margin-top: var(--s8);
  gap: var(--s4);
  flex-direction: column;
  display: flex;
}

.hx .lead-assure .a {
  gap: var(--s4);
  color: var(--ink-soft);
  align-items: flex-start;
  font-size: 14.5px;
  display: flex;
}

.hx .lead-assure .a svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex: none;
  margin-top: 2px;
}

.hx .lead-assure .a b {
  color: var(--ink);
  font-weight: 600;
}

.hx .form-card {
  background: var(--paper);
  color: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: var(--hx-radius);
  padding: clamp(28px, 3.4vw, 44px);
  box-shadow: 0 30px 60px -48px #14100a4d;
}

.hx .form-card--flat {
  box-shadow: none;
}

.hx .section--paper .form-card {
  background: var(--ground);
}

.hx .form-grid {
  gap: var(--s5);
  grid-template-columns: 1fr 1fr;
  display: grid;
}

.hx .field {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

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

.hx .field label {
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 11.5px;
}

.hx .field-hint {
  text-transform: none;
  letter-spacing: 0;
  color: var(--faint);
  font-size: 11px;
}

.hx .svc {
  position: relative;
}

.hx .svc-trigger {
  width: 100%;
  font: inherit;
  text-align: left;
  cursor: pointer;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--hx-radius);
  background: var(--ground);
  color: var(--muted);
  transition: border-color .25s var(--ease);
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 15px;
  display: flex;
}

.hx .svc-trigger.has {
  color: var(--ink);
}

.hx .svc.open .svc-trigger {
  border-color: var(--accent);
  outline: none;
}

.hx .svc--error .svc-trigger {
  border-color: var(--accent);
}

.hx .svc-val {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.hx .svc-chev {
  width: 12px;
  height: 8px;
  color: var(--muted);
  transition: transform .25s var(--ease);
  flex: none;
}

.hx .svc.open .svc-chev {
  transform: rotate(180deg);
}

.hx .svc-menu {
  z-index: 30;
  background: var(--ground);
  border: 1px solid var(--hairline-strong);
  border-radius: var(--hx-radius);
  max-height: 264px;
  padding: 6px;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  overflow-y: auto;
  box-shadow: 0 22px 48px -30px #14100a73;
}

.hx .svc-opt {
  cursor: pointer;
  text-align: left;
  width: 100%;
  font: inherit;
  color: var(--ink-soft);
  transition: background .15s var(--ease);
  background: none;
  border: none;
  border-radius: 6px;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  font-size: 14px;
  display: flex;
}

.hx .svc-opt:hover {
  background: var(--paper);
}

.hx .svc-opt--all {
  color: var(--ink);
  font-weight: 500;
}

.hx .svc-div {
  background: var(--hairline);
  height: 1px;
  margin: 4px 6px;
}

.hx .svc-check {
  border: 1.5px solid var(--hairline-strong);
  width: 16px;
  height: 16px;
  color: var(--on-accent);
  transition: background .15s var(--ease), border-color .15s var(--ease);
  border-radius: 4px;
  flex: none;
  place-items: center;
  display: grid;
}

.hx .svc-check.on {
  background: var(--accent);
  border-color: var(--accent);
}

.hx .svc-check svg {
  width: 10px;
  height: 10px;
}

.hx .field input, .hx .field select, .hx .field textarea {
  font: inherit;
  border: 1px solid var(--hairline-strong);
  border-radius: var(--hx-radius);
  background: var(--ground);
  color: var(--ink);
  width: 100%;
  transition: border-color .25s var(--ease);
  padding: 8px 14px;
  font-size: 15px;
}

.hx .field textarea {
  resize: vertical;
  min-height: 96px;
}

.hx .field input:focus, .hx .field select:focus, .hx .field textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.hx .field input::placeholder, .hx .field textarea::placeholder {
  color: var(--faint);
  opacity: 1;
}

.hx .field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236e6a62' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-position: right 14px center;
  background-repeat: no-repeat;
  padding-right: 36px;
}

.hx .form-foot {
  margin-top: var(--s6);
  justify-content: space-between;
  align-items: center;
  gap: var(--s5);
  flex-wrap: wrap;
  display: flex;
}

.hx .form-foot .privacy {
  color: var(--muted);
  max-width: 34ch;
  font-size: 12.5px;
  line-height: 1.45;
}

.hx .form-foot .privacy a {
  color: var(--ink);
  text-underline-offset: 2px;
  text-decoration: underline;
}

.hx .form-msg {
  margin-top: var(--s5);
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
  display: none;
}

.hx .form-msg.show {
  display: block;
}

.hx .skip {
  background: var(--ink);
  color: var(--ground);
  z-index: 200;
  border-radius: var(--hx-radius);
  padding: 10px 16px;
  position: absolute;
  top: 0;
  left: -9999px;
}

.hx .skip:focus {
  top: 10px;
  left: 24px;
}

@media (max-width: 1180px) {
  .hx .ind-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
  }
}

@media (max-width: 1249px) {
  .hx .test-feature .quote {
    font-size: clamp(16px, 2vw, 21px);
    line-height: 1.4;
  }
}

@media (max-width: 1024px) {
  .hx .container {
    padding-inline: clamp(24px, 7vw, 88px);
  }

  .hx .hero-title {
    max-width: 30ch;
  }

  .hx .hero-panel {
    max-width: 520px;
  }

  .hx .sol-layout, .hx .test-layout, .hx .lead-layout, .hx .faq-layout, .hx .why-top {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .hx .ind-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .hx .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hx .hero {
    min-height: 0;
  }

  .hx .impact-cell {
    border-right: none;
    padding-right: 0;
  }

  .hx .impact-cell:nth-child(odd) {
    border-right: 1px solid color-mix(in srgb, var(--ground) 14%, transparent);
    padding-right: var(--s5);
    padding-left: 0;
  }

  .hx .cs-track .case {
    flex-basis: 68%;
  }

  .hx .why-principles, .hx .compare-row {
    grid-template-columns: 1fr;
  }

  .hx .compare-cell.dim, .hx .compare-cell.us {
    border-left: none;
    border-top: 1px solid var(--hairline);
  }

  .hx .test-side {
    gap: var(--s4);
  }
}

@media (max-width: 560px) {
  .hx {
    font-size: 16px;
  }

  .hx .cl2-marquee .logo-word img, .dark .hx .cl2-marquee .logo-word img {
    filter: none;
    opacity: 1;
  }

  .hx .form-grid {
    grid-template-columns: 1fr;
  }

  .hx .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(6px, 2.5vw, 16px);
    display: grid;
  }

  .hx .hero-metrics .hm + .hm {
    padding-left: clamp(6px, 2.5vw, 16px);
  }

  .hx .hero-metrics .hm + .hm:before {
    display: block;
  }

  .hx .hero-metrics .n {
    white-space: nowrap;
    font-size: clamp(15px, 5vw, 22px);
  }

  .hx .hero-metrics .l {
    white-space: normal;
    font-size: 8.5px;
    line-height: 1.3;
  }

  .hx .hero .hero-metrics {
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(16px, 4vw, 24px) clamp(12px, 4vw, 20px);
    display: grid;
  }

  .hx .hero .hero-metrics .hm + .hm {
    padding-left: 0;
  }

  .hx .hero .hero-metrics .hm + .hm:before {
    display: none;
  }

  .hx .hero .hero-metrics .n {
    white-space: normal;
    font-size: 26px;
  }

  .hx .hero .hero-metrics .l {
    white-space: normal;
    font-size: 10.5px;
  }

  .hx .hero-title {
    letter-spacing: -.034em;
  }

  .hx .test-meta {
    flex-wrap: wrap;
  }

  .hx .test-meta .score {
    text-align: left;
    margin-left: 0;
  }

  .hx .section-head h2, .hx .impact h2, .hx .lead h2 {
    font-size: 32px;
  }

  .hx .ind-grid {
    grid-template-columns: 1fr;
  }

  .hx .ind-card .c-name {
    font-size: 24px;
  }

  .hx .impact-grid {
    grid-template-columns: 1fr;
  }

  .hx .impact-cell, .hx .impact-cell:nth-child(odd) {
    border-right: none;
    padding-left: 0;
    padding-right: 0;
  }

  .hx .test-feature {
    min-height: 0;
    padding: var(--s5);
  }

  .hx .test-feature .quote {
    font-size: 21px;
  }

  .hx .sol-item .si-name {
    font-size: 20px;
  }

  .hx .case {
    flex-basis: 82%;
  }

  .hx .cs-track {
    padding-inline: 24px;
  }
}

.hx .cx-hero-pad {
  padding-top: clamp(56px, 7vw, 104px);
}

.dark .hx .cx-hero-pad .cl2-dots {
  background-image: radial-gradient(circle, color-mix(in srgb, var(--ink) 14%, transparent) 1px, transparent 1px);
}

.hx .cx-layout {
  grid-template-columns: .95fr 1.05fr;
  align-items: start;
  gap: clamp(40px, 6vw, 80px);
  display: grid;
}

.hx .cx-block + .cx-block {
  margin-top: clamp(40px, 5vw, 56px);
}

.hx .c-services {
  background: var(--hairline);
  border: 1px solid var(--hairline);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  display: grid;
}

.hx .c-svc-tile {
  background: var(--ground);
  transition: background .3s var(--ease);
  flex-direction: column;
  gap: 12px;
  padding: 18px 16px;
  display: flex;
}

.hx .c-svc-tile:hover {
  background: var(--paper);
}

.hx .c-svc-tile svg {
  width: 22px;
  height: 22px;
  color: var(--ink);
}

.hx .c-svc-tile span {
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.3;
}

.hx .success-panel {
  border: 1px solid var(--hairline);
  background: var(--paper);
  text-align: center;
  padding: clamp(40px, 5vw, 64px) clamp(28px, 3vw, 44px);
}

.hx .success-icon {
  border: 1px solid var(--hairline-strong);
  width: 56px;
  height: 56px;
  margin: 0 auto var(--s5);
  color: var(--accent);
  place-items: center;
  display: grid;
}

.hx .success-icon svg {
  width: 24px;
  height: 24px;
}

.hx .success-panel h3 {
  margin-bottom: var(--s3);
  font-size: 24px;
}

.hx .success-panel p {
  color: var(--muted);
  max-width: 44ch;
  margin-inline: auto;
  line-height: 1.55;
}

.hx .success-panel .btn {
  margin-top: var(--s6);
}

@media (max-width: 1024px) {
  .hx .cx-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hx .c-services {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1151px) {
  .hx .interior-hero {
    flex-direction: column;
    justify-content: flex-start;
    min-height: 600px;
    padding-top: clamp(48px, 5vw, 80px);
    padding-bottom: clamp(40px, 4vw, 64px);
    display: flex;
  }

  .hx .interior-hero .container {
    width: 100%;
  }
}

.hx .res-hero {
  position: relative;
  overflow: hidden;
}

.hx .res-hero-field {
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .92;
  background-image: url("/images/resources.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: min(44%, 620px);
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(48px, 9vw, 140px);
}

.hx .res-hero .container {
  z-index: 1;
  position: relative;
}

.hx .res-hero-art {
  display: none;
}

@media (max-width: 1150px) and (min-width: 761px) {
  .hx .res-hero {
    min-height: clamp(360px, 60vw, 480px);
  }

  .hx .res-hero-field {
    width: min(66%, 540px);
    right: clamp(16px, 4vw, 48px);
  }

  .hx .res-hero-lead {
    max-width: 380px;
  }
}

@media (max-width: 760px) {
  .hx .res-hero:before {
    display: none;
  }

  .hx .res-hero {
    padding-bottom: clamp(28px, 7vw, 44px);
  }

  .hx .res-hero-field {
    display: none;
  }

  .hx .res-hero-art {
    background-image: url("/images/Common%20Background.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    margin-top: clamp(28px, 7vw, 44px);
    margin-left: calc(50% - 50vw);
    padding-block: clamp(24px, 6vw, 40px);
    display: block;
  }

  .hx .res-hero-art:before {
    content: "";
    aspect-ratio: 1;
    background-image: url("/images/resources.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: min(94%, 460px);
    margin-inline: auto;
    display: block;
  }
}

@media (min-width: 1151px) {
  .hx .res-hero-lead {
    max-width: clamp(460px, 35vw, 720px);
  }
}

.hx .res-hero-lead h1 {
  font-size: 44px;
}

.hx .res-hero-lead .lede {
  max-width: 48ch;
  margin-top: clamp(24px, 3vw, 36px);
}

.hx .res-hero-lead .hero-cta {
  margin-top: clamp(32px, 4vw, 48px);
}

.hx .res-controls {
  align-items: center;
  gap: var(--s4);
  border-bottom: 1px solid var(--hairline);
  flex-wrap: wrap;
  padding-bottom: clamp(28px, 3vw, 40px);
  display: flex;
}

.hx .res-search {
  flex: auto;
  min-width: 260px;
  position: relative;
}

.hx .res-search svg {
  width: 16px;
  height: 16px;
  color: var(--faint);
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
}

.hx .res-search input {
  width: 100%;
  height: 46px;
  font: inherit;
  border: 1px solid var(--hairline-strong);
  background: var(--ground);
  color: var(--ink);
  transition: border-color .25s var(--ease);
  border-radius: 0;
  padding: 0 16px 0 40px;
  font-size: 15px;
}

.hx .res-search input:focus {
  border-color: var(--accent);
  outline: none;
}

.hx .res-search input::placeholder {
  color: var(--faint);
}

.hx .res-filter-select {
  flex: none;
  width: 240px;
  position: relative;
}

.hx .res-filter-select .svc-trigger, .hx .res-filter-select .svc-menu, .hx .res-filter-select .svc-check, .hx .res-filter-select .svc-opt {
  border-radius: 0;
}

.hx .res-filter-select .svc-menu {
  box-shadow: none;
}

.hx .res-filter-select .svc-trigger {
  height: 46px;
  padding: 0 14px;
}

@media (max-width: 640px) {
  .hx .res-filter-select {
    width: 100%;
  }
}

.hx .res-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
  margin-top: clamp(32px, 4vw, 48px);
  display: grid;
}

.hx .res-card {
  border: 1px solid var(--hairline);
  background: var(--ground);
  height: 100%;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
  border-radius: 0;
  flex-direction: column;
  padding: clamp(22px, 2.2vw, 28px);
  display: flex;
}

.hx .res-card:hover {
  border-color: var(--hairline-strong);
  transform: translateY(-3px);
}

.hx .res-card-top {
  align-items: center;
  gap: var(--s4);
  display: flex;
}

.hx .res-card-top .r-idx {
  font-family: var(--mono);
  letter-spacing: .06em;
  color: var(--accent);
  font-size: 12px;
}

.hx .res-card-tags {
  margin-top: var(--s5);
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 6px;
  display: flex;
}

.hx .res-tag {
  font-family: var(--mono);
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--ink-soft);
  background: var(--paper-2);
  border: 1px solid var(--hairline-strong);
  border-radius: 0;
  padding: 4px 8px;
  font-size: 10px;
}

.hx .res-card h3 {
  letter-spacing: -.02em;
  margin-top: var(--s5);
  font-size: 19px;
  line-height: 1.32;
}

.hx .res-card p {
  margin-top: var(--s4);
  color: var(--muted);
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
}

.hx .res-card-foot {
  margin-top: var(--s5);
  padding-top: var(--s5);
  border-top: 1px solid var(--hairline);
  justify-content: space-between;
  align-items: center;
  gap: var(--s4);
  display: flex;
}

.hx .res-card-foot .r-time {
  font-family: var(--mono);
  letter-spacing: .05em;
  color: var(--faint);
  font-size: 11.5px;
}

.hx .res-card-foot .r-link {
  color: var(--ink);
  white-space: nowrap;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 500;
  display: inline-flex;
}

.hx .res-card-foot .r-link .arrow {
  transition: transform .3s var(--ease);
}

.hx .res-card:hover .r-link .arrow {
  transform: translateX(4px);
}

.hx .res-empty {
  text-align: center;
  color: var(--muted);
  padding: clamp(64px, 8vw, 96px) 0;
  font-size: 15px;
}

@media (max-width: 1024px) {
  .hx .res-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hx .res-grid {
    grid-template-columns: 1fr;
  }

  .hx .res-controls {
    flex-direction: column;
    align-items: stretch;
  }
}

.hx .pb-crumb {
  color: var(--muted);
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(24px, 3vw, 40px);
  font-size: 13px;
  display: flex;
}

.hx .pb-crumb a {
  color: var(--muted);
  transition: color .2s var(--ease);
}

.hx .pb-crumb a:hover {
  color: var(--ink);
}

.hx .pb-crumb .sep {
  color: var(--faint);
}

.hx .pb-crumb .current {
  color: var(--ink);
  font-weight: 500;
}

.hx .pb-layout {
  grid-template-columns: 1fr 320px;
  align-items: start;
  gap: clamp(32px, 4vw, 64px);
  display: grid;
}

.hx #job-detail .pb-layout {
  grid-template: "head aside" min-content
                 "body aside" 1fr
                 / 1fr 600px;
  gap: clamp(28px, 3vw, 40px) clamp(32px, 4vw, 64px);
}

.hx #job-detail .pb-head {
  grid-area: head;
}

.hx #job-detail .pb-body {
  grid-area: body;
  margin-top: 0;
}

.hx #job-detail .pb-side {
  grid-area: aside;
}

.hx .pb-tags {
  margin-bottom: var(--s5);
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.hx .pb-layout h1 {
  letter-spacing: -.03em;
  font-size: clamp(28px, 3.6vw, 46px);
  line-height: 1.12;
}

.hx .pb-meta {
  margin-top: var(--s4);
  font-family: var(--mono);
  letter-spacing: .05em;
  color: var(--faint);
  text-transform: uppercase;
  border-bottom: 1px solid var(--hairline);
  padding-bottom: clamp(24px, 3vw, 36px);
  font-size: 12px;
}

.hx .pb-body {
  max-width: 860px;
  margin-top: clamp(32px, 4vw, 48px);
}

.hx .pb-block {
  margin-bottom: clamp(32px, 4vw, 48px);
}

.hx .pb-block h2 {
  letter-spacing: -.02em;
  margin-bottom: var(--s4);
  align-items: center;
  gap: 10px;
  font-size: 20px;
  display: flex;
}

.hx .pb-block .pb-num {
  font-family: var(--mono);
  color: var(--accent);
  font-size: 13px;
}

.hx .pb-block p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.hx .pb-list {
  margin-top: var(--s2);
  flex-direction: column;
  gap: 10px;
  list-style: none;
  display: flex;
}

.hx .pb-list li {
  color: var(--muted);
  align-items: flex-start;
  gap: 10px;
  font-size: 14.5px;
  line-height: 1.65;
  display: flex;
}

.hx .pb-list li:before {
  content: "";
  background: var(--accent);
  flex: none;
  width: 5px;
  height: 5px;
  margin-top: 8px;
}

.hx .pb-callout {
  border: 1px solid var(--hairline);
  background: var(--paper);
  border-radius: 0;
  padding: clamp(24px, 3vw, 32px);
}

.hx .pb-callout h3 {
  margin-bottom: var(--s4);
  font-size: 16px;
}

.hx .pb-callout p {
  font-family: var(--serif);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.5;
}

.hx .pb-callout p:before {
  content: "“";
  color: var(--accent);
}

.hx .pb-callout p:after {
  content: "”";
  color: var(--accent);
}

.hx #playbook-detail, .hx #job-detail {
  overflow: visible;
}

.hx .pb-side {
  gap: var(--s5);
  flex-direction: column;
  display: flex;
  position: sticky;
  top: 100px;
}

.hx .pb-download {
  border: 1px solid var(--hairline);
  background: var(--paper);
  border-radius: 0;
  padding: clamp(24px, 2.4vw, 28px);
}

.hx .pb-dl-icon {
  border: 1px solid var(--hairline-strong);
  width: 40px;
  height: 40px;
  margin-bottom: var(--s5);
  color: var(--accent);
  place-items: center;
  display: grid;
}

.hx .pb-dl-icon svg {
  width: 18px;
  height: 18px;
}

.hx .pb-download h3 {
  margin-bottom: var(--s3);
  font-size: 17px;
}

.hx .pb-download p {
  color: var(--muted);
  margin-bottom: var(--s5);
  font-size: 13.5px;
  line-height: 1.6;
}

.hx .pb-download--form .form-foot {
  margin-top: var(--s5);
}

.hx .pb-download--form {
  container-type: inline-size;
}

.hx .pb-download--form .form-grid {
  grid-template-columns: 1fr 1fr;
}

@container (max-width: 300px) {
  .hx .pb-download--form .form-grid {
    grid-template-columns: 1fr;
  }
}

.hx .pb-back {
  color: var(--muted);
  transition: color .2s var(--ease);
  align-items: center;
  gap: 8px;
  font-size: 14px;
  display: inline-flex;
}

.hx .pb-back:hover {
  color: var(--ink);
}

@media (max-width: 1024px) {
  .hx .pb-layout {
    grid-template-columns: 1fr;
  }

  .hx .pb-side {
    position: static;
  }

  .hx #job-detail .pb-layout {
    grid-template: "head"
                   "body"
                   "aside"
                   / 1fr;
  }
}

@media (max-width: 640px) {
  .hx .pb-layout h1 {
    font-size: 30px;
  }
}

.hx .career-hero {
  position: relative;
  overflow: hidden;
}

.hx .career-hero-field {
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .92;
  background-image: url("/images/careers.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: min(44%, 620px);
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(48px, 9vw, 140px);
}

.hx .career-hero .container {
  z-index: 1;
  position: relative;
}

.hx .career-hero-art {
  display: none;
}

@media (max-width: 1150px) and (min-width: 761px) {
  .hx .career-hero {
    min-height: clamp(360px, 60vw, 480px);
  }

  .hx .career-hero-field {
    width: min(66%, 540px);
    right: clamp(16px, 4vw, 48px);
  }

  .hx .career-hero .section-head {
    max-width: 380px;
  }
}

@media (max-width: 760px) {
  .hx .career-hero:before {
    display: none;
  }

  .hx .career-hero {
    padding-bottom: clamp(28px, 7vw, 44px);
  }

  .hx .career-hero-field {
    display: none;
  }

  .hx .career-hero-art {
    background-image: url("/images/Common%20Background.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    margin-top: clamp(28px, 7vw, 44px);
    margin-left: calc(50% - 50vw);
    padding-block: clamp(24px, 6vw, 40px);
    display: block;
  }

  .hx .career-hero-art:before {
    content: "";
    aspect-ratio: 1;
    background-image: url("/images/careers.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: min(94%, 460px);
    margin-inline: auto;
    display: block;
  }
}

@media (min-width: 1151px) {
  .hx .career-hero .section-head {
    max-width: clamp(440px, 35vw, 720px);
  }

  .hx .career-hero .hero-metrics {
    flex-wrap: nowrap;
    max-width: 540px;
  }

  .hx .career-hero .hero-metrics .l {
    white-space: normal;
  }
}

.hx .open-positions-hero {
  position: relative;
  overflow: hidden;
}

.hx .open-positions-hero-field {
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .92;
  background-image: url("/images/open-position.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: min(44%, 620px);
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(48px, 9vw, 140px);
}

.hx .open-positions-hero .container {
  z-index: 1;
  position: relative;
}

.hx .open-positions-hero-art {
  display: none;
}

@media (max-width: 1150px) and (min-width: 761px) {
  .hx .open-positions-hero {
    min-height: clamp(360px, 60vw, 480px);
  }

  .hx .open-positions-hero-field {
    width: min(66%, 540px);
    right: clamp(16px, 4vw, 48px);
  }

  .hx .open-positions-hero .section-head {
    max-width: 380px;
  }
}

@media (max-width: 760px) {
  .hx .open-positions-hero:before {
    display: none;
  }

  .hx .open-positions-hero {
    padding-bottom: clamp(28px, 7vw, 44px);
  }

  .hx .open-positions-hero-field {
    display: none;
  }

  .hx .open-positions-hero-art {
    background-image: url("/images/Common%20Background.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    margin-top: clamp(28px, 7vw, 44px);
    margin-left: calc(50% - 50vw);
    padding-block: clamp(24px, 6vw, 40px);
    display: block;
  }

  .hx .open-positions-hero-art:before {
    content: "";
    aspect-ratio: 1;
    background-image: url("/images/open-position.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: min(94%, 460px);
    margin-inline: auto;
    display: block;
  }
}

@media (min-width: 1151px) {
  .hx .open-positions-hero .section-head {
    max-width: clamp(420px, 35vw, 720px);
  }
}

.hx .chip--accent {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 35%, transparent);
}

.hx .careers-perks {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 32px;
  display: grid;
}

.hx .perk-feature {
  border-left: 1px solid var(--hairline);
  padding: 0 clamp(20px, 2vw, 28px);
}

.hx .perk-feature:first-child {
  border-left: none;
  padding-left: 0;
}

.hx .perk-feature .ico {
  width: 30px;
  height: 30px;
  color: var(--accent);
  margin-bottom: var(--s3);
}

.hx .perk-feature h4 {
  letter-spacing: -.01em;
  margin-bottom: var(--s2);
  font-size: 18px;
}

.hx .perk-feature p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.hx #roles {
  overflow: visible;
}

.hx .jobs-layout {
  grid-template-columns: 240px 1fr;
  align-items: start;
  gap: clamp(32px, 4vw, 48px);
  margin-top: clamp(32px, 4vw, 48px);
  display: grid;
}

.hx .jobs-filter-panel {
  border: 1px solid var(--hairline);
  background: var(--paper);
  flex-direction: column;
  gap: 26px;
  padding: 22px 20px;
  display: flex;
  position: sticky;
  top: 100px;
}

.hx .jobs-filter-panel-head {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hx .jobs-filter-panel-head .fp-title {
  color: var(--ink);
  letter-spacing: -.01em;
  font-size: 13px;
  font-weight: 600;
}

.hx .jf-search {
  position: relative;
}

.hx .jf-search svg {
  width: 14px;
  height: 14px;
  color: var(--faint);
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 11px;
  transform: translateY(-50%);
}

.hx .jf-search input {
  width: 100%;
  font: inherit;
  border: 1px solid var(--hairline-strong);
  background: var(--ground);
  color: var(--ink);
  transition: border-color .25s var(--ease);
  padding: 9px 12px 9px 32px;
  font-size: 13.5px;
}

.hx .jf-search input:focus {
  border-color: var(--accent);
  outline: none;
}

.hx .jf-search input::placeholder {
  color: var(--faint);
}

.hx .jf-vgroup .jf-label {
  font-family: var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 10px;
  font-size: 11px;
}

.hx .jf-vpills {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.hx .jf-vpill {
  text-align: left;
  width: 100%;
  color: var(--muted);
  transition: background .2s var(--ease), color .2s var(--ease);
  background: none;
  border: 1px solid #0000;
  padding: 7px 10px;
  font-size: 13px;
}

.hx .jf-vpill:hover {
  color: var(--ink);
}

.hx .jf-vpill.active {
  background: var(--ink);
  color: var(--ground);
  font-weight: 600;
}

.hx .jobs-clear {
  font-family: var(--mono);
  letter-spacing: .04em;
  color: var(--muted);
  transition: color .2s var(--ease);
  background: none;
  border: none;
  align-items: center;
  gap: 5px;
  padding: 0;
  font-size: 11px;
  display: inline-flex;
}

.hx .jobs-clear:hover {
  color: var(--ink);
}

.hx .jobs-clear svg {
  flex: none;
  width: 10px;
  height: 10px;
}

.hx .jobs-filter-toggle {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--hairline);
  transition: border-color .2s var(--ease);
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  font-size: 13px;
  font-weight: 600;
  display: none;
}

.hx .jobs-filter-toggle:hover {
  border-color: var(--hairline-strong);
}

.hx .jobs-filter-toggle svg {
  flex: none;
  width: 14px;
  height: 14px;
}

.hx .jobs-count {
  color: var(--muted);
  margin-top: 0;
  font-size: 13.5px;
}

.hx .jobs-count b {
  color: var(--ink);
  font-weight: 600;
}

.hx .jobs-list {
  margin-top: var(--s5);
  flex-direction: column;
  display: flex;
}

.hx .job-card {
  border-bottom: 1px solid var(--hairline);
  transition: padding-left .3s var(--ease);
  padding: clamp(24px, 2.6vw, 32px) 0;
  display: block;
}

.hx .job-card:first-child {
  border-top: 1px solid var(--hairline);
}

.hx .job-card:hover {
  padding-left: var(--s4);
}

.hx .job-tags {
  margin-bottom: var(--s4);
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.hx .job-card h3 {
  letter-spacing: -.025em;
  margin-bottom: 8px;
  font-size: 21px;
}

.hx .job-card p {
  color: var(--muted);
  max-width: 68ch;
  margin-bottom: var(--s4);
  font-size: 14.5px;
  line-height: 1.65;
}

.hx .job-card .job-link {
  color: var(--ink);
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
}

.hx .job-card .job-link .arrow {
  transition: transform .3s var(--ease);
}

.hx .job-card:hover .job-link .arrow {
  transform: translateX(4px);
}

.hx .jobs-cta-banner {
  border: 1px solid var(--hairline);
  background: var(--paper);
  justify-content: space-between;
  align-items: center;
  gap: var(--s5);
  flex-wrap: wrap;
  margin-top: clamp(40px, 5vw, 56px);
  padding: clamp(24px, 2.6vw, 32px);
  display: flex;
}

.hx .jobs-cta-banner h3 {
  margin-bottom: 4px;
  font-size: 17px;
}

.hx .jobs-cta-banner p {
  color: var(--muted);
  font-size: 13.5px;
}

.hx .jobs-open-cta {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  display: flex;
}

.hx .jobs-open-cta .jo-text {
  max-width: 640px;
}

.hx .jobs-open-cta h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.hx .jobs-open-cta .lede {
  margin-top: var(--s3);
}

@media (max-width: 900px) {
  .hx .careers-perks {
    grid-template-columns: repeat(2, 1fr);
    row-gap: clamp(32px, 4vw, 44px);
  }

  .hx .perk-feature:nth-child(odd) {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 860px) {
  .hx .jobs-layout {
    grid-template-columns: 1fr;
  }

  .hx .jobs-filter-toggle {
    display: inline-flex;
  }

  .hx .jobs-filter-panel {
    display: none;
    position: static;
  }

  .hx .jobs-filter-panel.open {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hx .careers-perks {
    grid-template-columns: 1fr;
    row-gap: clamp(28px, 4vw, 36px);
  }

  .hx .perk-feature {
    border-top: 1px solid var(--hairline);
    padding: 0;
    padding-top: var(--s5);
    border-left: none !important;
  }

  .hx .perk-feature:first-child {
    border-top: none;
    padding-top: 0;
  }
}

.hx .bym-hero {
  position: relative;
  overflow: hidden;
}

.hx .bym-hero-field {
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .92;
  background-image: url("/images/build-by-moreyeahs.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: min(44%, 620px);
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(48px, 9vw, 140px);
}

.hx .bym-hero .container {
  z-index: 1;
  position: relative;
}

.hx .bym-hero-art {
  display: none;
}

@media (max-width: 1150px) and (min-width: 761px) {
  .hx .bym-hero-field {
    width: min(66%, 540px);
    right: clamp(16px, 4vw, 48px);
  }
}

@media (max-width: 760px) {
  .hx .bym-hero:before {
    display: none;
  }

  .hx .bym-hero {
    padding-bottom: clamp(28px, 7vw, 44px);
  }

  .hx .bym-hero-field {
    display: none;
  }

  .hx .bym-hero-art {
    background-image: url("/images/Common%20Background.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    margin-top: clamp(28px, 7vw, 44px);
    margin-left: calc(50% - 50vw);
    padding-block: clamp(24px, 6vw, 40px);
    display: block;
  }

  .hx .bym-hero-art:before {
    content: "";
    aspect-ratio: 1;
    background-image: url("/images/build-by-moreyeahs.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: min(94%, 460px);
    margin-inline: auto;
    display: block;
  }
}

@media (min-width: 1151px) {
  .hx .bym-hero .section-head {
    max-width: clamp(480px, 35vw, 720px);
  }
}

.hx .bym-hero .section-head .lede {
  max-width: 46ch;
  margin-top: clamp(24px, 3vw, 32px);
}

.hx .bym-hero .hero-cta {
  margin-top: clamp(32px, 4vw, 48px);
}

.hx .section.bym-stories {
  padding-top: clamp(28px, 3.5vw, 48px);
}

.hx .bym-controls {
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
  display: flex;
}

.hx .bym-search {
  flex: auto;
  min-width: 240px;
  position: relative;
}

.hx .bym-search svg {
  width: 16px;
  height: 16px;
  color: var(--faint);
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
}

.hx .bym-search input {
  width: 100%;
  font: inherit;
  border: 1px solid var(--hairline-strong);
  background: var(--ground);
  color: var(--ink);
  transition: border-color .25s var(--ease);
  border-radius: 0;
  padding: 12px 16px 12px 40px;
  font-size: 15px;
}

.hx .bym-search input:focus {
  border-color: var(--accent);
  outline: none;
}

.hx .bym-search input::placeholder {
  color: var(--faint);
}

.hx .bym-select-wrap {
  flex: none;
  position: relative;
}

.hx .bym-select-wrap select {
  appearance: none;
  font: inherit;
  font-size: 13.5px;
  font-family: var(--mono);
  letter-spacing: .03em;
  border: 1px solid var(--hairline-strong);
  background: var(--ground);
  color: var(--ink);
  cursor: pointer;
  min-width: 210px;
  transition: border-color .25s var(--ease);
  border-radius: 0;
  padding: 12px 40px 12px 16px;
}

.hx .bym-select-wrap select:focus {
  border-color: var(--accent);
  outline: none;
}

.hx .bym-select-wrap svg {
  width: 11px;
  height: 7px;
  color: var(--faint);
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.hx .bym-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 4vw, 52px) clamp(24px, 2.6vw, 36px);
  margin-top: clamp(32px, 4vw, 48px);
  display: grid;
}

.hx .bym-card {
  border: 1px solid var(--hairline);
  background: var(--paper);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  flex-direction: column;
  display: flex;
  overflow: hidden;
}

.hx .bym-card:hover {
  border-color: var(--hairline-strong);
  transform: translateY(-4px);
  box-shadow: 0 30px 60px -44px #14100a66;
}

.hx .bym-thumb {
  aspect-ratio: 3 / 2;
  background: var(--ground);
  border-bottom: 1px solid var(--hairline);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.hx .bym-thumb img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .5s var(--ease);
  display: block;
}

.hx .bym-thumb:hover img {
  transform: scale(1.05);
}

.hx .bym-scrim {
  background: color-mix(in srgb, var(--ink) 8%, transparent);
  transition: background .3s var(--ease);
  position: absolute;
  inset: 0;
}

.hx .bym-thumb:hover .bym-scrim {
  background: color-mix(in srgb, var(--ink) 22%, transparent);
}

.hx .bym-play {
  background: var(--ink);
  width: 60px;
  height: 60px;
  color: var(--ground);
  opacity: 0;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  pointer-events: none;
  border-radius: 50%;
  place-items: center;
  display: grid;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)scale(.9);
}

.hx .bym-play svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

.hx .bym-thumb:hover .bym-play {
  opacity: 1;
  transform: translate(-50%, -50%)scale(1);
}

.hx .bym-body {
  flex-direction: column;
  flex: auto;
  padding: clamp(18px, 1.8vw, 22px);
  display: flex;
}

.hx .bym-row-top {
  justify-content: space-between;
  align-items: center;
  gap: var(--s4);
  display: flex;
}

.hx .bym-cat {
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 600;
}

.hx .bym-body h3 {
  margin-top: var(--s3);
  letter-spacing: -.02em;
  cursor: pointer;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: clamp(19px, 1.7vw, 22px);
  font-weight: 600;
  line-height: 1.35;
  display: -webkit-box;
  overflow: hidden;
}

.hx .bym-body p {
  margin-top: var(--s3);
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.hx .bym-share {
  background: var(--ground);
  border: 1px solid var(--hairline);
  width: 32px;
  height: 32px;
  color: var(--ink-soft);
  transition: color .2s var(--ease), border-color .2s var(--ease);
  flex: none;
  place-items: center;
  display: grid;
}

.hx .bym-share svg {
  width: 14px;
  height: 14px;
}

.hx .bym-share:hover, .hx .bym-share.copied {
  color: var(--accent);
  border-color: var(--hairline-strong);
}

.hx .bym-share.failed {
  color: var(--muted);
  border-color: var(--hairline-strong);
}

.hx .bym-empty {
  text-align: center;
  color: var(--muted);
  padding: clamp(64px, 8vw, 96px) 0;
  font-size: 15px;
}

@media (max-width: 1024px) {
  .hx .bym-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hx .bym-grid {
    grid-template-columns: 1fr;
  }

  .hx .bym-play {
    opacity: 1;
    transform: translate(-50%, -50%)scale(1);
  }

  .hx .bym-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .hx .bym-select-wrap select {
    width: 100%;
  }
}

.hx .vid-modal-backdrop {
  z-index: 1000;
  background: color-mix(in srgb, var(--ink) 68%, transparent);
  justify-content: center;
  align-items: center;
  padding: clamp(20px, 4vw, 48px);
  display: flex;
  position: fixed;
  inset: 0;
}

.hx .vid-modal-shell {
  width: min(92vw, 1200px);
  max-height: 92vh;
  position: relative;
}

.hx .vid-modal {
  background: var(--ground);
  border: 1px solid var(--hairline-strong);
  width: 100%;
  max-height: 92vh;
  overflow: hidden auto;
}

.hx .vid-modal-close {
  z-index: 5;
  background: var(--ink);
  width: 44px;
  height: 44px;
  color: var(--ground);
  border: 2px solid var(--ground);
  transition: background .2s var(--ease), transform .2s var(--ease);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: -18px;
  right: -18px;
  box-shadow: 0 8px 24px #0006;
}

.hx .vid-modal-close:hover {
  background: var(--accent);
  color: var(--on-accent);
  transform: scale(1.06);
}

.hx .vid-modal-close svg {
  width: 18px;
  height: 18px;
}

.hx .vid-frame {
  aspect-ratio: 16 / 9;
  background: #000;
  width: 100%;
  position: relative;
}

.hx .vid-frame iframe {
  border: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hx .vid-modal-info {
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--s5);
  border-top: 1px solid var(--hairline);
  padding: clamp(18px, 2.2vw, 24px) clamp(20px, 2.4vw, 28px) clamp(20px, 2.4vw, 26px);
  display: flex;
}

.hx .vid-modal-info h3 {
  letter-spacing: -.02em;
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.35;
}

.hx .vid-modal-info p {
  color: var(--muted);
  margin-top: 6px;
  font-size: 13.5px;
  line-height: 1.6;
}

.hx .vid-share-btn {
  color: var(--accent);
  background: none;
  border: none;
  flex: none;
  align-items: center;
  gap: 7px;
  padding: 6px 0;
  font-size: 12.5px;
  font-weight: 500;
  display: inline-flex;
}

.hx .vid-share-btn svg {
  width: 14px;
  height: 14px;
}

.hx .job-meta-row {
  margin-top: var(--s5);
  flex-wrap: wrap;
  gap: clamp(16px, 2vw, 28px);
  display: flex;
}

.hx .job-meta-row .jm {
  color: var(--muted);
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  display: flex;
}

.hx .job-meta-row .jm svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
  flex: none;
}

.hx .job-share {
  border: 1px solid var(--hairline);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-top: 0;
  padding: 16px 20px;
  display: flex;
}

.hx .job-share span {
  color: var(--muted);
  font-size: 12.5px;
}

.hx .job-share button {
  color: var(--accent);
  background: none;
  border: none;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  display: inline-flex;
}

.hx .job-share button svg {
  flex: none;
  width: 13px;
  height: 13px;
}

.hx .apply-modal-backdrop {
  z-index: 1000;
  background: color-mix(in srgb, var(--ink) 55%, transparent);
  justify-content: center;
  align-items: center;
  padding: clamp(12px, 3vw, 32px);
  display: flex;
  position: fixed;
  inset: 0;
}

.hx .apply-modal {
  background: var(--ground);
  border: 1px solid var(--hairline-strong);
  width: 100%;
  max-width: 720px;
  height: 92vh;
  position: relative;
  overflow: hidden;
}

.hx .apply-modal-close {
  z-index: 2;
  background: var(--paper);
  border: 1px solid var(--hairline);
  width: 36px;
  height: 36px;
  color: var(--ink);
  transition: background .2s var(--ease);
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 14px;
  right: 14px;
}

.hx .apply-modal-close:hover {
  background: var(--paper-2);
}

.hx .apply-modal-close svg {
  width: 16px;
  height: 16px;
}

.hx .apply-modal iframe {
  border: none;
  width: 100%;
  height: 100%;
  display: block;
}

.hx .form-modal {
  background: var(--ground);
  border: 1px solid var(--hairline-strong);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  overflow-y: auto;
}

.hx .field input[type="file"] {
  border: 1px dashed var(--hairline-strong);
  background: var(--ground);
  color: var(--muted);
  cursor: pointer;
  padding: 14px;
  font-size: 13.5px;
}

.hx .field input[type="file"]::file-selector-button {
  border: 1px solid var(--hairline);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  margin-right: 12px;
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 500;
}

.hx .field-note {
  color: var(--faint);
  font-size: 11.5px;
}

@media (max-width: 640px) {
  .hx .job-meta-row {
    gap: 14px 22px;
  }
}

.hx .about-hero {
  position: relative;
  overflow: hidden;
}

.hx .about-hero-field {
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .92;
  background-image: url("/images/about-us.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: min(44%, 620px);
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(48px, 9vw, 140px);
}

.hx .about-hero .container {
  z-index: 1;
  position: relative;
}

.hx .about-hero-art {
  display: none;
}

@media (max-width: 1150px) and (min-width: 761px) {
  .hx .about-hero-field {
    width: min(66%, 540px);
    right: clamp(16px, 4vw, 48px);
  }

  .hx .about-hero .section-head {
    max-width: 380px;
  }
}

@media (max-width: 760px) {
  .hx .about-hero:before {
    display: none;
  }

  .hx .about-hero {
    padding-bottom: clamp(28px, 7vw, 44px);
  }

  .hx .about-hero-field {
    display: none;
  }

  .hx .about-hero-art {
    background-image: url("/images/Common%20Background.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    margin-top: clamp(28px, 7vw, 44px);
    margin-left: calc(50% - 50vw);
    padding-block: clamp(24px, 6vw, 40px);
    display: block;
  }

  .hx .about-hero-art:before {
    content: "";
    aspect-ratio: 1;
    background-image: url("/images/about-us.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: min(94%, 460px);
    margin-inline: auto;
    display: block;
  }
}

@media (min-width: 1151px) {
  .hx .about-hero .section-head {
    max-width: clamp(420px, 35vw, 720px);
  }
}

.hx .culture-hero {
  position: relative;
  overflow: hidden;
}

.hx .culture-hero-field {
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .92;
  background-image: url("/images/culture.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: min(44%, 620px);
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(48px, 9vw, 140px);
}

.hx .culture-hero .container {
  z-index: 1;
  position: relative;
}

.hx .culture-hero-art {
  display: none;
}

@media (max-width: 1150px) and (min-width: 761px) {
  .hx .culture-hero {
    min-height: clamp(360px, 60vw, 480px);
  }

  .hx .culture-hero-field {
    width: min(66%, 540px);
    right: clamp(16px, 4vw, 48px);
  }

  .hx .culture-hero .section-head {
    max-width: 380px;
  }
}

@media (max-width: 760px) {
  .hx .culture-hero:before {
    display: none;
  }

  .hx .culture-hero {
    padding-bottom: clamp(28px, 7vw, 44px);
  }

  .hx .culture-hero-field {
    display: none;
  }

  .hx .culture-hero-art {
    background-image: url("/images/Common%20Background.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    margin-top: clamp(28px, 7vw, 44px);
    margin-left: calc(50% - 50vw);
    padding-block: clamp(24px, 6vw, 40px);
    display: block;
  }

  .hx .culture-hero-art:before {
    content: "";
    aspect-ratio: 1;
    background-image: url("/images/culture.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: min(94%, 460px);
    margin-inline: auto;
    display: block;
  }
}

@media (min-width: 1151px) {
  .hx .culture-hero .section-head {
    max-width: clamp(420px, 35vw, 720px);
  }
}

.hx .culture-hero .lede {
  max-width: 50ch;
  margin-top: clamp(28px, 4vw, 44px);
}

.hx .pride-layout {
  grid-template-columns: 1.1fr .9fr;
  align-items: start;
  gap: clamp(32px, 4vw, 64px);
  display: grid;
}

.hx .pride-notes {
  background: var(--hairline);
  border: 1px solid var(--hairline);
  flex-direction: column;
  gap: 1px;
  margin-top: clamp(32px, 3.5vw, 48px);
  display: flex;
}

.hx .pride-notes > div {
  background: var(--ground);
  padding: var(--s5) var(--s5);
}

.hx .pride-notes span {
  letter-spacing: -.01em;
  color: var(--ink);
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  display: block;
}

.hx .pride-notes p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.hx .pride-stats {
  background: var(--hairline);
  border: 1px solid var(--hairline);
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  display: grid;
}

.hx .pride-stat {
  background: var(--ground);
  transition: background .3s var(--ease);
  flex-direction: column;
  gap: 10px;
  padding: clamp(22px, 2.4vw, 30px);
  display: flex;
}

.hx .pride-stat:hover {
  background: var(--paper);
}

.hx .pride-stat .ico {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.hx .pride-stat .n {
  font-family: var(--serif);
  letter-spacing: -.03em;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.hx .pride-stat .l {
  color: var(--ink-soft);
  font-size: 13.5px;
  font-weight: 500;
}

.hx .pride-stat .s {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
}

.hx .section-head + .pride-showcase {
  margin-top: clamp(48px, 6vw, 80px);
}

.hx .pride-rail {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: clamp(24px, 3vw, 36px);
  display: flex;
}

.hx .pride-dropdown {
  margin-bottom: clamp(24px, 3vw, 36px);
  display: none;
  position: relative;
}

@media (max-width: 700px) {
  .hx .pride-rail {
    display: none;
  }

  .hx .pride-dropdown {
    display: block;
  }
}

.hx .pride-dropdown-trigger {
  width: 100%;
  font-family: var(--mono);
  letter-spacing: .02em;
  border: 1px solid var(--hairline-strong);
  background: var(--ground);
  color: var(--ink);
  cursor: pointer;
  transition: border-color .2s var(--ease);
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.hx .pride-dropdown-trigger:hover {
  border-color: var(--ink);
}

.hx .pride-dropdown[data-open="true"] .pride-dropdown-trigger {
  border-color: var(--accent);
}

.hx .pride-dropdown-trigger .chev {
  width: 11px;
  height: 11px;
  color: var(--muted);
  transition: transform .2s var(--ease);
  flex: none;
}

.hx .pride-dropdown[data-open="true"] .pride-dropdown-trigger .chev {
  color: var(--accent);
  transform: rotate(180deg);
}

.hx .pride-dropdown-list {
  z-index: 5;
  border: 1px solid var(--hairline-strong);
  background: var(--ground);
  max-height: 260px;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  overflow-y: auto;
}

.hx .pride-dropdown-option {
  color: var(--ink);
  cursor: pointer;
  border-bottom: 1px solid var(--hairline);
  transition: background .15s var(--ease);
  padding: 12px 16px;
  font-size: 13.5px;
}

.hx .pride-dropdown-option:last-child {
  border-bottom: none;
}

.hx .pride-dropdown-option:hover {
  background: var(--paper);
}

.hx .pride-dropdown-option.active {
  background: var(--ink);
  color: var(--ground);
  font-weight: 600;
}

.hx .pride-card {
  border: 1px solid var(--hairline);
  background: var(--ground);
  animation: fade .4s var(--ease);
  grid-template-columns: minmax(240px, .42fr) minmax(0, .58fr);
  display: grid;
}

.hx .pride-copy {
  flex-direction: column;
  padding: clamp(28px, 3vw, 40px);
  display: flex;
}

.hx .pride-tag {
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s4);
  font-size: 11px;
  font-weight: 600;
}

.hx .pride-copy h3 {
  letter-spacing: -.03em;
  margin-bottom: var(--s4);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.15;
}

.hx .pride-copy p {
  color: var(--muted);
  margin-bottom: var(--s4);
  font-size: 14px;
  line-height: 1.65;
}

.hx .pride-list {
  flex-direction: column;
  gap: 9px;
  margin-top: auto;
  list-style: none;
  display: flex;
}

.hx .pride-list li {
  color: var(--ink-soft);
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  line-height: 1.55;
  display: flex;
}

.hx .pride-list li:before {
  content: "";
  background: var(--accent);
  flex: none;
  width: 5px;
  height: 5px;
  margin-top: 7px;
}

.hx .pride-media {
  border-left: 1px solid var(--hairline);
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.hx .pride-track {
  height: 100%;
  transition: transform .6s var(--ease);
  display: flex;
}

.hx .pride-frame {
  aspect-ratio: 4 / 3;
  flex: 0 0 100%;
  overflow: hidden;
}

.hx .pride-frame img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.hx .pride-arrow {
  z-index: 2;
  background: var(--ground);
  border: 1px solid var(--hairline-strong);
  width: 34px;
  height: 34px;
  color: var(--ink);
  transition: color .2s var(--ease), border-color .2s var(--ease);
  place-items: center;
  display: grid;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.hx .pride-arrow svg {
  width: 16px;
  height: 16px;
}

.hx .pride-arrow:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.hx .pride-arrow.prev {
  left: 12px;
}

.hx .pride-arrow.next {
  right: 12px;
}

.hx .pride-dots {
  z-index: 2;
  gap: 6px;
  display: flex;
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 1100px) {
  .hx .pride-layout, .hx .pride-card {
    grid-template-columns: 1fr;
  }

  .hx .pride-media {
    border-left: none;
    border-top: 1px solid var(--hairline);
  }
}

@media (max-width: 640px) {
  .hx .pride-stats {
    grid-template-columns: 1fr;
  }
}

.hx .icon-grid {
  grid-template-columns: repeat(var(--cols, 4), 1fr);
  background: var(--hairline);
  border: 1px solid var(--hairline);
  gap: 1px;
  display: grid;
}

.hx .icon-grid .principle .ico {
  margin-bottom: 0;
}

.hx .section-head + .icon-grid {
  margin-top: 32px;
}

.hx .icon-grid + .icon-grid {
  margin-top: clamp(36px, 4vw, 56px);
}

.hx .values-photo {
  margin: clamp(36px, 4vw, 56px) 0;
}

.hx .values-photo img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: clamp(220px, 24vw, 380px);
  display: block;
}

@media (max-width: 900px) {
  .hx .values-photo img {
    aspect-ratio: 1964 / 801;
    height: auto;
  }

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

@media (max-width: 640px) {
  .hx .icon-grid {
    grid-template-columns: 1fr;
  }
}

.hx .principle .p-link {
  padding-top: var(--s3);
  color: var(--ink);
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 13.5px;
  font-weight: 500;
  display: inline-flex;
}

.hx .principle .p-link .arrow {
  transition: transform .3s var(--ease);
}

.hx .principle:hover .p-link .arrow {
  transform: translateX(4px);
}

.hx .voice-card {
  border: 1px solid var(--hairline);
  background: var(--ground);
  transition: border-color .3s var(--ease);
}

.hx .voice-card.is-active {
  border-color: var(--accent);
}

.hx .voice-avatar {
  background: var(--paper-2);
  border: 1px solid var(--hairline);
  width: 34px;
  height: 34px;
  color: var(--ink);
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
}

.hx .voice-dot {
  border: 1px solid var(--hairline-strong);
  width: 8px;
  height: 8px;
  transition: width .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
  background: none;
  border-radius: 50%;
  padding: 0;
}

.hx .voice-dot.is-active {
  background: var(--accent);
  border-color: var(--accent);
  border-radius: 100px;
  width: 28px;
}

@keyframes voicesTicker {
  0% {
    transform: translateX(0);
  }

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

.hx .cta-band, .hx .jobs-open-cta {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
  display: flex;
}

.hx .cta-band .jo-text, .hx .jobs-open-cta .jo-text {
  max-width: 640px;
}

.hx .cta-band h2, .hx .jobs-open-cta h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.hx .cta-band .lede, .hx .jobs-open-cta .lede {
  margin-top: var(--s3);
}

.hx .blog-hero {
  position: relative;
  overflow: hidden;
}

.hx .blog-hero-field {
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .92;
  background-image: url("/images/blog.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: min(44%, 620px);
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(48px, 9vw, 140px);
}

.hx .blog-hero .container {
  z-index: 1;
  position: relative;
}

.hx .blog-hero-art {
  display: none;
}

@media (max-width: 1150px) and (min-width: 761px) {
  .hx .blog-hero-field {
    width: min(66%, 540px);
    right: clamp(16px, 4vw, 48px);
  }
}

@media (max-width: 760px) {
  .hx .blog-hero:before {
    display: none;
  }

  .hx .blog-hero {
    padding-bottom: clamp(28px, 7vw, 44px);
  }

  .hx .blog-hero-field {
    display: none;
  }

  .hx .blog-hero-art {
    background-image: url("/images/Common%20Background.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    margin-top: clamp(28px, 7vw, 44px);
    margin-left: calc(50% - 50vw);
    padding-block: clamp(24px, 6vw, 40px);
    display: block;
  }

  .hx .blog-hero-art:before {
    content: "";
    aspect-ratio: 1;
    background-image: url("/images/blog.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: min(94%, 460px);
    margin-inline: auto;
    display: block;
  }
}

@media (min-width: 1151px) {
  .hx .blog-hero .section-head {
    max-width: clamp(440px, 35vw, 720px);
  }

  .hx .blog-hero .hero-metrics {
    flex-wrap: nowrap;
    max-width: 540px;
  }

  .hx .blog-hero .hero-metrics .l {
    white-space: normal;
  }
}

.hx .blog-controls {
  align-items: center;
  gap: var(--s4);
  flex-wrap: wrap;
  display: flex;
}

.hx .blog-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
  margin-top: clamp(32px, 4vw, 48px);
  display: grid;
}

.hx .blog-card {
  border: 1px solid var(--hairline);
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s var(--ease);
  flex-direction: column;
  display: flex;
}

.hx .blog-card:hover {
  background: var(--paper-2);
  border-color: var(--hairline-strong);
  transform: translateY(-3px);
}

.hx .blog-card .bc-media {
  aspect-ratio: 16 / 9;
  background: var(--paper-2);
  flex: none;
  position: relative;
  overflow: hidden;
}

.hx .blog-card .bc-media img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .4s var(--ease);
  display: block;
}

.hx .blog-card:hover .bc-media img {
  transform: scale(1.04);
}

.hx .blog-card .bc-new {
  z-index: 1;
  font-family: var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--on-accent);
  background: var(--accent);
  padding: 4px 9px;
  font-size: 10px;
  font-weight: 600;
  position: absolute;
  top: 12px;
  left: 12px;
}

.hx .blog-card .bc-body {
  flex-direction: column;
  flex: 1;
  padding: clamp(18px, 2vw, 22px);
  display: flex;
}

.hx .blog-card h3 {
  letter-spacing: -.02em;
  font-size: 17px;
  line-height: 1.35;
}

.hx .blog-card .bc-cat {
  margin-top: var(--s4);
  margin-bottom: var(--s5);
}

.hx .blog-card .bc-foot {
  padding-top: var(--s5);
  border-top: 1px solid var(--hairline);
  justify-content: space-between;
  align-items: center;
  gap: var(--s4);
  margin-top: auto;
  display: flex;
}

.hx .blog-card .bc-meta {
  font-family: var(--mono);
  letter-spacing: .04em;
  color: var(--faint);
  flex-direction: column;
  gap: 3px;
  font-size: 10.5px;
  display: flex;
}

.hx .blog-card .bc-link {
  color: var(--ink);
  white-space: nowrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
}

.hx .blog-card .bc-link .arrow {
  transition: transform .3s var(--ease);
}

.hx .blog-card:hover .bc-link .arrow {
  transform: translateX(4px);
}

.hx .blog-pagination {
  justify-content: center;
  align-items: center;
  gap: var(--s5);
  margin-top: clamp(40px, 5vw, 64px);
  display: flex;
}

.hx .blog-pagination .btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

.hx .blog-pagination .bp-count {
  font-family: var(--mono);
  letter-spacing: .04em;
  color: var(--muted);
  font-size: 12.5px;
}

.hx .blog-pagination .bp-count b {
  color: var(--ink);
  font-weight: 600;
}

.hx .blog-news {
  text-align: center;
  border: 1px solid var(--hairline);
  background: var(--paper);
  max-width: 640px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 64px);
}

.hx .blog-news .bn-icon {
  border: 1px solid var(--hairline-strong);
  width: 44px;
  height: 44px;
  margin: 0 auto var(--s5);
  color: var(--accent);
  place-items: center;
  display: grid;
}

.hx .blog-news .bn-icon svg {
  width: 20px;
  height: 20px;
}

.hx .blog-news h2 {
  letter-spacing: -.03em;
  font-size: clamp(22px, 2.6vw, 30px);
}

.hx .blog-news p {
  margin-top: var(--s4);
  color: var(--muted);
  max-width: 42ch;
  margin-inline: auto;
  font-size: 14.5px;
  line-height: 1.7;
}

.hx .blog-news form {
  margin-top: var(--s6);
  gap: var(--s3);
  max-width: 420px;
  margin-inline: auto;
  display: flex;
}

.hx .blog-news input {
  border: 1px solid var(--hairline-strong);
  background: var(--ground);
  height: 48px;
  color: var(--ink);
  flex: 1;
  padding: 0 16px;
  font-family: inherit;
  font-size: 14px;
  line-height: 48px;
}

.hx .blog-news input::placeholder {
  color: var(--faint);
}

.hx .blog-news input:focus {
  border-color: var(--accent);
  outline: none;
}

.hx .blog-news .bn-done {
  color: var(--accent);
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
}

@media (max-width: 1024px) {
  .hx .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hx .blog-grid {
    grid-template-columns: 1fr;
  }

  .hx .blog-controls {
    flex-direction: column;
    align-items: stretch;
  }

  .hx .blog-news form {
    flex-direction: column;
  }

  .hx .blog-news input, .hx .blog-news button {
    flex: none;
    width: 100%;
  }
}

.hx .blog-post-layout {
  grid-template-columns: 1.1fr .9fr;
  align-items: center;
  gap: clamp(32px, 4vw, 64px);
  display: grid;
}

.hx .blog-post-head {
  max-width: 620px;
}

.hx .blog-post-head h1 {
  letter-spacing: -.035em;
  font-size: clamp(28px, 4.4vw, 50px);
  line-height: 1.08;
}

.hx .blog-post-head .pb-tags {
  margin-top: var(--s5);
}

.hx .blog-post-media {
  border: 1px solid var(--hairline);
  aspect-ratio: 16 / 9;
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}

.hx .blog-post-media img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 900px) {
  .hx .blog-post-layout {
    grid-template-columns: 1fr;
  }

  .hx .blog-post-head {
    max-width: none;
  }

  .hx .blog-post-media {
    order: -1;
  }
}

.hx .blog-post-layout.cs-hero {
  grid-template-columns: 1fr;
}

.hx .blog-post-layout.cs-hero .blog-post-head {
  max-width: none;
}

.hx .cs-hero-bottom {
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s5);
  flex-wrap: wrap;
  margin-top: clamp(28px, 3.2vw, 40px);
  display: flex;
}

.hx .hero-metrics.cs-hero-meta {
  flex-wrap: wrap;
  margin-top: 0;
}

.hx .cs-hero-meta .n {
  white-space: normal;
  font-size: clamp(14px, 1.6vw, 19px);
  font-weight: 600;
}

.hx .cs-hero-meta .l {
  white-space: normal;
}

.hx .cs-hero-actions .blog-actions {
  margin-left: 0;
}

.hx .cs-hero-actions .blog-actions button {
  color: var(--accent);
}

.hx .cs-hero-actions .blog-actions button:hover:not(:disabled) {
  color: var(--accent-ink);
}

.hx .blog-meta {
  padding-top: var(--s5);
  border-top: 1px solid var(--hairline);
  align-items: center;
  gap: var(--s5);
  flex-wrap: wrap;
  margin-top: clamp(28px, 3vw, 40px);
  display: flex;
}

.hx .blog-meta .bm-item {
  color: var(--muted);
  align-items: center;
  gap: 7px;
  font-size: 13px;
  display: flex;
}

.hx .blog-meta .bm-item svg {
  width: 14px;
  height: 14px;
  color: var(--faint);
}

.hx .blog-actions {
  align-items: center;
  gap: var(--s5);
  margin-left: auto;
  display: flex;
}

.hx .blog-actions button {
  color: var(--muted);
  transition: color .2s var(--ease);
  background: none;
  border: none;
  align-items: center;
  gap: 6px;
  padding: 0;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.hx .blog-actions button svg {
  width: 14px;
  height: 14px;
}

.hx .blog-actions button:hover:not(:disabled) {
  color: var(--accent);
}

.hx .blog-actions button:disabled {
  color: var(--faint);
  cursor: not-allowed;
}

.hx .blog-prose {
  max-width: 760px;
  color: var(--ink);
  margin-top: clamp(40px, 5vw, 64px);
  font-size: 16px;
  line-height: 1.85;
}

.hx .blog-prose p {
  margin: 0 0 20px;
}

.hx .blog-prose h2, .hx .blog-prose h3, .hx .blog-prose h4 {
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 40px 0 16px;
  font-weight: 600;
}

.hx .blog-prose h2 {
  border-bottom: 1px solid var(--hairline);
  padding-bottom: 12px;
  font-size: 26px;
}

.hx .blog-prose h3 {
  font-size: 21px;
}

.hx .blog-prose h4 {
  color: var(--ink-soft);
  font-size: 17px;
}

.hx .blog-prose a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.hx .blog-prose a:hover {
  text-decoration: underline;
}

.hx .blog-prose ul, .hx .blog-prose ol {
  margin: 20px 0;
  padding-left: 26px;
}

.hx .blog-prose ul {
  list-style: outside;
}

.hx .blog-prose ol {
  list-style: decimal;
}

.hx .blog-prose li {
  margin: 10px 0;
  line-height: 1.75;
}

.hx .blog-prose li::marker {
  color: var(--accent);
}

.hx .blog-prose img {
  border: 1px solid var(--hairline);
  max-width: 100%;
  height: auto;
  margin: 32px 0;
}

.hx .blog-prose blockquote {
  border-left: 2px solid var(--accent);
  color: var(--ink-soft);
  background: var(--paper);
  margin: 32px 0;
  padding: 18px 24px;
  font-style: italic;
}

.hx .blog-prose .blog-callout {
  border-left: 2px solid var(--accent);
  background: var(--paper);
  margin: 24px 0;
  padding: 20px 24px;
}

.hx .blog-prose .blog-callout ul, .hx .blog-prose .blog-callout ol {
  margin: 0;
}

.hx .blog-prose .blog-callout li:first-child {
  margin-top: 0;
}

.hx .blog-prose .blog-callout li:last-child {
  margin-bottom: 0;
}

.hx .blog-prose code {
  background: var(--code-bg);
  font-size: 13px;
  font-family: var(--mono);
  border: 1px solid var(--hairline);
  padding: 3px 8px;
}

.hx .blog-prose pre {
  background: var(--paper);
  border: 1px solid var(--hairline);
  margin: 24px 0;
  padding: 24px;
  overflow-x: auto;
}

.hx .blog-prose pre code {
  background: none;
  border: none;
  padding: 0;
}

.hx .blog-prose hr {
  background: var(--hairline);
  border: none;
  height: 1px;
  margin: 40px 0;
}

.hx .blog-prose strong {
  color: var(--ink);
  font-weight: 600;
}

@media (max-width: 640px) {
  .hx .blog-actions {
    justify-content: flex-start;
    width: 100%;
    margin-left: 0;
  }
}

.hx .cs-listing-hero {
  position: relative;
  overflow: hidden;
}

.hx .cs-listing-hero-field {
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .92;
  background-image: url("/images/case-studies.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: min(44%, 620px);
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(48px, 9vw, 140px);
}

.hx .cs-listing-hero .container {
  z-index: 1;
  position: relative;
}

.hx .cs-listing-hero-art {
  display: none;
}

@media (max-width: 1150px) and (min-width: 761px) {
  .hx .cs-listing-hero-field {
    width: min(66%, 540px);
    right: clamp(16px, 4vw, 48px);
  }
}

@media (max-width: 760px) {
  .hx .cs-listing-hero:before {
    display: none;
  }

  .hx .cs-listing-hero {
    padding-bottom: clamp(28px, 7vw, 44px);
  }

  .hx .cs-listing-hero-field {
    display: none;
  }

  .hx .cs-listing-hero-art {
    background-image: url("/images/Common%20Background.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    margin-top: clamp(28px, 7vw, 44px);
    margin-left: calc(50% - 50vw);
    padding-block: clamp(24px, 6vw, 40px);
    display: block;
  }

  .hx .cs-listing-hero-art:before {
    content: "";
    aspect-ratio: 1;
    background-image: url("/images/case-studies.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: min(94%, 460px);
    margin-inline: auto;
    display: block;
  }
}

@media (min-width: 1151px) {
  .hx .cs-listing-hero .section-head {
    max-width: clamp(460px, 35vw, 720px);
  }

  .hx .cs-listing-hero .hero-metrics {
    flex-wrap: nowrap;
    max-width: 540px;
  }

  .hx .cs-listing-hero .hero-metrics .l {
    white-space: normal;
  }
}

.hx .cs-layout {
  grid-template-columns: 260px 1fr;
  align-items: start;
  gap: clamp(32px, 4vw, 56px);
  margin-top: clamp(32px, 4vw, 48px);
  display: grid;
}

.hx #cs-listing {
  overflow: visible;
}

.hx .cs-sidebar {
  border: 1px solid var(--hairline);
  background: var(--paper);
  position: sticky;
  top: 100px;
}

.hx .cs-filter-search {
  padding: var(--s4);
  border-bottom: 1px solid var(--hairline);
  position: relative;
}

.hx .cs-filter-search svg {
  width: 14px;
  height: 14px;
  color: var(--faint);
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 26px;
  transform: translateY(-50%);
}

.hx .cs-filter-search input {
  width: 100%;
  height: 40px;
  font: inherit;
  border: 1px solid var(--hairline-strong);
  background: var(--ground);
  color: var(--ink);
  padding: 0 12px 0 34px;
  font-size: 13.5px;
}

.hx .cs-filter-search input:focus {
  border-color: var(--accent);
  outline: none;
}

.hx .cs-filter-search input::placeholder {
  color: var(--faint);
}

.hx .cs-filter-group {
  border-top: 1px solid var(--hairline);
}

.hx .cs-filter-group:first-of-type {
  border-top: none;
}

.hx .cs-filter-group-head {
  width: 100%;
  padding: var(--s4);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.hx .cs-filter-group-head .lbl {
  color: var(--ink);
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  display: flex;
}

.hx .cs-filter-group-head .cnt {
  font-family: var(--mono);
  color: var(--accent);
  border: 1px solid var(--hairline-strong);
  padding: 1px 6px;
  font-size: 10px;
}

.hx .cs-filter-chev {
  width: 12px;
  height: 8px;
  color: var(--muted);
  transition: transform .25s var(--ease);
  flex: none;
}

.hx .cs-filter-group.open .cs-filter-chev {
  transform: rotate(180deg);
}

.hx .cs-filter-list {
  padding: 0 var(--s4) var(--s4);
  flex-direction: column;
  display: flex;
}

.hx .cs-filter-item {
  cursor: pointer;
  color: var(--muted);
  transition: color .15s var(--ease);
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  display: flex;
}

.hx .cs-filter-item:hover {
  color: var(--ink);
}

.hx .cs-filter-item.on {
  color: var(--ink);
  font-weight: 500;
}

.hx .cs-filter-item .term {
  flex: 1;
}

.hx .cs-filter-item .cnt {
  font-family: var(--mono);
  color: var(--faint);
  font-size: 11px;
}

.hx .cs-filter-clear {
  width: 100%;
  padding: var(--s4);
  border-top: 1px solid var(--hairline);
  color: var(--accent);
  cursor: pointer;
  text-align: center;
  background: none;
  border-bottom: none;
  border-left: none;
  border-right: none;
  font-size: 12.5px;
  font-weight: 500;
}

.hx .cs-filter-clear:hover {
  background: var(--paper-2);
}

.hx .cs-toolbar {
  justify-content: space-between;
  align-items: center;
  gap: var(--s4);
  margin-bottom: var(--s5);
  flex-wrap: wrap;
  display: flex;
}

.hx .cs-count {
  font-family: var(--mono);
  letter-spacing: .04em;
  color: var(--muted);
  font-size: 12px;
}

.hx .cs-pills {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.hx .cs-pill {
  color: var(--ink-soft);
  border: 1px solid var(--hairline-strong);
  background: var(--paper);
  cursor: pointer;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  font-size: 11.5px;
  font-weight: 500;
  display: inline-flex;
}

.hx .cs-pill:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.hx .cs-mobile-filter {
  display: none;
}

.hx .cs-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
  display: grid;
}

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

  .hx .cs-sidebar {
    display: none;
    position: static;
  }

  .hx .cs-sidebar.open {
    display: block;
  }

  .hx .cs-mobile-filter {
    margin-bottom: var(--s5);
    display: flex;
  }
}

@media (max-width: 640px) {
  .hx .cs-grid {
    grid-template-columns: 1fr;
  }
}

.hx .cs-client {
  border: 1px solid var(--hairline);
  background: var(--paper);
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(24px, 3vw, 40px);
  padding: clamp(28px, 4vw, 44px);
  display: grid;
}

.hx .cs-client-eyebrow {
  font-family: var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s4);
  font-size: 12px;
  display: block;
}

.hx .cs-client-content p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
}

.hx .cs-client-by {
  white-space: nowrap;
  align-items: center;
  gap: 12px;
  display: flex;
}

.hx .cs-client-by img {
  object-fit: cover;
  border-radius: 50%;
  flex: none;
  width: 52px;
  height: 52px;
}

.hx .cs-client-by .who b {
  color: var(--ink);
  font-size: 15.5px;
  font-weight: 600;
  display: block;
}

.hx .cs-client-by .who span {
  color: var(--muted);
  margin-top: 2px;
  font-size: 13.5px;
  display: block;
}

@media (max-width: 700px) {
  .hx .cs-client {
    grid-template-columns: 1fr;
  }

  .hx .cs-client-by {
    white-space: normal;
  }
}

.hx .cs-facts {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(16px, 2vw, 20px);
  display: grid;
}

.hx .cs-fact {
  background: var(--ground);
  border: 1px solid var(--hairline);
  padding: clamp(24px, 2.6vw, 34px);
}

.hx .cs-fact-label {
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: var(--s5);
  font-size: 12.5px;
  display: block;
}

.hx .cs-fact .pb-list li {
  font-size: 17px;
  line-height: 1.7;
}

.hx .cs-stats {
  margin-top: var(--s5);
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: clamp(14px, 1.6vw, 18px);
  display: grid;
}

.hx .cs-stat {
  border: 1px solid var(--hairline);
  background: var(--ground);
  padding: clamp(20px, 2.2vw, 26px) clamp(18px, 2vw, 22px);
}

@media (min-width: 900px) {
  .hx .cs-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.hx .cs-stat .big {
  font-family: var(--serif);
  letter-spacing: -.02em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: .95;
}

.hx .cs-stat .cap {
  margin-top: var(--s4);
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.5;
}

.hx .cs-body-layout {
  grid-template-columns: 240px 1fr;
  gap: clamp(32px, 4vw, 56px);
  display: grid;
}

.hx #cs-acf-content {
  max-width: 860px;
}

.hx .cs-section .blog-prose {
  max-width: none;
}

.hx .cs-page-container {
  max-width: 1180px;
  padding-inline: clamp(24px, 3vw, 56px);
}

.hx #cs-body, .hx #blog-body {
  overflow: visible;
}

.hx .section.blog-post-hero {
  padding-bottom: clamp(28px, 3.5vw, 48px);
}

.hx #blog-body {
  padding-top: clamp(28px, 3.5vw, 48px);
}

.hx .cs-toc {
  scrollbar-width: none;
  flex-direction: column;
  gap: 2px;
  max-height: calc(100vh - 140px);
  display: flex;
  position: sticky;
  top: 120px;
  overflow-y: auto;
}

.hx .cs-toc::-webkit-scrollbar {
  display: none;
}

.hx .cs-toc a {
  border-left: 2px solid var(--hairline);
  color: var(--muted);
  transition: color .2s var(--ease), border-color .2s var(--ease);
  padding: 9px 0 9px 16px;
  font-size: 13.5px;
}

.hx .cs-toc a:hover {
  color: var(--ink);
}

.hx .cs-toc a.active {
  color: var(--ink);
  border-left-color: var(--accent);
  font-weight: 600;
}

@media (max-width: 1000px) {
  .hx .cs-body-layout {
    grid-template-columns: 1fr;
  }

  .hx .cs-toc {
    display: none;
  }
}

.hx .cs-section {
  border-bottom: 1px solid var(--hairline);
  padding-bottom: clamp(28px, 3.4vw, 44px);
}

.hx .cs-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hx .cs-section-band {
  align-items: center;
  gap: var(--s5);
  color: var(--ink);
  border: none;
  border-bottom: 1px solid var(--hairline-strong);
  margin-bottom: var(--s6);
  background: none;
  padding: 0 0 clamp(16px, 2vw, 22px);
  display: flex;
}

.hx .cs-section-band .icon {
  border: 1px solid var(--hairline-strong);
  width: 44px;
  height: 44px;
  color: var(--accent);
  border-radius: 50%;
  flex: none;
  place-items: center;
  display: grid;
}

.hx .cs-section-band .icon svg {
  width: 22px;
  height: 22px;
}

.hx .cs-section-band .num {
  font-family: var(--mono);
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 4px;
  font-size: 11px;
  display: block;
}

.hx .cs-section-band h2 {
  color: var(--ink);
  letter-spacing: -.02em;
  font-size: clamp(18px, 2.1vw, 23px);
}

.hx .cs-bullet-grid {
  margin-top: var(--s5);
  flex-direction: column;
  display: flex;
}

.hx .cs-bullet-card {
  border: none;
  border-top: 1px solid var(--hairline);
  background: none;
  align-items: flex-start;
  gap: clamp(16px, 2.2vw, 28px);
  padding: clamp(16px, 2vw, 22px) 0;
  display: flex;
}

.hx .cs-bullet-card:first-child {
  border-top: none;
  padding-top: 0;
}

.hx .cs-bullet-card .ghost-num {
  width: 40px;
  font-family: var(--serif);
  color: var(--hairline-strong);
  flex: none;
  margin-bottom: 0;
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.6;
}

.hx .cs-bullet-card p {
  color: var(--ink-soft);
  flex: 1;
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
}

.hx .cs-timeline {
  margin-top: var(--s5);
  padding-left: 26px;
  position: relative;
}

.hx .cs-timeline:before {
  content: "";
  background: var(--hairline-strong);
  width: 1px;
  position: absolute;
  top: 6px;
  bottom: 6px;
  left: 4px;
}

.hx .cs-timeline-item {
  padding-bottom: clamp(20px, 2.4vw, 26px);
  position: relative;
}

.hx .cs-timeline-item:last-child {
  padding-bottom: 0;
}

.hx .cs-timeline-item:before {
  content: "";
  background: var(--ground);
  border: 2px solid var(--accent);
  border-radius: 50%;
  width: 9px;
  height: 9px;
  position: absolute;
  top: 5px;
  left: -26px;
}

.hx .cs-timeline-item p {
  color: var(--ink-soft);
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
}

.hx .cs-tech-tags {
  margin-top: var(--s5);
  flex-wrap: wrap;
  gap: 10px;
  display: flex;
}

.hx .cs-tech-tag {
  border: 1px solid var(--hairline-strong);
  color: var(--ink-soft);
  border-radius: 8px;
  padding: 9px 16px;
  font-size: 13.5px;
  line-height: 1.5;
}

.hx .cs-quote {
  border: 1px solid var(--hairline);
  background: var(--paper);
  margin-top: var(--s6);
  padding: clamp(32px, 4vw, 48px);
}

.hx .cs-quote .glyph {
  font-family: var(--serif);
  color: var(--accent);
  opacity: .4;
  margin-bottom: var(--s3);
  font-size: 56px;
  line-height: 1;
  display: block;
}

.hx .cs-quote p {
  font-family: var(--serif);
  color: var(--ink);
  margin: 0;
  font-size: clamp(17px, 1.8vw, 20px);
  font-style: italic;
  line-height: 1.6;
}

.hx .cs-testimonial {
  text-align: center;
  border: 1px solid var(--hairline);
  background: var(--paper);
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(48px, 6vw, 72px) clamp(28px, 4vw, 48px);
}

.hx .cs-testimonial .glyph {
  font-family: var(--serif);
  color: var(--accent);
  opacity: .4;
  margin-bottom: var(--s4);
  font-size: 64px;
  line-height: 1;
  display: block;
}

.hx .cs-testimonial blockquote {
  font-family: var(--serif);
  color: var(--ink);
  letter-spacing: -.01em;
  margin: 0;
  font-size: clamp(20px, 2.4vw, 28px);
  font-style: italic;
  line-height: 1.45;
}

.hx .cs-testimonial cite {
  margin-top: var(--s5);
  color: var(--muted);
  font-size: 13.5px;
  font-style: normal;
  display: block;
}

.hx .cs-testimonial cite b {
  color: var(--ink);
  font-weight: 600;
}

.hx .cs-related-head {
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s5);
  margin-bottom: var(--s6);
  flex-wrap: wrap;
  display: flex;
}

.hx .cs-related-head h2 {
  letter-spacing: -.03em;
  font-size: clamp(24px, 2.8vw, 32px);
}

.hx .blog-prose table {
  border-collapse: collapse;
  width: 100%;
  margin: 28px 0;
  font-size: 14px;
}

.hx .blog-prose th, .hx .blog-prose td {
  background: none !important;
}

.hx .blog-prose thead th {
  font-family: var(--mono);
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  border-bottom: 1px solid var(--hairline-strong);
  padding: 10px 14px;
  font-size: 11px;
  font-weight: 600;
  background: var(--paper-2) !important;
}

.hx .blog-prose td {
  border-bottom: 1px solid var(--hairline);
  color: var(--ink-soft);
  padding: 12px 14px;
}

.hx .blog-prose tbody tr:last-child td {
  border-bottom: none;
}

.hx .blog-prose tbody tr:hover td {
  background: var(--paper) !important;
}

.hx .dsai-hero {
  position: relative;
  overflow: hidden;
}

.hx .dsai-hero-field {
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .92;
  background-image: url("/images/data-sciene-solution.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: min(38%, 540px);
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(64px, 11vw, 170px);
}

.hx .dsai-hero .container {
  z-index: 1;
  position: relative;
}

.hx .dsai-hero-art {
  display: none;
}

@media (max-width: 1150px) and (min-width: 761px) {
  .hx .dsai-hero-field {
    width: min(58%, 470px);
    right: clamp(16px, 4vw, 48px);
  }
}

@media (max-width: 760px) {
  .hx .dsai-hero:before {
    display: none;
  }

  .hx .dsai-hero {
    padding-bottom: clamp(28px, 7vw, 44px);
  }

  .hx .dsai-hero-field {
    display: none;
  }

  .hx .dsai-hero-art {
    background-image: url("/images/Common%20Background.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    margin-top: clamp(28px, 7vw, 44px);
    margin-left: calc(50% - 50vw);
    padding-block: clamp(24px, 6vw, 40px);
    display: block;
  }

  .hx .dsai-hero-art:before {
    content: "";
    aspect-ratio: 1;
    background-image: url("/images/data-sciene-solution.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: min(94%, 460px);
    margin-inline: auto;
    display: block;
  }
}

@media (min-width: 1151px) {
  .hx .dsai-hero .section-head {
    max-width: clamp(540px, 35vw, 720px);
  }
}

.hx .dsai-hero .hero-pills {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(28px, 3vw, 40px);
  display: flex;
}

.hx .cld-hero {
  position: relative;
  overflow: hidden;
}

.hx .cld-hero-field {
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .92;
  background-image: url("/images/cloud-infra-solution.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: min(44%, 620px);
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(48px, 9vw, 140px);
}

.hx .cld-hero .container {
  z-index: 1;
  position: relative;
}

.hx .cld-hero-art {
  display: none;
}

@media (max-width: 1150px) and (min-width: 761px) {
  .hx .cld-hero-field {
    width: min(66%, 540px);
    right: clamp(16px, 4vw, 48px);
  }
}

@media (max-width: 760px) {
  .hx .cld-hero:before {
    display: none;
  }

  .hx .cld-hero {
    padding-bottom: clamp(28px, 7vw, 44px);
  }

  .hx .cld-hero-field {
    display: none;
  }

  .hx .cld-hero-art {
    background-image: url("/images/Common%20Background.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    margin-top: clamp(28px, 7vw, 44px);
    margin-left: calc(50% - 50vw);
    padding-block: clamp(24px, 6vw, 40px);
    display: block;
  }

  .hx .cld-hero-art:before {
    content: "";
    aspect-ratio: 1;
    background-image: url("/images/cloud-infra-solution.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: min(94%, 460px);
    margin-inline: auto;
    display: block;
  }
}

@media (min-width: 1151px) {
  .hx .cld-hero .section-head {
    max-width: clamp(540px, 35vw, 720px);
  }
}

.hx .cld-hero .hero-pills {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(28px, 3vw, 40px);
  display: flex;
}

.hx .msft-hero {
  position: relative;
  overflow: hidden;
}

.hx .msft-hero-field {
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .92;
  background-image: url("/images/microsoft-services-solution.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: min(44%, 620px);
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(48px, 9vw, 140px);
}

.hx .msft-hero .container {
  z-index: 1;
  position: relative;
}

.hx .msft-hero-art {
  display: none;
}

@media (max-width: 1150px) and (min-width: 761px) {
  .hx .msft-hero-field {
    width: min(66%, 540px);
    right: clamp(16px, 4vw, 48px);
  }
}

@media (max-width: 760px) {
  .hx .msft-hero:before {
    display: none;
  }

  .hx .msft-hero {
    padding-bottom: clamp(28px, 7vw, 44px);
  }

  .hx .msft-hero-field {
    display: none;
  }

  .hx .msft-hero-art {
    background-image: url("/images/Common%20Background.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    margin-top: clamp(28px, 7vw, 44px);
    margin-left: calc(50% - 50vw);
    padding-block: clamp(24px, 6vw, 40px);
    display: block;
  }

  .hx .msft-hero-art:before {
    content: "";
    aspect-ratio: 1;
    background-image: url("/images/microsoft-services-solution.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: min(94%, 460px);
    margin-inline: auto;
    display: block;
  }
}

@media (min-width: 1151px) {
  .hx .msft-hero .section-head {
    max-width: clamp(540px, 35vw, 720px);
  }
}

.hx .msft-hero .hero-pills {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(28px, 3vw, 40px);
  display: flex;
}

.hx .sf-hero {
  position: relative;
  overflow: hidden;
}

.hx .sf-hero-field {
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .92;
  background-image: url("/images/salesforce-solution.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: min(38%, 540px);
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(64px, 11vw, 170px);
}

.hx .sf-hero .container {
  z-index: 1;
  position: relative;
}

.hx .sf-hero-art {
  display: none;
}

@media (max-width: 1150px) and (min-width: 761px) {
  .hx .sf-hero-field {
    width: min(58%, 470px);
    right: clamp(16px, 4vw, 48px);
  }
}

@media (max-width: 760px) {
  .hx .sf-hero:before {
    display: none;
  }

  .hx .sf-hero {
    padding-bottom: clamp(28px, 7vw, 44px);
  }

  .hx .sf-hero-field {
    display: none;
  }

  .hx .sf-hero-art {
    background-image: url("/images/Common%20Background.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    margin-top: clamp(28px, 7vw, 44px);
    margin-left: calc(50% - 50vw);
    padding-block: clamp(24px, 6vw, 40px);
    display: block;
  }

  .hx .sf-hero-art:before {
    content: "";
    aspect-ratio: 1;
    background-image: url("/images/salesforce-solution.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: min(94%, 460px);
    margin-inline: auto;
    display: block;
  }
}

@media (min-width: 1151px) {
  .hx .sf-hero .section-head {
    max-width: clamp(540px, 35vw, 720px);
  }
}

.hx .sf-hero .hero-pills {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(28px, 3vw, 40px);
  display: flex;
}

.hx .wad-hero {
  position: relative;
  overflow: hidden;
}

.hx .wad-hero-field {
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: multiply;
  opacity: .92;
  background-image: url("/images/web-app-devlopment.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: min(48%, 680px);
  position: absolute;
  top: 0;
  bottom: 0;
  right: clamp(48px, 9vw, 140px);
}

.hx .wad-hero .container {
  z-index: 1;
  position: relative;
}

.hx .wad-hero-art {
  display: none;
}

@media (max-width: 1150px) and (min-width: 761px) {
  .hx .wad-hero-field {
    width: min(66%, 540px);
    right: clamp(16px, 4vw, 48px);
  }
}

@media (max-width: 760px) {
  .hx .wad-hero:before {
    display: none;
  }

  .hx .wad-hero {
    padding-bottom: clamp(28px, 7vw, 44px);
  }

  .hx .wad-hero-field {
    display: none;
  }

  .hx .wad-hero-art {
    background-image: url("/images/Common%20Background.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    margin-top: clamp(28px, 7vw, 44px);
    margin-left: calc(50% - 50vw);
    padding-block: clamp(24px, 6vw, 40px);
    display: block;
  }

  .hx .wad-hero-art:before {
    content: "";
    aspect-ratio: 1;
    background-image: url("/images/web-app-devlopment.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: min(94%, 460px);
    margin-inline: auto;
    display: block;
  }
}

@media (min-width: 1151px) {
  .hx .wad-hero .section-head {
    max-width: clamp(540px, 35vw, 720px);
  }
}

.hx .wad-hero .hero-pills {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: clamp(28px, 3vw, 40px);
  display: flex;
}

.hx .sol-svc-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.6vw, 24px);
  margin-top: 32px;
  display: grid;
}

.hx .sol-svc-card {
  border: 1px solid var(--hairline);
  border-radius: var(--hx-radius);
  background: var(--paper);
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  flex-direction: column;
  padding: clamp(20px, 1.8vw, 28px);
  display: flex;
}

.hx .sol-svc-card:hover {
  background: var(--paper-2);
  border-color: var(--hairline-strong);
  transform: translateY(-3px);
}

.hx .sol-svc-card .ico {
  width: 26px;
  height: 26px;
  color: var(--accent);
  margin-bottom: var(--s5);
}

.hx .sol-svc-card h3 {
  letter-spacing: -.02em;
  margin-bottom: var(--s3);
  font-size: clamp(18px, 1.4vw, 22px);
}

.hx .sol-svc-card .s-tag {
  color: var(--ink-soft);
  margin-bottom: var(--s4);
  font-size: 14px;
}

.hx .sol-svc-card .s-desc {
  color: var(--muted);
  margin-bottom: var(--s5);
  font-size: 13.5px;
  line-height: 1.6;
}

.hx .sol-svc-list {
  margin-bottom: var(--s6);
  flex-direction: column;
  gap: 8px;
  list-style: none;
  display: flex;
}

.hx .sol-svc-list li {
  color: var(--ink-soft);
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  line-height: 1.5;
  display: flex;
}

.hx .sol-svc-list li:before {
  content: "";
  background: var(--accent);
  flex: none;
  width: 5px;
  height: 5px;
  margin-top: 7px;
}

.hx .sol-svc-card .sol-cta {
  margin-top: auto;
}

@media (max-width: 1100px) {
  .hx .sol-svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hx .sol-svc-grid {
    grid-template-columns: 1fr;
  }
}

.hx .sol-hub-grid {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1100px) {
  .hx .sol-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hx .sol-hub-grid {
    grid-template-columns: 1fr;
  }
}

.hx #services:has( + #industries) {
  padding-bottom: clamp(40px, 4vw, 64px);
}

.hx #services + #industries {
  padding-top: clamp(40px, 4vw, 64px);
}

.hx .principle .p-tags {
  padding-top: var(--s3);
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
  display: flex;
}

.hx .sol-pipeline {
  background: var(--ink);
  color: var(--ground);
}

.hx .sol-pipeline h2 {
  color: var(--ground);
}

.hx .sol-pipeline .lede {
  color: color-mix(in srgb, var(--ground) 66%, transparent);
}

.hx .pipe-row {
  border-top: 1px solid color-mix(in srgb, var(--ground) 18%, transparent);
  align-items: stretch;
  margin-top: clamp(48px, 6vw, 80px);
  display: flex;
}

.hx .pipe-step {
  min-width: 0;
  padding: var(--s6) clamp(12px, 1.6vw, 20px) 0;
  border-right: 1px solid color-mix(in srgb, var(--ground) 14%, transparent);
  flex: 1 1 0;
}

.hx .pipe-step:first-child {
  padding-left: 0;
}

.hx .pipe-step:last-child {
  border-right: none;
}

.hx .pipe-step .p-idx {
  font-family: var(--mono);
  letter-spacing: .08em;
  color: var(--accent);
  font-size: 12px;
}

.hx .pipe-step .ico {
  width: 26px;
  height: 26px;
  color: var(--ground);
  margin: var(--s5) 0 var(--s4);
}

.hx .pipe-step h4 {
  letter-spacing: -.01em;
  color: var(--ground);
  margin-bottom: 8px;
  font-size: 17px;
}

.hx .pipe-step p {
  color: color-mix(in srgb, var(--ground) 60%, transparent);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hx .pipe-row {
    border-top: none;
    flex-direction: column;
  }

  .hx .pipe-step {
    border-right: none;
    border-top: 1px solid color-mix(in srgb, var(--ground) 14%, transparent);
    padding: var(--s5) 0 0;
  }

  .hx .pipe-step:first-child {
    border-top: none;
  }
}

.hx .sol-cs-head {
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--s5);
  flex-wrap: wrap;
  margin-bottom: clamp(32px, 4vw, 48px);
  display: flex;
}

.hx .sol-cs-head .view-all {
  color: var(--ink);
  white-space: nowrap;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
}

.hx .sol-cs-head .view-all .arrow {
  transition: transform .3s var(--ease);
}

.hx .sol-cs-head .view-all:hover .arrow {
  transform: translateX(4px);
}

.hx .approach-flow {
  border-top: 1px solid var(--hairline);
  border-left: 1px solid var(--hairline);
  grid-template-columns: repeat(5, 1fr);
  margin-top: 32px;
  display: grid;
}

.hx .approach-flow-step {
  background: var(--ground);
  border-right: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  gap: var(--s3);
  flex-direction: column;
  padding: clamp(20px, 2vw, 28px) clamp(14px, 1.4vw, 20px);
  display: flex;
}

.hx .approach-flow-step .p-idx {
  font-family: var(--mono);
  color: var(--accent);
  letter-spacing: .06em;
  font-size: 12px;
}

.hx .approach-flow-step .ico {
  width: 26px;
  height: 26px;
  color: var(--ink);
}

.hx .approach-flow-step h4 {
  letter-spacing: -.01em;
  margin-top: var(--s2);
  font-size: 15.5px;
  line-height: 1.3;
}

.hx .approach-flow-step p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

@media (max-width: 1100px) {
  .hx .approach-flow {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .hx .approach-flow {
    grid-template-columns: 1fr;
  }
}

.hx .sol-prob-list {
  border-top: 1px solid var(--hairline);
}

.hx .sol-prob-row {
  border-bottom: 1px solid var(--hairline);
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 56px);
  padding: clamp(28px, 3vw, 40px) 0;
  display: grid;
}

.hx .sol-prob-idx {
  font-family: var(--mono);
  letter-spacing: .08em;
  color: var(--accent);
  margin-bottom: var(--s3);
  font-size: 12px;
  display: block;
}

.hx .sol-prob-q h3 {
  letter-spacing: -.02em;
  color: var(--ink);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.4;
}

.hx .sol-prob-a {
  border-left: 1px solid var(--hairline-strong);
  padding-left: clamp(20px, 2.4vw, 32px);
}

.hx .sol-prob-a .lbl {
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s3);
  font-size: 11px;
  display: block;
}

.hx .sol-prob-a p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.72;
}

@media (max-width: 900px) {
  .hx .sol-prob-row {
    grid-template-columns: 1fr;
  }

  .hx .sol-prob-a {
    border-left: none;
    border-top: 1px solid var(--hairline-strong);
    padding-left: 0;
    padding-top: var(--s4);
    margin-top: var(--s4);
  }
}

.hx .cta-band .cta-perks {
  margin-top: var(--s6);
  gap: var(--s5) var(--s7);
  flex-wrap: wrap;
  display: flex;
}

.hx .cta-band .cta-perks .stat-line {
  color: var(--muted);
}

.hx .cta-band .cta-perks .tick {
  background: var(--accent);
  border-radius: 50%;
}

.hx .svc-hero {
  position: relative;
  overflow: hidden;
}

.hx .svc-hero-field {
  top: 0;
  bottom: 0;
  right: var(--svc-hero-right, clamp(48px, 9vw, 140px));
  z-index: 0;
  pointer-events: none;
  width: var(--svc-hero-width, min(44%, 620px));
  background-image: var(--svc-wide);
  mix-blend-mode: multiply;
  opacity: .92;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

.hx .svc-hero .container {
  z-index: 1;
  position: relative;
}

.hx .svc-hero-art {
  display: none;
}

@media (max-width: 1150px) and (min-width: 761px) {
  .hx .svc-hero {
    min-height: clamp(360px, 60vw, 480px);
  }

  .hx .svc-hero-field {
    width: min(66%, 540px);
    right: clamp(16px, 4vw, 48px);
  }

  .hx .svc-hero .section-head {
    max-width: 380px;
  }

  .hx .op-hero.svc-hero {
    min-height: clamp(300px, 48vw, 400px);
  }
}

@media (max-width: 760px) {
  .hx .svc-hero {
    padding-bottom: clamp(28px, 7vw, 44px);
  }

  .hx .svc-hero-field {
    display: none;
  }

  .hx .svc-hero-art {
    background-image: url("/images/Common%20Background.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100vw;
    margin-top: clamp(28px, 7vw, 44px);
    margin-left: calc(50% - 50vw);
    padding-block: clamp(24px, 6vw, 40px);
    display: block;
  }

  .hx .svc-hero-art:before {
    content: "";
    aspect-ratio: 1;
    background-image: var(--svc-wide);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: min(94%, 460px);
    margin-inline: auto;
    display: block;
  }
}

@media (max-width: 560px) {
  .hx .svc-hero .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(6px, 2.5vw, 16px);
    display: grid;
  }

  .hx .svc-hero .hero-metrics .hm + .hm {
    padding-left: clamp(6px, 2.5vw, 16px);
  }

  .hx .svc-hero .hero-metrics .hm + .hm:before {
    display: block;
  }

  .hx .svc-hero .hero-metrics .n {
    white-space: nowrap;
    font-size: clamp(15px, 5vw, 22px);
  }

  .hx .svc-hero .hero-metrics .l {
    white-space: normal;
    font-size: 8.5px;
    line-height: 1.3;
  }
}

@media (min-width: 1151px) {
  .hx .svc-hero .section-head {
    max-width: clamp(480px, 35vw, 720px);
  }
}

.hx .svc-tagline {
  color: var(--accent);
  margin-top: var(--s4);
  letter-spacing: -.01em;
  font-size: 18px;
  font-weight: 500;
}

.hx .svc-hero .lede {
  margin-top: var(--s5);
}

.hx .svc-cap-grid {
  background: var(--hairline);
  border: 1px solid var(--hairline);
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 32px;
  display: grid;
}

.hx .svc-cap-cell {
  background: var(--ground);
  gap: var(--s3);
  min-height: 200px;
  transition: background .3s var(--ease);
  flex-direction: column;
  padding: clamp(24px, 2.2vw, 30px);
  display: flex;
}

.hx .svc-cap-cell:hover {
  background: var(--paper);
}

.hx .svc-cap-cell .ico {
  width: 26px;
  height: 26px;
  color: var(--accent);
}

.hx .svc-cap-tag {
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--hairline-strong);
  align-self: flex-start;
  padding: 3px 8px;
  font-size: 10px;
}

.hx .svc-cap-cell h4 {
  letter-spacing: -.01em;
  margin-top: auto;
  font-size: 16px;
  line-height: 1.3;
}

.hx .svc-cap-cell p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .hx .svc-cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .hx .svc-cap-grid {
    grid-template-columns: 1fr;
  }
}

.hx .svc-challenge-quote {
  font-family: var(--serif);
  letter-spacing: -.02em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  font-size: clamp(26px, 3.4vw, 42px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.28;
}

.hx .svc-challenge-pills {
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(40px, 5vw, 64px);
  display: flex;
}

.hx .svc-challenge-pills span {
  color: color-mix(in srgb, var(--ground) 78%, transparent);
  border: 1px solid color-mix(in srgb, var(--ground) 20%, transparent);
  padding: 9px 18px;
  font-size: 13.5px;
}

.hx #process {
  padding-block: 0;
  overflow: visible;
}

.hx .svc-process-pin {
  position: relative;
}

.hx .svc-process-sticky {
  padding-block: var(--section-y);
}

.hx .svc-process-list {
  margin-top: clamp(48px, 6vw, 80px);
}

.hx .svc-process-row {
  transition: opacity .35s var(--ease);
  --row-gap: clamp(32px, 3.4vw, 44px);
  margin-bottom: var(--row-gap);
  grid-template-columns: 40px 1fr;
  column-gap: clamp(28px, 3.5vw, 48px);
  display: grid;
  position: relative;
}

.hx .svc-process-row:last-child {
  margin-bottom: 0;
}

.hx .svc-process-row:after {
  content: "";
  width: 1px;
  top: 40px;
  left: 19.5px;
  bottom: calc(-1 * var(--row-gap) - 20px);
  background: var(--hairline-strong);
  z-index: -1;
  position: absolute;
}

.hx .svc-process-row:last-child:after {
  display: none;
}

.hx .svc-process-row.is-pending {
  opacity: .38;
}

.hx .svc-process-row:not(.is-pending):after {
  background: var(--accent);
}

.hx .svc-process-marker {
  z-index: 1;
  border: 1px solid var(--accent);
  background: var(--ground);
  width: 40px;
  height: 40px;
  color: var(--accent);
  font-family: var(--mono);
  letter-spacing: .02em;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-self: start;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  position: relative;
}

.hx .svc-process-body h4 {
  letter-spacing: -.02em;
  margin-bottom: var(--s3);
  font-size: clamp(19px, 1.8vw, 24px);
  line-height: 1.28;
}

.hx .svc-process-body p {
  color: var(--muted);
  max-width: 620px;
  font-size: 14.5px;
  line-height: 1.7;
}

@media (max-width: 560px) {
  .hx .svc-process-row {
    column-gap: var(--s5);
    grid-template-columns: 32px 1fr;
  }

  .hx .svc-process-marker {
    width: 32px;
    height: 32px;
    font-size: 11px;
  }

  .hx .svc-process-row:after {
    top: 32px;
    left: 15.5px;
    bottom: calc(-1 * var(--row-gap) - 16px);
  }
}

@media (min-width: 1180px) {
  .hx .svc-process-pin {
    min-height: 100dvh;
  }

  .hx .svc-process-sticky {
    flex-direction: column;
    justify-content: center;
    height: 100dvh;
    padding-block: 68px 0;
    display: flex;
    position: sticky;
    top: 0;
    overflow: hidden;
  }

  .hx .svc-process-list {
    grid-template-columns: repeat(var(--steps, 5), 1fr);
    gap: clamp(20px, 2.4vw, 40px);
    display: grid;
    position: relative;
  }

  .hx .svc-process-list:before {
    content: "";
    left: calc(50% / var(--steps, 5));
    right: calc(50% / var(--steps, 5));
    background: var(--hairline-strong);
    z-index: -1;
    height: 1px;
    position: absolute;
    top: 20px;
  }

  .hx .svc-process-list:after {
    content: "";
    left: calc(50% / var(--steps, 5));
    background: var(--accent);
    height: 1px;
    width: calc((100% - (100% / var(--steps, 5))) * var(--progress, 0));
    z-index: -1;
    position: absolute;
    top: 20px;
  }

  .hx .svc-process-row {
    flex-direction: column;
    align-items: center;
    margin-bottom: 0;
    display: flex;
  }

  .hx .svc-process-row:after {
    display: none;
  }

  .hx .svc-process-marker {
    margin-bottom: var(--s4);
    flex: none;
    align-self: center;
  }

  .hx .svc-process-body {
    text-align: left;
    border: 1px solid var(--hairline);
    border-radius: var(--hx-radius);
    background: var(--ground);
    flex: auto;
    width: 100%;
    padding: clamp(16px, 1.8vw, 22px);
  }

  .hx .svc-process-body h4 {
    min-height: var(--title-h, 2.6em);
    font-size: clamp(17px, 1.4vw, 21px);
  }

  .hx .svc-process-body p {
    font-size: 13px;
    line-height: 1.6;
  }
}

.hx .svc-project-card {
  border: 1px solid var(--hairline);
  grid-template-columns: 1fr 420px;
  height: 380px;
  margin-top: 32px;
  display: grid;
  position: relative;
}

.hx .svc-project-text {
  gap: var(--s3);
  border-right: 1px solid var(--hairline);
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 3.2vw, 44px);
  display: flex;
}

.hx .svc-project-tag {
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--hairline-strong);
  align-self: flex-start;
  padding: 5px 12px;
  font-size: 11px;
}

.hx .svc-project-text h3 {
  letter-spacing: -.03em;
  color: var(--ink);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.22;
}

.hx .svc-project-text p {
  color: var(--muted);
  max-width: 52ch;
  font-size: 14.5px;
  line-height: 1.7;
}

.hx .svc-project-text .sol-cta {
  margin-top: var(--s2);
}

.hx .svc-project-media {
  background: var(--paper-2);
  position: relative;
  overflow: hidden;
}

.hx .svc-project-media img {
  object-fit: cover;
  object-position: center 22%;
  width: 100%;
  height: 100%;
  display: block;
}

.hx .svc-project-dots {
  margin-top: clamp(20px, 2.4vw, 28px);
  align-items: center;
  gap: 12px;
  max-width: 260px;
  margin-inline: auto;
  display: flex;
}

.hx .svc-project-dot {
  border: 1px solid var(--hairline-strong);
  cursor: pointer;
  width: 10px;
  height: 10px;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
  background: none;
  border-radius: 50%;
  flex: none;
  padding: 0;
}

.hx .svc-project-dot:hover {
  border-color: var(--ink);
  transform: scale(1.2);
}

.hx .svc-project-dot[aria-current="true"] {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

.hx .svc-project-timer {
  background: var(--hairline-strong);
  flex: 1;
  height: 1px;
  margin-left: 4px;
  position: relative;
  overflow: hidden;
}

.hx .svc-project-timer:after {
  content: "";
  background: var(--accent);
  transform-origin: 0;
  transform: scaleX(var(--p, 0));
  transition: transform .18s linear;
  position: absolute;
  inset: 0;
}

.hx .svc-project-dots[data-paused="true"] .svc-project-timer:after {
  background: var(--hairline-strong);
}

@media (prefers-reduced-motion: reduce) {
  .hx .svc-project-timer:after {
    transition: none;
  }
}

@media (max-width: 860px) {
  .hx .svc-project-card {
    grid-template-rows: 1fr 240px;
    grid-template-columns: 1fr;
    height: 560px;
  }

  .hx .svc-project-text {
    border-right: none;
    border-bottom: 1px solid var(--hairline);
    overflow: hidden;
  }

  .hx .svc-project-media {
    height: 240px;
    min-height: 0;
  }
}

.hx .section-head + .check-grid {
  margin-top: 32px;
}

.hx .check-grid {
  background: var(--hairline);
  border: 1px solid var(--hairline);
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  display: grid;
}

.hx .check-item {
  background: var(--ground);
  color: var(--ink);
  align-items: center;
  gap: 14px;
  padding: clamp(20px, 2.2vw, 26px) clamp(20px, 2.4vw, 28px);
  font-size: 16.5px;
  line-height: 1.5;
  display: flex;
}

.hx .check-item .ico {
  width: 26px;
  height: 26px;
  color: var(--accent);
  flex: none;
}

@media (max-width: 640px) {
  .hx .check-grid {
    grid-template-columns: 1fr;
  }
}

.hx .story-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.hx .story-photo img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 1100px) {
  .hx .story-photo {
    margin-top: clamp(28px, 4vw, 40px);
  }
}

.hx .why-ticker {
  border-block: 1px solid var(--hairline);
  width: 100vw;
  margin-top: clamp(40px, 5vw, 56px);
  margin-left: calc(50% - 50vw);
  padding-block: clamp(22px, 2.6vw, 32px);
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, #0000, #000 4% 96%, #0000);
  mask-image: linear-gradient(90deg, #0000, #000 4% 96%, #0000);
}

.hx .why-ticker-track {
  align-items: center;
  width: max-content;
  animation: 38s linear infinite scroll-x;
  display: flex;
}

.hx .why-ticker:hover .why-ticker-track {
  animation-play-state: paused;
}

.hx .why-ticker-item {
  letter-spacing: -.02em;
  color: var(--ink);
  white-space: nowrap;
  align-items: center;
  gap: clamp(28px, 3.5vw, 44px);
  padding-right: clamp(28px, 3.5vw, 44px);
  font-size: clamp(20px, 2.6vw, 32px);
  font-weight: 700;
  display: inline-flex;
}

.hx .why-ticker-item .sep {
  color: var(--accent);
  font-size: 14px;
}

.hx .ts-ticker .why-ticker-item {
  font-weight: 600;
}

.hx .trait-list {
  flex-direction: column;
  display: flex;
}

.hx .trait-list li {
  border-bottom: 1px solid var(--hairline);
  letter-spacing: -.02em;
  color: var(--ink);
  transition: color .2s var(--ease), padding-left .2s var(--ease);
  align-items: baseline;
  gap: 22px;
  padding-block: clamp(16px, 2.2vw, 22px);
  font-size: clamp(21px, 2.4vw, 28px);
  font-weight: 700;
  display: flex;
}

.hx .trait-list li:first-child {
  padding-top: 0;
}

.hx .trait-list li:last-child {
  border-bottom: none;
}

.hx .trait-list li .idx {
  font-family: var(--mono);
  color: var(--accent);
  letter-spacing: .04em;
  flex: none;
  font-size: 13px;
  font-weight: 500;
}

.hx .trait-list li:hover {
  color: var(--accent);
  padding-left: 12px;
}

.hx .section-head + .quote-grid {
  margin-top: 32px;
}

.hx .quote-grid {
  background: var(--hairline);
  border: 1px solid var(--hairline);
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  display: grid;
}

.hx .quote-card {
  background: var(--ground);
  gap: var(--s4);
  flex-direction: column;
  padding: clamp(24px, 2.6vw, 32px);
  display: flex;
}

.hx .quote-card p {
  color: var(--ink);
  font-size: 16px;
  font-style: italic;
  line-height: 1.55;
}

.hx .quote-card .role {
  font-family: var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 760px) {
  .hx .quote-grid {
    grid-template-columns: 1fr;
  }
}

.hx .section-head + .founder-block {
  margin-top: clamp(48px, 6vw, 80px);
}

.hx .founder-block {
  border: 1px solid var(--hairline);
  background: var(--ground);
  padding: clamp(32px, 4vw, 56px);
}

.hx .founder-block blockquote {
  letter-spacing: -.01em;
  margin: 0 0 var(--s5);
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
}

.hx .founder-block .who b {
  color: var(--ink);
  font-size: 15px;
  display: block;
}

.hx .founder-block .who span {
  color: var(--muted);
  font-size: 13px;
}

.hx .section-head + .stars-list {
  margin-top: clamp(40px, 5vw, 56px);
}

.hx .stars-list {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(32px, 3.5vw, 44px) clamp(28px, 3vw, 40px);
  display: grid;
}

.hx .stars-row {
  border-right: 1px solid var(--hairline);
  flex-direction: column;
  gap: 10px;
  padding-right: clamp(28px, 3vw, 40px);
  display: flex;
}

.hx .stars-row:nth-child(3n) {
  border-right: none;
  padding-right: 0;
}

.hx .stars-row .score {
  font-family: var(--serif);
  letter-spacing: -.02em;
  color: var(--accent);
  font-size: clamp(26px, 2.8vw, 32px);
}

.hx .stars-row .stars {
  color: var(--accent);
  letter-spacing: .14em;
  font-size: 22px;
}

.hx .stars-row .label {
  letter-spacing: -.01em;
  color: var(--ink);
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 600;
}

@media (max-width: 900px) {
  .hx .stars-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .hx .stars-row:nth-child(3n) {
    border-right: 1px solid var(--hairline);
  }

  .hx .stars-row:nth-child(2n) {
    border-right: none;
    padding-right: 0;
  }
}

@media (max-width: 560px) {
  .hx .stars-list {
    grid-template-columns: 1fr;
  }

  .hx .stars-row {
    padding-right: 0;
    border-right: none !important;
  }
}

.hx .section-head + .tech-chips {
  margin-top: 32px;
}

.hx .tech-chips {
  flex-wrap: wrap;
  gap: 12px;
  display: flex;
}

.hx .tech-chip {
  border: 1px solid var(--hairline);
  background: var(--ground);
  color: var(--ink);
  padding: 11px 20px;
  font-size: 15.5px;
}

.hx .mv-stack {
  flex-direction: column;
  gap: clamp(28px, 3vw, 40px);
  display: flex;
}

.hx .mv-card {
  border-left: 3px solid var(--accent);
  padding-left: clamp(20px, 2.2vw, 28px);
}

.hx .mv-card .mv-label {
  font-family: var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s2);
  font-size: 12px;
  display: block;
}

.hx .mv-card p {
  color: var(--muted);
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
}

.hx .timeline {
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(52px, 5.5vw, 72px);
  display: grid;
  position: relative;
}

.hx .timeline:before {
  content: "";
  background: var(--hairline-strong);
  height: 1px;
  position: absolute;
  top: 16px;
  left: 0;
  right: 0;
}

.hx .timeline-step {
  gap: var(--s2);
  flex-direction: column;
  padding-top: clamp(40px, 4.5vw, 52px);
  display: flex;
  position: relative;
}

.hx .timeline-step .node {
  background: var(--ground);
  border: 2px solid var(--accent);
  width: 32px;
  height: 32px;
  color: var(--accent);
  font-family: var(--mono);
  z-index: 1;
  transition: background .25s var(--ease), color .25s var(--ease);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 12.5px;
  font-weight: 600;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.hx .timeline-step:hover .node {
  background: var(--accent);
  color: var(--ground);
}

.hx .timeline-step .ico {
  width: 22px;
  height: 22px;
  color: var(--ink);
}

.hx .timeline-step h4 {
  letter-spacing: -.01em;
  margin-top: var(--s2);
  font-size: 16px;
}

.hx .timeline-step p {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hx .timeline {
    grid-template-columns: 1fr;
    gap: clamp(28px, 4vw, 40px);
  }

  .hx .timeline:before {
    width: 1px;
    height: auto;
    inset: 0 auto 0 15px;
  }

  .hx .timeline-step {
    padding-top: 0;
    padding-left: 56px;
  }

  .hx .timeline-step .node {
    top: 0;
    left: 0;
  }
}

.hx #more-services .section-head {
  max-width: none;
}

.hx .svc-switch-list {
  border-top: 1px solid var(--hairline);
  margin-top: clamp(40px, 5vw, 56px);
}

.hx .svc-switch-row {
  border-bottom: 1px solid var(--hairline);
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding: clamp(24px, 2.6vw, 36px) 0;
  display: flex;
}

.hx .svc-switch-row .idx {
  width: 30px;
  font-family: var(--mono);
  color: var(--accent);
  letter-spacing: .06em;
  flex: none;
  font-size: 13px;
}

.hx .svc-switch-row .name {
  letter-spacing: -.02em;
  color: var(--ink);
  transition: color .3s var(--ease), transform .3s var(--ease);
  flex: 1;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 600;
}

.hx .svc-switch-row .arrow {
  color: var(--accent);
  opacity: 0;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  flex: none;
  font-size: 20px;
  transform: translateX(-8px);
}

.hx .svc-switch-row:hover .name {
  color: var(--accent);
  transform: translateX(10px);
}

.hx .svc-switch-row:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

.hx .svc-switch-row.is-active .name {
  color: var(--accent);
}

.hx .svc-switch-row.is-active .tag {
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  flex: none;
  font-size: 11px;
}

@media (max-width: 560px) {
  .hx .svc-switch-row {
    gap: var(--s4);
  }

  .hx .svc-switch-row .idx {
    width: 22px;
  }
}

.hx .cp-showcase {
  background: var(--ink);
  color: var(--ground);
}

.hx .cp-showcase .section-head h2, .hx .cp-showcase .section-head h2 .em {
  color: var(--ground);
}

.hx .cp-showcase .section-head .lede {
  color: color-mix(in srgb, var(--ground) 66%, transparent);
}

.hx .cp-grid {
  background: color-mix(in srgb, var(--ground) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--ground) 14%, transparent);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 32px;
  display: grid;
}

.hx .cp-card {
  background: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  gap: var(--s3);
  transition: background .3s var(--ease);
  border: none;
  flex-direction: column;
  padding: clamp(28px, 2.8vw, 40px);
  display: flex;
}

.hx .cp-card:hover {
  background: color-mix(in srgb, var(--ground) 6%, var(--ink));
}

.hx .cp-logo {
  border: 1px solid var(--hairline-strong);
  background: var(--ground);
  flex: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
}

.hx .cp-card-name {
  letter-spacing: -.02em;
  color: var(--ground);
  margin-top: var(--s3);
  font-size: 19px;
}

.hx .cp-card-tag {
  color: color-mix(in srgb, var(--ground) 62%, transparent);
  font-size: 13.5px;
  line-height: 1.55;
}

.hx .cp-card-cta {
  margin-top: var(--s3);
  color: var(--ground);
  white-space: nowrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
}

.hx .cp-card-cta svg {
  color: var(--accent);
}

.hx .cp-soon {
  font-family: var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: color-mix(in srgb, var(--ground) 62%, transparent);
  border: 1px solid color-mix(in srgb, var(--ground) 20%, transparent);
  align-self: flex-start;
  padding: 3px 8px;
  font-size: 10px;
}

@media (max-width: 900px) {
  .hx .cp-grid {
    grid-template-columns: 1fr;
  }
}

.hx .cp-modal-backdrop {
  z-index: 1000;
  background: color-mix(in srgb, var(--ink) 55%, transparent);
  justify-content: center;
  align-items: center;
  padding: clamp(12px, 3vw, 32px);
  display: flex;
  position: fixed;
  inset: 0;
}

.hx .cp-modal {
  background: var(--ground);
  border: 1px solid var(--hairline-strong);
  width: 100%;
  max-width: 1160px;
  height: 92dvh;
  animation: panelIn .3s var(--ease);
  flex-direction: column;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hx .cp-modal-head {
  justify-content: space-between;
  align-items: center;
  gap: var(--s5);
  border-bottom: 1px solid var(--hairline);
  flex: none;
  padding: clamp(16px, 2vw, 22px) clamp(20px, 2.6vw, 36px);
  display: flex;
}

.hx .cp-modal-head-l {
  align-items: center;
  gap: var(--s4);
  display: flex;
}

.hx .cp-logo-sm {
  width: 42px;
  height: 42px;
}

.hx .cp-modal-title {
  letter-spacing: -.02em;
  color: var(--ink);
  font-size: clamp(17px, 2vw, 21px);
}

.hx .cp-modal-sub {
  color: var(--muted);
  margin-top: 2px;
  font-size: 12.5px;
}

.hx .cp-modal-close {
  background: var(--paper);
  border: 1px solid var(--hairline);
  width: 36px;
  height: 36px;
  color: var(--ink);
  transition: background .2s var(--ease), color .2s var(--ease);
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hx .cp-modal-close:hover {
  background: var(--accent);
  color: var(--on-accent);
}

.hx .cp-modal-body {
  overscroll-behavior: contain;
  flex: 1;
  padding: clamp(24px, 3vw, 40px) clamp(20px, 2.6vw, 36px);
  overflow-y: auto;
}

@media (max-width: 560px) {
  .hx .cp-modal {
    height: 96dvh;
  }
}

.hx .cp-block {
  border-top: 1px solid var(--hairline);
  margin-top: clamp(40px, 4.5vw, 56px);
  padding-top: clamp(40px, 4.5vw, 56px);
}

.hx .cp-block:first-child {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.hx .cp-sh-kicker {
  font-family: var(--mono);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 11px;
}

.hx .cp-sh-title {
  letter-spacing: -.02em;
  color: var(--ink);
  margin-top: var(--s2);
  font-size: clamp(20px, 2.2vw, 26px);
}

.hx .cp-tagrow {
  margin-bottom: var(--s5);
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.hx .cp-intro {
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.8;
}

.hx .cp-exp-grid {
  margin-top: var(--s5);
  background: var(--hairline);
  border: 1px solid var(--hairline);
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  display: grid;
}

.hx .cp-exp-card {
  align-items: center;
  gap: var(--s4);
  background: var(--ground);
  color: var(--ink-soft);
  transition: background .3s var(--ease);
  padding: 15px 18px;
  font-size: 13.5px;
  line-height: 1.35;
  display: flex;
}

.hx .cp-exp-card:hover {
  background: var(--paper);
}

.hx .cp-exp-ic {
  width: 28px;
  height: 28px;
  color: var(--accent);
  border: 1px solid var(--hairline-strong);
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media (max-width: 900px) {
  .hx .cp-exp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .hx .cp-exp-grid {
    grid-template-columns: 1fr;
  }
}

.hx .cp-ind-grid {
  margin-top: var(--s5);
  flex-wrap: wrap;
  gap: 8px;
  display: flex;
}

.hx .cp-ind-pill {
  color: var(--ink-soft);
  border: 1px solid var(--hairline-strong);
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-size: 13.5px;
  display: inline-flex;
}

.hx .cp-ind-pill svg {
  color: var(--accent);
  flex: none;
}

.hx .cp-why-grid {
  margin-top: var(--s5);
  background: var(--hairline);
  border: 1px solid var(--hairline);
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  display: grid;
}

.hx .cp-why-tile {
  align-items: center;
  gap: var(--s4);
  background: var(--ground);
  color: var(--ink-soft);
  transition: background .3s var(--ease);
  padding: 16px 18px;
  font-size: 14px;
  line-height: 1.35;
  display: flex;
}

.hx .cp-why-tile:hover {
  background: var(--paper);
}

.hx .cp-why-ic {
  width: 28px;
  height: 28px;
  color: var(--accent);
  border: 1px solid var(--hairline-strong);
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
}

@media (max-width: 640px) {
  .hx .cp-why-grid {
    grid-template-columns: 1fr;
  }
}

.hx .cp-map {
  margin-top: var(--s5);
  border: 1px solid var(--hairline);
  background: var(--paper);
  width: 100%;
  height: clamp(260px, 22vw, 320px);
  position: relative;
  overflow: hidden;
}

.hx .cp-map-inner {
  aspect-ratio: 2.6667;
  width: 100%;
  position: absolute;
  top: -8%;
  left: 0;
  -webkit-mask-image: linear-gradient(#0000, #000 5% 97%, #0000);
  mask-image: linear-gradient(#0000, #000 5% 97%, #0000);
}

.hx .cp-pin {
  z-index: 2;
  position: absolute;
  transform: translate(-50%, -50%);
}

.hx .cp-pin-dot {
  background: var(--accent);
  border: 2px solid var(--ground);
  border-radius: 50%;
  width: 9px;
  height: 9px;
  display: block;
}

.hx .cp-pin-tag {
  font-family: var(--mono);
  color: var(--on-accent);
  background: var(--accent);
  white-space: nowrap;
  z-index: 4;
  align-items: center;
  gap: 5px;
  padding: 3px 9px;
  font-size: 10.5px;
  font-weight: 600;
  display: inline-flex;
  position: absolute;
  top: 50%;
}

.hx .cp-pin-tag.cp-pin-right {
  left: 13px;
  transform: translateY(-50%);
}

.hx .cp-pin-tag.cp-pin-left {
  right: 13px;
  transform: translateY(-50%);
}

.hx .cp-pin-tag-flag {
  width: 13px;
  height: auto;
}

@media (max-width: 640px) {
  .hx .cp-pin-tag {
    gap: 3px;
    padding: 2px 5px;
    font-size: 8.5px;
  }

  .hx .cp-pin-tag.cp-pin-right {
    left: 8px;
  }

  .hx .cp-pin-tag.cp-pin-left {
    right: 8px;
  }

  .hx .cp-pin-tag-flag {
    width: 10px;
  }
}

.hx .cp-op-legend {
  margin-top: var(--s5);
  gap: var(--s4);
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  display: grid;
}

.hx .cp-op-card {
  background: var(--ground);
  border: 1px solid var(--hairline);
  padding: 16px 18px;
}

.hx .cp-op-region {
  color: var(--ink);
  margin-bottom: var(--s3);
  align-items: center;
  gap: 8px;
  font-size: 14px;
  display: inline-flex;
}

.hx .cp-op-region svg {
  color: var(--accent);
}

.hx .cp-op-flag {
  width: 20px;
  height: auto;
}

.hx .cp-op-domains {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.hx .cp-cs-list {
  margin-top: var(--s5);
  gap: var(--s5);
  flex-direction: column;
  display: flex;
}

.hx .cp-cs-card {
  border: 1px solid var(--hairline);
  background: var(--paper);
  transition: border-color .3s var(--ease);
  padding: clamp(22px, 2.4vw, 30px);
}

.hx .cp-cs-card:hover {
  border-color: var(--hairline-strong);
}

.hx .cp-cs-head {
  align-items: center;
  gap: var(--s4);
  margin-bottom: var(--s5);
  display: flex;
}

.hx .cp-cs-num {
  font-family: var(--mono);
  color: var(--accent);
  flex: none;
  font-size: 13px;
}

.hx .cp-cs-title {
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.3;
}

.hx .cp-cs-flow {
  align-items: stretch;
  gap: var(--s4);
  display: flex;
}

.hx .cp-stage {
  background: var(--ground);
  border: 1px solid var(--hairline);
  gap: var(--s3);
  flex-direction: column;
  flex: 1;
  min-width: 0;
  padding: clamp(16px, 1.8vw, 22px);
  display: flex;
}

.hx .cp-flow-arrow {
  color: var(--accent);
  flex: none;
  align-self: center;
}

.hx .cp-stage-ic {
  width: 26px;
  height: 26px;
  color: var(--accent);
  justify-content: center;
  align-items: center;
  display: flex;
}

.hx .cp-stage-label {
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 10.5px;
}

.hx .cp-stage p {
  color: var(--muted);
  margin: 0;
  font-size: 13.5px;
  line-height: 1.65;
}

.hx .cp-stage-pointers {
  flex-direction: column;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}

.hx .cp-stage-pointers li {
  color: var(--ink-soft);
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  line-height: 1.4;
  display: flex;
}

.hx .cp-stage-pointers svg {
  color: var(--accent);
  flex: none;
}

@media (max-width: 900px) {
  .hx .cp-cs-flow {
    flex-direction: column;
  }

  .hx .cp-flow-arrow {
    transform: rotate(90deg);
  }
}

.hx .cp-cert-grid {
  margin-top: var(--s5);
  gap: var(--s4);
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  display: grid;
}

.hx .cp-cert {
  background: var(--ground);
  border: 1px solid var(--hairline);
  text-align: center;
  transition: background .3s var(--ease);
  padding: clamp(30px, 3.2vw, 40px) clamp(18px, 2vw, 26px);
}

.hx .cp-cert:hover {
  background: var(--paper);
}

.hx .cp-cert-verified {
  font-family: var(--mono);
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: var(--s5);
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  display: inline-flex;
}

.hx .cp-stamp {
  width: 148px;
  height: 148px;
  margin: 0 auto;
  position: relative;
}

.hx .cp-stamp-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hx .cp-stamp-mark {
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hx .cp-stamp-disc {
  fill: var(--ground);
  stroke: var(--hairline-strong);
  stroke-width: 1.5px;
}

.hx .cp-stamp-hair {
  fill: none;
  stroke: var(--hairline);
  stroke-width: 1px;
}

.hx .cp-stamp-ring {
  fill: none;
  stroke: var(--accent);
  stroke-width: 4px;
}

.hx .cp-stamp-top {
  fill: var(--ink);
  letter-spacing: .3px;
  font-size: 12.5px;
  font-weight: 600;
}

.hx .cp-stamp-bot {
  fill: var(--muted);
  letter-spacing: .5px;
  font-size: 7.5px;
  font-weight: 600;
}

.hx .cp-stamp-dot {
  fill: var(--accent);
}

@media (min-width: 1151px) {
  .hx .op-hero.interior-hero {
    min-height: 500px;
  }
}

.hx .ot-hero .section-head {
  max-width: none;
}

.hx #architecture .section-head {
  max-width: 900px;
}

.hx #architecture .section-head .lede {
  max-width: none;
}

.hx .ot-hero .tech-chips {
  margin-top: clamp(24px, 3vw, 32px);
}

.hx .ot-hero-layout {
  display: block;
}

.hx .ot-hero .ot-hero-layout .op-video {
  margin-top: clamp(32px, 4vw, 48px);
}

@media (min-width: 1024px) {
  .hx .ot-hero-layout {
    grid-template-columns: 1.1fr .9fr;
    align-items: stretch;
    gap: clamp(32px, 5vw, 64px);
    display: grid;
  }

  .hx .ot-hero .ot-hero-layout .op-video {
    aspect-ratio: auto;
    align-items: center;
    height: 100%;
    margin-top: 0;
    display: flex;
  }

  .hx .ot-hero .ot-hero-layout .op-video iframe, .hx .ot-hero .ot-hero-layout .op-video .op-spot-play-trigger {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    max-height: 100%;
    position: relative;
    inset: auto;
  }
}

.hx .ot-legal {
  margin-top: var(--s6);
  align-items: center;
  gap: 10px;
  font-size: 13px;
  display: flex;
}

.hx .ot-legal a {
  color: var(--accent);
  text-underline-offset: 3px;
  transition: opacity .2s var(--ease);
  text-decoration: underline;
}

.hx .ot-legal a:hover {
  opacity: .75;
}

.hx .ot-legal span {
  color: var(--faint);
}

@media (min-width: 1025px) {
  .hx .lead-layout:has(.ot-legal) {
    align-items: stretch;
  }

  .hx .lead-layout:has(.ot-legal) > div:first-child {
    flex-direction: column;
    display: flex;
  }

  .hx .lead-layout:has(.ot-legal) .ot-legal {
    padding-top: var(--s6);
    margin-top: auto;
  }
}

.hx .op-spotlight {
  border: 1px solid var(--hairline);
  grid-template-columns: 1.35fr 1fr;
  display: grid;
}

.hx .op-spot-visual {
  background: var(--ink);
  color: var(--ground);
  min-height: 360px;
  position: relative;
  overflow: hidden;
}

.hx .op-spot-play-trigger {
  z-index: 1;
  background: none;
  border: none;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  position: absolute;
  inset: 0;
}

.hx .op-spot-play-trigger img {
  object-fit: contain;
  opacity: .82;
  width: 100%;
  height: 100%;
  transition: opacity .3s var(--ease), transform .5s var(--ease);
  position: absolute;
  inset: 0;
}

.hx .op-spot-play-trigger:hover img {
  opacity: 1;
  transform: scale(1.03);
}

.hx .op-spot-play-trigger:after {
  content: "";
  background: linear-gradient(180deg, color-mix(in srgb, var(--ink) 55%, transparent) 0%, color-mix(in srgb, var(--ink) 8%, transparent) 45%, color-mix(in srgb, var(--ink) 60%, transparent) 100%);
  position: absolute;
  inset: 0;
}

.hx .op-spot-play {
  z-index: 1;
  background: color-mix(in srgb, var(--ground) 92%, transparent);
  width: 64px;
  height: 64px;
  color: var(--ink);
  transition: transform .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.hx .op-spot-play-trigger:hover .op-spot-play {
  background: var(--accent);
  color: var(--on-accent);
  transform: scale(1.08);
}

.hx .op-spot-badge {
  z-index: 2;
  font-family: var(--mono);
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ground);
  border: 1px solid color-mix(in srgb, var(--ground) 30%, transparent);
  padding: 6px 12px;
  font-size: 11px;
  position: absolute;
  top: clamp(18px, 2vw, 26px);
  left: clamp(18px, 2vw, 26px);
}

.hx .op-spot-badge:before {
  content: "";
  background: var(--accent);
  vertical-align: middle;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  display: inline-block;
}

.hx .op-spot-body {
  background: var(--ground);
  flex-direction: column;
  padding: clamp(24px, 2.8vw, 40px);
  display: flex;
}

.hx .op-spot-tag {
  font-family: var(--mono);
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  font-size: 11.5px;
}

.hx .op-spot-body h2 {
  font-size: clamp(26px, 2.6vw, 34px);
}

.hx .op-spot-body .s-tag {
  color: var(--accent);
  margin-top: var(--s3);
  font-size: 16px;
  font-weight: 500;
}

.hx .op-spot-body .s-tag .sep {
  color: var(--accent);
  margin: 0 8px;
  font-size: 12px;
}

.hx .op-spot-body > p:not(.s-tag) {
  color: var(--muted);
  margin-top: var(--s3);
  line-height: 1.6;
}

.hx .op-spot-list {
  margin: var(--s4) 0 0;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  list-style: none;
  display: flex;
}

.hx .op-spot-list li {
  color: var(--ink-soft);
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  display: flex;
}

.hx .op-spot-list li:before {
  content: "";
  background: var(--accent);
  border-radius: 50%;
  flex: none;
  width: 5px;
  height: 5px;
  transform: translateY(-3px);
}

.hx .op-spot-actions {
  margin-top: var(--s4);
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  display: flex;
}

@media (max-width: 900px) {
  .hx .op-spotlight {
    grid-template-columns: 1fr;
  }

  .hx .op-spot-visual {
    min-height: 200px;
  }
}

.hx .op-more {
  border-top: 1px solid var(--hairline);
  color: var(--muted);
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: clamp(32px, 4vw, 48px);
  padding-top: clamp(24px, 3vw, 32px);
  font-size: 14px;
  display: flex;
}

.hx .op-more-dot {
  background: var(--accent);
  border-radius: 50%;
  flex: none;
  width: 6px;
  height: 6px;
}

.hx .section-head + .op-video {
  margin-top: 32px;
}

.hx .op-video {
  aspect-ratio: 16 / 9;
  border: 1px solid var(--hairline);
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.hx .op-video iframe {
  border: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

@media (max-width: 900px) {
  .hx .cp-cert-grid {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=src_styles_home-redesign_0a4a_hc.css.map*/