/* QalamSite Interactive Service Hub */
.q-hub {
  --q-hub-blue: #f43f5e;
  --q-hub-blue-soft: rgba(244, 63, 94, 0.18);
  --q-hub-gold: #fbbf24;
  --q-hub-gold-soft: rgba(251, 191, 36, 0.2);
  --q-hub-ink: #0c0a09;
  --q-hub-panel: rgba(28, 25, 23, 0.82);
  --q-hub-line: rgba(168, 162, 158, 0.12);
  --q-hub-angle: 0deg;
  --q-hub-tilt-x: 0deg;
  --q-hub-tilt-y: 0deg;
  --q-hub-shift-x: 0px;
  --q-hub-shift-y: 0px;
  --q-hub-logo-x: 0px;
  --q-hub-logo-y: 0px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(0.75rem, 1.8vw, 1.35rem) 0 clamp(2.2rem, 4.5vw, 4.5rem);
  background:
    radial-gradient(circle at 18% 18%, rgba(244, 63, 94, 0.14), transparent 28%),
    radial-gradient(circle at 84% 22%, rgba(245, 158, 11, 0.12), transparent 24%),
    linear-gradient(145deg, #0c0a09 0%, #141110 48%, #1c1917 100%);
  border-bottom: 1px solid rgba(168, 162, 158, 0.14);
  scroll-margin-top: calc(var(--q-topbar-h) + var(--q-header-h) + 12px);
}

.q-hub::before,
.q-hub::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.q-hub::before {
  z-index: -2;
  background:
    linear-gradient(var(--q-hub-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--q-hub-line) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 42%, #000 18%, transparent 76%);
}

.q-hub::after {
  z-index: -1;
  opacity: 0.42;
  background:
    linear-gradient(110deg, transparent 0%, rgba(244, 63, 94, 0.12) 48%, transparent 54%),
    radial-gradient(circle at 50% 50%, transparent 0 48%, rgba(251, 191, 36, 0.07) 49% 50%, transparent 51%);
}

.q-hub__aura,
.q-hub__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.q-hub__aura {
  z-index: -1;
  background: radial-gradient(circle at 50% 48%, rgba(244, 63, 94, 0.14), transparent 34%);
  filter: blur(10px);
}

.q-hub__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.1fr) minmax(280px, 0.9fr);
  grid-template-areas:
    "copy stage details"
    "services stage details";
  gap: clamp(1rem, 2.6vw, 2rem);
  align-items: center;
}

.q-hub__copy {
  grid-area: copy;
  min-width: 0;
}

.q-hub__eyebrow {
  margin: 0 0 0.65rem;
  color: var(--q-hub-gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.q-hub__title {
  margin: 0;
  font-family: var(--q-font-display);
  font-size: clamp(2.2rem, 5vw, 4.35rem);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0;
  color: #fff;
  text-wrap: balance;
}

.q-hub__lead {
  margin: 1.1rem 0 0;
  max-width: 48ch;
  color: rgba(245, 245, 244, 0.78);
  font-size: clamp(1rem, 1.8vw, 1.16rem);
  line-height: 1.85;
}

.q-hub__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.q-hub__btn,
.q-hub__mini-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-family: var(--q-font-display);
  font-weight: 800;
  transition:
    transform var(--q-dur-fast) var(--q-ease-spring),
    border-color var(--q-dur-fast),
    background var(--q-dur-fast),
    box-shadow var(--q-dur-fast);
}

.q-hub__btn {
  padding: 0.7rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.q-hub__btn--primary {
  color: #1c1917;
  background: linear-gradient(135deg, var(--q-hub-blue), #fecdd3);
  box-shadow: 0 0 34px rgba(244, 63, 94, 0.32);
}

.q-hub__btn--ghost {
  color: #fafaf9;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(251, 191, 36, 0.32);
}

.q-hub__btn:hover,
.q-hub__mini-cta:hover {
  transform: translateY(-2px);
}

.q-hub__stage {
  grid-area: stage;
  position: relative;
  min-height: min(58vw, 560px);
  display: grid;
  place-items: center;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.q-hub__orbits {
  position: absolute;
  inset: 3%;
  transform-style: preserve-3d;
  transform:
    translate3d(var(--q-hub-shift-x), var(--q-hub-shift-y), 0)
    rotateX(calc(62deg + var(--q-hub-tilt-x)))
    rotateY(var(--q-hub-tilt-y))
    rotateZ(var(--q-hub-angle));
  transition:
    transform 520ms var(--q-ease-out),
    filter 420ms var(--q-ease-out),
    opacity 420ms var(--q-ease-out);
  pointer-events: none;
  filter: drop-shadow(0 0 18px rgba(244, 63, 94, 0.12));
  will-change: transform, filter;
}

.q-hub__orbit,
.q-hub__beam {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.q-hub__orbit {
  inset: calc((100% - var(--q-hub-orbit-size)) / 2);
  transform: rotateX(var(--q-hub-orbit-x)) rotateY(var(--q-hub-orbit-y));
  transform-style: preserve-3d;
}

.q-hub__orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--q-hub-orbit-color);
  background:
    repeating-conic-gradient(
      from 0deg,
      rgba(255, 255, 255, 0) 0deg 12deg,
      rgba(255, 255, 255, 0.12) 13deg 14deg,
      rgba(255, 255, 255, 0) 15deg 32deg
    );
  box-shadow:
    0 0 32px rgba(244, 63, 94, 0.12),
    inset 0 0 30px rgba(251, 191, 36, 0.04);
  mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 3px), #000 calc(100% - 2px));
  animation: q-hub-orbit-ring-spin var(--q-hub-orbit-speed) linear infinite;
  opacity: 0.78;
  will-change: transform;
}

.q-hub__orbit-glow {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: conic-gradient(
    from 0deg,
    transparent 0 70%,
    rgba(244, 63, 94, 0.08) 73%,
    var(--q-hub-orbit-glow) 78%,
    rgba(251, 191, 36, 0.72) 81%,
    transparent 88% 100%
  );
  filter: blur(0.2px) drop-shadow(0 0 14px var(--q-hub-orbit-glow));
  mask: radial-gradient(farthest-side, transparent calc(100% - 7px), #000 calc(100% - 5px), #000 calc(100% - 1px), transparent 100%);
  -webkit-mask: radial-gradient(farthest-side, transparent calc(100% - 7px), #000 calc(100% - 5px), #000 calc(100% - 1px), transparent 100%);
  animation: q-hub-orbit-glow var(--q-hub-orbit-glow-speed) linear infinite;
  opacity: 0.84;
  will-change: transform;
}

.q-hub__orbit-dot {
  position: absolute;
  top: 50%;
  right: -4px;
  width: var(--q-hub-dot-size);
  height: var(--q-hub-dot-size);
  border-radius: 50%;
  background: var(--q-hub-orbit-dot);
  box-shadow:
    0 0 12px var(--q-hub-orbit-dot),
    0 0 24px rgba(244, 63, 94, 0.32);
  transform: translateY(-50%);
  transform-origin: calc((var(--q-hub-orbit-size) / -2) + 4px) 50%;
  animation: q-hub-orbit-dot var(--q-hub-orbit-dot-speed) linear infinite;
  will-change: rotate;
}

.q-hub__orbit--1 {
  --q-hub-orbit-size: min(100%, 470px);
  --q-hub-orbit-x: 0deg;
  --q-hub-orbit-y: 0deg;
  --q-hub-orbit-speed: 22s;
  --q-hub-orbit-glow-speed: 7.5s;
  --q-hub-orbit-dot-speed: 9s;
  --q-hub-orbit-color: rgba(244, 63, 94, 0.32);
  --q-hub-orbit-glow: rgba(244, 63, 94, 0.88);
  --q-hub-orbit-dot: #fb7185;
  --q-hub-dot-size: 8px;
}

.q-hub__orbit--2 {
  --q-hub-orbit-size: min(82%, 390px);
  --q-hub-orbit-x: 17deg;
  --q-hub-orbit-y: -14deg;
  --q-hub-orbit-speed: 28s;
  --q-hub-orbit-glow-speed: 9.8s;
  --q-hub-orbit-dot-speed: 12s;
  --q-hub-orbit-color: rgba(251, 191, 36, 0.32);
  --q-hub-orbit-glow: rgba(251, 191, 36, 0.86);
  --q-hub-orbit-dot: #fcd34d;
  --q-hub-dot-size: 7px;
}

.q-hub__orbit--3 {
  --q-hub-orbit-size: min(62%, 315px);
  --q-hub-orbit-x: -18deg;
  --q-hub-orbit-y: 21deg;
  --q-hub-orbit-speed: 18s;
  --q-hub-orbit-glow-speed: 6.4s;
  --q-hub-orbit-dot-speed: 8.4s;
  --q-hub-orbit-color: rgba(254, 202, 202, 0.28);
  --q-hub-orbit-glow: rgba(254, 202, 202, 0.78);
  --q-hub-orbit-dot: #fecdd3;
  --q-hub-dot-size: 6px;
}

.q-hub__beam {
  inset: 10%;
  background: conic-gradient(from -8deg, transparent 0 82%, rgba(244, 63, 94, 0.0) 83%, rgba(244, 63, 94, 0.68) 88%, rgba(251, 191, 36, 0.78) 91%, transparent 96% 100%);
  opacity: 0;
  filter: blur(0.4px);
}

.q-hub.is-drawing .q-hub__beam {
  animation: q-hub-beam 620ms var(--q-ease-out);
}

.q-hub__logo-core {
  position: relative;
  width: clamp(184px, 24vw, 270px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 55%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(244, 63, 94, 0.08));
  border: 1px solid rgba(168, 162, 158, 0.26);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 60px rgba(244, 63, 94, 0.24),
    0 24px 70px rgba(0, 0, 0, 0.42);
  transform: translate3d(var(--q-hub-logo-x), var(--q-hub-logo-y), 0);
  transition:
    transform 520ms var(--q-ease-spring),
    box-shadow 520ms var(--q-ease-out);
  will-change: transform;
}

.q-hub.is-drawing .q-hub__logo-core {
  transform: translate3d(var(--q-hub-logo-x), var(--q-hub-logo-y), 0) rotate(-3deg) scale(1.035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    0 0 76px rgba(244, 63, 94, 0.36),
    0 24px 80px rgba(0, 0, 0, 0.48);
}

.q-hub__logo-halo {
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  border: 1px solid rgba(251, 191, 36, 0.22);
  animation: q-hub-halo 6s linear infinite;
}

.q-hub__logo {
  width: 72%;
  height: 72%;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(244, 63, 94, 0.28));
}

.q-hub.is-orbit-hot .q-hub__orbits,
.q-hub.is-drawing .q-hub__orbits {
  filter:
    drop-shadow(0 0 24px rgba(244, 63, 94, 0.22))
    drop-shadow(0 0 18px rgba(251, 191, 36, 0.12));
}

.q-hub.is-orbit-hot .q-hub__orbit::before,
.q-hub.is-drawing .q-hub__orbit::before {
  border-color: rgba(251, 191, 36, 0.44);
  opacity: 1;
  box-shadow:
    0 0 42px rgba(244, 63, 94, 0.18),
    inset 0 0 34px rgba(251, 191, 36, 0.08);
}

.q-hub.is-orbit-hot .q-hub__orbit-glow,
.q-hub.is-drawing .q-hub__orbit-glow {
  opacity: 1;
  filter:
    blur(0.2px)
    drop-shadow(0 0 18px var(--q-hub-orbit-glow))
    drop-shadow(0 0 22px rgba(251, 191, 36, 0.18));
}

.q-hub.is-orbit-hot .q-hub__orbit-dot,
.q-hub.is-drawing .q-hub__orbit-dot {
  box-shadow:
    0 0 16px var(--q-hub-orbit-dot),
    0 0 32px rgba(244, 63, 94, 0.44);
}

.q-hub.is-orbit-hot .q-hub__orbit--1 .q-hub__orbit-glow,
.q-hub.is-drawing .q-hub__orbit--1 .q-hub__orbit-glow {
  animation-duration: 5.8s;
}

.q-hub.is-orbit-hot .q-hub__orbit--2 .q-hub__orbit-glow,
.q-hub.is-drawing .q-hub__orbit--2 .q-hub__orbit-glow {
  animation-duration: 7.6s;
}

.q-hub.is-orbit-hot .q-hub__orbit--3 .q-hub__orbit-glow,
.q-hub.is-drawing .q-hub__orbit--3 .q-hub__orbit-glow {
  animation-duration: 4.9s;
}

.q-hub__chosen {
  position: absolute;
  bottom: -0.85rem;
  max-width: 92%;
  padding: 0.36rem 0.75rem;
  border-radius: 999px;
  color: #1c1917;
  background: linear-gradient(135deg, var(--q-hub-gold), #fff2b8);
  font-size: 0.78rem;
  font-weight: 800;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.q-hub__spark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--q-hub-blue);
  box-shadow: 0 0 22px var(--q-hub-blue);
}

.q-hub__spark--a {
  top: 20%;
  right: 20%;
}

.q-hub__spark--b {
  bottom: 23%;
  left: 19%;
  background: var(--q-hub-gold);
  box-shadow: 0 0 22px var(--q-hub-gold);
}

.q-hub__spark--c {
  top: 57%;
  left: 11%;
}

.q-hub__services {
  grid-area: services;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem;
}

.q-hub__service {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.75rem;
  color: rgba(250, 250, 249, 0.84);
  text-align: start;
  font: inherit;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
  border: 1px solid rgba(168, 162, 158, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  transition:
    transform var(--q-dur-fast) var(--q-ease-spring),
    border-color var(--q-dur-fast),
    background var(--q-dur-fast),
    box-shadow var(--q-dur-fast);
}

.q-hub__service::after {
  content: "";
  position: absolute;
  inset-inline: 10%;
  bottom: -18px;
  height: 34px;
  background: radial-gradient(ellipse, rgba(244, 63, 94, 0.34), transparent 70%);
  opacity: 0;
  transition: opacity var(--q-dur-fast);
}

.q-hub__service:hover,
.q-hub__service:focus-visible,
.q-hub__service.is-active {
  transform: translateY(-3px);
  border-color: rgba(244, 63, 94, 0.56);
  background: rgba(244, 63, 94, 0.11);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.26),
    0 0 26px rgba(244, 63, 94, 0.12);
}

.q-hub__service:hover::after,
.q-hub__service:focus-visible::after,
.q-hub__service.is-active::after {
  opacity: 1;
}

.q-hub__service.is-active {
  color: #fff;
  border-color: rgba(251, 191, 36, 0.62);
  background:
    linear-gradient(135deg, rgba(244, 63, 94, 0.16), rgba(251, 191, 36, 0.1)),
    rgba(255, 255, 255, 0.06);
}

.q-hub__service-code {
  width: 42px;
  min-width: 42px;
  min-height: 32px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--q-hub-gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
  background: rgba(12, 10, 9, 0.82);
  border: 1px solid rgba(251, 191, 36, 0.24);
}

.q-hub__details {
  grid-area: details;
  position: relative;
  padding: clamp(1rem, 2.2vw, 1.45rem);
  border-radius: 24px;
  border: 1px solid rgba(168, 162, 158, 0.18);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
    var(--q-hub-panel);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 24px 70px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.q-hub__details::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--q-hub-blue), var(--q-hub-gold), transparent);
}

.q-hub__details-kicker,
.q-hub__system-label {
  margin: 0;
  color: var(--q-hub-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.q-hub__details-title {
  margin: 0.35rem 0 0.75rem;
  color: #fff;
  font-family: var(--q-font-display);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.q-hub__details-text {
  min-height: 6.4rem;
  margin: 0;
  color: rgba(245, 245, 244, 0.78);
  line-height: 1.85;
}

.q-hub__points {
  display: grid;
  gap: 0.48rem;
  margin: 1rem 0;
  padding: 0;
  list-style: none;
}

.q-hub__points li {
  position: relative;
  padding-inline-start: 1.2rem;
  color: rgba(250, 250, 249, 0.9);
  font-size: 0.94rem;
}

.q-hub__points li::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0.78em;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--q-hub-blue);
  box-shadow: 0 0 14px var(--q-hub-blue);
}

.q-hub__mini-cta {
  padding: 0.58rem 1rem;
  color: #1c1917;
  background: linear-gradient(135deg, var(--q-hub-gold), #fff2b8);
}

.q-hub__system {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(168, 162, 158, 0.14);
}

.q-hub__system-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.65rem;
}

.q-hub__system-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0.24rem 0.65rem;
  border-radius: 999px;
  color: #fef3c7;
  background: rgba(244, 63, 94, 0.12);
  border: 1px solid rgba(244, 63, 94, 0.25);
  font-size: 0.82rem;
  font-weight: 700;
}

.q-hub.is-updating .q-hub__details-title,
.q-hub.is-updating .q-hub__details-text,
.q-hub.is-updating .q-hub__points,
.q-hub.is-updating .q-hub__mini-cta {
  animation: q-hub-detail-in 420ms var(--q-ease-out);
}

@keyframes q-hub-beam {
  0% {
    opacity: 0;
    transform: rotate(-24deg) scale(0.96);
  }
  32% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(30deg) scale(1.04);
  }
}

@keyframes q-hub-orbit-ring-spin {
  to {
    transform: rotate(1turn);
  }
}

@keyframes q-hub-orbit-glow {
  to {
    transform: rotate(1turn);
  }
}

@keyframes q-hub-orbit-dot {
  to {
    rotate: 1turn;
  }
}

@keyframes q-hub-halo {
  to {
    transform: rotate(1turn);
  }
}

@keyframes q-hub-detail-in {
  from {
    opacity: 0.2;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  .q-hub__inner {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
    grid-template-areas:
      "copy stage"
      "services details";
  }
}

@media (max-width: 760px) {
  .q-hub {
    padding: 0.65rem 0 calc(2.1rem + env(safe-area-inset-bottom, 0px));
  }

  .q-hub__inner {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "copy"
      "stage"
      "services"
      "details";
  }

  .q-hub__copy,
  .q-hub__lead {
    text-align: center;
    margin-inline: auto;
  }

  .q-hub__actions {
    justify-content: center;
    gap: 0.65rem;
  }

  .q-hub__actions .q-hub__btn,
  .q-hub__actions .q-hub__mini-cta {
    min-height: 2.75rem;
    align-items: center;
  }

  .q-hub__stage {
    min-height: 280px;
  }

  .q-hub__logo-halo {
    inset: 0;
  }

  .q-hub__orbits {
    inset: 7%;
    opacity: 0.82;
  }

  .q-hub__orbit--1 {
    --q-hub-orbit-size: min(88%, 300px);
  }

  .q-hub__orbit--2 {
    --q-hub-orbit-size: min(72%, 250px);
  }

  .q-hub__orbit--3 {
    --q-hub-orbit-size: min(54%, 190px);
    opacity: 0.46;
  }

  .q-hub__orbit-dot {
    opacity: 0.72;
  }

  .q-hub__services {
    grid-template-columns: minmax(0, 1fr);
  }

  .q-hub__service {
    min-height: 54px;
  }

  .q-hub__details-text {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  .q-hub__btn {
    width: 100%;
  }

  .q-hub__logo-core {
    width: min(68vw, 220px);
  }
}

.q-hub.q-hub--paused .q-hub__orbit::before,
.q-hub.q-hub--paused .q-hub__orbit-glow,
.q-hub.q-hub--paused .q-hub__orbit-dot,
.q-hub.q-hub--paused .q-hub__logo-halo {
  animation-play-state: paused !important;
}

.q-hub.q-hub--paused .q-hub__orbits {
  opacity: 0.48;
}

@media (max-width: 720px), (hover: none), (pointer: coarse) {
  .q-hub {
    padding: 0.55rem 0 calc(1.45rem + env(safe-area-inset-bottom, 0px));
  }

  .q-hub__aura {
    opacity: 0.62;
    filter: none;
  }

  .q-hub__inner {
    gap: 0.82rem;
  }

  .q-hub__lead {
    margin-top: 0.75rem;
    line-height: 1.65;
  }

  .q-hub__actions {
    margin-top: 1rem;
  }

  .q-hub__stage {
    min-height: clamp(224px, 60vw, 270px);
    perspective: none;
    transform-style: flat;
  }

  .q-hub__orbits {
    inset: 9%;
    opacity: 0.72;
    filter: none;
    will-change: auto;
    transform:
      translate3d(0, 0, 0)
      rotateX(58deg)
      rotateZ(var(--q-hub-angle));
    transition:
      transform 380ms var(--q-ease-out),
      opacity 280ms var(--q-ease-out);
  }

  .q-hub__orbit {
    transform-style: flat;
  }

  .q-hub__orbit::before {
    background: none;
    box-shadow:
      0 0 13px rgba(244, 63, 94, 0.08),
      inset 0 0 14px rgba(251, 191, 36, 0.03);
    opacity: 0.68;
    will-change: auto;
  }

  .q-hub__orbit--1 {
    --q-hub-orbit-speed: 44s;
    --q-hub-orbit-glow-speed: 20s;
  }

  .q-hub__orbit--2 {
    --q-hub-orbit-speed: 58s;
  }

  .q-hub__orbit--3 {
    --q-hub-orbit-speed: 36s;
    opacity: 0.34;
  }

  .q-hub__orbit-glow {
    opacity: 0.36;
    filter: none;
    will-change: auto;
  }

  .q-hub__orbit--2 .q-hub__orbit-glow,
  .q-hub__orbit--3 .q-hub__orbit-glow,
  .q-hub__orbit-dot {
    display: none;
  }

  .q-hub__beam {
    filter: none;
  }

  .q-hub__logo-core {
    width: min(58vw, 198px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.14),
      0 0 30px rgba(244, 63, 94, 0.18),
      0 16px 42px rgba(0, 0, 0, 0.34);
    will-change: auto;
  }

  .q-hub__logo-halo {
    opacity: 0.66;
    animation-duration: 18s;
  }

  .q-hub__logo {
    filter: drop-shadow(0 0 10px rgba(244, 63, 94, 0.18));
  }

  .q-hub__spark {
    opacity: 0.54;
    box-shadow: 0 0 10px rgba(244, 63, 94, 0.2);
  }

  .q-hub__spark--b {
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.18);
  }

  .q-hub.is-orbit-hot .q-hub__orbits,
  .q-hub.is-drawing .q-hub__orbits {
    filter: none;
  }

  .q-hub.is-orbit-hot .q-hub__orbit::before,
  .q-hub.is-drawing .q-hub__orbit::before {
    box-shadow:
      0 0 18px rgba(244, 63, 94, 0.1),
      inset 0 0 18px rgba(251, 191, 36, 0.05);
  }

  .q-hub.is-orbit-hot .q-hub__orbit-glow,
  .q-hub.is-drawing .q-hub__orbit-glow {
    filter: none;
  }

  .q-hub__service {
    min-height: 50px;
    padding: 0.54rem 0.64rem;
  }

  .q-hub__service:hover,
  .q-hub__service:focus-visible,
  .q-hub__service.is-active {
    transform: translateY(-1px);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 8px 18px rgba(0, 0, 0, 0.2),
      0 0 14px rgba(244, 63, 94, 0.08);
  }

  .q-hub__details {
    padding: 0.86rem;
    border-radius: 20px;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 14px 36px rgba(0, 0, 0, 0.22);
  }
}

@media (prefers-reduced-motion: reduce) {
  .q-hub *,
  .q-hub *::before,
  .q-hub *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .q-hub__orbits {
    transform: rotateX(62deg) rotateZ(var(--q-hub-angle));
  }

  .q-hub__orbit::before,
  .q-hub__orbit-glow,
  .q-hub__orbit-dot,
  .q-hub__logo-halo {
    animation: none !important;
  }
}
