/* =================================================
   ECOSYSTEM — BLUE MICROSOFT STYLE
================================================= */

.ecosystem-section {
  position: relative;
  overflow: hidden;
  padding: 110px 0;
  color: #ffffff;
  background:
    radial-gradient(720px 380px at 12% 8%, rgba(79, 166, 255, 0.36), transparent 62%),
    radial-gradient(680px 360px at 88% 88%, rgba(41, 198, 198, 0.30), transparent 60%),
    radial-gradient(560px 320px at 50% 0%, rgba(139, 124, 240, 0.22), transparent 65%),
    linear-gradient(135deg, #07152f 0%, #0b2854 48%, #0a4c87 100%);
}

.ecosystem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 58px 58px;
  pointer-events: none;
}

.ecosystem-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -170px;
  top: -150px;
  background: rgba(41, 198, 198, 0.18);
  border-radius: 999px;
  filter: blur(22px);
  pointer-events: none;
}

.ecosystem-section .container {
  position: relative;
  z-index: 2;
}

.ecosystem-section h2 {
  color: #ffffff;
}

.ecosystem-section p {
  color: rgba(228, 238, 251, 0.82);
}

.ecosystem-section .section-badge {
  color: #e4eefb;
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.22);
}

.feature-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 26px;
}

.ecosystem-section .feature-mini-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 600;
  font-size: .88rem;
  box-shadow: none;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: transform .25s var(--ease), background .25s, border-color .25s;
}

.ecosystem-section .feature-mini-grid div:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-4px);
}

.ecosystem-section .feature-mini-grid i {
  color: #7dd3fc;
  font-size: 1.1rem;
}

/* -------------------------------------------------
   ORBIT PANEL
-------------------------------------------------- */

.orbit-panel {
  position: relative;
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  padding: 24px;
  border-radius: 34px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.14), transparent 42%),
    rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.orbit-ring {
  position: absolute;
  inset: 6%;
  border-radius: 50%;
  border: 2px dashed rgba(125, 211, 252, 0.42);
  animation: orbit-spin 34s linear infinite;
}

.orbit-ring-inner {
  inset: 20%;
  border: 2px dashed rgba(255, 255, 255, 0.26);
  animation-duration: 26s;
  animation-direction: reverse;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.orbit-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 148px;
  height: 148px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
  z-index: 2;
  text-align: center;
  padding: 10px;
}

.orbit-hub .brand-mark.lg {
  width: 30px;
  height: 30px;
  gap: 4px;
  margin: 0 0 4px;
}

.orbit-hub .brand-mark.lg span {
  border-radius: 3px;
}

.orbit-hub b {
  font-family: var(--font-display);
  font-size: .92rem;
  color: var(--ink);
  line-height: 1.2;
}

.orbit-hub small {
  font-size: .68rem;
  font-weight: 600;
  color: var(--ink-faint);
  text-transform: uppercase;
  letter-spacing: .05em;
}

.orbit-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 108px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(255,255,255,0.72);
  border-radius: 16px;
  padding: 14px 10px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  color: var(--ink);
  z-index: 2;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}

.orbit-node:hover {
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.orbit-node__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
}

.icon-custom {
  background: linear-gradient(
    135deg,
    var(--ecosystem-icon-color, #2b88d8),
    #41a5ee
  );
}

.orbit-node__icon span {
  color: #ffffff;
  font-size: 1.1rem;
  line-height: 1;
}


.icon-outlook {
  background: linear-gradient(135deg,#0A63C9,#3B8CE8);
}

.icon-teams {
  background: linear-gradient(135deg,#464EB8,#7B83EB);
}

.icon-sharepoint {
  background: linear-gradient(135deg,#03787C,#0FA3A8);
}

.icon-onedrive {
  background: linear-gradient(135deg,#0364B8,#0A93E0);
}

.node-top {
  top: -8%;
  left: 50%;
  transform: translateX(-50%);
}

.node-right {
  top: 50%;
  right: -6%;
  transform: translateY(-50%);
}

.node-bottom {
  bottom: -8%;
  left: 50%;
  transform: translateX(-50%);
}

.node-left {
  top: 50%;
  left: -6%;
  transform: translateY(-50%);
}

.node-top:hover {
  transform: translateX(-50%) translateY(-4px);
}

.node-right:hover {
  transform: translateY(-50%) translateY(-4px);
}

.node-bottom:hover {
  transform: translateX(-50%) translateY(-4px);
}

.node-left:hover {
  transform: translateY(-50%) translateY(-4px);
}
