/* ============================================================
   SLIDE 04: Disconnected Silos Diagram
   ============================================================ */

.diagram-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1220px;
  height: 480px;
  margin: 0 auto;
}

.silo-col-left {
  width: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  z-index: 2;
}

.silo-col-right {
  width: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  z-index: 2;
}

.silo-center-col {
  width: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100%;
  z-index: 2;
}

.orbit-center {
  width: 100%;
  height: 100px;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: all 0.3s ease;
  padding: 0;
}
.orbit-center:hover {
  background: none;
}

.orbit-center-team {
  width: 100%;
  height: 120px;
  background: none;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  transition: all 0.3s ease;
  padding: 0;
}
.orbit-center-team:hover {
  background: none;
}

.orbit-node {
  width: 100%;
  background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 70%), rgba(14, 14, 14, 0.65);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), 0 8px 24px rgba(0, 0, 0, 0.35), 0 20px 50px rgba(0, 0, 0, 0.25);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: var(--space-md);
  position: relative;
  overflow: hidden;
}
.orbit-node:hover {
  background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 60%), rgba(20, 20, 20, 0.78);
  border-color: rgba(255, 255, 255, 0.1);
  border-top-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), 0 0 30px rgba(255, 255, 255, 0.04);
}

.orbit-node.large-node {
  height: 125px;
}
.orbit-node.small-node {
  height: 105px;
}

.node-tag {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-white);
  margin-top: 4px;
  text-align: center;
}

.node-subtag {
  font-family: var(--font-body);
  font-size: 10.5px;
  color: rgba(255, 255, 255, 0.60);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2px;
  text-align: center;
}

.silo-diagram-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.broken-link {
  stroke-width: 2.2;
  stroke-dasharray: 5, 5;
}

.brand-pills-row {
  display: flex;
  gap: var(--space-xs);
  margin-top: 2px;
}
.brand-pills-row span {
  font-family: var(--font-body);
  font-size: 10px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 1px 4px;
  border-radius: 2px;
}
