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

:root {
  --hg-shell-x: clamp(1.25rem, 4vw, 3rem);
  --hg-shell-y: clamp(1.05rem, 3.2vw, 2.65rem);
  --hg-content-x: clamp(1rem, 3vw, 2.2rem);
  --hg-quickbar-space: clamp(4.8rem, 8vh, 6.4rem);
  --hg-nav-top-space: calc(var(--hg-shell-y) + var(--hg-quickbar-space));
  --home-ink: #020a2f;
  --home-muted: #667391;
  --home-blue: #0057ff;
  --home-line: rgba(34, 65, 118, .13);
}

html {
  min-height: 100%;
  background: #ffffff;
}

body {
  position: relative;
  min-height: 100%;
  margin: 0;
  background: #ffffff;
  color: var(--home-ink);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  font-weight: 400;
  overscroll-behavior: none;
  overflow-x: hidden;
  isolation: isolate;
  -webkit-font-smoothing: antialiased;
}

body.is-page-loading {
  height: 100dvh;
  overflow: hidden;
  background: #ffffff;
}

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

button {
  border: 0;
  font: inherit;
}

main:has(.hg-header.is--loading),
body.is-page-loading main {
  height: 100dvh;
  overflow: hidden;
}

main {
  position: relative;
  z-index: 1;
}

.hg-header {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  min-height: 100dvh;
  overflow-x: clip;
  color: var(--home-ink);
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 87, 255, .12) 0 1px, transparent 1.55px) calc(100% - 12rem) 0 / 18px 18px,
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 250, 255, .98));
}

.hg-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 12% 64%, rgba(0, 87, 255, .07), transparent 34%),
    radial-gradient(circle at 72% 8%, rgba(80, 130, 255, .06), transparent 32%);
  pointer-events: none;
}

.hg-bg-circle,
.hg-bg-dots {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.hg-bg-circle {
  border-radius: 50%;
}

.hg-bg-circle--left {
  left: clamp(-22rem, -18vw, -12rem);
  top: clamp(-22rem, -24vw, -14rem);
  width: clamp(27rem, 46vw, 45rem);
  aspect-ratio: 1;
  border: clamp(3.8rem, 8vw, 7.3rem) solid rgba(0, 87, 255, .045);
}

.hg-bg-dots {
  right: auto;
  bottom: 1rem;
  left: 0;
  width: min(24rem, 34vw);
  height: min(18rem, 28vw);
  opacity: .46;
  background: radial-gradient(circle, rgba(0, 87, 255, .22) 0 1.1px, transparent 1.55px) 0 0 / 18px 18px;
  -webkit-mask-image: linear-gradient(35deg, #000, transparent 78%);
  mask-image: linear-gradient(35deg, #000, transparent 78%);
}

.hg-header.is--loading {
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
}

.hg-header.is--loading.is--hidden {
  display: none;
}

.hg-loader {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: #201d1d;
  background: #ffffff;
}

.hg-header.is--loading .hg-loader {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  height: 100dvh;
  min-height: 100dvh;
}

.hg-loader__logo {
  --loader-mark-size: clamp(5.5rem, 18vw, 13rem);
  --loader-letter-size: calc(var(--loader-mark-size) * .64);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(64vw, 42rem);
  height: var(--loader-mark-size);
  line-height: 1;
}

.hg-logo-part {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: var(--loader-letter-size);
  overflow: hidden;
}

.hg-logo-part--h {
  width: calc(var(--loader-letter-size) * .85);
  margin-right: .5rem;
  color: #201d1d;
}

.hg-logo-part--g {
  width: calc(var(--loader-letter-size) * .85);
  margin-left: .5rem;
  color: #201d1d;
}

.hg-logo-part__svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.hg-loader__box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0;
  height: var(--loader-mark-size);
  flex: 0 0 auto;
}

.hg-loader__box-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-width: var(--loader-mark-size);
  height: 100%;
}

.hg-growing-image {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0%;
  height: 100%;
  overflow: hidden;
}

.hg-growing-image__wrap {
  position: absolute;
  width: 100%;
  min-width: var(--loader-mark-size);
  height: 100%;
  background:
    radial-gradient(circle at 100% 0%, rgba(0, 87, 255, .12) 0 1px, transparent 1.55px) calc(100% - 12rem) 0 / 18px 18px,
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(247, 250, 255, .98));
}

.hg-cover-image,
.hg-cover-image-extra {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.hg-cover-image-extra.is--1 { z-index: 4; }
.hg-cover-image-extra.is--2 { z-index: 3; }
.hg-cover-image-extra.is--3 { z-index: 2; }
.hg-cover-image-extra.is--4 { z-index: 1; }

.hg-header__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100dvh;
  padding: var(--hg-nav-top-space) var(--hg-shell-x) 0;
}

.hg-header__top {
  position: fixed;
  top: var(--hg-shell-y);
  left: var(--hg-shell-x);
  right: var(--hg-shell-x);
  width: auto;
  z-index: 80;
  overflow: visible;
  pointer-events: none;
}

.hg-nav {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  overflow: visible;
  pointer-events: auto;
}

.hg-nav__brand {
  display: inline-flex;
  width: clamp(9rem, 18vw, 15rem);
  pointer-events: auto;
}

.hg-nav__logo {
  display: block;
  width: 100%;
  height: auto;
  fill: currentColor;
}

.hg-nav__logo-primary {
  fill: #000000;
}

.hg-nav__logo-secondary {
  fill: #1d1d1b;
}

.hg-quickbar {
  position: relative;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: .65rem;
  min-height: clamp(3.35rem, 4.3vw, 3.85rem);
  margin-left: auto;
  padding: .4rem .46rem .4rem 2.2rem;
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  pointer-events: auto;
  transform-origin: right center;
  will-change: transform;
}

.hg-date-pill,
.hg-icon-pill,
.hg-menu-pill {
  background: transparent;
}

.hg-date-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: clamp(14.4rem, 24vw, 21rem);
  min-height: 2.55rem;
  padding: 0 .55rem 0 1.05rem;
  overflow: hidden;
  border-radius: 999px;
  color: #000000;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  white-space: nowrap;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 .7rem, #000 calc(100% - .7rem), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 .7rem, #000 calc(100% - .7rem), transparent 100%);
}

.hg-date-pill::after {
  content: "";
  position: absolute;
  left: .66rem;
  top: 50%;
  width: 1px;
  height: 1.14rem;
  border-radius: 999px;
  background: rgba(8, 35, 143, .28);
  opacity: .68;
  transform: translateY(-50%) scaleY(.72);
  transform-origin: center center;
}

.hg-date-pill > span {
  display: block;
  max-width: 100%;
  overflow: hidden;
  color: #000000;
  font-size: clamp(.82rem, 1vw, .98rem);
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: left;
  text-overflow: ellipsis;
  will-change: transform, opacity;
}

.hg-icon-pill,
.hg-menu-pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  color: #000000;
  cursor: pointer;
  transition:
    transform .24s cubic-bezier(.22, 1, .36, 1),
    background .24s ease,
    color .24s ease;
}

.hg-icon-pill {
  width: 2.7rem;
  height: 2.7rem;
  flex: 0 0 2.7rem;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(20, 35, 84, .06);
  isolation: isolate;
}

.hg-menu-pill {
  gap: .65rem;
  min-height: 2.7rem;
  padding: 0 1.08rem;
  border-radius: 999px;
  background: #000000;
  color: #ffffff;
  font-size: clamp(.82rem, 1vw, .95rem);
  font-weight: 500;
  letter-spacing: 0;
}

.hg-icon-pill:hover,
.hg-menu-pill:hover {
  transform: translateY(-1px);
}

.hg-icon-pill:hover {
  background: rgba(204, 204, 204, .08);
}

.hg-menu-pill:hover {
  background: #000000;
}

.hg-icon-pill svg,
.hg-menu-pill svg {
  display: block;
  width: 1.14rem;
  height: 1.14rem;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition:
    opacity .24s ease,
    transform .34s cubic-bezier(.22, 1, .36, 1);
}

.hg-icon-pill svg {
  stroke: black;
}

.hg-menu-pill svg {
  stroke: white;
}

.hg-header.is--loading .hg-header__top,
.hg-header.is--loading .service-center {
  opacity: 0;
  visibility: hidden;
}

.service-center {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(17rem, .42fr);
  grid-template-areas:
    "hero summary"
    "actions news"
    "modules modules";
  row-gap: clamp(.8rem, 1.8vw, 2.05rem);
  column-gap: clamp(2.1rem, 7vw, 7.2rem);
  width: min(100%, 94rem);
  margin: 0 auto;
  padding: clamp(1.4rem, 3.2vh, 2.7rem) 0 clamp(2rem, 4.25vh, 3.4rem);
}

.service-center__hero {
  grid-area: hero;
  position: relative;
  min-width: 0;
}

.service-kicker,
.quick-actions h2,
.service-news h2,
.service-modules h2,
.service-summary h2 {
  margin: 0;
  color: var(--home-blue);
  font-size: clamp(.58rem, .72vw, .72rem);
  font-weight: 700;
  letter-spacing: .5em;
  line-height: 1.1;
  text-transform: uppercase;
}

.service-center__hero h1 {
  max-width: 34rem;
  margin: clamp(.85rem, 1.8vw, 1.2rem) 0 0;
  color: #020a2f;
  font-size: clamp(3.45rem, 5.8vw, 6.25rem);
  font-weight: 700;
  line-height: .92;
  letter-spacing: 0;
}

.service-center__hero h1 span {
  color: var(--home-blue);
}

.service-center__hero p {
  max-width: 34rem;
  margin: clamp(1.05rem, 2.1vw, 1.45rem) 0 0;
  color: #637292;
  font-size: clamp(.92rem, 1.08vw, 1.08rem);
  font-weight: 400;
  line-height: 1.5;
}

.service-line {
  display: block;
  width: 2rem;
  height: 2px;
  margin-top: clamp(1.2rem, 2.4vw, 1.7rem);
  border-radius: 999px;
  background: var(--home-blue);
}

.service-watermark {
  position: absolute;
  top: clamp(-.35rem, -.6vw, -.1rem);
  left: 36%;
  z-index: -1;
  width: clamp(15rem, 27vw, 25rem);
  opacity: .034;
  pointer-events: none;
  user-select: none;
}

.service-watermark img {
  display: block;
  width: 100%;
  height: auto;
}

.service-summary {
  grid-area: summary;
  min-width: 0;
  padding-top: .1rem;
}

.service-stat {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .25rem 1rem;
  align-items: center;
  min-height: clamp(3.45rem, 6vw, 4.4rem);
  border-bottom: 1px solid var(--home-line);
  color: #071126;
}

.service-stat strong {
  grid-column: 1;
  margin-top: .1rem;
  color: #071126;
  font-size: clamp(1.24rem, 1.8vw, 1.65rem);
  font-weight: 600;
  line-height: 1;
}

.service-stat span {
  grid-column: 1;
  color: #53617d;
  font-size: clamp(.64rem, .8vw, .78rem);
  line-height: 1.35;
}

.service-stat svg,
.service-news__head a svg,
.quick-action__arrow {
  display: block;
  width: .95rem;
  height: .95rem;
  fill: none;
  stroke: var(--home-blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-stat svg {
  grid-column: 2;
  grid-row: 1 / span 2;
  transition: transform .26s cubic-bezier(.22, 1, .36, 1);
}

.service-stat:hover svg {
  transform: translateX(.18rem);
}

.quick-actions {
  grid-area: actions;
  min-width: 0;
}

.quick-actions__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(1.05rem, 2.1vw, 1.5rem);
  border-top: 1px solid rgba(20, 35, 84, .055);
}

.quick-action {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(.72rem, 1.2vw, 1rem);
  min-height: clamp(4.2rem, 7vw, 5.2rem);
  padding: .7rem clamp(.75rem, 1.5vw, 1.3rem);
  border-right: 1px solid rgba(20, 35, 84, .08);
  color: #071126;
  transition:
    background .28s ease,
    transform .32s cubic-bezier(.22, 1, .36, 1);
}

.quick-action:hover {
  background: rgba(0, 87, 255, .03);
  transform: translateY(-1px);
}

.quick-action.is-disabled {
  color: rgba(7, 17, 38, .42);
  cursor: default;
}

.quick-action:last-child {
  border-right: 0;
}

.quick-action__icon {
  display: grid;
  place-items: center;
  width: clamp(2.35rem, 3vw, 2.8rem);
  aspect-ratio: 1;
  border: 1px solid rgba(34, 65, 118, .08);
  border-radius: .82rem;
  background: rgba(255, 255, 255, .62);
  color: #071126;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .84),
    0 .35rem .9rem rgba(23, 35, 58, .045);
}

.quick-action__icon svg {
  display: block;
  width: 1.08rem;
  height: 1.08rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-action strong {
  display: block;
  color: currentColor;
  font-size: clamp(.72rem, .86vw, .86rem);
  font-weight: 600;
  line-height: 1.15;
}

.quick-action em {
  display: block;
  margin-top: .28rem;
  color: #72809b;
  font-size: clamp(.58rem, .68vw, .68rem);
  font-style: normal;
  font-weight: 500;
}

.quick-action.is-disabled .quick-action__arrow,
.quick-action.is-disabled .quick-action__icon {
  opacity: .42;
}

.service-news {
  grid-area: news;
  min-width: 0;
}

.service-news__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.service-news__head a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--home-blue);
  font-size: clamp(.58rem, .68vw, .7rem);
  font-weight: 600;
  white-space: nowrap;
}

.service-news ul {
  display: grid;
  gap: clamp(.7rem, 1.2vw, .95rem);
  margin: clamp(1.05rem, 2vw, 1.45rem) 0 0;
  padding: 0;
  list-style: none;
}

.service-news li {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: .9rem;
  align-items: baseline;
  padding-left: 1rem;
  color: #071126;
  font-size: clamp(.62rem, .72vw, .74rem);
  line-height: 1.4;
}

.service-news li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .52em;
  width: .28rem;
  height: .28rem;
  border-radius: 50%;
  background: #071126;
}

.service-news time {
  color: #72809b;
  font-size: .92em;
  white-space: nowrap;
}

.service-modules {
  grid-area: modules;
  min-width: 0;
}

.service-modules__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.module-slider-controls {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.module-slider-button {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  aspect-ratio: 1;
  border: 1px solid rgba(34, 65, 118, .1);
  border-radius: 50%;
  background: rgba(255, 255, 255, .72);
  color: var(--home-blue);
  cursor: pointer;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .85),
    0 .45rem 1rem rgba(23, 35, 58, .05);
  transition:
    transform .28s cubic-bezier(.22, 1, .36, 1),
    border-color .24s ease,
    background .24s ease,
    opacity .24s ease;
}

.module-slider-button:hover:not(:disabled) {
  border-color: rgba(0, 87, 255, .2);
  background: rgba(255, 255, 255, .92);
  transform: translateY(-1px);
}

.module-slider-button:disabled {
  opacity: .38;
  cursor: default;
}

.module-slider-button svg {
  display: block;
  width: 1rem;
  height: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.module-slider-shell {
  position: relative;
  min-width: 0;
}

.module-grid {
  --module-gap: clamp(.85rem, 1.3vw, 1rem);
  display: flex;
  gap: var(--module-gap);
  margin-top: clamp(.75rem, 1.35vw, 1rem);
  padding: .12rem .1rem .55rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-padding-inline: .1rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.module-grid::-webkit-scrollbar {
  display: none;
}

.has-module-overflow .module-grid {
  -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 2.4rem), transparent 100%);
  mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 2.4rem), transparent 100%);
}

.has-module-overflow:not(.is-module-start) .module-grid {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2rem, #000 calc(100% - 2.4rem), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 2rem, #000 calc(100% - 2.4rem), transparent 100%);
}

.has-module-overflow.is-module-end .module-grid {
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 2rem, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 2rem, #000 100%);
}

.ux-parent {
  --detail-a: #142354;
  --detail-b: #4c64c6;
  --detail-c: #dbe4ff;
  --ux-title: #071126;
  --ux-orbit-1: clamp(4.5rem, 8vw, 6.25rem);
  --ux-orbit-gap: .3rem;
  display: block;
  flex: 0 0 clamp(10.75rem, 13.55vw, 12.95rem);
  width: 100%;
  min-width: 0;
  height: clamp(8.35rem, 10.2vw, 10.35rem);
  perspective: 1000px;
  perspective-origin: 50% 50%;
  scroll-snap-align: start;
}

.module-card--blue { --detail-a: #142354; --detail-b: #4c64c6; --detail-c: #dbe4ff; }
.module-card--green { --detail-a: #318e80; --detail-b: #7bd9bd; --detail-c: #dff8ee; }
.module-card--violet { --detail-a: #6754c9; --detail-b: #b4a4f0; --detail-c: #ece8ff; }
.module-card--warm { --detail-a: #d6915e; --detail-b: #edc1a0; --detail-c: #fff1e8; }
.module-card--cyan { --detail-a: #1679bd; --detail-b: #70cbe9; --detail-c: #d9efff; }
.module-card--disabled { --detail-a: #a7adba; --detail-b: #d3d7df; --detail-c: #f0f2f6; }

.ux-card {
  position: relative;
  display: block;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(193, 204, 219, .54);
  border-radius: .95rem;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .92), rgba(246, 249, 253, .72));
  box-shadow:
    0 .65rem 1.45rem rgba(23, 35, 58, .055),
    inset 0 1px 0 rgba(255, 255, 255, .92);
  transform-style: preserve-3d;
  transition:
    transform .55s cubic-bezier(.22, 1, .36, 1),
    box-shadow .55s ease,
    border-color .3s ease;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ux-card::before,
.ux-card::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.ux-card::before {
  right: -7%;
  top: -22%;
  width: clamp(8rem, 17vw, 12.5rem);
  height: clamp(7rem, 14vw, 10.5rem);
  border-radius: 44% 0 0 76%;
  background:
    radial-gradient(circle at 64% 34%, rgba(255, 255, 255, .74), transparent 32%),
    linear-gradient(135deg, color-mix(in srgb, var(--detail-a) 24%, transparent), color-mix(in srgb, var(--detail-b) 18%, transparent));
  opacity: .86;
  transform: rotate(-8deg);
  transition:
    opacity .34s ease,
    transform .55s cubic-bezier(.22, 1, .36, 1);
}

.ux-card::after {
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 85% 12%, color-mix(in srgb, var(--detail-c) 38%, transparent), transparent 27%),
    linear-gradient(180deg, rgba(255, 255, 255, .28), transparent 45%);
  transition:
    opacity .34s ease,
    transform .55s cubic-bezier(.22, 1, .36, 1);
}

.ux-parent:not(.module-card--disabled):hover .ux-card {
  border-color: rgba(0, 87, 255, .18);
  transform: rotate3d(.45, .65, 0, 6deg) translateY(-2px) scale(1.01);
  box-shadow:
    0 1rem 2.4rem rgba(23, 35, 58, .095),
    0 0 3rem color-mix(in srgb, var(--detail-a) 20%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, .96);
}

.ux-parent:not(.module-card--disabled):hover .ux-card::before {
  opacity: 1;
  transform: translate3d(.35rem, -.25rem, 0) rotate(-11deg) scale(1.18);
}

.ux-glass {
  position: absolute;
  right: -.8rem;
  top: -.85rem;
  z-index: 1;
  width: clamp(7.5rem, 15vw, 11rem);
  height: clamp(5.8rem, 11vw, 8rem);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 48% 0 0 72%;
  background:
    radial-gradient(circle at 68% 30%, rgba(255, 255, 255, .72), transparent 34%),
    color-mix(in srgb, var(--detail-a) 13%, rgba(255, 255, 255, .25));
  opacity: .86;
  pointer-events: none;
  transition:
    opacity .38s ease,
    transform .5s ease-in-out;
}

.ux-parent:not(.module-card--disabled):hover .ux-glass {
  opacity: 1;
  transform: translate3d(.2rem, -.12rem, 0) scale(1.08);
}

.ux-logo {
  position: absolute;
  inset-inline-end: 0;
  top: 0;
  z-index: 2;
  pointer-events: none;
}

.ux-circle {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  display: block;
  aspect-ratio: 1;
  border-radius: 50%;
  background: color-mix(in srgb, var(--detail-a) 12%, rgba(255, 255, 255, .46));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .42);
  opacity: .68;
  transition: all .5s ease-in-out;
}

.ux-circle:nth-child(1) {
  width: var(--ux-orbit-1);
  top: var(--ux-orbit-gap);
  inset-inline-end: var(--ux-orbit-gap);
}

.ux-circle:nth-child(2) {
  width: calc(var(--ux-orbit-1) * .82);
  top: calc(var(--ux-orbit-gap) + .125rem);
  inset-inline-end: calc(var(--ux-orbit-gap) + .125rem);
}

.ux-circle:nth-child(3) {
  width: calc(var(--ux-orbit-1) * .65);
  top: calc(var(--ux-orbit-gap) + .55rem);
  inset-inline-end: calc(var(--ux-orbit-gap) + .55rem);
}

.ux-circle:nth-child(4) {
  width: calc(var(--ux-orbit-1) * .47);
  top: calc(var(--ux-orbit-gap) + .95rem);
  inset-inline-end: calc(var(--ux-orbit-gap) + .95rem);
}

.ux-circle:nth-child(5) {
  width: calc(var(--ux-orbit-1) * .3);
  min-width: 2.05rem;
  top: calc(var(--ux-orbit-gap) + 1.35rem);
  inset-inline-end: calc(var(--ux-orbit-gap) + 1.35rem);
}

.ux-parent:not(.module-card--disabled):hover .ux-circle {
  background: color-mix(in srgb, var(--detail-a) 36%, rgba(255, 255, 255, .3));
  opacity: .98;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .62),
    0 .9rem 2.15rem color-mix(in srgb, var(--detail-a) 22%, transparent);
}

.ux-content {
  position: relative;
  z-index: 3;
  display: grid;
  align-content: end;
  height: 100%;
  padding: clamp(1rem, 1.6vw, 1.3rem);
}

.module-index {
  display: block;
  margin-bottom: clamp(1rem, 2vw, 1.7rem);
  color: rgba(20, 35, 84, .36);
  font-size: clamp(.95rem, 1.25vw, 1.18rem);
  font-weight: 500;
}

.ux-title {
  display: block;
  max-width: 7.5rem;
  color: #071126;
  font-size: clamp(.74rem, .92vw, .9rem);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: 0;
}

.module-card--disabled {
  color: rgba(7, 17, 38, .42);
  cursor: default;
}

.module-card--disabled .ux-card {
  opacity: .72;
}

.module-card--disabled .ux-title,
.module-card--disabled .module-index {
  color: rgba(7, 17, 38, .42);
}

@media (max-width: 1180px) {
  .service-center {
    grid-template-columns: 1fr;
    grid-template-areas:
      "hero"
      "summary"
      "actions"
      "news"
      "modules";
    gap: 2rem;
  }

  .service-summary {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  .service-summary h2 {
    grid-column: 1 / -1;
    margin-bottom: .7rem;
  }

  .service-stat {
    border-top: 1px solid var(--home-line);
    border-right: 1px solid var(--home-line);
    padding-right: .8rem;
  }

  .service-stat:last-child {
    border-right: 0;
  }

  .module-grid {
    margin-top: .85rem;
  }
}

@media (max-width: 900px) {
  .quick-actions__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quick-action:nth-child(2n) {
    border-right: 0;
  }

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

  .service-stat:nth-child(3),
  .service-stat:nth-child(5) {
    border-right: 0;
  }

  .module-grid {
    margin-top: .8rem;
  }
}

@media (max-width: 640px) {
  :root {
    --hg-shell-x: clamp(.95rem, 4vw, 1.15rem);
    --hg-quickbar-space: 4rem;
  }

  .hg-header__content {
    padding-top: calc(var(--hg-shell-y) + var(--hg-quickbar-space) + .8rem);
  }

  .hg-nav {
    flex-wrap: nowrap;
    align-items: center;
    gap: .8rem;
  }

  .hg-nav__brand {
    position: absolute;
    top: 0;
    bottom: 0;
    left: clamp(.82rem, 3vw, 1.05rem);
    z-index: 72;
    align-items: center;
    width: clamp(7.1rem, 31vw, 9.35rem);
    height: max-content;
    min-width: 0;
    margin: auto 0;
  }

  .hg-quickbar {
    width: 100%;
    max-width: 100%;
    gap: .46rem;
    flex: 1 1 auto;
    justify-content: flex-end;
    min-height: 3rem;
    margin-top: 0;
    margin-left: auto;
    padding: .3rem .34rem .3rem clamp(8.6rem, 36vw, 10.6rem);
    transform-origin: center center;
  }

  .hg-date-pill {
    display: none;
  }

  .hg-icon-pill {
    width: 2.36rem;
    height: 2.36rem;
    flex-basis: 2.36rem;
  }

  .hg-menu-pill {
    min-height: 2.36rem;
    gap: .48rem;
    padding: 0 .84rem;
    font-size: .84rem;
  }

  .hg-icon-pill svg,
  .hg-menu-pill svg {
    width: 1rem;
    height: 1rem;
  }

  .service-center {
    padding-top: 1.5rem;
  }

  .service-center__hero h1 {
    font-size: clamp(3rem, 14vw, 4.15rem);
  }

  .service-watermark {
    top: 1.2rem;
    left: 32%;
    width: clamp(11rem, 54vw, 14rem);
  }

  .quick-actions__grid,
  .service-summary {
    grid-template-columns: 1fr;
  }

  .quick-action,
  .service-stat {
    border-right: 0;
  }

  .service-news li {
    grid-template-columns: 1fr;
    gap: .2rem;
  }

  .ux-parent {
    flex-basis: min(18.5rem, 78vw);
    height: 8.5rem;
  }

  .module-slider-button {
    width: 2.18rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
