.app-maintenance-page .gccm-execution-framework .ds-process-lab {
  margin-top: clamp(0.9rem, 1.6vw, 1.3rem);
  border: 1px solid rgba(243, 111, 52, 0.34);
  border-radius: calc(var(--radius-md) + 2px);
  padding: clamp(1rem, 1.9vw, 1.5rem);
  background:
    radial-gradient(420px 180px at 12% 10%, rgba(243, 111, 52, 0.14), transparent 74%),
    linear-gradient(165deg, rgba(10, 19, 34, 0.95), rgba(8, 14, 27, 0.92));
  box-shadow: var(--shadow-focus);
}

.app-maintenance-page .gccm-execution-framework .ds-orbit-wrap {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
  align-items: center;
}

.app-maintenance-page .gccm-execution-framework .ds-process-orbit {
  --orbit-size: min(560px, 100%);
  --orbit-radius: 210px;
  position: relative;
  width: var(--orbit-size);
  aspect-ratio: 1;
  margin: 0 auto;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.35));
}

.app-maintenance-page .gccm-execution-framework .ds-process-orbit::before,
.app-maintenance-page .gccm-execution-framework .ds-process-orbit::after {
  content: "";
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  pointer-events: none;
}

.app-maintenance-page .gccm-execution-framework .ds-process-orbit::before {
  width: calc(var(--orbit-radius) * 2);
  height: calc(var(--orbit-radius) * 2);
  border: 1px dashed rgba(243, 111, 52, 0.38);
  animation: dsOrbitSpin 42s linear infinite;
}

.app-maintenance-page .gccm-execution-framework .ds-process-orbit::after {
  width: calc(var(--orbit-radius) * 2 + 38px);
  height: calc(var(--orbit-radius) * 2 + 38px);
  border: 1px solid rgba(243, 111, 52, 0.12);
  box-shadow: 0 0 0 1px rgba(243, 111, 52, 0.08) inset;
}

.app-maintenance-page .gccm-execution-framework .ds-orbit-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 168px;
  height: 168px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(243, 111, 52, 0.44);
  background:
    radial-gradient(100px 80px at 50% 28%, rgba(243, 111, 52, 0.24), transparent 70%),
    linear-gradient(165deg, rgba(11, 20, 36, 0.95), rgba(8, 15, 28, 0.92));
  box-shadow: var(--shadow-focus);
  color: #ffd9c6;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.35;
  padding: 0.8rem;
  animation: dsCorePulse 6s ease-in-out infinite;
}

.app-maintenance-page .gccm-execution-framework .ds-process-node {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 112px;
  min-height: 112px;
  border-radius: 999px;
  border: 1px solid rgba(243, 111, 52, 0.3);
  color: var(--brand-text-soft);
  background:
    radial-gradient(80px 70px at 50% 26%, rgba(243, 111, 52, 0.16), transparent 74%),
    linear-gradient(165deg, rgba(12, 22, 39, 0.94), rgba(9, 16, 30, 0.92));
  box-shadow: var(--shadow-soft);
  font-size: 0.64rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  padding: 0.5rem 0.44rem;
  cursor: pointer;
  overflow: hidden;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(var(--orbit-radius) * -1)) rotate(calc(var(--angle) * -1));
  transition:
    transform var(--motion-base) ease,
    border-color var(--motion-base) ease,
    box-shadow var(--motion-base) ease,
    color var(--motion-base) ease,
    background var(--motion-base) ease;
}

.app-maintenance-page .gccm-execution-framework .ds-process-node::before,
.app-maintenance-page .gccm-execution-framework .ds-process-node::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.app-maintenance-page .gccm-execution-framework .ds-process-node::before {
  inset: 0;
  background: radial-gradient(circle at 50% 24%, rgba(243, 111, 52, 0.28), transparent 60%);
  opacity: 0;
  z-index: 1;
  transition: opacity var(--motion-base) ease;
}

.app-maintenance-page .gccm-execution-framework .ds-process-node::after {
  left: 50%;
  top: 50%;
  width: 1px;
  height: 68px;
  inset: auto;
  border: 0;
  opacity: 1;
  transform: translateX(-50%) rotate(calc(var(--angle) * -1));
  transform-origin: top center;
  background: linear-gradient(180deg, rgba(243, 111, 52, 0.38), rgba(243, 111, 52, 0));
  transition:
    opacity var(--motion-base) ease,
    transform var(--motion-base) ease,
    border-color var(--motion-base) ease;
}

.app-maintenance-page .gccm-execution-framework .ds-node-num {
  position: relative;
  z-index: 2;
  display: block;
  color: #ffd8c4;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 0.24rem;
}

.app-maintenance-page .gccm-execution-framework .ds-node-label {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.app-maintenance-page .gccm-execution-framework .ds-process-node:hover,
.app-maintenance-page .gccm-execution-framework .ds-process-node:focus-visible {
  border-color: rgba(243, 111, 52, 0.62);
  color: #ffe4d4;
  box-shadow: var(--shadow-focus), 0 0 0 1px rgba(243, 111, 52, 0.18) inset;
  outline: none;
}

.app-maintenance-page .gccm-execution-framework .ds-process-node.is-active {
  border-color: rgba(255, 152, 102, 0.95);
  color: #fff4ec;
  background:
    radial-gradient(80px 72px at 50% 26%, rgba(255, 197, 163, 0.4), transparent 76%),
    linear-gradient(160deg, rgba(243, 111, 52, 0.92), rgba(190, 75, 25, 0.95));
  box-shadow:
    0 16px 30px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 191, 155, 0.38) inset,
    0 0 26px rgba(243, 111, 52, 0.42);
  transform: translate(-50%, -50%) rotate(var(--angle)) translateY(calc(var(--orbit-radius) * -1 - 8px)) rotate(calc(var(--angle) * -1));
}

.app-maintenance-page .gccm-execution-framework .ds-process-node.is-active::before {
  opacity: 1;
}

.app-maintenance-page .gccm-execution-framework .ds-process-node.is-active::after {
  border: 1px solid rgba(243, 111, 52, 0.58);
  background: none;
  inset: -7px;
  opacity: 1;
  transform: scale(1.06);
  animation: dsNodePulse 1.8s ease-out infinite;
}

.app-maintenance-page .gccm-execution-framework .ds-process-node.is-active .ds-node-num,
.app-maintenance-page .gccm-execution-framework .ds-process-node.is-active .ds-node-label {
  color: #fffaf6;
}

.app-maintenance-page .gccm-execution-framework .ds-process-detail {
  border: 1px solid rgba(243, 111, 52, 0.32);
  border-radius: var(--radius-md);
  padding: 1rem;
  background:
    radial-gradient(260px 120px at 12% 8%, rgba(243, 111, 52, 0.14), transparent 74%),
    linear-gradient(165deg, rgba(11, 20, 36, 0.95), rgba(8, 15, 28, 0.92));
  box-shadow: var(--shadow-soft);
  min-height: 200px;
  position: relative;
}

.app-maintenance-page .gccm-execution-framework .ds-process-detail::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(243, 111, 52, 0), rgba(243, 111, 52, 0.72), rgba(33, 151, 100, 0.45), rgba(243, 111, 52, 0));
  opacity: 0.8;
}

.app-maintenance-page .gccm-execution-framework .ds-process-detail.is-updating {
  animation: dsDetailRise 360ms ease;
}

.app-maintenance-page .gccm-execution-framework .ds-process-step {
  margin: 0;
  color: #ffd6c2;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.app-maintenance-page .gccm-execution-framework .ds-process-text {
  margin: 0.55rem 0 0;
  color: var(--brand-text-soft);
  line-height: 1.65;
}

[dir="rtl"] .app-maintenance-page .gccm-execution-framework .ds-process-step,
[dir="rtl"] .app-maintenance-page .gccm-execution-framework .ds-process-text {
  text-align: right;
}

/* AR layout parity: keep execution framework column order aligned with EN */
[dir="rtl"] .app-maintenance-page .gccm-execution-framework .ds-orbit-wrap {
  direction: ltr;
}

[dir="rtl"] .app-maintenance-page .gccm-execution-framework .ds-process-detail {
  direction: rtl;
}

/* Global fallback for service pages that do not carry `.app-maintenance-page`.
   Keeps EN/AR column parity for the centralized Execution Framework block. */
[dir="rtl"] .gccm-execution-framework .ds-orbit-wrap {
  direction: ltr;
}

[dir="rtl"] .gccm-execution-framework .ds-process-detail {
  direction: rtl;
}

[dir="rtl"] .gccm-execution-framework .ds-process-step,
[dir="rtl"] .gccm-execution-framework .ds-process-text {
  text-align: right;
}

@media (max-width: 900px) {
  .app-maintenance-page .gccm-execution-framework .ds-orbit-wrap {
    grid-template-columns: 1fr;
  }

  .app-maintenance-page .gccm-execution-framework .ds-process-orbit {
    --orbit-size: min(420px, 100%);
    --orbit-radius: 148px;
  }

  .app-maintenance-page .gccm-execution-framework .ds-orbit-core {
    width: 128px;
    height: 128px;
    font-size: 0.74rem;
  }

  .app-maintenance-page .gccm-execution-framework .ds-process-node {
    width: 82px;
    min-height: 82px;
    font-size: 0.58rem;
    padding: 0.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-maintenance-page .gccm-execution-framework .ds-process-orbit::before,
  .app-maintenance-page .gccm-execution-framework .ds-orbit-core,
  .app-maintenance-page .gccm-execution-framework .ds-process-node.is-active::after,
  .app-maintenance-page .gccm-execution-framework .ds-process-detail.is-updating {
    animation: none !important;
  }

  .app-maintenance-page .gccm-execution-framework .ds-process-node,
  .app-maintenance-page .gccm-execution-framework .ds-process-node::before,
  .app-maintenance-page .gccm-execution-framework .ds-process-node::after,
  .app-maintenance-page .gccm-execution-framework .ds-process-detail {
    transition: none !important;
  }
}
