:root {
  color-scheme: light;
  --coded-white: #FFFFFF;
  --coded-bg: #FAFAF9;
  --coded-bg-warm: #F7F7F5;
  --coded-bg-soft: #F2F2F0;
  --coded-surface: #FFFFFF;
  --coded-surface-soft: #F4F4F2;
  --coded-surface-muted: #ECECEA;
  --coded-surface-glass: rgba(255, 255, 255, 0.82);

  --coded-ink: #171717;
  --coded-ink-soft: #262626;
  --coded-graphite: #353535;
  --coded-graphite-deep: #1D1E20;
  --coded-text-secondary: #666666;
  --coded-text-muted: #969696;

  --coded-line: rgba(23, 23, 23, 0.12);
  --coded-line-soft: rgba(23, 23, 23, 0.07);
  --coded-line-strong: rgba(23, 23, 23, 0.18);
  --coded-steel-reflection: rgba(166, 183, 200, 0.14);
  --coded-lilac-reflection: rgba(198, 194, 208, 0.10);

  --coded-dark: #0B0C0E;
  --coded-dark-soft: #111318;
  --coded-dark-surface: #181A1F;

  --coded-shadow-soft: 0 1px 2px rgba(0, 0, 0, 0.025), 0 10px 28px rgba(0, 0, 0, 0.035);
  --coded-shadow-medium: 0 18px 54px rgba(23, 23, 23, 0.075), inset 0 1px 0 rgba(255, 255, 255, 0.88);
  --coded-shadow-strong: 0 28px 90px rgba(23, 23, 23, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  --coded-dark-shadow: 0 32px 110px rgba(0, 0, 0, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.10);

  --ink: var(--coded-ink);
  --muted: var(--coded-text-secondary);
  --light: var(--coded-bg);
  --navy: var(--coded-dark);
  --surface-warm: var(--coded-surface);
  --surface-cool: var(--coded-surface-soft);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--coded-bg);
}

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

[hidden] {
  display: none !important;
}

.hero {
  --hero-exit-space: clamp(48px, 8vw, 128px);
  position: relative;
  display: grid;
  min-height: 100svh;
  padding-bottom: var(--hero-exit-space);
  overflow: hidden;
  isolation: isolate;
  place-items: center;
  color: #fff;
  background: #000;
}

.nav {
  --nav-surface: rgba(255, 255, 255, 0.97);
  --nav-border: var(--coded-line-soft);
  --nav-ink: rgba(23, 23, 23, 0.92);
  --nav-muted: rgba(23, 23, 23, 0.74);
  --nav-active-bg: rgba(23, 23, 23, 0.08);
  --nav-active-ink: var(--coded-ink);
  --nav-button: #050505;
  --nav-button-ink: var(--coded-white);
  position: fixed;
  top: 34px;
  left: 50%;
  z-index: 5;
  display: flex;
  width: min(calc(100% - 40px), 1180px);
  max-width: calc(100% - 40px);
  margin: 0;
  padding: 5px 13px 5px 8px;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 47px;
  overflow: hidden;
  color: var(--nav-ink);
  font-size: 13px;
  font-weight: 560;
  letter-spacing: 0;
  background: var(--nav-surface);
  border: 1px solid var(--nav-border);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -1px 0 rgba(255, 255, 255, 0.16),
    0 10px 28px rgba(0, 0, 0, 0.035);
  opacity: 0;
  transform: translateX(-50%) translateY(10px);
  animation: fadeUp 850ms ease 120ms forwards;
  transition:
    background 360ms ease,
    border-color 360ms ease,
    color 360ms ease,
    box-shadow 360ms ease;
}

.nav--dark {
  --nav-surface: rgba(12, 12, 13, 0.88);
  --nav-border: rgba(255, 255, 255, 0.16);
  --nav-ink: rgba(255, 255, 255, 0.92);
  --nav-muted: rgba(255, 255, 255, 0.82);
  --nav-active-bg: rgba(255, 255, 255, 0.13);
  --nav-active-ink: rgba(255, 255, 255, 0.98);
  --nav-button: rgba(255, 255, 255, 0.92);
  --nav-button-ink: #05070c;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 14px 36px rgba(0, 0, 0, 0.14);
}

.nav--light {
  --nav-surface: rgba(255, 255, 255, 0.97);
  --nav-border: var(--coded-line-soft);
  --nav-ink: rgba(23, 23, 23, 0.92);
  --nav-muted: rgba(23, 23, 23, 0.74);
  --nav-active-bg: rgba(23, 23, 23, 0.08);
  --nav-active-ink: var(--coded-ink);
  --nav-button: #050505;
  --nav-button-ink: var(--coded-white);
}

.nav::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.72), transparent 34%, rgba(255, 255, 255, 0.2)),
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.66), transparent 40%);
  opacity: 0.62;
}

.nav--dark::before {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 34%, rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.16), transparent 36%);
  opacity: 0.42;
}

.nav__brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  width: 122px;
  padding: 0 10px 0 18px;
  color: var(--nav-ink);
}

.wordmark {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
  width: 100%;
  white-space: nowrap;
  font-family:
    ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 17px;
  font-weight: 760;
  letter-spacing: 0.12em;
  line-height: 1;
}

.wordmark span {
  color: var(--nav-ink);
}

.wordmark em {
  color: color-mix(in srgb, var(--nav-ink) 42%, transparent);
  font-style: normal;
  font-weight: 640;
  letter-spacing: 0.1em;
}

.nav__brand span,
.nav__brand em {
  transition: color 360ms ease;
}

@supports not (color: color-mix(in srgb, black, white)) {
  .wordmark em {
    color: var(--coded-text-muted);
  }

  .nav--dark .wordmark em {
    color: rgba(255, 255, 255, 0.48);
  }
}

.nav__links {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 2.2vw, 34px);
  flex: 1;
  color: var(--nav-muted);
}

.nav__menu-toggle {
  display: none;
}

.nav__links a {
  position: relative;
  padding: 10px 8px;
  border-radius: 999px;
  font-weight: 560;
}

.nav__links a::before {
  position: absolute;
  inset: 5px 3px;
  z-index: -1;
  content: "";
  border-radius: 999px;
  background: transparent;
  transition:
    background 220ms ease,
    box-shadow 220ms ease;
}

.nav__links a,
.button,
.nav__cta {
  font-family: inherit;
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.nav__links a:hover {
  color: var(--nav-ink);
}

.nav .nav__links a.is-active {
  color: rgba(5, 7, 12, 0.96) !important;
  text-shadow: 0 0 0 rgba(5, 7, 12, 0.98);
  font-weight: 650;
}

.nav.nav--dark .nav__links a.is-active {
  color: rgba(255, 255, 255, 0.98) !important;
  text-shadow: 0 0 0 rgba(255, 255, 255, 0.98);
}

.nav .nav__links a.is-active::before {
  background: transparent;
  box-shadow: none;
}

.nav.nav--dark .nav__links a.is-active::before {
  background: transparent;
}

.nav__cta {
  position: relative;
  z-index: 1;
  appearance: none;
  cursor: pointer;
  padding: 10px 17px;
  color: var(--nav-button-ink);
  background: var(--nav-button);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(2, 3, 8, 0.15);
}

@supports (animation-timeline: scroll()) {
  .nav {
    animation: navFadeUp 850ms ease 120ms forwards;
  }
}

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

h1 {
  max-width: 1020px;
  margin: 0;
  font-size: clamp(3rem, 4.5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.hero__visual {
  display: grid;
  width: 100%;
  min-height: 100svh;
  margin: 0;
  padding: 96px 24px 24px;
  place-items: center;
}

.hero__visual picture {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.hero__visual img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(100%, 1500px);
  max-height: calc(100svh - 120px);
  object-fit: contain;
  opacity: 0;
  transform: scale(1.02);
  transform-origin: center center;
  animation: heroImageReveal 1100ms cubic-bezier(0.22, 1, 0.36, 1) 160ms forwards;
}

.hero__editorial {
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 100svh;
  pointer-events: none;
}

.hero__title {
  position: absolute;
  top: clamp(150px, 18svh, 170px);
  right: clamp(112px, 9vw, 116px);
  left: auto;
  width: clamp(260px, 21vw, 300px);
  max-width: none;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(2.4rem, 3.25vw, 3.2rem);
  font-weight: 560;
  line-height: 0.98;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero__title span {
  display: block;
}

.hero__copy-block {
  position: absolute;
  bottom: clamp(48px, 6svh, 58px);
  left: clamp(48px, calc(50% - 640px), 320px);
  width: clamp(260px, 25vw, 350px);
  display: grid;
  gap: 16px;
  justify-items: start;
  pointer-events: auto;
}

.hero__lede {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 450;
  line-height: 1.55;
  letter-spacing: 0;
}

.hero__cta {
  display: inline-flex;
  min-height: 38px;
  padding: 0 16px;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
  font: inherit;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0;
  background: rgba(4, 4, 4, 0.26);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
}

.hero__secondary-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.hero__secondary-cta:hover {
  color: rgba(255, 255, 255, 0.98);
}

.hero__secondary-cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 4px;
  border-radius: 2px;
}

.hero__cta:hover {
  color: #090909;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(255, 255, 255, 0.94);
  transform: translateY(-1px);
}

.hero__cta:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.9);
  outline-offset: 3px;
}

@keyframes heroImageReveal {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (max-width: 900px) {
  .hero__visual {
    padding: 92px 20px 20px;
  }
}

@media (max-width: 1100px) {
  .hero__title {
    top: 108px;
    right: clamp(40px, 8vw, 88px);
    left: auto;
    width: min(280px, calc(100% - 80px));
    color: rgba(255, 255, 255, 0.96);
    font-size: clamp(2.1rem, 4.3vw, 2.7rem);
  }

  .hero__title span {
    display: block;
  }

  .hero__title span + span::before {
    content: none;
  }

  .hero__copy-block {
    right: 40px;
    bottom: 58px;
    left: auto;
    width: min(380px, calc(100% - 80px));
    justify-items: end;
  }

  .hero__lede {
    text-align: right;
  }
}

.tech-stack {
  --tech-card-gap: clamp(48px, 5vw, 64px);
  position: relative;
  z-index: 1;
  overflow: clip;
  padding: 16px 0;
  background: #000000;
  border: 0;
}

.tech-marquee {
  width: min(calc(100% - 64px), 1132px);
  margin-inline: auto;
  overflow: hidden;
  padding-block: 2px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.28) 3.5%, rgba(0, 0, 0, 0.72) 8%, #000 13%, #000 87%, rgba(0, 0, 0, 0.72) 92%, rgba(0, 0, 0, 0.28) 96.5%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.28) 3.5%, rgba(0, 0, 0, 0.72) 8%, #000 13%, #000 87%, rgba(0, 0, 0, 0.72) 92%, rgba(0, 0, 0, 0.28) 96.5%, transparent 100%);
}

.tech-marquee__track {
  display: flex;
  width: max-content;
  animation: techStackMarquee 40s linear infinite;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.tech-marquee__group {
  display: flex;
  flex: 0 0 auto;
  gap: var(--tech-card-gap);
  align-items: center;
  padding: 0 var(--tech-card-gap) 0 0;
  margin: 0;
  list-style: none;
}

.tech-card {
  display: flex;
  flex: 0 0 auto;
  width: auto;
  height: auto;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.tech-card img {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  opacity: 0.56;
  filter: grayscale(1) brightness(0) invert(1);
  transition:
    filter 220ms ease,
    opacity 220ms ease,
    transform 220ms ease;
}

.tech-card span {
  font-size: 13.5px;
  font-weight: 620;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  transition: color 200ms ease;
}

.tech-marquee:hover .tech-marquee__track {
  animation-play-state: paused;
}

@media (hover: hover) and (pointer: fine) {
  .tech-card:hover img {
    opacity: 1;
    filter: none;
    transform: translateY(-2px);
  }

  .tech-card:hover img:is([src$="/railway.svg"], [src$="/nextdotjs.svg"]) {
    filter: brightness(0) invert(1);
  }

  .tech-card:hover span {
    color: rgba(255, 255, 255, 0.88);
  }
}

@keyframes techStackMarquee {
  to {
    transform: translate3d(-25%, 0, 0);
  }
}

@media (max-width: 1020px) {
  .tech-card {
    gap: 9px;
  }

  .tech-card img {
    width: 32px;
    height: 32px;
  }

  .tech-card span {
    font-size: 13px;
  }
}

@media (max-width: 760px) {
  .tech-stack {
    --tech-card-gap: 48px;
    padding: 14px 0;
  }

  .tech-marquee {
    width: calc(100% - 56px);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 4.5%, #000 10%, #000 90%, rgba(0, 0, 0, 0.55) 95.5%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.55) 4.5%, #000 10%, #000 90%, rgba(0, 0, 0, 0.55) 95.5%, transparent 100%);
  }

  .tech-card {
    gap: 8px;
  }

  .tech-card img {
    width: 26px;
    height: 26px;
  }

  .tech-card span {
    font-size: 12px;
  }
}

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 12.8px;
  font-weight: 700;
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 280ms ease,
    border-color 220ms ease,
    box-shadow 280ms ease;
}

.button--primary {
  color: #fff;
  border: 0;
  background: #05070c;
  box-shadow:
    0 22px 50px rgba(5, 7, 12, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.button--ghost {
  color: rgba(5, 7, 12, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.68));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 18px 42px rgba(26, 31, 70, 0.1);
}

.web-services {
  position: relative;
  overflow: clip;
  padding: clamp(104px, 10vw, 148px) 0 clamp(132px, 12vw, 180px);
  background:
    radial-gradient(ellipse at 50% 44%, rgba(255, 255, 255, 0.94), transparent 36rem),
    linear-gradient(180deg, var(--coded-bg) 0%, var(--coded-white) 52%, var(--coded-bg-soft) 100%);
}

.web-services__inner {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.web-services__intro {
  display: grid;
  justify-items: center;
  width: min(100%, 760px);
  margin: 0 auto clamp(72px, 8vw, 108px);
  text-align: center;
}

.web-services__intro p {
  margin: 0 0 14px;
  color: rgba(87, 93, 120, 0.72);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.web-services__intro h2 {
  margin: 0;
  color: var(--coded-ink);
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  line-height: 1;
  letter-spacing: 0;
  text-wrap: balance;
}

.web-services__intro span {
  max-width: 680px;
  margin-top: 22px;
  color: rgba(23, 23, 23, 0.62);
  font-size: clamp(15px, 1.15vw, 18px);
  line-height: 1.6;
  letter-spacing: 0;
  text-wrap: balance;
}

.web-services__composition {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.28fr) minmax(0, 1fr);
  grid-template-areas: "left feature right";
  gap: clamp(24px, 3vw, 44px);
  align-items: stretch;
}

.web-services__group {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  min-height: 440px;
}

.web-services__group::before,
.web-services__group::after {
  position: absolute;
  z-index: 2;
  content: "";
  background: rgba(23, 23, 23, 0.10);
  pointer-events: none;
}

.web-services__group::before {
  top: 8%;
  bottom: 8%;
  left: 50%;
  width: 1px;
}

.web-services__group::after {
  top: 50%;
  right: 7%;
  left: 7%;
  height: 1px;
}

.web-services__group--left {
  grid-area: left;
}

.web-services__group--right {
  grid-area: right;
}

.web-service {
  display: grid;
  min-width: 0;
  padding: clamp(18px, 2vw, 28px);
  align-content: center;
  justify-items: center;
  gap: 15px;
  text-align: center;
}

.web-service__visual {
  --service-light-x: 50%;
  --service-light-y: 50%;
  --service-light-opacity: 0;
  --service-translate-x: 0px;
  --service-translate-y: 0px;
  --service-rotate-x: 0deg;
  --service-rotate-y: 0deg;
  --service-scale: 1;
  --service-brightness: 1;
  position: relative;
  display: grid;
  width: 100%;
  height: clamp(112px, 11vw, 146px);
  overflow: visible;
  perspective: 700px;
  place-items: center;
}

.web-service__glow,
.web-services__feature-glow {
  position: absolute;
  display: block;
  width: min(72%, 96px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(166, 183, 200, 0.12);
  pointer-events: none;
}

.web-service__object {
  --service-object-artwork-scale: 1;
  --service-object-inline-inset: 8%;
  --service-object-block-inset: 6%;
  --service-object-position-x: 50%;
  --service-object-position-y: 50%;
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  filter: brightness(var(--service-brightness));
  transform:
    translate3d(var(--service-translate-x), var(--service-translate-y), 0)
    rotateX(var(--service-rotate-x))
    rotateY(var(--service-rotate-y))
    scale(var(--service-scale));
  transform-style: preserve-3d;
  transition:
    filter 280ms ease,
    transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.web-service__image {
  position: absolute;
  z-index: 1;
  inset: 0;
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding:
    var(--service-object-block-inset)
    var(--service-object-inline-inset);
  object-fit: contain;
  object-position:
    var(--service-object-position-x)
    var(--service-object-position-y);
  opacity: 0;
  filter: drop-shadow(0 12px 14px rgba(23, 23, 23, 0.11));
  transform: scale(var(--service-object-artwork-scale));
  transform-origin: center;
  pointer-events: none;
}

[data-service-state="ready"] .web-service__image {
  opacity: 1;
}

[data-service-state="ready"] .web-service__object-placeholder,
[data-service-state="ready"] .web-services__package-placeholder {
  opacity: 0;
}

.web-service__object--seo {
  --service-object-artwork-scale: 1.5;
  --service-object-inline-inset: 5%;
  --service-object-block-inset: 8%;
  --service-object-position-y: 48%;
}

[data-seo-sculpture-stage] > .web-service__glow,
[data-integrations-sculpture-stage] > .web-service__glow,
[data-branding-sculpture-stage] > .web-service__glow,
[data-support-sculpture-stage] > .web-service__glow,
[data-booking-sculpture-stage] > .web-service__glow,
[data-ecommerce-sculpture-stage] > .web-service__glow,
[data-development-sculpture-stage] > .web-service__glow,
[data-optimization-sculpture-stage] > .web-service__glow {
  display: none;
}

.web-service__sculpture-canvas {
  position: absolute;
  z-index: 2;
  top: -13%;
  left: -28%;
  display: block;
  width: 156%;
  height: 126%;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.web-service__object--seo.is-webgl-ready .web-service__sculpture-canvas {
  opacity: 1;
}

.web-service__object--seo.is-webgl-ready .web-service__image--fallback {
  opacity: 0;
}

.web-service__object--seo.is-webgl-fallback .web-service__image--fallback {
  opacity: 1;
}

.web-service__object--integrations.is-webgl-ready .web-service__integrations-canvas {
  opacity: 1;
}

.web-service__object--branding.is-webgl-ready .web-service__branding-canvas {
  opacity: 1;
}

.web-service__object--branding.is-webgl-ready .web-service__image--fallback {
  opacity: 0;
}

.web-service__object--branding.is-webgl-fallback .web-service__image--fallback {
  opacity: 1;
}

.web-service__object--support.is-webgl-ready .web-service__support-canvas {
  opacity: 1;
}

.web-service__object--booking.is-webgl-ready .web-service__booking-canvas {
  opacity: 1;
}

.web-service__object--ecommerce.is-webgl-ready .web-service__ecommerce-canvas {
  opacity: 1;
}

.web-service__object--development.is-webgl-ready .web-service__development-canvas {
  opacity: 1;
}

.web-service__object--development.is-webgl-ready .web-service__image--fallback {
  opacity: 0;
}

.web-service__object--development.is-webgl-fallback .web-service__image--fallback {
  opacity: 1;
}

.web-service__object--maintenance.is-webgl-ready .web-service__optimization-canvas {
  opacity: 1;
}

.web-service__object--branding {
  --service-object-inline-inset: 7%;
  --service-object-block-inset: 5%;
}

.web-service__object--integrations {
  --service-object-inline-inset: 7%;
  --service-object-block-inset: 5%;
}

.web-service__object--support {
  --service-object-inline-inset: 8%;
  --service-object-block-inset: 4%;
}

.web-service__object--development {
  --service-object-inline-inset: 4%;
  --service-object-block-inset: 8%;
}

.web-service__object--ecommerce {
  --service-object-inline-inset: 7%;
  --service-object-block-inset: 5%;
  --service-object-position-y: 48%;
}

.web-service__object--booking {
  --service-object-inline-inset: 6%;
  --service-object-block-inset: 6%;
}

.web-service__object--maintenance {
  --service-object-inline-inset: 8%;
  --service-object-block-inset: 4%;
}

.web-service__object-placeholder {
  position: relative;
  z-index: 0;
  width: clamp(58px, 5.7vw, 78px);
  aspect-ratio: 1;
  border: 1px solid rgba(23, 23, 23, 0.14);
  border-radius: 24px 14px 22px 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(221, 223, 226, 0.76));
  box-shadow:
    0 12px 28px rgba(23, 23, 23, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: opacity 180ms ease;
}

.web-service h3,
.web-services__feature h3 {
  position: relative;
  z-index: 3;
  margin: 0;
  color: rgba(23, 23, 23, 0.82);
  font-size: clamp(13px, 1vw, 15.5px);
  font-weight: 650;
  line-height: 1.3;
  letter-spacing: 0;
  text-wrap: balance;
}

.web-services__feature {
  grid-area: feature;
  display: grid;
  min-width: 0;
  padding: 8px 0 24px;
  align-content: center;
  justify-items: center;
  gap: 24px;
  text-align: center;
}

.web-services__feature-stage {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 390px;
  overflow: visible;
  place-items: center;
}

.web-services__cube {
  position: relative;
  z-index: 1;
  width: min(90%, 360px);
  aspect-ratio: 1;
  background: transparent;
}

.web-services__cube-canvas {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: transparent;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.web-services__cube.is-webgl-ready .web-services__cube-canvas {
  opacity: 1;
}

@media (hover: none), (pointer: coarse) {
  [data-service-stage] {
    --service-light-opacity: 0 !important;
    --service-translate-x: 0px !important;
    --service-translate-y: 0px !important;
    --service-rotate-x: 0deg !important;
    --service-rotate-y: 0deg !important;
    --service-scale: 1 !important;
    --service-brightness: 1 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  [data-service-stage] {
    --service-light-opacity: 0 !important;
    --service-translate-x: 0px !important;
    --service-translate-y: 0px !important;
    --service-rotate-x: 0deg !important;
    --service-rotate-y: 0deg !important;
    --service-scale: 1 !important;
    --service-brightness: 1 !important;
  }

  [data-service-object],
  .web-service__glow::after,
  .web-services__feature-glow::after {
    transition: none !important;
  }
}

.web-services__package-placeholder {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px solid rgba(23, 23, 23, 0.14);
  border-radius: 34px 22px 32px 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(218, 221, 225, 0.78));
  box-shadow:
    0 22px 48px rgba(23, 23, 23, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transition: opacity 180ms ease;
}

.web-services__package-placeholder::before,
.web-services__package-placeholder::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(23, 23, 23, 0.10);
  background: rgba(255, 255, 255, 0.42);
}

.web-services__package-placeholder::before {
  inset: 13% 11% 34%;
  border-radius: 18px;
}

.web-services__package-placeholder::after {
  right: 19%;
  bottom: 16%;
  left: 19%;
  height: 9%;
  border-radius: 999px;
}

.web-services__feature h3 {
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

@media (max-width: 1020px) {
  .web-services__composition {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "feature feature"
      "left right";
    gap: 34px 28px;
  }

  .web-services__feature-stage {
    min-height: 350px;
  }

  .web-services__cube {
    width: min(72%, 340px);
  }

  .web-services__group {
    min-height: 390px;
  }

  .web-service__visual {
    height: 118px;
  }
}

@media (max-width: 680px) {
  .web-services {
    padding: 84px 0 116px;
  }

  .web-services__inner {
    width: min(100% - 32px, 1180px);
  }

  .web-services__intro {
    margin-bottom: 58px;
  }

  .web-services__intro span {
    margin-top: 18px;
    font-size: 15px;
  }

  .web-services__composition {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "feature"
      "left"
      "right";
    gap: 42px;
  }

  .web-services__feature {
    padding: 0 0 18px;
  }

  .web-services__feature-stage {
    min-height: 280px;
  }

  .web-services__cube {
    width: min(78vw, 280px);
  }

  .web-services__group {
    min-height: 360px;
  }

  .web-service {
    padding: 16px 12px;
  }

  .web-service__visual {
    height: 106px;
  }

  .web-service__object-placeholder {
    width: 58px;
  }

  .web-service h3 {
    font-size: 13px;
  }
}

.selected-work {
  position: relative;
  overflow: clip;
  margin-top: -48px;
  padding: clamp(150px, 15vw, 210px) 0 clamp(80px, 10vw, 128px);
  background:
    radial-gradient(ellipse at 50% 10%, rgba(255, 255, 255, 0.96), transparent 34rem),
    radial-gradient(ellipse at 78% 30%, var(--coded-steel-reflection), transparent 34rem),
    linear-gradient(180deg, var(--coded-bg-soft) 0%, var(--coded-white) 34%, var(--coded-bg) 100%);
}

.selected-work::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 150px;
  content: "";
  background: linear-gradient(180deg, var(--coded-bg-soft) 0%, rgba(242, 242, 240, 0.72) 52%, rgba(242, 242, 240, 0) 100%);
  pointer-events: none;
}

.work-intro {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1180px);
  margin: 0 auto clamp(52px, 7vw, 84px);
}

.work-intro h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.work-intro p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(10, 16, 28, 0.62);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.portfolio-showcase {
  position: relative;
  overflow: clip;
  padding: clamp(82px, 9vw, 124px) 0 clamp(76px, 8vw, 112px);
  background: #fff;
}

.portfolio-showcase--pile {
  display: grid;
  min-height: clamp(520px, 72svh, 760px);
  padding: clamp(96px, 10vw, 142px) 0 clamp(104px, 11vw, 156px);
  place-items: center;
  background: #000;
}

.portfolio-showcase--pile .portfolio-stage {
  width: 100%;
  min-height: clamp(314px, 34.5vw, 470px);
}

.portfolio-showcase--pile .portfolio-track {
  width: min(100% - 36px, 1089px);
  height: clamp(322px, 36.3vw, 484px);
}

.portfolio-showcase--pile .portfolio-card {
  width: clamp(246px, 23.2vw, 377px);
}

.portfolio-showcase--pile .portfolio-card__caption strong {
  color: rgba(250, 250, 249, 0.96);
}

.portfolio-showcase--pile .portfolio-card__caption span {
  color: rgba(255, 255, 255, 0.58);
}

.portfolio-intro {
  display: grid;
  justify-items: center;
  width: min(100% - 40px, 700px);
  margin: 0 auto clamp(34px, 4.8vw, 64px);
  text-align: center;
}

.portfolio-intro p {
  margin: 0 0 12px;
  color: rgba(87, 93, 120, 0.72);
  font-size: 9px;
  font-weight: 780;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.portfolio-intro h1 {
  margin: 0;
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  line-height: 0.95;
  letter-spacing: -0.064em;
  text-wrap: balance;
}

.portfolio-intro span {
  max-width: 680px;
  margin-top: 16px;
  color: rgba(10, 16, 28, 0.62);
  font-size: clamp(13px, 0.92vw, 15px);
  line-height: 1.55;
  letter-spacing: -0.028em;
}

.portfolio-stage {
  position: relative;
  width: 100%;
  min-height: clamp(260px, 30vw, 390px);
  overflow: visible;
  perspective: none;
}

.portfolio-track {
  position: relative;
  width: min(100% - 36px, 760px);
  height: clamp(240px, 28vw, 360px);
  margin: 0 auto;
  isolation: isolate;
  transform-style: preserve-3d;
}

.portfolio-card {
  --card-x: 0px;
  --card-y: 0px;
  --card-r: 0deg;
  --card-scale: 1;
  --card-z: 0px;
  --card-opacity: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(204px, 19.2vw, 312px);
  overflow: visible;
  color: rgba(7, 9, 18, 0.92);
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  box-shadow: none;
  opacity: var(--card-opacity);
  transform:
    translate3d(calc(-50% + var(--card-x)), calc(-50% + var(--card-y)), var(--card-z))
    rotate(var(--card-r))
    scale(var(--card-scale));
  transform-origin: center;
  will-change: transform, opacity;
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:nth-child(1) {
  z-index: 1;
  --card-x: clamp(-372px, -33.4vw, -233px);
  --card-y: 36px;
  --card-r: -15deg;
  --card-scale: 0.76;
}

.portfolio-card:nth-child(2) {
  z-index: 2;
  --card-x: clamp(-264px, -24.4vw, -164px);
  --card-y: 18px;
  --card-r: -10deg;
  --card-scale: 0.84;
}

.portfolio-card:nth-child(3) {
  z-index: 3;
  --card-x: clamp(-142px, -12.8vw, -89px);
  --card-y: 4px;
  --card-r: -5deg;
  --card-scale: 0.92;
}

.portfolio-card:nth-child(4) {
  z-index: 4;
  --card-x: 0px;
  --card-y: -8px;
  --card-r: 0deg;
  --card-scale: 1;
}

.portfolio-card:nth-child(5) {
  z-index: 3;
  --card-x: clamp(89px, 12.8vw, 142px);
  --card-y: 4px;
  --card-r: 5deg;
  --card-scale: 0.92;
}

.portfolio-card:nth-child(6) {
  z-index: 2;
  --card-x: clamp(164px, 24.4vw, 264px);
  --card-y: 18px;
  --card-r: 10deg;
  --card-scale: 0.84;
}

.portfolio-card:nth-child(7) {
  z-index: 1;
  --card-x: clamp(233px, 33.4vw, 372px);
  --card-y: 36px;
  --card-r: 15deg;
  --card-scale: 0.76;
}

.portfolio-card:not(:nth-child(4)) {
  --card-opacity: 0.92;
  filter: brightness(0.5);
}

.portfolio-card:nth-child(4) {
  opacity: 1;
  filter: none;
}

.portfolio-track:has(.portfolio-card:hover) .portfolio-card:not(:hover) {
  opacity: var(--card-opacity);
  filter: brightness(0.5);
  transform:
    translate3d(calc(-50% + var(--card-x)), calc(-50% + var(--card-y)), -36px)
    rotate(var(--card-r))
    scale(calc(var(--card-scale) * 0.94));
}

.portfolio-track:has(.portfolio-card:is(:hover, :focus-visible)) .portfolio-card:nth-child(4):not(:is(:hover, :focus-visible)) {
  opacity: 0.92;
  filter: brightness(0.5);
}

.portfolio-card:hover,
.portfolio-card:focus-visible {
  z-index: 20;
  opacity: 1;
  filter: none;
  transform:
    translate3d(calc(-50% + var(--card-x)), calc(-50% + var(--card-y) - 14px), 80px)
    rotate(0deg)
    scale(1.08);
}

.portfolio-card__frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border: 1px solid rgba(12, 17, 30, 0.1);
  border-radius: 24px;
  background: #F7F7F5;
  box-shadow:
    0 18px 46px rgba(20, 26, 48, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backface-visibility: hidden;
  transform: translateZ(0);
  transition:
    box-shadow 760ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.portfolio-card:nth-child(4) .portfolio-card__frame {
  box-shadow:
    0 28px 74px rgba(20, 26, 48, 0.18),
    0 10px 34px rgba(17, 18, 20, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.portfolio-card:hover .portfolio-card__frame,
.portfolio-card:focus-visible .portfolio-card__frame {
  border-color: rgba(12, 17, 30, 0.12);
  box-shadow:
    0 32px 82px rgba(20, 26, 48, 0.2),
    0 12px 38px rgba(17, 18, 20, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.portfolio-card__chrome {
  position: absolute;
  top: 9px;
  left: 11px;
  z-index: 3;
  display: flex;
  gap: 4px;
}

.portfolio-card__chrome span {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 0 0 1px rgba(10, 16, 28, 0.08);
}

.portfolio-card__image {
  position: absolute;
  inset: 0;
  background-image: var(--project-image), var(--project-visual);
  background-size: cover;
  background-position: center;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition:
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.portfolio-card[data-project-image$="construction.webp.jpg"] .portfolio-card__image {
  background-position: center top;
}

.portfolio-card:hover .portfolio-card__image,
.portfolio-card:focus-visible .portfolio-card__image {
  transform: translateZ(0) scale(1.015);
}

.portfolio-card__image::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 32%);
}

.portfolio-card__caption {
  display: grid;
  justify-items: center;
  gap: 4px;
  margin-top: 14px;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition:
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease;
}

.portfolio-card:hover .portfolio-card__caption,
.portfolio-card:focus-visible .portfolio-card__caption {
  opacity: 1;
  transform: translateY(-4px);
}

.portfolio-card__caption strong {
  color: rgba(7, 9, 18, 0.88);
  font-size: clamp(12px, 0.88vw, 15px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.portfolio-card__caption span {
  color: rgba(7, 9, 18, 0.42);
  font-size: clamp(9px, 0.64vw, 11px);
  font-weight: 650;
  opacity: 0.7;
  transition: opacity 240ms ease;
}

.portfolio-card:hover .portfolio-card__caption span,
.portfolio-card:focus-visible .portfolio-card__caption span {
  opacity: 1;
}

.work-world {
  position: relative;
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(360px, 1.08fr);
  gap: clamp(30px, 4.8vw, 70px);
  align-items: center;
  width: min(100% - 40px, 1180px);
  min-height: clamp(500px, 65vh, 680px);
  margin: 0 auto clamp(42px, 6vw, 78px);
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px);
  color: var(--coded-ink);
  border: 1px solid var(--coded-line-soft);
  border-radius: clamp(22px, 3vw, 32px);
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.95), transparent 22rem),
    radial-gradient(ellipse at 12% 100%, var(--coded-steel-reflection), transparent 24rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 244, 242, 0.78));
  box-shadow: var(--coded-shadow-strong);
  text-decoration: none;
  transform: translateY(28px);
  opacity: 0;
  transition:
    opacity 700ms ease,
    transform 700ms ease,
    box-shadow 320ms ease,
    border-color 320ms ease;
}

.work-world.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.work-world:hover {
  border-color: var(--coded-line);
  box-shadow:
    0 34px 110px rgba(23, 23, 23, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.work-world--dark {
  color: #fff;
  background:
    radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.08), transparent 26rem),
    radial-gradient(circle at 28% 70%, rgba(17, 18, 20, 0.055), transparent 26rem),
    linear-gradient(145deg, #17181A, #080809 74%);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow:
    0 42px 130px rgba(2, 5, 14, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.work-world--health {
  background:
    radial-gradient(circle at 76% 30%, rgba(17, 18, 20, 0.065), transparent 24rem),
    radial-gradient(circle at 22% 78%, rgba(17, 18, 20, 0.055), transparent 22rem),
    linear-gradient(145deg, var(--coded-surface), var(--coded-bg-soft));
}

.work-world--restaurant {
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.92), transparent 24rem),
    radial-gradient(circle at 18% 86%, rgba(126, 20, 25, 0.08), transparent 24rem),
    linear-gradient(145deg, #fffdfa, #f1eae5);
}

.work-world__ambient {
  position: absolute;
  inset: auto -10% -28% 36%;
  height: 58%;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 35%),
    radial-gradient(circle at 42% 58%, rgba(255, 255, 255, 0.08), transparent 42%);
  filter: blur(42px);
  opacity: 0.78;
  animation: glowBreathe 13s ease-in-out infinite;
}

.work-world__story {
  position: relative;
  z-index: 2;
  max-width: 340px;
}

.work-world__story p {
  margin: 0 0 14px;
  color: currentColor;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  opacity: 0.52;
  text-transform: uppercase;
}

.work-world__story h3 {
  margin: 0;
  font-size: clamp(1.375rem, 1.7vw, 1.875rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.work-world__story span {
  display: block;
  margin-top: 16px;
  color: currentColor;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.55;
  letter-spacing: -0.025em;
  opacity: 0.64;
}

.work-world__story b,
.work-world__link {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  margin-top: 26px;
  padding: 0 14px;
  color: #fff;
  background: #05070c;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 18px 42px rgba(5, 7, 12, 0.16);
}

.work-world--dark .work-world__story b,
.work-world--dark .work-world__link,
.work-index-card .work-world__link {
  color: #05070c;
  background: rgba(255, 255, 255, 0.92);
}

.case-page {
  color: var(--ink);
  background:
    radial-gradient(circle at 78% 12%, rgba(17, 18, 20, 0.06), transparent 32rem),
    radial-gradient(ellipse at 18% 28%, rgba(17, 18, 20, 0.055), transparent 36rem),
    linear-gradient(180deg, #fff 0%, #F7F7F5 46%, #F1F1EF 100%);
}

.case-page--dental {
  background:
    radial-gradient(circle at 76% 12%, rgba(17, 18, 20, 0.055), transparent 32rem),
    radial-gradient(ellipse at 18% 30%, rgba(255, 255, 255, 0.54), transparent 34rem),
    linear-gradient(180deg, #ffffff 0%, #F7F7F5 48%, #F1F1EF 100%);
}

.case-page--restaurant {
  background:
    radial-gradient(circle at 82% 10%, rgba(126, 20, 25, 0.07), transparent 30rem),
    radial-gradient(ellipse at 14% 32%, rgba(255, 255, 255, 0.62), transparent 36rem),
    linear-gradient(180deg, #fffdfa 0%, #f8f3ef 48%, #f0e9e4 100%);
}

.case-study {
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
  padding: clamp(118px, 11vw, 148px) 0 clamp(78px, 9vw, 116px);
}

.case-split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1fr);
  align-items: center;
  gap: clamp(34px, 5.4vw, 74px);
}

.case-hero {
  display: grid;
  justify-items: center;
  gap: clamp(24px, 3.8vw, 46px);
  min-height: auto;
  text-align: center;
}

.case-hero__copy {
  display: grid;
  justify-items: center;
  width: min(100%, 720px);
}

.case-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(10, 16, 28, 0.56);
  font-size: 11px;
  font-weight: 740;
  text-decoration: none;
}

.case-eyebrow {
  margin: 0 0 14px;
  color: rgba(10, 16, 28, 0.46);
  font-size: 9.5px;
  font-weight: 780;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.case-logo-badge {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
  color: rgba(7, 10, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 20%, rgba(255, 255, 255, 0.96), transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(236, 236, 234, 0.68));
  box-shadow:
    0 20px 54px rgba(46, 58, 112, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.case-logo-badge span {
  font-size: 14px;
  font-weight: 820;
  letter-spacing: 0.04em;
}

.case-logo-badge--dental {
  color: rgba(22, 95, 155, 0.82);
  background:
    radial-gradient(circle at 34% 20%, rgba(255, 255, 255, 0.98), transparent 58%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(236, 236, 234, 0.72));
}

.case-logo-badge--restaurant {
  color: rgba(112, 18, 24, 0.9);
  background:
    radial-gradient(circle at 34% 20%, rgba(255, 255, 255, 0.98), transparent 58%),
    linear-gradient(145deg, rgba(255, 253, 250, 0.9), rgba(239, 226, 219, 0.76));
}

.case-hero h1,
.case-split h2,
.case-gallery h2,
.case-results h2,
.case-cta h2 {
  margin: 0;
  color: rgba(7, 10, 22, 0.94);
  letter-spacing: -0.04em;
}

.case-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.98;
}

.case-lede {
  max-width: 500px;
  margin: 18px 0 0;
  color: rgba(10, 16, 28, 0.64);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.48;
  letter-spacing: -0.028em;
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 960px);
  max-width: none;
  margin: 0;
}

.case-meta div,
.case-results article {
  border: 1px solid rgba(20, 28, 48, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    0 24px 70px rgba(46, 58, 112, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.case-meta div {
  padding: 14px 16px;
  text-align: left;
}

.case-meta dt {
  color: rgba(10, 16, 28, 0.44);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.case-meta dd {
  margin: 8px 0 0;
  color: rgba(7, 10, 22, 0.88);
  font-size: 12.5px;
  font-weight: 680;
  line-height: 1.32;
}

.case-visual-card {
  position: relative;
  display: grid;
  width: min(100%, 620px);
  min-height: auto;
  margin: 0;
  aspect-ratio: 16 / 8.7;
  overflow: hidden;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: clamp(24px, 3vw, 34px);
  background:
    radial-gradient(circle at 78% 14%, rgba(17, 18, 20, 0.06), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(236, 236, 234, 0.58));
  box-shadow:
    0 54px 150px rgba(2, 5, 14, 0.18),
    0 20px 80px rgba(17, 18, 20, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  justify-self: center;
}

.case-hero__media {
  width: min(100%, 980px);
  min-height: auto;
  aspect-ratio: 16 / 8.7;
}

.case-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
  background: rgba(3, 7, 18, 0.96);
}

.case-project-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
  background: #f4eeea;
}

.video-toggle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 52px;
  height: 52px;
  padding: 0;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(5, 7, 12, 0.66);
  box-shadow:
    0 16px 42px rgba(3, 7, 18, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  cursor: pointer;
  opacity: 0.42;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    opacity 180ms ease,
    visibility 0s linear 180ms,
    background-color 180ms ease,
    transform 180ms ease;
}

.video-toggle__icon {
  display: block;
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.video-toggle__icon--pause {
  display: none;
}

.video-toggle.is-playing .video-toggle__icon--play {
  display: none;
}

.work-device--video:hover .video-toggle,
.case-hero__media:hover .video-toggle,
.video-toggle:focus-visible,
.video-toggle.is-paused {
  opacity: 0.88;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 180ms ease,
    visibility 0s linear,
    background-color 180ms ease,
    transform 180ms ease;
}

.video-toggle.is-playing {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-toggle:hover {
  background: rgba(5, 7, 12, 0.76);
  transform: translate(-50%, -50%) scale(1.04);
}

.video-toggle:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

.case-split,
.case-gallery,
.case-results,
.case-cta {
  margin-top: clamp(72px, 8vw, 112px);
}

.case-split h2,
.case-gallery h2,
.case-results h2 {
  max-width: 560px;
  font-size: clamp(1.75rem, 2.25vw, 2.5rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.case-split p:not(.case-eyebrow),
.case-results > p {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(10, 16, 28, 0.64);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.58;
  letter-spacing: -0.02em;
}

.case-list {
  display: grid;
  gap: 10px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.case-list li {
  color: rgba(10, 16, 28, 0.72);
  font-size: 14px;
  font-weight: 640;
}

.case-list li::before {
  content: "+ ";
  color: var(--coded-graphite);
}

.case-visual-card > span,
.case-image-card__placeholder {
  color: rgba(10, 16, 28, 0.56);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.case-visual-card__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.case-visual-card--store,
.case-visual-card--checkout,
.case-visual-card--admin,
.case-visual-card--dental-home,
.case-visual-card--dental-booking,
.case-visual-card--dental-services {
  min-height: auto;
  aspect-ratio: 16 / 8.7;
}

.case-visual-card--dental,
.case-visual-card--dental-home,
.case-visual-card--dental-booking,
.case-visual-card--dental-services {
  background:
    radial-gradient(circle at 76% 20%, rgba(17, 18, 20, 0.06), transparent 20rem),
    radial-gradient(circle at 16% 82%, rgba(255, 255, 255, 0.46), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(236, 236, 234, 0.72));
}

.case-visual-card--restaurant {
  border-color: rgba(126, 20, 25, 0.12);
  background: #f4eeea;
  box-shadow:
    0 32px 90px rgba(49, 25, 21, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.case-gallery__grid,
.case-results__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-top: clamp(28px, 4vw, 48px);
}

.case-image-card {
  margin: 0;
}

.case-image-card__placeholder {
  display: grid;
  min-height: auto;
  aspect-ratio: 16 / 8.7;
  place-items: center;
  padding: 24px;
  text-align: center;
  border: 1px solid rgba(20, 28, 48, 0.08);
  border-radius: clamp(20px, 2.4vw, 28px);
  background:
    radial-gradient(circle at 70% 20%, rgba(17, 18, 20, 0.065), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(236, 236, 234, 0.68));
  box-shadow:
    0 24px 70px rgba(46, 58, 112, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.case-image-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(126, 20, 25, 0.1);
  border-radius: clamp(20px, 2.4vw, 28px);
  background: #f4eeea;
  box-shadow:
    0 24px 70px rgba(49, 25, 21, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.case-image-card__media--product,
.case-image-card__media--cart,
.case-image-card__media--management {
  height: auto;
}

.case-image-card__media--navigation {
  object-position: center top;
}

.case-image-card__media--dish {
  object-position: center 48%;
}

.case-image-card__media--menu {
  object-position: center bottom;
}

.case-image-card figcaption {
  margin-top: 14px;
  color: rgba(10, 16, 28, 0.54);
  font-size: 13px;
  font-weight: 700;
}

.case-results article {
  padding: clamp(18px, 2vw, 26px);
}

.case-results h3 {
  margin: 0;
  color: rgba(7, 10, 22, 0.9);
  font-size: clamp(18px, 1.45vw, 22px);
  letter-spacing: -0.04em;
}

.case-results article p {
  margin: 14px 0 0;
  color: rgba(10, 16, 28, 0.58);
  font-size: 14px;
  line-height: 1.55;
}

.case-cta .case-eyebrow,
.case-cta h2 {
  color: rgba(255, 255, 255, 0.92);
}

.case-cta h2 {
  max-width: 560px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.02;
}

@media (max-width: 860px) {
  .case-study {
    width: min(100% - 32px, 1220px);
    padding-top: 106px;
  }

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

  .case-hero {
    min-height: auto;
    gap: 24px;
  }

  .case-gallery__grid,
  .case-results__grid {
    grid-template-columns: 1fr;
  }

  .case-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .case-visual-card,
  .case-visual-card--store,
  .case-visual-card--checkout,
  .case-visual-card--admin,
  .case-visual-card--dental-home,
  .case-visual-card--dental-booking,
  .case-visual-card--dental-services {
    min-height: auto;
    aspect-ratio: 16 / 8.7;
  }

  .case-hero__media {
    width: 100%;
    min-height: auto;
    aspect-ratio: 16 / 8.7;
  }

}

.work-visual {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: min(100%, 620px);
  perspective: 1200px;
  transform: translate3d(var(--work-x, 0px), var(--work-y, 0px), 0);
  transition: transform 260ms ease;
}

.work-device {
  position: relative;
  aspect-ratio: 1.42;
  overflow: hidden;
  padding: clamp(20px, 2.4vw, 30px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: clamp(24px, 3vw, 34px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 32%),
    radial-gradient(circle at 72% 18%, rgba(166, 183, 200, 0.14), transparent 21rem),
    linear-gradient(145deg, rgba(16, 22, 38, 0.98), rgba(2, 4, 12, 0.98));
  box-shadow:
    0 54px 150px rgba(2, 5, 14, 0.34),
    0 20px 80px rgba(23, 23, 23, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: rotateX(4deg) rotateY(-4deg);
  animation: workLevitate 8s ease-in-out infinite;
}

.work-world:hover .work-device {
  animation-play-state: paused;
  transform: rotateX(2deg) rotateY(-2deg) translateY(-10px);
}

.work-device--video,
.work-device--mockup,
.work-device--image {
  aspect-ratio: 16 / 8.7;
  padding: 0;
  border-color: rgba(255, 255, 255, 0.72);
  transform: none;
  animation: none;
  transition: none;
}

.work-visual--commerce,
.work-visual--dashboard,
.work-visual--dental,
.work-visual--restaurant {
  perspective: none;
  transform: none;
  transition: none;
}

.work-world:hover .work-device--video,
.work-world:hover .work-device--mockup,
.work-world:hover .work-device--image {
  animation: none;
  transform: none;
}

.work-device--image {
  background: #f4eeea;
  box-shadow:
    0 32px 90px rgba(49, 25, 21, 0.18),
    0 16px 48px rgba(17, 18, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.work-device__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  border-radius: inherit;
}

.work-device__image.lesage-hero-image,
.case-project-image.lesage-hero-image {
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 860px) {
  .work-world {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .work-world__story {
    max-width: 520px;
  }

  .work-visual {
    width: 100%;
  }
}

.work-device__chrome {
  position: absolute;
  top: 20px;
  left: 24px;
  width: 46px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);
}

.work-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: inherit;
}

.dental-preview {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: clamp(10px, 1.5vw, 16px);
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding: clamp(16px, 2vw, 24px);
  color: rgba(12, 25, 42, 0.9);
  border-radius: inherit;
  background:
    radial-gradient(circle at 78% 20%, rgba(17, 18, 20, 0.06), transparent 17rem),
    radial-gradient(circle at 18% 84%, rgba(255, 255, 255, 0.52), transparent 18rem),
    linear-gradient(145deg, #ffffff 0%, #F7F7F5 54%, #ECECEA 100%);
}

.dental-preview__nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.2vw, 14px);
  min-width: 0;
  color: rgba(12, 25, 42, 0.52);
  font-size: clamp(7px, 0.72vw, 10px);
  font-weight: 720;
}

.dental-preview__nav strong {
  margin-right: auto;
  color: rgba(12, 25, 42, 0.9);
  font-size: clamp(10px, 1vw, 13px);
  letter-spacing: -0.03em;
}

.dental-preview__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 0.78fr);
  gap: clamp(12px, 1.8vw, 22px);
  align-items: stretch;
  min-height: 0;
}

.dental-preview__hero > div:first-child {
  display: grid;
  align-content: center;
  justify-items: start;
}

.dental-preview__hero p {
  margin: 0 0 8px;
  color: rgba(41, 42, 45, 0.72);
  font-size: clamp(8px, 0.78vw, 11px);
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dental-preview__hero h4 {
  max-width: 280px;
  margin: 0;
  color: rgba(12, 25, 42, 0.94);
  font-size: clamp(22px, 3.1vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.058em;
}

.dental-preview__hero em {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-top: 16px;
  padding: 0 13px;
  color: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coded-graphite-deep), var(--coded-graphite));
  box-shadow: 0 14px 34px rgba(17, 18, 20, 0.14);
  font-size: clamp(9px, 0.82vw, 11px);
  font-style: normal;
  font-weight: 780;
}

.dental-preview__booking {
  display: grid;
  align-content: center;
  gap: 9px;
  padding: clamp(12px, 1.6vw, 18px);
  border: 1px solid rgba(17, 18, 20, 0.12);
  border-radius: clamp(18px, 2.2vw, 26px);
  background: rgba(255, 255, 255, 0.72);
  box-shadow:
    0 18px 46px rgba(17, 18, 20, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.dental-preview__booking span {
  display: flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: rgba(12, 25, 42, 0.52);
  border-radius: 999px;
  background: rgba(232, 245, 255, 0.82);
  font-size: clamp(8px, 0.74vw, 10px);
  font-weight: 720;
}

.dental-preview__services {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(7px, 1vw, 10px);
}

.dental-preview__services span {
  display: grid;
  min-height: 34px;
  place-items: center;
  padding: 0 8px;
  color: rgba(12, 25, 42, 0.64);
  border: 1px solid rgba(17, 18, 20, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.68);
  font-size: clamp(8px, 0.72vw, 10px);
  font-weight: 760;
  text-align: center;
}

.fashion-screen,
.project-dashboard,
.care-system {
  display: grid;
  height: 100%;
  gap: 14px;
  padding-top: 24px;
}

.fashion-screen {
  grid-template-columns: 0.9fr 1fr;
}

.fashion-hero {
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.86), transparent 18%),
    linear-gradient(155deg, rgba(236, 236, 234, 0.72), rgba(154, 155, 159, 0.20) 54%, rgba(255, 255, 255, 0.08));
}

.fashion-copy,
.project-table,
.care-panel {
  display: grid;
  align-content: center;
  gap: 14px;
}

.fashion-copy i,
.project-table span,
.care-panel span {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

.fashion-copy i:nth-child(2),
.project-table span:nth-child(2),
.care-panel span:nth-child(2) {
  width: 74%;
}

.fashion-copy i:nth-child(3),
.project-table span:nth-child(3),
.care-panel span:nth-child(3) {
  width: 48%;
  background: rgba(255, 255, 255, 0.24);
}

.project-dashboard {
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(10px, 1.6vw, 16px);
  padding: clamp(16px, 2vw, 24px);
  box-sizing: border-box;
  border-radius: inherit;
  background:
    radial-gradient(circle at 72% 18%, rgba(17, 18, 20, 0.065), transparent 18rem),
    linear-gradient(145deg, rgba(17, 24, 39, 0.98), rgba(3, 7, 18, 0.98));
}

.project-metric,
.project-chart,
.care-timeline,
.care-panel {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.project-metric {
  display: grid;
  align-content: end;
  padding: clamp(16px, 1.8vw, 22px);
}

.project-metric small {
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.project-metric strong {
  color: #fff;
  font-size: clamp(34px, 4vw, 56px);
  letter-spacing: -0.06em;
}

.project-chart {
  display: flex;
  gap: 12px;
  align-items: end;
  padding: clamp(16px, 1.8vw, 22px);
}

.project-chart i {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26), rgba(154, 155, 159, 0.18));
}

.project-chart i:nth-child(1) { height: 44%; }
.project-chart i:nth-child(2) { height: 62%; }
.project-chart i:nth-child(3) { height: 82%; }
.project-chart i:nth-child(4) { height: 54%; }
.project-chart i:nth-child(5) { height: 74%; }

.project-table {
  grid-column: 1 / -1;
}

.care-system {
  grid-template-columns: 0.7fr 1fr;
}

.care-timeline {
  position: relative;
  display: grid;
  place-items: center;
}

.care-timeline::before {
  position: absolute;
  top: 22%;
  bottom: 22%;
  left: 50%;
  width: 1px;
  content: "";
  background: rgba(255, 255, 255, 0.18);
}

.care-timeline i {
  position: relative;
  z-index: 1;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background:
    radial-gradient(circle at 42% 32%, rgba(255, 255, 255, 0.5), transparent 52%),
    rgba(255, 255, 255, 0.12);
}

.care-panel {
  padding: 30px;
}

@keyframes workLevitate {
  50% {
    transform: rotateX(2deg) rotateY(-2deg) translateY(-16px);
  }
}

.process {
  color: var(--coded-ink);
  background: var(--coded-white);
}

.process__artwork {
  position: relative;
  width: 100%;
  aspect-ratio: 1653 / 952;
  overflow: hidden;
  background: #000;
}

.process__artwork img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: none;
}

.process__artwork.is-process-parallax img {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  transform-origin: center center;
  will-change: transform;
}

.process__content {
  width: min(calc(100% - 48px), 1320px);
  margin-inline: auto;
  padding: clamp(86px, 9vw, 132px) 0 clamp(104px, 11vw, 156px);
}

.process__intro {
  margin-bottom: clamp(52px, 6vw, 78px);
}

.process__eyebrow {
  margin: 0 0 20px;
  color: var(--coded-text-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.process__intro h2 {
  max-width: 720px;
  margin: 0;
  color: var(--coded-ink);
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.process__lede {
  max-width: 1240px;
  margin: 22px 0 0;
  color: var(--coded-text-secondary);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

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

.process-card {
  min-height: 290px;
  padding: clamp(24px, 2.1vw, 30px);
  background: var(--coded-white);
  border: 1px solid var(--coded-line);
  border-radius: 6px;
}

.process-card h3 {
  margin: 0;
  color: var(--coded-ink);
  font-size: clamp(17px, 1.25vw, 19px);
  font-weight: 620;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.process-card p {
  margin: 20px 0 0;
  color: var(--coded-text-secondary);
  font-size: 14px;
  line-height: 1.62;
  letter-spacing: -0.005em;
}

@media (max-width: 1180px) {
  .process__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-card {
    min-height: 260px;
  }
}

@media (max-width: 820px) {
  .process__content {
    width: min(calc(100% - 40px), 720px);
  }

  .process__lede {
    max-width: 100%;
  }

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

@media (max-width: 560px) {
  .process__content {
    width: calc(100% - 36px);
    padding: 68px 0 92px;
  }

  .process__intro {
    margin-bottom: 44px;
  }

  .process__eyebrow {
    margin-bottom: 16px;
  }

  .process__lede {
    margin-top: 18px;
  }

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

  .process-card {
    min-height: 0;
    padding: 26px 24px 28px;
  }

  .process-card p {
    margin-top: 14px;
    font-size: 15px;
  }
}

.investment {
  position: relative;
  overflow: clip;
  padding: clamp(104px, 12vw, 156px) 0 clamp(96px, 11vw, 148px);
  color: var(--coded-ink);
  background:
    radial-gradient(circle at 50% 4%, rgba(255, 255, 255, 0.98), transparent 32rem),
    radial-gradient(ellipse at 78% 30%, var(--coded-steel-reflection), transparent 34rem),
    linear-gradient(180deg, var(--coded-white) 0%, var(--coded-bg) 48%, var(--coded-bg-soft) 100%);
}

.investment::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
}

.investment__ambient {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  pointer-events: none;
  opacity: 0.28;
}

.investment__ambient--blue {
  top: 10%;
  right: -10%;
  width: min(48vw, 680px);
  height: min(48vw, 680px);
  background: rgba(17, 18, 20, 0.08);
}

.investment__ambient--violet {
  bottom: -18%;
  left: -12%;
  width: min(44vw, 620px);
  height: min(44vw, 620px);
  background: rgba(255, 255, 255, 0.60);
  animation-delay: -5s;
}

.investment__intro,
.investment__accordion,
.investment__list {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.investment__accordion {
  width: min(100% - 40px, 1040px);
  margin-left: max(20px, calc((100vw - 1180px) / 2));
  margin-right: auto;
}

.investment__intro {
  margin-bottom: clamp(58px, 7vw, 96px);
}

.investment__intro[data-investment-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.investment__intro.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.investment__intro h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.investment__intro span {
  display: block;
  max-width: 560px;
  margin-top: 22px;
  color: rgba(10, 16, 28, 0.62);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.investment__accordion {
  position: relative;
  isolation: isolate;
  display: grid;
  gap: clamp(22px, 3.5vw, 42px);
}

.investment-category {
  display: grid;
  gap: 14px;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 240ms ease-out,
    transform 240ms ease-out;
}

.investment-category.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.investment-category > p {
  margin: 0;
  color: rgba(10, 16, 28, 0.38);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.investment-rows {
  display: grid;
  gap: 10px;
}

.investment-row-shell {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border: 1px solid var(--coded-line-soft);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.64);
  opacity: 1;
  transition:
    background-color 120ms ease-out,
    border-color 120ms ease-out,
    box-shadow 140ms ease-out,
    opacity 120ms ease-out;
}

.investment-row-shell:hover,
.investment-row-shell:focus-within {
  border-color: var(--coded-line);
  background: rgba(255, 255, 255, 0.86);
}

.investment-row-shell.is-open {
  z-index: 20;
  border-color: var(--coded-line-strong);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 34px rgba(23, 23, 23, 0.07), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  opacity: 1;
}

.investment__accordion.has-active-row .investment-row-shell:not(.is-open) {
  opacity: 0.58;
}

.investment-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 18px;
  align-items: center;
  gap: clamp(16px, 3vw, 42px);
  min-height: 78px;
  padding: 0 clamp(22px, 2.8vw, 34px);
  color: inherit;
  border: 0;
  width: 100%;
  background: transparent;
  border-radius: inherit;
  cursor: pointer;
  font: inherit;
  text-align: left;
  transition:
    background-color 100ms ease-out,
    border-color 100ms ease-out;
}

.investment-row:hover,
.investment-row:focus-visible,
.investment-row.is-active {
  background: transparent;
  border-color: var(--coded-silver-strong);
  outline: none;
}

.investment-row span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(7, 9, 18, 0.92);
  font-size: clamp(16px, 1.28vw, 20px);
  font-weight: 650;
  letter-spacing: -0.035em;
}

.investment-row span small {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 0 9px;
  color: rgba(23, 23, 23, 0.72);
  border: 1px solid var(--coded-line-soft);
  border-radius: 999px;
  background: rgba(244, 244, 242, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
  font-size: 9.5px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.investment-row strong {
  display: grid;
  justify-items: end;
  gap: 2px;
  color: rgba(10, 16, 28, 0.72);
  font-weight: 650;
  letter-spacing: -0.015em;
  white-space: nowrap;
  transition: color 120ms ease-out;
}

.investment-row strong span {
  color: rgba(10, 16, 28, 0.42);
  font-size: 10px;
  font-weight: 620;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.investment-row strong b {
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 680;
  transition: font-size 120ms ease-out, color 120ms ease-out;
}

.investment-row.is-active strong {
  color: rgba(7, 9, 18, 0.82);
}

.investment-row.is-active strong b {
  color: rgba(7, 9, 18, 0.9);
  font-size: clamp(15px, 1.12vw, 18px);
}

.investment-row__chevron {
  justify-self: end;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  color: rgba(10, 16, 28, 0.42);
  transform: rotate(45deg);
  transition:
    color 160ms ease-out,
    transform 160ms ease-out;
}

.investment-row:hover .investment-row__chevron,
.investment-row:focus-visible .investment-row__chevron,
.investment-row.is-active .investment-row__chevron,
.investment-row[aria-expanded="true"] .investment-row__chevron {
  color: var(--coded-ink-soft);
  transform: rotate(225deg);
}.investment-row-detail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(280px, 1.1fr);
  gap: clamp(22px, 4vw, 58px);
  align-items: start;
  max-height: 0;
  overflow: hidden;
  padding: 0 clamp(22px, 2.8vw, 34px);
  opacity: 0;
  transform: translateY(-8px);
  transition:
    max-height 90ms ease-out,
    padding 90ms ease-out,
    opacity 90ms ease-out,
    transform 90ms ease-out;
}

.investment-row-shell.is-open .investment-row-detail {
  position: relative;
  z-index: 2;
  max-height: 360px;
  padding: 2px clamp(22px, 2.8vw, 34px) 30px;
  opacity: 1;
  transform: translateY(0);
}

.investment-row-detail__copy,
.investment-row-detail__side,
.investment-row-detail__meta {
  opacity: 0;
  transform: translateY(2px);
  transition:
    opacity 90ms ease-out,
    transform 90ms ease-out;
}

.investment-row-shell.is-open .investment-row-detail__copy {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0ms;
}

.investment-row-shell.is-open .investment-row-detail a {
  position: relative;
  z-index: 3;
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0ms;
}

.investment-row-shell.is-open .investment-row-detail__side {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0ms;
}

.investment-row-shell.is-open .investment-row-detail__meta {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0ms;
}

.investment-row-detail__copy {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 18px;
}

.investment-row-detail p {
  max-width: 420px;
  margin: 0;
  color: rgba(10, 16, 28, 0.68);
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.investment-row-detail a {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  width: fit-content;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.96);
  background:
    linear-gradient(135deg, rgba(13, 17, 31, 0.98), rgba(34, 42, 76, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  box-shadow:
    0 15px 34px rgba(17, 18, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 780;
  text-decoration: none;
  transition:
    transform 220ms ease-out,
    background-color 220ms ease-out,
    border-color 220ms ease-out;
}

.investment-row-detail a:hover {
  background:
    linear-gradient(135deg, rgba(8, 11, 23, 1), rgba(46, 56, 98, 0.98));
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow:
    0 18px 42px rgba(17, 18, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.investment-row-detail__side {
  display: grid;
  align-content: start;
  gap: 18px;
}

.investment-row-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.investment-row-detail__meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  color: rgba(10, 16, 28, 0.66);
  border: 1px solid rgba(16, 23, 38, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  font-size: 12px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.investment-package {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(16, 23, 38, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: none;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms ease,
    transform 720ms ease,
    background 320ms ease,
    border-color 320ms ease;
}

.investment-package.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.investment-package.is-active {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.10), transparent 24rem),
    linear-gradient(135deg, #0A0A0B 0%, #17181A 52%, #292A2D 100%);
  box-shadow:
    0 26px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.investment-package__summary {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  min-height: 68px;
  padding: 0 clamp(20px, 2.4vw, 30px);
  color: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.investment-package__summary span {
  color: rgba(7, 9, 18, 0.92);
  font-size: clamp(16px, 1.35vw, 21px);
  font-weight: 620;
  letter-spacing: -0.035em;
}

.investment-package.is-active .investment-package__summary span {
  color: rgba(255, 255, 255, 0.94);
}

.investment-package__summary strong {
  color: rgba(10, 16, 28, 0.5);
  font-size: clamp(10.5px, 0.72vw, 12px);
  font-weight: 560;
  letter-spacing: -0.015em;
  white-space: nowrap;
}

.investment-package.is-active .investment-package__summary strong {
  color: rgba(255, 255, 255, 0.58);
}

.investment-package__panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    max-height 420ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 240ms ease,
    transform 320ms ease;
}

.investment-package.is-active .investment-package__summary {
  z-index: 7;
}

.investment-package.is-active .investment-package__panel {
  max-height: 760px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    max-height 520ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease 90ms,
    transform 360ms ease 70ms;
}

.investment-package:not(.is-active) .investment-package__panel {
  opacity: 0;
  pointer-events: none;
}

.investment-package__inner {
  display: block;
  padding: clamp(24px, 3vw, 36px) clamp(20px, 2.4vw, 30px);
  padding-top: 6px;
}

.investment-package__copy {
  display: grid;
  align-content: start;
  justify-items: start;
}

.investment-package__copy p,
.investment-package__includes p {
  margin: 0 0 12px;
  color: rgba(10, 16, 28, 0.42);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.investment-package__copy h3 {
  max-width: 420px;
  margin: 0;
  color: rgba(7, 9, 18, 0.94);
  font-size: clamp(18px, 1.45vw, 23px);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.investment-package.is-active .investment-package__copy p,
.investment-package.is-active .investment-package__includes p {
  color: rgba(255, 255, 255, 0.46);
}

.investment-package.is-active .investment-package__copy h3 {
  color: rgba(255, 255, 255, 0.96);
}

.investment-package__copy > span {
  display: block;
  max-width: 420px;
  margin-top: 14px;
  color: rgba(10, 16, 28, 0.62);
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.investment-package.is-active .investment-package__copy > span {
  color: rgba(255, 255, 255, 0.66);
}

.investment-package__copy a {
  display: inline-flex;
  align-items: center;
  min-height: 35px;
  margin-top: 22px;
  padding: 0 14px;
  color: rgba(6, 8, 18, 0.94);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: none;
  font-size: 12px;
  font-weight: 780;
  text-decoration: none;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.investment-package__copy a:hover {
  background: #fff;
  box-shadow: none;
  transform: translateY(-2px);
}

.investment-package__includes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: clamp(18px, 3vw, 42px);
  row-gap: 0;
  max-width: 920px;
  margin-top: 30px;
  align-content: start;
}

.investment-package__includes span {
  display: block;
  padding: 11px 0 10px;
  color: rgba(255, 255, 255, 0.66);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 0;
  font-size: 14px;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.investment-package__includes p {
  grid-column: 1 / -1;
  margin: 18px 0 4px;
}

.investment-package__includes p:first-child {
  margin-top: 0;
}

.investment__list {
  display: grid;
}

.investment__list[hidden] {
  display: none;
}

.investment-offer {
  display: grid;
  grid-template-columns: minmax(260px, 0.92fr) minmax(300px, 1fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: center;
  padding: clamp(30px, 4vw, 54px) 0;
  border-top: 1px solid rgba(15, 22, 38, 0.11);
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms ease,
    transform 720ms ease,
    border-color 260ms ease;
}

.investment-offer:last-child {
  border-bottom: 1px solid rgba(15, 22, 38, 0.11);
}

.investment-offer.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.investment-offer:hover {
  border-color: rgba(17, 18, 20, 0.14);
}

.investment-offer__main p {
  margin: 0 0 12px;
  color: rgba(7, 9, 18, 0.42);
  font-size: 11px;
  font-weight: 780;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.investment-offer__main h3 {
  max-width: 460px;
  margin: 0;
  font-size: clamp(1.75rem, 2.25vw, 2.5rem);
  line-height: 1.05;
  letter-spacing: -0.048em;
}

.investment-offer__detail {
  display: grid;
  justify-items: start;
  gap: 22px;
  max-width: 450px;
}

.investment-offer__detail span {
  color: rgba(10, 16, 28, 0.58);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  letter-spacing: -0.024em;
}

.investment-offer__detail a,
.investment-offer__detail button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  min-height: 42px;
  padding: 0 18px;
  color: #fff;
  background: rgba(5, 7, 12, 0.94);
  border: 0;
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(5, 7, 12, 0.12);
  font-size: 13px;
  font-weight: 780;
  text-decoration: none;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.investment-offer__detail a:hover,
.investment-offer__detail button:hover {
  background: #000;
  box-shadow: 0 24px 54px rgba(5, 7, 12, 0.16);
  transform: translateY(-2px);
}

.client-feedback {
  position: relative;
  overflow: clip;
  margin-top: -1px;
  padding: clamp(96px, 11vw, 156px) 0 clamp(100px, 11vw, 160px);
  color: #F7F7F5;
  background:
    radial-gradient(ellipse 28rem 11rem at 18% 42%, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.82) 38%, rgba(4, 6, 17, 0.46) 62%, rgba(4, 6, 17, 0) 82%),
    radial-gradient(ellipse 28rem 11rem at 82% 42%, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.82) 38%, rgba(4, 6, 17, 0.46) 62%, rgba(4, 6, 17, 0) 82%),
    radial-gradient(circle at 18% 12%, rgba(255, 255, 255, 0.10), transparent 28rem),
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 28rem),
    linear-gradient(180deg, #080809 0%, #0A0A0B 62%, #0D0E10 100%);
}

.client-feedback::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.72), transparent);
}

.client-feedback__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1180px);
  margin: 0 auto;
}

.client-feedback__intro {
  max-width: 680px;
  margin: 0 auto clamp(46px, 5vw, 72px);
  text-align: center;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.client-feedback__intro.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.client-feedback__intro p {
  margin: 0 0 14px;
  color: rgba(247, 248, 255, 0.5);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.client-feedback__intro h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.client-feedback__intro span {
  display: block;
  max-width: 560px;
  margin: 22px auto 0;
  color: rgba(247, 248, 255, 0.58);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.client-feedback__wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  height: clamp(560px, 56vw, 760px);
  overflow: hidden;
}

.client-feedback__wall::before,
.client-feedback__wall::after {
  position: absolute;
  right: 0;
  left: 0;
  z-index: 3;
  height: clamp(54px, 7vw, 92px);
  content: "";
  pointer-events: none;
}

.client-feedback__wall::before {
  top: 0;
  display: none;
}

.client-feedback__wall::after {
  bottom: 0;
  background: linear-gradient(0deg, #0D0E10 0%, rgba(6, 8, 24, 0.72) 34%, rgba(6, 8, 24, 0) 100%);
}

.testimonial-column {
  --marquee-duration: 81.4s;
  --marquee-direction: normal;
  min-width: 0;
}

.testimonial-column--2 {
  --marquee-duration: 81.4s;
  --marquee-direction: reverse;
}

.testimonial-column--3 {
  --marquee-duration: 81.4s;
}

.testimonial-column__viewport {
  height: 100%;
  overflow: hidden;
  padding-block: 28px;
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.34) 3.5%,
    rgba(0, 0, 0, 0.86) 8%,
    #000 12%,
    #000 93%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(0, 0, 0, 0.34) 3.5%,
    rgba(0, 0, 0, 0.86) 8%,
    #000 12%,
    #000 93%,
    transparent 100%
  );
}

.testimonial-track {
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: testimonialMarquee var(--marquee-duration) linear infinite;
  animation-direction: var(--marquee-direction);
  will-change: transform;
}

.client-feedback__wall:hover .testimonial-track {
  animation-play-state: paused;
}

.testimonial-card {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 1.8vw, 24px);
  color: #111214;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow:
    0 8px 18px rgba(0, 0, 0, 0.1),
    0 2px 6px rgba(26, 36, 64, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  -webkit-backdrop-filter: blur(6px) saturate(106%);
  backdrop-filter: blur(6px) saturate(106%);
}

.testimonial-card__rating {
  color: rgba(41, 42, 45, 0.72);
  font-size: 12px;
  letter-spacing: 0.16em;
  line-height: 1;
}

.testimonial-card__quote {
  margin: 0;
  color: #17181A;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 560;
  line-height: 1.55;
  letter-spacing: -0.02em;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  color: rgba(248, 250, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.28), transparent 42%),
    linear-gradient(135deg, var(--coded-graphite-deep), var(--coded-graphite));
  box-shadow: 0 4px 10px rgba(17, 18, 20, 0.06);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.08em;
}

.testimonial-card__meta {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.testimonial-card__meta strong {
  color: #111214;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.1;
}

.testimonial-card__meta span {
  color: rgba(17, 24, 39, 0.62);
  font-size: 12px;
  font-weight: 620;
  line-height: 1.2;
}

@keyframes testimonialMarquee {
  to {
    transform: translateY(-50%);
  }
}

.review-phones {
  position: relative;
  overflow: clip;
  margin-top: -1px;
  padding: clamp(88px, 10vw, 132px) 0 clamp(124px, 11vw, 172px);
  color: var(--coded-ink);
  background:
    radial-gradient(circle at 48% 6%, rgba(255, 255, 255, 0.96), transparent 32rem),
    radial-gradient(ellipse at 80% 24%, var(--coded-lilac-reflection), transparent 34rem),
    linear-gradient(180deg, var(--coded-white) 0%, var(--coded-bg) 58%, var(--coded-bg-soft) 100%);
}

.review-phones__inner {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
}

.review-phones__intro {
  max-width: 720px;
  margin-bottom: clamp(54px, 6vw, 88px);
}

.review-phones__intro p {
  margin: 0 0 14px;
  color: rgba(10, 16, 28, 0.46);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.review-phones__intro h2 {
  max-width: 620px;
  margin: 0;
  color: rgba(7, 10, 22, 0.92);
  font-size: clamp(2.25rem, 3.2vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.035em;
}

.review-phones__intro span {
  display: block;
  max-width: 560px;
  margin-top: 22px;
  color: rgba(10, 16, 28, 0.62);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.review-phones__intro a {
  color: rgba(7, 10, 22, 0.92);
  font-weight: 620;
  text-decoration: none;
}

.faq-accordion {
  width: min(100%, 920px);
  margin: 0;
  border-top: 1px solid rgba(18, 28, 45, 0.1);
}

.faq-item {
  border-bottom: 1px solid rgba(18, 28, 45, 0.1);
  content-visibility: auto;
  contain-intrinsic-size: auto 116px;
}

.faq-item:last-child {
  border-bottom: 0;
}


.faq-item h3 {
  margin: 0;
}

.faq-item button {
  appearance: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 22px;
  align-items: center;
  gap: clamp(16px, 3vw, 42px);
  width: 100%;
  min-height: 78px;
  padding: 0;
  color: rgba(7, 9, 18, 0.92);
  border: 0;
  background: transparent;
  cursor: pointer;
  font: inherit;
  font-size: clamp(17.6px, 1.41vw, 22px);
  font-weight: 620;
  line-height: 1.2;
  letter-spacing: -0.035em;
  text-align: left;
}

.faq-item button:focus-visible {
  outline: 2px solid rgba(17, 18, 20, 0.28);
  outline-offset: 6px;
}

.faq-item button i {
  position: relative;
  width: 15px;
  height: 15px;
  justify-self: end;
}

.faq-item button i::before,
.faq-item button i::after {
  position: absolute;
  top: 7px;
  left: 2px;
  width: 10px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: rgba(10, 16, 28, 0.36);
  transition:
    background-color 220ms ease-out,
    transform 240ms ease;
}

.faq-item button:hover i::before,
.faq-item button:hover i::after,
.faq-item button:focus-visible i::before,
.faq-item button:focus-visible i::after,
.faq-item.is-open button i::before,
.faq-item.is-open button i::after {
  background: rgba(41, 42, 45, 0.72);
}

.faq-item button i::before {
  transform: rotate(45deg) translateX(-3px);
}

.faq-item button i::after {
  transform: rotate(-45deg) translateX(3px);
}

.faq-item.is-open button i::before {
  transform: rotate(-45deg) translateX(-3px);
}

.faq-item.is-open button i::after {
  transform: rotate(45deg) translateX(3px);
}

.faq-item__panel {
  display: none;
}

.faq-item.is-open .faq-item__panel {
  display: block;
}

.faq-item__panel > div {
  overflow: clip;
}

.faq-item__panel p {
  max-width: 900px;
  margin: 0 0 28px;
  color: rgba(10, 16, 28, 0.68);
  font-size: 17px;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.contact-section {
  position: relative;
  overflow: clip;
  margin-top: 0;
  display: grid;
  align-items: center;
  min-height: auto;
  box-sizing: border-box;
  padding: clamp(78px, 7vw, 104px) 0 clamp(92px, 10vw, 136px);
  color: var(--coded-ink);
  background:
    radial-gradient(ellipse at 78% 18%, var(--coded-steel-reflection), transparent 34rem),
    radial-gradient(circle at 50% 64%, rgba(255, 255, 255, 0.76), transparent 36rem),
    linear-gradient(180deg, var(--coded-bg) 0%, var(--coded-white) 46%, var(--coded-bg-soft) 100%);
}

.contact-section::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 130px;
  content: "";
  background: linear-gradient(180deg, var(--coded-bg) 0%, rgba(250, 250, 249, 0) 100%);
  pointer-events: none;
}

.contact-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 92px);
  width: min(100% - 40px, 1200px);
  margin: 0 auto;
}

.contact-section__copy,
.contact-section__panel {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
}

.contact-section__copy.is-visible,
.contact-section__panel.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-section__copy h2 {
  max-width: 750px;
  margin: 0;
  color: rgba(7, 10, 22, 0.94);
  font-size: clamp(2.625rem, 4.2vw, 3.75rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.contact-section__copy p {
  max-width: 617px;
  margin: clamp(29px, 3.63vw, 41px) 0 0;
  color: rgba(10, 16, 28, 0.64);
  font-size: clamp(17px, 1.18vw, 20px);
  line-height: 1.55;
  letter-spacing: -0.025em;
}

.contact-section__response {
  display: inline-flex;
  margin-top: 32px;
  color: rgba(10, 16, 28, 0.48);
  font-size: 14.5px;
  font-weight: 680;
  letter-spacing: 0.02em;
}

.contact-section__methods {
  display: grid;
  margin-top: 32px;
  gap: 22px;
}

.contact-section__method {
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  gap: 14px;
  color: #252931;
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-section__method-icon {
  display: grid;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  place-items: center;
  color: #343942;
  background: rgba(17, 19, 24, 0.045);
  border: 1px solid rgba(17, 19, 24, 0.1);
  border-radius: 50%;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.contact-section__method-icon svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-section__method-copy {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.contact-section__method-copy small {
  color: #858a93;
  font-size: 11px;
  font-weight: 650;
  line-height: 1.2;
}

.contact-section__method-copy strong {
  color: inherit;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

@media (hover: hover) {
  .contact-section__method:hover {
    color: #000;
    transform: translateX(2px);
  }

  .contact-section__method:hover .contact-section__method-icon {
    background: rgba(17, 19, 24, 0.075);
    border-color: rgba(17, 19, 24, 0.16);
  }
}

.contact-section__method:focus-visible {
  outline: 2px solid #303a4b;
  outline-offset: 4px;
  border-radius: 4px;
}

.contact-section__panel {
  justify-self: end;
  width: min(100%, 720px);
  padding: clamp(26px, 3.2vw, 38px);
  border: 1px solid var(--coded-line-soft);
  border-radius: clamp(18px, 2vw, 24px);
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 255, 255, 0.94), transparent 18rem),
    radial-gradient(ellipse at 12% 100%, var(--coded-steel-reflection), transparent 22rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(244, 244, 242, 0.82));
  box-shadow: var(--coded-shadow-medium);
  -webkit-backdrop-filter: blur(18px) saturate(108%);
  backdrop-filter: blur(18px) saturate(108%);
}

.contact-section__panel .contact-form {
  width: 100%;
}

@media (max-width: 900px) {
  .contact-section__inner {
    grid-template-columns: 1fr;
    width: min(100% - 40px, 720px);
  }

  .contact-section__copy,
  .contact-section__panel {
    width: 100%;
  }

  .contact-section__panel {
    justify-self: stretch;
  }
}
.site-footer {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.94);
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.08), transparent 30rem),
    radial-gradient(circle at 24% 80%, rgba(17, 18, 20, 0.055), transparent 30rem),
    linear-gradient(180deg, #0A0A0B 0%, #080809 100%);
  isolation: isolate;
}

.site-footer__video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(0.72) contrast(1.06);
}

.site-footer__shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 74% 34%, rgba(255, 255, 255, 0.08), transparent 30rem),
    radial-gradient(ellipse at 24% 18%, rgba(255, 255, 255, 0.08), transparent 28rem),
    linear-gradient(90deg, rgba(3, 5, 12, 0.86) 0%, rgba(3, 5, 12, 0.68) 44%, rgba(3, 5, 12, 0.86) 100%),
    linear-gradient(180deg, rgba(3, 5, 12, 0.22), rgba(0, 0, 0, 0.94));
}

.site-footer__inner {
  display: grid;
  gap: clamp(56px, 6vw, 72px);
  width: min(100% - 40px, 1220px);
  margin: 0 auto;
  padding: clamp(72px, 7vw, 96px) 0 clamp(32px, 4vw, 48px);
}

.site-footer__cta {
  max-width: 640px;
}

.site-footer__cta p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.2em;
}

.site-footer__cta h2 {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.058em;
  text-wrap: balance;
}

.footer-word-rotator {
  display: inline-block;
  min-width: 3.8em;
  vertical-align: baseline;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 280ms ease,
    transform 280ms ease;
}

.footer-word-rotator.is-changing {
  opacity: 0;
  transform: translateY(-0.16em);
}

.site-footer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: clamp(24px, 3vw, 34px);
  padding: 0 24px;
  color: rgba(5, 7, 12, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  font-weight: 760;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-footer__button:hover {
  background: #fff;
  box-shadow:
    0 28px 68px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  transform: translateY(-2px);
}

.site-footer__button:focus-visible,
.site-footer__brand:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 5px;
}

.site-footer__bottom {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__brand {
  display: inline-flex;
  gap: 6px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 18px;
  font-weight: 860;
  letter-spacing: 0.22em;
  text-decoration: none;
}

.site-footer__brand em {
  color: rgba(255, 255, 255, 0.42);
  font-style: normal;
}

.site-footer__copyright {
  justify-self: end;
  color: rgba(255, 255, 255, 0.48);
  font-size: 12px;
  font-weight: 640;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes navFadeUp {
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes glowBreathe {
  50% {
    opacity: 0.66;
    transform: scale(0.96) translateY(10px);
  }
}

@media (max-width: 680px) {
  .case-meta {
    grid-template-columns: 1fr;
  }

  .dental-preview {
    gap: 10px;
    padding: 14px;
  }

  .dental-preview__nav span {
    display: none;
  }

  .dental-preview__hero {
    grid-template-columns: 1fr;
  }

  .dental-preview__booking {
    display: none;
  }

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

  .nav {
    min-height: 48px;
    padding: 5px 9px 5px 5px;
    font-size: 11px;
    top: 20px;
    overflow: visible;
  }

  .nav__brand {
    width: 98px;
    padding: 0 7px 0 10px;
  }

  .wordmark {
    gap: 3px;
    font-size: 14.5px;
    letter-spacing: 0.1em;
  }

  .nav__links {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    gap: 2px;
    padding: 8px;
    overflow: hidden;
    color: var(--nav-muted);
    background: var(--nav-surface);
    border: 1px solid var(--nav-border);
    border-radius: 22px;
    box-shadow: 0 18px 46px rgba(5, 7, 12, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .nav__links a {
    display: flex;
    min-height: 44px;
    padding: 0 16px;
    align-items: center;
    border-radius: 14px;
  }

  .nav.is-mobile-menu-open .nav__links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav__menu-toggle {
    position: relative;
    z-index: 2;
    display: grid;
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    place-content: center;
    gap: 5px;
    color: var(--nav-ink);
    background: transparent;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
  }

  .nav__menu-toggle span {
    display: block;
    width: 17px;
    height: 1.5px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .nav.is-mobile-menu-open .nav__menu-toggle span:first-child {
    transform: translateY(3.25px) rotate(45deg);
  }

  .nav.is-mobile-menu-open .nav__menu-toggle span:last-child {
    transform: translateY(-3.25px) rotate(-45deg);
  }

  .nav__menu-toggle:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
  }

  .nav .nav__cta {
    flex: 0 0 auto;
    min-height: 44px;
    padding: 11px 12px;
  }

  .hero__visual {
    padding: 82px 12px 18px;
  }

  .hero__title {
    top: 98px;
    right: 20px;
    left: auto;
    width: min(280px, calc(100% - 40px));
    font-size: clamp(2rem, 9vw, 2.45rem);
    line-height: 0.96;
  }

  .hero__title span {
    display: block;
  }

  .hero__title span + span::before {
    content: none;
  }

  .hero__copy-block {
    right: 20px;
    bottom: 58px;
    left: 20px;
    width: auto;
    justify-items: start;
  }

  .hero__lede {
    font-size: 13px;
    line-height: 1.5;
    text-align: left;
  }

  .portfolio-showcase--pile {
    min-height: clamp(400px, 68svh, 560px);
    padding: 76px 0 88px;
  }

  .portfolio-showcase--pile .portfolio-stage {
    min-height: 300px;
  }

  .portfolio-showcase--pile .portfolio-track {
    width: calc(100% - 12px);
    height: 310px;
  }

  .portfolio-showcase--pile .portfolio-card {
    width: clamp(210px, 64vw, 246px);
  }

  .button {
    min-height: 40px;
    padding: 0 16px;
  }

}

.project-finder {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    visibility 0ms linear 220ms;
}

.project-finder.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 220ms ease,
    visibility 0ms linear 0ms;
}

.project-finder__shade {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 12, 0.56);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

body.finder-open,
body.contact-open {
  overflow: hidden;
}

body.finder-open .nav,
body.contact-open .nav {
  opacity: 0.42;
}

.project-finder__panel {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(820px, calc(100vw - 48px));
  height: min(440px, calc(100svh - 40px));
  min-height: 0;
  max-height: calc(100svh - 40px);
  padding: 32px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 78% 0%, rgba(170, 185, 205, 0.07), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 247, 245, 0.98) 100%);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  overflow: hidden;
  opacity: 0;
  transform: translateY(8px) scale(0.99);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.project-finder.is-open .project-finder__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.project-finder__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  padding: 0;
  color: rgba(20, 20, 20, 0.82);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  font: inherit;
  font-size: 24px;
  font-weight: 360;
  line-height: 1;
}

.project-finder__close:hover {
  transform: none;
}

.project-finder__close:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.28);
  outline-offset: 3px;
}

.project-finder__close span,
.contact-modal__close span {
  display: none;
}

.project-finder__close::before,
.project-finder__close::after,
.contact-modal__close::before,
.contact-modal__close::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  content: "";
  border-radius: 999px;
  background: currentColor;
  pointer-events: none;
  transform-origin: center;
}

.project-finder__close::before,
.contact-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.project-finder__close::after,
.contact-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.project-finder__scene {
  grid-area: 1 / 1;
  display: grid;
  justify-items: center;
  align-content: center;
  width: min(100%, 760px);
  height: 100%;
  min-height: 0;
  max-height: 100%;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.project-finder__scene[data-finder-intro] {
  width: min(100%, 640px);
}

.project-finder__scene[data-finder-question] {
  width: min(100%, 790px);
}

.project-finder__scene[data-finder-analyzing] {
  width: min(100%, 560px);
}

.project-finder__scene[data-finder-result] {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(100%, 780px);
  min-height: 0;
}

.project-finder__scene.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.project-finder__scene h2 {
  max-width: 720px;
  margin: 0;
  color: rgba(7, 9, 18, 0.94);
  font-size: clamp(2.25rem, 3vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-align: center;
}

.project-finder__scene[data-finder-question] h2 {
  max-width: 700px;
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
  line-height: 1.12;
}

.project-finder__scene[data-finder-analyzing] h2 {
  font-size: clamp(1.75rem, 2.4vw, 2.25rem);
}

.project-finder__scene p {
  max-width: 580px;
  margin: 11px 0 0;
  color: rgba(10, 16, 28, 0.66);
  font-size: clamp(15px, 1.1vw, 16.5px);
  line-height: 1.56;
  letter-spacing: 0;
  text-align: center;
}

.project-finder__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 52px;
  margin-top: 28px;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coded-dark), var(--coded-graphite));
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  font: inherit;
  font-size: 13.5px;
  font-weight: 760;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.project-finder__scene[data-finder-intro] .project-finder__primary {
  width: 200px;
}

.project-finder__scene[data-finder-result] .project-finder__primary {
  width: 220px;
  min-width: 220px;
  min-height: 52px;
  margin-top: 0;
  justify-self: center;
}

.project-finder__primary:hover {
  background: #000;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.project-finder__result-scroll {
  display: grid;
  flex: 1 1 auto;
  justify-items: center;
  width: min(100%, 720px);
  min-height: 0;
  max-height: 100%;
  padding: 0 4px 4px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 18, 20, 0.22) transparent;
}

.project-finder__result-scroll::-webkit-scrollbar {
  width: 5px;
}

.project-finder__result-scroll::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.18);
}

.project-finder__actions {
  display: flex;
  flex: 0 0 auto;
  justify-content: center;
  width: min(100%, 720px);
  padding-top: 20px;
}

.project-finder__dots {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.project-finder__dots span {
  width: 26px;
  height: 4px;
  border-radius: 999px;
  background: rgba(7, 9, 18, 0.14);
  transition: background-color 220ms ease;
}

.project-finder__dots span.is-active {
  background: rgba(7, 9, 18, 0.72);
}

.project-finder__eyebrow {
  margin: 0 0 10px !important;
  color: rgba(17, 18, 20, 0.42) !important;
  font-size: 10px !important;
  font-weight: 760;
  letter-spacing: 0.14em !important;
  text-transform: uppercase;
}

.project-finder__answers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: min(100%, 760px);
  margin-top: 24px;
}

.project-finder__answers button {
  min-height: 54px;
  padding: 0 16px;
  color: rgba(7, 9, 18, 0.84);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: none;
  cursor: pointer;
  font: inherit;
  font-size: 13.5px;
  font-weight: 640;
  letter-spacing: 0;
  text-align: left;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.project-finder__answers button:hover,
.project-finder__answers button:focus-visible {
  border-color: rgba(17, 18, 20, 0.24);
  background: #fff;
  transform: translateY(-1px);
}

.project-finder__answers button:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.24);
  outline-offset: 3px;
}

.project-finder__ring {
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border: 1px solid rgba(7, 9, 18, 0.1);
  border-top-color: rgba(17, 18, 20, 0.46);
  border-radius: 999px;
  animation: finderSpin 1.3s linear infinite;
}

@keyframes finderSpin {
  to {
    transform: rotate(360deg);
  }
}

.project-finder__result-head {
  display: grid;
  justify-items: center;
  gap: 8px;
  align-items: center;
}

.project-finder__result-head h2 {
  grid-row: 2;
  font-size: clamp(1.5rem, 2vw, 2rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.project-finder__result-head span {
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 13px;
  color: rgba(41, 42, 45, 0.80);
  border: 1px solid rgba(17, 18, 20, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 13.5px;
  font-weight: 760;
}

.project-finder__scene > strong {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-top: 10px;
  padding: 0 12px;
  color: rgba(17, 18, 20, 0.62);
  border: 1px solid rgba(17, 18, 20, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 720;
}

.project-finder__explanation {
  display: grid;
  gap: 7px;
  max-width: 640px !important;
  margin-top: 14px !important;
  font-size: 13px !important;
  line-height: 1.5 !important;
}

.project-finder__explanation::before,
.project-finder__alternatives::before {
  color: rgba(17, 18, 20, 0.42);
  font-size: 9.5px;
  font-weight: 780;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
}

.project-finder__explanation::before {
  content: "Why this fits";
}

.project-finder__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(190px, 1fr));
  align-items: start;
  justify-content: center;
  column-gap: clamp(38px, 5vw, 54px);
  row-gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin-top: 16px;
}

.project-finder__features span {
  display: inline-flex;
  align-items: flex-start;
  justify-self: stretch;
  width: 100%;
  min-height: 21px;
  color: rgba(10, 16, 28, 0.64);
  font-size: 11px;
  font-weight: 620;
  line-height: 1.35;
  text-align: left;
}

.project-finder__features span::before {
  content: "";
  flex: 0 0 auto;
  width: 4px;
  height: 4px;
  margin-top: 0.55em;
  margin-right: 8px;
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.28);
}

.project-finder__alternatives {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  width: min(100%, 640px);
  margin-top: 18px;
}

.project-finder__alternatives::before {
  content: "Also consider";
  grid-column: 1 / -1;
  justify-self: center;
  margin-bottom: 2px;
}

.project-finder__alternatives article {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  padding: 0 12px;
  color: rgba(10, 16, 28, 0.68);
  border: 1px solid rgba(16, 23, 38, 0.08);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 620;
}

.project-finder__alternatives article {
  gap: 8px;
}

.project-finder__alternatives strong {
  color: rgba(17, 18, 20, 0.68);
}

@media (max-width: 767px), (max-height: 679px) {
  .project-finder {
    padding: 12px;
  }

  .project-finder__panel,
  .project-finder__panel:has([data-finder-intro].is-active),
  .project-finder__panel:has([data-finder-question].is-active),
  .project-finder__panel:has([data-finder-result].is-active) {
    width: min(620px, calc(100vw - 24px));
    height: calc(100svh - 24px);
    min-height: 0;
    max-height: calc(100svh - 24px);
    padding: 56px 20px 24px;
    overflow: hidden;
  }

  .project-finder__scene {
    width: min(100%, 520px);
  }

  .project-finder__scene[data-finder-question],
  .project-finder__scene[data-finder-result] {
    width: min(100%, 560px);
  }

  .project-finder__scene h2 {
    font-size: clamp(1.85rem, 8vw, 2.35rem);
  }

  .project-finder__scene[data-finder-question] h2,
  .project-finder__scene[data-finder-analyzing] h2 {
    font-size: clamp(1.55rem, 6vw, 2rem);
  }

  .project-finder__scene p {
    font-size: 15px;
  }

  .project-finder__primary,
  .project-finder__scene[data-finder-intro] .project-finder__primary,
  .project-finder__scene[data-finder-result] .project-finder__primary {
    width: min(100%, 240px);
    min-width: 0;
  }

  .project-finder__dots {
    gap: 7px;
    margin-bottom: 14px;
  }

  .project-finder__dots span {
    width: 18px;
  }

  .project-finder__answers,
  .project-finder__features,
  .project-finder__alternatives {
    grid-template-columns: 1fr;
  }

  .project-finder__answers {
    gap: 9px;
    margin-top: 18px;
  }

  .project-finder__answers button {
    min-height: 50px;
  }

  .project-finder__result-scroll {
    width: min(100%, 560px);
    max-height: calc(100svh - 160px);
    overflow-y: auto;
  }

  .project-finder__actions {
    width: min(100%, 560px);
    padding-top: 14px;
  }
}
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: grid;
  place-items: center;
  padding: clamp(18px, 3vw, 42px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 420ms ease,
    visibility 0ms linear 420ms;
}

.contact-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition:
    opacity 420ms ease,
    visibility 0ms linear 0ms;
}

.contact-modal__shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.10), transparent 34rem),
    rgba(4, 6, 14, 0.54);
  -webkit-backdrop-filter: blur(18px) saturate(116%);
  backdrop-filter: blur(18px) saturate(116%);
}

.contact-modal__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.32);
  background:
    radial-gradient(circle at 78% 4%, rgba(17, 18, 20, 0.06), transparent 19rem),
    radial-gradient(circle at 12% 98%, rgba(17, 18, 20, 0.055), transparent 23rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(247, 247, 245, 0.72));
  box-shadow:
    0 48px 150px rgba(3, 6, 18, 0.34),
    0 16px 50px rgba(17, 18, 20, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(255, 255, 255, 0.34);
  -webkit-backdrop-filter: blur(34px) saturate(155%);
  backdrop-filter: blur(34px) saturate(155%);
  overflow: hidden;
}

.contact-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  min-height: 30px;
  padding: 0 10px;
  color: rgba(7, 9, 18, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  font: inherit;
  font-size: 10.5px;
  font-weight: 600;
  transition:
    color 220ms ease,
    background 220ms ease,
    transform 220ms ease;
}

.contact-modal__close:hover {
  color: rgba(7, 9, 18, 0.7);
  background: rgba(255, 255, 255, 0.52);
  transform: translateY(-1px);
}

.contact-modal__intro {
  display: grid;
  justify-items: center;
  margin-bottom: clamp(24px, 3.3vw, 38px);
  text-align: center;
}

.contact-modal__intro h2 {
  margin: 0;
  color: rgba(7, 9, 18, 0.94);
  font-size: clamp(33px, 3.6vw, 52px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.contact-modal__intro span {
  max-width: 460px;
  margin-top: 16px;
  color: rgba(10, 16, 28, 0.58);
  font-size: clamp(13px, 0.95vw, 16px);
  line-height: 1.45;
  letter-spacing: -0.025em;
}

.contact-modal__body {
  display: grid;
  justify-items: center;
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(17, 18, 20, 0.22) transparent;
}

.contact-modal__body::-webkit-scrollbar {
  width: 5px;
}

.contact-modal__body::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(17, 18, 20, 0.18);
}

.contact-form {
  display: grid;
  gap: 24px;
  width: min(100%, 871px);
  min-width: 0;
}

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

.contact-form label {
  display: grid;
  gap: 10px;
  min-width: 0;
}

.contact-form label span {
  color: rgba(10, 16, 28, 0.55);
  font-size: 12.1px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 51px;
  padding: 0 17px;
  color: rgba(7, 9, 18, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 12px 28px rgba(17, 18, 20, 0.10);
  font: inherit;
  font-size: 15.7px;
  outline: none;
  transition:
    border-color 220ms ease,
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.contact-form textarea {
  min-height: 111px;
  padding-block: 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(17, 18, 20, 0.22);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 34px rgba(17, 18, 20, 0.10),
    0 0 0 3px rgba(17, 18, 20, 0.06);
}

.contact-form__message {
  grid-column: 1 / -1;
}

.contact-form__submit {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 198px;
  min-height: 51px;
  padding: 0 24px;
  color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coded-dark), var(--coded-graphite));
  box-shadow:
    0 16px 38px rgba(17, 18, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  cursor: pointer;
  font: inherit;
  font-size: 14.5px;
  font-weight: 760;
  transition:
    transform 260ms ease,
    box-shadow 260ms ease;
}

.contact-form__submit:hover {
  box-shadow:
    0 22px 52px rgba(17, 18, 20, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.contact-form__privacy {
  margin: 14px 0 0;
  color: rgba(17, 24, 39, 0.58);
  font-size: 12px;
  line-height: 1.55;
}

.contact-form__privacy a {
  color: inherit;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(17, 24, 39, 0.28);
  text-underline-offset: 3px;
}

.contact-form__privacy a:hover {
  color: #111827;
}

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

.contact-form__status {
  min-height: 19px;
  margin: 12px 0 0;
  color: rgba(17, 24, 39, 0.66);
  font-size: 13px;
  font-weight: 620;
  line-height: 1.45;
}

.contact-form__status:empty {
  min-height: 0;
  margin-top: 0;
}

.contact-form__status.is-success {
  color: #246340;
}

.contact-form__status.is-error {
  color: #9a3030;
}

.contact-form[aria-busy="true"] .contact-form__submit {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}


/* Premium contact modal refinement */
.contact-modal {
  padding: 20px;
  transition:
    opacity 220ms ease,
    visibility 220ms ease;
}

.contact-modal__shade {
  background: rgba(10, 10, 12, 0.56);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.contact-modal__panel {
  width: min(820px, calc(100vw - 48px));
  height: min(440px, calc(100svh - 40px));
  min-height: 0;
  max-height: calc(100svh - 40px);
  padding: 32px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(247, 246, 242, 0.96));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.14);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.contact-modal.is-open .contact-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.contact-modal__close {
  top: 18px;
  right: 18px;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  min-width: 38px;
  padding: 0;
  color: rgba(20, 20, 20, 0.82);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
  font-size: 24px;
  font-weight: 360;
  line-height: 1;
}

.contact-modal__close:hover {
  transform: none;
}

.contact-modal__close:focus-visible {
  outline: 2px solid rgba(17, 17, 17, 0.28);
  outline-offset: 3px;
}

.contact-modal__intro {
  max-width: 640px;
  margin-inline: auto;
  margin-bottom: 14px;
  text-align: center;
}

.contact-modal__intro h2 {
  font-size: clamp(2.25rem, 3vw, 2.875rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.contact-modal__intro span {
  max-width: 560px;
  margin-inline: auto;
  margin-top: 9px;
  font-size: 15.5px;
  line-height: 1.55;
}

.contact-modal__body {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.contact-modal .contact-form {
  width: min(100%, 860px);
  gap: 10px;
}

.contact-modal .contact-form__grid {
  column-gap: 16px;
  row-gap: 10px;
}

.contact-modal .contact-form label {
  position: relative;
  gap: 6px;
}

.contact-modal .contact-form label span {
  font-size: 11.5px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.contact-modal .contact-form input,
.contact-modal .contact-form select,
.contact-modal .contact-form textarea {
  min-height: 48px;
  padding-inline: 16px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: none;
  font-size: 15px;
}

.contact-modal .contact-form textarea {
  min-height: 84px;
  padding-block: 12px;
}

.contact-modal .contact-form select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 48px;
}

.contact-modal .contact-form label:has(select)::after {
  position: absolute;
  top: calc(100% - 26px);
  right: 18px;
  width: 7px;
  height: 7px;
  content: "";
  border-right: 1.5px solid rgba(17, 17, 17, 0.58);
  border-bottom: 1.5px solid rgba(17, 17, 17, 0.58);
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
}

.contact-modal .contact-form input:focus,
.contact-modal .contact-form select:focus,
.contact-modal .contact-form textarea:focus {
  border-color: rgba(17, 17, 17, 0.22);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.06);
}

.contact-modal .contact-form__actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 14px;
  text-align: left;
}

.contact-modal .contact-form__actions span {
  color: rgba(31, 31, 31, 0.58);
  font-size: 13.5px;
  line-height: 1.4;
}

.contact-modal .contact-form__submit {
  width: 230px;
  min-width: 220px;
  min-height: 52px;
  background: #111;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

.contact-modal .contact-form__submit:hover {
  background: #000;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.16);
}

.contact-modal .contact-form__privacy {
  margin-top: 4px;
}

@media (max-width: 767px), (max-height: 679px) {
  .contact-modal {
    padding: 12px;
  }

  .contact-modal__panel {
    width: min(620px, calc(100vw - 24px));
    height: calc(100svh - 24px);
    max-height: calc(100svh - 24px);
    padding: 24px 20px 22px;
    overflow: hidden;
  }

  .contact-modal__intro {
    margin-bottom: 20px;
    text-align: center;
  }

  .contact-modal__body {
    overflow-y: auto;
  }

  .contact-modal .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .contact-modal .contact-form__actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .contact-modal .contact-form__submit {
    width: min(100%, 280px);
    min-width: 0;
  }
}

.social-launcher {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 170;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  pointer-events: none;
}

.social-launcher::before,
.social-launcher::after {
  position: absolute;
  right: -13px;
  bottom: -13px;
  z-index: 0;
  width: 84px;
  height: 84px;
  content: "";
  border-radius: 50%;
  pointer-events: none;
  will-change: opacity, transform;
}

.social-launcher::before {
  background:
    radial-gradient(circle, rgba(172, 184, 214, 0.46) 0%, rgba(206, 199, 226, 0.28) 42%, rgba(236, 236, 234, 0.16) 62%, transparent 76%);
  opacity: 0.5;
  transform: scale(0.94);
  animation: socialLauncherBreath 2.8s ease-in-out infinite;
}

.social-launcher::after {
  right: -8px;
  bottom: -8px;
  width: 74px;
  height: 74px;
  border: 1px solid rgba(24, 27, 34, 0.26);
  background:
    radial-gradient(circle, rgba(164, 177, 202, 0.11) 0%, rgba(164, 177, 202, 0.05) 52%, transparent 70%);
  opacity: 0;
  transform: scale(0.92);
  animation: socialLauncherPulse 3.2s ease-out infinite;
}

.social-launcher__stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.social-launcher__toggle {
  z-index: 3;
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background:
    radial-gradient(circle at 36% 18%, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(180deg, #111318 0%, #0B0C0E 100%);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -10px 24px rgba(0, 0, 0, 0.20);
  cursor: pointer;
  pointer-events: auto;
  scale: 1;
  transition: transform 200ms ease;
}

.social-launcher__link {
  --launcher-index: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  width: 220px;
  height: 52px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  box-shadow:
    0 18px 44px rgba(4, 7, 18, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 12px, 0) scale(0.96);
  transition:
    opacity 180ms ease,
    transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: calc(var(--launcher-index) * 48ms);
}

.social-launcher.is-open .social-launcher__stack {
  pointer-events: auto;
}

.social-launcher.is-open .social-launcher__link {
  pointer-events: auto;
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.social-launcher__link:hover {
  transform: translate3d(0, -3px, 0) scale(1);
}

.social-launcher__link svg,
.social-launcher__toggle svg {
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-launcher__link--viber {
  --launcher-index: 0;
  background: linear-gradient(135deg, #2A2A2D, #4A4B50);
}

.social-launcher__link--facebook {
  --launcher-index: 1;
  background: linear-gradient(135deg, #1B1C1F, #35363A);
}

.social-launcher__toggle {
  z-index: 3;
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background:
    radial-gradient(circle at 36% 18%, rgba(255, 255, 255, 0.14), transparent 42%),
    linear-gradient(180deg, #111318 0%, #0B0C0E 100%);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -10px 24px rgba(0, 0, 0, 0.20);
  cursor: pointer;
  pointer-events: auto;
  scale: 1;
  transition: transform 200ms ease;
}

.social-launcher__toggle::before,
.social-launcher__toggle::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.social-launcher__toggle::before {
  inset: 5px;
  z-index: 0;
  content: "";
  border-radius: inherit;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.52) 0%, rgba(236, 236, 234, 0.18) 22%, rgba(41, 42, 45, 0.12) 52%, transparent 72%);
  mix-blend-mode: screen;
  opacity: 0.28;
  transform: scale(1);
}

.social-launcher__toggle::after {
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 42% 28%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 48%);
  opacity: 0.6;
}

.social-launcher__toggle:hover {
  transform: translateY(-2px);
}

.social-launcher__toggle:focus-visible,
.social-launcher__link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.82);
  outline-offset: 4px;
}

.social-launcher__icon {
  position: relative;
  z-index: 1;
  grid-area: 1 / 1;
  width: 30px;
  height: 30px;
  transition:
    opacity 180ms ease,
    transform 220ms ease;
}

.social-launcher__link svg {
  width: 20px;
  height: 20px;
}

.social-launcher__icon--close {
  width: 26px;
  height: 26px;
  opacity: 0;
  transform: rotate(-45deg) scale(0.78);
}

.social-launcher.is-open .social-launcher__icon--chat {
  opacity: 0;
  transform: rotate(45deg) scale(0.78);
}

.social-launcher.is-open .social-launcher__icon--close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.social-launcher:hover::before,
.social-launcher:focus-within::before {
  opacity: 0.62;
  transform: scale(1.03);
}

.social-launcher.is-open::before {
  opacity: 0.24;
  transform: scale(0.98);
  animation: none;
}

.social-launcher.is-open::after {
  opacity: 0;
  transform: scale(1);
  animation: none;
}

.is-page-hidden .social-launcher::before,
.is-page-hidden .social-launcher::after {
  animation-play-state: paused;
}

@keyframes socialLauncherBreath {
  0%,
  100% {
    opacity: 0.44;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.72;
    transform: scale(1.08);
  }
}

@keyframes socialLauncherPulse {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  12% {
    opacity: 0.66;
  }

  72% {
    opacity: 0;
    transform: scale(1.42);
  }

  100% {
    opacity: 0;
    transform: scale(1.42);
  }
}

@media (max-width: 760px) {
  .social-launcher {
    right: 20px;
    bottom: 20px;
  }

  .social-launcher__link {
    width: min(210px, calc(100vw - 40px));
    height: 50px;
    padding-inline: 16px;
    font-size: 12.5px;
  }

  .social-launcher__toggle {
    animation: none !important;
  }

}

@media (prefers-reduced-motion: reduce) {
  .process__artwork.is-process-parallax img {
    filter: none !important;
    transform: none !important;
    will-change: auto;
  }

  .hero__visual img {
    opacity: 1;
    transform: none;
    animation: none !important;
  }

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

  .testimonial-track {
    transform: none !important;
    animation: none !important;
  }

  .testimonial-card[aria-hidden="true"] {
    display: none;
  }

  .tech-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
    scrollbar-width: thin;
  }

  .tech-marquee__track {
    transform: none !important;
    animation: none !important;
    will-change: auto;
  }

  .tech-marquee__group[aria-hidden="true"] {
    display: none;
  }

  .client-feedback__wall {
    height: auto;
    overflow: visible;
  }

  .testimonial-column__viewport {
    overflow: visible;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .social-launcher::before,
  .social-launcher::after,
  .social-launcher__toggle::before,
  .social-launcher__toggle::after {
    animation: none !important;
  }

  .social-launcher::before {
    opacity: 0.36;
    transform: scale(1);
  }

  .social-launcher::after {
    opacity: 0;
  }

  .social-launcher__toggle {
    animation: none !important;
  }
}

/* Release 5D: trust, conversion, and permanent navigation */
.breadcrumbs {
  width: min(calc(100% - 48px), 1180px);
  margin-inline: auto;
  color: #797e88;
  font-size: 12px;
  font-weight: 620;
  line-height: 1.5;
}

.architecture-page > .breadcrumbs {
  padding-top: 128px;
}

.breadcrumbs ol {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  list-style: none;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.breadcrumbs li + li::before {
  color: #b0b3ba;
  content: "/";
}

.breadcrumbs a {
  color: #4f5560;
}

.breadcrumbs a:hover {
  color: #17191e;
}

.breadcrumbs a:focus-visible {
  outline: 2px solid #303a4b;
  outline-offset: 4px;
}

.architecture-page > .breadcrumbs + .architecture-hero {
  min-height: 620px;
  padding-top: 62px;
}

.case-study > .breadcrumbs {
  margin-bottom: 44px;
}

.case-cta__links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.case-cta__links a:first-child {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 8px;
  gap: 8px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(17, 19, 24, 0.08);
}

.about-principles span {
  display: grid;
  min-height: 118px;
  place-items: center;
  color: #313640;
  font-size: 14px;
  font-weight: 650;
  background:
    radial-gradient(circle at 76% 18%, rgba(166, 183, 200, 0.16), transparent 10rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(237, 240, 244, 0.78));
  border: 1px solid rgba(17, 19, 24, 0.06);
  border-radius: 6px;
}

.about-page .architecture-page {
  overflow: visible;
}

.about-page .architecture-hero--about {
  min-height: 100svh;
}

@media (min-width: 1025px) {
  .about-page .architecture-hero--about {
    min-height: 100vh;
    padding-bottom: 104px;
  }
}

.about-hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.about-hero__actions .architecture-button,
.about-hero__secondary {
  min-width: 154px;
  min-height: 48px;
  margin: 0;
  padding: 0 23px;
  font-size: 14px;
  font-weight: 650;
  border-radius: 999px;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.about-hero__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #252932;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(17, 19, 24, 0.18);
}

@media (hover: hover) and (pointer: fine) {
  .about-hero__actions .architecture-button:hover {
    background: #24272e;
    border-color: #24272e;
    box-shadow: 0 17px 38px rgba(17, 19, 24, 0.18);
    transform: translateY(-2px);
  }

  .about-hero__secondary:hover {
    color: #111318;
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(17, 19, 24, 0.28);
    box-shadow: 0 12px 30px rgba(17, 19, 24, 0.08);
    transform: translateY(-2px);
  }
}

.about-hero__secondary:focus-visible {
  outline: 2px solid #303a4b;
  outline-offset: 5px;
}

.about-media {
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto clamp(96px, 10vw, 152px);
}

.about-media__viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e8e8e6;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(17, 19, 24, 0.08);
}

.about-media__image {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center center;
  filter: none;
}

.about-media.is-expansion-ready {
  position: relative;
  width: 100%;
}

.about-media.is-expansion-ready .about-media__viewport {
  position: absolute;
  top: 0;
  left: 50%;
  aspect-ratio: auto;
  transform: translateX(-50%);
  will-change: width, height, border-radius;
}

.about-media.is-expansion-ready .about-media__image {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  transform:
    translate(-50%, -50%)
    scale(var(--about-media-image-scale, 1));
  transform-origin: 50% 50%;
  will-change: transform;
}

.about-work__links {
  display: grid;
  border-top: 1px solid rgba(17, 19, 24, 0.12);
}

.about-work__links a {
  display: grid;
  grid-template-columns: minmax(190px, 0.45fr) minmax(0, 1fr);
  min-height: 92px;
  padding: 22px 4px;
  align-items: center;
  gap: 28px;
  border-bottom: 1px solid rgba(17, 19, 24, 0.12);
}

.about-work__links span {
  color: #858a94;
  font-size: 11px;
  font-weight: 680;
  text-transform: uppercase;
}

.about-work__links strong {
  color: #22252c;
  font-size: 23px;
  font-weight: 660;
}

.about-work__links a:hover strong {
  color: #586a83;
}

.about-work__links a:focus-visible {
  outline: 2px solid #303a4b;
  outline-offset: 4px;
}

.architecture-hero--contact {
  min-height: 590px;
  padding-bottom: 64px;
}

.contact-page__workspace {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  width: min(calc(100% - 48px), 1180px);
  margin: 0 auto;
  padding: 26px 0 116px;
  align-items: start;
  gap: 72px;
}

.contact-page__guidance h2 {
  margin: 0;
  color: #111318;
  font-size: 40px;
  font-weight: 680;
  line-height: 1.12;
}

.contact-page__guidance > p:not(.architecture-eyebrow) {
  margin: 20px 0 0;
  color: #686d77;
  font-size: 16px;
  line-height: 1.7;
}

.contact-page__guidance ul {
  display: grid;
  margin: 30px 0 0;
  padding: 0;
  gap: 0;
  list-style: none;
  border-top: 1px solid rgba(17, 19, 24, 0.12);
}

.contact-page__guidance li {
  padding: 16px 0;
  color: #3f444e;
  font-size: 14px;
  line-height: 1.55;
  border-bottom: 1px solid rgba(17, 19, 24, 0.12);
}

.contact-page__form-panel {
  width: 100%;
  opacity: 1;
  transform: none;
}

.contact-page__context {
  margin-bottom: 24px;
}

.site-footer__directory {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr 0.7fr 0.7fr;
  padding-top: 36px;
  gap: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__directory > div {
  display: grid;
  align-content: start;
  justify-items: start;
  gap: 12px;
}

.site-footer__directory h3 {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 720;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-footer__directory a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.site-footer__directory a:hover {
  color: rgba(255, 255, 255, 0.96);
}

.site-footer__directory a:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

.site-footer__inner--compact {
  gap: 48px;
  padding-top: 60px;
}

@media (max-width: 900px) {
  .contact-page__workspace {
    grid-template-columns: 1fr;
    width: min(calc(100% - 40px), 720px);
    gap: 48px;
  }

  .site-footer__directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 38px;
  }

  .case-cta__links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .breadcrumbs {
    width: min(calc(100% - 36px), 620px);
    font-size: 11px;
  }

  .architecture-page > .breadcrumbs {
    padding-top: 112px;
  }

  .architecture-page > .breadcrumbs + .architecture-hero {
    padding-top: 42px;
  }

  .case-study > .breadcrumbs {
    margin-bottom: 34px;
  }

  .case-cta__links {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-principles {
    grid-template-columns: 1fr;
  }

  .about-principles span {
    min-height: 70px;
  }

  .about-work__links a {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-work__links strong {
    font-size: 20px;
  }

  .architecture-hero--contact {
    min-height: auto;
  }

  .contact-page__workspace {
    width: min(calc(100% - 36px), 620px);
    padding: 18px 0 84px;
  }

  .contact-page__guidance h2 {
    font-size: 32px;
  }

  .site-footer__directory {
    grid-template-columns: 1fr;
    padding-top: 30px;
    gap: 32px;
  }

  .site-footer__inner,
  .site-footer__inner--compact {
    gap: 42px;
  }

  .site-footer__bottom {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    display: grid;
  }

  .site-footer__copyright {
    justify-self: start;
  }
}

/* Release 5C: Services and Work architecture */
.architecture-body {
  color: #17191e;
  background:
    radial-gradient(circle at 12% 10%, rgba(198, 194, 208, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 18%, rgba(166, 183, 200, 0.18), transparent 32rem),
    linear-gradient(180deg, #fafaf9 0%, #f5f6f7 52%, #fafaf9 100%);
}

.architecture-body.work-index {
  background: #fff;
}

.architecture-body .nav__links a[aria-current="page"] {
  color: var(--nav-active-ink);
  font-weight: 650;
}

.architecture-page {
  overflow: hidden;
}

.architecture-hero,
.architecture-section,
.architecture-split,
.process-summary,
.architecture-feature,
.architecture-faq,
.work-index__projects {
  width: min(calc(100% - 48px), 1180px);
  margin-inline: auto;
}

.architecture-hero {
  display: grid;
  min-height: 720px;
  padding: 188px 0 104px;
  align-content: center;
  justify-items: center;
  gap: 68px;
  text-align: center;
}

.architecture-hero__copy {
  display: grid;
  max-width: 920px;
  justify-items: center;
}

.architecture-eyebrow {
  margin: 0 0 22px;
  color: #747985;
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.4;
}

.architecture-hero h1,
.architecture-section h2,
.architecture-split h2,
.process-summary h2,
.architecture-feature h2,
.architecture-faq h2,
.architecture-contrast h2,
.architecture-cta h2,
.work-index-card h2 {
  margin: 0;
  color: #111318;
  letter-spacing: 0;
}

.architecture-hero h1 {
  max-width: 900px;
  font-size: 64px;
  font-weight: 710;
  line-height: 1.03;
}

.architecture-hero__copy > p:not(.architecture-eyebrow) {
  max-width: 760px;
  margin: 28px 0 0;
  color: #5d626d;
  font-size: 19px;
  line-height: 1.68;
}

.architecture-hero__copy > span {
  margin-top: 16px;
  color: #868b94;
  font-size: 13px;
  line-height: 1.6;
}

.architecture-hero__visual {
  width: min(100%, 880px);
}

.service-map {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 8px;
  gap: 8px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(17, 19, 24, 0.08);
}

.service-map span {
  display: grid;
  min-height: 118px;
  place-items: center;
  color: #313640;
  font-size: 14px;
  font-weight: 650;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(237, 240, 244, 0.78));
  border: 1px solid rgba(17, 19, 24, 0.06);
  border-radius: 6px;
}

.architecture-section {
  padding: 112px 0;
}

.architecture-section__intro {
  max-width: 760px;
  margin-bottom: 56px;
}

.architecture-section__intro h2,
.architecture-split h2,
.process-summary h2,
.architecture-feature h2,
.architecture-faq h2,
.architecture-contrast h2,
.architecture-cta h2 {
  font-size: 44px;
  font-weight: 680;
  line-height: 1.12;
}

.architecture-section__intro > p:last-child {
  max-width: 650px;
  margin: 20px 0 0;
  color: #686d77;
  font-size: 17px;
  line-height: 1.7;
}

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

.service-path {
  display: flex;
  min-height: 390px;
  padding: 34px;
  flex-direction: column;
  color: #181b21;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(17, 19, 24, 0.06);
}

.service-path--web {
  background:
    radial-gradient(circle at 88% 10%, rgba(166, 183, 200, 0.18), transparent 15rem),
    rgba(255, 255, 255, 0.78);
}

.service-path--commerce {
  background:
    radial-gradient(circle at 88% 10%, rgba(198, 194, 208, 0.2), transparent 15rem),
    rgba(255, 255, 255, 0.78);
}

.service-path--applications {
  color: rgba(255, 255, 255, 0.94);
  background:
    radial-gradient(circle at 86% 8%, rgba(76, 99, 128, 0.28), transparent 16rem),
    linear-gradient(145deg, #171a20, #0d1016);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 58px rgba(17, 19, 24, 0.17);
}

.service-path > p,
.related-work article > p {
  margin: 0 0 24px;
  color: #7c818b;
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0;
  line-height: 1.45;
}

.service-path--applications > p {
  color: rgba(255, 255, 255, 0.56);
}

.service-path h3 {
  margin: 0;
  font-size: 27px;
  font-weight: 680;
  line-height: 1.18;
}

.service-path > span {
  margin-top: 20px;
  color: #666c76;
  font-size: 15px;
  line-height: 1.7;
}

.service-path--applications > span {
  color: rgba(255, 255, 255, 0.64);
}

.service-path > a,
.related-work article > a:last-child {
  width: fit-content;
  margin-top: auto;
  padding-top: 28px;
  color: currentColor;
  font-size: 13px;
  font-weight: 680;
  border-bottom: 1px solid currentColor;
}

.architecture-contrast {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  width: min(calc(100% - 32px), 1280px);
  margin: 24px auto;
  padding: 84px max(32px, calc((100% - 1120px) / 2));
  align-items: end;
  gap: 88px;
  color: rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(circle at 80% 18%, rgba(84, 104, 132, 0.26), transparent 26rem),
    linear-gradient(145deg, #101319, #07090d);
  border-radius: 8px;
}

.architecture-contrast h2 {
  color: #f4f5f7;
}

.architecture-contrast .architecture-eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.architecture-contrast > div:last-child > p {
  margin: 0 0 26px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.72;
}

.architecture-link {
  display: inline-block;
  padding-bottom: 5px;
  color: inherit;
  font-size: 14px;
  font-weight: 680;
  border-bottom: 1px solid currentColor;
}

.architecture-cta {
  display: grid;
  width: min(calc(100% - 48px), 980px);
  margin: 0 auto;
  padding: 132px 0;
  justify-items: center;
  text-align: center;
}

.architecture-cta h2 {
  max-width: 780px;
}

.architecture-cta > div {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 28px;
}

.architecture-button {
  display: inline-flex;
  min-height: 50px;
  margin-top: 38px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 650;
  background: #111318;
  border: 1px solid #111318;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(17, 19, 24, 0.14);
}

.architecture-cta > div .architecture-button {
  margin-top: 0;
}

.architecture-cta > div .architecture-link {
  color: #313640;
}

.web-composition {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 7.4;
  place-items: center;
}

.web-composition::before {
  position: absolute;
  inset: 15% 4%;
  content: "";
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 19, 24, 0.09);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(17, 19, 24, 0.11);
}

.web-composition div {
  position: absolute;
  width: 38%;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.96), rgba(225, 230, 236, 0.9));
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(17, 19, 24, 0.08);
}

.web-composition div:first-child {
  left: 8%;
}

.web-composition div:nth-child(2) {
  z-index: 1;
}

.web-composition div:last-child {
  right: 8%;
}

.architecture-split,
.process-summary,
.architecture-faq {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
  padding: 112px 0;
  gap: 88px;
}

.principle-list {
  border-top: 1px solid rgba(17, 19, 24, 0.12);
}

.principle-list article {
  display: grid;
  grid-template-columns: 42px 180px 1fr;
  padding: 30px 0;
  align-items: start;
  gap: 20px;
  border-bottom: 1px solid rgba(17, 19, 24, 0.12);
}

.principle-list span,
.process-summary li span,
.application-examples article > span {
  color: #8a8f98;
  font-size: 11px;
  font-weight: 700;
}

.principle-list h3,
.editorial-grid h3,
.application-examples h3 {
  margin: 0;
  color: #1b1e24;
  font-size: 18px;
  font-weight: 670;
  line-height: 1.4;
}

.principle-list p,
.editorial-grid p,
.application-examples p {
  margin: 0;
  color: #696e78;
  font-size: 15px;
  line-height: 1.68;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 19, 24, 0.12);
  border-left: 1px solid rgba(17, 19, 24, 0.12);
}

.editorial-grid article {
  min-height: 220px;
  padding: 32px;
  border-right: 1px solid rgba(17, 19, 24, 0.12);
  border-bottom: 1px solid rgba(17, 19, 24, 0.12);
}

.editorial-grid p {
  margin-top: 16px;
}

.process-summary {
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
  align-items: start;
}

.process-summary ol {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(17, 19, 24, 0.12);
}

.process-summary li {
  display: flex;
  min-height: 62px;
  padding: 0 8px;
  align-items: center;
  gap: 24px;
  color: #313640;
  font-size: 15px;
  font-weight: 630;
  border-bottom: 1px solid rgba(17, 19, 24, 0.12);
}

.process-summary > .architecture-link {
  grid-column: 2;
  width: fit-content;
  color: #313640;
}

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

.related-work article {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.related-work__media {
  display: grid;
  width: 100%;
  aspect-ratio: 16 / 9.2;
  margin-bottom: 26px;
  overflow: hidden;
  place-items: center;
  background: #e8e7e4;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(17, 19, 24, 0.08);
}

.related-work__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.related-work__media--dental {
  color: #183453;
  background:
    radial-gradient(circle at 70% 22%, rgba(140, 182, 207, 0.24), transparent 14rem),
    linear-gradient(145deg, #f9fbfc, #dfe9ee);
}

.related-work__media--dental span {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  font-size: 25px;
  font-weight: 720;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(24, 52, 83, 0.1);
  border-radius: 50%;
  box-shadow: 0 16px 36px rgba(24, 52, 83, 0.1);
}

.related-work article > p {
  margin-bottom: 10px;
}

.related-work h3 {
  margin: 0;
  color: #17191e;
  font-size: 27px;
  font-weight: 680;
}

.related-work article > span {
  max-width: 520px;
  margin-top: 12px;
  color: #686d77;
  font-size: 15px;
  line-height: 1.65;
}

.related-work article > a:last-child {
  margin-top: 24px;
}

.architecture-faq > div:last-child {
  border-top: 1px solid rgba(17, 19, 24, 0.12);
}

.architecture-faq details {
  border-bottom: 1px solid rgba(17, 19, 24, 0.12);
}

.architecture-faq summary {
  position: relative;
  padding: 26px 42px 26px 0;
  color: #23262d;
  font-size: 17px;
  font-weight: 650;
  line-height: 1.45;
  cursor: pointer;
  list-style: none;
}

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

.architecture-faq summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  width: 9px;
  height: 9px;
  content: "";
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-70%) rotate(45deg);
}

.architecture-faq details[open] summary::after {
  transform: translateY(-25%) rotate(225deg);
}

.architecture-faq details p {
  max-width: 650px;
  margin: -4px 0 26px;
  color: #696e78;
  font-size: 15px;
  line-height: 1.72;
}

.architecture-faq summary:focus-visible,
.architecture-link:focus-visible,
.architecture-button:focus-visible,
.service-path a:focus-visible,
.related-work a:focus-visible,
.work-index-card a:not(.work-world__link):focus-visible {
  outline: 2px solid #303a4b;
  outline-offset: 5px;
}

.commerce-flow {
  display: flex;
  min-height: 148px;
  padding: 28px 34px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #313640;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(17, 19, 24, 0.08);
}

.commerce-flow span {
  font-size: 13px;
  font-weight: 670;
}

.commerce-flow i {
  width: 34px;
  height: 1px;
  background: rgba(17, 19, 24, 0.2);
}

.architecture-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  padding: 112px 0;
  align-items: center;
  gap: 72px;
}

.architecture-feature__media {
  aspect-ratio: 16 / 9.2;
  overflow: hidden;
  background: #15161a;
  border: 1px solid rgba(17, 19, 24, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 64px rgba(17, 19, 24, 0.12);
}

.architecture-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.architecture-feature > div:last-child > p:not(.architecture-eyebrow) {
  margin: 20px 0 26px;
  color: #686d77;
  font-size: 16px;
  line-height: 1.7;
}

.architecture-feature .architecture-link {
  color: #303640;
}

.architecture-prose p {
  margin: 0;
  color: #5f6570;
  font-size: 18px;
  line-height: 1.75;
}

.architecture-prose p + p {
  margin-top: 24px;
}

.workflow-visual {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 10px;
  gap: 10px;
  background: #101318;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 28px 72px rgba(17, 19, 24, 0.2);
}

.workflow-visual span {
  display: grid;
  min-height: 110px;
  place-items: center;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 650;
  background: linear-gradient(155deg, #222831, #15191f);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
}

.application-examples {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 19, 24, 0.12);
  border-left: 1px solid rgba(17, 19, 24, 0.12);
}

.application-examples article {
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid rgba(17, 19, 24, 0.12);
  border-bottom: 1px solid rgba(17, 19, 24, 0.12);
}

.application-examples h3 {
  margin-top: 22px;
}

.application-examples p {
  margin-top: 12px;
}

.work-index__pile {
  min-height: 0;
  padding: 0;
  background: #fff;
}

.work-index__pile .portfolio-stage,
.work-index__pile .portfolio-track {
  min-height: clamp(280px, 30vw, 390px);
  height: clamp(280px, 30vw, 390px);
}

.work-index__pile .portfolio-card:not(:nth-child(4)) {
  --card-opacity: 0.84;
  filter: brightness(0.78) saturate(0.82);
}

.work-index__pile .portfolio-card__caption strong {
  color: rgba(17, 19, 24, 0.9);
}

.work-index__pile .portfolio-card__caption span {
  color: rgba(17, 19, 24, 0.56);
}

.work-index__pile .portfolio-card__frame {
  border-color: rgba(17, 19, 24, 0.11);
  box-shadow:
    0 18px 46px rgba(17, 19, 24, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.work-index__pile .portfolio-card:nth-child(4) .portfolio-card__frame {
  box-shadow:
    0 24px 62px rgba(17, 19, 24, 0.16),
    0 8px 24px rgba(17, 19, 24, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.work-index__heading {
  display: grid;
  width: min(calc(100% - 48px), 1100px);
  margin-inline: auto;
  padding: clamp(156px, 13vw, 188px) 0 0;
  justify-items: center;
  text-align: center;
}

.work-index__heading h1 {
  max-width: 100%;
  margin: 0;
  color: #111318;
  font-size: clamp(2.625rem, 3.5vw, 3.5rem);
  font-weight: 710;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
  white-space: nowrap;
}

.work-index__summary {
  width: min(calc(100% - 48px), 1100px);
  margin-inline: auto;
  padding: 0 0 clamp(56px, 5vw, 72px);
  text-align: center;
}

.work-index__summary p {
  margin: 0;
  color: #5d626d;
  font-size: 16px;
  line-height: 1.55;
}

@media (min-width: 1100px) {
  .work-index__summary p {
    white-space: nowrap;
  }
}

.work-index__projects {
  display: grid;
  width: min(calc(100% - 48px), 1080px);
  padding: 0 0 96px;
  gap: clamp(32px, 4vw, 56px);
}

.work-index-card {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.08fr);
  min-height: 460px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.92);
  background:
    radial-gradient(circle at 84% 12%, rgba(96, 119, 148, 0.24), transparent 28rem),
    linear-gradient(145deg, #171a20, #090b10);
  border: 1px solid var(--coded-line-soft);
  border-radius: 32px;
  box-shadow: var(--coded-shadow-strong);
}

.work-index-card--dental {
  background:
    radial-gradient(circle at 84% 14%, rgba(108, 144, 164, 0.25), transparent 30rem),
    linear-gradient(145deg, #17202a, #0a1118);
}

.work-index-card--commerce {
  background:
    radial-gradient(circle at 82% 12%, rgba(116, 106, 130, 0.23), transparent 28rem),
    linear-gradient(145deg, #1a1820, #0b0b0f);
}

.work-index-card__copy {
  display: flex;
  padding: clamp(36px, 3.5vw, 48px);
  flex-direction: column;
}

.work-index-card h2 {
  color: #f5f5f6;
  font-size: clamp(1.375rem, 1.7vw, 1.875rem);
  line-height: 1;
}

.work-index-card__copy > span {
  max-width: 390px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 15px;
  line-height: 1.7;
}

.work-index-card__copy > div {
  display: flex;
  margin-top: 24px;
  align-items: flex-start;
  flex-direction: column;
  gap: 0;
}

.work-index-card__service {
  width: fit-content;
  margin-bottom: 26px;
  padding-bottom: 3px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 720;
  line-height: 1.4;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  transition:
    color 180ms ease,
    border-color 180ms ease;
}

.work-index-card__service:hover {
  color: rgba(255, 255, 255, 0.82);
  border-color: rgba(255, 255, 255, 0.62);
}

.work-index-card__copy > div a {
  margin-top: 0;
  padding-top: 0;
}

.work-index-card__media {
  display: grid;
  min-width: 0;
  margin: 24px 24px 24px 0;
  overflow: hidden;
  place-items: center;
  background: #e9e9e7;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.26);
}

.work-index-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-index-card__media--dental {
  align-content: center;
  gap: 14px;
  color: #173552;
  background:
    radial-gradient(circle at 70% 20%, rgba(129, 181, 207, 0.24), transparent 17rem),
    linear-gradient(145deg, #fbfcfc, #dfeaec);
}

.work-index-card__media--dental > span {
  display: grid;
  width: 96px;
  height: 96px;
  place-items: center;
  font-size: 28px;
  font-weight: 730;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(23, 53, 82, 0.1);
  border-radius: 50%;
  box-shadow: 0 18px 44px rgba(23, 53, 82, 0.12);
}

.work-index-card__media--dental small {
  color: rgba(23, 53, 82, 0.62);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .architecture-hero {
    min-height: 660px;
    padding-top: 170px;
  }

  .architecture-hero h1 {
    font-size: 52px;
  }

  .about-media__viewport {
    aspect-ratio: 16 / 10;
  }

  .architecture-section__intro h2,
  .architecture-split h2,
  .process-summary h2,
  .architecture-feature h2,
  .architecture-faq h2,
  .architecture-contrast h2,
  .architecture-cta h2 {
    font-size: 38px;
  }

  .service-path {
    min-height: 410px;
    padding: 28px;
  }

  .architecture-split,
  .process-summary,
  .architecture-faq {
    gap: 54px;
  }

  .principle-list article {
    grid-template-columns: 36px 150px 1fr;
  }

  .architecture-feature {
    gap: 48px;
  }

  .work-index-card {
    min-height: 460px;
  }

  .work-index-card__copy {
    padding: 40px;
  }

  .work-index-card h2 {
    font-size: 30px;
  }
}

@media (max-width: 860px) {
  .architecture-hero,
  .architecture-section,
  .architecture-split,
  .process-summary,
  .architecture-feature,
  .architecture-faq,
  .work-index__projects {
    width: min(calc(100% - 40px), 720px);
  }

  .architecture-hero {
    min-height: auto;
    padding: 158px 0 84px;
    gap: 52px;
  }

  .work-index__pile {
    padding: 14px 0 20px;
  }

  .service-paths,
  .architecture-split,
  .process-summary,
  .architecture-feature,
  .architecture-faq,
  .architecture-contrast,
  .work-index-card {
    grid-template-columns: 1fr;
  }

  .service-paths {
    gap: 14px;
  }

  .service-path {
    min-height: 320px;
  }

  .architecture-contrast {
    width: min(calc(100% - 24px), 744px);
    padding: 68px 40px;
    gap: 36px;
  }

  .architecture-split,
  .process-summary,
  .architecture-faq {
    gap: 42px;
  }

  .process-summary > .architecture-link {
    grid-column: 1;
  }

  .architecture-feature__media {
    order: 2;
  }

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

  .work-index-card {
    min-height: 0;
  }

  .work-index-card__copy {
    min-height: 340px;
  }

  .work-index-card__media {
    aspect-ratio: 16 / 9.2;
    margin: 0 24px 24px;
  }
}

@media (max-width: 680px) {
  .architecture-hero,
  .architecture-section,
  .architecture-split,
  .process-summary,
  .architecture-feature,
  .architecture-faq,
  .work-index__projects {
    width: min(calc(100% - 36px), 620px);
  }

  .architecture-hero {
    padding: 138px 0 70px;
    gap: 42px;
  }

  .architecture-hero h1 {
    font-size: 40px;
    line-height: 1.06;
  }

  .architecture-hero__copy > p:not(.architecture-eyebrow) {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.62;
  }

  .architecture-hero__copy > span {
    font-size: 12px;
  }

  .about-hero__actions {
    width: 100%;
    gap: 10px;
  }

  .about-hero__actions .architecture-button,
  .about-hero__secondary {
    min-width: min(100%, 188px);
  }

  .about-media {
    width: min(calc(100% - 36px), 620px);
    margin-bottom: 88px;
  }

  .about-media__viewport {
    aspect-ratio: 4 / 5;
  }

  .architecture-section,
  .architecture-split,
  .process-summary,
  .architecture-feature,
  .architecture-faq {
    padding: 76px 0;
  }

  .architecture-section__intro {
    margin-bottom: 38px;
  }

  .architecture-section__intro h2,
  .architecture-split h2,
  .process-summary h2,
  .architecture-feature h2,
  .architecture-faq h2,
  .architecture-contrast h2,
  .architecture-cta h2 {
    font-size: 32px;
  }

  .architecture-eyebrow {
    margin-bottom: 16px;
    font-size: 10px;
  }

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

  .service-map span {
    min-height: 70px;
  }

  .service-path {
    min-height: 300px;
    padding: 26px;
  }

  .architecture-contrast {
    width: calc(100% - 16px);
    margin: 8px auto;
    padding: 58px 26px;
  }

  .architecture-cta {
    width: min(calc(100% - 36px), 620px);
    padding: 92px 0;
  }

  .architecture-cta > div {
    flex-direction: column;
    gap: 22px;
  }

  .commerce-flow {
    display: grid;
    grid-template-columns: 1fr;
    padding: 16px;
    gap: 6px;
  }

  .commerce-flow span {
    display: grid;
    min-height: 42px;
    place-items: center;
  }

  .commerce-flow i {
    width: 1px;
    height: 12px;
    margin: 0 auto;
  }

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

  .workflow-visual span {
    min-height: 82px;
  }

  .principle-list article {
    grid-template-columns: 34px 1fr;
    gap: 14px;
  }

  .principle-list article p {
    grid-column: 2;
  }

  .editorial-grid,
  .application-examples,
  .related-work {
    grid-template-columns: 1fr;
  }

  .editorial-grid article,
  .application-examples article {
    min-height: auto;
    padding: 26px;
  }

  .related-work {
    gap: 54px;
  }

  .architecture-faq summary {
    font-size: 16px;
  }

  .work-index__pile {
    min-height: 0;
    padding: 0;
  }

  .work-index__pile .portfolio-card {
    width: clamp(188px, 54vw, 246px);
  }

  .work-index__pile .portfolio-card:nth-child(1) {
    --card-x: -22vw;
  }

  .work-index__pile .portfolio-card:nth-child(2) {
    --card-x: -20vw;
  }

  .work-index__pile .portfolio-card:nth-child(3) {
    --card-x: -11vw;
  }

  .work-index__pile .portfolio-card:nth-child(5) {
    --card-x: 11vw;
  }

  .work-index__pile .portfolio-card:nth-child(6) {
    --card-x: 20vw;
  }

  .work-index__pile .portfolio-card:nth-child(7) {
    --card-x: 22vw;
  }

  .work-index__heading,
  .work-index__summary {
    width: min(calc(100% - 36px), 620px);
  }

  .work-index__heading {
    padding-top: 118px;
  }

  .work-index__heading h1 {
    font-size: clamp(2rem, 9vw, 2.5rem);
    line-height: 1.08;
    white-space: normal;
  }

  .work-index__summary {
    padding-bottom: 48px;
  }

  .work-index__summary p {
    font-size: 16px;
    line-height: 1.62;
  }

  .work-index__projects {
    padding: 0 0 64px;
  }

  .work-index-card__copy {
    min-height: 320px;
    padding: 30px;
  }

  .work-index-card {
    border-radius: 22px;
  }

  .work-index-card h2 {
    font-size: 28px;
  }

  .work-index-card__media {
    margin: 0 14px 14px;
    border-radius: 16px;
  }
}

@media (max-width: 480px) {
  .work-index__pile .portfolio-card {
    width: 188px;
  }
}

@media (max-width: 390px) {
  .architecture-hero h1 {
    font-size: 34px;
  }

  .architecture-section__intro h2,
  .architecture-split h2,
  .process-summary h2,
  .architecture-feature h2,
  .architecture-faq h2,
  .architecture-contrast h2,
  .architecture-cta h2 {
    font-size: 29px;
  }

  .service-path h3 {
    font-size: 24px;
  }

}

.legal-body {
  min-height: 100vh;
  color: #17191f;
  background:
    radial-gradient(circle at 12% 10%, rgba(134, 109, 255, 0.1), transparent 30rem),
    radial-gradient(circle at 88% 18%, rgba(84, 156, 255, 0.1), transparent 32rem),
    #f7f8fb;
}

.legal-page {
  width: min(100% - 40px, 880px);
  margin: 0 auto;
  padding: 176px 0 104px;
}

.legal-page__header {
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(17, 24, 39, 0.12);
}

.legal-page__header > p:first-child {
  margin: 0 0 18px;
  color: rgba(17, 24, 39, 0.5);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.14em;
}

.legal-page__updated {
  margin: -18px 0 30px;
  color: rgba(17, 24, 39, 0.56);
  font-size: 14px;
  line-height: 1.5;
}

.legal-page h1 {
  margin: 0 0 36px;
  color: #111318;
  font-size: 64px;
  line-height: 1;
  letter-spacing: 0;
}

.legal-page__intro,
.legal-content {
  max-width: 760px;
}

.legal-page p,
.legal-page li,
.legal-page address {
  color: rgba(17, 24, 39, 0.72);
  font-size: 17px;
  line-height: 1.78;
}

.legal-page p {
  margin: 0 0 18px;
}

.legal-page a {
  color: #151827;
  font-weight: 650;
  text-decoration: underline;
  text-decoration-color: rgba(17, 24, 39, 0.28);
  text-underline-offset: 4px;
}

.legal-content section {
  padding-top: 54px;
}

.legal-content h2 {
  margin: 0 0 22px;
  color: #111318;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0;
}

.legal-content h3 {
  margin: 34px 0 14px;
  color: #20232b;
  font-size: 20px;
  line-height: 1.35;
  letter-spacing: 0;
}

.legal-content ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 24px;
  padding-left: 24px;
}

.legal-content address {
  font-style: normal;
}

.legal-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #090b10;
}

.legal-footer__inner {
  display: flex;
  width: min(100% - 40px, 1180px);
  min-height: 132px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.legal-footer .site-footer__brand {
  color: #fff;
}

.legal-footer__links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
}

.legal-footer__links a {
  color: inherit;
}

@media (max-width: 680px) {
  .legal-page {
    width: min(100% - 36px, 880px);
    padding: 132px 0 72px;
  }

  .legal-page__header {
    padding-bottom: 36px;
  }

  .legal-page h1 {
    margin-bottom: 28px;
    font-size: 42px;
  }

  .legal-page p,
  .legal-page li,
  .legal-page address {
    font-size: 15.5px;
    line-height: 1.72;
  }

  .legal-content section {
    padding-top: 42px;
  }

  .legal-content h2 {
    font-size: 25px;
  }

  .legal-footer__inner,
  .legal-footer__links {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-footer__inner {
    padding: 38px 0;
  }

  .legal-footer__links {
    gap: 12px;
  }
}





.work-device--placeholder {
  display: grid;
  place-items: center;
  gap: 8px;
  aspect-ratio: 16 / 8.7;
  padding: clamp(24px, 4vw, 42px);
  color: rgba(17, 18, 20, 0.76);
  border-color: rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(ellipse at 76% 22%, rgba(166, 183, 200, 0.14), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(236, 236, 234, 0.76));
  box-shadow: 0 18px 48px rgba(17, 18, 20, 0.10), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: none;
  animation: none;
}

.work-device--dental-preview {
  background:
    radial-gradient(ellipse at 72% 20%, rgba(166, 183, 200, 0.14), transparent 18rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(242, 242, 240, 0.82));
}

.work-placeholder__eyebrow,
.work-placeholder__title,
.case-visual-card--static span {
  display: block;
  text-align: center;
  text-transform: uppercase;
}

.work-placeholder__eyebrow,
.case-visual-card--static span {
  color: rgba(17, 18, 20, 0.42);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.16em;
}

.work-placeholder__title {
  color: rgba(17, 18, 20, 0.82);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 780;
  letter-spacing: -0.04em;
  text-transform: none;
}

.case-visual-card--static {
  display: grid;
  place-items: center;
}

.client-feedback:not(.is-in-view) .testimonial-track,
.is-faq-in-view .testimonial-track,
.is-page-hidden .testimonial-track {
  animation-play-state: paused;
}

@media (max-width: 760px) {
  .investment__ambient {
    animation: none;
    filter: none;
  }

  .investment__ambient {
    opacity: 0.16;
  }

  .testimonial-track {
    animation: none;
    transform: none;
    will-change: auto;
  }

  .device,
  .work-device {
    transform: none;
    animation: none;
  }

  .nav,
  .nav--dark {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-hero__actions .architecture-button,
  .about-hero__secondary {
    transition: none;
  }

  .about-media__image {
    filter: none !important;
    will-change: auto !important;
  }

  .about-media__viewport {
    will-change: auto !important;
  }
}

/* Shared shell for contained dark promotional panels. */
.promotional-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  width: 100%;
  max-width: 1180px;
  align-items: center;
  gap: 24px;
  overflow: hidden;
  padding: clamp(24px, 3vw, 38px);
  color: #fff;
  border: 0;
  border-radius: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at 84% 20%, rgba(17, 18, 20, 0.065), transparent 22rem),
    linear-gradient(135deg, #05070c, #111214);
  box-shadow: 0 34px 100px rgba(5, 7, 12, 0.28);
}

.promotional-panel a {
  display: inline-flex;
  min-height: 48px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  color: rgba(5, 7, 12, 0.94);
  background: rgba(255, 255, 255, 0.94);
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 760;
  text-decoration: none;
}

.architecture-body .architecture-promotional-panel {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.75fr);
  width: min(calc(100% - 40px), 1180px);
  margin: clamp(72px, 8vw, 112px) auto;
}

.architecture-promotional-panel .architecture-eyebrow {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 9.5px;
  font-weight: 780;
  letter-spacing: 0.2em;
}

.architecture-body .architecture-promotional-panel h2 {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.02;
}

.architecture-body .architecture-promotional-panel > div:last-child > p {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.65;
}

.work-index .architecture-cta {
  padding-top: clamp(72px, 8vw, 112px);
}

.work-index .architecture-cta > div {
  gap: 16px;
}

.work-index .architecture-button--secondary {
  color: #313640;
  background: transparent;
  border-color: rgba(17, 19, 24, 0.36);
  box-shadow: none;
}

@media (max-width: 860px) {
  .promotional-panel {
    grid-template-columns: 1fr;
  }

  .promotional-panel a {
    justify-self: start;
  }

  .architecture-body .architecture-promotional-panel {
    grid-template-columns: 1fr;
    width: min(calc(100% - 32px), 1180px);
  }
}
