:root {
  --fig-gold: #d4af49;
  --fig-gold-soft: #d7b46a;
  --fig-off: #fffcf3;
  --fig-black: #0a0a0a;
  --fig-text: #4a4a4a;
}

body.fig-home {
  background: #ffffff;
  color: #111111;
}

body.fig-home::before {
  display: none;
}

.fig-home-main {
  overflow-x: hidden;
  overflow-y: visible;
}

.fig-home-wrap {
  margin: 0 auto;
  max-width: 1440px;
  width: calc(100% - 48px);
}

.fig-home-pill {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  gap: 10px;
  letter-spacing: 0.02em;
  min-height: 58px;
  padding: 19px 33px;
  transition: transform 260ms ease, opacity 260ms ease;
}

.fig-home-pill:hover {
  transform: translateY(-2px);
}

.fig-home-pill svg {
  height: 16px;
  width: 16px;
}

.fig-home-pill--gold {
  background: var(--fig-gold-soft);
  border: 1px solid var(--fig-off);
  color: #000000;
}

.fig-home-pill--gold.fig-home-pill--light {
  color: #ffffff;
}

.fig-home-pill--outline {
  border: 1px solid var(--fig-gold);
  color: #fffcf3;
  font-size: 14px;
  letter-spacing: 0.07em;
  min-height: 48px;
  padding: 13px 32px;
  text-transform: none;
}

/* CTA motion pattern */
.fig-home-pill,
.fig-home-topbar__cta,
.fig-home-mobile-menu__cta,
.fig-home-cta__button {
  transform: translateY(0) scale(1);
  will-change: transform, box-shadow, filter;
  transition:
    transform 260ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 260ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 260ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.fig-home-pill:hover,
.fig-home-topbar__cta:hover,
.fig-home-mobile-menu__cta:hover,
.fig-home-cta__button:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.02);
}

.fig-home-pill:active,
.fig-home-topbar__cta:active,
.fig-home-mobile-menu__cta:active,
.fig-home-cta__button:active {
  transform: translateY(0) scale(0.985);
}

.fig-home-pill:focus-visible,
.fig-home-topbar__cta:focus-visible,
.fig-home-mobile-menu__cta:focus-visible,
.fig-home-cta__button:focus-visible {
  box-shadow: 0 0 0 3px rgba(212, 175, 73, 0.24);
}

.fig-home-pill img,
.fig-home-pill svg,
.fig-home-cta__button img {
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fig-home-pill:hover img,
.fig-home-pill:hover svg,
.fig-home-cta__button:hover img {
  transform: translateX(3px);
}

@media (prefers-reduced-motion: reduce) {
  .fig-home-pill,
  .fig-home-topbar__cta,
  .fig-home-mobile-menu__cta,
  .fig-home-cta__button {
    transition: none;
    transform: none;
    filter: none;
  }

  .fig-home-pill:hover,
  .fig-home-topbar__cta:hover,
  .fig-home-mobile-menu__cta:hover,
  .fig-home-cta__button:hover,
  .fig-home-pill:active,
  .fig-home-topbar__cta:active,
  .fig-home-mobile-menu__cta:active,
  .fig-home-cta__button:active {
    transform: none;
    filter: none;
  }

  .fig-home-orbit__center {
    animation: none;
  }

  .fig-home-orbit__center::before {
    animation: none;
  }
}

.fig-home-hero {
  --hero-canvas: 1440px;
  --hero-gutter: 48px;
  --hero-bleed-right: max(0px, calc((100vw - var(--hero-canvas)) / 2));
  --hero-vh: 100svh;
  background: linear-gradient(182.8deg, #ffffff 46.29%, #fff5d5 97.57%);
  height: min(1126px, var(--hero-vh));
  min-height: min(1126px, var(--hero-vh));
  overflow: hidden;
  padding: 0;
  position: relative;
}

.fig-home-topbar {
  --topbar-offset: 28px;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  left: 0;
  max-width: none;
  position: fixed;
  right: 0;
  top: var(--topbar-offset);
  transform: none;
  transition:
    top 260ms ease,
    background-color 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    backdrop-filter 260ms ease;
  width: 100%;
  z-index: 1200;
}

.fig-home-topbar::before {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: rgba(255, 255, 255, 0);
  content: "";
  height: 108px;
  left: 50%;
  -webkit-mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.9) 38%,
    rgba(0, 0, 0, 0.52) 74%,
    rgba(0, 0, 0, 0) 100%
  );
  mask-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.9) 38%,
    rgba(0, 0, 0, 0.52) 74%,
    rgba(0, 0, 0, 0) 100%
  );
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(var(--topbar-offset) * -1);
  transform: translateX(-50%);
  transition: background-color 260ms ease, opacity 260ms ease;
  width: 100vw;
}

.fig-home-topbar__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  min-height: 56px;
  position: relative;
  width: min(calc(100% - var(--hero-gutter)), var(--hero-canvas));
  z-index: 1;
}

.fig-home-topbar.is-scrolled .fig-home-topbar__inner {
  backdrop-filter: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.fig-home-topbar.is-scrolled {
  -webkit-backdrop-filter: blur(10px) saturate(110%);
  backdrop-filter: blur(10px) saturate(110%);
  background: rgba(8, 8, 8, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  padding: 6px 0;
  top: 0;
}

.fig-home-topbar.is-scrolled::before {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: transparent;
  opacity: 0;
}

.fig-home-brand {
  align-items: center;
  backdrop-filter: blur(5.2px);
  border: 1px solid #000000;
  border-radius: 37px;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 24px;
  min-height: 52px;
  padding: 7px 24px;
}

.fig-home-brand__menu-btn {
  align-items: center;
  appearance: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 4px;
  height: 20px;
  justify-content: center;
  padding: 0;
  width: 26px;
}

.fig-home-brand__menu-btn span {
  background: #111111;
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 100%;
}

.fig-home-brand__logo {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  height: 38px;
  position: relative;
}

.fig-home-brand__logo img {
  display: block;
  height: 38px;
  max-width: 228px;
  object-fit: contain;
  transition: opacity 180ms ease;
  width: auto;
}

.fig-home-topbar__cta {
  backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 60px;
  color: #ffffff;
  align-items: center;
  display: inline-flex !important;
  flex: 0 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.03em;
  line-height: 1.6;
  min-height: 52px;
  padding: 13px 33px;
  text-shadow: none;
  visibility: visible !important;
  opacity: 1 !important;
  white-space: nowrap;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.fig-home-topbar__cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.fig-home-topbar__cta:focus-visible {
  border-color: rgba(255, 255, 255, 1);
  box-shadow: 0 0 0 3px rgba(212, 175, 73, 0.2);
  outline: 0;
}

.fig-home-topbar.is-scrolled .fig-home-topbar__cta {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.56);
  color: #ffffff;
}

.fig-home-topbar.is-scrolled .fig-home-topbar__cta:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.82);
  box-shadow: none;
}

.fig-home-topbar.is-scrolled .fig-home-brand {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.24);
}


.fig-home-topbar.is-scrolled .fig-home-brand__menu-btn span {
  background: rgba(255, 255, 255, 0.95);
}

.fig-home-mobile-menu {
  display: block;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  transition: opacity 260ms ease;
  z-index: 1600;
}

.fig-home-mobile-menu__backdrop {
  background: rgba(10, 10, 10, 0.38);
  border: 0;
  inset: 0;
  position: absolute;
  width: 100%;
}

.fig-home-mobile-menu__panel {
  background: #ffffff;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  left: 0;
  max-width: min(90vw, 380px);
  padding: 20px 18px 22px;
  position: absolute;
  top: 0;
  transform: translateX(-104%);
  transition: transform 280ms ease;
  width: 100%;
}

.fig-home-mobile-menu__head {
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
}

.fig-home-mobile-menu__head img {
  display: block;
  height: auto;
  max-height: 44px;
  max-width: 230px;
  object-fit: contain;
  width: min(100%, 230px);
}

.fig-home-mobile-menu__close {
  align-items: center;
  appearance: none;
  background: #f6f6f6;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  color: #121212;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  height: 38px;
  justify-content: center;
  line-height: 1;
  width: 38px;
}

.fig-home-mobile-menu__nav {
  display: grid;
  gap: 0;
}

.fig-home-mobile-menu__nav a {
  color: #111111;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.01em;
  padding: 14px 2px;
}

.fig-home-mobile-menu__nav a + a {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.fig-home-mobile-menu__cta {
  align-items: center;
  background: #111111;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  margin-top: auto;
  min-height: 50px;
  padding: 0 20px;
}

body.is-fig-mobile-open .fig-home-mobile-menu {
  opacity: 1;
  pointer-events: auto;
}

body.is-fig-mobile-open .fig-home-mobile-menu__panel {
  transform: translateX(0);
}

.fig-home-hero__inner {
  align-items: center;
  display: grid;
  gap: 160px;
  grid-template-columns: 521px minmax(0, 1fr);
  height: 100%;
  margin: 0 auto;
  max-width: var(--hero-canvas);
  overflow: visible;
  padding: clamp(12px, 1.8vh, 24px) 0;
  width: min(calc(100% - var(--hero-gutter)), var(--hero-canvas));
}

.fig-home-hero__copy {
  align-self: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 521px;
}

.fig-home-hero__copy h1 {
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(48px, 5.2vw, 76px);
  font-weight: 600;
  letter-spacing: -1.5px;
  line-height: 1.1;
}

.fig-home-hero__copy h1 span {
  display: block;
}

.fig-home-hero__copy h1 em {
  color: var(--fig-gold);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -5px;
}

.fig-home-hero__copy p {
  color: var(--fig-text);
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  line-height: 1.65;
}

.fig-home-hero__media {
  border-bottom-left-radius: 24px;
  border-top-left-radius: 24px;
  box-shadow: -6px 0 25px rgba(0, 0, 0, 0.25);
  background: #1a120c;
  height: 100%;
  justify-self: start;
  min-height: 0;
  isolation: isolate;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  width: calc(100% + var(--hero-bleed-right));
}

.fig-home-hero__cta {
  align-self: flex-start;
  align-items: center;
  background: #d7b46a;
  border: 1px solid #f6eed8;
  border-radius: 60px;
  box-shadow: none;
  color: #000000;
  flex: 0 0 auto;
  font-family: "Montserrat", sans-serif;
  font-size: 19px;
  font-weight: 600;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.02em;
  line-height: 1.2;
  max-width: max-content;
  min-height: 64px;
  min-width: 0;
  padding: 0 30px;
  text-transform: none;
  width: fit-content !important;
}

.fig-home-hero__cta img,
.fig-home-hero__cta svg {
  height: 18px;
  width: 18px;
}

.fig-home-carousel {
  background: #1a120c;
  border-radius: inherit;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.fig-home-hero .hero-carousel__slide {
  background: #1a120c;
  backface-visibility: hidden;
  border-radius: inherit;
  inset: 0;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  transform: translateZ(0);
  z-index: 1;
  transition: opacity 560ms ease;
}

.fig-home-hero .hero-carousel__slide.is-active {
  opacity: 1;
  z-index: 2;
}

.fig-home-hero .hero-carousel__slide::after {
  background:
    linear-gradient(180deg, rgba(8, 8, 8, 0.16) 0%, rgba(8, 8, 8, 0.34) 100%),
    linear-gradient(110deg, rgba(117, 91, 0, 0.12) 0%, rgba(117, 91, 0, 0) 46%);
  border-radius: inherit;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.fig-home-hero .hero-carousel__slide img {
  border-radius: inherit;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.fig-home-hero__badge {
  backdrop-filter: blur(7.75px);
  background: var(--fig-off);
  border: 1px solid var(--fig-off);
  border-radius: 16px;
  bottom: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 124px;
  opacity: 1 !important;
  padding: 18px;
  position: absolute;
  right: 28px;
  visibility: visible !important;
  width: 154px;
  z-index: 8;
}

.fig-home-hero__badge img {
  display: block;
  height: auto;
  max-height: 62px;
  max-width: 108px;
  object-fit: contain;
  width: auto;
}

.fig-home-hero__dots {
  align-items: center;
  bottom: 36px;
  display: flex !important;
  display: flex;
  gap: 10px;
  left: 56px;
  opacity: 1 !important;
  position: absolute;
  transform: none;
  visibility: visible !important;
  z-index: 8;
}

.fig-home-hero__dot {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.34);
  border-radius: 999px;
  height: 5px;
  transition: all 260ms ease;
  width: 34px;
}

.fig-home-hero__dot.is-active {
  background: var(--fig-gold);
  width: 44px;
}

body.has-page-entrance .fig-home-hero__copy > * {
  opacity: 0;
  transform: translateY(18px);
}

body.has-page-entrance .fig-home-hero__media {
  opacity: 0;
  transform: translateX(22px) scale(0.992);
}

body.has-page-entrance .fig-home-hero__badge,
body.has-page-entrance .fig-home-hero__dots {
  opacity: 0;
  transform: translateY(10px);
}

body.has-page-entrance.is-page-ready .fig-home-hero__copy > * {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 900ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

body.has-page-entrance.is-page-ready .fig-home-hero__copy h1 {
  transition-delay: 140ms;
}

body.has-page-entrance.is-page-ready .fig-home-hero__copy p {
  transition-delay: 260ms;
}

body.has-page-entrance.is-page-ready .fig-home-hero__copy .fig-home-hero__cta {
  transition-delay: 380ms;
}

body.has-page-entrance.is-page-ready .fig-home-hero__media {
  opacity: 1;
  transform: translateX(0) scale(1);
  transition:
    opacity 1080ms cubic-bezier(0.16, 1, 0.3, 1) 180ms,
    transform 1080ms cubic-bezier(0.16, 1, 0.3, 1) 180ms;
}

body.has-page-entrance.is-page-ready .fig-home-hero__badge,
body.has-page-entrance.is-page-ready .fig-home-hero__dots {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 760ms cubic-bezier(0.16, 1, 0.3, 1) 520ms,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1) 520ms;
}

.fig-home-structure,
.fig-home-areas,
.fig-home-clients {
  background: #fafafa;
  padding: 100px 0;
  position: relative;
}

.fig-home-structure {
  background: #000000;
  overflow: visible;
}

.fig-home-structure .fig-home-wrap,
.fig-home-structure .fig-home-orbit {
  overflow: visible;
}

.fig-home-structure::before,
.fig-home-areas::before,
.fig-home-clients::before {
  background: linear-gradient(90deg, rgba(212, 175, 73, 0), #d4af49 50%, rgba(212, 175, 73, 0));
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.fig-home-divider {
  background: #000000;
  position: relative;
}

.fig-home-divider::before {
  background: linear-gradient(90deg, rgba(212, 175, 73, 0), #d4af49 50%, rgba(212, 175, 73, 0));
  content: "";
  display: block;
  height: 3px;
  width: 100%;
}

.fig-home-title {
  margin: 0 auto;
  max-width: 760px;
  text-align: center;
}

.fig-home-title > span {
  color: var(--fig-gold);
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 12px;
}

.fig-home-title h2 {
  color: #000000;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

.fig-home-title h2 em {
  color: var(--fig-gold);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
}

.fig-home-title p {
  color: #6c6c6c;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.85;
  margin: 14px auto 0;
  max-width: 560px;
}

.fig-home-structure .fig-home-title h2 {
  color: #ffffff;
}

.fig-home-structure .fig-home-title p {
  color: rgba(255, 255, 255, 0.72);
}

.fig-home-orbit {
  --orbit-center-y: 35.72%;
  --orbit-center-size: 296px;
  --orbit-node-size: 128px;
  height: 760px;
  margin: 72px auto 0;
  position: relative;
  width: min(100%, 1000px);
}

.fig-home-orbit__ring {
  border: 1.16px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  height: 356px;
  left: 50%;
  position: absolute;
  top: var(--orbit-center-y);
  transform: translate(-50%, -50%);
  width: 356px;
}

.fig-home-orbit__ring--outer {
  border-color: rgba(212, 175, 73, 0.35);
  height: 500px;
  width: 500px;
}

.fig-home-orbit__links {
  height: 100%;
  inset: 0;
  pointer-events: none;
  position: absolute;
  width: 100%;
  z-index: 5;
}

.fig-home-orbit__links line {
  stroke: rgba(230, 214, 170, 0.9);
  stroke-linecap: round;
  stroke-width: 1.4;
}

.fig-home-orbit__links circle {
  fill: #d4af49;
  stroke: #d4af49;
  stroke-width: 1.2;
}

.fig-home-orbit__center {
  align-items: center;
  background: #ffffff;
  border: 1.16px solid #d4af49;
  border-radius: 999px;
  display: flex;
  height: var(--orbit-center-size);
  justify-content: center;
  left: 50%;
  overflow: visible;
  position: absolute;
  top: var(--orbit-center-y);
  transform: translate(-50%, -50%);
  width: var(--orbit-center-size);
  z-index: 4;
  isolation: isolate;
  box-shadow:
    0 0 0 24px rgba(212, 175, 73, 0.4),
    0 0 0 56px rgba(212, 175, 73, 0.22),
    0 0 150px rgba(212, 175, 73, 0.72);
  animation: fig-home-orbit-center-pulse 1.8s ease-in-out infinite;
}

.fig-home-orbit__center::before {
  content: "";
  position: absolute;
  inset: -92px;
  border-radius: 999px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 73, 0.5) 0%,
    rgba(212, 175, 73, 0.28) 36%,
    rgba(212, 175, 73, 0.1) 62%,
    rgba(212, 175, 73, 0) 82%
  );
  filter: blur(100px);
  opacity: 0.7;
  z-index: -1;
  pointer-events: none;
  animation: fig-home-orbit-blur-pulse 1.8s ease-in-out infinite;
}

.fig-home-orbit__center img {
  height: auto;
  max-height: 60%;
  object-fit: contain;
  width: 56%;
}

.fig-home-orbit__node {
  align-items: center;
  background: #ffffff;
  border: 1.16px solid #d4af49;
  border-radius: 999px;
  display: flex;
  height: var(--orbit-node-size);
  justify-content: center;
  overflow: hidden;
  position: absolute;
  transform: translate(-50%, -50%);
  width: var(--orbit-node-size);
  z-index: 6;
  box-shadow: 0 0 26px rgba(212, 175, 73, 0.5);
}

.fig-home-orbit__node img {
  max-height: 58%;
  max-width: 78%;
  object-fit: contain;
}

.fig-home-orbit__node--left {
  left: 22%;
  top: 56%;
}

.fig-home-orbit__node--right {
  left: 78%;
  top: 56%;
}

.fig-home-orbit__node--bottom {
  left: 50%;
  top: 77.04%;
}

.fig-home-orbit__node--infra img {
  max-height: 54%;
  max-width: 74%;
}

.fig-home-orbit__node--planacon img {
  max-height: 42%;
  max-width: 72%;
}

.fig-home-orbit__node--led img {
  max-height: 62%;
  max-width: 62%;
}

.fig-home-orbit__label {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.55;
  position: absolute;
  width: 236px;
  z-index: 7;
}

.fig-home-orbit__label p {
  margin: 0 0 7px;
}

.fig-home-orbit__label a {
  color: #ffffff;
  display: inline-flex;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  transition: color 220ms ease, transform 220ms ease;
}

.fig-home-orbit__label a span:first-child {
  text-decoration: underline;
  text-decoration-color: var(--fig-gold);
  text-underline-offset: 4px;
  transition: text-decoration-color 220ms ease;
}

.fig-home-orbit__arrow {
  color: var(--fig-gold);
  display: inline-flex;
  height: 16px;
  width: 16px;
}

.fig-home-orbit__arrow svg {
  display: block;
  height: 100%;
  transition: transform 220ms ease, filter 220ms ease;
  width: 100%;
}

.fig-home-orbit__label a:hover {
  color: #ffffff;
}

.fig-home-orbit__label a:hover span:first-child {
  text-decoration-color: #f0d891;
}

.fig-home-orbit__label a:hover .fig-home-orbit__arrow svg {
  filter: drop-shadow(0 0 3px rgba(212, 175, 73, 0.45));
  transform: translateX(4px);
}

.fig-home-orbit__label a:focus-visible {
  outline: 2px solid rgba(212, 175, 73, 0.8);
  outline-offset: 4px;
}

.fig-home-orbit__label--left {
  left: -92px;
  top: 49.8%;
  width: 248px;
}

.fig-home-orbit__label--right {
  right: -128px;
  top: 49.8%;
  width: 248px;
}

.fig-home-orbit__label--bottom {
  left: 50%;
  top: 89.5%;
  text-align: center;
  transform: translateX(-50%);
  width: 320px;
}

.fig-home-metrics {
  background: linear-gradient(90deg, #000000 0%, #000000 100%), linear-gradient(359.15deg, rgba(212, 175, 73, 0.09) 1.32%, rgba(212, 175, 73, 0) 61.93%);
  padding: 100px 0;
  position: relative;
}

.fig-home-metrics::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../assets/img/pattern-brsul-icon-gold-tile.svg");
  background-position: 0 0;
  background-repeat: repeat;
  background-size: 80px 85px;
  opacity: 0.08;
  pointer-events: none;
}

.fig-home-metrics .fig-home-wrap {
  position: relative;
  z-index: 1;
}

.fig-home-metrics__title {
  color: #ffffff;
  font-family: "Inter", sans-serif;
  font-size: clamp(34px, 3.85vw, 48px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.24;
  margin: 0 auto 48px;
  max-width: 920px;
  text-align: center;
}

.fig-home-metrics__title em {
  color: var(--fig-gold);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
}

.fig-home-metrics__title span {
  color: var(--fig-gold);
}

.fig-home-metrics__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 48px;
}

.fig-home-metrics__grid article {
  text-align: center;
}

.fig-home-metrics__grid strong {
  color: #ffffff;
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 60px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.fig-home-metrics__grid strong > span {
  color: #ffffff;
  display: inline-block;
  font-family: "Playfair Display", serif;
  font-size: 60px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.fig-home-metrics__grid article > span {
  color: #ffffff;
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.032em;
}

.fig-home-metrics__photo {
  height: 550px;
  margin: 0 auto;
  max-width: 1440px;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
}

.fig-home-metrics__photo img {
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  width: 100%;
}

.fig-home-areas {
  background: #fafafa;
}

.fig-home-areas__grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
}

.fig-home-area-card {
  border-radius: 16px;
  min-height: 420px;
  overflow: hidden;
  position: relative;
  transform: translateY(0);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 360ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, box-shadow;
}

.fig-home-area-card img {
  height: 100%;
  object-fit: cover;
  position: absolute;
  width: 100%;
  transform: scale(1);
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.fig-home-area-card__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.86) 100%);
  inset: 0;
  position: absolute;
  transition: background 360ms ease;
}

.fig-home-area-card__content {
  bottom: 0;
  color: #bdbdbd;
  display: flex;
  flex-direction: column;
  gap: 10px;
  left: 0;
  padding: 24px 32px;
  position: absolute;
  right: 0;
  transform: translateY(0);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fig-home-area-card__content h3 {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.44px;
  line-height: 25.3px;
  margin: 0;
}

.fig-home-area-card__content p {
  color: #bdbdbd;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  line-height: 23.1px;
  letter-spacing: 0;
  margin: 0;
}

.fig-home-area-card__content a {
  color: var(--fig-gold);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 600;
  line-height: 20.8px;
  letter-spacing: 0;
  margin-top: 6px;
  transition: color 240ms ease, filter 280ms ease;
}

.fig-home-area-card__arrow {
  display: inline-flex;
  height: 16px;
  width: 16px;
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fig-home-area-card__arrow svg {
  display: block;
  height: 100%;
  width: 100%;
}

.fig-home-area-card:hover,
.fig-home-area-card:focus-within {
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  transform: translateY(-5px);
}

.fig-home-area-card:hover img,
.fig-home-area-card:focus-within img {
  transform: scale(1.06);
}

.fig-home-area-card:hover .fig-home-area-card__overlay,
.fig-home-area-card:focus-within .fig-home-area-card__overlay {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 4%, rgba(0, 0, 0, 0.9) 100%);
}

.fig-home-area-card:hover .fig-home-area-card__content,
.fig-home-area-card:focus-within .fig-home-area-card__content {
  transform: translateY(-2px);
}

.fig-home-area-card:hover .fig-home-area-card__content a,
.fig-home-area-card:focus-within .fig-home-area-card__content a {
  filter: drop-shadow(0 0 3px rgba(212, 175, 73, 0.45));
}

.fig-home-area-card:hover .fig-home-area-card__arrow,
.fig-home-area-card:focus-within .fig-home-area-card__arrow {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .fig-home-area-card,
  .fig-home-area-card img,
  .fig-home-area-card__overlay,
  .fig-home-area-card__content,
  .fig-home-area-card__content a,
  .fig-home-area-card__arrow {
    transition: none;
  }

  .fig-home-area-card:hover,
  .fig-home-area-card:focus-within {
    box-shadow: none;
    transform: none;
  }

  .fig-home-area-card:hover img,
  .fig-home-area-card:focus-within img,
  .fig-home-area-card:hover .fig-home-area-card__content,
  .fig-home-area-card:focus-within .fig-home-area-card__content,
  .fig-home-area-card:hover .fig-home-area-card__arrow,
  .fig-home-area-card:focus-within .fig-home-area-card__arrow {
    transform: none;
  }
}

.fig-home-clients {
  background: #fafafa;
}

.fig-home-clients__head {
  text-align: center;
}

.fig-home-clients__head > span {
  color: var(--fig-gold);
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.124em;
  margin-bottom: 16px;
}

.fig-home-clients__head h2 {
  color: #111111;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(36px, 4.3vw, 48px);
  font-weight: 500;
  letter-spacing: -0.021em;
  line-height: 1.24;
  margin: 0 auto;
  max-width: 760px;
}

.fig-home-clients__head h2 em {
  color: var(--fig-gold);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
}

.fig-home-clients__marquee {
  margin-top: 48px;
  overflow: hidden;
  position: relative;
}

.fig-home-clients__marquee::before,
.fig-home-clients__marquee::after {
  content: "";
  inset: 0 auto 0 0;
  pointer-events: none;
  position: absolute;
  width: 120px;
  z-index: 2;
}

.fig-home-clients__marquee::before {
  background: linear-gradient(90deg, #fafafa 0%, rgba(250, 250, 250, 0) 100%);
}

.fig-home-clients__marquee::after {
  background: linear-gradient(270deg, #fafafa 0%, rgba(250, 250, 250, 0) 100%);
  inset: 0 0 0 auto;
}

.fig-home-clients__track {
  align-items: center;
  display: inline-flex;
  gap: 48px;
  will-change: transform;
}

.fig-home-client-logo {
  align-items: center;
  border-radius: 12px;
  box-sizing: border-box;
  display: inline-flex;
  height: 110px;
  justify-content: center;
  margin: 0;
  padding: 14px 20px;
  width: 220px;
}

.fig-home-client-logo img {
  display: block;
  height: 100%;
  max-height: 72px;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
}

.fig-home-clients__track {
  animation: fig-home-clients-scroll 34s linear infinite;
}

.fig-home-clients__marquee:hover .fig-home-clients__track {
  animation-play-state: paused;
}

.fig-home-cta {
  background: #0a0a0a;
  padding: 100px 240px;
  position: relative;
}

.fig-home-cta__frame {
  min-height: 583.59px;
  max-width: 1440px;
  overflow: hidden;
  padding: 100px;
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.fig-home-cta__bg {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.fig-home-cta__content {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  min-height: 383.59px;
  margin: 0 auto;
  max-width: 1080px;
  position: relative;
  text-align: center;
  z-index: 2;
}

.fig-home-cta__content > span {
  color: var(--fig-gold);
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.124em;
  line-height: 1.1;
}

.fig-home-cta__content h2 {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.042em;
  line-height: 1.3125;
  margin: 0;
}

.fig-home-cta__content h2 span {
  display: block;
}

.fig-home-cta__content h2 em {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}

.fig-home-cta__button {
  align-items: center;
  background: #d4af49;
  border-radius: 100px;
  color: #ffffff;
  display: inline-flex;
  gap: 10px;
  justify-content: center;
  min-height: 50px;
  padding: 14px 32px;
}

.fig-home-cta__button span {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.028em;
  line-height: 1.12;
}

.fig-home-cta__button img {
  display: block;
  height: 16px;
  width: 16px;
}

.fig-home-footer {
  background: linear-gradient(360deg, rgba(212, 175, 73, 0.1) 0%, rgba(212, 175, 73, 0) 65.89%), #0a0a0a;
  padding: 32px 0 16px;
  position: relative;
}

.fig-home-footer__top {
  align-items: flex-start;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 10px 0;
}

.fig-home-footer__brand img {
  display: block;
  width: 186px;
}

.fig-home-footer__actions {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 17px;
  max-width: 436px;
}

.fig-home-footer__social {
  display: flex;
  gap: 11px;
}

.fig-home-footer__social a {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.fig-home-footer__social img {
  height: 18px;
  width: 18px;
}

.fig-home-footer__actions address {
  color: rgba(255, 255, 255, 0.72);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-style: normal;
  line-height: 1.6;
}

.fig-home-footer__actions address p {
  margin: 0;
}

.fig-home-footer__bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.5);
  display: flex;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 23px;
}

.fig-home-footer__bottom a {
  color: rgba(255, 255, 255, 0.68);
}

.fig-home-footer__signature {
  color: rgba(255, 255, 255, 0.5);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  padding-top: 23px;
  text-align: center;
}

.fig-home-footer__signature strong {
  font-family: "Comfortaa", sans-serif;
  font-weight: 400;
}

@keyframes fig-home-clients-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes fig-home-mobile-dash-flow {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 0 16px;
  }
}

@keyframes fig-home-mobile-dash-flow-x {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -16px 0;
  }
}

@keyframes fig-home-orbit-center-pulse {
  0%,
  100% {
    box-shadow:
      0 0 0 24px rgba(212, 175, 73, 0.34),
      0 0 0 56px rgba(212, 175, 73, 0.16),
      0 0 150px rgba(212, 175, 73, 0.66);
  }

  50% {
    box-shadow:
      0 0 0 24px rgba(212, 175, 73, 0.46),
      0 0 0 56px rgba(212, 175, 73, 0.24),
      0 0 150px rgba(212, 175, 73, 0.86);
  }
}

@keyframes fig-home-orbit-blur-pulse {
  0%,
  100% {
    opacity: 0.62;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 1400px) {
  .fig-home-hero {
    --hero-gutter: 32px;
    --hero-bleed-right: 0px;
  }

  .fig-home-hero__inner {
    gap: clamp(40px, 6vw, 96px);
    grid-template-columns: minmax(380px, 521px) minmax(0, 1fr);
    margin: 0 auto;
    width: min(calc(100% - var(--hero-gutter)), var(--hero-canvas));
  }

  .fig-home-hero__media {
    height: clamp(640px, 72vh, 920px);
    min-height: 640px;
  }

  .fig-home-orbit {
    width: min(100%, 1000px);
  }
}

@media (min-width: 1201px) and (max-width: 1366px) {
  .fig-home {
    --header-height: 84px;
  }

  .fig-home-hero {
    --hero-gutter: 28px;
    --hero-vh: 100svh;
  }

  .fig-home-hero__inner {
    gap: clamp(28px, 3.2vw, 56px);
    grid-template-columns: minmax(360px, 500px) minmax(0, 1fr);
    padding: clamp(8px, 1.4vh, 18px) 0;
  }

  .fig-home-hero__copy {
    gap: 16px;
    max-width: 500px;
  }

  .fig-home-hero__copy h1 {
    font-size: clamp(40px, 4.4vw, 58px);
    letter-spacing: -1px;
    line-height: 1.06;
  }

  .fig-home-hero__copy h1 em {
    letter-spacing: -3px;
  }

  .fig-home-hero__copy p {
    font-size: 16px;
    line-height: 1.55;
  }

  .fig-home-hero__cta {
    font-size: 17px;
    min-height: 54px;
    padding: 0 24px;
  }

  .fig-home-hero__media {
    height: clamp(500px, calc(100svh - 170px), 680px);
    min-height: 500px;
  }

  .fig-home-hero__badge {
    bottom: 22px;
    height: 108px;
    right: 20px;
    width: 132px;
  }

  .fig-home-hero__dots {
    bottom: 22px;
    left: 22px;
  }
}

@media (min-width: 1201px) and (max-height: 860px) {
  .fig-home-hero__inner {
    gap: clamp(24px, 3vw, 48px);
  }

  .fig-home-hero__copy {
    gap: 14px;
  }

  .fig-home-hero__copy h1 {
    font-size: clamp(36px, 3.8vw, 52px);
    line-height: 1.06;
  }

  .fig-home-hero__copy h1 em {
    letter-spacing: -3px;
  }

  .fig-home-hero__copy p {
    font-size: 15px;
    line-height: 1.55;
  }

  .fig-home-hero__cta {
    font-size: 16px;
    min-height: 52px;
    padding: 0 24px;
  }

  .fig-home-hero__media {
    height: clamp(420px, calc(100svh - 190px), 560px);
    min-height: 420px;
  }
}

@media (max-width: 1200px) {
  .fig-home-topbar {
    top: 16px;
    width: 100%;
  }

  .fig-home-hero {
    --hero-gutter: 32px;
    --hero-bleed-right: 0px;
    height: auto;
    min-height: 0;
    padding: 110px 0 40px;
  }

  .fig-home-topbar__inner {
    width: calc(100% - var(--hero-gutter));
  }

  .fig-home-hero__inner {
    gap: 28px;
    grid-template-columns: 1fr;
    height: auto;
    margin: 0 auto;
    width: calc(100% - var(--hero-gutter));
  }

  .fig-home-hero__copy {
    max-width: 760px;
  }

  .fig-home-hero__media {
    border-radius: 24px;
    height: min(58dvh, 620px);
    min-height: 420px;
    width: 100%;
  }

  .fig-home-hero__dots {
    left: 28px;
  }

  .fig-home-hero__badge {
    right: 22px;
  }

  .fig-home-orbit {
    align-items: center;
    display: grid;
    gap: 14px 28px;
    grid-template-areas:
      "center center"
      "left-node right-node"
      "left-label right-label"
      "bottom-node bottom-node"
      "bottom-label bottom-label";
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    height: auto;
    justify-items: center;
    margin-top: 48px;
    padding-top: 0;
    width: min(100%, 760px);
  }

  .fig-home-orbit__ring,
  .fig-home-orbit__ring--outer,
  .fig-home-orbit__links {
    display: none;
  }

  .fig-home-orbit__center,
  .fig-home-orbit__node,
  .fig-home-orbit__node--bottom,
  .fig-home-orbit__node--left,
  .fig-home-orbit__node--right,
  .fig-home-orbit__label,
  .fig-home-orbit__label--left,
  .fig-home-orbit__label--right,
  .fig-home-orbit__label--bottom {
    left: auto;
    margin: 0;
    position: relative;
    right: auto;
    text-align: center;
    top: auto;
    transform: none;
  }

  .fig-home-orbit__center {
    grid-area: center;
  }

  .fig-home-orbit__node--left {
    grid-area: left-node;
  }

  .fig-home-orbit__node--right {
    grid-area: right-node;
  }

  .fig-home-orbit__node--bottom {
    grid-area: bottom-node;
  }

  .fig-home-orbit__label--left {
    grid-area: left-label;
  }

  .fig-home-orbit__label--right {
    grid-area: right-label;
  }

  .fig-home-orbit__label--bottom {
    grid-area: bottom-label;
  }

  .fig-home-orbit__label,
  .fig-home-orbit__label--left,
  .fig-home-orbit__label--right,
  .fig-home-orbit__label--bottom {
    width: min(100%, 320px);
  }

  .fig-home-areas__grid {
    grid-template-columns: 1fr;
  }

  .fig-home-area-card {
    min-height: 380px;
  }
}

@media (min-width: 761px) and (max-width: 1200px) {
  .fig-home-hero {
    padding: 118px 0 56px;
  }

  .fig-home-hero__inner {
    gap: 36px;
    width: calc(100% - 48px);
  }

  .fig-home-hero__copy {
    gap: 20px;
    max-width: 760px;
  }

  .fig-home-hero__copy h1 {
    font-size: clamp(46px, 6.2vw, 64px);
    letter-spacing: -1.2px;
    line-height: 1.08;
  }

  .fig-home-hero__copy h1 em {
    letter-spacing: -3.5px;
  }

  .fig-home-hero__copy p {
    font-size: 17px;
    line-height: 1.58;
    max-width: 680px;
  }

  .fig-home-hero__cta {
    font-size: 18px;
    min-height: 60px;
    padding: 0 28px;
  }

  .fig-home-hero__media {
    height: min(54dvh, 560px);
    min-height: 400px;
  }

  .fig-home-hero__badge {
    bottom: 24px;
    height: 110px;
    padding: 14px;
    right: 24px;
    width: 136px;
  }

  .fig-home-hero__dots {
    bottom: 24px;
    left: 24px;
  }

  .fig-home-orbit {
    --orbit-center-y: 36%;
    --orbit-center-size: clamp(220px, 30vw, 270px);
    --orbit-node-size: clamp(92px, 10vw, 108px);
    display: block;
    height: 680px;
    margin-top: 52px;
    width: min(100%, 860px);
  }

  .fig-home-orbit__ring,
  .fig-home-orbit__ring--outer,
  .fig-home-orbit__links {
    display: block;
  }

  .fig-home-orbit__ring {
    height: clamp(300px, 40vw, 360px);
    left: 50%;
    top: var(--orbit-center-y);
    transform: translate(-50%, -50%);
    width: clamp(300px, 40vw, 360px);
  }

  .fig-home-orbit__ring--outer {
    height: clamp(430px, 56vw, 500px);
    width: clamp(430px, 56vw, 500px);
  }

  .fig-home-orbit__center,
  .fig-home-orbit__node,
  .fig-home-orbit__node--bottom,
  .fig-home-orbit__node--left,
  .fig-home-orbit__node--right,
  .fig-home-orbit__label,
  .fig-home-orbit__label--left,
  .fig-home-orbit__label--right,
  .fig-home-orbit__label--bottom {
    left: auto;
    margin: 0;
    position: absolute;
    right: auto;
    top: auto;
    transform: none;
  }

  .fig-home-orbit__center {
    left: 50%;
    top: var(--orbit-center-y);
    transform: translate(-50%, -50%);
  }

  .fig-home-orbit__node,
  .fig-home-orbit__node--left,
  .fig-home-orbit__node--right,
  .fig-home-orbit__node--bottom {
    height: var(--orbit-node-size);
    width: var(--orbit-node-size);
  }

  .fig-home-orbit__node--left {
    left: 22%;
    top: 56%;
    transform: translate(-50%, -50%);
  }

  .fig-home-orbit__node--right {
    left: 78%;
    top: 56%;
    transform: translate(-50%, -50%);
  }

  .fig-home-orbit__node--bottom {
    left: 50%;
    top: 77%;
    transform: translate(-50%, -50%);
  }

  .fig-home-orbit__label,
  .fig-home-orbit__label--left,
  .fig-home-orbit__label--right,
  .fig-home-orbit__label--bottom {
    font-size: 15px;
    line-height: 1.45;
    max-width: none;
    text-align: left;
    width: 220px;
  }

  .fig-home-orbit__label--left {
    left: -22px;
    top: 50%;
    transform: translateY(-50%);
  }

  .fig-home-orbit__label--right {
    right: -22px;
    text-align: right;
    top: 50%;
    transform: translateY(-50%);
  }

  .fig-home-orbit__label--bottom {
    left: 50%;
    text-align: center;
    top: 88%;
    transform: translateX(-50%);
    width: 320px;
  }

  .fig-home-orbit__label p {
    margin: 0 0 7px;
  }

  .fig-home-orbit__label a {
    font-size: 16px;
    gap: 8px;
  }

  .fig-home-metrics__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 28px;
  }

  .fig-home-metrics__grid article:nth-child(3) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, 360px);
  }

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

  .fig-home-area-card {
    min-height: 360px;
  }
}

@media (max-width: 760px) {
  .fig-home-structure {
    overflow: visible;
    padding-top: 88px;
  }

  .fig-home-orbit {
    --orbit-mobile-center-size: min(232px, 58vw);
    --orbit-mobile-node-size: 88px;
    --orbit-mobile-line-left: 44px;
    --orbit-mobile-top-offset: 46px;
    --orbit-mobile-joint-y: calc(var(--orbit-mobile-top-offset) + (var(--orbit-mobile-center-size) * 0.5) - 3px);
    --orbit-mobile-center-left: calc(50% - (var(--orbit-mobile-center-size) / 2));
    display: grid;
    gap: 40px 16px;
    grid-template-areas:
      "center center"
      "left-node left-label"
      "right-node right-label"
      "bottom-node bottom-label";
    grid-template-columns: 88px minmax(0, 1fr);
    height: auto;
    justify-items: start;
    margin-top: 42px;
    padding-top: var(--orbit-mobile-top-offset);
    padding-bottom: 12px;
    position: relative;
    width: min(100%, 460px);
  }

  .fig-home-orbit::after {
    background-image: linear-gradient(
      to bottom,
      rgba(230, 214, 170, 0.95) 0 50%,
      rgba(230, 214, 170, 0) 50% 100%
    );
    background-size: 100% 16px;
    border-radius: 999px;
    content: "";
    bottom: calc((var(--orbit-mobile-node-size) / 2) + 12px);
    left: var(--orbit-mobile-line-left);
    position: absolute;
    top: var(--orbit-mobile-joint-y);
    width: 1.6px;
    z-index: 1;
    animation: fig-home-mobile-dash-flow 1.05s linear infinite;
  }

  .fig-home-orbit::before {
    background-image: repeating-linear-gradient(
      to right,
      rgba(230, 214, 170, 0.95) 0 8px,
      rgba(230, 214, 170, 0) 8px 16px
    );
    background-size: 16px 100%;
    border-radius: 999px;
    content: "";
    height: 1.6px;
    left: var(--orbit-mobile-line-left);
    position: absolute;
    top: var(--orbit-mobile-joint-y);
    width: max(0px, calc(var(--orbit-mobile-center-left) - var(--orbit-mobile-line-left)));
    z-index: 1;
    animation: fig-home-mobile-dash-flow-x 1.05s linear infinite;
  }

  .fig-home-orbit__ring {
    display: none;
  }

  .fig-home-orbit__ring--outer {
    display: none;
  }

  .fig-home-orbit__center {
    grid-area: center;
    align-items: center;
    display: flex;
    height: var(--orbit-mobile-center-size);
    justify-content: center;
    justify-self: center;
    overflow: visible;
    position: relative;
    transform: none;
    width: var(--orbit-mobile-center-size);
    z-index: 2;
    animation: fig-home-orbit-center-pulse 1.8s ease-in-out infinite;
    box-shadow:
      0 0 0 18px rgba(212, 175, 73, 0.38),
      0 0 0 40px rgba(212, 175, 73, 0.2),
      0 0 110px rgba(212, 175, 73, 0.68);
  }

  .fig-home-orbit__center::before {
    inset: -72px;
    filter: blur(100px);
    opacity: 0.7;
    animation: fig-home-orbit-blur-pulse 1.8s ease-in-out infinite;
  }

  .fig-home-orbit__links {
    display: none;
  }

  .fig-home-orbit__node {
    align-items: center;
    display: flex;
    height: var(--orbit-mobile-node-size);
    justify-content: center;
    justify-self: center;
    left: auto;
    position: relative;
    top: auto;
    transform: none;
    width: var(--orbit-mobile-node-size);
    z-index: 2;
  }

  .fig-home-orbit__node--left {
    grid-area: left-node;
  }

  .fig-home-orbit__node--right {
    grid-area: right-node;
  }

  .fig-home-orbit__node--bottom {
    grid-area: bottom-node;
  }

  .fig-home-orbit__node img {
    max-height: 62%;
    max-width: 72%;
  }

  .fig-home-orbit__node--planacon img {
    max-height: 42%;
    max-width: 70%;
  }

  .fig-home-orbit__label,
  .fig-home-orbit__label--left,
  .fig-home-orbit__label--right,
  .fig-home-orbit__label--bottom {
    align-self: center;
    font-size: 13px;
    left: auto;
    line-height: 1.45;
    position: relative;
    text-align: left;
    top: auto;
    transform: none;
    width: 146px;
    z-index: 2;
  }

  .fig-home-orbit__label--left {
    grid-area: left-label;
  }

  .fig-home-orbit__label--right {
    grid-area: right-label;
  }

  .fig-home-orbit__label--bottom {
    grid-area: bottom-label;
    width: 244px;
  }

  .fig-home-orbit__label p {
    margin: 0 0 7px;
  }

  .fig-home-orbit__label a {
    display: inline-flex;
    font-size: 15px;
    gap: 8px;
  }

  .fig-home-orbit__arrow {
    height: 18px;
    width: 18px;
  }
}

@media (max-width: 920px) {
  .fig-home-wrap {
    width: calc(100% - 32px);
  }

  .fig-home-brand {
    gap: 16px;
    padding: 8px 16px;
  }

  .fig-home-brand__logo {
    height: 30px;
  }

  .fig-home-brand__logo img {
    height: 30px;
    max-width: 186px;
    width: auto;
  }

  .fig-home-topbar__cta {
    font-size: 16px;
    min-height: 46px;
    padding: 0 24px;
  }

  .fig-home-hero__cta {
    font-size: 16px;
    min-height: 52px;
    padding: 0 24px;
  }

  .fig-home-hero__copy p {
    font-size: 18px;
  }

  .fig-home-hero__media {
    height: min(52dvh, 520px);
    min-height: 360px;
  }

  .fig-home-title p {
    font-size: 15px;
    line-height: 1.7;
  }

  .fig-home-metrics__grid {
    grid-template-columns: 1fr;
  }

  .fig-home-cta__content h2 {
    font-size: clamp(30px, 7vw, 42px);
  }

  .fig-home-cta {
    padding: 72px 32px;
  }

  .fig-home-cta__frame {
    min-height: 500px;
    padding: 72px 28px;
  }

  .fig-home-cta__content {
    min-height: 356px;
  }

  .fig-home-cta__button span {
    font-size: 18px;
  }

  .fig-home-footer__top {
    flex-direction: column;
  }

  .fig-home-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 620px) {
  .fig-home-topbar {
    --topbar-offset: 12px;
    position: absolute;
    top: var(--topbar-offset);
    transform: none;
    width: 100%;
  }

  .fig-home-topbar.is-scrolled {
    padding: 0;
    top: 0;
  }

  .fig-home-topbar::before {
    height: 82px;
  }

  .fig-home-topbar__inner {
    align-items: center;
    flex-direction: row;
    gap: 0;
    justify-content: flex-start;
    margin: 0 auto;
    min-height: 44px;
    width: calc(100% - 20px);
  }

  .fig-home-brand {
    backdrop-filter: none;
    background: rgba(255, 255, 255, 0.96);
    border-color: rgba(0, 0, 0, 0.72);
    gap: 12px;
    min-height: 50px;
    padding: 8px 14px;
    width: fit-content;
  }

  .fig-home-brand__menu-btn {
    height: 18px;
    width: 22px;
  }

  .fig-home-brand__logo {
    height: 32px;
  }

  .fig-home-brand__logo img {
    height: 32px;
    max-width: clamp(170px, 54vw, 210px);
    width: auto;
  }

  .fig-home-topbar__cta {
    display: none !important;
  }

  .fig-home-mobile-menu__panel {
    max-width: min(88vw, 340px);
    padding: 18px 16px 20px;
  }

  .fig-home-mobile-menu__head img {
    max-width: 220px;
    width: min(100%, 220px);
  }

  .fig-home-mobile-menu__nav a {
    font-size: 15px;
    padding: 12px 2px;
  }

  .fig-home-mobile-menu__cta {
    font-size: 15px;
    min-height: 46px;
    padding: 0 18px;
  }

  .fig-home-hero__cta {
    font-size: 16px;
    min-height: 54px;
    padding: 0 26px;
  }

  .fig-home-hero {
    padding-top: 132px;
  }

  .fig-home-hero__copy {
    gap: 14px;
  }

  .fig-home-hero__copy h1 {
    font-size: clamp(39px, 11.3vw, 56px);
    line-height: 1.04;
  }

  .fig-home-hero__copy p {
    font-size: 16px;
    line-height: 1.55;
  }

  .fig-home-hero__media {
    height: min(48svh, 420px);
    min-height: 300px;
  }

  .fig-home-hero__badge {
    bottom: 20px;
    height: 96px;
    padding: 12px;
    right: 14px;
    width: 118px;
  }

  .fig-home-hero__dots {
    bottom: 20px;
    left: 16px;
  }

  .fig-home-title h2,
  .fig-home-clients__head h2,
  .fig-home-metrics__title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .fig-home-structure,
  .fig-home-metrics,
  .fig-home-areas,
  .fig-home-clients {
    padding: 72px 0;
  }

  .fig-home-cta,
  .fig-home-cta__frame {
    min-height: 460px;
  }

  .fig-home-clients__track {
    gap: 20px;
  }

  .fig-home-client-logo {
    height: 92px;
    padding: 12px 16px;
    width: 172px;
  }

  .fig-home-client-logo img {
    max-height: 62px;
  }

  .fig-home-cta {
    padding: 56px 0;
  }

  .fig-home-cta__frame {
    padding: 56px 20px;
  }

  .fig-home-cta__content {
    min-height: 348px;
  }

  .fig-home-cta__content > span {
    font-size: 13px;
  }

  .fig-home-cta__content h2 {
    font-size: clamp(30px, 9vw, 40px);
    line-height: 1.24;
  }

  .fig-home-cta__button {
    min-height: 48px;
    padding: 12px 24px;
  }

  .fig-home-cta__button span {
    font-size: 16px;
  }
}
